From 61e5866924ad0c4da7aabb196dcb92624c3a0a84 Mon Sep 17 00:00:00 2001 From: Joseph Lawson Date: Sun, 28 Jun 2026 19:48:57 -0400 Subject: [PATCH 1/2] fix: latest snapshot --- .github/actions/test/action.yml | 4 +- .github/workflows/release-on-main.yml | 10 +- .github/workflows/test-on-branch.yml | 2 +- .../src/components/CardItemsComponent.tsx | 49 + .../src/components/CollectionsLayout.tsx | 4 +- .../DynamicCollectionConfigData.tsx | 7 +- example-web/react2/test.js | 40 +- package-lock.json | 57 +- package.json | 2 +- .../__snapshots__/ps99-api-changes.ts.snap | 169285 ++++++++++-- .../__snapshots__/ps99-api-live.ts.snap | 201261 +++++++++------ src/__tests__/ps99-api-live.ts | 5 + src/request-client/axios.ts | 8 +- src/responses/collection/card-item.ts | 27 + src/responses/collection/index.ts | 2 + 15 files changed, 262018 insertions(+), 108745 deletions(-) create mode 100644 example-web/react2/src/components/CardItemsComponent.tsx create mode 100644 src/responses/collection/card-item.ts diff --git a/.github/actions/test/action.yml b/.github/actions/test/action.yml index 6cb0bf4..b5a53ae 100644 --- a/.github/actions/test/action.yml +++ b/.github/actions/test/action.yml @@ -4,11 +4,11 @@ runs: using: "composite" steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: "lts/*" - name: Install dependencies diff --git a/.github/workflows/release-on-main.yml b/.github/workflows/release-on-main.yml index 5d95bfd..d2d5435 100644 --- a/.github/workflows/release-on-main.yml +++ b/.github/workflows/release-on-main.yml @@ -24,11 +24,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 - name: Check for changes in src - uses: dorny/paths-filter@v3 + uses: dorny/paths-filter@v4 id: filter with: filters: | @@ -43,11 +43,11 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: npx semantic-release - name: Setup Pages - uses: actions/configure-pages@v5 + uses: actions/configure-pages@v6 - name: Upload artifact - uses: actions/upload-pages-artifact@v4 + uses: actions/upload-pages-artifact@v5 with: path: "example-web/react2/dist" - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5 diff --git a/.github/workflows/test-on-branch.yml b/.github/workflows/test-on-branch.yml index 7f7a743..b9c76a8 100644 --- a/.github/workflows/test-on-branch.yml +++ b/.github/workflows/test-on-branch.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 - name: Test diff --git a/example-web/react2/src/components/CardItemsComponent.tsx b/example-web/react2/src/components/CardItemsComponent.tsx new file mode 100644 index 0000000..e6d8720 --- /dev/null +++ b/example-web/react2/src/components/CardItemsComponent.tsx @@ -0,0 +1,49 @@ +import React from "react"; +import { CollectionConfigData } from "ps99-api"; +import ItemCard from "./ItemCard"; +import { useItemResolution } from "../hooks/useItemResolution"; + +const CardItemsComponent: React.FC<{ + configData: CollectionConfigData<"CardItems">; +}> = ({ configData }) => { + const { getRarityColor } = useItemResolution(); + const rarityColor = configData.Rarity ? getRarityColor(configData.Rarity) : null; + + return ( +
+ +
+ +
+ +
+

"{configData.Desc}"

+
+ {configData.AssociatedPetId && ( + + Pet: {configData.AssociatedPetId} + + )} + {configData.titanic && ( + Titanic + )} + {configData.Tradable && ( + Tradable + )} +
+
+
+ ); +}; + +export default CardItemsComponent; diff --git a/example-web/react2/src/components/CollectionsLayout.tsx b/example-web/react2/src/components/CollectionsLayout.tsx index 58dab6c..90abf9a 100644 --- a/example-web/react2/src/components/CollectionsLayout.tsx +++ b/example-web/react2/src/components/CollectionsLayout.tsx @@ -21,7 +21,7 @@ const CollectionsLayout: React.FC = () => { display: "flex", justifyContent: "center", alignItems: "center", - minHeight: isMobile ? "100vh" : "calc(100vh - 80px)", + minHeight: isMobile ? "100dvh" : "calc(100vh - 80px)", padding: isMobile ? "0" : "10px", height: "100%", boxSizing: "border-box" @@ -34,7 +34,7 @@ const CollectionsLayout: React.FC = () => { display: "flex", width: "100%", maxWidth: "1200px", - height: isMobile ? "100vh" : "85vh", + height: isMobile ? "100dvh" : "85vh", backgroundColor: "#fff", borderRadius: isMobile ? "0" : "16px", boxShadow: isMobile ? "none" : "0 10px 40px rgba(0,0,0,0.2)", diff --git a/example-web/react2/src/components/DynamicCollectionConfigData.tsx b/example-web/react2/src/components/DynamicCollectionConfigData.tsx index 40227fc..d329f96 100644 --- a/example-web/react2/src/components/DynamicCollectionConfigData.tsx +++ b/example-web/react2/src/components/DynamicCollectionConfigData.tsx @@ -182,7 +182,12 @@ const DynamicCollectionConfigData: React.FC<
{JSON.stringify(configData, null, 2)}
) : ( - props.render ? props.render(configData) : + // Plain wrapper with no explicit height so child components' `height: 100%` + // resolves to auto (natural content height) instead of clamping to the + // scroll container's clientHeight, which would suppress scrollHeight. +
+ {props.render ? props.render(configData) : } +
)} diff --git a/example-web/react2/test.js b/example-web/react2/test.js index c62e0a2..c090575 100644 --- a/example-web/react2/test.js +++ b/example-web/react2/test.js @@ -1,3 +1,5 @@ +const { describe, expect, test } = require('@jest/globals'); + function getRouteId(collectionName, item) { const configName = item.configName; if (configName.includes(' | ')) { @@ -19,5 +21,39 @@ function getRouteId(collectionName, item) { } return configName; } -console.log('Buffs Output:', getRouteId('Buffs', { configName: 'Buff | Ultra Pet Token Boost' })); -console.log('Eggs Output:', getRouteId('Eggs', { configName: '8 | Present Egg', category: 'Event' })); + +describe('getRouteId routing logic', () => { + test('non-Eggs/Zones collections use the right side of the split', () => { + expect(getRouteId('Buffs', { configName: 'Buff | Ultra Pet Token Boost' })).toBe('Ultra Pet Token Boost'); + expect(getRouteId('Pets', { configName: 'Pets | Golden Dog' })).toBe('Golden Dog'); + }); + + test('Zones use the left side of the split', () => { + expect(getRouteId('Zones', { configName: 'Zone1 | Some Zone Name' })).toBe('Zone1'); + }); + + test('Event Eggs use the right side of the split', () => { + expect(getRouteId('Eggs', { configName: '8 | Present Egg', category: 'Event' })).toBe('Present Egg'); + }); + + test('Release Eggs use the left side of the split', () => { + expect(getRouteId('Eggs', { configName: '1 | Starter Egg', category: 'Release' })).toBe('1'); + }); + + test('World Eggs use the left side of the split', () => { + expect(getRouteId('Eggs', { configName: '3 | World Egg', category: 'World 3' })).toBe('3'); + }); + + test('Update Eggs use the left side of the split', () => { + expect(getRouteId('Eggs', { configName: '5 | Update Egg', category: 'Update 5' })).toBe('5'); + }); + + test('Worlds strips "World " prefix from configName', () => { + expect(getRouteId('Worlds', { configName: 'World 7' })).toBe('7'); + }); + + test('items without a split delimiter return configName as-is', () => { + expect(getRouteId('Pets', { configName: 'SimplePet' })).toBe('SimplePet'); + expect(getRouteId('Eggs', { configName: 'BasicEgg' })).toBe('BasicEgg'); + }); +}); diff --git a/package-lock.json b/package-lock.json index 2bed895..0ac6047 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "version": "1.0.1", "license": "MIT", "dependencies": { - "axios": "^1.13.5" + "axios": "^1.18.1" }, "devDependencies": { "@jest/globals": "^29.7.0", @@ -3285,14 +3285,40 @@ } }, "node_modules/axios": { - "version": "1.13.5", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.13.5.tgz", - "integrity": "sha512-cz4ur7Vb0xS4/KUN0tPWe44eqxrIu31me+fbang3ijiNscE129POzipJJA6zniq2C/Z6sJCjMimjS8Lc/GAs8Q==", + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.18.1.tgz", + "integrity": "sha512-3nTvFlvpn9Zu/RkHUqtc7/+al4UpRW5az71ap5zccp6e8RAYEzhMTecX8Dz1wWDYrPpUoB1HAQEGEAEvUr7S9g==", "license": "MIT", "dependencies": { - "follow-redirects": "^1.15.11", + "follow-redirects": "^1.16.0", "form-data": "^4.0.5", - "proxy-from-env": "^1.1.0" + "https-proxy-agent": "^5.0.1", + "proxy-from-env": "^2.1.0" + } + }, + "node_modules/axios/node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "license": "MIT", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/axios/node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "license": "MIT", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" } }, "node_modules/babel-preset-current-node-syntax": { @@ -4242,7 +4268,6 @@ "version": "4.4.3", "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", - "dev": true, "license": "MIT", "dependencies": { "ms": "^2.1.3" @@ -5036,9 +5061,9 @@ } }, "node_modules/follow-redirects": { - "version": "1.15.11", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz", - "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==", + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.16.0.tgz", + "integrity": "sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==", "funding": [ { "type": "individual", @@ -8443,7 +8468,6 @@ "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" }, "node_modules/mute-stream": { @@ -11281,10 +11305,13 @@ "license": "ISC" }, "node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", - "license": "MIT" + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-2.1.0.tgz", + "integrity": "sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==", + "license": "MIT", + "engines": { + "node": ">=10" + } }, "node_modules/pure-rand": { "version": "6.1.0", diff --git a/package.json b/package.json index d37f973..80f00c7 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,7 @@ "typescript": "^5.9.3" }, "dependencies": { - "axios": "^1.13.5" + "axios": "^1.18.1" }, "repository": { "type": "git", diff --git a/src/__tests__/__snapshots__/ps99-api-changes.ts.snap b/src/__tests__/__snapshots__/ps99-api-changes.ts.snap index d4206a1..883c238 100644 --- a/src/__tests__/__snapshots__/ps99-api-changes.ts.snap +++ b/src/__tests__/__snapshots__/ps99-api-changes.ts.snap @@ -3,66 +3,110 @@ exports[`Pet Simulator Public Live API Test - Changing Items Active Clan Battle 1`] = ` { "data": { - "_id": "6713df99b63eedb3a42ca222", + "_id": "6a3ff533f53cd066f7a822b5", "category": "GuildBattles", "configData": { - "FinishTime": 1730476800, + "FinishTime": 1783177200, "PlacementRewards": [ { "Best": 1, + "BestContributor": 1, "Item": { "_data": { - "id": "Clan Gift", + "id": "Gargantuan Storm Wolf", + "pt": 2, }, }, - "Worst": 500, + "Worst": 1, + "WorstContributor": 3, }, { "Best": 1, + "BestContributor": 4, "Item": { "_data": { - "id": "Ghost Cat", + "id": "Gargantuan Storm Wolf", + "pt": 1, }, }, - "Worst": 50, + "Worst": 1, + "WorstContributor": 10, }, { "Best": 1, + "BestContributor": 11, "Item": { "_data": { - "id": "Ghost", + "id": "Gargantuan Storm Wolf", }, }, - "Worst": 10, + "Worst": 1, + "WorstContributor": 100, }, { - "Best": 1, + "Best": 2, "Item": { "_data": { - "id": "Huge Ghost Cat", + "id": "Titanic Cloud Dog", "pt": 2, }, }, - "Worst": 1, + "Worst": 3, }, { - "Best": 2, + "Best": 4, "Item": { "_data": { - "id": "Huge Ghost Cat", + "id": "Titanic Cloud Dog", "pt": 1, }, }, - "Worst": 3, + "Worst": 10, }, { - "Best": 4, + "Best": 11, "Item": { "_data": { - "id": "Huge Ghost Cat", + "id": "Titanic Cloud Dog", }, }, - "Worst": 10, + "Worst": 50, + }, + { + "Best": 51, + "Item": { + "_data": { + "id": "Huge Umbrella Bear", + }, + }, + "Worst": 250, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Thunderstorm", + }, + }, + "Worst": 30, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Thunderstorm", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift 2", + }, + }, + "Worst": 500, }, ], "Rewards": { @@ -71,12 +115,13 @@ exports[`Pet Simulator Public Live API Test - Changing Items Active Clan Battle "Good": [], "Silver": [], }, - "StartTime": 1729353600, - "Title": "Ghost Battle", - "_id": "HalloweenBattle", - "_script": null, + "StartTime": 1781971200, + "Title": "SoccerBattle2026", }, - "configName": "HalloweenBattle", + "configName": "SoccerBattle2026", + "dateCreated": "2026-06-27T16:07:13.338Z", + "dateModified": "2026-06-27T16:07:13.338Z", + "hash": "c0b512464f54070358424055a2bb78728125ba92271a7f49c7349d6a4e055d8e", }, "status": "ok", } @@ -118,6 +163,447 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Clan 1`] = ` "Points": 127, "ProcessedAwards": false, }, + "AngelBattle2026": { + "AwardUserIDs": [], + "BattleID": "AngelBattle2026", + "Place": 2217, + "PointContributions": [ + { + "Points": 500, + "UserID": 4979572981, + }, + { + "Points": 1000000000, + "UserID": 1188801075, + }, + { + "Points": 1000000, + "UserID": 3752591750, + }, + { + "Points": 50000, + "UserID": 1639575673, + }, + { + "Points": 7500, + "UserID": 1215986485, + }, + { + "Points": 69990, + "UserID": 6074098987, + }, + { + "Points": 15000, + "UserID": 1561866809, + }, + { + "Points": 1500, + "UserID": 6097024245, + }, + { + "Points": 50000, + "UserID": 1848568398, + }, + { + "Points": 150, + "UserID": 6052461606, + }, + { + "Points": 100777, + "UserID": 4502530443, + }, + ], + "Points": 1001295417, + "ProcessedAwards": false, + }, + "AthenaBattle": { + "AwardUserIDs": [ + 1188801075, + 1172042968, + 1215986485, + 1451787909, + 2308571170, + 3788950840, + 828327124, + 3943653259, + 1651398441, + 3085523302, + 4466691772, + 159457912, + 3753186602, + 1561866809, + 6074098987, + 2341653101, + 1848568398, + 2509540278, + 4309671585, + 4979572981, + 2829021022, + 5101070466, + 94439912, + 1639575673, + 146885333, + 7223501468, + 7223474060, + 7223524238, + 7223520595, + 7223525380, + 7223509489, + 7223508036, + 7223510875, + 7223522672, + 7223526461, + 6097024245, + 6052461606, + ], + "BattleID": "AthenaBattle", + "EarnedMedal": "Good", + "Place": 265, + "PointContributions": [ + { + "Points": 29247660, + "UserID": 1188801075, + }, + { + "Points": 379637, + "UserID": 6052461606, + }, + { + "Points": 25064, + "UserID": 828327124, + }, + { + "Points": 111319, + "UserID": 1639575673, + }, + { + "Points": 29768071, + "UserID": 1561866809, + }, + { + "Points": 7558, + "UserID": 146885333, + }, + { + "Points": 21875375, + "UserID": 1215986485, + }, + { + "Points": 3870387, + "UserID": 7223508036, + }, + { + "Points": 4899472, + "UserID": 7223525380, + }, + { + "Points": 3985067, + "UserID": 7223520595, + }, + { + "Points": 11993926, + "UserID": 7223526461, + }, + { + "Points": 8382813, + "UserID": 6097024245, + }, + { + "Points": 6642408, + "UserID": 6074098987, + }, + { + "Points": 3881647, + "UserID": 7223524238, + }, + { + "Points": 4105845, + "UserID": 7223522672, + }, + { + "Points": 5042236, + "UserID": 7223501468, + }, + { + "Points": 7299716, + "UserID": 7223474060, + }, + { + "Points": 6169860, + "UserID": 7223509489, + }, + { + "Points": 5659301, + "UserID": 7223510875, + }, + { + "Points": 2, + "UserID": 2341653101, + }, + ], + "Points": 153347364, + "ProcessedAwards": true, + }, + "Backrooms2026": { + "AwardUserIDs": [], + "BattleID": "Backrooms2026", + "Place": 2209, + "PointContributions": [ + { + "Points": 9039625, + "UserID": 1188801075, + }, + { + "Points": 2063, + "UserID": 2829021022, + }, + { + "Points": 3201235, + "UserID": 3752591750, + }, + { + "Points": 60422, + "UserID": 6097024245, + }, + { + "Points": 719, + "UserID": 1639575673, + }, + { + "Points": 9758, + "UserID": 7223524238, + }, + { + "Points": 547, + "UserID": 1561866809, + }, + ], + "Points": 12314369, + "ProcessedAwards": false, + }, + "BalloonCorgiBattle": { + "AwardUserIDs": [], + "BattleID": "BalloonCorgiBattle", + "Place": 2500, + "PointContributions": [ + { + "Points": 1048, + "UserID": 6052461606, + }, + { + "Points": 102, + "UserID": 1639575673, + }, + { + "Points": 13, + "UserID": 4979572981, + }, + { + "Points": 10, + "UserID": 2341653101, + }, + { + "Points": 19, + "UserID": 2829021022, + }, + { + "Points": 78, + "UserID": 3752591750, + }, + { + "Points": 8, + "UserID": 5101070466, + }, + { + "Points": 145, + "UserID": 4309671585, + }, + ], + "Points": 1423, + "ProcessedAwards": false, + }, + "BasketballBattle": { + "AwardUserIDs": [], + "BattleID": "BasketballBattle", + "PointContributions": [ + { + "Points": 190282, + "UserID": 1639575673, + }, + { + "Points": 162270, + "UserID": 3752591750, + }, + { + "Points": 966840, + "UserID": 6052461606, + }, + ], + "Points": 1319392, + "ProcessedAwards": false, + }, + "BlockPartyBattle": { + "AwardUserIDs": [], + "BattleID": "BlockPartyBattle", + "Place": 2484, + "PointContributions": [ + { + "Points": 751, + "UserID": 6052461606, + }, + ], + "Points": 751, + "ProcessedAwards": false, + }, + "CannonBattle": { + "AwardUserIDs": [ + 1188801075, + 1172042968, + 1215986485, + 1451787909, + 2308571170, + 3788950840, + 828327124, + 3943653259, + 1651398441, + 3085523302, + 4466691772, + 159457912, + 3753186602, + 1561866809, + 6074098987, + 5392755671, + 2341653101, + 1848568398, + 2509540278, + 4309671585, + 4979572981, + 2829021022, + 5101070466, + 94439912, + 1639575673, + 146885333, + 7223501468, + 7223474060, + 7223524238, + 7223520595, + 7223525380, + 7223509489, + 7223508036, + 7223510875, + 7223522672, + 7223526461, + 6097024245, + ], + "BattleID": "CannonBattle", + "EarnedMedal": "Good", + "Place": 437, + "PointContributions": [ + { + "Points": 16237, + "UserID": 1188801075, + }, + { + "Points": 289, + "UserID": 1639575673, + }, + { + "Points": 9113, + "UserID": 1215986485, + }, + { + "Points": 3687, + "UserID": 7223474060, + }, + { + "Points": 9928, + "UserID": 1561866809, + }, + { + "Points": 2752, + "UserID": 7223501468, + }, + { + "Points": 4190, + "UserID": 7223526461, + }, + { + "Points": 2524, + "UserID": 7223509489, + }, + { + "Points": 4622, + "UserID": 7223508036, + }, + { + "Points": 4211, + "UserID": 7223520595, + }, + { + "Points": 4117, + "UserID": 7223522672, + }, + { + "Points": 4140, + "UserID": 7223524238, + }, + { + "Points": 1105, + "UserID": 7223525380, + }, + ], + "Points": 66915, + "ProcessedAwards": true, + }, + "CardBattle": { + "AwardUserIDs": [], + "BattleID": "CardBattle", + "Place": 586, + "PointContributions": [ + { + "Points": 100, + "UserID": 1639575673, + }, + { + "Points": 414, + "UserID": 1215986485, + }, + { + "Points": 8028, + "UserID": 1188801075, + }, + { + "Points": 1236, + "UserID": 1561866809, + }, + { + "Points": 62, + "UserID": 7223524238, + }, + { + "Points": 136, + "UserID": 7223474060, + }, + { + "Points": 145, + "UserID": 6074098987, + }, + { + "Points": 75, + "UserID": 5101070466, + }, + { + "Points": 51, + "UserID": 6052461606, + }, + { + "Points": 50, + "UserID": 146885333, + }, + ], + "Points": 10297, + "ProcessedAwards": false, + }, "CatchingBattle": { "AwardUserIDs": [], "BattleID": "CatchingBattle", @@ -159,6 +645,47 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Clan 1`] = ` "Points": 1727, "ProcessedAwards": false, }, + "Christmas2024": { + "AwardUserIDs": [], + "BattleID": "Christmas2024", + "Place": 680, + "PointContributions": [ + { + "Points": 32420, + "UserID": 5101070466, + }, + { + "Points": 265740, + "UserID": 1172042968, + }, + { + "Points": 2594000, + "UserID": 1188801075, + }, + { + "Points": 99870, + "UserID": 1639575673, + }, + { + "Points": 840, + "UserID": 7223524238, + }, + ], + "Points": 2992870, + "ProcessedAwards": false, + }, + "Christmas2025": { + "AwardUserIDs": [], + "BattleID": "Christmas2025", + "PointContributions": [ + { + "Points": 2035, + "UserID": 3752591750, + }, + ], + "Points": 2035, + "ProcessedAwards": false, + }, "CrabBattle": { "AwardUserIDs": [], "BattleID": "CrabBattle", @@ -436,14 +963,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Clan 1`] = ` "HalloweenBattle": { "AwardUserIDs": [], "BattleID": "HalloweenBattle", - "Place": 2149, + "Place": 1823, "PointContributions": [ { - "Points": 63812, + "Points": 76405, "UserID": 828327124, }, { - "Points": 225, + "Points": 328, "UserID": 1639575673, }, { @@ -455,15 +982,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Clan 1`] = ` "UserID": 1651398441, }, { - "Points": 9953, + "Points": 19188, "UserID": 1188801075, }, { - "Points": 2332, + "Points": 11407, "UserID": 1561866809, }, { - "Points": 1358, + "Points": 4334, "UserID": 6074098987, }, { @@ -471,7 +998,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Clan 1`] = ` "UserID": 5101070466, }, ], - "Points": 77685, + "Points": 111667, "ProcessedAwards": false, }, "IndexBattle": { @@ -518,6 +1045,203 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Clan 1`] = ` "Points": 4665, "ProcessedAwards": false, }, + "LineBattle": { + "AwardUserIDs": [], + "BattleID": "LineBattle", + "Place": 936, + "PointContributions": [ + { + "Points": 20, + "UserID": 1188801075, + }, + ], + "Points": 20, + "ProcessedAwards": false, + }, + "LuckyBattle": { + "AwardUserIDs": [], + "BattleID": "LuckyBattle", + "Place": 631, + "PointContributions": [ + { + "Points": 303, + "UserID": 828327124, + }, + { + "Points": 8206, + "UserID": 6052461606, + }, + { + "Points": 822880, + "UserID": 1188801075, + }, + { + "Points": 11685, + "UserID": 1639575673, + }, + { + "Points": 446, + "UserID": 2341653101, + }, + { + "Points": 102708, + "UserID": 1561866809, + }, + { + "Points": 1009, + "UserID": 146885333, + }, + { + "Points": 53147, + "UserID": 1451787909, + }, + { + "Points": 95265, + "UserID": 1215986485, + }, + { + "Points": 62279, + "UserID": 1172042968, + }, + ], + "Points": 1157928, + "ProcessedAwards": false, + }, + "LuckyChestBattle": { + "AwardUserIDs": [ + 1188801075, + 1172042968, + 1215986485, + 1451787909, + 2308571170, + 3788950840, + 828327124, + 3943653259, + 1651398441, + 3085523302, + 4466691772, + 159457912, + 3753186602, + 1561866809, + 6074098987, + 2341653101, + 1848568398, + 2509540278, + 4309671585, + 4979572981, + 2829021022, + 5101070466, + 94439912, + 1639575673, + 146885333, + 7223501468, + 7223474060, + 7223524238, + 7223520595, + 7223525380, + 7223509489, + 7223508036, + 7223510875, + 7223522672, + 7223526461, + 6097024245, + 6052461606, + 3752591750, + 66341199, + 4502530443, + ], + "BattleID": "LuckyChestBattle", + "EarnedMedal": "Good", + "Place": 104, + "PointContributions": [ + { + "Points": 5967369, + "UserID": 6074098987, + }, + { + "Points": 6212007, + "UserID": 6097024245, + }, + { + "Points": 5230748, + "UserID": 7223501468, + }, + { + "Points": 10731313, + "UserID": 1188801075, + }, + { + "Points": 1296385, + "UserID": 7223520595, + }, + { + "Points": 2489331, + "UserID": 7223522672, + }, + { + "Points": 2149622, + "UserID": 7223524238, + }, + { + "Points": 2487168, + "UserID": 7223508036, + }, + { + "Points": 2806774, + "UserID": 7223526461, + }, + { + "Points": 2726434, + "UserID": 7223525380, + }, + { + "Points": 5792188, + "UserID": 1561866809, + }, + { + "Points": 4551072, + "UserID": 7223474060, + }, + { + "Points": 6061055, + "UserID": 7223510875, + }, + { + "Points": 6697139, + "UserID": 1215986485, + }, + { + "Points": 1678178, + "UserID": 7223509489, + }, + { + "Points": 3873, + "UserID": 4979572981, + }, + { + "Points": 4684, + "UserID": 4309671585, + }, + { + "Points": 41010, + "UserID": 3752591750, + }, + { + "Points": 7478, + "UserID": 4502530443, + }, + { + "Points": 15, + "UserID": 6052461606, + }, + { + "Points": 9175, + "UserID": 1639575673, + }, + ], + "Points": 66943018, + "ProcessedAwards": true, + }, "MillionaireRunBattle": { "AwardUserIDs": [], "BattleID": "MillionaireRunBattle", @@ -562,6 +1286,193 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Clan 1`] = ` "Points": 306, "ProcessedAwards": false, }, + "NewYear2024": { + "AwardUserIDs": [], + "BattleID": "NewYear2024", + "PointContributions": [ + { + "Points": 164, + "UserID": 1188801075, + }, + ], + "Points": 164, + "ProcessedAwards": false, + }, + "PixelChickBattle": { + "AwardUserIDs": [ + 1188801075, + 1172042968, + 1215986485, + 1451787909, + 2308571170, + 3788950840, + 828327124, + 3943653259, + 1651398441, + 3085523302, + 4466691772, + 159457912, + 3753186602, + 1561866809, + 6074098987, + 2341653101, + 1848568398, + 2509540278, + 4309671585, + 4979572981, + 2829021022, + 5101070466, + 94439912, + 1639575673, + 146885333, + 7223501468, + 7223474060, + 7223524238, + 7223520595, + 7223525380, + 7223509489, + 7223508036, + 7223510875, + 7223522672, + 7223526461, + 6097024245, + 6052461606, + 3752591750, + 66341199, + ], + "BattleID": "PixelChickBattle", + "EarnedMedal": "Good", + "Place": 415, + "PointContributions": [ + { + "Points": 113707, + "UserID": 6052461606, + }, + { + "Points": 144855, + "UserID": 7223510875, + }, + { + "Points": 257292, + "UserID": 6074098987, + }, + { + "Points": 68749, + "UserID": 1188801075, + }, + { + "Points": 6359, + "UserID": 1651398441, + }, + { + "Points": 143, + "UserID": 2829021022, + }, + { + "Points": 129133, + "UserID": 7223501468, + }, + { + "Points": 2, + "UserID": 3752591750, + }, + { + "Points": 371961, + "UserID": 1561866809, + }, + { + "Points": 409163, + "UserID": 1215986485, + }, + { + "Points": 183731, + "UserID": 6097024245, + }, + { + "Points": 50, + "UserID": 1639575673, + }, + { + "Points": 208957, + "UserID": 7223474060, + }, + { + "Points": 76104, + "UserID": 7223508036, + }, + { + "Points": 67187, + "UserID": 7223509489, + }, + { + "Points": 149419, + "UserID": 7223525380, + }, + { + "Points": 165670, + "UserID": 7223526461, + }, + { + "Points": 140459, + "UserID": 7223522672, + }, + { + "Points": 201372, + "UserID": 7223524238, + }, + { + "Points": 124255, + "UserID": 7223520595, + }, + ], + "Points": 2818568, + "ProcessedAwards": true, + }, + "PoisonTurtleBattle": { + "AwardUserIDs": [], + "BattleID": "PoisonTurtleBattle", + "Place": 2185, + "PointContributions": [ + { + "Points": 4170593, + "UserID": 6052461606, + }, + { + "Points": 70, + "UserID": 3752591750, + }, + { + "Points": 188, + "UserID": 1172042968, + }, + { + "Points": 9621, + "UserID": 1639575673, + }, + { + "Points": 188, + "UserID": 4979572981, + }, + { + "Points": 350, + "UserID": 4309671585, + }, + { + "Points": 565, + "UserID": 2341653101, + }, + { + "Points": 292, + "UserID": 2829021022, + }, + { + "Points": 95, + "UserID": 828327124, + }, + ], + "Points": 4181962, + "ProcessedAwards": false, + }, "PrisonBattle": { "AwardUserIDs": [], "BattleID": "PrisonBattle", @@ -656,18 +1567,10 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Clan 1`] = ` "Points": 1000000, "UserID": 2829021022, }, - { - "Points": 375000, - "UserID": 2318720642, - }, { "Points": 1750, "UserID": 2509540278, }, - { - "Points": 7666, - "UserID": 5392755671, - }, { "Points": 30000000, "UserID": 1172042968, @@ -716,10 +1619,642 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Clan 1`] = ` "Points": 1118043213, "ProcessedAwards": false, }, + "SantaBattle": { + "AwardUserIDs": [], + "BattleID": "SantaBattle", + "Place": 2500, + "PointContributions": [ + { + "Points": 42294, + "UserID": 1172042968, + }, + { + "Points": 105992, + "UserID": 1188801075, + }, + { + "Points": 40078, + "UserID": 7223522672, + }, + { + "Points": 5000, + "UserID": 7223524238, + }, + { + "Points": 12867, + "UserID": 1215986485, + }, + { + "Points": 50119, + "UserID": 7223508036, + }, + { + "Points": 45138, + "UserID": 7223509489, + }, + { + "Points": 5061, + "UserID": 7223510875, + }, + { + "Points": 5101, + "UserID": 7223520595, + }, + { + "Points": 5014, + "UserID": 7223501468, + }, + { + "Points": 15032, + "UserID": 7223526461, + }, + { + "Points": 46, + "UserID": 7223525380, + }, + { + "Points": 15004, + "UserID": 7223474060, + }, + { + "Points": 2897, + "UserID": 1561866809, + }, + { + "Points": 924, + "UserID": 1451787909, + }, + { + "Points": 5240, + "UserID": 5101070466, + }, + { + "Points": 270, + "UserID": 6074098987, + }, + ], + "Points": 356077, + "ProcessedAwards": false, + }, + "SoccerBattle2026": { + "AwardUserIDs": [], + "BattleID": "SoccerBattle2026", + "Place": 1148, + "PointContributions": [ + { + "Points": 4036595, + "UserID": 3752591750, + }, + { + "Points": 35464717, + "UserID": 1188801075, + }, + { + "Points": 231077, + "UserID": 1639575673, + }, + { + "Points": 3425784, + "UserID": 7223524238, + }, + { + "Points": 3131226, + "UserID": 7223525380, + }, + { + "Points": 3548890, + "UserID": 7223522672, + }, + { + "Points": 3175104, + "UserID": 7223520595, + }, + { + "Points": 1461, + "UserID": 7223526461, + }, + { + "Points": 3075703, + "UserID": 7223508036, + }, + { + "Points": 13411, + "UserID": 7223509489, + }, + { + "Points": 308, + "UserID": 7223501468, + }, + { + "Points": 5048552, + "UserID": 7223474060, + }, + { + "Points": 165, + "UserID": 1561866809, + }, + { + "Points": 232, + "UserID": 7223510875, + }, + { + "Points": 61019, + "UserID": 4979572981, + }, + ], + "Points": 61214244, + "ProcessedAwards": false, + }, + "Spring2026": { + "AwardUserIDs": [ + 1188801075, + 1172042968, + 1215986485, + 1451787909, + 2308571170, + 3788950840, + 828327124, + 3943653259, + 1651398441, + 3085523302, + 4466691772, + 159457912, + 3753186602, + 1561866809, + 6074098987, + 2341653101, + 1848568398, + 2509540278, + 4309671585, + 4979572981, + 2829021022, + 5101070466, + 94439912, + 1639575673, + 146885333, + 7223501468, + 7223474060, + 7223524238, + 7223520595, + 7223525380, + 7223509489, + 7223508036, + 7223510875, + 7223522672, + 7223526461, + 6097024245, + 6052461606, + 3752591750, + 66341199, + 4502530443, + ], + "BattleID": "Spring2026", + "EarnedMedal": "Good", + "Place": 250, + "PointContributions": [ + { + "Points": 52617436, + "UserID": 1188801075, + }, + { + "Points": 34526466, + "UserID": 7223508036, + }, + { + "Points": 35384773, + "UserID": 7223524238, + }, + { + "Points": 33040657, + "UserID": 7223522672, + }, + { + "Points": 28190991, + "UserID": 6097024245, + }, + { + "Points": 20008742, + "UserID": 7223474060, + }, + { + "Points": 22078342, + "UserID": 7223501468, + }, + { + "Points": 586, + "UserID": 3752591750, + }, + { + "Points": 22944422, + "UserID": 7223510875, + }, + { + "Points": 35390324, + "UserID": 7223509489, + }, + { + "Points": 23111458, + "UserID": 6074098987, + }, + { + "Points": 35481114, + "UserID": 7223525380, + }, + { + "Points": 35796869, + "UserID": 7223520595, + }, + { + "Points": 32460462, + "UserID": 7223526461, + }, + { + "Points": 29341839, + "UserID": 1215986485, + }, + { + "Points": 22543316, + "UserID": 1561866809, + }, + { + "Points": 2679, + "UserID": 4502530443, + }, + { + "Points": 515, + "UserID": 4979572981, + }, + { + "Points": 1, + "UserID": 4309671585, + }, + ], + "Points": 462913392, + "ProcessedAwards": true, + }, + "SquidBattle": { + "AwardUserIDs": [], + "BattleID": "SquidBattle", + "PointContributions": [ + { + "Points": 9, + "UserID": 5101070466, + }, + { + "Points": 2151, + "UserID": 1188801075, + }, + { + "Points": 357, + "UserID": 1639575673, + }, + { + "Points": 335, + "UserID": 4979572981, + }, + { + "Points": 530, + "UserID": 4309671585, + }, + { + "Points": 91, + "UserID": 146885333, + }, + { + "Points": 56, + "UserID": 2341653101, + }, + { + "Points": 2, + "UserID": 1172042968, + }, + { + "Points": 37, + "UserID": 3943653259, + }, + ], + "Points": 5039, + "ProcessedAwards": false, + }, + "StarryBattle": { + "AwardUserIDs": [ + 1188801075, + 1172042968, + 1215986485, + 1451787909, + 2308571170, + 3788950840, + 828327124, + 3943653259, + 1651398441, + 3085523302, + 4466691772, + 159457912, + 3753186602, + 1561866809, + 6074098987, + 2341653101, + 1848568398, + 2509540278, + 4309671585, + 4979572981, + 2829021022, + 5101070466, + 94439912, + 1639575673, + 146885333, + 7223501468, + 7223474060, + 7223524238, + 7223520595, + 7223525380, + 7223509489, + 7223508036, + 7223510875, + 7223522672, + 7223526461, + 6097024245, + 6052461606, + 3752591750, + 66341199, + 4502530443, + ], + "BattleID": "StarryBattle", + "EarnedMedal": "Good", + "Place": 210, + "PointContributions": [ + { + "Points": 5263, + "UserID": 1188801075, + }, + { + "Points": 3954, + "UserID": 6097024245, + }, + { + "Points": 5497, + "UserID": 6074098987, + }, + { + "Points": 5099, + "UserID": 7223510875, + }, + { + "Points": 4393, + "UserID": 1215986485, + }, + { + "Points": 4845, + "UserID": 7223525380, + }, + { + "Points": 4848, + "UserID": 7223520595, + }, + { + "Points": 4853, + "UserID": 7223526461, + }, + { + "Points": 4850, + "UserID": 7223509489, + }, + { + "Points": 4394, + "UserID": 7223508036, + }, + { + "Points": 3723, + "UserID": 1561866809, + }, + { + "Points": 3390, + "UserID": 7223474060, + }, + { + "Points": 4019, + "UserID": 7223501468, + }, + { + "Points": 2140, + "UserID": 7223522672, + }, + { + "Points": 2011, + "UserID": 7223524238, + }, + ], + "Points": 63279, + "ProcessedAwards": true, + }, + "StrengthBattle": { + "AwardUserIDs": [], + "BattleID": "StrengthBattle", + "PointContributions": [ + { + "Points": 284062, + "UserID": 3752591750, + }, + { + "Points": 3861293, + "UserID": 6052461606, + }, + { + "Points": 1186801, + "UserID": 1639575673, + }, + { + "Points": 15248753, + "UserID": 828327124, + }, + ], + "Points": 20580909, + "ProcessedAwards": false, + }, + "TieDyeBattle": { + "AwardUserIDs": [], + "BattleID": "TieDyeBattle", + "Place": 1745, + "PointContributions": [ + { + "Points": 4799773, + "UserID": 1188801075, + }, + { + "Points": 18147, + "UserID": 1215986485, + }, + { + "Points": 37219, + "UserID": 6052461606, + }, + { + "Points": 50856, + "UserID": 1639575673, + }, + { + "Points": 281, + "UserID": 828327124, + }, + { + "Points": 32630, + "UserID": 1561866809, + }, + { + "Points": 29, + "UserID": 6074098987, + }, + { + "Points": 12897, + "UserID": 146885333, + }, + ], + "Points": 4951832, + "ProcessedAwards": false, + }, + "TowerBattle": { + "AwardUserIDs": [], + "BattleID": "TowerBattle", + "Place": 2488, + "PointContributions": [ + { + "Points": 26, + "UserID": 3752591750, + }, + { + "Points": 60, + "UserID": 6052461606, + }, + { + "Points": 91, + "UserID": 1639575673, + }, + ], + "Points": 177, + "ProcessedAwards": false, + }, + "TrickOrTreat": { + "AwardUserIDs": [], + "BattleID": "TrickOrTreat", + "PointContributions": [ + { + "Points": 227, + "UserID": 4979572981, + }, + { + "Points": 326, + "UserID": 4309671585, + }, + { + "Points": 618, + "UserID": 6052461606, + }, + { + "Points": 96, + "UserID": 3752591750, + }, + ], + "Points": 1267, + "ProcessedAwards": false, + }, + "ValBattle": { + "AwardUserIDs": [], + "BattleID": "ValBattle", + "Place": 2500, + "PointContributions": [ + { + "Points": 439, + "UserID": 1639575673, + }, + { + "Points": 368, + "UserID": 1561866809, + }, + { + "Points": 93, + "UserID": 7223501468, + }, + { + "Points": 2, + "UserID": 7223522672, + }, + { + "Points": 445, + "UserID": 1215986485, + }, + { + "Points": 423, + "UserID": 1188801075, + }, + { + "Points": 141, + "UserID": 5101070466, + }, + { + "Points": 280, + "UserID": 1172042968, + }, + { + "Points": 413, + "UserID": 146885333, + }, + { + "Points": 255, + "UserID": 6097024245, + }, + { + "Points": 415, + "UserID": 6074098987, + }, + { + "Points": 310, + "UserID": 7223474060, + }, + { + "Points": 272, + "UserID": 1451787909, + }, + { + "Points": 126, + "UserID": 4979572981, + }, + { + "Points": 102, + "UserID": 4309671585, + }, + { + "Points": 35, + "UserID": 2341653101, + }, + { + "Points": 237, + "UserID": 94439912, + }, + ], + "Points": 4356, + "ProcessedAwards": false, + }, + "YearEnd2024": { + "AwardUserIDs": [], + "BattleID": "YearEnd2024", + "Place": 1523, + "PointContributions": [ + { + "Points": 55250, + "UserID": 1188801075, + }, + { + "Points": 262, + "UserID": 5101070466, + }, + ], + "Points": 55512, + "ProcessedAwards": false, + }, }, "CountryCode": "US", "Created": 1704647825, - "DepositedDiamonds": 15630000, + "DepositedDiamonds": 97626000, "Desc": "MegaMonsterFatherClan", "DiamondContributions": { "AllTime": { @@ -765,7 +2300,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Clan 1`] = ` "UserID": 3753186602, }, { - "Diamonds": 1230000, + "Diamonds": 11230000, "UserID": 2341653101, }, { @@ -785,11 +2320,11 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Clan 1`] = ` "UserID": 94439912, }, { - "Diamonds": 10000, + "Diamonds": 110000, "UserID": 4309671585, }, { - "Diamonds": 10000, + "Diamonds": 40000, "UserID": 4979572981, }, { @@ -808,10 +2343,27 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Clan 1`] = ` "Diamonds": 500000, "UserID": 146885333, }, + { + "Diamonds": 2500000, + "UserID": 5101070466, + }, + { + "Diamonds": 39106000, + "UserID": 6052461606, + }, + { + "Diamonds": 23260000, + "UserID": 3752591750, + }, + { + "Diamonds": 7000000, + "UserID": 4502530443, + }, ], - "Sum": 81749292500, + "Sum": 81831288500, }, }, + "GoodMedals": 6, "GuildLevel": 8, "Icon": "rbxassetid://14976441222", "MemberCapacity": 75, @@ -886,11 +2438,6 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Clan 1`] = ` "PermissionLevel": 50, "UserID": 6074098987, }, - { - "JoinTime": 1718251008, - "PermissionLevel": 50, - "UserID": 5392755671, - }, { "JoinTime": 1718251011, "PermissionLevel": 50, @@ -916,11 +2463,6 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Clan 1`] = ` "PermissionLevel": 50, "UserID": 4979572981, }, - { - "JoinTime": 1719110534, - "PermissionLevel": 50, - "UserID": 2318720642, - }, { "JoinTime": 1719338586, "PermissionLevel": 50, @@ -946,6 +2488,81 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Clan 1`] = ` "PermissionLevel": 50, "UserID": 146885333, }, + { + "JoinTime": 1732485692, + "PermissionLevel": 50, + "UserID": 7223501468, + }, + { + "JoinTime": 1732485781, + "PermissionLevel": 50, + "UserID": 7223474060, + }, + { + "JoinTime": 1732487072, + "PermissionLevel": 50, + "UserID": 7223524238, + }, + { + "JoinTime": 1732487269, + "PermissionLevel": 50, + "UserID": 7223520595, + }, + { + "JoinTime": 1732488335, + "PermissionLevel": 50, + "UserID": 7223525380, + }, + { + "JoinTime": 1732488381, + "PermissionLevel": 50, + "UserID": 7223509489, + }, + { + "JoinTime": 1732488441, + "PermissionLevel": 50, + "UserID": 7223508036, + }, + { + "JoinTime": 1732488483, + "PermissionLevel": 50, + "UserID": 7223510875, + }, + { + "JoinTime": 1732489211, + "PermissionLevel": 50, + "UserID": 7223522672, + }, + { + "JoinTime": 1733629832, + "PermissionLevel": 50, + "UserID": 7223526461, + }, + { + "JoinTime": 1738117785, + "PermissionLevel": 50, + "UserID": 6097024245, + }, + { + "JoinTime": 1740351066, + "PermissionLevel": 50, + "UserID": 6052461606, + }, + { + "JoinTime": 1743988064, + "PermissionLevel": 50, + "UserID": 3752591750, + }, + { + "JoinTime": 1744846036, + "PermissionLevel": 50, + "UserID": 66341199, + }, + { + "JoinTime": 1773672671, + "PermissionLevel": 50, + "UserID": 4502530443, + }, ], "Name": "MMFC", "OfficerCapacity": 10, @@ -962,14 +2579,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Clans 1`] = ` { "data": [ { - "CountryCode": "US", - "Created": 1701469087, - "DepositedDiamonds": 13794382660, - "Icon": "rbxassetid://14976584980", + "CountryCode": "GB", + "Created": 1724619754, + "DepositedDiamonds": 292910172696, + "Icon": "rbxassetid://14976561960", "MemberCapacity": 75, "Members": 74, - "Name": "Goop", - "Points": 40596656, + "Name": "UN0", + "Points": 5122717149, }, ], "status": "ok", @@ -980,235 +2597,588 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` { "data": [ { - "category": "Pet", + "category": "Enchant", "configData": { - "id": "Unicorn Dragon", + "id": "Strong Pets", + "tn": 1, }, - "value": 816815, + "value": 5852925076, }, { - "category": "Pet", + "category": "Enchant", "configData": { - "id": "Turtle", + "id": "Diamonds", + "tn": 1, }, - "value": 191419593, + "value": 4001506203, }, { - "category": "Pet", + "category": "Enchant", "configData": { - "id": "Scarecrow Cat", - "pt": 1, + "id": "Tap Power", + "tn": 1, }, - "value": 32955969, + "value": 6380588160, }, { - "category": "Pet", + "category": "Potion", "configData": { - "id": "Ladybug", + "id": "Damage", + "tn": 1, }, - "value": 213071967, + "value": 20420838578, }, { - "category": "Pet", + "category": "Enchant", "configData": { - "id": "Llama", + "id": "Strong Pets", + "tn": 2, }, - "value": 59321823, + "value": 27860130148, }, { - "category": "Pet", + "category": "Potion", "configData": { - "id": "Ugly Duckling", - "pt": 1, + "id": "Coins", + "tn": 1, }, - "value": 28373074, + "value": 12627498421, }, { - "category": "Pet", + "category": "Enchant", "configData": { - "id": "Ugly Duckling", + "id": "Walkspeed", + "tn": 2, }, - "value": 243409418, + "value": 64156883446, }, { - "category": "Pet", + "category": "Potion", "configData": { - "id": "Piggy", + "id": "Treasure Hunter", + "tn": 1, }, - "value": 304324192, + "value": 10764763774, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Scarecrow Cat", + "id": "Gift Bag", }, - "value": 272470684, + "value": 21685719608, }, { - "category": "Pet", + "category": "Potion", "configData": { - "id": "Ladybug", - "pt": 1, + "id": "Coins", + "tn": 2, }, - "value": 28330916, + "value": 75552758316, }, { - "category": "Pet", + "category": "Potion", "configData": { - "id": "Hedgehog", + "id": "Lucky", + "tn": 1, }, - "value": 77632301, + "value": 16061784075, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Turtle", - "pt": 2, + "id": "Coins Flag", }, - "value": 6421821, + "value": 36951550222, }, { - "category": "Pet", + "category": "Potion", "configData": { - "id": "Titanic Banana", + "id": "Walkspeed", + "tn": 1, }, - "value": 202, + "value": 10418022246, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Corgi", + "id": "Original", }, - "value": 14436600807, + "value": 57872510, }, { - "category": "Pet", + "category": "Fruit", "configData": { - "id": "Huge Pink Balloon Cat", + "id": "Banana", + "tn": 1, }, - "value": 16974, + "value": 290507973, }, { "category": "Pet", "configData": { - "id": "Cat", + "id": "Unicorn Dragon", }, - "value": 14428874096, + "value": 734761, }, { - "category": "Pet", + "category": "Fruit", "configData": { - "id": "Dog", + "id": "Apple", + "tn": 1, }, - "value": 14428369174, + "value": 259543850, }, { "category": "Pet", "configData": { - "id": "Axolotl", - "sh": true, + "id": "Turtle", }, - "value": 26015359, + "value": 211799681, }, { - "category": "Pet", + "category": "Potion", "configData": { - "id": "Axolotl", + "id": "Diamonds", + "tn": 1, }, - "value": 14439218426, + "value": 50346888024, }, { "category": "Pet", "configData": { - "id": "Bunny", + "id": "Scarecrow Cat", + "pt": 1, }, - "value": 1679177845, + "value": 38800838, }, { "category": "Pet", "configData": { - "id": "Bear", + "id": "Ladybug", }, - "value": 166385867, + "value": 240200680, }, { "category": "Pet", "configData": { - "id": "White Bunny", + "id": "Llama", }, - "value": 814762212, + "value": 66446626, }, { "category": "Pet", "configData": { - "id": "Squirrel", + "id": "Ugly Duckling", + "pt": 1, }, - "value": 391225892, + "value": 34110177, }, { "category": "Pet", "configData": { - "id": "Mining Dog", + "id": "Ugly Duckling", }, - "value": 400675134, + "value": 289370933, }, { "category": "Pet", "configData": { - "id": "Chicken", + "id": "Piggy", }, - "value": 494126934, + "value": 337230854, }, { "category": "Pet", "configData": { - "id": "Firefly", + "id": "Scarecrow Cat", }, - "value": 126714705, + "value": 301861292, }, { "category": "Pet", "configData": { - "id": "Happy Rock", + "id": "Ladybug", "pt": 1, }, - "value": 16404292, + "value": 34207662, }, { "category": "Pet", "configData": { - "id": "Mining Dog", - "pt": 1, + "id": "Hedgehog", }, - "value": 36935748, + "value": 86333246, }, { "category": "Pet", "configData": { - "id": "Happy Rock", + "id": "Turtle", + "pt": 2, }, - "value": 168383642, + "value": 6655481, }, { "category": "Pet", "configData": { - "id": "Platypus", + "id": "Titanic Banana", }, - "value": 344091230, + "value": 341, }, { "category": "Pet", "configData": { - "id": "Dragon", + "id": "Corgi", }, - "value": 57088656, + "value": 14892879822, }, { "category": "Pet", "configData": { - "id": "Green Cobra", + "id": "Huge Pink Balloon Cat", }, - "value": 122033982, + "value": 20884, + }, + { + "category": "Pet", + "configData": { + "id": "Cat", + }, + "value": 14866225265, + }, + { + "category": "Pet", + "configData": { + "id": "Dog", + }, + "value": 14873241429, + }, + { + "category": "Pet", + "configData": { + "id": "Axolotl", + "sh": true, + }, + "value": 27286738, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Axolotl", + }, + "value": 1209944, + }, + { + "category": "Pet", + "configData": { + "id": "Axolotl", + }, + "value": 14894469803, + }, + { + "category": "Booth", + "configData": { + "id": "VIP", + }, + "value": 1209939, + }, + { + "category": "Enchant", + "configData": { + "id": "Criticals", + "tn": 2, + }, + "value": 28467816643, + }, + { + "category": "Enchant", + "configData": { + "id": "Tap Power", + "tn": 2, + }, + "value": 31143779184, + }, + { + "category": "Enchant", + "configData": { + "id": "Magnet", + "tn": 1, + }, + "value": 31416133649, + }, + { + "category": "Enchant", + "configData": { + "id": "Walkspeed", + "tn": 1, + }, + "value": 8709543007, + }, + { + "category": "Enchant", + "configData": { + "id": "Treasure Hunter", + "tn": 3, + }, + "value": 48764465486, + }, + { + "category": "Enchant", + "configData": { + "id": "Coins", + "tn": 2, + }, + "value": 34724897163, + }, + { + "category": "Enchant", + "configData": { + "id": "Magnet", + "tn": 3, + }, + "value": 94882529839, + }, + { + "category": "Misc", + "configData": { + "id": "Toy Bone", + }, + "value": 47180621874, + }, + { + "category": "Misc", + "configData": { + "id": "Toy Ball", + }, + "value": 67318477501, + }, + { + "category": "Misc", + "configData": { + "id": "Diamonds Flag", + }, + "value": 34351037445, + }, + { + "category": "Misc", + "configData": { + "id": "Magnet Flag", + }, + "value": 26370708864, + }, + { + "category": "Potion", + "configData": { + "id": "Damage", + "tn": 2, + }, + "value": 92667504195, + }, + { + "category": "Potion", + "configData": { + "id": "Treasure Hunter", + "tn": 2, + }, + "value": 43619987323, + }, + { + "category": "Potion", + "configData": { + "id": "Diamonds", + "tn": 2, + }, + "value": 41120510539, + }, + { + "category": "Potion", + "configData": { + "id": "Damage", + "tn": 3, + }, + "value": 60046002624, + }, + { + "category": "Potion", + "configData": { + "id": "Damage", + "tn": 5, + }, + "value": 10147495989, + }, + { + "category": "Fruit", + "configData": { + "id": "Pineapple", + "tn": 1, + }, + "value": 252826482, + }, + { + "category": "Fruit", + "configData": { + "id": "Orange", + "tn": 1, + }, + "value": 233094596, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 17", + }, + "value": 1695747, + }, + { + "category": "Pet", + "configData": { + "id": "Bunny", + }, + "value": 1808089603, + }, + { + "category": "Pet", + "configData": { + "id": "Bear", + }, + "value": 184712663, + }, + { + "category": "Pet", + "configData": { + "id": "White Bunny", + }, + "value": 867284888, + }, + { + "category": "Pet", + "configData": { + "id": "Squirrel", + }, + "value": 433859200, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Cat", + }, + "value": 2178244, + }, + { + "category": "Enchant", + "configData": { + "id": "Lucky Eggs", + "tn": 2, + }, + "value": 37064463330, + }, + { + "category": "Enchant", + "configData": { + "id": "Criticals", + "tn": 1, + }, + "value": 5904733283, + }, + { + "category": "Misc", + "configData": { + "id": "Basic Coin Jar", + }, + "value": 25561436386, + }, + { + "category": "Misc", + "configData": { + "id": "Giant Coin Jar", + }, + "value": 8745638528, + }, + { + "category": "Misc", + "configData": { + "id": "Hasty Flag", + }, + "value": 22770856652, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Dog", + }, + "value": 465693787, + }, + { + "category": "Pet", + "configData": { + "id": "Chicken", + }, + "value": 526694056, + }, + { + "category": "Pet", + "configData": { + "id": "Firefly", + }, + "value": 142449273, + }, + { + "category": "Pet", + "configData": { + "id": "Happy Rock", + "pt": 1, + }, + "value": 18915691, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Dog", + "pt": 1, + }, + "value": 41761213, + }, + { + "category": "Pet", + "configData": { + "id": "Happy Rock", + }, + "value": 196881053, + }, + { + "category": "Pet", + "configData": { + "id": "Platypus", + }, + "value": 381770346, + }, + { + "category": "Pet", + "configData": { + "id": "Dragon", + }, + "value": 62365202, + }, + { + "category": "Enchant", + "configData": { + "id": "Treasure Hunter", + "tn": 1, + }, + "value": 6053204390, + }, + { + "category": "Misc", + "configData": { + "id": "Nametag", + }, + "value": 1987381891, + }, + { + "category": "Pet", + "configData": { + "id": "Green Cobra", + }, + "value": 136505802, }, { "category": "Pet", @@ -1216,21 +3186,44 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Willow Wisp", "pt": 2, }, - "value": 3441364, + "value": 3730845, }, { "category": "Pet", "configData": { "id": "Bat", }, - "value": 199598331, + "value": 222184617, }, { "category": "Pet", "configData": { "id": "Willow Wisp", }, - "value": 43501844, + "value": 48307385, + }, + { + "category": "Misc", + "configData": { + "id": "TNT", + }, + "value": 29077910108, + }, + { + "category": "Potion", + "configData": { + "id": "Lucky", + "tn": 2, + }, + "value": 87136461611, + }, + { + "category": "Potion", + "configData": { + "id": "Coins", + "tn": 3, + }, + "value": 45602277902, }, { "category": "Pet", @@ -1238,28 +3231,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Agony", "pt": 2, }, - "value": 3184797, + "value": 4030243, }, { "category": "Pet", "configData": { "id": "Huge White Balloon Cat", }, - "value": 1796, + "value": 2717, }, { "category": "Pet", "configData": { "id": "Cyclops", }, - "value": 219385952, + "value": 238102838, }, { "category": "Pet", "configData": { "id": "Pop Cat", }, - "value": 97926, + "value": 99776, }, { "category": "Pet", @@ -1273,21 +3266,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Slime", }, - "value": 219396246, + "value": 237146417, }, { "category": "Pet", "configData": { "id": "Agony", }, - "value": 51708821, + "value": 56148273, }, { "category": "Pet", "configData": { "id": "Dalmatian", }, - "value": 767120591, + "value": 850620066, }, { "category": "Pet", @@ -1296,7 +3289,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 116878, + "value": 142537, }, { "category": "Pet", @@ -1304,7 +3297,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chick", "pt": 1, }, - "value": 74895750, + "value": 85946592, }, { "category": "Pet", @@ -1312,42 +3305,42 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Griffin", "pt": 1, }, - "value": 20072846, + "value": 27268838, }, { "category": "Pet", "configData": { "id": "Bee", }, - "value": 335788415, + "value": 362800773, }, { "category": "Pet", "configData": { "id": "Flamingo", }, - "value": 115244452, + "value": 131604240, }, { "category": "Pet", "configData": { "id": "Knife Cat", }, - "value": 277492, + "value": 263059, }, { "category": "Pet", "configData": { "id": "Chick", }, - "value": 781000109, + "value": 852086238, }, { "category": "Pet", "configData": { "id": "Shadow Griffin", }, - "value": 152574856, + "value": 168490334, }, { "category": "Pet", @@ -1355,14 +3348,69 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dalmatian", "pt": 1, }, - "value": 99217708, + "value": 117529825, + }, + { + "category": "Enchant", + "configData": { + "id": "Lucky Eggs", + "tn": 1, + }, + "value": 3504766918, + }, + { + "category": "Misc", + "configData": { + "id": "Squeaky Toy", + }, + "value": 33993465168, + }, + { + "category": "Potion", + "configData": { + "id": "Coins", + "tn": 5, + }, + "value": 10772860232, + }, + { + "category": "Potion", + "configData": { + "id": "Treasure Hunter", + "tn": 5, + }, + "value": 85477950122, + }, + { + "category": "Potion", + "configData": { + "id": "Diamonds", + "tn": 3, + }, + "value": 24138786585, + }, + { + "category": "Potion", + "configData": { + "id": "Lucky", + "tn": 5, + }, + "value": 12296453883, + }, + { + "category": "Fruit", + "configData": { + "id": "Rainbow", + "tn": 1, + }, + "value": 57084527, }, { "category": "Pet", "configData": { "id": "Butterfly", }, - "value": 289076787, + "value": 340170380, }, { "category": "Pet", @@ -1370,21 +3418,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Butterfly", "pt": 1, }, - "value": 30456174, + "value": 34221039, }, { "category": "Pet", "configData": { "id": "Mushroom Raccoon", }, - "value": 224819726, + "value": 258466214, }, { "category": "Pet", "configData": { "id": "Enchanted Elephant", }, - "value": 81500195, + "value": 93423905, }, { "category": "Pet", @@ -1392,14 +3440,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mushroom Raccoon", "pt": 1, }, - "value": 20011972, + "value": 21970337, }, { "category": "Pet", "configData": { "id": "Enchanted Cat", }, - "value": 118367183, + "value": 136589936, }, { "category": "Pet", @@ -1407,14 +3455,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Enchanted Deer", "pt": 1, }, - "value": 12679869, + "value": 14339637, }, { "category": "Pet", "configData": { "id": "Purple Cobra", }, - "value": 242205144, + "value": 276272494, }, { "category": "Pet", @@ -1422,7 +3470,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mushroom Raccoon", "pt": 2, }, - "value": 7154915, + "value": 7408301, }, { "category": "Pet", @@ -1430,7 +3478,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Enchanted Cat", "pt": 1, }, - "value": 10737969, + "value": 11997081, }, { "category": "Pet", @@ -1438,56 +3486,103 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyclops", "pt": 1, }, - "value": 17948709, + "value": 21459713, }, { "category": "Pet", "configData": { "id": "Enchanted Deer", }, - "value": 129881216, + "value": 148811392, + }, + { + "category": "Enchant", + "configData": { + "id": "Diamonds", + "tn": 2, + }, + "value": 46919328117, }, { "category": "Pet", "configData": { "id": "Turkey", }, - "value": 173360025, + "value": 187348498, + }, + { + "category": "Enchant", + "configData": { + "id": "Treasure Hunter", + "tn": 2, + }, + "value": 39605061057, + }, + { + "category": "Enchant", + "configData": { + "id": "Coins", + "tn": 3, + }, + "value": 51709490446, + }, + { + "category": "Potion", + "configData": { + "id": "Walkspeed", + "tn": 2, + }, + "value": 19481679360, }, { "category": "Pet", "configData": { "id": "Froggy", }, - "value": 98990808, + "value": 120024525, }, { "category": "Pet", "configData": { "id": "Umbrella Dog", }, - "value": 277864766, + "value": 325215923, + }, + { + "category": "Enchant", + "configData": { + "id": "Coins", + "tn": 1, + }, + "value": 5521684747, }, { "category": "Pet", "configData": { "id": "Cosmic Axolotl", }, - "value": 441844, + "value": 392427, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 16", + }, + "value": 81154, }, { "category": "Pet", "configData": { "id": "Hologram Tiger", }, - "value": 134403, + "value": 116248, }, { "category": "Pet", "configData": { "id": "Rainbow Unicorn", }, - "value": 108208, + "value": 93916, }, { "category": "Pet", @@ -1495,35 +3590,51 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Hell Rock", "pt": 1, }, - "value": 656401, + "value": 666629, + }, + { + "category": "Potion", + "configData": { + "id": "Lucky", + "tn": 3, + }, + "value": 56290803206, + }, + { + "category": "Enchant", + "configData": { + "id": "Lightning", + "tn": 1, + }, + "value": 494512887, }, { "category": "Pet", "configData": { "id": "Jelly Corgi", }, - "value": 191413, + "value": 178413, }, { "category": "Pet", "configData": { "id": "Parrot", }, - "value": 331859460, + "value": 367718225, }, { "category": "Pet", "configData": { "id": "Nightmare Spirit", }, - "value": 209723, + "value": 188135, }, { "category": "Pet", "configData": { "id": "Atlantean Dolphin", }, - "value": 31417, + "value": 27777, }, { "category": "Pet", @@ -1531,63 +3642,63 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cupcake", "pt": 1, }, - "value": 5107, + "value": 5166, }, { "category": "Pet", "configData": { "id": "Cosmic Dragon", }, - "value": 251184, + "value": 210693, }, { "category": "Pet", "configData": { "id": "Grinch Cat", }, - "value": 202211, + "value": 182670, }, { "category": "Pet", "configData": { "id": "Ducky", }, - "value": 431907762, + "value": 469069928, }, { "category": "Pet", "configData": { "id": "Balloon Dragon", }, - "value": 178752, + "value": 170519, }, { "category": "Pet", "configData": { "id": "Empyrean Dominus", }, - "value": 180459, + "value": 157162, }, { "category": "Pet", "configData": { "id": "Elephant", }, - "value": 509106741, + "value": 555872792, }, { "category": "Pet", "configData": { "id": "Monkey", }, - "value": 255914877, + "value": 279931249, }, { "category": "Pet", "configData": { "id": "Huge Hell Rock", }, - "value": 192840, + "value": 195483, }, { "category": "Pet", @@ -1595,63 +3706,63 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cupid Corgi", "pt": 1, }, - "value": 18541, + "value": 19131, }, { "category": "Pet", "configData": { "id": "Hologram Shark", }, - "value": 246306, + "value": 227829, }, { "category": "Pet", "configData": { "id": "Huge Error Cat", }, - "value": 42416, + "value": 43678, }, { "category": "Pet", "configData": { "id": "Jelly Piggy", }, - "value": 43750, + "value": 39701, }, { "category": "Pet", "configData": { "id": "Mosaic Corgi", }, - "value": 49813, + "value": 43652, }, { "category": "Pet", "configData": { "id": "Huge Cupcake", }, - "value": 86385, + "value": 86198, }, { "category": "Pet", "configData": { "id": "Mosaic Griffin", }, - "value": 37640, + "value": 33628, }, { "category": "Pet", "configData": { "id": "Huge Happy Rock", }, - "value": 830564, + "value": 844816, }, { "category": "Pet", "configData": { "id": "Super Cat", }, - "value": 83147, + "value": 78868, }, { "category": "Pet", @@ -1659,28 +3770,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Nightfall Wolf", "pt": 2, }, - "value": 526, + "value": 567, }, { "category": "Pet", "configData": { "id": "Neon Dog", }, - "value": 76355, + "value": 66900, }, { "category": "Pet", "configData": { "id": "Keyboard Cat", }, - "value": 109771, + "value": 108277, }, { "category": "Pet", "configData": { "id": "Mosaic Dove", }, - "value": 49536, + "value": 42730, }, { "category": "Pet", @@ -1688,35 +3799,35 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Crystal Dog", "pt": 1, }, - "value": 3311, + "value": 3456, }, { "category": "Pet", "configData": { "id": "Emerald Monkey", }, - "value": 99203, + "value": 84250, }, { "category": "Pet", "configData": { "id": "Redstone Cat", }, - "value": 188279, + "value": 170681, }, { "category": "Pet", "configData": { "id": "Nature Dragon", }, - "value": 78353, + "value": 74424, }, { "category": "Pet", "configData": { "id": "Mosaic Elephant", }, - "value": 82315, + "value": 71906, }, { "category": "Pet", @@ -1724,56 +3835,56 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Grinch Cat", "sh": true, }, - "value": 5123, + "value": 4742, }, { "category": "Pet", "configData": { "id": "Huge Goblin", }, - "value": 73683, + "value": 75929, }, { "category": "Pet", "configData": { "id": "Huge Squirrel", }, - "value": 45383, + "value": 47652, }, { "category": "Pet", "configData": { "id": "Huge Jolly Penguin", }, - "value": 78545, + "value": 81339, }, { "category": "Pet", "configData": { "id": "Balloon Corgi", }, - "value": 98966, + "value": 87193, }, { "category": "Pet", "configData": { "id": "Huge Enchanted Deer", }, - "value": 51868, + "value": 55737, }, { "category": "Pet", "configData": { "id": "Wicked Empyrean Dragon", }, - "value": 40104, + "value": 40078, }, { "category": "Pet", "configData": { "id": "Huge Evolved Cupcake", }, - "value": 3714, + "value": 4573, }, { "category": "Pet", @@ -1781,112 +3892,112 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Doodle Cat", "pt": 1, }, - "value": 3388, + "value": 3483, }, { "category": "Pet", "configData": { "id": "Nightmare Bear", }, - "value": 99431, + "value": 83575, }, { "category": "Pet", "configData": { "id": "Huge Pumpkin Cat", }, - "value": 57077, + "value": 58521, }, { "category": "Pet", "configData": { "id": "Huge Party Crown Ducky", }, - "value": 7337, + "value": 7600, }, { "category": "Pet", "configData": { "id": "Atlantean Stingray", }, - "value": 71557, + "value": 60256, }, { "category": "Pet", "configData": { "id": "Amethyst Dragon", }, - "value": 47701, + "value": 43490, }, { "category": "Pet", "configData": { "id": "Huge Dominus Lucki", }, - "value": 5889, + "value": 6076, }, { "category": "Pet", "configData": { "id": "Neon Cat", }, - "value": 137691, + "value": 131643, }, { "category": "Pet", "configData": { "id": "Nightfall Tiger", }, - "value": 22222, + "value": 19416, }, { "category": "Pet", "configData": { "id": "Huge Cosmic Agony", }, - "value": 12228, + "value": 12510, }, { "category": "Pet", "configData": { "id": "Hologram Axolotl", }, - "value": 59397, + "value": 51822, }, { "category": "Pet", "configData": { "id": "Huge Kraken", }, - "value": 1652, + "value": 1704, }, { "category": "Pet", "configData": { "id": "Huge Super Corgi", }, - "value": 11146, + "value": 11514, }, { "category": "Pet", "configData": { "id": "Huge Chef Cat", }, - "value": 83291, + "value": 85383, }, { "category": "Pet", "configData": { "id": "Huge Cool Cat", }, - "value": 4149, + "value": 4493, }, { "category": "Pet", "configData": { "id": "Huge Jelly Piggy", }, - "value": 7240, + "value": 7451, }, { "category": "Pet", @@ -1894,42 +4005,42 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Scary Cat", "pt": 1, }, - "value": 3391, + "value": 3525, }, { "category": "Pet", "configData": { "id": "Huge Lucki", }, - "value": 6160, + "value": 6314, }, { "category": "Pet", "configData": { "id": "Cool Dragon", }, - "value": 38322, + "value": 30261, }, { "category": "Pet", "configData": { "id": "Huge Floppa", }, - "value": 13502, + "value": 14016, }, { "category": "Pet", "configData": { "id": "Huge Sleipnir", }, - "value": 5374, + "value": 5564, }, { "category": "Pet", "configData": { "id": "Huge Elf Cat", }, - "value": 20119, + "value": 20912, }, { "category": "Pet", @@ -1937,21 +4048,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Jolly Penguin", "pt": 1, }, - "value": 10984, + "value": 11329, }, { "category": "Pet", "configData": { "id": "Nightfall Pegasus", }, - "value": 17409, + "value": 16316, }, { "category": "Pet", "configData": { "id": "Cool Corgi", }, - "value": 92248, + "value": 76111, }, { "category": "Pet", @@ -1959,91 +4070,98 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Sapphire Phoenix", "pt": 1, }, - "value": 2664, + "value": 2751, }, { "category": "Pet", "configData": { "id": "Huge Grinch Cat", }, - "value": 14014, + "value": 14540, }, { "category": "Pet", "configData": { "id": "Huge Cheerful Yeti", }, - "value": 9077, + "value": 10740, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 1", + }, + "value": 550, }, { "category": "Pet", "configData": { "id": "Capybara", }, - "value": 106121, + "value": 106493, }, { "category": "Pet", "configData": { "id": "Huge Balloon Cat", }, - "value": 11627, + "value": 11969, }, { "category": "Pet", "configData": { "id": "Huge Party Dog", }, - "value": 6634, + "value": 6825, }, { "category": "Pet", "configData": { "id": "Huge Pterodactyl", }, - "value": 47700, + "value": 44427, }, { "category": "Pet", "configData": { "id": "Huge Knife Cat", }, - "value": 21313, + "value": 22070, }, { "category": "Pet", "configData": { "id": "Huge Hacked Cat", }, - "value": 44841, + "value": 44507, }, { "category": "Pet", "configData": { "id": "Tiedye Corgi", }, - "value": 45448, + "value": 44688, }, { "category": "Pet", "configData": { "id": "Neon Twilight Wolf", }, - "value": 92152, + "value": 86947, }, { "category": "Pet", "configData": { "id": "Prickly Panda", }, - "value": 20380, + "value": 20268, }, { "category": "Pet", "configData": { "id": "Crystal Deer", }, - "value": 80509, + "value": 70401, }, { "category": "Pet", @@ -2051,7 +4169,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dalmatian", "pt": 2, }, - "value": 21366781, + "value": 24756493, }, { "category": "Pet", @@ -2059,7 +4177,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Painted Cat", "pt": 1, }, - "value": 36341, + "value": 37300, }, { "category": "Pet", @@ -2067,14 +4185,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tech Chest Mimic", "sh": true, }, - "value": 393, + "value": 512, }, { "category": "Pet", "configData": { "id": "Huge Mrs. Claws", }, - "value": 41254, + "value": 42751, }, { "category": "Pet", @@ -2082,28 +4200,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Parrot", "sh": true, }, - "value": 678833, + "value": 758759, }, { "category": "Pet", "configData": { "id": "Huge Stealth Bobcat", }, - "value": 12181, + "value": 15508, }, { "category": "Pet", "configData": { "id": "Tiger", }, - "value": 134343187, + "value": 149155084, }, { "category": "Pet", "configData": { "id": "Huge Nightfall Pegasus", }, - "value": 13889, + "value": 14698, }, { "category": "Pet", @@ -2111,7 +4229,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiger", "pt": 1, }, - "value": 27925151, + "value": 34515247, }, { "category": "Pet", @@ -2119,21 +4237,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Parrot", "pt": 2, }, - "value": 12429547, + "value": 14470059, }, { "category": "Pet", "configData": { "id": "Huge Pixel Cat", }, - "value": 35852, + "value": 34187, }, { "category": "Pet", "configData": { "id": "Storm Dominus", }, - "value": 337818, + "value": 322526, }, { "category": "Pet", @@ -2141,21 +4259,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Storm Dominus", "pt": 2, }, - "value": 7664, + "value": 7067, }, { "category": "Pet", "configData": { "id": "Anime Corgi", }, - "value": 93899, + "value": 89496, }, { "category": "Pet", "configData": { "id": "Stealth Cat", }, - "value": 58198, + "value": 49503, }, { "category": "Pet", @@ -2163,35 +4281,35 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cosmic Dragon", "sh": true, }, - "value": 5790, + "value": 4843, }, { "category": "Pet", "configData": { "id": "Cosmic Agony", }, - "value": 111290, + "value": 98401, }, { "category": "Pet", "configData": { "id": "Mosaic Lamb", }, - "value": 83089, + "value": 72536, }, { "category": "Pet", "configData": { "id": "Huge Evolved Hacked Cat", }, - "value": 2701, + "value": 3455, }, { "category": "Pet", "configData": { "id": "Cool Cat", }, - "value": 147314, + "value": 126696, }, { "category": "Pet", @@ -2199,7 +4317,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cool Dragon", "pt": 2, }, - "value": 912, + "value": 961, }, { "category": "Pet", @@ -2207,7 +4325,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cool Corgi", "sh": true, }, - "value": 1563, + "value": 1329, }, { "category": "Pet", @@ -2215,7 +4333,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stealth Cat", "pt": 2, }, - "value": 1439, + "value": 1448, }, { "category": "Pet", @@ -2223,21 +4341,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Hell Rock", "pt": 2, }, - "value": 44655, + "value": 44661, }, { "category": "Pet", "configData": { "id": "Jelly Panda", }, - "value": 99150, + "value": 87326, }, { "category": "Pet", "configData": { "id": "Stealth Dragon", }, - "value": 57875, + "value": 49904, }, { "category": "Pet", @@ -2245,21 +4363,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cosmic Axolotl", "pt": 2, }, - "value": 10046, + "value": 8913, }, { "category": "Pet", "configData": { "id": "Atlantean Orca", }, - "value": 149310, + "value": 141828, }, { "category": "Pet", "configData": { "id": "Present Chest Mimic", }, - "value": 128036, + "value": 115773, }, { "category": "Pet", @@ -2267,28 +4385,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cosmic Dragon", "pt": 2, }, - "value": 7612, + "value": 6929, }, { "category": "Pet", "configData": { "id": "Stunt Chick", }, - "value": 870, + "value": 867, }, { "category": "Pet", "configData": { "id": "Huge Crystal Dog", }, - "value": 33765, + "value": 35437, }, { "category": "Pet", "configData": { "id": "Super Capybara", }, - "value": 67531, + "value": 64972, }, { "category": "Pet", @@ -2296,7 +4414,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Knife Cat", "pt": 2, }, - "value": 512, + "value": 526, }, { "category": "Pet", @@ -2304,7 +4422,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Crystal Dog", "pt": 2, }, - "value": 823, + "value": 855, }, { "category": "Pet", @@ -2312,14 +4430,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Festive Cat", "pt": 2, }, - "value": 3112, + "value": 3205, }, { "category": "Pet", "configData": { "id": "Crystal Dog", }, - "value": 84407, + "value": 73262, }, { "category": "Pet", @@ -2327,56 +4445,56 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jelly Panda", "pt": 2, }, - "value": 3072, + "value": 2938, }, { "category": "Pet", "configData": { "id": "Huge Santa Paws", }, - "value": 6016, + "value": 6209, }, { "category": "Pet", "configData": { "id": "Huge Marshmallow Agony", }, - "value": 69175, + "value": 71408, }, { "category": "Pet", "configData": { "id": "Storm Agony", }, - "value": 41244, + "value": 40486, }, { "category": "Pet", "configData": { "id": "Huge Shark", }, - "value": 3805, + "value": 3879, }, { "category": "Pet", "configData": { "id": "Stunt Bobcat", }, - "value": 439, + "value": 437, }, { "category": "Pet", "configData": { "id": "Ice Cream Cone", }, - "value": 57896, + "value": 54326, }, { "category": "Pet", "configData": { "id": "Huge Tiedye Axolotl", }, - "value": 5764, + "value": 7575, }, { "category": "Pet", @@ -2391,14 +4509,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Knife Cat", "sh": true, }, - "value": 470, + "value": 477, }, { "category": "Pet", "configData": { "id": "Huge Sombrero Chihuahua", }, - "value": 538, + "value": 545, }, { "category": "Pet", @@ -2406,14 +4524,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Happy Rock", "pt": 2, }, - "value": 26100, + "value": 26303, }, { "category": "Pet", "configData": { "id": "Floppa", }, - "value": 64288, + "value": 60642, }, { "category": "Pet", @@ -2421,63 +4539,63 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mosaic Corgi", "pt": 2, }, - "value": 806, + "value": 836, }, { "category": "Pet", "configData": { "id": "Huge Balloon Dragon", }, - "value": 13746, + "value": 14236, }, { "category": "Pet", "configData": { "id": "Nightmare Kraken", }, - "value": 51598, + "value": 47454, }, { "category": "Pet", "configData": { "id": "Huge Pixel Corgi", }, - "value": 65628, + "value": 75106, }, { "category": "Pet", "configData": { "id": "Yee-haw Cat", }, - "value": 35065, + "value": 35321, }, { "category": "Pet", "configData": { "id": "Huge Anime Unicorn", }, - "value": 12169, + "value": 12653, }, { "category": "Pet", "configData": { "id": "Balloon Axolotl", }, - "value": 45956, + "value": 42446, }, { "category": "Pet", "configData": { "id": "Huge Sapphire Phoenix", }, - "value": 23078, + "value": 23911, }, { "category": "Pet", "configData": { "id": "Huge Ninja Axolotl", }, - "value": 9338, + "value": 9460, }, { "category": "Pet", @@ -2485,14 +4603,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pumpkin Cat", "pt": 1, }, - "value": 7716, + "value": 7892, }, { "category": "Pet", "configData": { "id": "Clout Cat", }, - "value": 134323, + "value": 116653, }, { "category": "Pet", @@ -2500,63 +4618,63 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Storm Dominus", "pt": 2, }, - "value": 520, + "value": 536, }, { "category": "Pet", "configData": { "id": "Huge Gargoyle Dragon", }, - "value": 10813, + "value": 11210, }, { "category": "Pet", "configData": { "id": "Huge Forest Wyvern", }, - "value": 12179, + "value": 12642, }, { "category": "Pet", "configData": { "id": "Super Corgi", }, - "value": 134830, + "value": 126644, }, { "category": "Pet", "configData": { "id": "Orca", }, - "value": 88398, + "value": 87826, }, { "category": "Pet", "configData": { "id": "Huge Party Monkey", }, - "value": 1160, + "value": 1187, }, { "category": "Pet", "configData": { "id": "Anime Unicorn", }, - "value": 114151, + "value": 109291, }, { "category": "Pet", "configData": { "id": "Lucky Cat", }, - "value": 31841, + "value": 31483, }, { "category": "Pet", "configData": { "id": "Huge Tiedye Corgi", }, - "value": 10978, + "value": 11664, }, { "category": "Pet", @@ -2564,14 +4682,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Nightmare Spirit", "pt": 2, }, - "value": 279, + "value": 292, }, { "category": "Pet", "configData": { "id": "Grumpy Cat", }, - "value": 9819, + "value": 10173, }, { "category": "Pet", @@ -2579,77 +4697,77 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Dog", "pt": 2, }, - "value": 233, + "value": 238, }, { "category": "Pet", "configData": { "id": "Huge Kawaii Dragon", }, - "value": 18686, + "value": 18954, }, { "category": "Pet", "configData": { "id": "Huge Peacock", }, - "value": 62221, + "value": 59659, }, { "category": "Pet", "configData": { "id": "Otter", }, - "value": 66696, + "value": 66081, }, { "category": "Pet", "configData": { "id": "Rave Crab", }, - "value": 86938, + "value": 86500, }, { "category": "Pet", "configData": { "id": "Koala", }, - "value": 91775, + "value": 87411, }, { "category": "Pet", "configData": { "id": "Huge BIG Maskot", }, - "value": 21901, + "value": 22596, }, { "category": "Pet", "configData": { "id": "Huge Leprechaun Cat", }, - "value": 34902, + "value": 35946, }, { "category": "Pet", "configData": { "id": "Huge Pineapple Cat", }, - "value": 31222, + "value": 31850, }, { "category": "Pet", "configData": { "id": "Huge Cupid Corgi", }, - "value": 28200, + "value": 29080, }, { "category": "Pet", "configData": { "id": "Huge King Cobra", }, - "value": 28388, + "value": 26225, }, { "category": "Pet", @@ -2657,14 +4775,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cool Corgi", "pt": 1, }, - "value": 5042, + "value": 3970, }, { "category": "Pet", "configData": { "id": "Huge Easter Bunny", }, - "value": 51522, + "value": 53358, }, { "category": "Pet", @@ -2672,63 +4790,63 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Present Chest Mimic", "pt": 2, }, - "value": 3628, + "value": 3564, }, { "category": "Pet", "configData": { "id": "Huge Chroma Lucki", }, - "value": 28009, + "value": 29012, }, { "category": "Pet", "configData": { "id": "Huge Dog", }, - "value": 20573, + "value": 21388, }, { "category": "Pet", "configData": { "id": "Huge Skeleton", }, - "value": 18989, + "value": 21303, }, { "category": "Pet", "configData": { "id": "Huge Ducky", }, - "value": 6711, + "value": 6903, }, { "category": "Pet", "configData": { "id": "Huge Techno Cat", }, - "value": 30674, + "value": 32013, }, { "category": "Pet", "configData": { "id": "Huge Arcade Cat", }, - "value": 7587, + "value": 7733, }, { "category": "Pet", "configData": { "id": "Huge Festive Cat", }, - "value": 49864, + "value": 51693, }, { "category": "Pet", "configData": { "id": "Nightfall Ram", }, - "value": 31544, + "value": 27713, }, { "category": "Pet", @@ -2736,21 +4854,57 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Peacock", "pt": 1, }, - "value": 3782, + "value": 3881, }, { "category": "Pet", "configData": { "id": "Huge Doodle Cat", }, - "value": 22366, + "value": 23166, + }, + { + "category": "Egg", + "configData": { + "id": "Series 1 Legendary Gift", + }, + "value": 59453, + }, + { + "category": "Egg", + "configData": { + "id": "Event Egg 1", + }, + "value": 198402, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 15", + }, + "value": 18313, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 14", + }, + "value": 31088, + }, + { + "category": "Enchant", + "configData": { + "id": "Tap Power", + "tn": 4, + }, + "value": 18218267397, }, { "category": "Pet", "configData": { "id": "Crocodile", }, - "value": 153469299, + "value": 166193468, }, { "category": "Pet", @@ -2758,21 +4912,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Inferno Cat", "pt": 2, }, - "value": 247, + "value": 259, }, { "category": "Pet", "configData": { "id": "Sad Cat", }, - "value": 6503, + "value": 6773, }, { "category": "Pet", "configData": { "id": "Huge Cat", }, - "value": 3813, + "value": 3888, }, { "category": "Pet", @@ -2780,21 +4934,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gecko", "pt": 2, }, - "value": 6433455, + "value": 6687303, }, { "category": "Pet", "configData": { "id": "Sock Monkey", }, - "value": 4638, + "value": 4746, }, { "category": "Pet", "configData": { "id": "Blobfish", }, - "value": 5346, + "value": 5552, }, { "category": "Pet", @@ -2802,14 +4956,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Exquisite Parrot", "pt": 1, }, - "value": 3172, + "value": 2891, }, { "category": "Pet", "configData": { "id": "Gecko", }, - "value": 192979992, + "value": 212515206, }, { "category": "Pet", @@ -2817,14 +4971,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Present Chest Mimic", "sh": true, }, - "value": 3441, + "value": 3190, }, { "category": "Pet", "configData": { "id": "Huge Santa Monkey", }, - "value": 3035, + "value": 3098, }, { "category": "Pet", @@ -2832,7 +4986,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gecko", "pt": 1, }, - "value": 18255186, + "value": 20339619, }, { "category": "Pet", @@ -2846,14 +5000,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Hippo", }, - "value": 100822006, + "value": 111225077, }, { "category": "Pet", "configData": { "id": "Huge Monkey", }, - "value": 2002, + "value": 2041, }, { "category": "Pet", @@ -2861,7 +5015,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Froggy", "pt": 1, }, - "value": 9536896, + "value": 11374614, }, { "category": "Pet", @@ -2869,14 +5023,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Celestial Dragon", "sh": true, }, - "value": 382, + "value": 383, }, { "category": "Pet", "configData": { "id": "Huge Green Balloon Cat", }, - "value": 9302, + "value": 9565, }, { "category": "Pet", @@ -2884,77 +5038,105 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Error Cat", "pt": 2, }, - "value": 1102, + "value": 1128, }, { "category": "Pet", "configData": { "id": "Huge Kawaii Cat", }, - "value": 2596, + "value": 2642, }, { "category": "Pet", "configData": { "id": "Neon Twilight Dragon", }, - "value": 28053, + "value": 26030, }, { "category": "Pet", "configData": { "id": "Huge Hologram Axolotl", }, - "value": 9741, + "value": 10092, }, { "category": "Pet", "configData": { "id": "Anime Monkey", }, - "value": 65596, + "value": 59623, }, { "category": "Pet", "configData": { "id": "Pony", }, - "value": 66853, + "value": 59836, }, { "category": "Pet", "configData": { "id": "Huge Amethyst Dragon", }, - "value": 7949, + "value": 8210, }, { "category": "Pet", "configData": { "id": "Huge Sun Angelus", }, - "value": 6722, + "value": 6811, }, { "category": "Pet", "configData": { "id": "Neon Twilight Cat", }, - "value": 71629, + "value": 62964, }, { "category": "Pet", "configData": { "id": "Anime Agony", }, - "value": 48991, + "value": 47933, }, { "category": "Pet", "configData": { "id": "Huge Butterfly", }, - "value": 398, + "value": 400, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 10", + }, + "value": 12112, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 13", + }, + "value": 28293, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 12", + }, + "value": 12231, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 11", + }, + "value": 13675, }, { "category": "Pet", @@ -2962,7 +5144,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Error Cat", "pt": 1, }, - "value": 7069, + "value": 7256, }, { "category": "Pet", @@ -2970,7 +5152,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Neon Dog", "pt": 2, }, - "value": 2287, + "value": 2183, }, { "category": "Pet", @@ -2978,14 +5160,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chroma Lucki", "sh": true, }, - "value": 618, + "value": 623, }, { "category": "Pet", "configData": { "id": "Sock Corgi", }, - "value": 8542, + "value": 8555, }, { "category": "Pet", @@ -2993,14 +5175,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Anime Unicorn", "sh": true, }, - "value": 1115, + "value": 1040, }, { "category": "Pet", "configData": { "id": "Huge Cosmic Axolotl", }, - "value": 21192, + "value": 21752, }, { "category": "Pet", @@ -3008,7 +5190,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Leprechaun Cat", "sh": true, }, - "value": 822, + "value": 841, }, { "category": "Pet", @@ -3016,14 +5198,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cupid Corgi", "pt": 2, }, - "value": 1381, + "value": 1417, }, { "category": "Pet", "configData": { "id": "Huge Pop Cat", }, - "value": 12356, + "value": 12745, }, { "category": "Pet", @@ -3031,63 +5213,63 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Balloon Dragon", "pt": 2, }, - "value": 3806, + "value": 3655, }, { "category": "Pet", "configData": { "id": "Huge Love Lamb", }, - "value": 7347, + "value": 7568, }, { "category": "Pet", "configData": { "id": "Starfall Dragon", }, - "value": 48620, + "value": 44469, }, { "category": "Pet", "configData": { "id": "Tiedye Dragon", }, - "value": 39529, + "value": 38667, }, { "category": "Pet", "configData": { "id": "Exquisite Cat", }, - "value": 25229, + "value": 24510, }, { "category": "Pet", "configData": { "id": "Huge Easter Dominus", }, - "value": 68583, + "value": 70883, }, { "category": "Pet", "configData": { "id": "Huge Redstone Cat", }, - "value": 13840, + "value": 14280, }, { "category": "Pet", "configData": { "id": "Huge Elf Dog", }, - "value": 20015, + "value": 20781, }, { "category": "Pet", "configData": { "id": "Huge Grim Reaper", }, - "value": 9130, + "value": 9430, }, { "category": "Pet", @@ -3095,14 +5277,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Doodle Fairy", "pt": 1, }, - "value": 4654, + "value": 4766, }, { "category": "Pet", "configData": { "id": "Huge Comet Cyclops", }, - "value": 7791, + "value": 8099, }, { "category": "Pet", @@ -3110,35 +5292,35 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Hacked Cat", "pt": 2, }, - "value": 6122, + "value": 6060, }, { "category": "Pet", "configData": { "id": "Huge Pirate Parrot", }, - "value": 7141, + "value": 7291, }, { "category": "Pet", "configData": { "id": "Diamond Cat", }, - "value": 77864, + "value": 66644, }, { "category": "Pet", "configData": { "id": "Stacked Doge Noob", }, - "value": 12940, + "value": 13369, }, { "category": "Pet", "configData": { "id": "Huge Tiedye Cat", }, - "value": 12152, + "value": 12943, }, { "category": "Pet", @@ -3146,7 +5328,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Jolly Penguin", "pt": 2, }, - "value": 1930, + "value": 1982, }, { "category": "Pet", @@ -3154,21 +5336,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Elephant", "sh": true, }, - "value": 963452, + "value": 1040947, }, { "category": "Pet", "configData": { "id": "Nightfall Wolf", }, - "value": 32394, + "value": 29566, }, { "category": "Pet", "configData": { "id": "Huge Capybara", }, - "value": 6436, + "value": 8154, }, { "category": "Pet", @@ -3176,28 +5358,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Leprechaun Cat", "pt": 2, }, - "value": 1772, + "value": 1811, }, { "category": "Pet", "configData": { "id": "Rift Dragon", }, - "value": 572738, + "value": 499819, }, { "category": "Pet", "configData": { "id": "Inferno Dominus", }, - "value": 86190, + "value": 77152, }, { "category": "Pet", "configData": { "id": "Huge Party Axolotl", }, - "value": 11782, + "value": 12134, }, { "category": "Pet", @@ -3205,14 +5387,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Hacked Cat", "pt": 1, }, - "value": 17172, + "value": 16467, }, { "category": "Pet", "configData": { "id": "Huge Evolved Hell Rock", }, - "value": 32706, + "value": 37411, }, { "category": "Pet", @@ -3220,7 +5402,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Empyrean Dominus", "sh": true, }, - "value": 4305, + "value": 3776, }, { "category": "Pet", @@ -3228,42 +5410,42 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Green Balloon Cat", "pt": 2, }, - "value": 338, + "value": 355, }, { "category": "Pet", "configData": { "id": "Huge Evolved Pixel Cat", }, - "value": 2993, + "value": 3957, }, { "category": "Pet", "configData": { "id": "Huge Dragon", }, - "value": 21880, + "value": 22663, }, { "category": "Pet", "configData": { "id": "Sleipnir", }, - "value": 24739, + "value": 23327, }, { "category": "Pet", "configData": { "id": "Cyborg Capybara", }, - "value": 27670, + "value": 26528, }, { "category": "Pet", "configData": { "id": "Sea Dragon", }, - "value": 34561, + "value": 34133, }, { "category": "Pet", @@ -3271,14 +5453,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dog", "sh": true, }, - "value": 26045236, + "value": 27347541, }, { "category": "Pet", "configData": { "id": "Huge Rainbow Slime", }, - "value": 60141, + "value": 61946, }, { "category": "Pet", @@ -3286,14 +5468,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Empyrean Dominus", "pt": 2, }, - "value": 5416, + "value": 5009, }, { "category": "Pet", "configData": { "id": "Stealth Bobcat", }, - "value": 56651, + "value": 48362, }, { "category": "Pet", @@ -3302,21 +5484,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 113, + "value": 119, }, { "category": "Pet", "configData": { "id": "Huge Snowman", }, - "value": 10613, + "value": 10940, }, { "category": "Pet", "configData": { "id": "Huge Scary Cat", }, - "value": 36002, + "value": 37457, }, { "category": "Pet", @@ -3324,7 +5506,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Parrot", "pt": 1, }, - "value": 50447392, + "value": 64406561, }, { "category": "Pet", @@ -3332,7 +5514,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Amethyst Dragon", "pt": 2, }, - "value": 1438, + "value": 1442, }, { "category": "Pet", @@ -3340,7 +5522,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Emerald Monkey", "sh": true, }, - "value": 2400, + "value": 2089, }, { "category": "Pet", @@ -3348,7 +5530,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bunny", "pt": 1, }, - "value": 157500206, + "value": 171249124, }, { "category": "Pet", @@ -3356,7 +5538,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Storm Dominus", "sh": true, }, - "value": 6190, + "value": 5431, }, { "category": "Pet", @@ -3364,21 +5546,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Inferno Dominus", "pt": 2, }, - "value": 2483, + "value": 2435, }, { "category": "Pet", "configData": { "id": "Neon Twilight Tiger", }, - "value": 55880, + "value": 49664, }, { "category": "Pet", "configData": { "id": "Huge Nightfall Wolf", }, - "value": 20663, + "value": 22060, }, { "category": "Pet", @@ -3386,7 +5568,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Evolved Hacked Cat", "pt": 2, }, - "value": 325, + "value": 378, }, { "category": "Pet", @@ -3394,14 +5576,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Scary Cat", "pt": 2, }, - "value": 1246, + "value": 1277, }, { "category": "Pet", "configData": { "id": "Titanic Balloon Monkey", }, - "value": 678, + "value": 689, }, { "category": "Pet", @@ -3409,7 +5591,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Easter Bunny", "pt": 1, }, - "value": 2377, + "value": 2434, }, { "category": "Pet", @@ -3417,7 +5599,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Dragon", "pt": 2, }, - "value": 246, + "value": 251, }, { "category": "Pet", @@ -3425,14 +5607,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Dog", "pt": 1, }, - "value": 1105, + "value": 1143, }, { "category": "Pet", "configData": { "id": "Huge Easter Cat", }, - "value": 1521, + "value": 1580, }, { "category": "Pet", @@ -3440,35 +5622,98 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Floppa", "pt": 1, }, - "value": 1060, + "value": 1090, }, { "category": "Pet", "configData": { "id": "Huge Santa Dragon", }, - "value": 2707, + "value": 2777, + }, + { + "category": "Misc", + "configData": { + "id": "Fortune Flag", + }, + "value": 4829423786, }, { "category": "Pet", "configData": { "id": "Tiedye Bear", }, - "value": 11565, + "value": 11603, + }, + { + "category": "Egg", + "configData": { + "id": "Series 1 Epic Gift", + }, + "value": 61625, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 8", + }, + "value": 3243, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 7", + }, + "value": 2947, + }, + { + "category": "Egg", + "configData": { + "id": "Series 1 Rare Gift", + }, + "value": 25658, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 6", + }, + "value": 3699, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 5", + }, + "value": 1648, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 9", + }, + "value": 4787, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 4", + }, + "value": 1623, }, { "category": "Pet", "configData": { "id": "Sock Cat", }, - "value": 9070, + "value": 9044, }, { "category": "Pet", "configData": { "id": "Huge Luau Cat", }, - "value": 12545, + "value": 12826, }, { "category": "Pet", @@ -3476,14 +5721,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Elephant", "pt": 2, }, - "value": 11710380, + "value": 12550554, }, { "category": "Pet", "configData": { "id": "Huge Inferno Dominus", }, - "value": 13204, + "value": 13613, }, { "category": "Pet", @@ -3491,21 +5736,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bunny", "sh": true, }, - "value": 3094639, + "value": 3494941, }, { "category": "Pet", "configData": { "id": "Huge Lucky Cat", }, - "value": 10446, + "value": 10790, }, { "category": "Pet", "configData": { "id": "Exquisite Parrot", }, - "value": 25226, + "value": 22411, }, { "category": "Pet", @@ -3513,7 +5758,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Elf Cat", "pt": 1, }, - "value": 1919, + "value": 1997, }, { "category": "Pet", @@ -3528,21 +5773,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Huge Party Cat", }, - "value": 3555, + "value": 3660, }, { "category": "Pet", "configData": { "id": "Huge Party Penguin", }, - "value": 2745, + "value": 2809, }, { "category": "Pet", "configData": { "id": "Huge M-10 PROTOTYPE", }, - "value": 8155, + "value": 8999, }, { "category": "Pet", @@ -3550,35 +5795,35 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Sleipnir", "pt": 1, }, - "value": 300, + "value": 310, }, { "category": "Pet", "configData": { "id": "Huge Bear", }, - "value": 3988, + "value": 4067, }, { "category": "Pet", "configData": { "id": "Huge Sailor Shark", }, - "value": 4737, + "value": 4837, }, { "category": "Pet", "configData": { "id": "Huge Gleebo The Alien", }, - "value": 3561, + "value": 3647, }, { "category": "Pet", "configData": { "id": "Huge Safari Cat", }, - "value": 5223, + "value": 5350, }, { "category": "Pet", @@ -3586,84 +5831,84 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cupcake", "pt": 2, }, - "value": 2083, + "value": 2070, }, { "category": "Pet", "configData": { "id": "Huge Pinata Cat", }, - "value": 2444, + "value": 2495, }, { "category": "Pet", "configData": { "id": "Titanic Tiedye Cat", }, - "value": 791, + "value": 805, }, { "category": "Pet", "configData": { "id": "Exquisite Elephant", }, - "value": 18201, + "value": 16391, }, { "category": "Pet", "configData": { "id": "Huge Scary Corgi", }, - "value": 35732, + "value": 37217, }, { "category": "Pet", "configData": { "id": "Huge Gamer Shiba", }, - "value": 1685, + "value": 1703, }, { "category": "Pet", "configData": { "id": "Huge Neon Griffin", }, - "value": 8090, + "value": 8389, }, { "category": "Pet", "configData": { "id": "Huge Orange Balloon Cat", }, - "value": 3351, + "value": 3435, }, { "category": "Pet", "configData": { "id": "Huge Sandcastle Cat", }, - "value": 2303, + "value": 2342, }, { "category": "Pet", "configData": { "id": "Titanic Capybara", }, - "value": 1021, + "value": 1034, }, { "category": "Pet", "configData": { "id": "Huge Basketball Retriever", }, - "value": 1007, + "value": 1016, }, { "category": "Pet", "configData": { "id": "Neon Griffin", }, - "value": 35750, + "value": 32499, }, { "category": "Pet", @@ -3671,14 +5916,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Sleipnir", "pt": 2, }, - "value": 293, + "value": 300, }, { "category": "Pet", "configData": { "id": "Empyrean Agony", }, - "value": 1395, + "value": 1438, }, { "category": "Pet", @@ -3686,7 +5931,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Anime Unicorn", "pt": 2, }, - "value": 304, + "value": 311, }, { "category": "Pet", @@ -3694,7 +5939,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Anime Agony", "sh": true, }, - "value": 545, + "value": 559, }, { "category": "Pet", @@ -3702,7 +5947,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Sapphire Phoenix", "pt": 2, }, - "value": 532, + "value": 552, }, { "category": "Pet", @@ -3710,21 +5955,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Inferno Cat", "pt": 2, }, - "value": 734, + "value": 736, }, { "category": "Pet", "configData": { "id": "Huge Evolved Peacock", }, - "value": 2909, + "value": 4269, }, { "category": "Pet", "configData": { "id": "Titanic Jolly Cat", }, - "value": 736, + "value": 750, }, { "category": "Pet", @@ -3732,21 +5977,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Knife Cat", "pt": 2, }, - "value": 6303, + "value": 5968, }, { "category": "Pet", "configData": { "id": "Guest Noob", }, - "value": 4042, + "value": 4171, }, { "category": "Pet", "configData": { "id": "Chest Mimic", }, - "value": 5427, + "value": 5615, }, { "category": "Pet", @@ -3764,14 +6009,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 73, + "value": 75, }, { "category": "Pet", "configData": { "id": "Galaxy Pegasus", }, - "value": 2165, + "value": 2238, }, { "category": "Pet", @@ -3780,21 +6025,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 107, + "value": 108, }, { "category": "Pet", "configData": { "id": "Dominus Astra", }, - "value": 7627, + "value": 7849, }, { "category": "Pet", "configData": { "id": "Doge", }, - "value": 3670, + "value": 3771, }, { "category": "Pet", @@ -3803,7 +6048,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 92, + "value": 93, }, { "category": "Pet", @@ -3812,7 +6057,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 276, + "value": 279, }, { "category": "Pet", @@ -3820,14 +6065,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Sombrero Chihuahua", "pt": 1, }, - "value": 1155, + "value": 1177, }, { "category": "Pet", "configData": { "id": "Titanic Red Balloon Cat", }, - "value": 877, + "value": 889, }, { "category": "Pet", @@ -3836,14 +6081,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 98, + "value": 104, }, { "category": "Pet", "configData": { "id": "Lava Scorpion", }, - "value": 22191, + "value": 22208, }, { "category": "Pet", @@ -3851,7 +6096,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Evolved Hell Rock", "pt": 2, }, - "value": 3644, + "value": 3859, }, { "category": "Pet", @@ -3859,21 +6104,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Storm Agony", "pt": 2, }, - "value": 1514, + "value": 1542, }, { "category": "Pet", "configData": { "id": "Huge Clover Unicorn", }, - "value": 9385, + "value": 9640, }, { "category": "Pet", "configData": { "id": "Hell Chest Mimic", }, - "value": 3499, + "value": 3641, }, { "category": "Pet", @@ -3889,7 +6134,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Lucky Cat", "pt": 2, }, - "value": 698, + "value": 709, }, { "category": "Pet", @@ -3897,7 +6142,23 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Leprechaun Cat", "pt": 1, }, - "value": 21538, + "value": 22147, + }, + { + "category": "Enchant", + "configData": { + "id": "Diamonds", + "tn": 3, + }, + "value": 39112466333, + }, + { + "category": "Potion", + "configData": { + "id": "Treasure Hunter", + "tn": 3, + }, + "value": 20833515333, }, { "category": "Pet", @@ -3905,7 +6166,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mosaic Lamb", "pt": 1, }, - "value": 9983, + "value": 8837, }, { "category": "Pet", @@ -3913,28 +6174,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Happy Rock", "pt": 1, }, - "value": 1247, + "value": 1739, }, { "category": "Pet", "configData": { "id": "Huge Mosaic Lamb", }, - "value": 23374, + "value": 28558, }, { "category": "Pet", "configData": { "id": "Huge Mosaic Corgi", }, - "value": 33572, + "value": 35216, }, { "category": "Pet", "configData": { "id": "Huge Orca", }, - "value": 20107, + "value": 20869, }, { "category": "Pet", @@ -3942,14 +6203,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ducky", "pt": 1, }, - "value": 41573800, + "value": 49092118, }, { "category": "Pet", "configData": { "id": "Huge Chameleon", }, - "value": 6147, + "value": 6377, }, { "category": "Pet", @@ -3957,7 +6218,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Easter Dominus", "pt": 1, }, - "value": 6498, + "value": 6699, }, { "category": "Pet", @@ -3965,7 +6226,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Monkey", "pt": 1, }, - "value": 32866331, + "value": 39315848, }, { "category": "Pet", @@ -3973,14 +6234,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Marshmallow Agony", "sh": true, }, - "value": 1640, + "value": 1680, }, { "category": "Pet", "configData": { "id": "Huge Neon Cat", }, - "value": 13746, + "value": 14244, }, { "category": "Pet", @@ -3988,35 +6249,35 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Anime Corgi", "sh": true, }, - "value": 1029, + "value": 990, }, { "category": "Pet", "configData": { "id": "Gargoyle Dragon", }, - "value": 64786, + "value": 59512, }, { "category": "Pet", "configData": { "id": "Huge Pufferfish", }, - "value": 1785, + "value": 1803, }, { "category": "Pet", "configData": { "id": "Huge Reindeer Dog", }, - "value": 2926, + "value": 3000, }, { "category": "Pet", "configData": { "id": "Blobenstein", }, - "value": 19330, + "value": 19870, }, { "category": "Pet", @@ -4024,7 +6285,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Atlantean Stingray", "pt": 2, }, - "value": 2375, + "value": 2232, }, { "category": "Pet", @@ -4032,7 +6293,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Marshmallow Agony", "pt": 2, }, - "value": 1751, + "value": 1793, }, { "category": "Pet", @@ -4040,7 +6301,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Painted Cat", "pt": 2, }, - "value": 2284, + "value": 2335, }, { "category": "Pet", @@ -4048,21 +6309,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Atlantean Stingray", "sh": true, }, - "value": 1679, + "value": 1475, }, { "category": "Pet", "configData": { "id": "Titanic Blue Balloon Cat", }, - "value": 860, + "value": 875, }, { "category": "Pet", "configData": { "id": "Huge Scarecrow Cat", }, - "value": 25484, + "value": 26392, }, { "category": "Pet", @@ -4070,14 +6331,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pterodactyl", "pt": 2, }, - "value": 988, + "value": 963, }, { "category": "Pet", "configData": { "id": "Huge Empyrean Agony", }, - "value": 24670, + "value": 29287, }, { "category": "Pet", @@ -4085,7 +6346,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pink Marshmallow Chick", "pt": 1, }, - "value": 295, + "value": 299, }, { "category": "Pet", @@ -4093,7 +6354,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Reindeer Axolotl", "pt": 1, }, - "value": 358, + "value": 375, }, { "category": "Pet", @@ -4101,7 +6362,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Easter Dominus", "pt": 2, }, - "value": 1774, + "value": 1808, }, { "category": "Pet", @@ -4109,21 +6370,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pumpkin Cat", "pt": 2, }, - "value": 3234, + "value": 3310, }, { "category": "Pet", "configData": { "id": "Huge Jelly Corgi", }, - "value": 12964, + "value": 13346, }, { "category": "Pet", "configData": { "id": "Inferno Cat", }, - "value": 8484, + "value": 8482, }, { "category": "Pet", @@ -4131,7 +6392,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jelly Corgi", "sh": true, }, - "value": 3331, + "value": 2949, }, { "category": "Pet", @@ -4139,56 +6400,56 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Easter Yeti", "pt": 1, }, - "value": 13106, + "value": 13451, }, { "category": "Pet", "configData": { "id": "Noobortuus", }, - "value": 1757, + "value": 1814, }, { "category": "Pet", "configData": { "id": "Huge Evolved Pterodactyl", }, - "value": 3064, + "value": 4126, }, { "category": "Pet", "configData": { "id": "Galaxy Dragon", }, - "value": 2658, + "value": 2741, }, { "category": "Pet", "configData": { "id": "Titanic Hubert", }, - "value": 933, + "value": 946, }, { "category": "Pet", "configData": { "id": "Electric Slime", }, - "value": 2026, + "value": 2098, }, { "category": "Pet", "configData": { "id": "Pterodactyl", }, - "value": 5874, + "value": 6031, }, { "category": "Pet", "configData": { "id": "Mushroom King", }, - "value": 2812, + "value": 2907, }, { "category": "Pet", @@ -4196,14 +6457,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cyborg Dragon", "pt": 2, }, - "value": 233, + "value": 295, }, { "category": "Pet", "configData": { "id": "Huge Evolved King Cobra", }, - "value": 2154, + "value": 2871, }, { "category": "Pet", @@ -4211,28 +6472,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Ducky", "pt": 1, }, - "value": 732, + "value": 752, }, { "category": "Pet", "configData": { "id": "Huge Pixel Dragon", }, - "value": 9194, + "value": 11553, }, { "category": "Pet", "configData": { "id": "Huge Crowned Cat", }, - "value": 204, + "value": 205, }, { "category": "Pet", "configData": { "id": "Domortuus Astra", }, - "value": 1843, + "value": 1894, }, { "category": "Pet", @@ -4240,28 +6501,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Goblin", "pt": 2, }, - "value": 1721, + "value": 1784, }, { "category": "Pet", "configData": { "id": "Huge Nightmare Spirit", }, - "value": 13344, + "value": 13773, }, { "category": "Pet", "configData": { "id": "Huge Painted Cat", }, - "value": 12694, + "value": 13014, }, { "category": "Pet", "configData": { "id": "Tiedye Cat", }, - "value": 16346, + "value": 17081, }, { "category": "Pet", @@ -4269,14 +6530,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hologram Axolotl", "sh": true, }, - "value": 1393, + "value": 1227, }, { "category": "Pet", "configData": { "id": "Huge Hologram Shark", }, - "value": 17172, + "value": 17809, }, { "category": "Pet", @@ -4284,21 +6545,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Inferno Dominus", "sh": true, }, - "value": 2102, + "value": 1891, }, { "category": "Pet", "configData": { "id": "Huge Comet Agony", }, - "value": 2779, + "value": 2881, }, { "category": "Pet", "configData": { "id": "Huge Present Chest Mimic", }, - "value": 7948, + "value": 8228, }, { "category": "Pet", @@ -4306,42 +6567,42 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pixel Cat", "pt": 1, }, - "value": 14500, + "value": 13376, }, { "category": "Pet", "configData": { "id": "Huge Gecko", }, - "value": 16201, + "value": 16703, }, { "category": "Pet", "configData": { "id": "Tiedye Axolotl", }, - "value": 23388, + "value": 21433, }, { "category": "Pet", "configData": { "id": "Punkey", }, - "value": 19574, + "value": 19055, }, { "category": "Pet", "configData": { "id": "Huge Fairy", }, - "value": 3915, + "value": 3983, }, { "category": "Pet", "configData": { "id": "Huge Vampire Bat", }, - "value": 6211, + "value": 6260, }, { "category": "Pet", @@ -4349,7 +6610,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mosaic Corgi", "pt": 1, }, - "value": 3204, + "value": 3368, }, { "category": "Pet", @@ -4357,7 +6618,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Skeleton", "pt": 2, }, - "value": 472, + "value": 526, }, { "category": "Pet", @@ -4365,7 +6626,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Hologram Shark", "sh": true, }, - "value": 369, + "value": 382, }, { "category": "Pet", @@ -4373,14 +6634,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Clover Unicorn", "pt": 1, }, - "value": 4933, + "value": 5055, }, { "category": "Pet", "configData": { "id": "Fairy Queen", }, - "value": 30320, + "value": 28801, }, { "category": "Pet", @@ -4388,7 +6649,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Happy Rock", "sh": true, }, - "value": 1829, + "value": 1838, }, { "category": "Pet", @@ -4396,7 +6657,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stealth Cat", "pt": 1, }, - "value": 7201, + "value": 6170, }, { "category": "Pet", @@ -4404,14 +6665,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stealth Dragon", "pt": 2, }, - "value": 1394, + "value": 1422, }, { "category": "Pet", "configData": { "id": "Huge Stealth Dragon", }, - "value": 23296, + "value": 28346, }, { "category": "Pet", @@ -4419,7 +6680,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cool Cat", "pt": 1, }, - "value": 7292, + "value": 6167, }, { "category": "Pet", @@ -4427,7 +6688,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hologram Tiger", "pt": 2, }, - "value": 3883, + "value": 3602, }, { "category": "Pet", @@ -4435,7 +6696,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Clout Cat", "pt": 2, }, - "value": 4187, + "value": 3870, }, { "category": "Pet", @@ -4443,7 +6704,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Monkey", "sh": true, }, - "value": 515802, + "value": 569192, }, { "category": "Pet", @@ -4451,7 +6712,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mosaic Griffin", "pt": 1, }, - "value": 3675, + "value": 3162, }, { "category": "Pet", @@ -4459,14 +6720,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cosmic Agony", "pt": 2, }, - "value": 3193, + "value": 3038, }, { "category": "Pet", "configData": { "id": "Huge Doodle Fairy", }, - "value": 17211, + "value": 17636, }, { "category": "Pet", @@ -4474,28 +6735,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Unicorn Dragon", "pt": 2, }, - "value": 11525, + "value": 10686, }, { "category": "Pet", "configData": { "id": "Huge Reindeer Axolotl", }, - "value": 3409, + "value": 3529, }, { "category": "Pet", "configData": { "id": "Celestial Dragon", }, - "value": 213133, + "value": 185426, }, { "category": "Pet", "configData": { "id": "Huge Balloon Axolotl", }, - "value": 7718, + "value": 7999, }, { "category": "Pet", @@ -4503,7 +6764,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Party Axolotl", "pt": 1, }, - "value": 1050, + "value": 1076, }, { "category": "Pet", @@ -4511,14 +6772,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Balloon Axolotl", "sh": true, }, - "value": 155, + "value": 159, }, { "category": "Pet", "configData": { "id": "Huge Wild Fire Agony", }, - "value": 6782, + "value": 6856, }, { "category": "Pet", @@ -4526,7 +6787,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Balloon Axolotl", "pt": 2, }, - "value": 181, + "value": 185, }, { "category": "Pet", @@ -4534,14 +6795,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Balloon Axolotl", "pt": 2, }, - "value": 1235, + "value": 1214, }, { "category": "Pet", "configData": { "id": "Huge Clover Dragon", }, - "value": 3529, + "value": 3615, }, { "category": "Pet", @@ -4549,7 +6810,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Party Cat", "pt": 1, }, - "value": 417, + "value": 428, }, { "category": "Pet", @@ -4557,7 +6818,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Monkey", "pt": 2, }, - "value": 8013244, + "value": 9469720, }, { "category": "Pet", @@ -4565,7 +6826,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pineapple Cat", "sh": true, }, - "value": 618, + "value": 631, }, { "category": "Pet", @@ -4573,7 +6834,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Kawaii Dragon", "pt": 1, }, - "value": 3010, + "value": 3049, }, { "category": "Pet", @@ -4581,7 +6842,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Ninja Axolotl", "pt": 1, }, - "value": 1506, + "value": 1521, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Pinata", + }, + "value": 414124, }, { "category": "Pet", @@ -4589,14 +6857,63 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Balloon Cat", "pt": 1, }, - "value": 2765, + "value": 2847, }, { "category": "Pet", "configData": { "id": "Huge Nightmare Kraken", }, - "value": 7682, + "value": 7897, + }, + { + "category": "Egg", + "configData": { + "id": "Series 2 Epic Gift", + }, + "value": 452893, + }, + { + "category": "Booth", + "configData": { + "id": "Lightning", + }, + "value": 414124, + }, + { + "category": "Egg", + "configData": { + "id": "Series 2 Rare Gift", + }, + "value": 105208, + }, + { + "category": "Egg", + "configData": { + "id": "Huge Machine Egg 2", + }, + "value": 56475, + }, + { + "category": "Egg", + "configData": { + "id": "Series 2 Legendary Gift", + }, + "value": 139411, + }, + { + "category": "Egg", + "configData": { + "id": "Series 2 Basic Gift", + }, + "value": 135037, + }, + { + "category": "Egg", + "configData": { + "id": "Series 2 Mythical Gift", + }, + "value": 49678, }, { "category": "Pet", @@ -4604,7 +6921,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiedye Cat", "pt": 1, }, - "value": 1635, + "value": 1632, }, { "category": "Pet", @@ -4612,7 +6929,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Easter Dominus", "sh": true, }, - "value": 1616, + "value": 1654, }, { "category": "Pet", @@ -4620,7 +6937,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nightmare Bear", "pt": 2, }, - "value": 3312, + "value": 3035, }, { "category": "Pet", @@ -4628,7 +6945,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jelly Corgi", "pt": 2, }, - "value": 4307, + "value": 4171, }, { "category": "Pet", @@ -4636,14 +6953,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Balloon Corgi", "pt": 2, }, - "value": 2696, + "value": 2550, }, { "category": "Pet", "configData": { "id": "Huge Atlantean Orca", }, - "value": 8904, + "value": 9167, }, { "category": "Pet", @@ -4651,7 +6968,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Super Capybara", "pt": 2, }, - "value": 1680, + "value": 1703, }, { "category": "Pet", @@ -4659,7 +6976,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Emerald Monkey", "pt": 2, }, - "value": 3157, + "value": 2929, }, { "category": "Pet", @@ -4667,7 +6984,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nightmare Spirit", "pt": 2, }, - "value": 4963, + "value": 4648, }, { "category": "Pet", @@ -4675,7 +6992,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge BIG Maskot", "pt": 2, }, - "value": 528, + "value": 541, }, { "category": "Pet", @@ -4683,14 +7000,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Capybara", "pt": 2, }, - "value": 2492, + "value": 2533, }, { "category": "Pet", "configData": { "id": "Huge Atlantean Dolphin", }, - "value": 4926, + "value": 5074, }, { "category": "Pet", @@ -4698,7 +7015,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mrs. Claws", "pt": 1, }, - "value": 5852, + "value": 6014, }, { "category": "Pet", @@ -4706,7 +7023,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pixel Cat", "pt": 2, }, - "value": 1872, + "value": 1828, }, { "category": "Pet", @@ -4714,7 +7031,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Sapphire Phoenix", "sh": true, }, - "value": 434, + "value": 443, }, { "category": "Pet", @@ -4722,14 +7039,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jelly Piggy", "sh": true, }, - "value": 1050, + "value": 955, }, { "category": "Pet", "configData": { "id": "Titanic Tiedye Dragon", }, - "value": 828, + "value": 843, }, { "category": "Pet", @@ -4737,7 +7054,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Capybara", "pt": 2, }, - "value": 757, + "value": 770, }, { "category": "Pet", @@ -4745,7 +7062,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nightfall Pegasus", "pt": 1, }, - "value": 1812, + "value": 1654, }, { "category": "Pet", @@ -4753,21 +7070,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Atlantean Orca", "pt": 2, }, - "value": 3461, + "value": 3306, }, { "category": "Pet", "configData": { "id": "Huge Exquisite Parrot", }, - "value": 11632, + "value": 14682, }, { "category": "Pet", "configData": { "id": "Huge Storm Dominus", }, - "value": 23298, + "value": 24151, }, { "category": "Pet", @@ -4775,7 +7092,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Techno Cat", "sh": true, }, - "value": 531, + "value": 556, }, { "category": "Pet", @@ -4783,14 +7100,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Squirrel", "pt": 1, }, - "value": 5152, + "value": 5400, }, { "category": "Pet", "configData": { "id": "Huge Chroma Lucky Block Mimic", }, - "value": 5632, + "value": 5763, }, { "category": "Pet", @@ -4798,14 +7115,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Festive Cat", "pt": 1, }, - "value": 4520, + "value": 4660, }, { "category": "Pet", "configData": { "id": "Huge Anime Agony", }, - "value": 4369, + "value": 4515, }, { "category": "Pet", @@ -4813,7 +7130,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Inferno Cat", "pt": 1, }, - "value": 783, + "value": 785, }, { "category": "Pet", @@ -4822,7 +7139,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 142, + "value": 146, }, { "category": "Pet", @@ -4830,7 +7147,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Crystal Dog", "pt": 1, }, - "value": 8357, + "value": 7354, }, { "category": "Pet", @@ -4838,7 +7155,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Peacock", "sh": true, }, - "value": 2015, + "value": 1999, }, { "category": "Pet", @@ -4846,7 +7163,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Subzero Cat", "pt": 2, }, - "value": 318, + "value": 328, }, { "category": "Pet", @@ -4854,28 +7171,89 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Crystal Deer", "pt": 1, }, - "value": 8035, + "value": 6989, + }, + { + "category": "Enchant", + "configData": { + "id": "Strong Pets", + "tn": 3, + }, + "value": 41146814639, + }, + { + "category": "Enchant", + "configData": { + "id": "Strong Pets", + "tn": 4, + }, + "value": 15431774116, + }, + { + "category": "Enchant", + "configData": { + "id": "Happy Pets", + "tn": 1, + }, + "value": 1593091603, + }, + { + "category": "Enchant", + "configData": { + "id": "Criticals", + "tn": 3, + }, + "value": 43668024365, + }, + { + "category": "Enchant", + "configData": { + "id": "Tap Power", + "tn": 3, + }, + "value": 47816456638, + }, + { + "category": "Egg", + "configData": { + "id": "Series 1 Basic Gift", + }, + "value": 27813, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 2", + }, + "value": 784, + }, + { + "category": "Egg", + "configData": { + "id": "Series 1 Mythical Gift", + }, + "value": 15601, }, { "category": "Pet", "configData": { "id": "Huge Storm Agony", }, - "value": 5371, + "value": 5525, }, { "category": "Pet", "configData": { "id": "Huge Lucki Agony", }, - "value": 4264, + "value": 4323, }, { "category": "Pet", "configData": { "id": "Huge Apple Capybara", }, - "value": 4249, + "value": 4313, }, { "category": "Pet", @@ -4883,28 +7261,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge King Cobra", "sh": true, }, - "value": 418, + "value": 401, }, { "category": "Pet", "configData": { "id": "Huge Pony", }, - "value": 8551, + "value": 8872, }, { "category": "Pet", "configData": { "id": "Huge Easter Yeti", }, - "value": 3568, + "value": 3661, }, { "category": "Pet", "configData": { "id": "Huge Pink Marshmallow Chick", }, - "value": 2494, + "value": 2566, }, { "category": "Pet", @@ -4921,7 +7299,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 479, + "value": 488, }, { "category": "Pet", @@ -4929,7 +7307,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Enchanted Deer", "pt": 2, }, - "value": 1220, + "value": 1283, }, { "category": "Pet", @@ -4937,7 +7315,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Vampire Bat", "pt": 1, }, - "value": 904, + "value": 908, }, { "category": "Pet", @@ -4945,7 +7323,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Marshmallow Agony", "pt": 1, }, - "value": 6473, + "value": 6651, }, { "category": "Pet", @@ -4953,7 +7331,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Scary Corgi", "pt": 1, }, - "value": 3460, + "value": 3586, }, { "category": "Pet", @@ -4961,7 +7339,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Scary Corgi", "pt": 2, }, - "value": 956, + "value": 987, }, { "category": "Pet", @@ -4969,14 +7347,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Forest Wyvern", "pt": 2, }, - "value": 1157, + "value": 1180, }, { "category": "Pet", "configData": { "id": "Lamb", }, - "value": 208479294, + "value": 229168440, }, { "category": "Pet", @@ -4984,7 +7362,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Prickly Panda", "pt": 1, }, - "value": 178, + "value": 182, }, { "category": "Pet", @@ -4992,7 +7370,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiedye Corgi", "pt": 1, }, - "value": 4393, + "value": 4418, }, { "category": "Pet", @@ -5008,7 +7386,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Peacock", "pt": 2, }, - "value": 603, + "value": 619, }, { "category": "Pet", @@ -5016,7 +7394,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pineapple Cat", "pt": 1, }, - "value": 5215, + "value": 5288, }, { "category": "Pet", @@ -5024,7 +7402,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Clover Dragon", "pt": 1, }, - "value": 446, + "value": 456, }, { "category": "Pet", @@ -5032,7 +7410,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nightfall Ram", "pt": 1, }, - "value": 3413, + "value": 2964, }, { "category": "Pet", @@ -5041,14 +7419,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 127, + "value": 149, }, { "category": "Pet", "configData": { "id": "Huge Bread Shiba", }, - "value": 779, + "value": 785, }, { "category": "Pet", @@ -5056,7 +7434,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Balloon Corgi", "sh": true, }, - "value": 2470, + "value": 2196, }, { "category": "Pet", @@ -5064,7 +7442,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiedye Dragon", "pt": 1, }, - "value": 3677, + "value": 3577, }, { "category": "Pet", @@ -5072,7 +7450,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Elephant", "pt": 1, }, - "value": 47734588, + "value": 53699840, }, { "category": "Pet", @@ -5080,7 +7458,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Scarecrow Cat", "pt": 2, }, - "value": 10596794, + "value": 11513901, }, { "category": "Pet", @@ -5088,7 +7466,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Jolly Penguin", "sh": true, }, - "value": 1886, + "value": 1938, }, { "category": "Pet", @@ -5096,7 +7474,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cool Cat", "pt": 2, }, - "value": 3180, + "value": 2867, }, { "category": "Pet", @@ -5104,21 +7482,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cupcake", "sh": true, }, - "value": 690, + "value": 685, }, { "category": "Pet", "configData": { "id": "Lightning Bat", }, - "value": 16001, + "value": 15614, }, { "category": "Pet", "configData": { "id": "Titanic Mystic Corgi", }, - "value": 625, + "value": 632, }, { "category": "Pet", @@ -5126,7 +7504,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Techno Cat", "pt": 1, }, - "value": 3348, + "value": 3490, }, { "category": "Pet", @@ -5134,7 +7512,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Comet Cyclops", "pt": 2, }, - "value": 181, + "value": 189, }, { "category": "Pet", @@ -5142,7 +7520,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Lightning Bat", "pt": 2, }, - "value": 451, + "value": 457, }, { "category": "Pet", @@ -5158,7 +7536,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cosmic Axolotl", "sh": true, }, - "value": 7645, + "value": 6351, }, { "category": "Pet", @@ -5166,7 +7544,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cool Cat", "sh": true, }, - "value": 88, + "value": 100, }, { "category": "Pet", @@ -5174,7 +7552,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mosaic Corgi", "pt": 1, }, - "value": 4987, + "value": 4410, }, { "category": "Pet", @@ -5182,7 +7560,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jelly Piggy", "pt": 2, }, - "value": 1354, + "value": 1353, }, { "category": "Pet", @@ -5190,7 +7568,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Balloon Dragon", "sh": true, }, - "value": 3554, + "value": 3151, }, { "category": "Pet", @@ -5198,7 +7576,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Doodle Cat", "pt": 2, }, - "value": 568, + "value": 579, }, { "category": "Pet", @@ -5206,14 +7584,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Enchanted Deer", "pt": 1, }, - "value": 6066, + "value": 6502, }, { "category": "Pet", "configData": { "id": "Huge Chest Mimic", }, - "value": 5919, + "value": 6166, }, { "category": "Pet", @@ -5222,7 +7600,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 798, + "value": 816, }, { "category": "Pet", @@ -5230,7 +7608,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Rainbow Slime", "pt": 2, }, - "value": 1403, + "value": 1442, }, { "category": "Pet", @@ -5238,7 +7616,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Elf Dog", "pt": 1, }, - "value": 1964, + "value": 2038, }, { "category": "Pet", @@ -5246,7 +7624,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nightmare Spirit", "sh": true, }, - "value": 3488, + "value": 2946, }, { "category": "Pet", @@ -5254,7 +7632,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mosaic Griffin", "pt": 1, }, - "value": 2229, + "value": 2416, }, { "category": "Pet", @@ -5262,7 +7640,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hologram Tiger", "sh": true, }, - "value": 3143, + "value": 2754, }, { "category": "Pet", @@ -5270,7 +7648,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nightmare Kraken", "pt": 2, }, - "value": 1678, + "value": 1674, }, { "category": "Pet", @@ -5278,7 +7656,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Redstone Cat", "sh": true, }, - "value": 3348, + "value": 2863, }, { "category": "Pet", @@ -5286,7 +7664,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Empyrean Agony", "sh": true, }, - "value": 543, + "value": 654, }, { "category": "Pet", @@ -5294,7 +7672,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Error Cat", "sh": true, }, - "value": 966, + "value": 980, }, { "category": "Pet", @@ -5302,7 +7680,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nightfall Ram", "sh": true, }, - "value": 524, + "value": 548, }, { "category": "Pet", @@ -5310,14 +7688,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Green Balloon Cat", "sh": true, }, - "value": 199, + "value": 204, }, { "category": "Pet", "configData": { "id": "Huge Exquisite Cat", }, - "value": 7369, + "value": 9427, }, { "category": "Pet", @@ -5325,7 +7703,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pterodactyl", "pt": 1, }, - "value": 1913, + "value": 1948, }, { "category": "Pet", @@ -5333,14 +7711,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Balloon Cat", "pt": 2, }, - "value": 410, + "value": 425, }, { "category": "Pet", "configData": { "id": "Huge Rainbow Unicorn", }, - "value": 4386, + "value": 4553, }, { "category": "Pet", @@ -5348,7 +7726,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Party Dog", "pt": 1, }, - "value": 647, + "value": 670, }, { "category": "Pet", @@ -5356,14 +7734,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Neon Twilight Tiger", "pt": 2, }, - "value": 1519, + "value": 1507, }, { "category": "Pet", "configData": { "id": "Titanic Cosmic Pegasus", }, - "value": 952, + "value": 964, }, { "category": "Pet", @@ -5371,7 +7749,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Doodle Fairy", "sh": true, }, - "value": 413, + "value": 419, }, { "category": "Pet", @@ -5380,7 +7758,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 140, + "value": 149, }, { "category": "Pet", @@ -5388,7 +7766,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Redstone Cat", "sh": true, }, - "value": 331, + "value": 333, }, { "category": "Pet", @@ -5396,14 +7774,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Sun Angelus", "pt": 1, }, - "value": 947, + "value": 961, }, { "category": "Pet", "configData": { "id": "Tiedye Dog", }, - "value": 46971, + "value": 41797, }, { "category": "Pet", @@ -5411,7 +7789,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Atlantean Orca", "sh": true, }, - "value": 2643, + "value": 2317, }, { "category": "Pet", @@ -5419,7 +7797,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Balloon Dragon", "pt": 2, }, - "value": 302, + "value": 313, }, { "category": "Pet", @@ -5427,7 +7805,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nightfall Tiger", "pt": 1, }, - "value": 2388, + "value": 2053, }, { "category": "Pet", @@ -5435,7 +7813,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Squirrel", "pt": 1, }, - "value": 38710294, + "value": 42470994, }, { "category": "Pet", @@ -5443,14 +7821,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Amethyst Dragon", "sh": true, }, - "value": 1077, + "value": 967, }, { "category": "Pet", "configData": { "id": "Storm Dragon", }, - "value": 3485, + "value": 3569, }, { "category": "Pet", @@ -5459,49 +7837,49 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12, + "value": 13, }, { "category": "Pet", "configData": { "id": "Subzero Cat", }, - "value": 11628, + "value": 11620, }, { "category": "Pet", "configData": { "id": "Huge Firefighter Dalmation", }, - "value": 5881, + "value": 5955, }, { "category": "Pet", "configData": { "id": "Huge Shadow Griffin", }, - "value": 3896, + "value": 3973, }, { "category": "Pet", "configData": { "id": "Huge Husky", }, - "value": 3815, + "value": 3903, }, { "category": "Pet", "configData": { "id": "Dominus Darkwing", }, - "value": 2731, + "value": 2824, }, { "category": "Pet", "configData": { "id": "Wicked Angelus", }, - "value": 3550, + "value": 3679, }, { "category": "Pet", @@ -5509,7 +7887,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Enchanted Deer", "sh": true, }, - "value": 934, + "value": 1014, }, { "category": "Pet", @@ -5524,7 +7902,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Nebula Dragon", }, - "value": 2129, + "value": 2163, }, { "category": "Pet", @@ -5532,91 +7910,113 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Corgi", "pt": 1, }, - "value": 768, + "value": 784, }, { "category": "Pet", "configData": { "id": "Huge Inferno Cat", }, - "value": 1439, + "value": 1452, }, { "category": "Pet", "configData": { "id": "Titanic Dominus Astra", }, - "value": 1088, + "value": 1104, }, { "category": "Pet", "configData": { "id": "Tiedye Griffin", }, - "value": 33253, + "value": 30671, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Balloon", + }, + "value": 8620, + }, + { + "category": "Misc", + "configData": { + "id": "Comet", + }, + "value": 6794255701, + }, + { + "category": "Enchant", + "configData": { + "id": "Walkspeed", + "tn": 3, + }, + "value": 21098815401, }, { "category": "Pet", "configData": { "id": "Huge Meebo in a Spaceship", }, - "value": 6563, + "value": 14528, }, { "category": "Pet", "configData": { "id": "Huge Cyborg Dragon", }, - "value": 10785, + "value": 13509, }, { "category": "Pet", "configData": { "id": "Huge Angelus", }, - "value": 754, + "value": 777, }, { "category": "Pet", "configData": { "id": "Huge Corgi", }, - "value": 6737, + "value": 6926, }, { "category": "Pet", "configData": { "id": "Huge Prickly Panda", }, - "value": 1775, + "value": 1830, }, { "category": "Pet", "configData": { "id": "Huge Samurai Dragon", }, - "value": 3969, + "value": 4052, }, { "category": "Pet", "configData": { "id": "Huge Diamond Cat", }, - "value": 1602, + "value": 1893, }, { "category": "Pet", "configData": { "id": "Titanic Jelly Cat", }, - "value": 561, + "value": 571, }, { "category": "Pet", "configData": { "id": "Huge Blue Balloon Cat", }, - "value": 968, + "value": 987, }, { "category": "Pet", @@ -5624,7 +8024,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Arcade Cat", "sh": true, }, - "value": 164, + "value": 165, }, { "category": "Pet", @@ -5633,7 +8033,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 80, + "value": 93, }, { "category": "Pet", @@ -5641,14 +8041,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pterodactyl", "sh": true, }, - "value": 702, + "value": 689, }, { "category": "Pet", "configData": { "id": "Huge Tiki Dominus", }, - "value": 1401, + "value": 1420, }, { "category": "Pet", @@ -5656,7 +8056,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tiedye Corgi", "pt": 1, }, - "value": 1071, + "value": 1161, }, { "category": "Pet", @@ -5664,7 +8064,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Doodle Cat", "sh": true, }, - "value": 482, + "value": 492, }, { "category": "Pet", @@ -5672,7 +8072,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chest Mimic", "pt": 1, }, - "value": 674, + "value": 694, }, { "category": "Pet", @@ -5680,7 +8080,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Bread Shiba", "pt": 1, }, - "value": 98, + "value": 99, }, { "category": "Pet", @@ -5688,7 +8088,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Dragon", "pt": 1, }, - "value": 1129, + "value": 1157, }, { "category": "Pet", @@ -5696,7 +8096,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Floppa", "pt": 2, }, - "value": 840, + "value": 852, }, { "category": "Pet", @@ -5704,7 +8104,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mrs. Claws", "pt": 2, }, - "value": 954, + "value": 989, }, { "category": "Pet", @@ -5712,7 +8112,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pumpkin Cat", "sh": true, }, - "value": 474, + "value": 477, }, { "category": "Pet", @@ -5721,7 +8121,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 419, + "value": 426, }, { "category": "Pet", @@ -5729,7 +8129,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Rainbow Slime", "pt": 1, }, - "value": 2660, + "value": 2733, }, { "category": "Pet", @@ -5737,7 +8137,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Doodle Fairy", "pt": 2, }, - "value": 533, + "value": 542, }, { "category": "Pet", @@ -5745,7 +8145,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Firefighter Dalmation", "pt": 1, }, - "value": 1068, + "value": 1091, }, { "category": "Pet", @@ -5753,7 +8153,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Kawaii Cat", "sh": true, }, - "value": 58, + "value": 59, }, { "category": "Pet", @@ -5761,7 +8161,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Scarecrow Cat", "pt": 2, }, - "value": 743, + "value": 759, }, { "category": "Pet", @@ -5769,21 +8169,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Santa Dragon", "pt": 1, }, - "value": 347, + "value": 352, }, { "category": "Pet", "configData": { "id": "Huge Unicorn", }, - "value": 4003, + "value": 4091, }, { "category": "Pet", "configData": { "id": "Sapphire Phoenix", }, - "value": 5767, + "value": 5924, }, { "category": "Pet", @@ -5791,21 +8191,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mosaic Dove", "pt": 1, }, - "value": 4881, + "value": 4216, }, { "category": "Pet", "configData": { "id": "Huge Cyborg Capybara", }, - "value": 2116, + "value": 2211, }, { "category": "Pet", "configData": { "id": "Huge Pastel Sock Dragon", }, - "value": 2742, + "value": 2811, }, { "category": "Pet", @@ -5813,7 +8213,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cupid Corgi", "sh": true, }, - "value": 647, + "value": 660, }, { "category": "Pet", @@ -5821,7 +8221,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Goblin", "sh": true, }, - "value": 1799, + "value": 1851, }, { "category": "Pet", @@ -5830,7 +8230,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 45, + "value": 46, }, { "category": "Pet", @@ -5838,7 +8238,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Santa Paws", "pt": 1, }, - "value": 1424, + "value": 1447, }, { "category": "Pet", @@ -5846,7 +8246,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Inferno Dominus", "pt": 2, }, - "value": 291, + "value": 300, }, { "category": "Pet", @@ -5854,7 +8254,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chameleon", "sh": true, }, - "value": 155, + "value": 157, }, { "category": "Pet", @@ -5862,7 +8262,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Easter Bunny", "sh": true, }, - "value": 1131, + "value": 1144, }, { "category": "Pet", @@ -5870,7 +8270,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Elf Cat", "pt": 2, }, - "value": 495, + "value": 511, }, { "category": "Pet", @@ -5878,7 +8278,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Easter Yeti", "pt": 2, }, - "value": 792, + "value": 806, }, { "category": "Pet", @@ -5886,7 +8286,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mrs. Claws", "sh": true, }, - "value": 943, + "value": 966, }, { "category": "Pet", @@ -5894,7 +8294,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Neon Dog", "sh": true, }, - "value": 1845, + "value": 1693, }, { "category": "Pet", @@ -5902,7 +8302,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cool Corgi", "pt": 2, }, - "value": 2044, + "value": 1832, }, { "category": "Pet", @@ -5910,7 +8310,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Scarecrow Cat", "pt": 1, }, - "value": 4137, + "value": 4275, + }, + { + "category": "Charm", + "configData": { + "id": "Bonus", + "tn": 1, + }, + "value": 422970877, }, { "category": "Pet", @@ -5918,7 +8326,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Rainbow Slime", "sh": true, }, - "value": 1370, + "value": 1407, }, { "category": "Pet", @@ -5926,14 +8334,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hologram Shark", "sh": true, }, - "value": 4447, + "value": 3831, }, { "category": "Pet", "configData": { "id": "Huge Mosaic Griffin", }, - "value": 22741, + "value": 24276, }, { "category": "Pet", @@ -5941,7 +8349,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Lucki", "pt": 1, }, - "value": 336, + "value": 340, }, { "category": "Pet", @@ -5949,7 +8357,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cool Dragon", "sh": true, }, - "value": 688, + "value": 670, }, { "category": "Pet", @@ -5957,7 +8365,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Clout Cat", "sh": true, }, - "value": 3441, + "value": 3072, }, { "category": "Pet", @@ -5965,7 +8373,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pirate Parrot", "pt": 2, }, - "value": 157, + "value": 163, }, { "category": "Pet", @@ -5973,7 +8381,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cosmic Agony", "sh": true, }, - "value": 266, + "value": 271, }, { "category": "Pet", @@ -5981,7 +8389,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cosmic Agony", "sh": true, }, - "value": 2643, + "value": 2416, }, { "category": "Pet", @@ -5989,7 +8397,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Skeleton", "pt": 1, }, - "value": 2181, + "value": 2417, }, { "category": "Pet", @@ -5997,7 +8405,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Ninja Axolotl", "sh": true, }, - "value": 187, + "value": 188, }, { "category": "Pet", @@ -6005,14 +8413,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Kawaii Dragon", "sh": true, }, - "value": 400, + "value": 404, }, { "category": "Pet", "configData": { "id": "Huge Neon Twilight Wolf", }, - "value": 5148, + "value": 5348, }, { "category": "Pet", @@ -6020,7 +8428,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Atlantean Orca", "pt": 2, }, - "value": 182, + "value": 193, }, { "category": "Pet", @@ -6028,7 +8436,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Anime Monkey", "pt": 2, }, - "value": 1662, + "value": 1681, }, { "category": "Pet", @@ -6036,7 +8444,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Evolved Cupcake", "pt": 2, }, - "value": 291, + "value": 355, }, { "category": "Pet", @@ -6044,21 +8452,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Anime Unicorn", "sh": true, }, - "value": 154, + "value": 156, }, { "category": "Pet", "configData": { "id": "Nyan Cat", }, - "value": 4456, + "value": 4606, }, { "category": "Pet", "configData": { "id": "Titanic Hologram Cat", }, - "value": 798, + "value": 810, }, { "category": "Pet", @@ -6066,14 +8474,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pony", "pt": 2, }, - "value": 919, + "value": 931, }, { "category": "Pet", "configData": { "id": "Huge Turtle", }, - "value": 5454, + "value": 5914, }, { "category": "Pet", @@ -6081,7 +8489,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Exquisite Parrot", "sh": true, }, - "value": 387, + "value": 517, }, { "category": "Pet", @@ -6089,7 +8497,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Crystal Deer", "pt": 2, }, - "value": 2282, + "value": 2142, }, { "category": "Pet", @@ -6097,7 +8505,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Dominus Lucki", "sh": true, }, - "value": 130, + "value": 131, }, { "category": "Pet", @@ -6105,7 +8513,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Nightfall Wolf", "pt": 1, }, - "value": 2072, + "value": 2236, }, { "category": "Pet", @@ -6113,7 +8521,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Neon Griffin", "sh": true, }, - "value": 989, + "value": 969, }, { "category": "Pet", @@ -6121,7 +8529,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Knife Cat", "sh": true, }, - "value": 5022, + "value": 4421, }, { "category": "Pet", @@ -6129,7 +8537,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jelly Panda", "sh": true, }, - "value": 2354, + "value": 2067, }, { "category": "Pet", @@ -6137,7 +8545,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Axolotl", "pt": 2, }, - "value": 180977228, + "value": 199458939, }, { "category": "Pet", @@ -6145,7 +8553,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dog", "pt": 1, }, - "value": 1354478113, + "value": 1464672061, }, { "category": "Pet", @@ -6153,7 +8561,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Corgi", "pt": 1, }, - "value": 1345480363, + "value": 1457337439, }, { "category": "Pet", @@ -6161,7 +8569,43 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiedye Cat", "sh": true, }, - "value": 246, + "value": 282, + }, + { + "category": "Egg", + "configData": { + "id": "Huge Machine Egg 1", + }, + "value": 989, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Flame", + }, + "value": 3611, + }, + { + "category": "Misc", + "configData": { + "id": "Clan Voucher", + }, + "value": 272349, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 3", + }, + "value": 265, + }, + { + "category": "Potion", + "configData": { + "id": "Coins", + "tn": 4, + }, + "value": 17095437054, }, { "category": "Pet", @@ -6169,7 +8613,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Dog", "sh": true, }, - "value": 167, + "value": 173, }, { "category": "Pet", @@ -6177,7 +8621,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Exquisite Parrot", "pt": 1, }, - "value": 1386, + "value": 1840, }, { "category": "Pet", @@ -6185,7 +8629,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pop Cat", "sh": true, }, - "value": 2161, + "value": 2217, }, { "category": "Pet", @@ -6193,7 +8637,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Easter Cat", "pt": 1, }, - "value": 597, + "value": 601, }, { "category": "Pet", @@ -6201,7 +8645,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Neon Cat", "sh": true, }, - "value": 2633, + "value": 2400, }, { "category": "Pet", @@ -6209,7 +8653,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Anime Unicorn", "pt": 2, }, - "value": 2520, + "value": 2436, }, { "category": "Pet", @@ -6217,7 +8661,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Storm Dominus", "sh": true, }, - "value": 492, + "value": 506, }, { "category": "Pet", @@ -6225,7 +8669,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pineapple Cat", "pt": 2, }, - "value": 807, + "value": 818, }, { "category": "Pet", @@ -6233,7 +8677,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pink Marshmallow Chick", "sh": true, }, - "value": 61, + "value": 65, }, { "category": "Pet", @@ -6241,7 +8685,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mosaic Corgi", "sh": true, }, - "value": 630, + "value": 669, }, { "category": "Pet", @@ -6249,7 +8693,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Gecko", "pt": 2, }, - "value": 352, + "value": 356, }, { "category": "Pet", @@ -6257,7 +8701,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stealth Bobcat", "pt": 1, }, - "value": 6800, + "value": 5909, }, { "category": "Pet", @@ -6266,7 +8710,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 24, + "value": 27, }, { "category": "Pet", @@ -6274,7 +8718,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Neon Griffin", "pt": 2, }, - "value": 1082, + "value": 1096, }, { "category": "Pet", @@ -6282,7 +8726,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Neon Twilight Cat", "pt": 2, }, - "value": 1987, + "value": 1980, }, { "category": "Pet", @@ -6290,7 +8734,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pop Cat", "pt": 2, }, - "value": 2594, + "value": 2677, }, { "category": "Pet", @@ -6298,7 +8742,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hologram Shark", "pt": 2, }, - "value": 5747, + "value": 5402, }, { "category": "Pet", @@ -6306,7 +8750,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hologram Axolotl", "pt": 2, }, - "value": 1640, + "value": 1607, }, { "category": "Pet", @@ -6314,7 +8758,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Neon Twilight Dragon", "pt": 2, }, - "value": 848, + "value": 871, }, { "category": "Pet", @@ -6322,7 +8766,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Diamond Cat", "pt": 2, }, - "value": 2018, + "value": 2275, }, { "category": "Pet", @@ -6330,7 +8774,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Super Cat", "pt": 2, }, - "value": 2011, + "value": 2000, }, { "category": "Pet", @@ -6338,7 +8782,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Anime Agony", "pt": 2, }, - "value": 1276, + "value": 1305, }, { "category": "Pet", @@ -6346,7 +8790,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Grinch Cat", "pt": 2, }, - "value": 5985, + "value": 5780, }, { "category": "Pet", @@ -6354,7 +8798,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Neon Twilight Wolf", "pt": 2, }, - "value": 2153, + "value": 2139, }, { "category": "Pet", @@ -6362,14 +8806,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Redstone Cat", "pt": 2, }, - "value": 4155, + "value": 3816, }, { "category": "Pet", "configData": { "id": "Storm Wolf", }, - "value": 2184, + "value": 2226, }, { "category": "Pet", @@ -6377,7 +8821,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Floppa", "pt": 2, }, - "value": 1592, + "value": 1599, }, { "category": "Pet", @@ -6385,7 +8829,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sleipnir", "pt": 2, }, - "value": 671, + "value": 689, }, { "category": "Pet", @@ -6393,14 +8837,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Neon Cat", "pt": 2, }, - "value": 2978, + "value": 3015, }, { "category": "Pet", "configData": { "id": "Huge Safari Dog", }, - "value": 1324, + "value": 1351, }, { "category": "Pet", @@ -6408,7 +8852,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cat", "pt": 2, }, - "value": 386, + "value": 394, }, { "category": "Pet", @@ -6416,7 +8860,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Anime Corgi", "pt": 2, }, - "value": 2550, + "value": 2541, }, { "category": "Pet", @@ -6424,7 +8868,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stealth Cat", "sh": true, }, - "value": 1107, + "value": 1016, }, { "category": "Pet", @@ -6433,14 +8877,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 39, + "value": 50, }, { "category": "Pet", "configData": { "id": "Huge Neon Twilight Dragon", }, - "value": 1814, + "value": 1868, }, { "category": "Pet", @@ -6448,7 +8892,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mosaic Dove", "pt": 2, }, - "value": 1410, + "value": 1325, }, { "category": "Pet", @@ -6456,7 +8900,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mosaic Corgi", "pt": 2, }, - "value": 1463, + "value": 1369, }, { "category": "Pet", @@ -6465,7 +8909,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 106, + "value": 107, }, { "category": "Pet", @@ -6473,14 +8917,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mosaic Dove", "sh": true, }, - "value": 846, + "value": 757, }, { "category": "Pet", "configData": { "id": "Huge Unicorn Dragon", }, - "value": 20554, + "value": 20633, }, { "category": "Pet", @@ -6488,7 +8932,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Techno Cat", "pt": 2, }, - "value": 733, + "value": 762, }, { "category": "Pet", @@ -6496,7 +8940,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Rainbow Unicorn", "pt": 2, }, - "value": 1738, + "value": 1758, }, { "category": "Pet", @@ -6504,7 +8948,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Bear", "pt": 2, }, - "value": 85, + "value": 89, }, { "category": "Pet", @@ -6512,7 +8956,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Super Corgi", "pt": 2, }, - "value": 343, + "value": 353, }, { "category": "Pet", @@ -6520,7 +8964,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Diamond Cat", "pt": 1, }, - "value": 2717, + "value": 2279, }, { "category": "Pet", @@ -6528,21 +8972,36 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Diamond Cat", "sh": true, }, - "value": 1754, + "value": 1768, }, { "category": "Pet", "configData": { "id": "Huge Celestial Dragon", }, - "value": 11438, + "value": 11503, }, { "category": "Pet", "configData": { "id": "Tiedye Bunny", }, - "value": 47080, + "value": 42334, + }, + { + "category": "Misc", + "configData": { + "id": "Spinny Wheel Ticket", + }, + "value": 1507736620, + }, + { + "category": "Potion", + "configData": { + "id": "Lucky", + "tn": 4, + }, + "value": 20704565673, }, { "category": "Pet", @@ -6550,7 +9009,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiedye Bear", "pt": 1, }, - "value": 1187, + "value": 1265, }, { "category": "Pet", @@ -6558,7 +9017,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rift Dragon", "pt": 2, }, - "value": 8066, + "value": 7435, }, { "category": "Pet", @@ -6566,7 +9025,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tiedye Cat", "pt": 2, }, - "value": 381, + "value": 404, }, { "category": "Pet", @@ -6575,7 +9034,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 208, + "value": 207, }, { "category": "Pet", @@ -6583,7 +9042,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bunny", "pt": 2, }, - "value": 27542933, + "value": 31737719, }, { "category": "Pet", @@ -6591,7 +9050,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chick", "pt": 2, }, - "value": 13288681, + "value": 14976637, }, { "category": "Pet", @@ -6599,7 +9058,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mosaic Lamb", "sh": true, }, - "value": 1551, + "value": 1414, }, { "category": "Pet", @@ -6607,14 +9066,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bear", "pt": 1, }, - "value": 17632351, + "value": 19713684, }, { "category": "Pet", "configData": { "id": "Huge Axolotl", }, - "value": 2042, + "value": 2080, }, { "category": "Pet", @@ -6622,7 +9081,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Santa Paws", "pt": 2, }, - "value": 1342, + "value": 1358, }, { "category": "Pet", @@ -6630,7 +9089,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Nightfall Pegasus", "pt": 2, }, - "value": 487, + "value": 512, }, { "category": "Pet", @@ -6638,7 +9097,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mosaic Elephant", "pt": 1, }, - "value": 10145, + "value": 8749, }, { "category": "Pet", @@ -6646,7 +9105,31 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chick", "sh": true, }, - "value": 1437230, + "value": 1632135, + }, + { + "category": "Enchant", + "configData": { + "id": "Fireworks", + "tn": 1, + }, + "value": 2875660, + }, + { + "category": "Enchant", + "configData": { + "id": "Coins", + "tn": 4, + }, + "value": 19004870319, + }, + { + "category": "Potion", + "configData": { + "id": "Damage", + "tn": 4, + }, + "value": 19610217462, }, { "category": "Pet", @@ -6654,7 +9137,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pop Cat", "pt": 2, }, - "value": 303, + "value": 308, }, { "category": "Pet", @@ -6662,14 +9145,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Stealth Dragon", "pt": 2, }, - "value": 551, + "value": 707, }, { "category": "Pet", "configData": { "id": "Titanic Nightmare Cat", }, - "value": 600, + "value": 607, }, { "category": "Pet", @@ -6677,14 +9160,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Gargoyle Dragon", "pt": 2, }, - "value": 1186, + "value": 1218, }, { "category": "Pet", "configData": { "id": "Titanic Atlantean Jellyfish", }, - "value": 391, + "value": 397, }, { "category": "Pet", @@ -6708,7 +9191,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiedye Bunny", "sh": true, }, - "value": 887, + "value": 984, }, { "category": "Pet", @@ -6724,7 +9207,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nightmare Kraken", "sh": true, }, - "value": 1401, + "value": 1257, }, { "category": "Pet", @@ -6732,7 +9215,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tiki Dominus", "pt": 1, }, - "value": 606, + "value": 616, }, { "category": "Pet", @@ -6740,7 +9223,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Crystal Dog", "pt": 2, }, - "value": 2386, + "value": 2230, }, { "category": "Pet", @@ -6748,7 +9231,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ducky", "sh": true, }, - "value": 843760, + "value": 920124, }, { "category": "Pet", @@ -6756,7 +9239,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Dominus Lucki", "pt": 1, }, - "value": 332, + "value": 340, }, { "category": "Pet", @@ -6764,7 +9247,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Squirrel", "sh": true, }, - "value": 797959, + "value": 875465, }, { "category": "Pet", @@ -6772,7 +9255,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Easter Cat", "pt": 2, }, - "value": 1392, + "value": 1402, }, { "category": "Pet", @@ -6780,7 +9263,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tiedye Cat", "pt": 1, }, - "value": 1138, + "value": 1253, }, { "category": "Pet", @@ -6788,7 +9271,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Storm Agony", "pt": 1, }, - "value": 597, + "value": 610, }, { "category": "Pet", @@ -6796,14 +9279,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cool Dragon", "pt": 1, }, - "value": 2083, + "value": 1610, }, { "category": "Pet", "configData": { "id": "Huge Stunt Unicorn", }, - "value": 95, + "value": 96, }, { "category": "Pet", @@ -6811,7 +9294,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pinata Cat", "pt": 1, }, - "value": 166, + "value": 168, }, { "category": "Pet", @@ -6827,7 +9310,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Party Axolotl", "pt": 2, }, - "value": 280, + "value": 286, }, { "category": "Pet", @@ -6835,7 +9318,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Hologram Axolotl", "pt": 2, }, - "value": 238, + "value": 246, }, { "category": "Pet", @@ -6843,14 +9326,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Redstone Cat", "pt": 2, }, - "value": 271, + "value": 279, }, { "category": "Pet", "configData": { "id": "Titanic Neon Agony", }, - "value": 651, + "value": 669, }, { "category": "Pet", @@ -6858,7 +9341,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Amethyst Dragon", "sh": true, }, - "value": 184, + "value": 187, }, { "category": "Pet", @@ -6866,7 +9349,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cosmic Agony", "pt": 2, }, - "value": 263, + "value": 266, }, { "category": "Pet", @@ -6874,7 +9357,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Hologram Shark", "pt": 2, }, - "value": 393, + "value": 404, }, { "category": "Pet", @@ -6882,7 +9365,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Neon Cat", "pt": 2, }, - "value": 305, + "value": 313, }, { "category": "Pet", @@ -6890,7 +9373,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Anime Agony", "pt": 2, }, - "value": 117, + "value": 118, }, { "category": "Pet", @@ -6898,7 +9381,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Love Lamb", "sh": true, }, - "value": 176, + "value": 178, }, { "category": "Pet", @@ -6906,7 +9389,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Jelly Corgi", "sh": true, }, - "value": 311, + "value": 318, }, { "category": "Pet", @@ -6914,7 +9397,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Nightmare Kraken", "sh": true, }, - "value": 155, + "value": 160, }, { "category": "Pet", @@ -6922,7 +9405,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Capybara", "pt": 2, }, - "value": 146, + "value": 175, }, { "category": "Pet", @@ -6930,7 +9413,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Ducky", "pt": 2, }, - "value": 150, + "value": 157, }, { "category": "Pet", @@ -6938,7 +9421,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Jelly Corgi", "pt": 2, }, - "value": 273, + "value": 281, }, { "category": "Pet", @@ -6954,7 +9437,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Blue Balloon Cat", "pt": 2, }, - "value": 47, + "value": 49, }, { "category": "Pet", @@ -6962,7 +9445,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Stealth Dragon", "sh": true, }, - "value": 771, + "value": 966, }, { "category": "Pet", @@ -6970,7 +9453,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chroma Lucki", "pt": 2, }, - "value": 331, + "value": 360, }, { "category": "Pet", @@ -6978,7 +9461,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Corgi", "pt": 2, }, - "value": 136, + "value": 139, }, { "category": "Pet", @@ -6986,7 +9469,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge M-10 PROTOTYPE", "sh": true, }, - "value": 180, + "value": 194, }, { "category": "Pet", @@ -7010,7 +9493,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge White Balloon Cat", "sh": true, }, - "value": 31, + "value": 59, }, { "category": "Pet", @@ -7026,7 +9509,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Jelly Piggy", "sh": true, }, - "value": 148, + "value": 151, }, { "category": "Pet", @@ -7034,14 +9517,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Skeleton", "sh": true, }, - "value": 339, + "value": 386, }, { "category": "Pet", "configData": { "id": "Titanic Lucki", }, - "value": 955, + "value": 979, }, { "category": "Pet", @@ -7049,7 +9532,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cheerful Yeti", "pt": 1, }, - "value": 1002, + "value": 1175, }, { "category": "Pet", @@ -7057,7 +9540,31 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Stealth Dragon", "pt": 1, }, - "value": 2883, + "value": 3603, + }, + { + "category": "Enchant", + "configData": { + "id": "Criticals", + "tn": 4, + }, + "value": 11539648600, + }, + { + "category": "Enchant", + "configData": { + "id": "Lucky Block", + "tn": 1, + }, + "value": 95115, + }, + { + "category": "Enchant", + "configData": { + "id": "Chest Mimic", + "tn": 1, + }, + "value": 31004, }, { "category": "Pet", @@ -7065,7 +9572,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Orca", "pt": 1, }, - "value": 727, + "value": 755, }, { "category": "Pet", @@ -7073,7 +9580,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nightfall Wolf", "pt": 1, }, - "value": 3362, + "value": 2977, }, { "category": "Pet", @@ -7081,7 +9588,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Axolotl", "pt": 1, }, - "value": 1335952915, + "value": 1452655798, }, { "category": "Pet", @@ -7089,7 +9596,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Orange Balloon Cat", "pt": 2, }, - "value": 302, + "value": 313, }, { "category": "Pet", @@ -7097,7 +9604,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ducky", "pt": 2, }, - "value": 10075080, + "value": 11178909, }, { "category": "Pet", @@ -7105,7 +9612,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Squirrel", "pt": 2, }, - "value": 11878165, + "value": 12388820, }, { "category": "Pet", @@ -7113,7 +9620,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Goblin", "pt": 1, }, - "value": 3385, + "value": 3491, }, { "category": "Pet", @@ -7130,7 +9637,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Wild Fire Agony", "pt": 1, }, - "value": 1098, + "value": 1122, }, { "category": "Pet", @@ -7138,7 +9645,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cosmic Axolotl", "sh": true, }, - "value": 388, + "value": 400, }, { "category": "Pet", @@ -7156,7 +9663,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 118, + "value": 119, }, { "category": "Pet", @@ -7165,7 +9672,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 125, + "value": 129, }, { "category": "Pet", @@ -7173,7 +9680,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Atlantean Orca", "sh": true, }, - "value": 187, + "value": 192, }, { "category": "Pet", @@ -7181,7 +9688,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Squirrel", "pt": 2, }, - "value": 1057, + "value": 1107, }, { "category": "Pet", @@ -7189,7 +9696,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Exquisite Parrot", "sh": true, }, - "value": 484, + "value": 574, }, { "category": "Pet", @@ -7197,7 +9704,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Wild Fire Agony", "pt": 2, }, - "value": 280, + "value": 284, }, { "category": "Pet", @@ -7205,7 +9712,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Nightmare Spirit", "sh": true, }, - "value": 288, + "value": 295, }, { "category": "Pet", @@ -7220,7 +9727,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nightmare Bear", "sh": true, }, - "value": 2352, + "value": 2019, }, { "category": "Pet", @@ -7228,7 +9735,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stealth Bobcat", "sh": true, }, - "value": 1138, + "value": 1086, }, { "category": "Pet", @@ -7236,7 +9743,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Grinch Cat", "sh": true, }, - "value": 294, + "value": 302, }, { "category": "Pet", @@ -7244,7 +9751,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cool Cat", "sh": true, }, - "value": 2367, + "value": 1899, }, { "category": "Pet", @@ -7252,7 +9759,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stealth Dragon", "pt": 1, }, - "value": 6981, + "value": 6101, }, { "category": "Pet", @@ -7260,7 +9767,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Monkey", "pt": 1, }, - "value": 226, + "value": 230, }, { "category": "Pet", @@ -7268,7 +9775,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiedye Bunny", "pt": 1, }, - "value": 5999, + "value": 5548, }, { "category": "Pet", @@ -7284,7 +9791,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Sun Angelus", "pt": 2, }, - "value": 215, + "value": 217, }, { "category": "Pet", @@ -7292,7 +9799,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Clover Dragon", "pt": 2, }, - "value": 88, + "value": 90, }, { "category": "Pet", @@ -7300,7 +9807,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Clover Unicorn", "pt": 2, }, - "value": 418, + "value": 427, }, { "category": "Pet", @@ -7308,7 +9815,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Comet Agony", "sh": true, }, - "value": 54, + "value": 56, }, { "category": "Pet", @@ -7316,7 +9823,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Luau Cat", "sh": true, }, - "value": 238, + "value": 246, }, { "category": "Pet", @@ -7324,7 +9831,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Diamond Cat", "sh": true, }, - "value": 34, + "value": 39, }, { "category": "Pet", @@ -7332,7 +9839,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pirate Parrot", "sh": true, }, - "value": 164, + "value": 165, }, { "category": "Pet", @@ -7348,7 +9855,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Meebo in a Spaceship", "sh": true, }, - "value": 49, + "value": 52, }, { "category": "Pet", @@ -7356,7 +9863,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Fairy", "pt": 1, }, - "value": 473, + "value": 478, }, { "category": "Pet", @@ -7364,7 +9871,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge White Balloon Cat", "pt": 2, }, - "value": 42, + "value": 60, }, { "category": "Pet", @@ -7372,7 +9879,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Snowman", "sh": true, }, - "value": 209, + "value": 213, }, { "category": "Pet", @@ -7380,7 +9887,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dalmatian", "sh": true, }, - "value": 1514819, + "value": 1695025, }, { "category": "Pet", @@ -7388,7 +9895,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiedye Axolotl", "pt": 2, }, - "value": 551, + "value": 700, }, { "category": "Pet", @@ -7396,7 +9903,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Evolved King Cobra", "pt": 2, }, - "value": 134, + "value": 166, }, { "category": "Pet", @@ -7404,7 +9911,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bee", "sh": true, }, - "value": 665539, + "value": 711581, }, { "category": "Pet", @@ -7412,7 +9919,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Grim Reaper", "pt": 1, }, - "value": 996, + "value": 1030, }, { "category": "Pet", @@ -7429,7 +9936,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 16, + "value": 21, }, { "category": "Pet", @@ -7445,7 +9952,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Orca", "sh": true, }, - "value": 432, + "value": 441, }, { "category": "Pet", @@ -7453,7 +9960,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pop Cat", "sh": true, }, - "value": 253, + "value": 256, }, { "category": "Pet", @@ -7461,7 +9968,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Orca", "pt": 2, }, - "value": 498, + "value": 510, }, { "category": "Pet", @@ -7469,7 +9976,30 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nightfall Wolf", "pt": 2, }, - "value": 974, + "value": 1037, + }, + { + "category": "Hoverboard", + "configData": { + "id": "High Tech", + }, + "value": 34101, + }, + { + "category": "Enchant", + "configData": { + "id": "Tap Power", + "tn": 5, + }, + "value": 5382278415, + }, + { + "category": "Potion", + "configData": { + "id": "Diamonds", + "tn": 4, + }, + "value": 239130142518, }, { "category": "Pet", @@ -7477,7 +10007,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Nightfall Pegasus", "sh": true, }, - "value": 290, + "value": 313, }, { "category": "Pet", @@ -7485,7 +10015,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Firefighter Dalmation", "pt": 2, }, - "value": 244, + "value": 245, }, { "category": "Pet", @@ -7494,7 +10024,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 19, + "value": 23, }, { "category": "Pet", @@ -7502,7 +10032,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tiedye Corgi", "pt": 2, }, - "value": 293, + "value": 306, }, { "category": "Pet", @@ -7510,7 +10040,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Evolved Hacked Cat", "sh": true, }, - "value": 30, + "value": 71, }, { "category": "Pet", @@ -7518,7 +10048,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Santa Monkey", "pt": 1, }, - "value": 314, + "value": 324, }, { "category": "Pet", @@ -7526,7 +10056,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Snowman", "pt": 1, }, - "value": 585, + "value": 592, }, { "category": "Pet", @@ -7534,7 +10064,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cat", "sh": true, }, - "value": 26030853, + "value": 27268761, }, { "category": "Pet", @@ -7542,7 +10072,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Exquisite Cat", "pt": 1, }, - "value": 3180, + "value": 3152, }, { "category": "Pet", @@ -7550,7 +10080,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Crystal Deer", "sh": true, }, - "value": 1390, + "value": 1246, }, { "category": "Pet", @@ -7575,7 +10105,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mosaic Lamb", "pt": 1, }, - "value": 2785, + "value": 3485, }, { "category": "Pet", @@ -7584,7 +10114,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 74, + "value": 73, }, { "category": "Pet", @@ -7593,7 +10123,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 119, + "value": 116, }, { "category": "Pet", @@ -7602,7 +10132,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 139, + "value": 144, }, { "category": "Pet", @@ -7610,7 +10140,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mosaic Griffin", "pt": 2, }, - "value": 570, + "value": 602, }, { "category": "Pet", @@ -7618,7 +10148,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Atlantean Dolphin", "pt": 2, }, - "value": 115, + "value": 118, }, { "category": "Pet", @@ -7641,7 +10171,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Dragon", "sh": true, }, - "value": 164, + "value": 166, }, { "category": "Pet", @@ -7649,7 +10179,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Nightfall Wolf", "sh": true, }, - "value": 383, + "value": 424, }, { "category": "Pet", @@ -7658,7 +10188,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 101, + "value": 110, }, { "category": "Pet", @@ -7666,7 +10196,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Corgi", "sh": true, }, - "value": 26025575, + "value": 27264784, }, { "category": "Pet", @@ -7683,7 +10213,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Party Dog", "sh": true, }, - "value": 117, + "value": 122, }, { "category": "Pet", @@ -7691,7 +10221,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Wild Fire Agony", "sh": true, }, - "value": 147, + "value": 152, }, { "category": "Pet", @@ -7699,7 +10229,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge King Cobra", "pt": 2, }, - "value": 630, + "value": 606, }, { "category": "Pet", @@ -7707,7 +10237,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Safari Cat", "pt": 2, }, - "value": 89, + "value": 91, }, { "category": "Pet", @@ -7715,7 +10245,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Nightfall Pegasus", "pt": 1, }, - "value": 1404, + "value": 1505, }, { "category": "Pet", @@ -7723,7 +10253,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Balloon Axolotl", "sh": true, }, - "value": 1150, + "value": 1073, }, { "category": "Pet", @@ -7732,7 +10262,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 44, + "value": 47, }, { "category": "Pet", @@ -7740,7 +10270,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Safari Cat", "pt": 1, }, - "value": 154, + "value": 157, }, { "category": "Pet", @@ -7756,7 +10286,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Axolotl", "pt": 1, }, - "value": 214, + "value": 217, }, { "category": "Pet", @@ -7764,7 +10294,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Love Lamb", "pt": 2, }, - "value": 203, + "value": 206, }, { "category": "Pet", @@ -7773,7 +10303,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 160, + "value": 163, }, { "category": "Pet", @@ -7781,7 +10311,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mosaic Lamb", "sh": true, }, - "value": 762, + "value": 1005, }, { "category": "Pet", @@ -7797,7 +10327,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Basketball Retriever", "pt": 1, }, - "value": 200, + "value": 201, }, { "category": "Pet", @@ -7805,14 +10335,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge King Cobra", "pt": 1, }, - "value": 1130, + "value": 1091, }, { "category": "Pet", "configData": { "id": "Fox", }, - "value": 120687317, + "value": 132611078, }, { "category": "Pet", @@ -7820,7 +10350,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Luau Cat", "pt": 2, }, - "value": 246, + "value": 247, }, { "category": "Pet", @@ -7828,7 +10358,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Forest Wyvern", "pt": 1, }, - "value": 979, + "value": 1002, }, { "category": "Pet", @@ -7836,7 +10366,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Elf Dog", "pt": 2, }, - "value": 504, + "value": 519, }, { "category": "Pet", @@ -7844,14 +10374,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Comet Cyclops", "pt": 1, }, - "value": 251, + "value": 264, }, { "category": "Pet", "configData": { "id": "Huge Tiedye Bunny", }, - "value": 6947, + "value": 9157, }, { "category": "Pet", @@ -7859,7 +10389,29 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Party Penguin", "pt": 2, }, - "value": 68, + "value": 69, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Fire Dragon", + }, + "value": 7675, + }, + { + "category": "Misc", + "configData": { + "id": "Magic Coin Jar", + }, + "value": 1655410565, + }, + { + "category": "Enchant", + "configData": { + "id": "Lucky Eggs", + "tn": 3, + }, + "value": 21738929746, }, { "category": "Pet", @@ -7867,7 +10419,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Grim Reaper", "pt": 2, }, - "value": 548, + "value": 559, }, { "category": "Pet", @@ -7875,7 +10427,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Atlantean Dolphin", "sh": true, }, - "value": 797, + "value": 762, }, { "category": "Pet", @@ -7883,7 +10435,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Snowman", "pt": 2, }, - "value": 86, + "value": 87, }, { "category": "Pet", @@ -7892,7 +10444,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 104, + "value": 105, }, { "category": "Pet", @@ -7900,7 +10452,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Hologram Axolotl", "sh": true, }, - "value": 223, + "value": 228, }, { "category": "Pet", @@ -7908,7 +10460,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stealth Dragon", "sh": true, }, - "value": 1125, + "value": 1045, }, { "category": "Pet", @@ -7916,7 +10468,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nightfall Ram", "pt": 2, }, - "value": 852, + "value": 887, }, { "category": "Pet", @@ -7924,7 +10476,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pastel Sock Dragon", "pt": 1, }, - "value": 317, + "value": 326, }, { "category": "Pet", @@ -7932,14 +10484,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Crystal Dog", "sh": true, }, - "value": 1457, + "value": 1285, }, { "category": "Pet", "configData": { "id": "Huge Ghost", }, - "value": 47217, + "value": 55726, }, { "category": "Pet", @@ -7947,7 +10499,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Neon Cat", "sh": true, }, - "value": 307, + "value": 311, }, { "category": "Pet", @@ -7956,7 +10508,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 38, + "value": 40, }, { "category": "Pet", @@ -7964,7 +10516,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiedye Axolotl", "pt": 1, }, - "value": 2986, + "value": 2793, }, { "category": "Pet", @@ -7972,7 +10524,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiedye Dog", "pt": 1, }, - "value": 6104, + "value": 5562, }, { "category": "Pet", @@ -7981,7 +10533,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 98, + "value": 102, }, { "category": "Pet", @@ -7990,7 +10542,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 145, + "value": 153, }, { "category": "Pet", @@ -8006,7 +10558,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mosaic Griffin", "sh": true, }, - "value": 630, + "value": 592, }, { "category": "Pet", @@ -8024,7 +10576,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 212, + "value": 222, }, { "category": "Pet", @@ -8032,7 +10584,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Kawaii Dragon", "pt": 2, }, - "value": 418, + "value": 421, }, { "category": "Pet", @@ -8040,7 +10592,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Party Penguin", "pt": 1, }, - "value": 259, + "value": 262, }, { "category": "Pet", @@ -8048,7 +10600,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Unicorn", "pt": 1, }, - "value": 462, + "value": 471, }, { "category": "Pet", @@ -8056,7 +10608,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Party Crown Ducky", "pt": 1, }, - "value": 633, + "value": 647, }, { "category": "Pet", @@ -8064,7 +10616,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bee", "pt": 1, }, - "value": 32032539, + "value": 36343683, }, { "category": "Pet", @@ -8072,7 +10624,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Party Cat", "pt": 2, }, - "value": 395, + "value": 400, }, { "category": "Pet", @@ -8089,7 +10641,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tiedye Bunny", "pt": 1, }, - "value": 863, + "value": 1191, }, { "category": "Pet", @@ -8097,7 +10649,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Lucki Agony", "pt": 1, }, - "value": 218, + "value": 219, }, { "category": "Pet", @@ -8114,7 +10666,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Gecko", "sh": true, }, - "value": 379, + "value": 390, }, { "category": "Pet", @@ -8122,7 +10674,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Exquisite Parrot", "pt": 2, }, - "value": 291, + "value": 370, }, { "category": "Pet", @@ -8130,7 +10682,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cosmic Axolotl", "pt": 2, }, - "value": 497, + "value": 508, }, { "category": "Pet", @@ -8138,7 +10690,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiedye Bear", "pt": 2, }, - "value": 325, + "value": 356, }, { "category": "Pet", @@ -8146,7 +10698,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Party Dog", "pt": 2, }, - "value": 163, + "value": 165, }, { "category": "Pet", @@ -8162,7 +10714,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nightfall Pegasus", "pt": 2, }, - "value": 537, + "value": 560, }, { "category": "Pet", @@ -8170,7 +10722,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiedye Corgi", "pt": 2, }, - "value": 1173, + "value": 1184, }, { "category": "Pet", @@ -8178,7 +10730,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mosaic Elephant", "sh": true, }, - "value": 1588, + "value": 1400, }, { "category": "Pet", @@ -8186,14 +10738,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Balloon Dragon", "sh": true, }, - "value": 328, + "value": 339, }, { "category": "Pet", "configData": { "id": "Raccoon", }, - "value": 151235847, + "value": 166596945, }, { "category": "Pet", @@ -8201,7 +10753,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pastel Sock Dragon", "pt": 2, }, - "value": 61, + "value": 62, }, { "category": "Pet", @@ -8225,7 +10777,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cyborg Capybara", "pt": 1, }, - "value": 118, + "value": 121, }, { "category": "Pet", @@ -8233,7 +10785,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Apple Capybara", "sh": true, }, - "value": 88, + "value": 90, }, { "category": "Pet", @@ -8241,7 +10793,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Apple Capybara", "pt": 2, }, - "value": 88, + "value": 95, }, { "category": "Pet", @@ -8249,7 +10801,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Capybara", "pt": 1, }, - "value": 123, + "value": 124, }, { "category": "Pet", @@ -8265,7 +10817,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Capybara", "sh": true, }, - "value": 7, + "value": 9, }, { "category": "Pet", @@ -8281,7 +10833,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cyborg Capybara", "pt": 2, }, - "value": 101, + "value": 105, }, { "category": "Pet", @@ -8297,7 +10849,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Arcade Cat", "pt": 2, }, - "value": 190, + "value": 195, }, { "category": "Pet", @@ -8305,7 +10857,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Luau Cat", "pt": 1, }, - "value": 408, + "value": 417, }, { "category": "Pet", @@ -8313,7 +10865,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Gamer Shiba", "pt": 1, }, - "value": 239, + "value": 240, }, { "category": "Pet", @@ -8321,7 +10873,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nightfall Tiger", "sh": true, }, - "value": 403, + "value": 413, }, { "category": "Pet", @@ -8329,7 +10881,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Atlantean Dolphin", "pt": 2, }, - "value": 1079, + "value": 1042, }, { "category": "Pet", @@ -8338,7 +10890,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 157, + "value": 162, }, { "category": "Pet", @@ -8346,7 +10898,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pufferfish", "pt": 1, }, - "value": 244, + "value": 249, }, { "category": "Pet", @@ -8364,7 +10916,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 32, + "value": 34, }, { "category": "Pet", @@ -8372,7 +10924,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Evolved Pterodactyl", "pt": 2, }, - "value": 186, + "value": 236, }, { "category": "Pet", @@ -8390,7 +10942,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 38, + "value": 40, }, { "category": "Pet", @@ -8398,7 +10950,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Turkey", "pt": 1, }, - "value": 17267358, + "value": 19764605, }, { "category": "Pet", @@ -8407,7 +10959,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 27, + "value": 29, }, { "category": "Pet", @@ -8415,7 +10967,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mosaic Griffin", "sh": true, }, - "value": 440, + "value": 493, }, { "category": "Pet", @@ -8423,7 +10975,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nightfall Tiger", "pt": 2, }, - "value": 640, + "value": 669, }, { "category": "Pet", @@ -8431,7 +10983,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Exquisite Elephant", "pt": 1, }, - "value": 2250, + "value": 2109, }, { "category": "Pet", @@ -8440,7 +10992,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 286, + "value": 293, }, { "category": "Pet", @@ -8448,7 +11000,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Reindeer Dog", "sh": true, }, - "value": 70, + "value": 71, }, { "category": "Pet", @@ -8456,7 +11008,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Scary Cat", "sh": true, }, - "value": 20, + "value": 22, }, { "category": "Pet", @@ -8464,7 +11016,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiedye Axolotl", "sh": true, }, - "value": 453, + "value": 519, }, { "category": "Pet", @@ -8473,7 +11025,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 225, + "value": 226, }, { "category": "Pet", @@ -8481,7 +11033,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiedye Cat", "pt": 2, }, - "value": 430, + "value": 488, }, { "category": "Pet", @@ -8490,7 +11042,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 49, + "value": 52, }, { "category": "Pet", @@ -8498,7 +11050,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiedye Dragon", "pt": 2, }, - "value": 954, + "value": 1035, }, { "category": "Pet", @@ -8506,7 +11058,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Kawaii Cat", "pt": 1, }, - "value": 444, + "value": 455, }, { "category": "Pet", @@ -8514,7 +11066,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Unicorn", "sh": true, }, - "value": 87, + "value": 89, }, { "category": "Pet", @@ -8522,7 +11074,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Party Crown Ducky", "pt": 2, }, - "value": 164, + "value": 167, }, { "category": "Pet", @@ -8530,7 +11082,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Love Lamb", "pt": 1, }, - "value": 1148, + "value": 1170, }, { "category": "Pet", @@ -8538,7 +11090,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Anime Monkey", "sh": true, }, - "value": 726, + "value": 734, }, { "category": "Pet", @@ -8546,7 +11098,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mosaic Griffin", "pt": 2, }, - "value": 1046, + "value": 979, }, { "category": "Pet", @@ -8554,7 +11106,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Prickly Panda", "pt": 2, }, - "value": 489, + "value": 505, }, { "category": "Pet", @@ -8563,7 +11115,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 176, + "value": 224, }, { "category": "Pet", @@ -8571,7 +11123,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bear", "pt": 2, }, - "value": 5514964, + "value": 5781291, }, { "category": "Pet", @@ -8580,7 +11132,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 24, + "value": 26, }, { "category": "Pet", @@ -8588,7 +11140,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Reindeer Dog", "pt": 1, }, - "value": 311, + "value": 322, }, { "category": "Pet", @@ -8596,7 +11148,31 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Neon Twilight Dragon", "pt": 1, }, - "value": 142, + "value": 147, + }, + { + "category": "Enchant", + "configData": { + "id": "Treasure Hunter", + "tn": 4, + }, + "value": 17602170990, + }, + { + "category": "Enchant", + "configData": { + "id": "Magnet", + "tn": 2, + }, + "value": 19302195321, + }, + { + "category": "Enchant", + "configData": { + "id": "Walkspeed", + "tn": 4, + }, + "value": 7292307125, }, { "category": "Pet", @@ -8604,7 +11180,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Balloon Cat", "sh": true, }, - "value": 171, + "value": 173, }, { "category": "Pet", @@ -8612,7 +11188,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Husky", "pt": 1, }, - "value": 418, + "value": 431, }, { "category": "Pet", @@ -8620,7 +11196,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Husky", "sh": true, }, - "value": 91, + "value": 92, }, { "category": "Pet", @@ -8628,7 +11204,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pixel Dragon", "sh": true, }, - "value": 192, + "value": 244, }, { "category": "Pet", @@ -8636,7 +11212,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Present Chest Mimic", "sh": true, }, - "value": 176, + "value": 181, }, { "category": "Pet", @@ -8644,7 +11220,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Celestial Dragon", "pt": 2, }, - "value": 2961, + "value": 2814, }, { "category": "Pet", @@ -8652,7 +11228,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Gecko", "pt": 1, }, - "value": 729, + "value": 741, }, { "category": "Pet", @@ -8660,7 +11236,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiedye Corgi", "sh": true, }, - "value": 684, + "value": 719, }, { "category": "Pet", @@ -8668,7 +11244,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Reindeer Axolotl", "pt": 2, }, - "value": 90, + "value": 93, }, { "category": "Pet", @@ -8676,7 +11252,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Evolved Pixel Cat", "pt": 2, }, - "value": 346, + "value": 409, }, { "category": "Pet", @@ -8684,7 +11260,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiedye Dog", "sh": true, }, - "value": 830, + "value": 855, }, { "category": "Pet", @@ -8692,7 +11268,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Diamond Cat", "pt": 1, }, - "value": 85, + "value": 95, }, { "category": "Pet", @@ -8709,7 +11285,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 130, + "value": 137, }, { "category": "Pet", @@ -8725,7 +11301,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Easter Yeti", "sh": true, }, - "value": 82, + "value": 83, }, { "category": "Pet", @@ -8734,7 +11310,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 145, + "value": 150, }, { "category": "Pet", @@ -8742,7 +11318,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Neon Griffin", "sh": true, }, - "value": 205, + "value": 209, }, { "category": "Pet", @@ -8750,7 +11326,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Firefighter Dalmation", "sh": true, }, - "value": 107, + "value": 110, }, { "category": "Pet", @@ -8758,7 +11334,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiger", "pt": 2, }, - "value": 8375071, + "value": 9268506, }, { "category": "Pet", @@ -8776,7 +11352,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 15, + "value": 18, }, { "category": "Pet", @@ -8784,7 +11360,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mosaic Elephant", "pt": 2, }, - "value": 1967, + "value": 1999, }, { "category": "Pet", @@ -8792,7 +11368,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Gargoyle Dragon", "pt": 1, }, - "value": 531, + "value": 536, }, { "category": "Pet", @@ -8800,7 +11376,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiedye Bear", "sh": true, }, - "value": 193, + "value": 233, }, { "category": "Pet", @@ -8808,7 +11384,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Kraken", "pt": 1, }, - "value": 71, + "value": 72, }, { "category": "Pet", @@ -8816,7 +11392,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Lucky Cat", "pt": 1, }, - "value": 648, + "value": 655, }, { "category": "Pet", @@ -8824,14 +11400,22 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Shark", "pt": 1, }, - "value": 378, + "value": 386, }, { "category": "Pet", "configData": { "id": "Titanic Fire Dragon", }, - "value": 786, + "value": 790, + }, + { + "category": "Enchant", + "configData": { + "id": "Strong Pets", + "tn": 5, + }, + "value": 4638139215, }, { "category": "Pet", @@ -8839,7 +11423,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bee", "pt": 2, }, - "value": 9639026, + "value": 10352128, }, { "category": "Pet", @@ -8847,7 +11431,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Sailor Shark", "pt": 1, }, - "value": 153, + "value": 157, }, { "category": "Pet", @@ -8856,7 +11440,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 145, + "value": 152, }, { "category": "Pet", @@ -8864,7 +11448,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Gleebo The Alien", "pt": 2, }, - "value": 83, + "value": 84, }, { "category": "Pet", @@ -8872,7 +11456,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Easter Bunny", "pt": 2, }, - "value": 170, + "value": 172, }, { "category": "Pet", @@ -8880,7 +11464,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chest Mimic", "pt": 2, }, - "value": 150, + "value": 158, }, { "category": "Pet", @@ -8889,7 +11473,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 51, + "value": 52, }, { "category": "Pet", @@ -8897,7 +11481,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Anime Agony", "pt": 1, }, - "value": 69, + "value": 71, }, { "category": "Pet", @@ -8905,7 +11489,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Painted Cat", "sh": true, }, - "value": 265, + "value": 275, }, { "category": "Pet", @@ -8914,7 +11498,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 178, + "value": 182, }, { "category": "Pet", @@ -8923,7 +11507,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 96, + "value": 97, }, { "category": "Pet", @@ -8931,7 +11515,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Squirrel", "sh": true, }, - "value": 1028, + "value": 1076, }, { "category": "Pet", @@ -8939,7 +11523,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Present Chest Mimic", "pt": 2, }, - "value": 181, + "value": 185, }, { "category": "Pet", @@ -8948,7 +11532,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 11, + "value": 13, }, { "category": "Pet", @@ -8956,7 +11540,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cheerful Yeti", "pt": 2, }, - "value": 203, + "value": 251, }, { "category": "Pet", @@ -8965,7 +11549,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 48, + "value": 50, }, { "category": "Pet", @@ -8973,7 +11557,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Lucki Agony", "sh": true, }, - "value": 104, + "value": 107, }, { "category": "Pet", @@ -8989,7 +11573,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Clover Unicorn", "sh": true, }, - "value": 200, + "value": 205, }, { "category": "Pet", @@ -8997,7 +11581,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Crystal Dog", "sh": true, }, - "value": 591, + "value": 621, }, { "category": "Pet", @@ -9005,7 +11589,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Atlantean Dolphin", "sh": true, }, - "value": 106, + "value": 112, }, { "category": "Pet", @@ -9013,7 +11597,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pixel Corgi", "sh": true, }, - "value": 1420, + "value": 1597, }, { "category": "Pet", @@ -9021,7 +11605,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Monkey", "pt": 2, }, - "value": 56, + "value": 58, }, { "category": "Pet", @@ -9029,7 +11613,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cool Cat", "pt": 1, }, - "value": 187, + "value": 207, }, { "category": "Pet", @@ -9046,7 +11630,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiedye Griffin", "pt": 1, }, - "value": 4264, + "value": 3994, }, { "category": "Pet", @@ -9054,7 +11638,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rift Dragon", "sh": true, }, - "value": 1078, + "value": 949, }, { "category": "Pet", @@ -9062,7 +11646,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Clover Dragon", "sh": true, }, - "value": 81, + "value": 83, }, { "category": "Pet", @@ -9070,7 +11654,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mosaic Corgi", "sh": true, }, - "value": 845, + "value": 789, }, { "category": "Pet", @@ -9079,7 +11663,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 27, + "value": 31, }, { "category": "Pet", @@ -9088,7 +11672,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 224, + "value": 258, }, { "category": "Pet", @@ -9097,7 +11681,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 61, + "value": 64, }, { "category": "Pet", @@ -9105,7 +11689,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Rainbow Unicorn", "pt": 1, }, - "value": 611, + "value": 618, }, { "category": "Pet", @@ -9114,7 +11698,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 168, + "value": 174, }, { "category": "Pet", @@ -9122,7 +11706,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nightfall Wolf", "sh": true, }, - "value": 614, + "value": 642, }, { "category": "Pet", @@ -9130,7 +11714,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Shadow Griffin", "pt": 1, }, - "value": 445, + "value": 452, }, { "category": "Pet", @@ -9138,7 +11722,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Bear", "pt": 1, }, - "value": 409, + "value": 415, }, { "category": "Pet", @@ -9146,7 +11730,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Samurai Dragon", "pt": 1, }, - "value": 427, + "value": 434, }, { "category": "Pet", @@ -9154,7 +11738,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mosaic Lamb", "pt": 2, }, - "value": 2015, + "value": 2007, }, { "category": "Pet", @@ -9162,7 +11746,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Santa Monkey", "pt": 2, }, - "value": 75, + "value": 77, }, { "category": "Pet", @@ -9170,7 +11754,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pixel Dragon", "pt": 2, }, - "value": 207, + "value": 267, }, { "category": "Pet", @@ -9186,7 +11770,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Evolved Peacock", "pt": 2, }, - "value": 272, + "value": 329, }, { "category": "Pet", @@ -9194,7 +11778,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pastel Sock Dragon", "sh": true, }, - "value": 65, + "value": 66, }, { "category": "Pet", @@ -9202,7 +11786,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Grinch Cat", "pt": 2, }, - "value": 289, + "value": 298, }, { "category": "Pet", @@ -9210,7 +11794,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Sun Angelus", "sh": true, }, - "value": 161, + "value": 163, }, { "category": "Pet", @@ -9227,14 +11811,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Nightmare Kraken", "pt": 2, }, - "value": 178, + "value": 182, }, { "category": "Pet", "configData": { "id": "Huge Masked Owl", }, - "value": 5295, + "value": 7026, }, { "category": "Pet", @@ -9243,7 +11827,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 34, + "value": 39, }, { "category": "Pet", @@ -9251,7 +11835,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Santa Dragon", "sh": true, }, - "value": 42, + "value": 43, }, { "category": "Pet", @@ -9268,7 +11852,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiedye Dragon", "sh": true, }, - "value": 594, + "value": 583, }, { "category": "Pet", @@ -9276,7 +11860,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Lucki", "pt": 2, }, - "value": 58, + "value": 60, }, { "category": "Pet", @@ -9284,7 +11868,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Neon Twilight Wolf", "pt": 2, }, - "value": 122, + "value": 129, }, { "category": "Pet", @@ -9292,7 +11876,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Meebo in a Spaceship", "pt": 1, }, - "value": 1187, + "value": 2762, }, { "category": "Pet", @@ -9300,7 +11884,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Unicorn Dragon", "sh": true, }, - "value": 1583, + "value": 1389, }, { "category": "Pet", @@ -9309,7 +11893,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 62, + "value": 66, }, { "category": "Pet", @@ -9317,7 +11901,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Evolved Cupcake", "sh": true, }, - "value": 70, + "value": 96, }, { "category": "Pet", @@ -9325,7 +11909,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiedye Griffin", "pt": 2, }, - "value": 817, + "value": 970, }, { "category": "Pet", @@ -9334,7 +11918,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 147, + "value": 154, }, { "category": "Pet", @@ -9342,7 +11926,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Raccoon", "pt": 1, }, - "value": 18153790, + "value": 20949485, }, { "category": "Pet", @@ -9350,7 +11934,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Raccoon", "pt": 2, }, - "value": 6148816, + "value": 6507699, }, { "category": "Pet", @@ -9359,7 +11943,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 71, + "value": 101, }, { "category": "Pet", @@ -9367,7 +11951,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chameleon", "pt": 2, }, - "value": 138, + "value": 141, }, { "category": "Pet", @@ -9376,7 +11960,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 118, + "value": 126, }, { "category": "Pet", @@ -9385,7 +11969,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 59, + "value": 60, }, { "category": "Pet", @@ -9402,7 +11986,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiedye Dog", "pt": 2, }, - "value": 1118, + "value": 1257, }, { "category": "Pet", @@ -9410,7 +11994,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Inferno Dominus", "sh": true, }, - "value": 328, + "value": 333, }, { "category": "Pet", @@ -9418,7 +12002,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mosaic Lamb", "pt": 2, }, - "value": 537, + "value": 674, }, { "category": "Pet", @@ -9426,7 +12010,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Axolotl", "pt": 2, }, - "value": 37, + "value": 39, }, { "category": "Pet", @@ -9434,7 +12018,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Turkey", "pt": 2, }, - "value": 5249066, + "value": 5570401, }, { "category": "Pet", @@ -9443,7 +12027,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 95, + "value": 102, }, { "category": "Pet", @@ -9451,7 +12035,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Evolved Hell Rock", "sh": true, }, - "value": 125, + "value": 219, }, { "category": "Pet", @@ -9459,7 +12043,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stealth Bobcat", "pt": 2, }, - "value": 1328, + "value": 1384, }, { "category": "Pet", @@ -9468,7 +12052,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 68, + "value": 76, }, { "category": "Pet", @@ -9476,7 +12060,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "White Bunny", "pt": 1, }, - "value": 67699971, + "value": 73371230, }, { "category": "Pet", @@ -9484,7 +12068,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cyborg Dragon", "sh": true, }, - "value": 211, + "value": 273, }, { "category": "Pet", @@ -9492,7 +12076,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Shadow Griffin", "pt": 2, }, - "value": 92, + "value": 93, }, { "category": "Pet", @@ -9500,7 +12084,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Neon Twilight Dragon", "pt": 2, }, - "value": 76, + "value": 77, }, { "category": "Pet", @@ -9508,7 +12092,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bear", "sh": true, }, - "value": 341547, + "value": 373676, }, { "category": "Pet", @@ -9516,7 +12100,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge M-10 PROTOTYPE", "pt": 2, }, - "value": 194, + "value": 208, }, { "category": "Pet", @@ -9524,7 +12108,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Exquisite Cat", "pt": 1, }, - "value": 926, + "value": 1219, }, { "category": "Pet", @@ -9532,7 +12116,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nightfall Pegasus", "sh": true, }, - "value": 305, + "value": 319, }, { "category": "Pet", @@ -9540,7 +12124,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Super Corgi", "pt": 1, }, - "value": 591, + "value": 595, }, { "category": "Pet", @@ -9551,6 +12135,22 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 28, }, + { + "category": "Enchant", + "configData": { + "id": "Lucky Eggs", + "tn": 4, + }, + "value": 8622127225, + }, + { + "category": "Enchant", + "configData": { + "id": "Diamonds", + "tn": 4, + }, + "value": 11401723979, + }, { "category": "Pet", "configData": { @@ -9558,7 +12158,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 57, + "value": 58, }, { "category": "Pet", @@ -9567,7 +12167,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 65, + "value": 71, }, { "category": "Pet", @@ -9592,7 +12192,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 81, + "value": 83, }, { "category": "Pet", @@ -9600,7 +12200,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Gleebo The Alien", "pt": 1, }, - "value": 42, + "value": 43, }, { "category": "Pet", @@ -9610,13 +12210,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 21, }, + { + "category": "Enchant", + "configData": { + "id": "Diamonds", + "tn": 5, + }, + "value": 2016416041, + }, { "category": "Pet", "configData": { "id": "Huge Sailor Shark", "sh": true, }, - "value": 88, + "value": 89, }, { "category": "Pet", @@ -9624,7 +12232,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pony", "pt": 1, }, - "value": 462, + "value": 466, }, { "category": "Pet", @@ -9632,7 +12240,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiedye Griffin", "sh": true, }, - "value": 603, + "value": 717, }, { "category": "Pet", @@ -9640,7 +12248,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Neon Griffin", "pt": 2, }, - "value": 169, + "value": 171, }, { "category": "Pet", @@ -9648,7 +12256,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tiedye Corgi", "sh": true, }, - "value": 201, + "value": 223, }, { "category": "Pet", @@ -9657,7 +12265,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 34, + "value": 48, }, { "category": "Pet", @@ -9666,7 +12274,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 99, + "value": 105, }, { "category": "Pet", @@ -9674,7 +12282,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Party Axolotl", "sh": true, }, - "value": 262, + "value": 267, }, { "category": "Pet", @@ -9700,7 +12308,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Elf Dog", "sh": true, }, - "value": 413, + "value": 429, }, { "category": "Pet", @@ -9708,7 +12316,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cheerful Yeti", "sh": true, }, - "value": 148, + "value": 166, }, { "category": "Pet", @@ -9717,7 +12325,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 19, + "value": 20, }, { "category": "Pet", @@ -9732,7 +12340,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Huge Tech Chest Mimic", }, - "value": 18634, + "value": 24846, }, { "category": "Pet", @@ -9740,7 +12348,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Stealth Bobcat", "pt": 1, }, - "value": 1540, + "value": 2032, + }, + { + "category": "Misc", + "configData": { + "id": "Booth Slot Voucher", + }, + "value": 125918357, }, { "category": "Pet", @@ -9748,7 +12363,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Arcade Cat", "pt": 1, }, - "value": 214, + "value": 222, }, { "category": "Pet", @@ -9756,7 +12371,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Piggy", "sh": true, }, - "value": 611921, + "value": 674007, }, { "category": "Pet", @@ -9764,7 +12379,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Piggy", "pt": 1, }, - "value": 27599056, + "value": 31031109, }, { "category": "Pet", @@ -9790,7 +12405,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Neon Twilight Wolf", "sh": true, }, - "value": 12, + "value": 14, }, { "category": "Pet", @@ -9823,7 +12438,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 7, + "value": 9, }, { "category": "Pet", @@ -9839,7 +12454,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Elf Cat", "sh": true, }, - "value": 411, + "value": 425, }, { "category": "Pet", @@ -9847,7 +12462,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Cosmic Pegasus", "pt": 2, }, - "value": 17, + "value": 18, }, { "category": "Pet", @@ -9881,7 +12496,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Jelly Piggy", "pt": 2, }, - "value": 155, + "value": 159, }, { "category": "Pet", @@ -9964,7 +12579,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cool Cat", "pt": 2, }, - "value": 80, + "value": 93, }, { "category": "Pet", @@ -9972,7 +12587,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Diamond Cat", "pt": 2, }, - "value": 49, + "value": 56, }, { "category": "Pet", @@ -9981,7 +12596,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 15, + "value": 16, }, { "category": "Pet", @@ -9989,7 +12604,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Santa Monkey", "sh": true, }, - "value": 68, + "value": 69, }, { "category": "Pet", @@ -10005,7 +12620,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tech Chest Mimic", "pt": 2, }, - "value": 391, + "value": 531, }, { "category": "Pet", @@ -10013,7 +12628,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Comet Cyclops", "sh": true, }, - "value": 155, + "value": 162, }, { "category": "Pet", @@ -10029,7 +12644,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Samurai Dragon", "sh": true, }, - "value": 71, + "value": 73, }, { "category": "Pet", @@ -10037,7 +12652,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Sombrero Chihuahua", "pt": 2, }, - "value": 68, + "value": 70, }, { "category": "Pet", @@ -10045,7 +12660,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Prickly Panda", "pt": 2, }, - "value": 93, + "value": 97, }, { "category": "Pet", @@ -10054,14 +12669,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 37, + "value": 42, }, { "category": "Pet", "configData": { "id": "Huge Angel Cat", }, - "value": 802, + "value": 1486, }, { "category": "Pet", @@ -10087,7 +12702,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Anime Agony", "sh": true, }, - "value": 46, + "value": 47, }, { "category": "Pet", @@ -10104,7 +12719,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 38, + "value": 43, }, { "category": "Pet", @@ -10120,7 +12735,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pirate Parrot", "pt": 1, }, - "value": 222, + "value": 225, }, { "category": "Pet", @@ -10129,7 +12744,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 50, + "value": 54, }, { "category": "Pet", @@ -10146,7 +12761,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Ghost", "sh": true, }, - "value": 1019, + "value": 1203, }, { "category": "Pet", @@ -10154,7 +12769,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Fairy", "sh": true, }, - "value": 86, + "value": 87, }, { "category": "Pet", @@ -10172,6 +12787,22 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 10, }, + { + "category": "Enchant", + "configData": { + "id": "Walkspeed", + "tn": 5, + }, + "value": 1221262206, + }, + { + "category": "Enchant", + "configData": { + "id": "Blast", + "tn": 1, + }, + "value": 594486957, + }, { "category": "Pet", "configData": { @@ -10179,7 +12810,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 110, + "value": 117, }, { "category": "Pet", @@ -10188,7 +12819,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 69, + "value": 73, }, { "category": "Pet", @@ -10197,7 +12828,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 58, + "value": 59, }, { "category": "Pet", @@ -10205,7 +12836,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Amethyst Dragon", "pt": 2, }, - "value": 184, + "value": 188, }, { "category": "Pet", @@ -10214,7 +12845,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 29, + "value": 30, }, { "category": "Pet", @@ -10230,7 +12861,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Kawaii Cat", "pt": 2, }, - "value": 100, + "value": 102, }, { "category": "Pet", @@ -10239,7 +12870,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 49, + "value": 54, }, { "category": "Pet", @@ -10247,7 +12878,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Stealth Bobcat", "pt": 2, }, - "value": 287, + "value": 388, }, { "category": "Pet", @@ -10256,7 +12887,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 4, + "value": 5, }, { "category": "Pet", @@ -10264,7 +12895,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Exquisite Cat", "sh": true, }, - "value": 296, + "value": 378, }, { "category": "Pet", @@ -10281,7 +12912,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Kraken", "sh": true, }, - "value": 37, + "value": 38, }, { "category": "Pet", @@ -10299,7 +12930,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 6, + "value": 7, }, { "category": "Pet", @@ -10327,6 +12958,30 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 20, }, + { + "category": "Charm", + "configData": { + "id": "Coins", + "tn": 1, + }, + "value": 206344219, + }, + { + "category": "Charm", + "configData": { + "id": "Agility", + "tn": 1, + }, + "value": 322097074, + }, + { + "category": "Enchant", + "configData": { + "id": "Treasure Hunter", + "tn": 5, + }, + "value": 4977926262, + }, { "category": "Pet", "configData": { @@ -10334,7 +12989,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 88, + "value": 90, }, { "category": "Pet", @@ -10343,7 +12998,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 61, + "value": 71, }, { "category": "Pet", @@ -10351,7 +13006,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Party Crown Ducky", "sh": true, }, - "value": 173, + "value": 174, }, { "category": "Pet", @@ -10360,7 +13015,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 89, + "value": 91, }, { "category": "Pet", @@ -10384,7 +13039,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tiedye Axolotl", "sh": true, }, - "value": 214, + "value": 284, }, { "category": "Pet", @@ -10393,7 +13048,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 62, + "value": 63, }, { "category": "Pet", @@ -10401,7 +13056,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Llama", "pt": 1, }, - "value": 11209693, + "value": 13663150, }, { "category": "Pet", @@ -10409,7 +13064,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Piggy", "pt": 2, }, - "value": 9032301, + "value": 9540095, }, { "category": "Pet", @@ -10417,7 +13072,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Shark", "pt": 2, }, - "value": 85, + "value": 87, }, { "category": "Pet", @@ -10425,7 +13080,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiger", "sh": true, }, - "value": 307544, + "value": 338929, }, { "category": "Pet", @@ -10433,7 +13088,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Evolved Pixel Cat", "sh": true, }, - "value": 30, + "value": 97, }, { "category": "Pet", @@ -10458,7 +13113,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Kraken", "pt": 2, }, - "value": 41, + "value": 43, }, { "category": "Pet", @@ -10476,7 +13131,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 7, + "value": 5, + }, + { + "category": "Potion", + "configData": { + "id": "Walkspeed", + "tn": 3, + }, + "value": 5807649906, }, { "category": "Pet", @@ -10485,7 +13148,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 31, + "value": 32, }, { "category": "Pet", @@ -10493,7 +13156,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Neon Agony", "sh": true, }, - "value": 17, + "value": 18, }, { "category": "Pet", @@ -10501,7 +13164,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Santa Dragon", "pt": 2, }, - "value": 62, + "value": 63, }, { "category": "Pet", @@ -10509,7 +13172,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Empyrean Agony", "pt": 2, }, - "value": 548, + "value": 644, }, { "category": "Pet", @@ -10518,7 +13181,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 9, + "value": 10, }, { "category": "Pet", @@ -10526,7 +13189,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pixel Corgi", "pt": 2, }, - "value": 1457, + "value": 1644, }, { "category": "Pet", @@ -10535,7 +13198,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 11, + "value": 12, }, { "category": "Pet", @@ -10552,7 +13215,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 19, + "value": 27, }, { "category": "Pet", @@ -10570,7 +13233,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 44, + "value": 51, }, { "category": "Pet", @@ -10595,7 +13258,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Ghost", "pt": 2, }, - "value": 1083, + "value": 1287, }, { "category": "Pet", @@ -10621,7 +13284,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 20, + "value": 22, }, { "category": "Pet", @@ -10629,7 +13292,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Exquisite Cat", "pt": 2, }, - "value": 199, + "value": 266, }, { "category": "Pet", @@ -10638,7 +13301,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13, + "value": 14, }, { "category": "Pet", @@ -10646,7 +13309,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Evolved Peacock", "sh": true, }, - "value": 240, + "value": 280, }, { "category": "Pet", @@ -10654,7 +13317,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Lamb", "pt": 1, }, - "value": 23897778, + "value": 27475957, }, { "category": "Pet", @@ -10663,7 +13326,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 102, + "value": 105, }, { "category": "Pet", @@ -10672,7 +13335,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 53, + "value": 58, }, { "category": "Pet", @@ -10699,7 +13362,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 11, + "value": 12, }, { "category": "Pet", @@ -10707,7 +13370,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Evolved King Cobra", "sh": true, }, - "value": 51, + "value": 76, }, { "category": "Pet", @@ -10715,7 +13378,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Evolved Pterodactyl", "sh": true, }, - "value": 98, + "value": 122, }, { "category": "Pet", @@ -10758,7 +13421,23 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5, + "value": 6, + }, + { + "category": "Enchant", + "configData": { + "id": "Criticals", + "tn": 5, + }, + "value": 3365157517, + }, + { + "category": "Enchant", + "configData": { + "id": "Coins", + "tn": 5, + }, + "value": 5840015986, }, { "category": "Pet", @@ -10774,7 +13453,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Sandcastle Cat", "pt": 1, }, - "value": 74, + "value": 75, }, { "category": "Pet", @@ -10782,7 +13461,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tiedye Axolotl", "pt": 2, }, - "value": 131, + "value": 184, }, { "category": "Pet", @@ -10791,7 +13470,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 43, + "value": 42, }, { "category": "Pet", @@ -10800,7 +13479,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 7, + "value": 8, }, { "category": "Pet", @@ -10826,7 +13505,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 104, + "value": 114, }, { "category": "Pet", @@ -10835,7 +13514,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 71, + "value": 82, }, { "category": "Pet", @@ -10844,7 +13523,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 34, + "value": 41, }, { "category": "Pet", @@ -10853,7 +13532,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 26, + "value": 27, }, { "category": "Pet", @@ -10861,7 +13540,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Meebo in a Spaceship", "pt": 2, }, - "value": 247, + "value": 550, }, { "category": "Pet", @@ -10895,7 +13574,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 20, + "value": 21, }, { "category": "Pet", @@ -10903,7 +13582,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tiedye Axolotl", "pt": 1, }, - "value": 708, + "value": 979, }, { "category": "Pet", @@ -10912,7 +13591,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 101, + "value": 142, }, { "category": "Pet", @@ -10929,7 +13608,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 44, + "value": 47, }, { "category": "Pet", @@ -10954,7 +13633,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 63, + "value": 66, }, { "category": "Pet", @@ -10962,7 +13641,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chameleon", "pt": 1, }, - "value": 196, + "value": 199, }, { "category": "Pet", @@ -10971,7 +13650,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 113, + "value": 151, }, { "category": "Pet", @@ -10980,7 +13659,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 126, + "value": 154, }, { "category": "Pet", @@ -10998,7 +13677,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 3, + "value": 5, }, { "category": "Pet", @@ -11007,7 +13686,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3, + "value": 5, }, { "category": "Pet", @@ -11033,7 +13712,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 197848, + "value": 260268, }, { "category": "Pet", @@ -11058,7 +13737,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Exquisite Elephant", "pt": 2, }, - "value": 509, + "value": 589, }, { "category": "Pet", @@ -11066,7 +13745,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Exquisite Cat", "pt": 2, }, - "value": 619, + "value": 739, }, { "category": "Pet", @@ -11083,7 +13762,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Exquisite Cat", "sh": true, }, - "value": 512, + "value": 554, }, { "category": "Pet", @@ -11091,7 +13770,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tiedye Cat", "sh": true, }, - "value": 231, + "value": 255, }, { "category": "Pet", @@ -11116,7 +13795,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Basketball Retriever", "pt": 2, }, - "value": 55, + "value": 57, }, { "category": "Pet", @@ -11124,7 +13803,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Llama", "pt": 2, }, - "value": 3884524, + "value": 4316869, }, { "category": "Pet", @@ -11132,7 +13811,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Exquisite Elephant", "sh": true, }, - "value": 331, + "value": 376, }, { "category": "Pet", @@ -11150,6 +13829,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 1, }, + { + "category": "Misc", + "configData": { + "id": "Golden Shovel", + }, + "value": 1676489, + }, + { + "category": "Enchant", + "configData": { + "id": "Lucky Eggs", + "tn": 5, + }, + "value": 2369650764, + }, { "category": "Pet", "configData": { @@ -11157,7 +13851,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 41, + "value": 42, }, { "category": "Pet", @@ -11173,7 +13867,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Ghost", "pt": 1, }, - "value": 5183, + "value": 6077, }, { "category": "Pet", @@ -11190,7 +13884,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiedye Bunny", "pt": 2, }, - "value": 1146, + "value": 1208, }, { "category": "Pet", @@ -11198,7 +13892,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Comet Agony", "pt": 1, }, - "value": 82, + "value": 86, }, { "category": "Pet", @@ -11223,7 +13917,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Turkey", "sh": true, }, - "value": 344881, + "value": 367600, }, { "category": "Pet", @@ -11232,7 +13926,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 25, + "value": 34, }, { "category": "Pet", @@ -11241,7 +13935,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 134, + "value": 155, }, { "category": "Pet", @@ -11249,7 +13943,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pinata Cat", "sh": true, }, - "value": 59, + "value": 61, }, { "category": "Pet", @@ -11258,7 +13952,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 38, + "value": 41, }, { "category": "Pet", @@ -11276,7 +13970,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 20, + "value": 24, }, { "category": "Pet", @@ -11293,7 +13987,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Masked Owl", "sh": true, }, - "value": 124, + "value": 163, }, { "category": "Pet", @@ -11302,7 +13996,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 39, + "value": 46, }, { "category": "Pet", @@ -11318,7 +14012,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Samurai Dragon", "pt": 2, }, - "value": 91, + "value": 92, }, { "category": "Pet", @@ -11327,7 +14021,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 62, + "value": 74, }, { "category": "Pet", @@ -11336,7 +14030,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 19, + "value": 20, }, { "category": "Pet", @@ -11345,7 +14039,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13, + "value": 14, }, { "category": "Pet", @@ -11353,7 +14047,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Shark", "sh": true, }, - "value": 61, + "value": 62, }, { "category": "Pet", @@ -11362,7 +14056,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 62, + "value": 79, }, { "category": "Pet", @@ -11380,7 +14074,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 36, + "value": 44, }, { "category": "Pet", @@ -11388,7 +14082,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Neon Twilight Cat", "sh": true, }, - "value": 10, + "value": 11, }, { "category": "Pet", @@ -11431,7 +14125,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 28, + "value": 29, }, { "category": "Pet", @@ -11439,7 +14133,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cat", "pt": 1, }, - "value": 1340431356, + "value": 1456016108, }, { "category": "Pet", @@ -11447,7 +14141,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cat", "pt": 2, }, - "value": 182312951, + "value": 197483438, }, { "category": "Pet", @@ -11455,7 +14149,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Corgi", "pt": 2, }, - "value": 183029108, + "value": 199971176, }, { "category": "Pet", @@ -11464,7 +14158,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 24, + "value": 32, }, { "category": "Pet", @@ -11473,7 +14167,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 38, + "value": 47, }, { "category": "Pet", @@ -11489,7 +14183,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Party Monkey", "pt": 2, }, - "value": 24, + "value": 25, }, { "category": "Pet", @@ -11500,6 +14194,22 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 17, }, + { + "category": "Charm", + "configData": { + "id": "Diamonds", + "tn": 1, + }, + "value": 95595072, + }, + { + "category": "Charm", + "configData": { + "id": "Glittering", + "tn": 1, + }, + "value": 20947224, + }, { "category": "Pet", "configData": { @@ -11557,7 +14267,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Angelus", "pt": 1, }, - "value": 26, + "value": 27, }, { "category": "Pet", @@ -11565,7 +14275,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dog", "pt": 2, }, - "value": 184702070, + "value": 204327274, }, { "category": "Pet", @@ -11591,7 +14301,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chicken", "pt": 2, }, - "value": 9674301, + "value": 10254901, }, { "category": "Pet", @@ -11599,7 +14309,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Lamb", "sh": true, }, - "value": 437945, + "value": 472997, }, { "category": "Pet", @@ -11608,7 +14318,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 29, + "value": 30, }, { "category": "Pet", @@ -11626,7 +14336,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 16, + "value": 19, }, { "category": "Pet", @@ -11634,7 +14344,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Gleebo The Alien", "sh": true, }, - "value": 83, + "value": 84, }, { "category": "Pet", @@ -11651,7 +14361,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chicken", "pt": 1, }, - "value": 40407515, + "value": 43962133, }, { "category": "Pet", @@ -11659,7 +14369,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "White Bunny", "pt": 2, }, - "value": 15858957, + "value": 16739959, }, { "category": "Pet", @@ -11668,7 +14378,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 10, + "value": 20, }, { "category": "Pet", @@ -11693,7 +14403,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 26, + "value": 28, + }, + { + "category": "Charm", + "configData": { + "id": "Strength", + "tn": 1, + }, + "value": 240834644, }, { "category": "Pet", @@ -11709,7 +14427,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flamingo", "pt": 1, }, - "value": 20636742, + "value": 26149407, }, { "category": "Pet", @@ -11734,7 +14452,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Turtle", "pt": 1, }, - "value": 17644880, + "value": 19956945, }, { "category": "Pet", @@ -11761,14 +14479,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 9, + "value": 10, }, { "category": "Pet", "configData": { "id": "Cow", }, - "value": 803525396, + "value": 889981487, }, { "category": "Pet", @@ -11776,7 +14494,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cow", "pt": 1, }, - "value": 84155699, + "value": 97250650, }, { "category": "Pet", @@ -11793,7 +14511,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fox", "pt": 1, }, - "value": 16452014, + "value": 19502934, }, { "category": "Pet", @@ -11810,21 +14528,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Froggy", "pt": 2, }, - "value": 3655581, + "value": 3973598, }, { "category": "Pet", "configData": { "id": "Seal", }, - "value": 490851042, + "value": 566712128, }, { "category": "Pet", "configData": { "id": "Pufferfish", }, - "value": 51019631, + "value": 60683983, }, { "category": "Pet", @@ -11832,14 +14550,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jellyfish", "pt": 1, }, - "value": 9746087, + "value": 10473575, }, { "category": "Pet", "configData": { "id": "Griffin", }, - "value": 129691023, + "value": 153780790, }, { "category": "Pet", @@ -11847,21 +14565,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Seal", "pt": 1, }, - "value": 41962823, + "value": 45980904, }, { "category": "Pet", "configData": { "id": "Kraken", }, - "value": 317028047, + "value": 361200145, }, { "category": "Pet", "configData": { "id": "Goldfish", }, - "value": 239063630, + "value": 276741298, }, { "category": "Pet", @@ -11869,14 +14587,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mantis Shrimp", "pt": 1, }, - "value": 8954345, + "value": 9987907, }, { "category": "Pet", "configData": { "id": "Black Bear", }, - "value": 212891921, + "value": 251508303, }, { "category": "Pet", @@ -11884,7 +14602,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Kraken", "pt": 1, }, - "value": 34398858, + "value": 37428097, }, { "category": "Pet", @@ -11892,7 +14610,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jellyfish", "pt": 2, }, - "value": 3493035, + "value": 3653152, }, { "category": "Pet", @@ -11900,7 +14618,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Goldfish", "pt": 2, }, - "value": 9487358, + "value": 9936625, }, { "category": "Pet", @@ -11908,28 +14626,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Goldfish", "pt": 1, }, - "value": 26329245, + "value": 29398534, }, { "category": "Pet", "configData": { "id": "Mantis Shrimp", }, - "value": 57521719, + "value": 67313081, }, { "category": "Pet", "configData": { "id": "Dolphin", }, - "value": 184890771, + "value": 218324306, }, { "category": "Pet", "configData": { "id": "Jellyfish", }, - "value": 100792747, + "value": 118335766, }, { "category": "Pet", @@ -11946,7 +14664,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Turtle", "sh": true, }, - "value": 393806, + "value": 429181, + }, + { + "category": "Enchant", + "configData": { + "id": "Midas Touch", + "tn": 1, + }, + "value": 288736550, }, { "category": "Pet", @@ -11954,7 +14680,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Scarecrow Cat", "sh": true, }, - "value": 568678, + "value": 625006, }, { "category": "Pet", @@ -11962,7 +14688,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Platypus", "pt": 1, }, - "value": 39783552, + "value": 46961163, }, { "category": "Pet", @@ -11970,7 +14696,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Firefly", "pt": 1, }, - "value": 13466140, + "value": 14924030, }, { "category": "Pet", @@ -11978,7 +14704,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ugly Duckling", "pt": 2, }, - "value": 10409288, + "value": 11241421, }, { "category": "Pet", @@ -11986,7 +14712,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hedgehog", "pt": 2, }, - "value": 4227229, + "value": 4544334, }, { "category": "Pet", @@ -11994,7 +14720,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flamingo", "pt": 2, }, - "value": 4940877, + "value": 5796149, }, { "category": "Pet", @@ -12011,7 +14737,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13965, + "value": 15972, }, { "category": "Pet", @@ -12019,7 +14745,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hedgehog", "pt": 1, }, - "value": 11430068, + "value": 13753946, }, { "category": "Pet", @@ -12027,7 +14753,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Platypus", "sh": true, }, - "value": 702523, + "value": 790891, }, { "category": "Pet", @@ -12035,7 +14761,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chicken", "sh": true, }, - "value": 891386, + "value": 943442, }, { "category": "Pet", @@ -12044,7 +14770,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 10879, + "value": 11858, }, { "category": "Pet", @@ -12070,7 +14796,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 45, + "value": 55, }, { "category": "Pet", @@ -12087,7 +14813,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fox", "sh": true, }, - "value": 260430, + "value": 282446, }, { "category": "Pet", @@ -12095,7 +14821,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cow", "pt": 2, }, - "value": 16324773, + "value": 18102525, }, { "category": "Pet", @@ -12104,7 +14830,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12, + "value": 13, }, { "category": "Pet", @@ -12112,7 +14838,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Umbrella Dog", "pt": 1, }, - "value": 30303249, + "value": 37291795, }, { "category": "Pet", @@ -12120,7 +14846,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dragon", "pt": 2, }, - "value": 4042436, + "value": 4460140, }, { "category": "Pet", @@ -12128,7 +14854,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Platypus", "pt": 2, }, - "value": 12459270, + "value": 13353990, }, { "category": "Pet", @@ -12136,7 +14862,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "White Bunny", "sh": true, }, - "value": 1473795, + "value": 1561493, }, { "category": "Pet", @@ -12144,7 +14870,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ladybug", "sh": true, }, - "value": 444652, + "value": 496387, }, { "category": "Pet", @@ -12152,7 +14878,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Umbrella Dog", "pt": 2, }, - "value": 9753892, + "value": 10896551, }, { "category": "Pet", @@ -12160,7 +14886,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fox", "pt": 2, }, - "value": 5527278, + "value": 5917859, }, { "category": "Pet", @@ -12180,13 +14906,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 4, }, + { + "category": "Hoverboard", + "configData": { + "id": "Rainbow", + }, + "value": 70570, + }, + { + "category": "Enchant", + "configData": { + "id": "Fortune", + "tn": 1, + }, + "value": 147312617, + }, { "category": "Pet", "configData": { "id": "Exquisite Parrot", "pt": 2, }, - "value": 641, + "value": 766, }, { "category": "Pet", @@ -12195,7 +14936,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 50, + "value": 74, }, { "category": "Pet", @@ -12203,7 +14944,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Raccoon", "sh": true, }, - "value": 318673, + "value": 344918, }, { "category": "Pet", @@ -12211,7 +14952,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dragon", "pt": 1, }, - "value": 11049859, + "value": 13171727, }, { "category": "Pet", @@ -12220,7 +14961,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 25, + "value": 26, }, { "category": "Pet", @@ -12229,7 +14970,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 11, + "value": 12, }, { "category": "Pet", @@ -12237,7 +14978,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ladybug", "pt": 2, }, - "value": 8345957, + "value": 9240864, }, { "category": "Pet", @@ -12298,7 +15039,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Llama", "sh": true, }, - "value": 137866, + "value": 151823, }, { "category": "Pet", @@ -12317,13 +15058,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 12, }, + { + "category": "Charm", + "configData": { + "id": "Royalty", + "tn": 1, + }, + "value": 5241803, + }, { "category": "Pet", "configData": { "id": "Firefly", "pt": 2, }, - "value": 4506561, + "value": 4749940, }, { "category": "Pet", @@ -12331,7 +15080,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Lamb", "pt": 2, }, - "value": 8128553, + "value": 8540111, }, { "category": "Pet", @@ -12348,7 +15097,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 112, + "value": 147, }, { "category": "Pet", @@ -12411,7 +15160,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 48, + "value": 53, }, { "category": "Pet", @@ -12455,7 +15204,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Neon Twilight Tiger", "sh": true, }, - "value": 17, + "value": 16, }, { "category": "Pet", @@ -12464,7 +15213,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 52996, + "value": 65841, }, { "category": "Pet", @@ -12472,14 +15221,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Turtle", "pt": 1, }, - "value": 622, + "value": 677, }, { "category": "Pet", "configData": { "id": "Whale Shark", }, - "value": 131145173, + "value": 143849707, }, { "category": "Pet", @@ -12487,21 +15236,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shark", "pt": 2, }, - "value": 5999741, + "value": 6471451, }, { "category": "Pet", "configData": { "id": "Shark", }, - "value": 164001215, + "value": 191385572, }, { "category": "Pet", "configData": { "id": "Moray Eel", }, - "value": 395075989, + "value": 431931015, }, { "category": "Pet", @@ -12509,7 +15258,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Moray Eel", "pt": 1, }, - "value": 32192389, + "value": 34414109, }, { "category": "Pet", @@ -12517,14 +15266,22 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Moray Eel", "pt": 2, }, - "value": 8904080, + "value": 9115238, }, { "category": "Pet", "configData": { "id": "Umbrella Cat", }, - "value": 226181616, + "value": 264786232, + }, + { + "category": "Potion", + "configData": { + "id": "Damage", + "tn": 6, + }, + "value": 17697507788, }, { "category": "Pet", @@ -12533,7 +15290,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 2, + "value": 3, }, { "category": "Pet", @@ -12541,7 +15298,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Firefly", "sh": true, }, - "value": 256582, + "value": 285795, }, { "category": "Pet", @@ -12549,7 +15306,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Froggy", "sh": true, }, - "value": 201847, + "value": 238519, }, { "category": "Pet", @@ -12557,7 +15314,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Umbrella Cat", "pt": 2, }, - "value": 6113347, + "value": 6747171, }, { "category": "Pet", @@ -12565,7 +15322,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Umbrella Cat", "pt": 1, }, - "value": 20953561, + "value": 25297373, }, { "category": "Pet", @@ -12573,7 +15330,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Black Bear", "pt": 1, }, - "value": 20984393, + "value": 23837469, }, { "category": "Pet", @@ -12581,7 +15338,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Black Bear", "pt": 2, }, - "value": 7475141, + "value": 7817087, }, { "category": "Pet", @@ -12589,14 +15346,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Griffin", "pt": 2, }, - "value": 4676753, + "value": 4904907, }, { "category": "Pet", "configData": { "id": "Guilded Raven", }, - "value": 144760010, + "value": 169256724, }, { "category": "Pet", @@ -12604,7 +15361,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Griffin", "pt": 1, }, - "value": 12757517, + "value": 14588872, }, { "category": "Pet", @@ -12612,7 +15369,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Green Cobra", "pt": 2, }, - "value": 4654784, + "value": 4848307, }, { "category": "Pet", @@ -12620,7 +15377,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bat", "pt": 1, }, - "value": 19711472, + "value": 21918237, }, { "category": "Pet", @@ -12628,14 +15385,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mining Dog", "pt": 2, }, - "value": 10059812, + "value": 10946126, }, { "category": "Pet", "configData": { "id": "Demolition Cat", }, - "value": 168989741, + "value": 192956879, }, { "category": "Pet", @@ -12652,7 +15409,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Demolition Cat", "pt": 1, }, - "value": 17765522, + "value": 20765240, }, { "category": "Pet", @@ -12660,7 +15417,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Demolition Cat", "pt": 2, }, - "value": 5820398, + "value": 6470327, }, { "category": "Pet", @@ -12668,7 +15425,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Happy Rock", "pt": 2, }, - "value": 4626501, + "value": 5108761, }, { "category": "Pet", @@ -12676,21 +15433,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Slime", "pt": 2, }, - "value": 5555761, + "value": 6064452, }, { "category": "Pet", "configData": { "id": "Sapphire Carbuncle", }, - "value": 219176218, + "value": 248997351, }, { "category": "Pet", "configData": { "id": "Emerald Carbuncle", }, - "value": 89073532, + "value": 102647846, }, { "category": "Pet", @@ -12698,7 +15455,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mining Dog", "sh": true, }, - "value": 744442, + "value": 859539, }, { "category": "Pet", @@ -12706,7 +15463,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Green Cobra", "pt": 1, }, - "value": 11888070, + "value": 13265798, }, { "category": "Pet", @@ -12723,7 +15480,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Griffin", "sh": true, }, - "value": 253238, + "value": 291801, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Bling", + }, + "value": 21422, }, { "category": "Pet", @@ -12731,7 +15495,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ugly Duckling", "sh": true, }, - "value": 517171, + "value": 599231, }, { "category": "Pet", @@ -12739,7 +15503,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bat", "pt": 2, }, - "value": 7451702, + "value": 7738046, }, { "category": "Pet", @@ -12747,7 +15511,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hedgehog", "sh": true, }, - "value": 174224, + "value": 189891, }, { "category": "Pet", @@ -12755,7 +15519,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Griffin", "pt": 2, }, - "value": 6977250, + "value": 8099687, }, { "category": "Pet", @@ -12763,7 +15527,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Slime", "pt": 1, }, - "value": 17912587, + "value": 21593326, }, { "category": "Pet", @@ -12790,7 +15554,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 17, + "value": 25, }, { "category": "Pet", @@ -12799,7 +15563,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 80067, + "value": 89371, }, { "category": "Pet", @@ -12807,7 +15571,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Umbrella Dog", "sh": true, }, - "value": 551602, + "value": 649069, + }, + { + "category": "Potion", + "configData": { + "id": "Coins", + "tn": 6, + }, + "value": 16737227624, }, { "category": "Pet", @@ -12816,7 +15588,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 38, + "value": 55, }, { "category": "Pet", @@ -12825,7 +15597,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 95, + "value": 126, }, { "category": "Pet", @@ -12833,7 +15605,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Willow Wisp", "pt": 1, }, - "value": 8739759, + "value": 10459813, }, { "category": "Pet", @@ -12841,7 +15613,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Enchanted Elephant", "pt": 2, }, - "value": 4155325, + "value": 4424108, }, { "category": "Pet", @@ -12849,28 +15621,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sandcastle Cat", "pt": 2, }, - "value": 29471863, + "value": 30642419, }, { "category": "Pet", "configData": { "id": "Sandcastle Dog", }, - "value": 238171695, + "value": 261768277, }, { "category": "Pet", "configData": { "id": "Fish in a Bucket", }, - "value": 172035078, + "value": 195972254, }, { "category": "Pet", "configData": { "id": "Sandcastle Cat", }, - "value": 762246634, + "value": 836134027, }, { "category": "Pet", @@ -12878,7 +15650,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sandcastle Cat", "pt": 1, }, - "value": 85956616, + "value": 94343499, }, { "category": "Pet", @@ -12895,7 +15667,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Guilded Raven", "pt": 2, }, - "value": 5293396, + "value": 5662219, }, { "category": "Pet", @@ -12903,7 +15675,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sapphire Carbuncle", "pt": 1, }, - "value": 20607082, + "value": 23591413, }, { "category": "Pet", @@ -12911,7 +15683,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Happy Rock", "sh": true, }, - "value": 314547, + "value": 362609, }, { "category": "Pet", @@ -12919,7 +15691,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyclops", "pt": 2, }, - "value": 5557530, + "value": 6074430, }, { "category": "Pet", @@ -12927,7 +15699,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cow", "sh": true, }, - "value": 1523190, + "value": 1717360, }, { "category": "Pet", @@ -12936,7 +15708,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 35451, + "value": 40129, }, { "category": "Pet", @@ -12945,7 +15717,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 88132, + "value": 105182, }, { "category": "Pet", @@ -12953,7 +15725,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Masked Owl", "pt": 2, }, - "value": 115, + "value": 158, }, { "category": "Pet", @@ -12961,7 +15733,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sapphire Carbuncle", "pt": 2, }, - "value": 6804245, + "value": 7422344, }, { "category": "Pet", @@ -12970,7 +15742,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 44, + "value": 61, }, { "category": "Pet", @@ -12979,7 +15751,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 249873, + "value": 290093, }, { "category": "Pet", @@ -13012,7 +15784,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Enchanted Cat", "pt": 2, }, - "value": 4100193, + "value": 4268590, }, { "category": "Pet", @@ -13020,7 +15792,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Enchanted Elephant", "pt": 1, }, - "value": 9954643, + "value": 11656999, }, { "category": "Pet", @@ -13028,7 +15800,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Slime", "sh": true, }, - "value": 419976, + "value": 452756, }, { "category": "Pet", @@ -13036,7 +15808,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Purple Cobra", "pt": 1, }, - "value": 21935745, + "value": 24369658, }, { "category": "Pet", @@ -13045,7 +15817,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 9, + "value": 10, + }, + { + "category": "Misc", + "configData": { + "id": "Crystal Key Upper Half", + }, + "value": 3190730272, }, { "category": "Pet", @@ -13053,7 +15832,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bat", "sh": true, }, - "value": 412436, + "value": 449106, }, { "category": "Pet", @@ -13062,7 +15841,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 18, + "value": 23, }, { "category": "Pet", @@ -13070,21 +15849,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Green Cobra", "sh": true, }, - "value": 253174, + "value": 275376, }, { "category": "Pet", "configData": { "id": "Bobcat", }, - "value": 200765936, + "value": 225917369, }, { "category": "Pet", "configData": { "id": "Peacock", }, - "value": 161044725, + "value": 191608348, }, { "category": "Pet", @@ -13092,7 +15871,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Peacock", "pt": 1, }, - "value": 14495052, + "value": 15946738, }, { "category": "Pet", @@ -13100,7 +15879,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bobcat", "pt": 1, }, - "value": 25103330, + "value": 29494887, }, { "category": "Pet", @@ -13108,7 +15887,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Butterfly", "pt": 2, }, - "value": 9706408, + "value": 10422030, }, { "category": "Pet", @@ -13116,7 +15895,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Enchanted Deer", "pt": 2, }, - "value": 4419661, + "value": 4698924, }, { "category": "Pet", @@ -13125,7 +15904,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 64125, + "value": 79281, }, { "category": "Pet", @@ -13133,7 +15912,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Emerald Carbuncle", "pt": 2, }, - "value": 4401601, + "value": 5145375, }, { "category": "Pet", @@ -13141,7 +15920,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Purple Cobra", "pt": 2, }, - "value": 6854919, + "value": 7213101, }, { "category": "Pet", @@ -13149,7 +15928,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Agony", "pt": 1, }, - "value": 8359505, + "value": 13105902, }, { "category": "Pet", @@ -13175,7 +15954,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 105, + "value": 121, }, { "category": "Pet", @@ -13183,21 +15962,35 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Enchanted Deer", "sh": true, }, - "value": 254631, + "value": 286312, }, { "category": "Pet", "configData": { "id": "Pirate Cat", }, - "value": 268308429, + "value": 297368121, }, { "category": "Pet", "configData": { "id": "Sailor Shark", }, - "value": 727409316, + "value": 797135190, + }, + { + "category": "Misc", + "configData": { + "id": "Castle Key", + }, + "value": 23648420, + }, + { + "category": "Misc", + "configData": { + "id": "TNT Crate", + }, + "value": 7068294830, }, { "category": "Pet", @@ -13205,7 +15998,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Emerald Carbuncle", "pt": 1, }, - "value": 12960803, + "value": 15948915, }, { "category": "Pet", @@ -13221,7 +16014,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Lion", }, - "value": 111658099, + "value": 125280162, }, { "category": "Pet", @@ -13229,14 +16022,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Guilded Raven", "pt": 1, }, - "value": 15047222, + "value": 17822620, }, { "category": "Pet", "configData": { "id": "Mystical Fox", }, - "value": 31445651, + "value": 34618292, }, { "category": "Pet", @@ -13244,7 +16037,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flamingo", "sh": true, }, - "value": 237978, + "value": 273338, }, { "category": "Pet", @@ -13252,7 +16045,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mushroom Raccoon", "sh": true, }, - "value": 437617, + "value": 493049, }, { "category": "Pet", @@ -13261,7 +16054,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 150388, + "value": 186741, }, { "category": "Pet", @@ -13270,28 +16063,35 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 22583, + "value": 24617, + }, + { + "category": "Misc", + "configData": { + "id": "Crystal Key Lower Half", + }, + "value": 5714757167, }, { "category": "Pet", "configData": { "id": "Sloth", }, - "value": 169518168, + "value": 189291033, }, { "category": "Pet", "configData": { "id": "Jaguar", }, - "value": 258149812, + "value": 281373487, }, { "category": "Pet", "configData": { "id": "Black Widow", }, - "value": 190466084, + "value": 222159821, }, { "category": "Pet", @@ -13299,7 +16099,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Lion", "pt": 2, }, - "value": 4102373, + "value": 4202162, }, { "category": "Pet", @@ -13307,7 +16107,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tech Chest Mimic", "pt": 1, }, - "value": 2048, + "value": 2785, }, { "category": "Pet", @@ -13315,7 +16115,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jaguar", "pt": 2, }, - "value": 15177090, + "value": 15734006, }, { "category": "Pet", @@ -13323,7 +16123,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Lion", "pt": 1, }, - "value": 10990026, + "value": 11871242, }, { "category": "Pet", @@ -13331,7 +16131,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hippo", "pt": 2, }, - "value": 3578175, + "value": 3773940, }, { "category": "Pet", @@ -13339,7 +16139,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Crocodile", "pt": 2, }, - "value": 12373815, + "value": 13173453, }, { "category": "Pet", @@ -13347,7 +16147,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hippo", "pt": 1, }, - "value": 9707286, + "value": 10672623, }, { "category": "Pet", @@ -13356,7 +16156,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 39579, + "value": 50277, }, { "category": "Pet", @@ -13364,7 +16164,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pixel Corgi", "pt": 1, }, - "value": 5704, + "value": 6723, }, { "category": "Pet", @@ -13372,7 +16172,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Black Widow", "pt": 2, }, - "value": 6232374, + "value": 6595562, }, { "category": "Pet", @@ -13389,7 +16189,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Black Bear", "sh": true, }, - "value": 416599, + "value": 479015, }, { "category": "Pet", @@ -13405,7 +16205,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sloth", "pt": 1, }, - "value": 16905610, + "value": 18175860, }, { "category": "Pet", @@ -13413,7 +16213,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sloth", "pt": 2, }, - "value": 6112560, + "value": 6258491, }, { "category": "Pet", @@ -13421,7 +16221,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Griffin", "sh": true, }, - "value": 320294, + "value": 350811, }, { "category": "Pet", @@ -13429,7 +16229,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Demolition Cat", "sh": true, }, - "value": 334592, + "value": 377706, }, { "category": "Pet", @@ -13437,7 +16237,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dragon", "sh": true, }, - "value": 134432, + "value": 147471, }, { "category": "Pet", @@ -13446,7 +16246,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 81115, + "value": 96741, }, { "category": "Pet", @@ -13455,7 +16255,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12527, + "value": 14794, }, { "category": "Pet", @@ -13464,7 +16264,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 36486, + "value": 42073, }, { "category": "Pet", @@ -13472,7 +16272,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Black Widow", "pt": 1, }, - "value": 18449962, + "value": 21411044, }, { "category": "Pet", @@ -13480,7 +16280,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Crocodile", "pt": 1, }, - "value": 31968172, + "value": 36977671, }, { "category": "Pet", @@ -13488,7 +16288,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bobcat", "pt": 2, }, - "value": 9710162, + "value": 10256132, }, { "category": "Pet", @@ -13496,7 +16296,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Willow Wisp", "sh": true, }, - "value": 108382, + "value": 117409, }, { "category": "Pet", @@ -13504,14 +16304,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Peacock", "pt": 2, }, - "value": 4452198, + "value": 4705966, }, { "category": "Pet", "configData": { "id": "Blue Fish", }, - "value": 281492279, + "value": 320072738, }, { "category": "Pet", @@ -13519,14 +16319,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Green Fish", "pt": 1, }, - "value": 13281488, + "value": 14755276, }, { "category": "Pet", "configData": { "id": "Green Fish", }, - "value": 145124558, + "value": 165495506, }, { "category": "Pet", @@ -13534,14 +16334,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blue Fish", "pt": 1, }, - "value": 25900416, + "value": 28384547, }, { "category": "Pet", "configData": { "id": "Axolotuus", }, - "value": 27664070, + "value": 30887897, }, { "category": "Pet", @@ -13549,14 +16349,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Kraken", "pt": 2, }, - "value": 11560484, + "value": 12254181, }, { "category": "Pet", "configData": { "id": "Hydra", }, - "value": 31735099, + "value": 36068799, }, { "category": "Pet", @@ -13564,7 +16364,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Goldfish", "sh": true, }, - "value": 482576, + "value": 546882, }, { "category": "Pet", @@ -13572,7 +16372,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Green Fish", "pt": 2, }, - "value": 4544456, + "value": 4672434, }, { "category": "Pet", @@ -13580,14 +16380,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hydra", "pt": 1, }, - "value": 6021074, + "value": 7008009, }, { "category": "Pet", "configData": { "id": "Stingray", }, - "value": 87816880, + "value": 100651332, }, { "category": "Pet", @@ -13595,7 +16395,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jaguar", "pt": 1, }, - "value": 38504732, + "value": 42771288, }, { "category": "Pet", @@ -13603,7 +16403,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Butterfly", "sh": true, }, - "value": 562986, + "value": 650195, }, { "category": "Pet", @@ -13611,7 +16411,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Enchanted Cat", "sh": true, }, - "value": 232890, + "value": 261591, }, { "category": "Pet", @@ -13619,7 +16419,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Seal", "pt": 2, }, - "value": 11075584, + "value": 11671982, }, { "category": "Pet", @@ -13627,7 +16427,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sapphire Carbuncle", "sh": true, }, - "value": 429790, + "value": 483113, }, { "category": "Pet", @@ -13635,7 +16435,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Peacock", "sh": true, }, - "value": 299999, + "value": 349923, }, { "category": "Pet", @@ -13643,7 +16443,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Agony", "sh": true, }, - "value": 116696, + "value": 127324, }, { "category": "Pet", @@ -13651,7 +16451,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Umbrella Cat", "sh": true, }, - "value": 426291, + "value": 501008, }, { "category": "Pet", @@ -13660,7 +16460,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12772, + "value": 13991, }, { "category": "Pet", @@ -13668,7 +16468,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dolphin", "pt": 2, }, - "value": 4714408, + "value": 5040967, }, { "category": "Pet", @@ -13676,7 +16476,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pufferfish", "pt": 2, }, - "value": 2772721, + "value": 3073734, }, { "category": "Pet", @@ -13684,7 +16484,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Seal", "sh": true, }, - "value": 898873, + "value": 1033186, }, { "category": "Pet", @@ -13693,7 +16493,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 30749, + "value": 65459, }, { "category": "Pet", @@ -13702,7 +16502,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 64183, + "value": 78062, }, { "category": "Pet", @@ -13710,7 +16510,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mantis Shrimp", "pt": 2, }, - "value": 3629129, + "value": 3954537, }, { "category": "Pet", @@ -13718,7 +16518,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Whale Shark", "pt": 2, }, - "value": 3555576, + "value": 3708289, }, { "category": "Pet", @@ -13726,7 +16526,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Whale Shark", "pt": 1, }, - "value": 11203713, + "value": 12141461, }, { "category": "Pet", @@ -13734,7 +16534,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Purple Cobra", "sh": true, }, - "value": 462870, + "value": 521332, }, { "category": "Pet", @@ -13743,7 +16543,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 29851, + "value": 37375, }, { "category": "Pet", @@ -13751,7 +16551,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Crocodile", "sh": true, }, - "value": 394699, + "value": 421311, }, { "category": "Pet", @@ -13759,7 +16559,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dolphin", "pt": 1, }, - "value": 16636037, + "value": 18754949, }, { "category": "Pet", @@ -13768,7 +16568,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 103123, + "value": 121794, }, { "category": "Pet", @@ -13776,7 +16576,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyclops", "sh": true, }, - "value": 419850, + "value": 452530, }, { "category": "Pet", @@ -13785,7 +16585,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 2, + "value": 3, }, { "category": "Pet", @@ -13794,7 +16594,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 15, + "value": 16, }, { "category": "Pet", @@ -13803,7 +16603,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 20852, + "value": 38299, }, { "category": "Pet", @@ -13811,7 +16611,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pufferfish", "pt": 1, }, - "value": 8039577, + "value": 9819617, }, { "category": "Pet", @@ -13828,7 +16628,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stingray", "pt": 1, }, - "value": 10067455, + "value": 11215394, }, { "category": "Pet", @@ -13836,7 +16636,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blue Fish", "pt": 2, }, - "value": 8423938, + "value": 8631791, + }, + { + "category": "Booth", + "configData": { + "id": "Maskot", + }, + "value": 2846489, + }, + { + "category": "Booth", + "configData": { + "id": "Pls Donate", + }, + "value": 9390917, + }, + { + "category": "Booth", + "configData": { + "id": "Fire", + }, + "value": 137, }, { "category": "Pet", @@ -13844,7 +16665,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jaguar", "sh": true, }, - "value": 617732, + "value": 660367, }, { "category": "Pet", @@ -13852,7 +16673,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Axolotuus", "pt": 1, }, - "value": 5049535, + "value": 6026087, }, { "category": "Pet", @@ -13861,7 +16682,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 20716, + "value": 78335, }, { "category": "Pet", @@ -13869,7 +16690,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Axolotuus", "pt": 2, }, - "value": 2091432, + "value": 2235484, + }, + { + "category": "Enchant", + "configData": { + "id": "Tap Teamwork", + "tn": 1, + }, + "value": 2441260625, }, { "category": "Pet", @@ -13877,7 +16706,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stingray", "pt": 2, }, - "value": 3777794, + "value": 4105841, }, { "category": "Pet", @@ -13885,7 +16714,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hydra", "pt": 2, }, - "value": 2511846, + "value": 2844980, }, { "category": "Pet", @@ -13894,7 +16723,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 40289, + "value": 46292, }, { "category": "Pet", @@ -13902,14 +16731,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sloth", "sh": true, }, - "value": 339786, + "value": 370089, }, { "category": "Pet", "configData": { "id": "Chimpanzee", }, - "value": 101837862, + "value": 113018565, }, { "category": "Pet", @@ -13918,7 +16747,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 28746, + "value": 31396, }, { "category": "Pet", @@ -13926,7 +16755,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Emerald Carbuncle", "sh": true, }, - "value": 188431, + "value": 215863, }, { "category": "Pet", @@ -13935,7 +16764,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 20831, + "value": 24705, }, { "category": "Pet", @@ -13943,7 +16772,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Kraken", "sh": true, }, - "value": 633139, + "value": 709731, + }, + { + "category": "Misc", + "configData": { + "id": "Snorkel", + }, + "value": 14008984, }, { "category": "Pet", @@ -13951,7 +16787,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Lion", "sh": true, }, - "value": 224504, + "value": 243600, }, { "category": "Pet", @@ -13959,14 +16795,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Enchanted Elephant", "sh": true, }, - "value": 173516, + "value": 193368, }, { "category": "Pet", "configData": { "id": "Gorilla", }, - "value": 290212178, + "value": 323630838, }, { "category": "Pet", @@ -13974,7 +16810,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gorilla", "pt": 2, }, - "value": 7134878, + "value": 7409092, }, { "category": "Pet", @@ -13982,7 +16818,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Quokka", "pt": 2, }, - "value": 7349386, + "value": 7717624, }, { "category": "Pet", @@ -13990,14 +16826,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Quokka", "pt": 1, }, - "value": 17277111, + "value": 20004655, }, { "category": "Pet", "configData": { "id": "Rhino", }, - "value": 304543699, + "value": 356349271, }, { "category": "Pet", @@ -14005,14 +16841,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gorilla", "pt": 1, }, - "value": 24542096, + "value": 26480318, }, { "category": "Pet", "configData": { "id": "Quokka", }, - "value": 127614851, + "value": 144200149, }, { "category": "Pet", @@ -14030,7 +16866,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 9714, + "value": 20381, }, { "category": "Pet", @@ -14038,7 +16874,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hippo", "sh": true, }, - "value": 199783, + "value": 216528, }, { "category": "Pet", @@ -14049,13 +16885,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 8, }, + { + "category": "Potion", + "configData": { + "id": "Treasure Hunter", + "tn": 4, + }, + "value": 10080196311, + }, { "category": "Pet", "configData": { "id": "Pufferfish", "sh": true, }, - "value": 106211, + "value": 122532, }, { "category": "Pet", @@ -14063,7 +16907,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mystical Fox", "pt": 2, }, - "value": 2622335, + "value": 2903678, }, { "category": "Pet", @@ -14071,14 +16915,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Green Fish", "sh": true, }, - "value": 281257, + "value": 313400, }, { "category": "Pet", "configData": { "id": "Midnight Axolotl", }, - "value": 44394100, + "value": 51883066, }, { "category": "Pet", @@ -14086,14 +16930,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flower Gecko", "pt": 1, }, - "value": 37293450, + "value": 39962567, }, { "category": "Pet", "configData": { "id": "Flower Gecko", }, - "value": 429751716, + "value": 507616104, }, { "category": "Pet", @@ -14101,7 +16945,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flower Gecko", "pt": 2, }, - "value": 9909807, + "value": 10493685, }, { "category": "Pet", @@ -14109,7 +16953,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shark", "pt": 1, }, - "value": 17840457, + "value": 19995100, }, { "category": "Pet", @@ -14153,7 +16997,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Guilded Raven", "sh": true, }, - "value": 289920, + "value": 328490, }, { "category": "Pet", @@ -14162,7 +17006,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 57178, + "value": 66774, }, { "category": "Pet", @@ -14171,14 +17015,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 22142, + "value": 25463, }, { "category": "Pet", "configData": { "id": "Panther", }, - "value": 68416833, + "value": 75762218, }, { "category": "Pet", @@ -14186,7 +17030,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stingray", "sh": true, }, - "value": 181139, + "value": 201460, }, { "category": "Pet", @@ -14194,14 +17038,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Lemur", "pt": 1, }, - "value": 78122793, + "value": 84520753, }, { "category": "Pet", "configData": { "id": "Lemur", }, - "value": 642870800, + "value": 698163797, }, { "category": "Pet", @@ -14219,7 +17063,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 20266, + "value": 21710, }, { "category": "Pet", @@ -14227,7 +17071,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mystical Fox", "pt": 1, }, - "value": 6112936, + "value": 7597559, }, { "category": "Pet", @@ -14235,7 +17079,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Panther", "pt": 1, }, - "value": 9663016, + "value": 12376415, }, { "category": "Pet", @@ -14243,7 +17087,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chimpanzee", "pt": 2, }, - "value": 4490328, + "value": 4625003, }, { "category": "Pet", @@ -14251,7 +17095,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jellyfish", "sh": true, }, - "value": 196401, + "value": 224707, }, { "category": "Pet", @@ -14259,7 +17103,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Empyrean Agony", "pt": 1, }, - "value": 2093, + "value": 2632, }, { "category": "Pet", @@ -14267,7 +17111,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bobcat", "sh": true, }, - "value": 434508, + "value": 476229, }, { "category": "Pet", @@ -14275,7 +17119,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pixel Dragon", "pt": 1, }, - "value": 1007, + "value": 1295, }, { "category": "Pet", @@ -14283,7 +17127,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fish in a Bucket", "pt": 2, }, - "value": 10790178, + "value": 11853982, }, { "category": "Pet", @@ -14291,14 +17135,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chimpanzee", "pt": 1, }, - "value": 10888747, + "value": 12891738, }, { "category": "Pet", "configData": { "id": "Spitting Dino", }, - "value": 588372851, + "value": 675989026, }, { "category": "Pet", @@ -14306,21 +17150,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Spitting Dino", "pt": 1, }, - "value": 194096582, + "value": 234052434, }, { "category": "Pet", "configData": { "id": "Dino", }, - "value": 4865310514, + "value": 5271755046, }, { "category": "Pet", "configData": { "id": "Fossil Dragon", }, - "value": 48801450, + "value": 56989053, }, { "category": "Pet", @@ -14328,7 +17172,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hyena", "pt": 2, }, - "value": 88868206, + "value": 102833970, }, { "category": "Pet", @@ -14336,14 +17180,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dino", "pt": 1, }, - "value": 680086181, + "value": 761341905, }, { "category": "Pet", "configData": { "id": "Hyena", }, - "value": 1425980533, + "value": 1597720878, }, { "category": "Pet", @@ -14351,7 +17195,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Midnight Axolotl", "pt": 2, }, - "value": 2569299, + "value": 2873926, }, { "category": "Pet", @@ -14359,7 +17203,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hyena", "pt": 1, }, - "value": 321471503, + "value": 385814372, }, { "category": "Pet", @@ -14367,7 +17211,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dino", "pt": 2, }, - "value": 194837473, + "value": 214114387, }, { "category": "Pet", @@ -14376,7 +17220,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 7, + "value": 10, }, { "category": "Pet", @@ -14385,7 +17229,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12896, + "value": 14393, }, { "category": "Pet", @@ -14394,7 +17238,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 34517, + "value": 41775, }, { "category": "Pet", @@ -14403,7 +17247,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 35616, + "value": 46296, }, { "category": "Pet", @@ -14412,7 +17256,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 39281, + "value": 46521, }, { "category": "Pet", @@ -14421,7 +17265,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 43431, + "value": 49327, }, { "category": "Pet", @@ -14430,14 +17274,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 24204, + "value": 28882, }, { "category": "Pet", "configData": { "id": "King Cobra", }, - "value": 5062785, + "value": 5472917, }, { "category": "Pet", @@ -14445,7 +17289,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blue Fish", "sh": true, }, - "value": 544000, + "value": 606679, }, { "category": "Pet", @@ -14453,7 +17297,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pirate Cat", "pt": 1, }, - "value": 39003380, + "value": 45133885, }, { "category": "Pet", @@ -14461,7 +17305,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sandcastle Dog", "pt": 1, }, - "value": 33845576, + "value": 38571539, }, { "category": "Pet", @@ -14469,14 +17313,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sailor Dolphin", "pt": 1, }, - "value": 12573340, + "value": 14713762, }, { "category": "Pet", "configData": { "id": "Sailor Dolphin", }, - "value": 57766328, + "value": 62883220, }, { "category": "Pet", @@ -14484,7 +17328,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sandcastle Dog", "pt": 2, }, - "value": 11843430, + "value": 12555745, }, { "category": "Pet", @@ -14492,14 +17336,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sailor Shark", "pt": 2, }, - "value": 28869033, + "value": 30132760, }, { "category": "Pet", "configData": { "id": "Tiki Dominus", }, - "value": 4828481, + "value": 5368866, }, { "category": "Pet", @@ -14507,7 +17351,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hydra Axolotl", "pt": 1, }, - "value": 938835, + "value": 1059901, }, { "category": "Pet", @@ -14515,7 +17359,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sailor Shark", "pt": 1, }, - "value": 81641534, + "value": 88885719, }, { "category": "Pet", @@ -14523,7 +17367,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gecko", "sh": true, }, - "value": 378419, + "value": 409872, }, { "category": "Pet", @@ -14540,7 +17384,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Moray Eel", "sh": true, }, - "value": 716832, + "value": 773604, }, { "category": "Pet", @@ -14548,7 +17392,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Panther", "pt": 2, }, - "value": 4101014, + "value": 4358720, + }, + { + "category": "Booth", + "configData": { + "id": "Default", + }, + "value": 11452711, }, { "category": "Pet", @@ -14557,7 +17408,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 30733, + "value": 65190, }, { "category": "Pet", @@ -14565,7 +17416,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flower Gecko", "sh": true, }, - "value": 791110, + "value": 922599, }, { "category": "Pet", @@ -14574,7 +17425,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 24249, + "value": 27603, }, { "category": "Pet", @@ -14582,7 +17433,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Lemur", "pt": 2, }, - "value": 30471935, + "value": 31020576, }, { "category": "Pet", @@ -14590,7 +17441,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Midnight Axolotl", "pt": 1, }, - "value": 6806048, + "value": 7943671, }, { "category": "Pet", @@ -14598,7 +17449,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pineapple Cat", "pt": 1, }, - "value": 6743715, + "value": 8626448, }, { "category": "Pet", @@ -14615,7 +17466,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 62158, + "value": 71846, }, { "category": "Pet", @@ -14623,7 +17474,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Lemur", "sh": true, }, - "value": 1481888, + "value": 1585564, }, { "category": "Pet", @@ -14631,7 +17482,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Celestial Dragon", "pt": 2, }, - "value": 137, + "value": 138, }, { "category": "Pet", @@ -14639,7 +17490,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shark", "sh": true, }, - "value": 321985, + "value": 365702, }, { "category": "Pet", @@ -14648,7 +17499,22 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 26039, + "value": 32731, + }, + { + "category": "Misc", + "configData": { + "id": "Wooden Fishing Rod", + }, + "value": 12632782, + }, + { + "category": "Potion", + "configData": { + "id": "The Cocktail", + "tn": 1, + }, + "value": 547788766, }, { "category": "Pet", @@ -14656,7 +17522,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mantis Shrimp", "sh": true, }, - "value": 127713, + "value": 144878, }, { "category": "Pet", @@ -14664,7 +17530,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Puma", "pt": 2, }, - "value": 11368595, + "value": 11916882, }, { "category": "Pet", @@ -14672,7 +17538,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Scorpion", "pt": 1, }, - "value": 40373192, + "value": 45158643, }, { "category": "Pet", @@ -14680,7 +17546,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Scorpion", "pt": 2, }, - "value": 14885317, + "value": 15632821, }, { "category": "Pet", @@ -14688,7 +17554,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fish in a Bucket", "pt": 1, }, - "value": 30165376, + "value": 35949835, }, { "category": "Pet", @@ -14696,21 +17562,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Desert Ram", "pt": 1, }, - "value": 8674814, + "value": 9874723, }, { "category": "Pet", "configData": { "id": "Puma", }, - "value": 288842941, + "value": 333754559, }, { "category": "Pet", "configData": { "id": "Desert Ram", }, - "value": 79850566, + "value": 93486524, }, { "category": "Pet", @@ -14718,21 +17584,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Desert Ram", "pt": 2, }, - "value": 3738916, + "value": 3912561, }, { "category": "Pet", "configData": { "id": "Honey Badger", }, - "value": 20219678, + "value": 23172160, }, { "category": "Pet", "configData": { "id": "Scorpion", }, - "value": 336722163, + "value": 387909625, }, { "category": "Pet", @@ -14740,7 +17606,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Black Widow", "sh": true, }, - "value": 374907, + "value": 425008, }, { "category": "Pet", @@ -14749,7 +17615,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 24242, + "value": 25750, }, { "category": "Pet", @@ -14757,7 +17623,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Axolotuus", "sh": true, }, - "value": 64800, + "value": 70569, }, { "category": "Pet", @@ -14766,14 +17632,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 63869, + "value": 71514, }, { "category": "Pet", "configData": { "id": "Armadillo", }, - "value": 71465905, + "value": 83880669, }, { "category": "Pet", @@ -14781,14 +17647,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rhino", "pt": 2, }, - "value": 11488213, + "value": 11940785, }, { "category": "Pet", "configData": { "id": "Kangaroo", }, - "value": 21404568, + "value": 24677498, }, { "category": "Pet", @@ -14796,7 +17662,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiki Dominus", "pt": 2, }, - "value": 426803, + "value": 468661, }, { "category": "Pet", @@ -14804,7 +17670,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Armadillo", "pt": 1, }, - "value": 9158377, + "value": 11044793, }, { "category": "Pet", @@ -14812,7 +17678,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rhino", "pt": 1, }, - "value": 30939196, + "value": 34745215, }, { "category": "Pet", @@ -14821,7 +17687,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 36604, + "value": 40984, }, { "category": "Pet", @@ -14830,7 +17696,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 28007, + "value": 30995, }, { "category": "Pet", @@ -14838,7 +17704,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Whale Shark", "sh": true, }, - "value": 241472, + "value": 260604, }, { "category": "Pet", @@ -14846,14 +17712,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mermaid Cat", "pt": 2, }, - "value": 10238335, + "value": 10559520, }, { "category": "Pet", "configData": { "id": "Giraffe", }, - "value": 262389285, + "value": 293887989, }, { "category": "Pet", @@ -14861,7 +17727,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Zebra", "pt": 2, }, - "value": 3170393, + "value": 3345572, }, { "category": "Pet", @@ -14869,7 +17735,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Giraffe", "pt": 2, }, - "value": 7935379, + "value": 8214345, }, { "category": "Pet", @@ -14877,7 +17743,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Zebra", "pt": 1, }, - "value": 8759657, + "value": 9704567, }, { "category": "Pet", @@ -14885,7 +17751,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "African Wild Dog", "pt": 2, }, - "value": 4461852, + "value": 4848723, }, { "category": "Pet", @@ -14893,28 +17759,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Giraffe", "pt": 1, }, - "value": 25358708, + "value": 27149382, }, { "category": "Pet", "configData": { "id": "Cheetah", }, - "value": 12442581, + "value": 13951499, }, { "category": "Pet", "configData": { "id": "Zebra", }, - "value": 71427386, + "value": 80527685, }, { "category": "Pet", "configData": { "id": "African Wild Dog", }, - "value": 65609043, + "value": 74354427, }, { "category": "Pet", @@ -14923,7 +17789,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 23, + "value": 26, }, { "category": "Pet", @@ -14931,7 +17797,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pirate Cat", "pt": 2, }, - "value": 16608082, + "value": 17744307, }, { "category": "Pet", @@ -14939,14 +17805,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hydra", "sh": true, }, - "value": 76575, + "value": 83448, }, { "category": "Pet", "configData": { "id": "Pineapple Cat", }, - "value": 39439560, + "value": 48585410, }, { "category": "Pet", @@ -14955,14 +17821,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 24116, + "value": 27876, }, { "category": "Pet", "configData": { "id": "Hydra Axolotl", }, - "value": 4290906, + "value": 4678427, }, { "category": "Pet", @@ -14970,7 +17836,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sailor Dolphin", "pt": 2, }, - "value": 4891132, + "value": 5285942, }, { "category": "Pet", @@ -14978,7 +17844,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dolphin", "sh": true, }, - "value": 341188, + "value": 399762, + }, + { + "category": "Misc", + "configData": { + "id": "Large Gift Bag", + }, + "value": 7171462588, }, { "category": "Pet", @@ -14986,7 +17859,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Puma", "pt": 1, }, - "value": 29596539, + "value": 32393879, }, { "category": "Pet", @@ -14994,7 +17867,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fossil Dragon", "pt": 2, }, - "value": 4327383, + "value": 5190909, }, { "category": "Pet", @@ -15002,7 +17875,23 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Honey Badger", "pt": 1, }, - "value": 3128638, + "value": 3760960, + }, + { + "category": "Potion", + "configData": { + "id": "Lucky", + "tn": 6, + }, + "value": 15703642966, + }, + { + "category": "Potion", + "configData": { + "id": "Treasure Hunter", + "tn": 6, + }, + "value": 647376322295, }, { "category": "Pet", @@ -15010,14 +17899,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bison", "pt": 2, }, - "value": 1605571, + "value": 1708065, }, { "category": "Pet", "configData": { "id": "Goat", }, - "value": 90715154, + "value": 101049264, }, { "category": "Pet", @@ -15025,21 +17914,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Goat", "pt": 2, }, - "value": 4174108, + "value": 4390795, }, { "category": "Pet", "configData": { "id": "Bison", }, - "value": 23339972, + "value": 26139038, }, { "category": "Pet", "configData": { "id": "Bull", }, - "value": 447855162, + "value": 494757546, }, { "category": "Pet", @@ -15047,7 +17936,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bison", "pt": 1, }, - "value": 4129556, + "value": 4668204, }, { "category": "Pet", @@ -15055,7 +17944,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bull", "pt": 2, }, - "value": 13415764, + "value": 13924227, }, { "category": "Pet", @@ -15063,7 +17952,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bull", "pt": 1, }, - "value": 45096747, + "value": 48022924, }, { "category": "Pet", @@ -15071,14 +17960,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Desert Cat", "pt": 2, }, - "value": 26334942, + "value": 27179729, }, { "category": "Pet", "configData": { "id": "Sphinx", }, - "value": 3368049, + "value": 3757795, }, { "category": "Pet", @@ -15086,7 +17975,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Camel", "pt": 1, }, - "value": 28622223, + "value": 32551017, }, { "category": "Pet", @@ -15094,7 +17983,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sphinx", "pt": 1, }, - "value": 726056, + "value": 824796, }, { "category": "Pet", @@ -15102,7 +17991,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Camel", "pt": 2, }, - "value": 10309508, + "value": 10938607, }, { "category": "Pet", @@ -15110,21 +17999,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Desert Cat", "pt": 1, }, - "value": 79211871, + "value": 85484074, }, { "category": "Pet", "configData": { "id": "Camel", }, - "value": 187971581, + "value": 208311640, }, { "category": "Pet", "configData": { "id": "Desert Cat", }, - "value": 737961371, + "value": 809201378, }, { "category": "Pet", @@ -15132,7 +18021,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "King Cobra", "pt": 1, }, - "value": 1264201, + "value": 1414367, }, { "category": "Pet", @@ -15140,7 +18029,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "African Wild Dog", "pt": 1, }, - "value": 10885822, + "value": 12447129, + }, + { + "category": "Misc", + "configData": { + "id": "Flimsy Shovel", + }, + "value": 12087182, + }, + { + "category": "Misc", + "configData": { + "id": "Sturdy Fishing Rod", + }, + "value": 8417845, }, { "category": "Pet", @@ -15148,7 +18051,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gorilla", "sh": true, }, - "value": 521876, + "value": 579854, }, { "category": "Pet", @@ -15156,14 +18059,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mermaid Cat", "pt": 1, }, - "value": 28711315, + "value": 30874909, }, { "category": "Pet", "configData": { "id": "Poseidon Corgi", }, - "value": 30589905, + "value": 33766484, }, { "category": "Pet", @@ -15172,7 +18075,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 56756, + "value": 71530, }, { "category": "Pet", @@ -15181,7 +18084,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 19044, + "value": 21746, }, { "category": "Pet", @@ -15190,7 +18093,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 35559, + "value": 40771, }, { "category": "Pet", @@ -15198,7 +18101,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gazelle", "pt": 1, }, - "value": 24473275, + "value": 27222108, }, { "category": "Pet", @@ -15206,21 +18109,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sandcastle Cat", "sh": true, }, - "value": 1625054, + "value": 1765365, }, { "category": "Pet", "configData": { "id": "Poseidon Dog", }, - "value": 103227606, + "value": 112813404, }, { "category": "Pet", "configData": { "id": "Mermaid Cat", }, - "value": 267202917, + "value": 291332010, }, { "category": "Pet", @@ -15228,7 +18131,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Poseidon Dog", "pt": 1, }, - "value": 12168877, + "value": 13372165, }, { "category": "Pet", @@ -15236,14 +18139,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Horse", "pt": 2, }, - "value": 3566394, + "value": 3801421, }, { "category": "Pet", "configData": { "id": "Cowboy Dog", }, - "value": 19251518, + "value": 22124057, }, { "category": "Pet", @@ -15251,7 +18154,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cowboy Dog", "pt": 1, }, - "value": 2976651, + "value": 3462603, }, { "category": "Pet", @@ -15259,14 +18162,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Horse", "pt": 1, }, - "value": 7731571, + "value": 8734370, }, { "category": "Pet", "configData": { "id": "Horse", }, - "value": 62780658, + "value": 72849990, }, { "category": "Pet", @@ -15274,7 +18177,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cowboy Dog", "pt": 2, }, - "value": 1548131, + "value": 1665451, + }, + { + "category": "Enchant", + "configData": { + "id": "Exotic Pet", + "tn": 1, + }, + "value": 224514651, }, { "category": "Pet", @@ -15282,14 +18193,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Kangaroo", "pt": 2, }, - "value": 1758142, + "value": 1898780, }, { "category": "Pet", "configData": { "id": "Moose", }, - "value": 135531535, + "value": 150058752, }, { "category": "Pet", @@ -15297,21 +18208,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Snow Ram", "pt": 2, }, - "value": 13372674, + "value": 13992961, }, { "category": "Pet", "configData": { "id": "Deer", }, - "value": 557266962, + "value": 616599083, }, { "category": "Pet", "configData": { "id": "Snow Ram", }, - "value": 359025879, + "value": 405984524, }, { "category": "Pet", @@ -15319,7 +18230,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Deer", "pt": 2, }, - "value": 21259347, + "value": 21897473, }, { "category": "Pet", @@ -15327,7 +18238,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Spitting Dino", "pt": 2, }, - "value": 52543847, + "value": 63004620, + }, + { + "category": "Misc", + "configData": { + "id": "Old Boot", + }, + "value": 688295036, }, { "category": "Pet", @@ -15336,7 +18254,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 25360, + "value": 29245, }, { "category": "Pet", @@ -15345,7 +18263,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 18225, + "value": 19340, }, { "category": "Pet", @@ -15363,7 +18281,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 23, + "value": 25, }, { "category": "Pet", @@ -15372,7 +18290,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 34, + "value": 38, }, { "category": "Pet", @@ -15380,7 +18298,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pineapple Cat", "pt": 2, }, - "value": 2640829, + "value": 3078503, }, { "category": "Pet", @@ -15389,7 +18307,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 34484, + "value": 39755, }, { "category": "Pet", @@ -15398,7 +18316,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 22030, + "value": 23526, }, { "category": "Pet", @@ -15406,7 +18324,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Armadillo", "pt": 2, }, - "value": 3896812, + "value": 4121358, }, { "category": "Pet", @@ -15414,7 +18332,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Kangaroo", "pt": 1, }, - "value": 3838236, + "value": 4754192, }, { "category": "Pet", @@ -15423,7 +18341,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 17408, + "value": 18467, }, { "category": "Pet", @@ -15431,7 +18349,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Midnight Axolotl", "sh": true, }, - "value": 95978, + "value": 107718, }, { "category": "Pet", @@ -15439,7 +18357,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fish in a Bucket", "sh": true, }, - "value": 390821, + "value": 437763, }, { "category": "Pet", @@ -15447,7 +18365,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fossil Dragon", "pt": 1, }, - "value": 16091173, + "value": 19843891, }, { "category": "Pet", @@ -15456,7 +18374,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 197074, + "value": 222487, }, { "category": "Pet", @@ -15464,7 +18382,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiki Dominus", "pt": 1, }, - "value": 1136756, + "value": 1354334, }, { "category": "Pet", @@ -15472,7 +18390,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Puma", "sh": true, }, - "value": 579664, + "value": 667488, }, { "category": "Pet", @@ -15480,7 +18398,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Goat", "pt": 1, }, - "value": 12052107, + "value": 13306038, }, { "category": "Pet", @@ -15496,21 +18414,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Luau Seal", }, - "value": 104005579, + "value": 122878184, }, { "category": "Pet", "configData": { "id": "Puffin", }, - "value": 124336338, + "value": 142300249, }, { "category": "Pet", "configData": { "id": "Narwhal", }, - "value": 42596649, + "value": 48394892, }, { "category": "Pet", @@ -15518,7 +18436,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Narwhal", "pt": 2, }, - "value": 3011441, + "value": 3313146, }, { "category": "Pet", @@ -15526,14 +18444,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Narwhal", "pt": 1, }, - "value": 6540883, + "value": 8061210, }, { "category": "Pet", "configData": { "id": "Snow Squirrel", }, - "value": 241651639, + "value": 274517663, }, { "category": "Pet", @@ -15541,7 +18459,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Snow Squirrel", "pt": 1, }, - "value": 22634483, + "value": 24806483, }, { "category": "Pet", @@ -15549,7 +18467,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Snow Squirrel", "pt": 2, }, - "value": 7454869, + "value": 7797265, }, { "category": "Pet", @@ -15557,14 +18475,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Luau Seal", "sh": true, }, - "value": 216375, + "value": 249994, }, { "category": "Pet", "configData": { "id": "Luau Cat", }, - "value": 335395473, + "value": 387504525, }, { "category": "Pet", @@ -15572,7 +18490,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Poseidon Dog", "pt": 2, }, - "value": 4430761, + "value": 4624505, }, { "category": "Pet", @@ -15580,7 +18498,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Poseidon Corgi", "pt": 1, }, - "value": 6407686, + "value": 7443584, }, { "category": "Pet", @@ -15589,7 +18507,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 31845, + "value": 35167, }, { "category": "Pet", @@ -15597,7 +18515,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Snow Leopard", "pt": 2, }, - "value": 1841084, + "value": 1984243, }, { "category": "Pet", @@ -15605,7 +18523,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Snow Cat", "pt": 1, }, - "value": 10422898, + "value": 11965859, }, { "category": "Pet", @@ -15613,21 +18531,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Snow Ram", "pt": 1, }, - "value": 37563916, + "value": 41153755, }, { "category": "Pet", "configData": { "id": "Snow Leopard", }, - "value": 26578614, + "value": 29923869, }, { "category": "Pet", "configData": { "id": "Snow Cat", }, - "value": 81632518, + "value": 92665063, }, { "category": "Pet", @@ -15635,7 +18553,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Snow Dog", "pt": 1, }, - "value": 10692788, + "value": 11844812, }, { "category": "Pet", @@ -15643,14 +18561,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Snow Leopard", "pt": 1, }, - "value": 4055222, + "value": 4744434, }, { "category": "Pet", "configData": { "id": "Snow Dog", }, - "value": 107093889, + "value": 122573010, }, { "category": "Pet", @@ -15658,7 +18576,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Snow Cat", "pt": 2, }, - "value": 4288319, + "value": 4563580, }, { "category": "Pet", @@ -15666,14 +18584,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Penguin", "pt": 1, }, - "value": 47268478, + "value": 50586193, }, { "category": "Pet", "configData": { "id": "Snowman", }, - "value": 387654793, + "value": 431002328, }, { "category": "Pet", @@ -15681,35 +18599,35 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Penguin", "pt": 2, }, - "value": 12807108, + "value": 13287169, }, { "category": "Pet", "configData": { "id": "Frost Dragon", }, - "value": 81832279, + "value": 95104868, }, { "category": "Pet", "configData": { "id": "Arctic Fox", }, - "value": 74980313, + "value": 84949426, }, { "category": "Pet", "configData": { "id": "Bearserker", }, - "value": 53380934, + "value": 60407664, }, { "category": "Pet", "configData": { "id": "Penguin", }, - "value": 541205257, + "value": 606728081, }, { "category": "Pet", @@ -15717,7 +18635,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bearserker", "pt": 1, }, - "value": 8335994, + "value": 9481508, }, { "category": "Pet", @@ -15725,7 +18643,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Luau Cat", "pt": 2, }, - "value": 11050085, + "value": 11797014, }, { "category": "Pet", @@ -15734,7 +18652,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 22967, + "value": 27921, + }, + { + "category": "Misc", + "configData": { + "id": "Rainbow Swirl", + }, + "value": 369868736, }, { "category": "Pet", @@ -15743,7 +18668,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 33910, + "value": 42364, }, { "category": "Pet", @@ -15759,7 +18684,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Moose", "pt": 1, }, - "value": 19059475, + "value": 21300691, }, { "category": "Pet", @@ -15767,7 +18692,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Deer", "pt": 1, }, - "value": 57265336, + "value": 60846591, }, { "category": "Pet", @@ -15775,7 +18700,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Puffin", "pt": 1, }, - "value": 11437909, + "value": 12596983, }, { "category": "Pet", @@ -15783,7 +18708,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Puffin", "pt": 2, }, - "value": 3925117, + "value": 4135210, }, { "category": "Pet", @@ -15791,14 +18716,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Moose", "pt": 2, }, - "value": 8195160, + "value": 8654309, }, { "category": "Pet", "configData": { "id": "Fawn", }, - "value": 3820444, + "value": 4233107, }, { "category": "Pet", @@ -15813,7 +18738,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Pirate Parrot", }, - "value": 20707301, + "value": 23696620, }, { "category": "Pet", @@ -15821,7 +18746,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Honey Badger", "pt": 2, }, - "value": 1638212, + "value": 1742891, }, { "category": "Pet", @@ -15829,7 +18754,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Scorpion", "sh": true, }, - "value": 695124, + "value": 794216, }, { "category": "Pet", @@ -15837,7 +18762,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Desert Cat", "sh": true, }, - "value": 1499305, + "value": 1646705, }, { "category": "Pet", @@ -15846,7 +18771,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 25510, + "value": 30672, }, { "category": "Pet", @@ -15855,7 +18780,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13163, + "value": 14094, }, { "category": "Pet", @@ -15863,7 +18788,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sailor Shark", "sh": true, }, - "value": 1525424, + "value": 1656544, }, { "category": "Pet", @@ -15871,7 +18796,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Quokka", "sh": true, }, - "value": 276351, + "value": 302611, }, { "category": "Pet", @@ -15879,7 +18804,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Luau Seal", "pt": 2, }, - "value": 4278001, + "value": 4732507, }, { "category": "Pet", @@ -15888,7 +18813,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 23027, + "value": 26493, }, { "category": "Pet", @@ -15897,7 +18822,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 77909, + "value": 82346, }, { "category": "Pet", @@ -15905,7 +18830,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sphinx", "pt": 2, }, - "value": 291154, + "value": 317837, + }, + { + "category": "Misc", + "configData": { + "id": "Crystal Key", + }, + "value": 4164335995, + }, + { + "category": "Misc", + "configData": { + "id": "Normal Shovel", + }, + "value": 8462751, }, { "category": "Pet", @@ -15913,7 +18852,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Snow Dog", "pt": 2, }, - "value": 3859992, + "value": 4043660, }, { "category": "Pet", @@ -15921,7 +18860,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Snow Cat", "sh": true, }, - "value": 176217, + "value": 197225, + }, + { + "category": "Misc", + "configData": { + "id": "Advanced Fishing Rod", + }, + "value": 4474504, }, { "category": "Pet", @@ -15929,7 +18875,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cheetah", "pt": 1, }, - "value": 2486875, + "value": 2933985, }, { "category": "Pet", @@ -15937,7 +18883,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Turtle in a Bucket", "pt": 2, }, - "value": 9374394, + "value": 10102052, }, { "category": "Pet", @@ -15945,7 +18891,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Horse", "sh": true, }, - "value": 137482, + "value": 157086, }, { "category": "Pet", @@ -15953,7 +18899,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Stealth Bobcat", "sh": true, }, - "value": 389, + "value": 525, }, { "category": "Pet", @@ -15961,7 +18907,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Luau Cat", "pt": 1, }, - "value": 31203023, + "value": 35431604, }, { "category": "Pet", @@ -15969,14 +18915,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Luau Seal", "pt": 1, }, - "value": 11436418, + "value": 13732274, + }, + { + "category": "Misc", + "configData": { + "id": "Pet Signature", + }, + "value": 153075, }, { "category": "Pet", "configData": { "id": "Hell Rock", }, - "value": 130372183, + "value": 146903368, }, { "category": "Pet", @@ -15984,7 +18937,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hell Rock", "pt": 2, }, - "value": 3246508, + "value": 3376737, }, { "category": "Pet", @@ -15992,7 +18945,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Walrus", "sh": true, }, - "value": 570768, + "value": 666004, }, { "category": "Pet", @@ -16000,14 +18953,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frost Dragon", "pt": 2, }, - "value": 4243982, + "value": 4547261, }, { "category": "Pet", "configData": { "id": "Sabretooth Tiger", }, - "value": 334117181, + "value": 374442726, }, { "category": "Pet", @@ -16015,14 +18968,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cheerful Yeti", "pt": 1, }, - "value": 20055757, + "value": 22741379, }, { "category": "Pet", "configData": { "id": "Three Headed Dragon", }, - "value": 460394996, + "value": 525496998, }, { "category": "Pet", @@ -16030,7 +18983,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Three Headed Dragon", "pt": 1, }, - "value": 45924835, + "value": 50059822, }, { "category": "Pet", @@ -16038,14 +18991,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sabretooth Tiger", "pt": 2, }, - "value": 12782578, + "value": 13736428, }, { "category": "Pet", "configData": { "id": "Walrus", }, - "value": 311511262, + "value": 362297737, }, { "category": "Pet", @@ -16053,7 +19006,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Walrus", "pt": 1, }, - "value": 28769304, + "value": 31478367, }, { "category": "Pet", @@ -16061,14 +19014,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sabretooth Tiger", "pt": 1, }, - "value": 40471051, + "value": 44499982, }, { "category": "Pet", "configData": { "id": "Phoenix", }, - "value": 75125904, + "value": 91276241, }, { "category": "Pet", @@ -16076,7 +19029,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Walrus", "pt": 2, }, - "value": 8386604, + "value": 8871527, }, { "category": "Pet", @@ -16084,7 +19037,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Snowman", "pt": 2, }, - "value": 17369957, + "value": 20077115, }, { "category": "Pet", @@ -16092,28 +19045,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Snowman", "pt": 1, }, - "value": 52456022, + "value": 65543790, }, { "category": "Pet", "configData": { "id": "Husky", }, - "value": 179926123, + "value": 202535359, }, { "category": "Pet", "configData": { "id": "Cheerful Yeti", }, - "value": 92790548, + "value": 103739757, }, { "category": "Pet", "configData": { "id": "Polar Bear", }, - "value": 3739615, + "value": 4206607, }, { "category": "Pet", @@ -16121,14 +19074,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Giraffe", "sh": true, }, - "value": 493437, + "value": 548195, }, { "category": "Pet", "configData": { "id": "Pirate Panda", }, - "value": 45577149, + "value": 52453336, }, { "category": "Pet", @@ -16136,7 +19089,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cheetah", "pt": 2, }, - "value": 1215051, + "value": 1290458, }, { "category": "Pet", @@ -16144,7 +19097,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Husky", "pt": 2, }, - "value": 8195440, + "value": 8534934, }, { "category": "Pet", @@ -16152,7 +19105,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Husky", "pt": 1, }, - "value": 24429175, + "value": 26858904, }, { "category": "Pet", @@ -16160,7 +19113,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Narwhal", "sh": true, }, - "value": 95444, + "value": 105175, }, { "category": "Pet", @@ -16168,7 +19121,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frost Dragon", "pt": 1, }, - "value": 11156786, + "value": 13131229, }, { "category": "Pet", @@ -16176,7 +19129,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hydra Axolotl", "pt": 2, }, - "value": 387584, + "value": 422597, }, { "category": "Pet", @@ -16185,7 +19138,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 649122, + "value": 775377, }, { "category": "Pet", @@ -16194,7 +19147,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 61384, + "value": 73492, }, { "category": "Pet", @@ -16203,7 +19156,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 20640, + "value": 23028, }, { "category": "Pet", @@ -16211,7 +19164,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Turtle in a Bucket", "pt": 1, }, - "value": 26453254, + "value": 30224775, + }, + { + "category": "Misc", + "configData": { + "id": "Bluesteel Shovel", + }, + "value": 5837741, }, { "category": "Pet", @@ -16219,7 +19179,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pirate Parrot", "pt": 1, }, - "value": 3661597, + "value": 4366045, }, { "category": "Pet", @@ -16227,7 +19187,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "African Wild Dog", "sh": true, }, - "value": 148600, + "value": 164268, }, { "category": "Pet", @@ -16236,7 +19196,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 42371, + "value": 46489, }, { "category": "Pet", @@ -16244,7 +19204,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dino", "sh": true, }, - "value": 10379982, + "value": 11522287, }, { "category": "Pet", @@ -16252,7 +19212,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Spitting Dino", "sh": true, }, - "value": 1559718, + "value": 1878558, }, { "category": "Pet", @@ -16260,7 +19220,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pirate Panda", "pt": 1, }, - "value": 6574637, + "value": 7644882, }, { "category": "Pet", @@ -16269,7 +19229,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 183912, + "value": 205574, }, { "category": "Pet", @@ -16277,14 +19237,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chimpanzee", "sh": true, }, - "value": 219497, + "value": 235545, }, { "category": "Pet", "configData": { "id": "Turtle in a Bucket", }, - "value": 284921663, + "value": 332793682, }, { "category": "Pet", @@ -16293,7 +19253,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 9341, + "value": 10206, }, { "category": "Pet", @@ -16302,7 +19262,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 21066, + "value": 24536, }, { "category": "Pet", @@ -16310,7 +19270,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Poseidon Corgi", "pt": 2, }, - "value": 2434378, + "value": 2641119, }, { "category": "Pet", @@ -16318,7 +19278,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mermaid Cat", "sh": true, }, - "value": 554010, + "value": 591815, }, { "category": "Pet", @@ -16326,7 +19286,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pirate Panda", "pt": 2, }, - "value": 3327758, + "value": 3715629, }, { "category": "Pet", @@ -16342,28 +19302,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Hellish Axolotl", }, - "value": 6161780, + "value": 6662448, }, { "category": "Pet", "configData": { "id": "Flamortuus", }, - "value": 1083387010, + "value": 1135261679, }, { "category": "Pet", "configData": { "id": "Fire Dog", }, - "value": 436588761, + "value": 469564127, }, { "category": "Pet", "configData": { "id": "Fire Cat", }, - "value": 843275610, + "value": 903090497, }, { "category": "Pet", @@ -16371,7 +19331,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fire Horse", "pt": 2, }, - "value": 11581141, + "value": 12983230, }, { "category": "Pet", @@ -16379,7 +19339,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fire Dog", "pt": 1, }, - "value": 51130246, + "value": 56638413, }, { "category": "Pet", @@ -16387,7 +19347,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flamortuus", "pt": 2, }, - "value": 32731165, + "value": 33938518, }, { "category": "Pet", @@ -16395,7 +19355,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fire Cat", "pt": 2, }, - "value": 26150985, + "value": 27336956, }, { "category": "Pet", @@ -16403,14 +19363,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Demon", "pt": 1, }, - "value": 9506992, + "value": 11025656, }, { "category": "Pet", "configData": { "id": "Demon", }, - "value": 43773885, + "value": 47204785, }, { "category": "Pet", @@ -16418,14 +19378,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flamortuus", "pt": 1, }, - "value": 121084574, + "value": 127188859, }, { "category": "Pet", "configData": { "id": "Fire Horse", }, - "value": 167083038, + "value": 183429474, }, { "category": "Pet", @@ -16433,7 +19393,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sandcastle Dog", "sh": true, }, - "value": 531649, + "value": 575061, }, { "category": "Pet", @@ -16441,7 +19401,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Camel", "sh": true, }, - "value": 418976, + "value": 457626, }, { "category": "Pet", @@ -16450,7 +19410,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 10986, + "value": 12690, }, { "category": "Pet", @@ -16458,7 +19418,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Penguin", "sh": true, }, - "value": 999426, + "value": 1129378, }, { "category": "Pet", @@ -16466,7 +19426,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bearserker", "pt": 2, }, - "value": 3018852, + "value": 3201483, }, { "category": "Pet", @@ -16474,7 +19434,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Arctic Fox", "pt": 1, }, - "value": 11125261, + "value": 12690573, }, { "category": "Pet", @@ -16482,7 +19442,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Arctic Fox", "pt": 2, }, - "value": 4008545, + "value": 4242267, }, { "category": "Pet", @@ -16490,7 +19450,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Phoenix", "pt": 2, }, - "value": 4181644, + "value": 4582904, }, { "category": "Pet", @@ -16498,7 +19458,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hell Rock", "pt": 1, }, - "value": 12036725, + "value": 13088405, }, { "category": "Pet", @@ -16506,7 +19466,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Three Headed Dragon", "pt": 2, }, - "value": 11649750, + "value": 12447907, }, { "category": "Pet", @@ -16514,7 +19474,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Phoenix", "pt": 1, }, - "value": 11581997, + "value": 13748957, }, { "category": "Pet", @@ -16530,7 +19490,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Lava Slime", }, - "value": 393123830, + "value": 439690694, }, { "category": "Pet", @@ -16538,14 +19498,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ice Slime", "pt": 2, }, - "value": 8385132, + "value": 8889309, }, { "category": "Pet", "configData": { "id": "Ice Slime", }, - "value": 205058029, + "value": 230511572, }, { "category": "Pet", @@ -16553,7 +19513,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sabretooth Tiger", "sh": true, }, - "value": 671224, + "value": 754752, }, { "category": "Pet", @@ -16561,14 +19521,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Lava Slime", "pt": 1, }, - "value": 42582662, + "value": 45533253, }, { "category": "Pet", "configData": { "id": "Angry Yeti", }, - "value": 80722531, + "value": 90473990, }, { "category": "Pet", @@ -16577,7 +19537,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8508, + "value": 10134, }, { "category": "Pet", @@ -16585,7 +19545,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pirate Cat", "sh": true, }, - "value": 623973, + "value": 688837, }, { "category": "Pet", @@ -16594,7 +19554,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 49288, + "value": 55855, }, { "category": "Pet", @@ -16602,7 +19562,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Kangaroo", "sh": true, }, - "value": 51649, + "value": 56968, }, { "category": "Pet", @@ -16610,7 +19570,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hyena", "sh": true, }, - "value": 3393238, + "value": 3908906, }, { "category": "Pet", @@ -16618,7 +19578,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rhino", "sh": true, }, - "value": 597526, + "value": 694147, }, { "category": "Pet", @@ -16627,14 +19587,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 26018, + "value": 28534, }, { "category": "Pet", "configData": { "id": "Gazelle", }, - "value": 208938578, + "value": 236408914, }, { "category": "Pet", @@ -16643,7 +19603,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 52359, + "value": 60610, }, { "category": "Pet", @@ -16652,7 +19612,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 65607, + "value": 71437, }, { "category": "Pet", @@ -16660,7 +19620,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bearserker", "sh": true, }, - "value": 113934, + "value": 125885, }, { "category": "Pet", @@ -16668,7 +19628,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "King Cobra", "pt": 2, }, - "value": 503718, + "value": 534248, }, { "category": "Pet", @@ -16677,7 +19637,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 53421, + "value": 61131, }, { "category": "Pet", @@ -16685,7 +19645,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cheerful Yeti", "pt": 2, }, - "value": 7710640, + "value": 8253819, }, { "category": "Pet", @@ -16693,14 +19653,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Snowman", "sh": true, }, - "value": 796397, + "value": 887888, }, { "category": "Pet", "configData": { "id": "Huge Propeller Cat", }, - "value": 32477, + "value": 42481, }, { "category": "Pet", @@ -16709,14 +19669,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 37499, + "value": 42987, }, { "category": "Pet", "configData": { "id": "Dino Cat", }, - "value": 342115, + "value": 399936, }, { "category": "Pet", @@ -16724,7 +19684,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hell Rock", "sh": true, }, - "value": 240672, + "value": 272083, }, { "category": "Pet", @@ -16732,7 +19692,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Deer", "sh": true, }, - "value": 1130034, + "value": 1242111, }, { "category": "Pet", @@ -16740,7 +19700,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Moose", "sh": true, }, - "value": 308157, + "value": 334775, }, { "category": "Pet", @@ -16748,7 +19708,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Zebra", "sh": true, }, - "value": 143742, + "value": 159778, }, { "category": "Pet", @@ -16756,7 +19716,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bull", "sh": true, }, - "value": 846294, + "value": 935174, }, { "category": "Pet", @@ -16764,7 +19724,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Desert Ram", "sh": true, }, - "value": 165266, + "value": 188328, }, { "category": "Pet", @@ -16773,7 +19733,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1955722, + "value": 2352745, }, { "category": "Pet", @@ -16782,7 +19742,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 30609, + "value": 33846, }, { "category": "Pet", @@ -16790,7 +19750,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gazelle", "sh": true, }, - "value": 469451, + "value": 521385, }, { "category": "Pet", @@ -16798,7 +19758,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gazelle", "pt": 2, }, - "value": 12010013, + "value": 12242373, }, { "category": "Pet", @@ -16807,7 +19767,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 105635, + "value": 119685, }, { "category": "Pet", @@ -16815,14 +19775,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Three Headed Dragon", "sh": true, }, - "value": 829790, + "value": 968289, }, { "category": "Pet", "configData": { "id": "Hell Spider", }, - "value": 220849734, + "value": 246700701, }, { "category": "Pet", @@ -16830,7 +19790,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hell Spider", "pt": 2, }, - "value": 9812290, + "value": 10349760, }, { "category": "Pet", @@ -16839,7 +19799,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 69445, + "value": 76196, }, { "category": "Pet", @@ -16847,7 +19807,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Turtle in a Bucket", "sh": true, }, - "value": 540119, + "value": 631742, }, { "category": "Pet", @@ -16855,7 +19815,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Snow Squirrel", "sh": true, }, - "value": 448505, + "value": 510205, + }, + { + "category": "Booth", + "configData": { + "id": "Glitched", + }, + "value": 7738, + }, + { + "category": "Booth", + "configData": { + "id": "Neon Twilight", + }, + "value": 3759, }, { "category": "Pet", @@ -16863,7 +19837,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fire Cat", "pt": 1, }, - "value": 94773493, + "value": 104224970, }, { "category": "Pet", @@ -16871,7 +19845,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fire Dog", "pt": 2, }, - "value": 14203415, + "value": 14985003, }, { "category": "Pet", @@ -16879,7 +19853,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fawn", "pt": 1, }, - "value": 663039, + "value": 752881, }, { "category": "Pet", @@ -16887,7 +19861,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Armadillo", "sh": true, }, - "value": 153042, + "value": 174350, }, { "category": "Pet", @@ -16896,7 +19870,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12263, + "value": 13413, }, { "category": "Pet", @@ -16904,7 +19878,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angry Yeti", "pt": 1, }, - "value": 17096038, + "value": 19352260, }, { "category": "Pet", @@ -16913,7 +19887,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 33291, + "value": 35084, }, { "category": "Pet", @@ -16922,7 +19896,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 18517, + "value": 19657, }, { "category": "Pet", @@ -16930,7 +19904,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Snow Ram", "sh": true, }, - "value": 716812, + "value": 808064, }, { "category": "Pet", @@ -16956,7 +19930,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ice Slime", "pt": 1, }, - "value": 22938736, + "value": 24686913, }, { "category": "Pet", @@ -16964,7 +19938,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angry Yeti", "pt": 2, }, - "value": 6624449, + "value": 7356067, }, { "category": "Pet", @@ -16972,7 +19946,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Lava Slime", "pt": 2, }, - "value": 15351075, + "value": 16180310, }, { "category": "Pet", @@ -16980,7 +19954,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Goat", "sh": true, }, - "value": 185969, + "value": 203824, }, { "category": "Pet", @@ -16989,7 +19963,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 62208, + "value": 65667, }, { "category": "Pet", @@ -16998,7 +19972,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 25781, + "value": 29185, }, { "category": "Pet", @@ -17007,7 +19981,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 35272, + "value": 40357, }, { "category": "Pet", @@ -17015,7 +19989,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Polar Bear", "pt": 1, }, - "value": 849869, + "value": 971214, }, { "category": "Pet", @@ -17023,7 +19997,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Puffin", "sh": true, }, - "value": 231969, + "value": 263631, }, { "category": "Pet", @@ -17031,7 +20005,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hellish Axolotl", "pt": 1, }, - "value": 1762221, + "value": 1935711, }, { "category": "Pet", @@ -17039,7 +20013,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Demon", "pt": 2, }, - "value": 4270156, + "value": 4587086, }, { "category": "Pet", @@ -17047,7 +20021,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Panther", "sh": true, }, - "value": 156526, + "value": 167643, }, { "category": "Pet", @@ -17064,7 +20038,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hell Spider", "pt": 1, }, - "value": 28076673, + "value": 31624645, }, { "category": "Pet", @@ -17073,7 +20047,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 11687, + "value": 12517, }, { "category": "Pet", @@ -17082,7 +20056,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1162409, + "value": 1482713, }, { "category": "Pet", @@ -17091,7 +20065,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 63696, + "value": 67394, }, { "category": "Pet", @@ -17100,7 +20074,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 33736, + "value": 37122, }, { "category": "Pet", @@ -17109,7 +20083,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 38608, + "value": 43458, }, { "category": "Pet", @@ -17118,7 +20092,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 18426, + "value": 19593, }, { "category": "Pet", @@ -17127,7 +20101,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 37343, + "value": 41169, }, { "category": "Pet", @@ -17136,7 +20110,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 48951, + "value": 57647, }, { "category": "Pet", @@ -17145,14 +20119,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 53920, + "value": 59381, }, { "category": "Pet", "configData": { "id": "Hell Chick", }, - "value": 771574465, + "value": 852865095, }, { "category": "Pet", @@ -17160,7 +20134,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mortuus", "pt": 1, }, - "value": 23240604, + "value": 26684143, }, { "category": "Pet", @@ -17168,7 +20142,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mortuus", "pt": 2, }, - "value": 8721254, + "value": 9244282, }, { "category": "Pet", @@ -17176,14 +20150,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hell Chick", "pt": 1, }, - "value": 74558151, + "value": 79987413, }, { "category": "Pet", "configData": { "id": "Mortuus", }, - "value": 140313343, + "value": 155679182, }, { "category": "Pet", @@ -17191,7 +20165,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hell Chick", "pt": 2, }, - "value": 22720414, + "value": 23327544, }, { "category": "Pet", @@ -17200,7 +20174,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 89897, + "value": 95202, }, { "category": "Pet", @@ -17209,7 +20183,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 70275, + "value": 94526, }, { "category": "Pet", @@ -17217,14 +20191,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Turtle", "sh": true, }, - "value": 131, + "value": 138, }, { "category": "Pet", "configData": { "id": "Icemortuus", }, - "value": 2718028, + "value": 3056758, }, { "category": "Pet", @@ -17232,14 +20206,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Lava Slime", "sh": true, }, - "value": 805298, + "value": 897087, }, { "category": "Pet", "configData": { "id": "Hound of Hades", }, - "value": 5629297, + "value": 6383060, }, { "category": "Pet", @@ -17247,7 +20221,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hell Chick", "sh": true, }, - "value": 1492229, + "value": 1651135, }, { "category": "Pet", @@ -17255,7 +20229,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fire Horse", "pt": 1, }, - "value": 41629902, + "value": 49947862, }, { "category": "Pet", @@ -17264,7 +20238,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 21478, + "value": 23071, }, { "category": "Pet", @@ -17272,7 +20246,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fawn", "sh": true, }, - "value": 9381, + "value": 10057, }, { "category": "Pet", @@ -17280,7 +20254,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hydra Axolotl", "sh": true, }, - "value": 10358, + "value": 10936, }, { "category": "Pet", @@ -17288,7 +20262,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frost Dragon", "sh": true, }, - "value": 170857, + "value": 194696, }, { "category": "Pet", @@ -17296,7 +20270,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tiki Dominus", "sh": true, }, - "value": 11641, + "value": 12543, }, { "category": "Pet", @@ -17313,7 +20287,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Luau Cat", "sh": true, }, - "value": 684646, + "value": 781596, }, { "category": "Pet", @@ -17322,14 +20296,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 11350, + "value": 12259, }, { "category": "Pet", "configData": { "id": "Wyvern of Hades", }, - "value": 2565647, + "value": 2833818, }, { "category": "Pet", @@ -17337,7 +20311,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mortuus", "sh": true, }, - "value": 319110, + "value": 348359, + }, + { + "category": "Misc", + "configData": { + "id": "Sharp Shovel", + }, + "value": 3166252, }, { "category": "Pet", @@ -17346,7 +20327,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 18163, + "value": 23053, }, { "category": "Pet", @@ -17355,7 +20336,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 18771, + "value": 21207, }, { "category": "Pet", @@ -17363,7 +20344,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Husky", "sh": true, }, - "value": 371396, + "value": 414587, }, { "category": "Pet", @@ -17372,14 +20353,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 63461, + "value": 76817, }, { "category": "Pet", "configData": { "id": "Hell Bat", }, - "value": 373615343, + "value": 421172216, }, { "category": "Pet", @@ -17387,7 +20368,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hell Fox", "sh": true, }, - "value": 204573, + "value": 232119, }, { "category": "Pet", @@ -17395,7 +20376,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hell Bat", "pt": 1, }, - "value": 34079589, + "value": 36994933, }, { "category": "Pet", @@ -17403,7 +20384,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hell Fox", "pt": 1, }, - "value": 11176361, + "value": 12601762, }, { "category": "Pet", @@ -17411,7 +20392,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hell Fox", "pt": 2, }, - "value": 3978900, + "value": 4237315, }, { "category": "Pet", @@ -17419,14 +20400,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hell Bat", "pt": 2, }, - "value": 10129092, + "value": 10667761, }, { "category": "Pet", "configData": { "id": "Hell Fox", }, - "value": 109939668, + "value": 125338983, }, { "category": "Pet", @@ -17434,7 +20415,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cheerful Yeti", "sh": true, }, - "value": 228731, + "value": 249590, }, { "category": "Pet", @@ -17443,7 +20424,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 7901, + "value": 9662, }, { "category": "Pet", @@ -17452,7 +20433,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 82650, + "value": 94842, }, { "category": "Pet", @@ -17461,7 +20442,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 9983, + "value": 10793, }, { "category": "Pet", @@ -17469,7 +20450,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pirate Parrot", "pt": 2, }, - "value": 1887003, + "value": 2251646, }, { "category": "Pet", @@ -17478,7 +20459,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 32834, + "value": 35305, }, { "category": "Pet", @@ -17487,7 +20468,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 44941, + "value": 48839, }, { "category": "Pet", @@ -17495,7 +20476,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Icemortuus", "pt": 2, }, - "value": 254131, + "value": 281726, }, { "category": "Pet", @@ -17503,7 +20484,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sailor Dolphin", "sh": true, }, - "value": 148058, + "value": 156368, + }, + { + "category": "Booth", + "configData": { + "id": "Monkey", + }, + "value": 26650, + }, + { + "category": "Booth", + "configData": { + "id": "Cat", + }, + "value": 51440, }, { "category": "Pet", @@ -17511,7 +20506,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hound of Hades", "pt": 1, }, - "value": 939846, + "value": 1101726, }, { "category": "Pet", @@ -17519,7 +20514,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hell Spider", "sh": true, }, - "value": 459120, + "value": 506788, }, { "category": "Pet", @@ -17527,7 +20522,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Phoenix", "sh": true, }, - "value": 157969, + "value": 179752, }, { "category": "Pet", @@ -17536,7 +20531,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 16168, + "value": 20925, }, { "category": "Pet", @@ -17545,7 +20540,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 46021, + "value": 50919, }, { "category": "Pet", @@ -17553,7 +20548,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fawn", "pt": 2, }, - "value": 331664, + "value": 355102, }, { "category": "Pet", @@ -17562,7 +20557,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 9795, + "value": 12872, }, { "category": "Pet", @@ -17570,7 +20565,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Wyvern of Hades", "pt": 1, }, - "value": 896764, + "value": 989394, }, { "category": "Pet", @@ -17578,7 +20573,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hell Bat", "sh": true, }, - "value": 677847, + "value": 772047, }, { "category": "Pet", @@ -17587,7 +20582,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12628, + "value": 14158, }, { "category": "Pet", @@ -17596,7 +20591,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 11549, + "value": 12825, }, { "category": "Pet", @@ -17604,7 +20599,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flamortuus", "sh": true, }, - "value": 2096165, + "value": 2209415, }, { "category": "Pet", @@ -17613,7 +20608,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 18123, + "value": 19653, }, { "category": "Pet", @@ -17622,7 +20617,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 80573, + "value": 98944, }, { "category": "Pet", @@ -17630,7 +20625,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dino Cat", "pt": 1, }, - "value": 116817, + "value": 135326, }, { "category": "Pet", @@ -17639,7 +20634,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 160724, + "value": 178512, }, { "category": "Pet", @@ -17648,7 +20643,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 54570, + "value": 64149, }, { "category": "Pet", @@ -17656,7 +20651,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Bunny", "pt": 2, }, - "value": 16400768, + "value": 17291026, }, { "category": "Pet", @@ -17664,28 +20659,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Bunny", "pt": 1, }, - "value": 49911917, + "value": 54140099, }, { "category": "Pet", "configData": { "id": "Cyborg Dragon", }, - "value": 16850262, + "value": 20107170, }, { "category": "Pet", "configData": { "id": "Cyborg Bunny", }, - "value": 492172477, + "value": 563741359, }, { "category": "Pet", "configData": { "id": "Cyborg Panda", }, - "value": 152575278, + "value": 177708181, }, { "category": "Pet", @@ -17693,7 +20688,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Panda", "pt": 2, }, - "value": 6678515, + "value": 7104858, }, { "category": "Pet", @@ -17701,7 +20696,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Panda", "pt": 1, }, - "value": 17478560, + "value": 19702579, }, { "category": "Pet", @@ -17710,7 +20705,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 4909, + "value": 5723, }, { "category": "Pet", @@ -17718,7 +20713,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Snow Leopard", "sh": true, }, - "value": 62107, + "value": 68717, }, { "category": "Pet", @@ -17726,21 +20721,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ninja Turtle", "pt": 2, }, - "value": 842541905, + "value": 842463444, }, { "category": "Pet", "configData": { "id": "Ninja Turtle", }, - "value": 48559600223, + "value": 48598415179, }, { "category": "Pet", "configData": { "id": "Ninja Maskot", }, - "value": 9484675046, + "value": 9502642732, }, { "category": "Pet", @@ -17748,7 +20743,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ninja Turtle", "pt": 1, }, - "value": 5102387011, + "value": 5109792156, }, { "category": "Pet", @@ -17757,7 +20752,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 68449, + "value": 80215, }, { "category": "Pet", @@ -17765,7 +20760,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ice Slime", "sh": true, }, - "value": 422579, + "value": 469388, }, { "category": "Pet", @@ -17773,7 +20768,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fire Cat", "sh": true, }, - "value": 1668991, + "value": 1792731, }, { "category": "Pet", @@ -17781,7 +20776,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Snow Dog", "sh": true, }, - "value": 211704, + "value": 239430, + }, + { + "category": "Booth", + "configData": { + "id": "Axolotl", + }, + "value": 14769, }, { "category": "Pet", @@ -17789,7 +20791,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Dragon", "pt": 1, }, - "value": 3093246, + "value": 3626443, }, { "category": "Pet", @@ -17798,7 +20800,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 10, + "value": 17, }, { "category": "Pet", @@ -17807,7 +20809,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 11324, + "value": 12917, }, { "category": "Pet", @@ -17816,7 +20818,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 11107, + "value": 12543, }, { "category": "Pet", @@ -17825,7 +20827,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 35659, + "value": 38244, }, { "category": "Pet", @@ -17833,7 +20835,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Turtle", "pt": 2, }, - "value": 134, + "value": 144, }, { "category": "Pet", @@ -17850,7 +20852,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mystical Fox", "sh": true, }, - "value": 78588, + "value": 83595, }, { "category": "Pet", @@ -17859,7 +20861,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 88701, + "value": 94905, }, { "category": "Pet", @@ -17867,7 +20869,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Honey Badger", "sh": true, }, - "value": 48825, + "value": 53385, }, { "category": "Pet", @@ -17875,7 +20877,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cowboy Dog", "sh": true, }, - "value": 47117, + "value": 53045, }, { "category": "Pet", @@ -17884,7 +20886,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 61677, + "value": 64585, }, { "category": "Pet", @@ -17892,7 +20894,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Dragon", "pt": 2, }, - "value": 2244552, + "value": 2337765, }, { "category": "Pet", @@ -17918,7 +20920,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ninja Maskot", "pt": 2, }, - "value": 228353102, + "value": 229148721, }, { "category": "Pet", @@ -17926,7 +20928,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ninja Maskot", "pt": 1, }, - "value": 1104091988, + "value": 1113219311, }, { "category": "Pet", @@ -17935,7 +20937,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12521, + "value": 13802, }, { "category": "Pet", @@ -17943,7 +20945,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bison", "sh": true, }, - "value": 51878, + "value": 55937, }, { "category": "Pet", @@ -17951,7 +20953,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Polar Bear", "pt": 2, }, - "value": 353482, + "value": 378454, }, { "category": "Pet", @@ -17959,7 +20961,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ninja Turtle", "sh": true, }, - "value": 81180172, + "value": 81368456, }, { "category": "Pet", @@ -17967,7 +20969,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Demon", "sh": true, }, - "value": 101377, + "value": 107377, }, { "category": "Pet", @@ -17976,7 +20978,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 30725, + "value": 39245, }, { "category": "Pet", @@ -17985,7 +20987,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 219205, + "value": 245165, }, { "category": "Pet", @@ -17993,7 +20995,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Bunny", "sh": true, }, - "value": 942585, + "value": 1086060, }, { "category": "Pet", @@ -18002,7 +21004,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 18035, + "value": 22159, }, { "category": "Pet", @@ -18011,7 +21013,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 17050, + "value": 19441, }, { "category": "Pet", @@ -18019,7 +21021,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fossil Dragon", "sh": true, }, - "value": 116876, + "value": 136873, }, { "category": "Pet", @@ -18027,7 +21029,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hound of Hades", "pt": 2, }, - "value": 680478, + "value": 704949, }, { "category": "Pet", @@ -18035,14 +21037,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angry Yeti", "sh": true, }, - "value": 203642, + "value": 224988, + }, + { + "category": "Misc", + "configData": { + "id": "Super Fishing Rod", + }, + "value": 1184694, }, { "category": "Pet", "configData": { "id": "Ninja Cat", }, - "value": 24222855, + "value": 24289181, }, { "category": "Pet", @@ -18050,7 +21059,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ninja Maskot", "sh": true, }, - "value": 16135127, + "value": 16180136, }, { "category": "Pet", @@ -18058,7 +21067,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hellish Axolotl", "pt": 2, }, - "value": 1208658, + "value": 1254190, }, { "category": "Pet", @@ -18067,7 +21076,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1, + "value": 2, }, { "category": "Pet", @@ -18076,7 +21085,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 17163, + "value": 20423, }, { "category": "Pet", @@ -18085,7 +21094,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 38870, + "value": 45473, }, { "category": "Pet", @@ -18093,14 +21102,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Wyvern of Hades", "pt": 2, }, - "value": 947435, + "value": 971200, }, { "category": "Pet", "configData": { "id": "Cyborg Dominus", }, - "value": 6494916, + "value": 6982327, }, { "category": "Pet", @@ -18108,7 +21117,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Celestial Dragon", "sh": true, }, - "value": 27, + "value": 30, }, { "category": "Pet", @@ -18117,7 +21126,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 28177, + "value": 30853, }, { "category": "Pet", @@ -18126,7 +21135,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 6790853, + "value": 6819806, }, { "category": "Pet", @@ -18134,7 +21143,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ninja Cat", "pt": 1, }, - "value": 3791407, + "value": 3814708, }, { "category": "Pet", @@ -18143,7 +21152,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 157107, + "value": 167361, }, { "category": "Pet", @@ -18151,7 +21160,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fire Dog", "sh": true, }, - "value": 866521, + "value": 930555, }, { "category": "Pet", @@ -18159,7 +21168,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fire Horse", "sh": true, }, - "value": 397163, + "value": 434503, }, { "category": "Pet", @@ -18167,7 +21176,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dino Cat", "pt": 2, }, - "value": 41045, + "value": 47995, }, { "category": "Pet", @@ -18176,7 +21185,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13926, + "value": 15283, }, { "category": "Pet", @@ -18185,7 +21194,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 35618, + "value": 40444, }, { "category": "Pet", @@ -18193,7 +21202,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Icemortuus", "pt": 1, }, - "value": 584551, + "value": 655643, }, { "category": "Pet", @@ -18202,7 +21211,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 110649, + "value": 134786, }, { "category": "Pet", @@ -18211,7 +21220,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 109324, + "value": 120273, }, { "category": "Pet", @@ -18220,7 +21229,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 57849, + "value": 68840, }, { "category": "Pet", @@ -18229,7 +21238,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 16584, + "value": 22949, }, { "category": "Pet", @@ -18238,7 +21247,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 756882, + "value": 971302, }, { "category": "Pet", @@ -18247,7 +21256,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 22510, + "value": 27646, }, { "category": "Pet", @@ -18256,7 +21265,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13758, + "value": 15530, }, { "category": "Pet", @@ -18265,7 +21274,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 6422, + "value": 8556, }, { "category": "Pet", @@ -18274,7 +21283,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 17945, + "value": 20714, }, { "category": "Pet", @@ -18283,7 +21292,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 39552, + "value": 43470, }, { "category": "Pet", @@ -18291,7 +21300,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Arctic Fox", "sh": true, }, - "value": 157325, + "value": 174375, }, { "category": "Pet", @@ -18300,7 +21309,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12389, + "value": 15004, }, { "category": "Pet", @@ -18309,7 +21318,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 27166, + "value": 30529, }, { "category": "Pet", @@ -18318,7 +21327,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 12457, + "value": 14784, }, { "category": "Pet", @@ -18327,7 +21336,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 42810, + "value": 54921, }, { "category": "Pet", @@ -18336,7 +21345,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 19715, + "value": 25294, }, { "category": "Pet", @@ -18345,7 +21354,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 77154, + "value": 91397, }, { "category": "Pet", @@ -18362,7 +21371,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 11580, + "value": 12698, }, { "category": "Pet", @@ -18370,7 +21379,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ninja Cat", "pt": 2, }, - "value": 2798298, + "value": 2781170, }, { "category": "Pet", @@ -18388,7 +21397,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 60401, + "value": 72262, }, { "category": "Pet", @@ -18397,7 +21406,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 86023, + "value": 98389, }, { "category": "Pet", @@ -18406,7 +21415,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 27, + "value": 29, }, { "category": "Pet", @@ -18415,7 +21424,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 19832, + "value": 21851, }, { "category": "Pet", @@ -18424,7 +21433,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 22979, + "value": 30262, }, { "category": "Pet", @@ -18433,7 +21442,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 23289, + "value": 24427, }, { "category": "Pet", @@ -18441,7 +21450,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Poseidon Dog", "sh": true, }, - "value": 216694, + "value": 231869, }, { "category": "Pet", @@ -18450,7 +21459,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 71905, + "value": 81663, }, { "category": "Pet", @@ -18459,7 +21468,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 31526, + "value": 33040, }, { "category": "Pet", @@ -18468,7 +21477,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 125415, + "value": 139816, }, { "category": "Pet", @@ -18477,7 +21486,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 28281, + "value": 31739, }, { "category": "Pet", @@ -18486,7 +21495,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 15515, + "value": 18833, }, { "category": "Pet", @@ -18494,7 +21503,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cheetah", "sh": true, }, - "value": 31718, + "value": 33813, }, { "category": "Pet", @@ -18503,7 +21512,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 203331, + "value": 225347, }, { "category": "Pet", @@ -18512,7 +21521,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 89256, + "value": 98049, }, { "category": "Pet", @@ -18521,7 +21530,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 58490, + "value": 71716, }, { "category": "Pet", @@ -18530,7 +21539,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 16722, + "value": 18831, }, { "category": "Pet", @@ -18539,7 +21548,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 201697, + "value": 240126, }, { "category": "Pet", @@ -18548,7 +21557,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 86972, + "value": 102378, }, { "category": "Pet", @@ -18556,7 +21565,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pineapple Cat", "sh": true, }, - "value": 90130, + "value": 106972, }, { "category": "Pet", @@ -18565,7 +21574,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 25293, + "value": 28845, }, { "category": "Pet", @@ -18573,7 +21582,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hound of Hades", "sh": true, }, - "value": 12052, + "value": 12978, }, { "category": "Pet", @@ -18590,7 +21599,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Panda", "sh": true, }, - "value": 302598, + "value": 349232, }, { "category": "Pet", @@ -18608,7 +21617,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8589, + "value": 9215, }, { "category": "Pet", @@ -18616,7 +21625,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Dominus", "pt": 1, }, - "value": 6173029, + "value": 6279552, }, { "category": "Pet", @@ -18625,7 +21634,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1090055, + "value": 1098920, }, { "category": "Pet", @@ -18634,7 +21643,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 20, + "value": 24, }, { "category": "Pet", @@ -18643,7 +21652,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 46859, + "value": 50804, }, { "category": "Pet", @@ -18652,7 +21661,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 21985, + "value": 23144, }, { "category": "Pet", @@ -18660,7 +21669,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Dominus", "pt": 2, }, - "value": 4834604, + "value": 4826600, }, { "category": "Pet", @@ -18669,28 +21678,35 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 23329, + "value": 28845, + }, + { + "category": "Misc", + "configData": { + "id": "Pro Shovel", + }, + "value": 1108276, }, { "category": "Pet", "configData": { "id": "Huge Pixel Wolf", }, - "value": 1187, + "value": 1503, }, { "category": "Pet", "configData": { "id": "Huge Cyborg Cat", }, - "value": 2979, + "value": 3206, }, { "category": "Pet", "configData": { "id": "Huge Dove", }, - "value": 1679, + "value": 2931, }, { "category": "Pet", @@ -18699,7 +21715,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1411707, + "value": 1444550, }, { "category": "Pet", @@ -18708,7 +21724,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 314860, + "value": 329596, }, { "category": "Pet", @@ -18717,7 +21733,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 260144, + "value": 303323, }, { "category": "Pet", @@ -18726,7 +21742,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 22611, + "value": 26109, }, { "category": "Pet", @@ -18735,7 +21751,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 16292, + "value": 19651, }, { "category": "Pet", @@ -18744,7 +21760,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5648, + "value": 6410, }, { "category": "Pet", @@ -18753,7 +21769,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 10845, + "value": 12214, }, { "category": "Pet", @@ -18762,7 +21778,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 107564, + "value": 141704, }, { "category": "Pet", @@ -18771,7 +21787,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 23742, + "value": 27733, }, { "category": "Pet", @@ -18780,7 +21796,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 24004, + "value": 31490, }, { "category": "Pet", @@ -18789,7 +21805,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 9569, + "value": 11824, }, { "category": "Pet", @@ -18798,7 +21814,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 76189, + "value": 89874, }, { "category": "Pet", @@ -18807,7 +21823,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 30488, + "value": 39099, }, { "category": "Pet", @@ -18816,7 +21832,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 85813, + "value": 96693, }, { "category": "Pet", @@ -18825,7 +21841,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 350025, + "value": 452896, }, { "category": "Pet", @@ -18833,7 +21849,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pirate Panda", "sh": true, }, - "value": 109326, + "value": 121612, }, { "category": "Pet", @@ -18842,7 +21858,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 16571, + "value": 19673, }, { "category": "Pet", @@ -18850,7 +21866,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Dragon", "sh": true, }, - "value": 35770, + "value": 41238, }, { "category": "Pet", @@ -18859,7 +21875,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12725, + "value": 14222, }, { "category": "Pet", @@ -18886,7 +21902,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 24350, + "value": 27396, }, { "category": "Pet", @@ -18895,7 +21911,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 22, + "value": 26, }, { "category": "Pet", @@ -18904,7 +21920,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 28045, + "value": 34917, }, { "category": "Pet", @@ -18912,7 +21928,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Propeller Cat", "pt": 1, }, - "value": 3343, + "value": 4323, }, { "category": "Pet", @@ -18929,7 +21945,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 20587, + "value": 24007, }, { "category": "Pet", @@ -18938,7 +21954,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 74255, + "value": 80863, }, { "category": "Pet", @@ -18947,7 +21963,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 50667, + "value": 55603, }, { "category": "Pet", @@ -18956,7 +21972,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 41385, + "value": 51325, }, { "category": "Pet", @@ -18965,7 +21981,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12542, + "value": 14540, }, { "category": "Pet", @@ -18974,7 +21990,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 24767, + "value": 29706, }, { "category": "Pet", @@ -18983,7 +21999,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 17816, + "value": 20012, }, { "category": "Pet", @@ -18992,7 +22008,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 2, + "value": 1, }, { "category": "Pet", @@ -19000,7 +22016,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pirate Parrot", "sh": true, }, - "value": 52910, + "value": 58110, }, { "category": "Pet", @@ -19009,7 +22025,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 17385, + "value": 19627, }, { "category": "Pet", @@ -19018,7 +22034,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 29514, + "value": 31486, + }, + { + "category": "Booth", + "configData": { + "id": "Unicorn", + }, + "value": 10107, }, { "category": "Pet", @@ -19027,7 +22050,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 10159, + "value": 10963, }, { "category": "Pet", @@ -19035,7 +22058,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ninja Cat", "sh": true, }, - "value": 40802, + "value": 40709, }, { "category": "Pet", @@ -19044,7 +22067,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 15398, + "value": 23945, }, { "category": "Pet", @@ -19053,7 +22076,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 10, + "value": 12, }, { "category": "Pet", @@ -19071,7 +22094,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2078907, + "value": 2417517, }, { "category": "Pet", @@ -19080,7 +22103,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 220114, + "value": 294792, }, { "category": "Pet", @@ -19089,7 +22112,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 74948, + "value": 81535, }, { "category": "Pet", @@ -19098,7 +22121,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 28843, + "value": 35810, }, { "category": "Pet", @@ -19107,7 +22130,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 26245, + "value": 28819, }, { "category": "Pet", @@ -19115,7 +22138,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Poseidon Corgi", "sh": true, }, - "value": 73694, + "value": 79180, }, { "category": "Pet", @@ -19124,7 +22147,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5, + "value": 6, }, { "category": "Pet", @@ -19133,7 +22156,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 22285, + "value": 28661, }, { "category": "Pet", @@ -19142,7 +22165,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 29129, + "value": 32620, }, { "category": "Pet", @@ -19151,7 +22174,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 4971, + "value": 5580, }, { "category": "Pet", @@ -19160,7 +22183,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2585, + "value": 3146, }, { "category": "Pet", @@ -19169,7 +22192,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 15616, + "value": 20157, }, { "category": "Pet", @@ -19178,7 +22201,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 14923, + "value": 20479, }, { "category": "Pet", @@ -19196,7 +22219,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 27422, + "value": 30752, }, { "category": "Pet", @@ -19204,7 +22227,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Wyvern of Hades", "sh": true, }, - "value": 5504, + "value": 6031, }, { "category": "Pet", @@ -19213,7 +22236,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 16524, + "value": 18615, }, { "category": "Pet", @@ -19221,7 +22244,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Polar Bear", "sh": true, }, - "value": 9067, + "value": 9770, }, { "category": "Pet", @@ -19238,7 +22261,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 29894, + "value": 31465, + }, + { + "category": "Misc", + "configData": { + "id": "Pro Fishing Rod", + }, + "value": 510589, }, { "category": "Pet", @@ -19247,7 +22277,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 131426, + "value": 172043, }, { "category": "Pet", @@ -19256,7 +22286,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 46, + "value": 55, }, { "category": "Pet", @@ -19265,7 +22295,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 23423, + "value": 30925, }, { "category": "Pet", @@ -19273,7 +22303,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Icemortuus", "sh": true, }, - "value": 6651, + "value": 7304, }, { "category": "Pet", @@ -19282,7 +22312,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 9008, + "value": 9886, }, { "category": "Pet", @@ -19291,7 +22321,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5867, + "value": 6969, }, { "category": "Pet", @@ -19300,7 +22330,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 41287, + "value": 44884, }, { "category": "Pet", @@ -19309,7 +22339,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 34065, + "value": 41636, }, { "category": "Pet", @@ -19318,7 +22348,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 28970, + "value": 32079, }, { "category": "Pet", @@ -19327,7 +22357,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 29148, + "value": 32092, }, { "category": "Pet", @@ -19336,7 +22366,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 54526, + "value": 63002, }, { "category": "Pet", @@ -19344,7 +22374,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Propeller Cat", "pt": 2, }, - "value": 661, + "value": 847, }, { "category": "Pet", @@ -19353,7 +22383,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 29867, + "value": 35504, }, { "category": "Pet", @@ -19362,7 +22392,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 68751, + "value": 87102, }, { "category": "Pet", @@ -19371,7 +22401,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 41133, + "value": 44854, }, { "category": "Pet", @@ -19380,7 +22410,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2058661, + "value": 2417704, }, { "category": "Pet", @@ -19389,7 +22419,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8244, + "value": 10339, }, { "category": "Pet", @@ -19398,7 +22428,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 11832, + "value": 12909, }, { "category": "Pet", @@ -19407,7 +22437,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13643, + "value": 15767, }, { "category": "Pet", @@ -19434,7 +22464,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 98, + "value": 130, }, { "category": "Pet", @@ -19451,7 +22481,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 9539, + "value": 12232, }, { "category": "Pet", @@ -19460,7 +22490,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 61219, + "value": 72910, }, { "category": "Pet", @@ -19468,7 +22498,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hellish Axolotl", "sh": true, }, - "value": 13549, + "value": 14334, }, { "category": "Pet", @@ -19477,7 +22507,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 39717, + "value": 47551, }, { "category": "Pet", @@ -19486,7 +22516,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 22262, + "value": 24185, }, { "category": "Pet", @@ -19504,7 +22534,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 36567, + "value": 38817, }, { "category": "Pet", @@ -19522,7 +22552,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 60911, + "value": 77333, }, { "category": "Pet", @@ -19531,7 +22561,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 40261, + "value": 48697, }, { "category": "Pet", @@ -19539,7 +22569,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Unicorn Dragon", "sh": true, }, - "value": 37, + "value": 42, }, { "category": "Pet", @@ -19548,7 +22578,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 113086, + "value": 158533, }, { "category": "Pet", @@ -19557,7 +22587,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1781, + "value": 2158, }, { "category": "Pet", @@ -19566,7 +22596,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 62279, + "value": 76434, }, { "category": "Pet", @@ -19584,7 +22614,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2077, + "value": 2266, }, { "category": "Pet", @@ -19593,7 +22623,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 27412, + "value": 33701, }, { "category": "Pet", @@ -19602,7 +22632,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 23667, + "value": 27634, }, { "category": "Pet", @@ -19611,7 +22641,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 41802, + "value": 46117, }, { "category": "Pet", @@ -19620,7 +22650,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 10195, + "value": 11763, }, { "category": "Pet", @@ -19629,7 +22659,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2054203, + "value": 2411234, }, { "category": "Pet", @@ -19638,7 +22668,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 49075, + "value": 52603, }, { "category": "Pet", @@ -19646,7 +22676,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sphinx", "sh": true, }, - "value": 7954, + "value": 8600, }, { "category": "Pet", @@ -19655,7 +22685,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 33169, + "value": 44668, }, { "category": "Pet", @@ -19664,7 +22694,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 58717, + "value": 62852, }, { "category": "Pet", @@ -19673,7 +22703,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 18806, + "value": 21952, }, { "category": "Pet", @@ -19682,7 +22712,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 58, + "value": 71, }, { "category": "Pet", @@ -19691,7 +22721,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 11914, + "value": 12982, }, { "category": "Pet", @@ -19700,7 +22730,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 10116, + "value": 11017, }, { "category": "Pet", @@ -19709,7 +22739,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 33928, + "value": 38080, }, { "category": "Pet", @@ -19718,7 +22748,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 96823, + "value": 100283, }, { "category": "Pet", @@ -19727,7 +22757,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 45346, + "value": 59494, }, { "category": "Pet", @@ -19736,7 +22766,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 23623, + "value": 26920, }, { "category": "Pet", @@ -19745,7 +22775,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 55384, + "value": 63609, }, { "category": "Pet", @@ -19754,7 +22784,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 30140, + "value": 41461, }, { "category": "Pet", @@ -19763,7 +22793,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13152, + "value": 14260, }, { "category": "Pet", @@ -19772,7 +22802,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 27450, + "value": 31192, }, { "category": "Pet", @@ -19781,7 +22811,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 27836, + "value": 31771, }, { "category": "Pet", @@ -19790,7 +22820,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 24106, + "value": 27288, }, { "category": "Pet", @@ -19799,7 +22829,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 80421, + "value": 105201, }, { "category": "Pet", @@ -19808,7 +22838,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 50945, + "value": 68667, }, { "category": "Pet", @@ -19817,7 +22847,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 261817, + "value": 304778, }, { "category": "Pet", @@ -19826,7 +22856,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 15939, + "value": 18055, }, { "category": "Pet", @@ -19844,7 +22874,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12732, + "value": 14266, }, { "category": "Pet", @@ -19853,7 +22883,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2888, + "value": 3819, }, { "category": "Pet", @@ -19862,7 +22892,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2066024, + "value": 2418176, }, { "category": "Pet", @@ -19871,7 +22901,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 30939, + "value": 34119, }, { "category": "Pet", @@ -19880,7 +22910,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 261769, + "value": 302225, }, { "category": "Pet", @@ -19889,7 +22919,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 5684, + "value": 7845, }, { "category": "Pet", @@ -19898,7 +22928,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 22, + "value": 30, }, { "category": "Pet", @@ -19907,7 +22937,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 112, + "value": 133, }, { "category": "Pet", @@ -19925,7 +22955,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 19135, + "value": 20325, }, { "category": "Pet", @@ -19934,7 +22964,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 97559, + "value": 114324, }, { "category": "Pet", @@ -19942,7 +22972,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "King Cobra", "sh": true, }, - "value": 13257, + "value": 14007, }, { "category": "Pet", @@ -19951,7 +22981,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 37415, + "value": 42318, }, { "category": "Pet", @@ -19959,7 +22989,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cyborg Dragon", "pt": 1, }, - "value": 1140, + "value": 1451, }, { "category": "Pet", @@ -19976,7 +23006,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 34713, + "value": 40961, }, { "category": "Pet", @@ -20003,7 +23033,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 15215, + "value": 22022, }, { "category": "Pet", @@ -20012,7 +23042,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 57620, + "value": 66683, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Red Flying Carpet", + }, + "value": 37812, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Blue Flying Carpet", + }, + "value": 11446, }, { "category": "Pet", @@ -20021,7 +23065,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 9495, + "value": 31038, }, { "category": "Pet", @@ -20030,7 +23074,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 28560, + "value": 31570, }, { "category": "Pet", @@ -20039,7 +23083,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 7706, + "value": 9509, }, { "category": "Pet", @@ -20048,7 +23092,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 23023, + "value": 33761, }, { "category": "Pet", @@ -20057,7 +23101,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 9823, + "value": 11587, }, { "category": "Pet", @@ -20066,7 +23110,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8112, + "value": 9688, }, { "category": "Pet", @@ -20075,7 +23119,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 17275, + "value": 23209, }, { "category": "Pet", @@ -20092,7 +23136,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 10090, + "value": 13408, }, { "category": "Pet", @@ -20101,7 +23145,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 16138, + "value": 18532, }, { "category": "Pet", @@ -20110,7 +23154,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12457, + "value": 15144, }, { "category": "Pet", @@ -20128,7 +23172,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 44620, + "value": 59188, }, { "category": "Pet", @@ -20137,7 +23181,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1007, + "value": 1133, }, { "category": "Pet", @@ -20146,7 +23190,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 23061, + "value": 31180, }, { "category": "Pet", @@ -20155,7 +23199,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 51874, + "value": 62700, }, { "category": "Pet", @@ -20164,7 +23208,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12561, + "value": 14662, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Oversized", + }, + "value": 7238, }, { "category": "Pet", @@ -20173,7 +23224,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 7659, + "value": 9390, }, { "category": "Pet", @@ -20182,14 +23233,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 38022, + "value": 41626, }, { "category": "Pet", "configData": { "id": "Huge Red Panda", }, - "value": 84419, + "value": 147593, }, { "category": "Pet", @@ -20197,7 +23248,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tiedye Bunny", "pt": 2, }, - "value": 172, + "value": 234, }, { "category": "Pet", @@ -20206,7 +23257,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 18, + "value": 25, }, { "category": "Pet", @@ -20215,7 +23266,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 31076, + "value": 34168, }, { "category": "Pet", @@ -20224,7 +23275,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 15386, + "value": 21741, }, { "category": "Pet", @@ -20232,7 +23283,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Poseidon Corgi", "pt": 1, }, - "value": 14979, + "value": 15769, }, { "category": "Pet", @@ -20241,7 +23292,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13950, + "value": 15034, }, { "category": "Pet", @@ -20250,7 +23301,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 260413, + "value": 300946, }, { "category": "Pet", @@ -20259,7 +23310,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 73379, + "value": 87279, }, { "category": "Pet", @@ -20276,7 +23327,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Dominus", "sh": true, }, - "value": 11361, + "value": 12193, }, { "category": "Pet", @@ -20285,7 +23336,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3187, + "value": 3853, }, { "category": "Pet", @@ -20294,7 +23345,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 22460, + "value": 25118, }, { "category": "Pet", @@ -20303,7 +23354,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 7, + "value": 8, }, { "category": "Pet", @@ -20312,7 +23363,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 17374, + "value": 19217, }, { "category": "Pet", @@ -20321,7 +23372,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13133, + "value": 14205, }, { "category": "Pet", @@ -20330,7 +23381,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 45787, + "value": 56053, }, { "category": "Pet", @@ -20339,7 +23390,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12755, + "value": 14394, }, { "category": "Pet", @@ -20348,7 +23399,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 16831, + "value": 18504, }, { "category": "Pet", @@ -20366,7 +23417,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 24594, + "value": 31658, }, { "category": "Pet", @@ -20383,7 +23434,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 38188, + "value": 46353, }, { "category": "Pet", @@ -20392,7 +23443,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 15196, + "value": 21557, }, { "category": "Pet", @@ -20401,7 +23452,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 16267, + "value": 34225, }, { "category": "Pet", @@ -20410,7 +23461,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 25863, + "value": 41913, + }, + { + "category": "Booth", + "configData": { + "id": "Gold", + }, + "value": 2805594, }, { "category": "Pet", @@ -20419,7 +23477,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 26356, + "value": 30431, }, { "category": "Pet", @@ -20445,7 +23503,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 20767, + "value": 29017, }, { "category": "Pet", @@ -20454,7 +23512,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 6447, + "value": 7521, + }, + { + "category": "Booth", + "configData": { + "id": "Dragon", + }, + "value": 3310868, }, { "category": "Pet", @@ -20463,7 +23528,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 11623, + "value": 13899, }, { "category": "Pet", @@ -20472,7 +23537,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 36672, + "value": 46833, }, { "category": "Pet", @@ -20490,7 +23555,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 26023, + "value": 29382, }, { "category": "Pet", @@ -20499,7 +23564,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5978, + "value": 7111, }, { "category": "Pet", @@ -20508,7 +23573,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 30127, + "value": 37601, }, { "category": "Pet", @@ -20526,14 +23591,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 15336, + "value": 17118, }, { "category": "Pet", "configData": { "id": "Huge Mermaid Cat", }, - "value": 38671, + "value": 58411, }, { "category": "Pet", @@ -20558,7 +23623,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Huge Fire Horse", }, - "value": 4659, + "value": 5316, }, { "category": "Pet", @@ -20566,14 +23631,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Giraffe", "pt": 1, }, - "value": 18691, + "value": 29914, }, { "category": "Pet", "configData": { "id": "Huge Giraffe", }, - "value": 85505, + "value": 138924, }, { "category": "Pet", @@ -20582,7 +23647,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 15015, + "value": 17109, }, { "category": "Pet", @@ -20600,7 +23665,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1355, + "value": 1672, }, { "category": "Pet", @@ -20618,7 +23683,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 55225, + "value": 72167, }, { "category": "Pet", @@ -20627,7 +23692,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1518, + "value": 2066, }, { "category": "Pet", @@ -20636,7 +23701,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 10539, + "value": 12058, }, { "category": "Pet", @@ -20645,7 +23710,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 24873, + "value": 27185, }, { "category": "Pet", @@ -20654,7 +23719,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 7552, + "value": 8838, }, { "category": "Pet", @@ -20662,7 +23727,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dino Cat", "sh": true, }, - "value": 585, + "value": 670, }, { "category": "Pet", @@ -20689,7 +23754,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 727, + "value": 1138, }, { "category": "Pet", @@ -20698,7 +23763,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13445, + "value": 16674, }, { "category": "Pet", @@ -20707,7 +23772,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 11167, + "value": 12911, }, { "category": "Pet", @@ -20716,14 +23781,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 16507, + "value": 18697, }, { "category": "Pet", "configData": { "id": "Huge Fossil Dragon", }, - "value": 85866, + "value": 137429, + }, + { + "category": "Booth", + "configData": { + "id": "Rainbow", + }, + "value": 1485365, }, { "category": "Pet", @@ -20732,7 +23804,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 3530, + "value": 4171, }, { "category": "Pet", @@ -20740,7 +23812,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Masked Owl", "pt": 1, }, - "value": 568, + "value": 779, }, { "category": "Pet", @@ -20749,7 +23821,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3984, + "value": 4565, }, { "category": "Pet", @@ -20758,7 +23830,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2151, + "value": 2698, }, { "category": "Pet", @@ -20775,14 +23847,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8390, + "value": 10631, }, { "category": "Pet", "configData": { "id": "Huge Crocodile", }, - "value": 49723, + "value": 81723, }, { "category": "Pet", @@ -20799,7 +23871,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tiedye Bunny", "sh": true, }, - "value": 256, + "value": 344, }, { "category": "Pet", @@ -20807,7 +23879,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Angel Cat", "pt": 1, }, - "value": 100, + "value": 152, }, { "category": "Pet", @@ -20825,7 +23897,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13306, + "value": 17065, }, { "category": "Pet", @@ -20843,7 +23915,22 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2862, + "value": 3555, + }, + { + "category": "Enchant", + "configData": { + "id": "Huge Hunter", + "tn": 1, + }, + "value": 1693274, + }, + { + "category": "Booth", + "configData": { + "id": "Egg", + }, + "value": 1685744, }, { "category": "Pet", @@ -20851,7 +23938,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Red Panda", "pt": 1, }, - "value": 16865, + "value": 28689, }, { "category": "Pet", @@ -20859,7 +23946,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mermaid Cat", "pt": 2, }, - "value": 6053, + "value": 9816, }, { "category": "Pet", @@ -20867,7 +23954,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Red Panda", "pt": 2, }, - "value": 12738, + "value": 22296, }, { "category": "Pet", @@ -20883,7 +23970,29 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mermaid Cat", "pt": 1, }, - "value": 6977, + "value": 11261, + }, + { + "category": "Enchant", + "configData": { + "id": "Shiny Hunter", + "tn": 1, + }, + "value": 1694008, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Steampunk", + }, + "value": 127390, + }, + { + "category": "Misc", + "configData": { + "id": "Golden Fishing Rod", + }, + "value": 1557564, }, { "category": "Pet", @@ -20891,7 +24000,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cyborg Cat", "pt": 1, }, - "value": 343, + "value": 365, }, { "category": "Pet", @@ -20900,7 +24009,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1766, + "value": 2102, }, { "category": "Pet", @@ -20908,14 +24017,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Crocodile", "pt": 1, }, - "value": 11381, + "value": 17992, }, { "category": "Pet", "configData": { "id": "Huge Poseidon Corgi", }, - "value": 44747, + "value": 47108, }, { "category": "Pet", @@ -20924,7 +24033,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1901, + "value": 2371, }, { "category": "Pet", @@ -20933,14 +24042,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2340, + "value": 2849, }, { "category": "Pet", "configData": { "id": "Huge Cow", }, - "value": 2384, + "value": 2486, }, { "category": "Pet", @@ -20948,21 +24057,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Fox", "pt": 1, }, - "value": 272, + "value": 291, }, { "category": "Pet", "configData": { "id": "Huge White Tiger", }, - "value": 2664, + "value": 2864, }, { "category": "Pet", "configData": { "id": "Huge Otter", }, - "value": 2403, + "value": 2463, }, { "category": "Pet", @@ -20971,7 +24080,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5160, + "value": 5745, }, { "category": "Pet", @@ -20987,14 +24096,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Titanic Scary Corgi", }, - "value": 475, + "value": 483, }, { "category": "Pet", "configData": { "id": "Titanic Shadow Griffin", }, - "value": 631, + "value": 641, }, { "category": "Pet", @@ -21003,7 +24112,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1714, + "value": 2020, }, { "category": "Pet", @@ -21038,7 +24147,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1, + "value": 3, }, { "category": "Pet", @@ -21047,7 +24156,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 952, + "value": 1203, + }, + { + "category": "Enchant", + "configData": { + "id": "Super Lightning", + "tn": 1, + }, + "value": 3879454, }, { "category": "Pet", @@ -21056,7 +24173,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2762, + "value": 3217, }, { "category": "Pet", @@ -21065,7 +24182,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1175, + "value": 1465, }, { "category": "Pet", @@ -21074,7 +24191,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 23, + "value": 31, }, { "category": "Pet", @@ -21082,7 +24199,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Angel Dog", "pt": 1, }, - "value": 3, + "value": 6, }, { "category": "Pet", @@ -21091,7 +24208,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1198, + "value": 1399, }, { "category": "Pet", @@ -21109,7 +24226,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1586, + "value": 2067, }, { "category": "Pet", @@ -21127,7 +24244,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 25, + "value": 30, }, { "category": "Pet", @@ -21135,7 +24252,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Giraffe", "pt": 2, }, - "value": 13985, + "value": 22669, }, { "category": "Pet", @@ -21152,7 +24269,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1060, + "value": 1609, }, { "category": "Pet", @@ -21179,7 +24296,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1534, + "value": 1894, + }, + { + "category": "Booth", + "configData": { + "id": "Fishing", + }, + "value": 120006, }, { "category": "Pet", @@ -21196,7 +24320,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1346, + "value": 1582, }, { "category": "Pet", @@ -21205,7 +24329,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1165, + "value": 1389, }, { "category": "Pet", @@ -21223,7 +24347,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 34, + "value": 45, + }, + { + "category": "Booth", + "configData": { + "id": "Hippomelon", + }, + "value": 644077, }, { "category": "Pet", @@ -21234,13 +24365,20 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 1, }, + { + "category": "Booth", + "configData": { + "id": "Merchant", + }, + "value": 599642, + }, { "category": "Pet", "configData": { "id": "Huge Crocodile", "pt": 2, }, - "value": 8100, + "value": 13553, }, { "category": "Pet", @@ -21248,70 +24386,77 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Red Panda", "sh": true, }, - "value": 1720, + "value": 3099, + }, + { + "category": "Misc", + "configData": { + "id": "Insta Plant Capsule", + }, + "value": 551126282, }, { "category": "Pet", "configData": { "id": "Ninja Raccoon", }, - "value": 750291239, + "value": 810898546, }, { "category": "Pet", "configData": { "id": "Samurai Bull", }, - "value": 370790118, + "value": 402519918, }, { "category": "Pet", "configData": { "id": "Samurai Dragon", }, - "value": 170118151, + "value": 185153853, }, { "category": "Pet", "configData": { "id": "Kitsune Fox", }, - "value": 1135272742, + "value": 1190921475, }, { "category": "Pet", "configData": { "id": "Fairy", }, - "value": 108454935, + "value": 119174068, }, { "category": "Pet", "configData": { "id": "White Tiger", }, - "value": 784032986, + "value": 831400733, }, { "category": "Pet", "configData": { "id": "Red Panda", }, - "value": 51190737, + "value": 55385799, }, { "category": "Pet", "configData": { "id": "Panda", }, - "value": 336473542, + "value": 356471113, }, { "category": "Pet", "configData": { "id": "Ronin Panda", }, - "value": 173635703, + "value": 186889739, }, { "category": "Pet", @@ -21319,21 +24464,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Woodpecker", "pt": 1, }, - "value": 29907298, + "value": 31495626, }, { "category": "Pet", "configData": { "id": "Koi Fish", }, - "value": 114122615, + "value": 121825151, }, { "category": "Pet", "configData": { "id": "Woodpecker", }, - "value": 297430102, + "value": 317707455, }, { "category": "Pet", @@ -21341,7 +24486,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Kitsune Fox", "pt": 1, }, - "value": 105007441, + "value": 112261262, }, { "category": "Pet", @@ -21349,7 +24494,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ninja Raccoon", "sh": true, }, - "value": 1407540, + "value": 1528139, }, { "category": "Pet", @@ -21357,7 +24502,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Samurai Dragon", "pt": 1, }, - "value": 30042168, + "value": 34287879, }, { "category": "Pet", @@ -21365,7 +24510,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ninja Raccoon", "pt": 2, }, - "value": 18069401, + "value": 18821360, }, { "category": "Pet", @@ -21373,7 +24518,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Samurai Dragon", "pt": 2, }, - "value": 8549696, + "value": 9301363, }, { "category": "Pet", @@ -21381,7 +24526,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ninja Raccoon", "pt": 1, }, - "value": 73114294, + "value": 78011210, }, { "category": "Pet", @@ -21389,7 +24534,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Kitsune Fox", "pt": 2, }, - "value": 23567426, + "value": 24980260, }, { "category": "Pet", @@ -21397,7 +24542,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Samurai Bull", "pt": 2, }, - "value": 9315432, + "value": 9734067, }, { "category": "Pet", @@ -21405,28 +24550,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Samurai Bull", "pt": 1, }, - "value": 37228858, + "value": 40163121, }, { "category": "Pet", "configData": { "id": "Fairy Ladybug", }, - "value": 147996646, + "value": 164800517, }, { "category": "Pet", "configData": { "id": "Blossom Bunny", }, - "value": 289358116, + "value": 314192262, }, { "category": "Pet", "configData": { "id": "Pixie Fox", }, - "value": 112804081, + "value": 125238581, }, { "category": "Pet", @@ -21434,7 +24579,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Panda", "pt": 1, }, - "value": 30351156, + "value": 33540899, }, { "category": "Pet", @@ -21442,35 +24587,51 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ronin Panda", "pt": 1, }, - "value": 20943186, + "value": 25128719, + }, + { + "category": "Seed", + "configData": { + "id": "Potion", + "tn": 1, + }, + "value": 32460840, + }, + { + "category": "Seed", + "configData": { + "id": "Coin", + "tn": 1, + }, + "value": 30411449, }, { "category": "Pet", "configData": { "id": "Rose Butterfly", }, - "value": 191181504, + "value": 208863136, }, { "category": "Pet", "configData": { "id": "Garden Cat", }, - "value": 143753038, + "value": 156598551, }, { "category": "Pet", "configData": { "id": "Sunflower Lion", }, - "value": 58653652, + "value": 63628165, }, { "category": "Pet", "configData": { "id": "Rabbit", }, - "value": 142191808, + "value": 156278438, }, { "category": "Pet", @@ -21478,7 +24639,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pixie Squirrel", "pt": 1, }, - "value": 24216181, + "value": 25709008, }, { "category": "Pet", @@ -21486,7 +24647,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Samurai Bull", "sh": true, }, - "value": 697362, + "value": 757236, }, { "category": "Pet", @@ -21494,14 +24655,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Samurai Dragon", "sh": true, }, - "value": 364497, + "value": 396006, }, { "category": "Pet", "configData": { "id": "Fluffy Cat", }, - "value": 438154548, + "value": 488491351, }, { "category": "Pet", @@ -21509,7 +24670,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ronin Panda", "pt": 2, }, - "value": 6520117, + "value": 7408823, }, { "category": "Pet", @@ -21517,7 +24678,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Red Panda", "pt": 1, }, - "value": 6305976, + "value": 7678997, }, { "category": "Pet", @@ -21525,14 +24686,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Red Panda", "pt": 2, }, - "value": 2106426, + "value": 2428745, }, { "category": "Pet", "configData": { "id": "Prince Donkey", }, - "value": 40174614035, + "value": 40110143880, }, { "category": "Pet", @@ -21540,21 +24701,51 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ronin Panda", "sh": true, }, - "value": 333507, + "value": 369067, + }, + { + "category": "Misc", + "configData": { + "id": "Watering Can", + }, + "value": 5853098, + }, + { + "category": "Seed", + "configData": { + "id": "Gift", + "tn": 1, + }, + "value": 725584, }, { "category": "Pet", "configData": { "id": "Pixie Squirrel", }, - "value": 234648661, + "value": 255064964, }, { "category": "Pet", "configData": { "id": "Fairy Bee", }, - "value": 232336210, + "value": 256885856, + }, + { + "category": "Misc", + "configData": { + "id": "Seed Bag", + }, + "value": 1267060379, + }, + { + "category": "Seed", + "configData": { + "id": "Diamond", + "tn": 1, + }, + "value": 8901803, }, { "category": "Pet", @@ -21562,7 +24753,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Garden Cat", "pt": 1, }, - "value": 14579383, + "value": 15511964, }, { "category": "Pet", @@ -21570,14 +24761,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blossom Bunny", "sh": true, }, - "value": 529409, + "value": 578694, }, { "category": "Pet", "configData": { "id": "Starry Owl", }, - "value": 47442898, + "value": 51649017, }, { "category": "Pet", @@ -21585,7 +24776,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Panda", "sh": true, }, - "value": 603097, + "value": 646914, }, { "category": "Pet", @@ -21593,21 +24784,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Panda", "pt": 2, }, - "value": 7446937, + "value": 8071575, }, { "category": "Pet", "configData": { "id": "Queen Piggy", }, - "value": 221179433, + "value": 248704867, }, { "category": "Pet", "configData": { "id": "Ancient Dragon", }, - "value": 5852181, + "value": 6288605, }, { "category": "Pet", @@ -21615,14 +24806,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Kitsune Fox", "sh": true, }, - "value": 2026216, + "value": 2156955, }, { "category": "Pet", "configData": { "id": "King Cow", }, - "value": 290572970, + "value": 325079744, }, { "category": "Pet", @@ -21630,7 +24821,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "White Tiger", "pt": 1, }, - "value": 75175313, + "value": 77965573, }, { "category": "Pet", @@ -21638,7 +24829,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pixie Fox", "pt": 2, }, - "value": 4517101, + "value": 4678859, }, { "category": "Pet", @@ -21646,7 +24837,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Koi Fish", "pt": 1, }, - "value": 18015763, + "value": 19766507, }, { "category": "Pet", @@ -21654,7 +24845,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "White Tiger", "pt": 2, }, - "value": 24169916, + "value": 24593469, }, { "category": "Pet", @@ -21662,7 +24853,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fairy Ladybug", "pt": 2, }, - "value": 5058432, + "value": 5203726, }, { "category": "Pet", @@ -21670,7 +24861,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pixie Fox", "pt": 1, }, - "value": 12136994, + "value": 12981888, }, { "category": "Pet", @@ -21678,7 +24869,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fairy Ladybug", "pt": 1, }, - "value": 14641998, + "value": 15415689, }, { "category": "Pet", @@ -21686,7 +24877,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fairy Bee", "pt": 1, }, - "value": 22848001, + "value": 24041989, }, { "category": "Pet", @@ -21694,7 +24885,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fairy Bee", "pt": 2, }, - "value": 7641988, + "value": 7922287, }, { "category": "Pet", @@ -21702,7 +24893,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rose Butterfly", "pt": 1, }, - "value": 18359108, + "value": 19162039, }, { "category": "Pet", @@ -21710,7 +24901,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Woodpecker", "pt": 2, }, - "value": 10197372, + "value": 10408628, }, { "category": "Pet", @@ -21719,7 +24910,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 17088, + "value": 21188, }, { "category": "Pet", @@ -21727,7 +24918,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blossom Bunny", "pt": 1, }, - "value": 27279819, + "value": 28491015, }, { "category": "Pet", @@ -21735,7 +24926,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ancient Dragon", "pt": 1, }, - "value": 855355, + "value": 954721, }, { "category": "Pet", @@ -21743,7 +24934,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Red Panda", "sh": true, }, - "value": 99413, + "value": 107793, }, { "category": "Pet", @@ -21751,7 +24942,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sunflower Lion", "pt": 1, }, - "value": 7995213, + "value": 8836953, }, { "category": "Pet", @@ -21759,7 +24950,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rose Butterfly", "pt": 2, }, - "value": 5593207, + "value": 5730526, }, { "category": "Pet", @@ -21767,7 +24958,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Koi Fish", "pt": 2, }, - "value": 7506224, + "value": 7822578, }, { "category": "Pet", @@ -21775,7 +24966,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blossom Bunny", "pt": 2, }, - "value": 8114216, + "value": 8306094, }, { "category": "Pet", @@ -21783,7 +24974,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sunflower Lion", "pt": 2, }, - "value": 3478833, + "value": 3636839, }, { "category": "Pet", @@ -21791,7 +24982,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "White Tiger", "sh": true, }, - "value": 1520624, + "value": 1614385, }, { "category": "Pet", @@ -21799,14 +24990,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ancient Dragon", "pt": 2, }, - "value": 382937, + "value": 402867, }, { "category": "Pet", "configData": { "id": "Princess Dragon", }, - "value": 5261188424, + "value": 5249263174, }, { "category": "Pet", @@ -21814,7 +25005,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Prince Donkey", "pt": 2, }, - "value": 919524382, + "value": 910915376, }, { "category": "Pet", @@ -21822,7 +25013,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Princess Dragon", "pt": 2, }, - "value": 175075093, + "value": 173745773, }, { "category": "Pet", @@ -21830,7 +25021,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Princess Dragon", "pt": 1, }, - "value": 667324941, + "value": 670447622, }, { "category": "Pet", @@ -21838,7 +25029,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Prince Donkey", "pt": 1, }, - "value": 4436806622, + "value": 4439263301, }, { "category": "Pet", @@ -21846,7 +25037,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Koi Fish", "sh": true, }, - "value": 259685, + "value": 272685, }, { "category": "Pet", @@ -21855,21 +25046,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 119786, + "value": 128699, }, { "category": "Pet", "configData": { "id": "Royal Peacock", }, - "value": 95752321, + "value": 109424996, }, { "category": "Pet", "configData": { "id": "Knight Beagle", }, - "value": 125171656, + "value": 125117299, }, { "category": "Pet", @@ -21877,7 +25068,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Prince Donkey", "sh": true, }, - "value": 70430332, + "value": 70361982, }, { "category": "Pet", @@ -21886,7 +25077,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 52073, + "value": 56778, }, { "category": "Pet", @@ -21894,7 +25085,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sunflower Lion", "sh": true, }, - "value": 124798, + "value": 133564, }, { "category": "Pet", @@ -21903,7 +25094,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 23871, + "value": 25553, }, { "category": "Pet", @@ -21911,7 +25102,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Garden Cat", "pt": 2, }, - "value": 4892417, + "value": 5034207, }, { "category": "Pet", @@ -21919,7 +25110,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "King Cow", "pt": 2, }, - "value": 7389742, + "value": 7855353, }, { "category": "Pet", @@ -21927,7 +25118,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fluffy Cat", "pt": 1, }, - "value": 44306112, + "value": 48427759, }, { "category": "Pet", @@ -21935,7 +25126,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Queen Piggy", "pt": 2, }, - "value": 6510658, + "value": 7015160, }, { "category": "Pet", @@ -21943,7 +25134,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "King Cow", "pt": 1, }, - "value": 30424911, + "value": 33677455, }, { "category": "Pet", @@ -21951,7 +25142,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Royal Peacock", "pt": 1, }, - "value": 17889228, + "value": 21367173, }, { "category": "Pet", @@ -21959,7 +25150,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Royal Peacock", "pt": 2, }, - "value": 4651861, + "value": 5187811, }, { "category": "Pet", @@ -21967,7 +25158,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fairy", "pt": 1, }, - "value": 11687691, + "value": 12468034, }, { "category": "Pet", @@ -21975,7 +25166,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rabbit", "pt": 1, }, - "value": 14024572, + "value": 14807293, }, { "category": "Pet", @@ -21983,7 +25174,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pixie Squirrel", "pt": 2, }, - "value": 8982329, + "value": 9166816, }, { "category": "Pet", @@ -21991,7 +25182,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fairy", "pt": 2, }, - "value": 4622635, + "value": 4704133, }, { "category": "Pet", @@ -22000,7 +25191,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 38376, + "value": 53754, }, { "category": "Pet", @@ -22008,7 +25199,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Garden Cat", "sh": true, }, - "value": 270682, + "value": 294563, }, { "category": "Pet", @@ -22017,7 +25208,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 137374, + "value": 158640, }, { "category": "Pet", @@ -22025,7 +25216,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pixie Fox", "sh": true, }, - "value": 218126, + "value": 241781, }, { "category": "Pet", @@ -22033,7 +25224,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Queen Piggy", "pt": 1, }, - "value": 26271439, + "value": 29883160, }, { "category": "Pet", @@ -22041,7 +25232,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fluffy Cat", "pt": 2, }, - "value": 10724455, + "value": 11348654, }, { "category": "Pet", @@ -22049,7 +25240,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Starry Owl", "pt": 2, }, - "value": 3335389, + "value": 3429457, }, { "category": "Pet", @@ -22057,7 +25248,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Starry Owl", "pt": 1, }, - "value": 6865140, + "value": 7629070, }, { "category": "Pet", @@ -22066,7 +25257,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 51427, + "value": 57704, }, { "category": "Pet", @@ -22074,7 +25265,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Knight Beagle", "pt": 1, }, - "value": 15400204, + "value": 15496602, + }, + { + "category": "Misc", + "configData": { + "id": "Charm Stone", + }, + "value": 1655530929, }, { "category": "Pet", @@ -22083,7 +25281,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 17168, + "value": 23554, }, { "category": "Pet", @@ -22091,7 +25289,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "King Cow", "sh": true, }, - "value": 530640, + "value": 597355, }, { "category": "Pet", @@ -22099,7 +25297,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Woodpecker", "sh": true, }, - "value": 585272, + "value": 621792, }, { "category": "Pet", @@ -22107,7 +25305,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fluffy Cat", "sh": true, }, - "value": 800530, + "value": 901551, }, { "category": "Pet", @@ -22115,7 +25313,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Queen Piggy", "sh": true, }, - "value": 412709, + "value": 465262, }, { "category": "Pet", @@ -22124,7 +25322,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 45891, + "value": 49293, }, { "category": "Pet", @@ -22132,7 +25330,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Princess Dragon", "sh": true, }, - "value": 9580526, + "value": 9558320, }, { "category": "Pet", @@ -22140,7 +25338,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rose Butterfly", "sh": true, }, - "value": 351633, + "value": 384104, }, { "category": "Pet", @@ -22148,7 +25346,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pixie Squirrel", "sh": true, }, - "value": 451969, + "value": 495750, }, { "category": "Pet", @@ -22157,7 +25355,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 43121, + "value": 50630, }, { "category": "Pet", @@ -22166,7 +25364,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 116135, + "value": 129235, }, { "category": "Pet", @@ -22174,7 +25372,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rabbit", "pt": 2, }, - "value": 5207403, + "value": 5272335, }, { "category": "Pet", @@ -22182,7 +25380,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fairy", "sh": true, }, - "value": 214101, + "value": 233420, }, { "category": "Pet", @@ -22191,7 +25389,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 61210, + "value": 69364, }, { "category": "Pet", @@ -22200,7 +25398,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 12136, + "value": 16745, }, { "category": "Pet", @@ -22209,7 +25407,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 39647, + "value": 50506, }, { "category": "Pet", @@ -22217,7 +25415,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rabbit", "sh": true, }, - "value": 272842, + "value": 298785, }, { "category": "Pet", @@ -22225,7 +25423,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fairy Bee", "sh": true, }, - "value": 432232, + "value": 480621, }, { "category": "Pet", @@ -22234,7 +25432,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 16376, + "value": 19287, }, { "category": "Pet", @@ -22242,7 +25440,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fairy Ladybug", "sh": true, }, - "value": 277599, + "value": 308653, }, { "category": "Pet", @@ -22250,7 +25448,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Knight Beagle", "pt": 2, }, - "value": 4055475, + "value": 4029124, }, { "category": "Pet", @@ -22259,7 +25457,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 6903932, + "value": 6905911, }, { "category": "Pet", @@ -22267,7 +25465,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Royal Peacock", "sh": true, }, - "value": 193382, + "value": 220178, }, { "category": "Pet", @@ -22275,7 +25473,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Starry Owl", "sh": true, }, - "value": 105919, + "value": 113688, }, { "category": "Pet", @@ -22284,14 +25482,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 19269, + "value": 20003, }, { "category": "Pet", "configData": { "id": "Unicorn Kitten", }, - "value": 82171271, + "value": 91453469, }, { "category": "Pet", @@ -22300,7 +25498,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 27085, + "value": 31912, }, { "category": "Pet", @@ -22309,7 +25507,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1463764, + "value": 1451231, }, { "category": "Pet", @@ -22318,7 +25516,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 24687, + "value": 26724, }, { "category": "Pet", @@ -22327,7 +25525,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 21856, + "value": 24131, }, { "category": "Pet", @@ -22336,7 +25534,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 292764, + "value": 292987, }, { "category": "Pet", @@ -22345,7 +25543,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 17949, + "value": 20264, }, { "category": "Pet", @@ -22354,7 +25552,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 31513, + "value": 34370, }, { "category": "Pet", @@ -22363,7 +25561,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 11879, + "value": 12656, }, { "category": "Pet", @@ -22372,7 +25570,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 77566, + "value": 91658, }, { "category": "Pet", @@ -22380,7 +25578,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ancient Dragon", "sh": true, }, - "value": 12621, + "value": 13294, }, { "category": "Pet", @@ -22389,7 +25587,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 64155, + "value": 65856, }, { "category": "Pet", @@ -22397,7 +25595,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Unicorn Kitten", "pt": 2, }, - "value": 5046911, + "value": 5271872, + }, + { + "category": "Misc", + "configData": { + "id": "Golden Watering Can", + }, + "value": 724345, }, { "category": "Pet", @@ -22406,7 +25611,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 62376, + "value": 71869, }, { "category": "Pet", @@ -22415,7 +25620,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 18767, + "value": 20780, }, { "category": "Pet", @@ -22424,7 +25629,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 22581, + "value": 23437, }, { "category": "Pet", @@ -22433,7 +25638,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 46681, + "value": 53518, }, { "category": "Pet", @@ -22442,7 +25647,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 23746, + "value": 25677, }, { "category": "Pet", @@ -22451,7 +25656,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1023454, + "value": 1033340, }, { "category": "Pet", @@ -22460,7 +25665,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 16509, + "value": 18100, }, { "category": "Pet", @@ -22469,7 +25674,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 27883, + "value": 30664, }, { "category": "Pet", @@ -22478,7 +25683,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5666, + "value": 7498, }, { "category": "Pet", @@ -22486,7 +25691,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Knight Beagle", "sh": true, }, - "value": 227714, + "value": 225589, }, { "category": "Pet", @@ -22495,7 +25700,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 41116, + "value": 49745, }, { "category": "Pet", @@ -22504,7 +25709,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 20522, + "value": 23301, }, { "category": "Pet", @@ -22513,7 +25718,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 28553, + "value": 29728, }, { "category": "Pet", @@ -22522,7 +25727,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 10061, + "value": 10898, }, { "category": "Pet", @@ -22531,7 +25736,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 33701, + "value": 37087, }, { "category": "Pet", @@ -22539,7 +25744,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Unicorn Kitten", "pt": 1, }, - "value": 10519843, + "value": 11781761, }, { "category": "Pet", @@ -22548,7 +25753,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 15349, + "value": 17099, }, { "category": "Pet", @@ -22557,7 +25762,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 18778, + "value": 20535, }, { "category": "Pet", @@ -22566,7 +25771,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 14600, + "value": 16872, }, { "category": "Pet", @@ -22575,7 +25780,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12554, + "value": 13264, }, { "category": "Pet", @@ -22584,7 +25789,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 18407, + "value": 19226, }, { "category": "Pet", @@ -22593,7 +25798,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12547, + "value": 13274, }, { "category": "Pet", @@ -22602,7 +25807,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 17834, + "value": 19815, }, { "category": "Pet", @@ -22611,7 +25816,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13180, + "value": 13612, }, { "category": "Pet", @@ -22620,7 +25825,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 14915, + "value": 15124, }, { "category": "Pet", @@ -22629,7 +25834,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 6047, + "value": 6158, }, { "category": "Pet", @@ -22638,7 +25843,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 34129, + "value": 43304, }, { "category": "Pet", @@ -22646,7 +25851,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Unicorn Kitten", "sh": true, }, - "value": 172364, + "value": 189389, }, { "category": "Pet", @@ -22655,7 +25860,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 11965, + "value": 13987, }, { "category": "Pet", @@ -22664,7 +25869,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2030, + "value": 2384, }, { "category": "Pet", @@ -22673,7 +25878,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12091, + "value": 12563, }, { "category": "Pet", @@ -22682,7 +25887,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13479, + "value": 14120, }, { "category": "Pet", @@ -22691,7 +25896,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 9580, + "value": 10177, }, { "category": "Pet", @@ -22700,7 +25905,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 14428, + "value": 15467, }, { "category": "Pet", @@ -22709,14 +25914,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 20326, + "value": 24438, }, { "category": "Pet", "configData": { "id": "Huge Hoverboard Cat", }, - "value": 4883, + "value": 4912, }, { "category": "Pet", @@ -22733,7 +25938,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cyborg Cat", "pt": 2, }, - "value": 65, + "value": 67, }, { "category": "Pet", @@ -22742,14 +25947,22 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1314, + "value": 1598, + }, + { + "category": "Enchant", + "configData": { + "id": "Starfall", + "tn": 1, + }, + "value": 119045, }, { "category": "Pet", "configData": { "id": "Huge Bearserker", }, - "value": 2565, + "value": 4312, }, { "category": "Pet", @@ -22757,7 +25970,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cyborg Cat", "sh": true, }, - "value": 69, + "value": 70, }, { "category": "Pet", @@ -22765,7 +25978,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Bearserker", "pt": 1, }, - "value": 389, + "value": 770, }, { "category": "Pet", @@ -22782,7 +25995,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Fire Horse", "pt": 1, }, - "value": 575, + "value": 684, + }, + { + "category": "Booth", + "configData": { + "id": "Balloon", + }, + "value": 231929, }, { "category": "Pet", @@ -22790,7 +26010,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Dove", "pt": 1, }, - "value": 205, + "value": 360, }, { "category": "Pet", @@ -22798,7 +26018,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Crocodile", "sh": true, }, - "value": 970, + "value": 1650, + }, + { + "category": "Booth", + "configData": { + "id": "Corgi", + }, + "value": 52789, }, { "category": "Pet", @@ -22806,7 +26033,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Hoverboard Cat", "pt": 1, }, - "value": 550, + "value": 553, }, { "category": "Pet", @@ -22832,6 +26059,13 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 12, }, + { + "category": "Misc", + "configData": { + "id": "Exotic Treasure Flag", + }, + "value": 50374493, + }, { "category": "Pet", "configData": { @@ -22839,77 +26073,195 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 22, + "value": 26, + }, + { + "category": "Lootbox", + "configData": { + "id": "Small Christmas Present", + "tn": 1, + }, + "value": 14463589, + }, + { + "category": "Lootbox", + "configData": { + "id": "Medium Christmas Present", + "tn": 1, + }, + "value": 4020506, + }, + { + "category": "Misc", + "configData": { + "id": "Snowball", + }, + "value": 2156774561, + }, + { + "category": "Misc", + "configData": { + "id": "Christmas Cookie", + }, + "value": 129085454, + }, + { + "category": "Misc", + "configData": { + "id": "Hot Cocoa", + }, + "value": 128537530, + }, + { + "category": "Fruit", + "configData": { + "id": "Candycane", + "tn": 1, + }, + "value": 2434891, + }, + { + "category": "Misc", + "configData": { + "id": "Green Christmas Ornament", + }, + "value": 2314066, + }, + { + "category": "Lootbox", + "configData": { + "id": "Large Christmas Present", + "tn": 1, + }, + "value": 765015, + }, + { + "category": "Lootbox", + "configData": { + "id": "X-Large Christmas Present", + "tn": 1, + }, + "value": 96817, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Rudolph", + }, + "value": 512753, }, { "category": "Pet", "configData": { "id": "Blueberry Cow", }, - "value": 1177250, + "value": 1016137, + }, + { + "category": "Misc", + "configData": { + "id": "Silver Christmas Ornament", + }, + "value": 2311117, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 18", + }, + "value": 2494786, + }, + { + "category": "Misc", + "configData": { + "id": "Blue Christmas Ornament", + }, + "value": 2313402, + }, + { + "category": "Misc", + "configData": { + "id": "Pink Christmas Ornament", + }, + "value": 2310429, + }, + { + "category": "Misc", + "configData": { + "id": "Red Christmas Ornament", + }, + "value": 2314468, }, { "category": "Pet", "configData": { "id": "Colorful Fish", }, - "value": 406535457, + "value": 448681176, }, { "category": "Pet", "configData": { "id": "Colorful Slime", }, - "value": 194383264, + "value": 215918338, }, { "category": "Pet", "configData": { "id": "North Pole Wolf", }, - "value": 1998822, + "value": 1995179, }, { "category": "Pet", "configData": { "id": "Candycane", }, - "value": 3999667, + "value": 3991039, }, { "category": "Pet", "configData": { "id": "Present Dragon", }, - "value": 1872327, + "value": 1885427, + }, + { + "category": "Lootbox", + "configData": { + "id": "Titanic Christmas Present", + "tn": 1, + }, + "value": 11828, }, { "category": "Pet", "configData": { "id": "Gingerbread Cat", }, - "value": 14009124, + "value": 13984696, }, { "category": "Pet", "configData": { "id": "Calico Cat", }, - "value": 82339838, + "value": 98676651, }, { "category": "Pet", "configData": { "id": "Hamster", }, - "value": 219628322, + "value": 248745166, }, { "category": "Pet", "configData": { "id": "Tulip Hedgehog", }, - "value": 177031685, + "value": 201699833, }, { "category": "Pet", @@ -22917,7 +26269,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Colorful Firefly", "pt": 1, }, - "value": 13410374, + "value": 14423961, }, { "category": "Pet", @@ -22925,28 +26277,35 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shiba", "pt": 1, }, - "value": 35491755, + "value": 37416560, }, { "category": "Pet", "configData": { "id": "Frost Bear", }, - "value": 66622568342, + "value": 66074493573, }, { "category": "Pet", "configData": { "id": "Lunar Moth", }, - "value": 39830926, + "value": 43067299, }, { "category": "Pet", "configData": { "id": "Frost Axolotl", }, - "value": 29429417437, + "value": 29176071908, + }, + { + "category": "Misc", + "configData": { + "id": "Snowball Launcher", + }, + "value": 4620663, }, { "category": "Pet", @@ -22954,7 +26313,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jolly Penguin", "pt": 2, }, - "value": 387224235, + "value": 382020042, }, { "category": "Pet", @@ -22962,7 +26321,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frost Axolotl", "pt": 2, }, - "value": 1435671050, + "value": 1417548672, }, { "category": "Pet", @@ -22970,14 +26329,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frost Bear", "pt": 2, }, - "value": 3103378084, + "value": 3063597525, }, { "category": "Pet", "configData": { "id": "Jolly Penguin", }, - "value": 5147513933, + "value": 5105004894, }, { "category": "Pet", @@ -22985,7 +26344,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frost Bear", "pt": 1, }, - "value": 7336874348, + "value": 7313774591, }, { "category": "Pet", @@ -22993,7 +26352,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frost Axolotl", "pt": 1, }, - "value": 3292341024, + "value": 3280644466, }, { "category": "Pet", @@ -23001,14 +26360,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jolly Penguin", "pt": 1, }, - "value": 677008629, + "value": 674286042, }, { "category": "Pet", "configData": { "id": "Rudolf", }, - "value": 1759672, + "value": 1770301, }, { "category": "Pet", @@ -23017,7 +26376,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 12048679, + "value": 11992673, }, { "category": "Pet", @@ -23025,7 +26384,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frost Bear", "sh": true, }, - "value": 120048055, + "value": 119235698, }, { "category": "Pet", @@ -23033,7 +26392,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jolly Cat", "pt": 2, }, - "value": 48265310, + "value": 47905231, }, { "category": "Pet", @@ -23041,7 +26400,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jolly Cat", "pt": 1, }, - "value": 86627548, + "value": 87707641, }, { "category": "Pet", @@ -23049,7 +26408,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Colorful Fish", "pt": 1, }, - "value": 35833268, + "value": 37860612, }, { "category": "Pet", @@ -23057,21 +26416,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Colorful Slime", "pt": 2, }, - "value": 6007543, + "value": 6178494, }, { "category": "Pet", "configData": { "id": "Present Cat", }, - "value": 1749290, + "value": 1754501, }, { "category": "Pet", "configData": { "id": "Nutcracker Cat", }, - "value": 999617, + "value": 997618, }, { "category": "Pet", @@ -23079,14 +26438,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Colorful Fish", "sh": true, }, - "value": 743647, + "value": 830318, }, { "category": "Pet", "configData": { "id": "Orange Axolotl", }, - "value": 825169, + "value": 734875, }, { "category": "Pet", @@ -23094,35 +26453,35 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dragonfruit Dragon", "pt": 2, }, - "value": 6209, + "value": 5540, }, { "category": "Pet", "configData": { "id": "Dragonfruit Dragon", }, - "value": 306494, + "value": 254350, }, { "category": "Pet", "configData": { "id": "Gingerbread Corgi", }, - "value": 7005390, + "value": 6995858, }, { "category": "Pet", "configData": { "id": "Shiba", }, - "value": 347875985, + "value": 378194726, }, { "category": "Pet", "configData": { "id": "Silver Stag", }, - "value": 873087, + "value": 875934, }, { "category": "Pet", @@ -23130,7 +26489,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Colorful Rock", "pt": 1, }, - "value": 11267678, + "value": 12696065, }, { "category": "Pet", @@ -23138,14 +26497,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shiba", "pt": 2, }, - "value": 15705194, + "value": 16010653, }, { "category": "Pet", "configData": { "id": "Colorful Firefly", }, - "value": 125790451, + "value": 137337893, }, { "category": "Pet", @@ -23153,14 +26512,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Lunar Moth", "pt": 2, }, - "value": 3480543, + "value": 3605006, }, { "category": "Pet", "configData": { "id": "Colorful Rock", }, - "value": 81469755, + "value": 88195341, }, { "category": "Pet", @@ -23168,7 +26527,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Colorful Rock", "pt": 2, }, - "value": 6522715, + "value": 6748739, }, { "category": "Pet", @@ -23176,21 +26535,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Colorful Firefly", "pt": 2, }, - "value": 6540964, + "value": 6686561, }, { "category": "Pet", "configData": { "id": "Reindeer Cat", }, - "value": 7033390, + "value": 7074844, }, { "category": "Pet", "configData": { "id": "Colorful Wisp", }, - "value": 98011741, + "value": 108468987, }, { "category": "Pet", @@ -23198,7 +26557,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Colorful Slime", "pt": 1, }, - "value": 17117147, + "value": 18185026, }, { "category": "Pet", @@ -23206,14 +26565,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Colorful Fish", "pt": 2, }, - "value": 12141605, + "value": 12490881, }, { "category": "Pet", "configData": { "id": "Festive Cardinal", }, - "value": 3505110, + "value": 3501516, }, { "category": "Pet", @@ -23221,14 +26580,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blueberry Cow", "pt": 2, }, - "value": 24174, + "value": 20745, }, { "category": "Pet", "configData": { "id": "Mining Cat", }, - "value": 164117430, + "value": 182277998, }, { "category": "Pet", @@ -23236,14 +26595,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mining Axolotl", "pt": 2, }, - "value": 11496977, + "value": 11794145, }, { "category": "Pet", "configData": { "id": "Mining Axolotl", }, - "value": 315417784, + "value": 348057473, }, { "category": "Pet", @@ -23251,7 +26610,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Colorful Wisp", "pt": 2, }, - "value": 5947196, + "value": 6200080, }, { "category": "Pet", @@ -23259,7 +26618,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mining Cat", "pt": 2, }, - "value": 6216330, + "value": 6377714, }, { "category": "Pet", @@ -23267,7 +26626,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Colorful Wisp", "pt": 1, }, - "value": 12102281, + "value": 13467937, }, { "category": "Pet", @@ -23275,7 +26634,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mining Axolotl", "pt": 1, }, - "value": 30102657, + "value": 31762724, }, { "category": "Pet", @@ -23283,14 +26642,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mining Axolotl", "sh": true, }, - "value": 586426, + "value": 653548, }, { "category": "Pet", "configData": { "id": "Jolly Cat", }, - "value": 642460501, + "value": 646904692, }, { "category": "Pet", @@ -23298,7 +26657,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Lunar Moth", "pt": 1, }, - "value": 5765050, + "value": 6569869, + }, + { + "category": "Misc", + "configData": { + "id": "Gold Christmas Ornament", + }, + "value": 2260161, }, { "category": "Pet", @@ -23306,7 +26672,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Colorful Slime", "sh": true, }, - "value": 357761, + "value": 398911, }, { "category": "Pet", @@ -23314,14 +26680,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mining Cat", "pt": 1, }, - "value": 15796036, + "value": 16789258, }, { "category": "Pet", "configData": { "id": "Mrs. Claws", }, - "value": 174744, + "value": 175378, }, { "category": "Pet", @@ -23329,7 +26695,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frost Axolotl", "sh": true, }, - "value": 53207830, + "value": 52884270, }, { "category": "Pet", @@ -23337,7 +26703,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Calico Cat", "pt": 1, }, - "value": 12365326, + "value": 14338687, }, { "category": "Pet", @@ -23345,7 +26711,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hamster", "pt": 1, }, - "value": 24996931, + "value": 26832570, }, { "category": "Pet", @@ -23353,7 +26719,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hamster", "pt": 2, }, - "value": 8908373, + "value": 9287976, }, { "category": "Pet", @@ -23361,7 +26727,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Calico Cat", "pt": 2, }, - "value": 5296839, + "value": 5746565, }, { "category": "Pet", @@ -23369,7 +26735,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tulip Hedgehog", "pt": 1, }, - "value": 20319587, + "value": 21800762, }, { "category": "Pet", @@ -23377,35 +26743,35 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tulip Hedgehog", "pt": 2, }, - "value": 7153725, + "value": 7418012, }, { "category": "Pet", "configData": { "id": "Silver Dragon", }, - "value": 436911, + "value": 438432, }, { "category": "Pet", "configData": { "id": "Reindeer Corgi", }, - "value": 3518429, + "value": 3539599, }, { "category": "Pet", "configData": { "id": "Huge Hippomelon", }, - "value": 16365, + "value": 16430, }, { "category": "Pet", "configData": { "id": "Colorful Dragon", }, - "value": 94792140, + "value": 102988659, }, { "category": "Pet", @@ -23414,7 +26780,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 36529, + "value": 39986, }, { "category": "Pet", @@ -23423,7 +26789,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 15470, + "value": 16197, }, { "category": "Pet", @@ -23431,7 +26797,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Colorful Dragon", "pt": 2, }, - "value": 6466322, + "value": 6746088, }, { "category": "Pet", @@ -23439,7 +26805,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jolly Penguin", "sh": true, }, - "value": 9668227, + "value": 9591159, }, { "category": "Pet", @@ -23447,7 +26813,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hamster", "sh": true, }, - "value": 418327, + "value": 477374, }, { "category": "Pet", @@ -23455,7 +26821,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tulip Hedgehog", "sh": true, }, - "value": 336438, + "value": 384651, }, { "category": "Pet", @@ -23463,7 +26829,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mining Cat", "sh": true, }, - "value": 306742, + "value": 341732, }, { "category": "Pet", @@ -23472,7 +26838,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 28751, + "value": 29726, }, { "category": "Pet", @@ -23480,7 +26846,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shiba", "sh": true, }, - "value": 680996, + "value": 744409, }, { "category": "Pet", @@ -23489,7 +26855,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1113278, + "value": 1106602, }, { "category": "Pet", @@ -23498,7 +26864,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 19853, + "value": 22295, }, { "category": "Pet", @@ -23507,7 +26873,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 40513, + "value": 44787, }, { "category": "Pet", @@ -23515,14 +26881,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Colorful Wisp", "sh": true, }, - "value": 202522, + "value": 223297, }, { "category": "Pet", "configData": { "id": "Candycane Unicorn", }, - "value": 1709791, + "value": 1727055, }, { "category": "Pet", @@ -23530,7 +26896,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Colorful Rock", "sh": true, }, - "value": 182181, + "value": 194784, }, { "category": "Pet", @@ -23539,7 +26905,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 27729, + "value": 28721, }, { "category": "Pet", @@ -23547,7 +26913,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Colorful Firefly", "sh": true, }, - "value": 251885, + "value": 274167, }, { "category": "Pet", @@ -23556,7 +26922,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 38771, + "value": 40310, }, { "category": "Pet", @@ -23564,7 +26930,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Orange Axolotl", "pt": 2, }, - "value": 16829, + "value": 14128, }, { "category": "Pet", @@ -23573,7 +26939,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 50858, + "value": 58420, }, { "category": "Pet", @@ -23581,14 +26947,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Calico Cat", "sh": true, }, - "value": 173572, + "value": 210247, }, { "category": "Pet", "configData": { "id": "Huge Strawberry Corgi", }, - "value": 29258, + "value": 29409, }, { "category": "Pet", @@ -23597,7 +26963,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 14652, + "value": 15260, }, { "category": "Pet", @@ -23606,7 +26972,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 5391304, + "value": 5358259, }, { "category": "Pet", @@ -23615,7 +26981,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 2671936, + "value": 2638952, }, { "category": "Pet", @@ -23624,7 +26990,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5821661, + "value": 5751585, }, { "category": "Pet", @@ -23632,7 +26998,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dragonfruit Dragon", "sh": true, }, - "value": 4312, + "value": 3571, }, { "category": "Pet", @@ -23640,7 +27006,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blueberry Cow", "sh": true, }, - "value": 16273, + "value": 12873, }, { "category": "Pet", @@ -23649,7 +27015,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 16940, + "value": 17888, }, { "category": "Pet", @@ -23658,14 +27024,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 19502, + "value": 21854, }, { "category": "Pet", "configData": { "id": "Huge Wizard Westie", }, - "value": 202170, + "value": 209913, }, { "category": "Pet", @@ -23673,7 +27039,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Colorful Dragon", "pt": 1, }, - "value": 12585786, + "value": 14245250, }, { "category": "Pet", @@ -23682,7 +27048,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 744685, + "value": 736800, }, { "category": "Pet", @@ -23691,7 +27057,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 16364, + "value": 17709, }, { "category": "Pet", @@ -23699,7 +27065,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Lunar Moth", "sh": true, }, - "value": 91769, + "value": 97724, }, { "category": "Pet", @@ -23707,7 +27073,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jolly Cat", "sh": true, }, - "value": 1232245, + "value": 1235307, }, { "category": "Pet", @@ -23716,7 +27082,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 25276, + "value": 31222, }, { "category": "Pet", @@ -23724,7 +27090,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Orange Axolotl", "sh": true, }, - "value": 11368, + "value": 9179, }, { "category": "Pet", @@ -23733,7 +27099,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 22140, + "value": 23638, }, { "category": "Pet", @@ -23742,7 +27108,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 14743, + "value": 17113, }, { "category": "Pet", @@ -23751,14 +27117,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 17536, + "value": 18830, }, { "category": "Pet", "configData": { "id": "Titanic Banana Cat", }, - "value": 1168, + "value": 1169, }, { "category": "Pet", @@ -23767,7 +27133,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 23806, + "value": 32736, }, { "category": "Pet", @@ -23776,21 +27142,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 93956, + "value": 93906, }, { "category": "Pet", "configData": { "id": "Santa Paws", }, - "value": 959972, + "value": 971208, }, { "category": "Pet", "configData": { "id": "Snowflake Pegasus", }, - "value": 1317603, + "value": 1331156, }, { "category": "Pet", @@ -23799,7 +27165,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 118874, + "value": 122254, }, { "category": "Pet", @@ -23808,7 +27174,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 38440, + "value": 42960, }, { "category": "Pet", @@ -23825,7 +27191,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 21587, + "value": 25521, }, { "category": "Pet", @@ -23834,7 +27200,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 21288, + "value": 26186, }, { "category": "Pet", @@ -23843,7 +27209,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 31298, + "value": 35214, }, { "category": "Pet", @@ -23852,7 +27218,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 9658, + "value": 10671, }, { "category": "Pet", @@ -23861,7 +27227,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 18431, + "value": 20169, }, { "category": "Pet", @@ -23870,7 +27236,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 12438, + "value": 17314, }, { "category": "Pet", @@ -23878,7 +27244,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Colorful Dragon", "sh": true, }, - "value": 206303, + "value": 220940, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Sleigh", + }, + "value": 5356, }, { "category": "Pet", @@ -23886,7 +27259,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Strawberry Corgi", "pt": 2, }, - "value": 595, + "value": 596, }, { "category": "Pet", @@ -23894,7 +27267,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Hippomelon", "pt": 2, }, - "value": 329, + "value": 330, }, { "category": "Pet", @@ -23902,7 +27275,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Strawberry Corgi", "sh": true, }, - "value": 702, + "value": 708, }, { "category": "Pet", @@ -23911,7 +27284,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 18036, + "value": 21494, }, { "category": "Pet", @@ -23920,7 +27293,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 23936, + "value": 37802, }, { "category": "Pet", @@ -23928,7 +27301,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Banana Cat", "pt": 2, }, - "value": 24, + "value": 25, }, { "category": "Pet", @@ -23936,7 +27309,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Candycane", "pt": 1, }, - "value": 16527, + "value": 17281, }, { "category": "Pet", @@ -23944,7 +27317,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gingerbread Cat", "pt": 1, }, - "value": 135713, + "value": 139200, }, { "category": "Pet", @@ -23952,7 +27325,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Present Dragon", "pt": 1, }, - "value": 23056, + "value": 23578, }, { "category": "Pet", @@ -23960,7 +27333,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Present Cat", "pt": 1, }, - "value": 5474, + "value": 5935, }, { "category": "Pet", @@ -23968,7 +27341,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Hippomelon", "sh": true, }, - "value": 413, + "value": 420, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Doodle", + }, + "value": 383989, }, { "category": "Pet", @@ -23977,7 +27357,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 237, + "value": 236, }, { "category": "Pet", @@ -23985,7 +27365,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Candycane Unicorn", "pt": 1, }, - "value": 19592, + "value": 20257, }, { "category": "Pet", @@ -23993,7 +27373,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Snowflake Pegasus", "pt": 1, }, - "value": 13814, + "value": 14118, }, { "category": "Pet", @@ -24002,7 +27382,112 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 325, + "value": 303, + }, + { + "category": "Lootbox", + "configData": { + "id": "Small Christmas Present", + }, + "value": 484390367, + }, + { + "category": "Fruit", + "configData": { + "id": "Candycane", + }, + "value": 124829834, + }, + { + "category": "Fruit", + "configData": { + "id": "Banana", + }, + "value": 301274260475, + }, + { + "category": "Fruit", + "configData": { + "id": "Apple", + }, + "value": 293152230096, + }, + { + "category": "Seed", + "configData": { + "id": "Potion", + }, + "value": 9243939553, + }, + { + "category": "Fruit", + "configData": { + "id": "Orange", + }, + "value": 318215520762, + }, + { + "category": "Lootbox", + "configData": { + "id": "Medium Christmas Present", + }, + "value": 177436272, + }, + { + "category": "Fruit", + "configData": { + "id": "Rainbow", + }, + "value": 75447507665, + }, + { + "category": "Lootbox", + "configData": { + "id": "Large Christmas Present", + }, + "value": 55146182, + }, + { + "category": "Seed", + "configData": { + "id": "Diamond", + }, + "value": 1026966077, + }, + { + "category": "Fruit", + "configData": { + "id": "Pineapple", + }, + "value": 305689953910, + }, + { + "category": "Lootbox", + "configData": { + "id": "X-Large Christmas Present", + }, + "value": 13420439, + }, + { + "category": "Seed", + "configData": { + "id": "Coin", + }, + "value": 12449919988, + }, + { + "category": "Seed", + "configData": { + "id": "Gift", + }, + "value": 1291709793, + }, + { + "category": "Lootbox", + "configData": { + "id": "Titanic Christmas Present", + }, + "value": 2791936, }, { "category": "Pet", @@ -24010,7 +27495,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gingerbread Cat", "sh": true, }, - "value": 62311, + "value": 62618, }, { "category": "Pet", @@ -24018,7 +27503,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gingerbread Corgi", "sh": true, }, - "value": 31260, + "value": 31363, }, { "category": "Pet", @@ -24026,7 +27511,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Reindeer Cat", "sh": true, }, - "value": 31656, + "value": 32028, }, { "category": "Pet", @@ -24034,7 +27519,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Festive Cardinal", "sh": true, }, - "value": 15541, + "value": 15606, }, { "category": "Pet", @@ -24042,7 +27527,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rudolf", "sh": true, }, - "value": 8013, + "value": 8103, }, { "category": "Pet", @@ -24050,7 +27535,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Present Cat", "sh": true, }, - "value": 8010, + "value": 8117, }, { "category": "Pet", @@ -24058,7 +27543,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Candycane", "sh": true, }, - "value": 18077, + "value": 18087, }, { "category": "Pet", @@ -24066,7 +27551,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "North Pole Wolf", "sh": true, }, - "value": 9193, + "value": 9221, }, { "category": "Pet", @@ -24074,7 +27559,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Candycane Unicorn", "sh": true, }, - "value": 8291, + "value": 8500, }, { "category": "Pet", @@ -24082,7 +27567,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Reindeer Corgi", "sh": true, }, - "value": 16129, + "value": 16326, }, { "category": "Pet", @@ -24090,7 +27575,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Snowflake Pegasus", "sh": true, }, - "value": 6489, + "value": 6585, }, { "category": "Pet", @@ -24098,7 +27583,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Present Dragon", "sh": true, }, - "value": 8870, + "value": 9089, }, { "category": "Pet", @@ -24106,7 +27591,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nutcracker Cat", "sh": true, }, - "value": 4479, + "value": 4476, }, { "category": "Pet", @@ -24114,7 +27599,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Silver Dragon", "sh": true, }, - "value": 2091, + "value": 2093, }, { "category": "Pet", @@ -24122,7 +27607,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Silver Stag", "sh": true, }, - "value": 3963, + "value": 4021, }, { "category": "Pet", @@ -24130,7 +27615,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mrs. Claws", "sh": true, }, - "value": 804, + "value": 808, }, { "category": "Pet", @@ -24138,7 +27623,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gingerbread Corgi", "pt": 1, }, - "value": 36184, + "value": 37776, }, { "category": "Pet", @@ -24146,7 +27631,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Santa Paws", "sh": true, }, - "value": 4741, + "value": 4844, }, { "category": "Pet", @@ -24154,7 +27639,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Festive Cardinal", "pt": 1, }, - "value": 8355, + "value": 9019, }, { "category": "Pet", @@ -24162,14 +27647,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Reindeer Cat", "pt": 1, }, - "value": 33884, + "value": 35275, }, { "category": "Pet", "configData": { "id": "Huge Jolly Narwhal", }, - "value": 70146, + "value": 81637, }, { "category": "Pet", @@ -24177,7 +27662,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "North Pole Wolf", "pt": 1, }, - "value": 2863, + "value": 3149, }, { "category": "Pet", @@ -24185,7 +27670,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rudolf", "pt": 1, }, - "value": 1709, + "value": 1989, }, { "category": "Pet", @@ -24193,7 +27678,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Silver Stag", "pt": 1, }, - "value": 1395, + "value": 1587, }, { "category": "Pet", @@ -24201,7 +27686,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Santa Paws", "pt": 1, }, - "value": 9894, + "value": 10101, }, { "category": "Pet", @@ -24209,7 +27694,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Present Dragon", "pt": 2, }, - "value": 499, + "value": 550, }, { "category": "Pet", @@ -24217,7 +27702,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Reindeer Corgi", "pt": 1, }, - "value": 7297, + "value": 7911, }, { "category": "Pet", @@ -24226,7 +27711,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 312, + "value": 491, }, { "category": "Pet", @@ -24234,7 +27719,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gingerbread Cat", "pt": 2, }, - "value": 1252, + "value": 1736, }, { "category": "Pet", @@ -24242,7 +27727,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Candycane Unicorn", "pt": 2, }, - "value": 438, + "value": 456, }, { "category": "Pet", @@ -24250,14 +27735,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Snowflake Pegasus", "pt": 2, }, - "value": 287, + "value": 339, }, { "category": "Pet", "configData": { "id": "Titanic Silver Dragon", }, - "value": 946, + "value": 998, }, { "category": "Pet", @@ -24265,7 +27750,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gingerbread Corgi", "pt": 2, }, - "value": 426, + "value": 631, + }, + { + "category": "Booth", + "configData": { + "id": "Christmas", + }, + "value": 1369466, }, { "category": "Pet", @@ -24273,7 +27765,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nutcracker Cat", "pt": 1, }, - "value": 740, + "value": 857, }, { "category": "Pet", @@ -24282,7 +27774,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 117, + "value": 195, }, { "category": "Pet", @@ -24290,7 +27782,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Santa Paws", "pt": 2, }, - "value": 263, + "value": 307, }, { "category": "Pet", @@ -24306,7 +27798,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Titanic Fawn", }, - "value": 1194, + "value": 1205, }, { "category": "Pet", @@ -24315,7 +27807,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 325, + "value": 492, }, { "category": "Pet", @@ -24323,7 +27815,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Silver Dragon", "pt": 1, }, - "value": 507, + "value": 626, }, { "category": "Pet", @@ -24339,7 +27831,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Fire Horse", "pt": 2, }, - "value": 94, + "value": 122, }, { "category": "Pet", @@ -24362,7 +27854,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Titanic Reindeer", }, - "value": 1117, + "value": 1125, }, { "category": "Pet", @@ -24379,7 +27871,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 142, + "value": 215, }, { "category": "Pet", @@ -24388,7 +27880,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 41, + "value": 54, }, { "category": "Pet", @@ -24396,7 +27888,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mermaid Cat", "sh": true, }, - "value": 789, + "value": 1215, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Watermelon", + }, + "value": 309132, }, { "category": "Pet", @@ -24422,7 +27921,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 404, + "value": 661, }, { "category": "Pet", @@ -24447,7 +27946,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Angel Cat", "pt": 2, }, - "value": 21, + "value": 36, + }, + { + "category": "Enchant", + "configData": { + "id": "Chest Breaker", + "tn": 1, + }, + "value": 397969, }, { "category": "Pet", @@ -24455,35 +27962,58 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Candycane", "pt": 2, }, - "value": 147, + "value": 235, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 19", + }, + "value": 1302273, }, { "category": "Pet", "configData": { "id": "Ice Snowman", }, - "value": 274901149, + "value": 302148246, }, { "category": "Pet", "configData": { "id": "Ice Penguin", }, - "value": 381517036, + "value": 414047445, }, { "category": "Pet", "configData": { "id": "Ice Corgi", }, - "value": 147146287, + "value": 162565003, }, { "category": "Pet", "configData": { "id": "North Pole Bunny", }, - "value": 159865392, + "value": 171213022, + }, + { + "category": "Potion", + "configData": { + "id": "Damage", + "tn": 7, + }, + "value": 4469966114, + }, + { + "category": "Potion", + "configData": { + "id": "Lucky", + "tn": 7, + }, + "value": 5759181473, }, { "category": "Pet", @@ -24491,7 +28021,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pajamas Dog", "pt": 2, }, - "value": 3755959666, + "value": 3708452833, }, { "category": "Pet", @@ -24499,28 +28029,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Train Conductor Cat", "pt": 1, }, - "value": 3582649241, + "value": 3566462915, }, { "category": "Pet", "configData": { "id": "Pajamas Dog", }, - "value": 70545721041, + "value": 69775799482, }, { "category": "Pet", "configData": { "id": "Train Conductor Cat", }, - "value": 31428589511, + "value": 31094796889, }, { "category": "Pet", "configData": { "id": "Train Conductor Dog", }, - "value": 6061670597, + "value": 5997541766, }, { "category": "Pet", @@ -24528,7 +28058,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Train Conductor Cat", "pt": 2, }, - "value": 1748951209, + "value": 1725631662, }, { "category": "Pet", @@ -24536,7 +28066,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pajamas Dog", "pt": 1, }, - "value": 7882768496, + "value": 7846159296, + }, + { + "category": "Enchant", + "configData": { + "id": "Coins", + "tn": 6, + }, + "value": 3118438472, }, { "category": "Pet", @@ -24544,7 +28082,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ice Corgi", "pt": 1, }, - "value": 14668217, + "value": 16015329, }, { "category": "Pet", @@ -24552,7 +28090,55 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ice Snowman", "pt": 1, }, - "value": 29998714, + "value": 32965790, + }, + { + "category": "Potion", + "configData": { + "id": "Coins", + "tn": 7, + }, + "value": 11787942021, + }, + { + "category": "Potion", + "configData": { + "id": "Diamonds", + "tn": 5, + }, + "value": 39194784301, + }, + { + "category": "Enchant", + "configData": { + "id": "Tap Power", + "tn": 6, + }, + "value": 4776357177, + }, + { + "category": "Enchant", + "configData": { + "id": "Criticals", + "tn": 6, + }, + "value": 1200890381, + }, + { + "category": "Enchant", + "configData": { + "id": "Lucky Eggs", + "tn": 6, + }, + "value": 2521262718, + }, + { + "category": "Enchant", + "configData": { + "id": "Strong Pets", + "tn": 6, + }, + "value": 3377576378, }, { "category": "Pet", @@ -24560,7 +28146,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Train Conductor Dog", "pt": 1, }, - "value": 814408361, + "value": 810223732, }, { "category": "Pet", @@ -24568,7 +28154,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Train Conductor Cat", "sh": true, }, - "value": 59113580, + "value": 58685492, }, { "category": "Pet", @@ -24576,14 +28162,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pajamas Dog", "sh": true, }, - "value": 132130614, + "value": 131064544, }, { "category": "Pet", "configData": { "id": "Teddy Bear", }, - "value": 762361509, + "value": 774527304, }, { "category": "Pet", @@ -24591,7 +28177,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Train Conductor Dog", "pt": 2, }, - "value": 498931519, + "value": 491853829, }, { "category": "Pet", @@ -24599,7 +28185,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Teddy Bear", "pt": 2, }, - "value": 60968759, + "value": 60595223, }, { "category": "Pet", @@ -24607,7 +28193,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ice Penguin", "pt": 1, }, - "value": 44992556, + "value": 47270960, }, { "category": "Pet", @@ -24615,7 +28201,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Silver Moose", "pt": 2, }, - "value": 17502347, + "value": 17648082, }, { "category": "Pet", @@ -24623,28 +28209,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ice Penguin", "pt": 2, }, - "value": 22897780, + "value": 23169932, }, { "category": "Pet", "configData": { "id": "Silver Moose", }, - "value": 292951102, + "value": 318017217, }, { "category": "Pet", "configData": { "id": "Silver Bison", }, - "value": 41369278, + "value": 44097192, }, { "category": "Pet", "configData": { "id": "Pajamas Cat", }, - "value": 4631752, + "value": 4950458, }, { "category": "Pet", @@ -24652,14 +28238,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Silver Moose", "pt": 1, }, - "value": 35025285, + "value": 36401615, }, { "category": "Pet", "configData": { "id": "Holiday Pegasus", }, - "value": 614208, + "value": 535569, }, { "category": "Pet", @@ -24667,7 +28253,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ice Snowman", "sh": true, }, - "value": 556896, + "value": 612240, }, { "category": "Pet", @@ -24675,14 +28261,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ice Snowman", "pt": 2, }, - "value": 12841606, + "value": 13346241, }, { "category": "Pet", "configData": { "id": "Frost Fox", }, - "value": 123998274, + "value": 139086273, }, { "category": "Pet", @@ -24690,28 +28276,36 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ice Corgi", "pt": 2, }, - "value": 6147439, + "value": 6371277, }, { "category": "Pet", "configData": { "id": "Hot Cocoa Cat", }, - "value": 84800216, + "value": 94756677, }, { "category": "Pet", "configData": { "id": "Frost Rabbit", }, - "value": 178702358, + "value": 198832763, }, { "category": "Pet", "configData": { "id": "Holiday Balloon Cat", }, - "value": 429260, + "value": 376135, + }, + { + "category": "Potion", + "configData": { + "id": "Treasure Hunter", + "tn": 7, + }, + "value": 208801784429, }, { "category": "Pet", @@ -24719,7 +28313,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Train Conductor Dog", "sh": true, }, - "value": 11901174, + "value": 11798361, }, { "category": "Pet", @@ -24727,7 +28321,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Teddy Bear", "pt": 1, }, - "value": 102691909, + "value": 104010016, }, { "category": "Pet", @@ -24735,7 +28329,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "North Pole Bunny", "pt": 2, }, - "value": 14719313, + "value": 15059437, }, { "category": "Pet", @@ -24743,7 +28337,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Snowflake Dominus", "pt": 1, }, - "value": 13110274, + "value": 14296500, + }, + { + "category": "Enchant", + "configData": { + "id": "Treasure Hunter", + "tn": 6, + }, + "value": 1846384038, }, { "category": "Pet", @@ -24752,7 +28354,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 13747943, + "value": 13675143, }, { "category": "Pet", @@ -24761,14 +28363,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 7457355, + "value": 7357215, }, { "category": "Pet", "configData": { "id": "Peppermint Angelus", }, - "value": 159675, + "value": 138272, }, { "category": "Pet", @@ -24776,7 +28378,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Holiday Pegasus", "sh": true, }, - "value": 12550, + "value": 10285, }, { "category": "Pet", @@ -24784,7 +28386,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "North Pole Bunny", "pt": 1, }, - "value": 27055999, + "value": 29056669, }, { "category": "Pet", @@ -24792,7 +28394,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Silver Bison", "pt": 2, }, - "value": 4335145, + "value": 4446003, }, { "category": "Pet", @@ -24800,7 +28402,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Silver Bison", "pt": 1, }, - "value": 7676649, + "value": 8360092, }, { "category": "Pet", @@ -24808,14 +28410,22 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frost Fox", "sh": true, }, - "value": 244606, + "value": 272027, + }, + { + "category": "Enchant", + "configData": { + "id": "Diamonds", + "tn": 6, + }, + "value": 9082718879, }, { "category": "Pet", "configData": { "id": "Snowflake Dominus", }, - "value": 89116930, + "value": 96450915, }, { "category": "Pet", @@ -24823,7 +28433,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pajamas Cat", "pt": 1, }, - "value": 831314, + "value": 904741, }, { "category": "Pet", @@ -24831,7 +28441,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ice Corgi", "sh": true, }, - "value": 290150, + "value": 319470, }, { "category": "Pet", @@ -24839,7 +28449,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Holiday Pegasus", "pt": 2, }, - "value": 12439, + "value": 10783, }, { "category": "Pet", @@ -24847,7 +28457,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frost Rabbit", "pt": 1, }, - "value": 17646273, + "value": 18957948, }, { "category": "Pet", @@ -24855,7 +28465,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frost Rabbit", "pt": 2, }, - "value": 7042760, + "value": 7185635, }, { "category": "Pet", @@ -24863,7 +28473,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frost Fox", "pt": 2, }, - "value": 5088569, + "value": 5190102, }, { "category": "Pet", @@ -24871,7 +28481,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hot Cocoa Cat", "pt": 2, }, - "value": 4592537, + "value": 4742573, }, { "category": "Pet", @@ -24879,7 +28489,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Teddy Bear", "sh": true, }, - "value": 1511490, + "value": 1529265, }, { "category": "Pet", @@ -24887,7 +28497,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Silver Moose", "sh": true, }, - "value": 635194, + "value": 681084, }, { "category": "Pet", @@ -24895,7 +28505,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frost Rabbit", "sh": true, }, - "value": 348771, + "value": 388451, }, { "category": "Pet", @@ -24903,7 +28513,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hot Cocoa Cat", "sh": true, }, - "value": 178116, + "value": 196751, }, { "category": "Pet", @@ -24912,7 +28522,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1446787, + "value": 1438219, }, { "category": "Pet", @@ -24921,7 +28531,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 6304498, + "value": 6266976, }, { "category": "Pet", @@ -24929,7 +28539,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Holiday Balloon Cat", "pt": 2, }, - "value": 8874, + "value": 7863, }, { "category": "Pet", @@ -24938,7 +28548,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3467328, + "value": 3421213, }, { "category": "Pet", @@ -24946,7 +28556,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ice Penguin", "sh": true, }, - "value": 829770, + "value": 891319, }, { "category": "Pet", @@ -24954,7 +28564,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frost Fox", "pt": 1, }, - "value": 12358433, + "value": 13358999, }, { "category": "Pet", @@ -24962,7 +28572,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hot Cocoa Cat", "pt": 1, }, - "value": 10089718, + "value": 11280129, }, { "category": "Pet", @@ -24970,14 +28580,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "North Pole Bunny", "sh": true, }, - "value": 391304, + "value": 412819, }, { "category": "Pet", "configData": { "id": "Huge Peppermint Angelus", }, - "value": 8623, + "value": 8671, }, { "category": "Pet", @@ -24985,7 +28595,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Snowflake Dominus", "pt": 2, }, - "value": 6688535, + "value": 6942153, }, { "category": "Pet", @@ -24994,7 +28604,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 49020, + "value": 68440, }, { "category": "Pet", @@ -25003,7 +28613,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 34793, + "value": 39477, }, { "category": "Pet", @@ -25011,7 +28621,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pajamas Cat", "pt": 2, }, - "value": 486166, + "value": 499272, }, { "category": "Pet", @@ -25019,7 +28629,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Silver Bison", "sh": true, }, - "value": 105307, + "value": 109887, }, { "category": "Pet", @@ -25028,7 +28638,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 91958, + "value": 100854, }, { "category": "Pet", @@ -25037,7 +28647,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 64559, + "value": 66641, }, { "category": "Pet", @@ -25046,7 +28656,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 16616, + "value": 20407, }, { "category": "Pet", @@ -25055,14 +28665,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1019046, + "value": 1005426, }, { "category": "Pet", "configData": { "id": "Huge Holiday Pegasus", }, - "value": 15299, + "value": 15370, }, { "category": "Pet", @@ -25070,7 +28680,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Peppermint Angelus", "pt": 2, }, - "value": 3280, + "value": 3021, }, { "category": "Pet", @@ -25079,7 +28689,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 153615, + "value": 158711, }, { "category": "Pet", @@ -25087,7 +28697,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Peppermint Angelus", "sh": true, }, - "value": 195, + "value": 197, }, { "category": "Pet", @@ -25095,7 +28705,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Peppermint Angelus", "sh": true, }, - "value": 3291, + "value": 2780, }, { "category": "Pet", @@ -25103,7 +28713,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Holiday Balloon Cat", "sh": true, }, - "value": 8859, + "value": 7430, }, { "category": "Pet", @@ -25112,7 +28722,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 69179, + "value": 73112, }, { "category": "Pet", @@ -25121,7 +28731,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 44332, + "value": 46799, }, { "category": "Pet", @@ -25130,7 +28740,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 48737, + "value": 49832, }, { "category": "Pet", @@ -25138,7 +28748,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Snowflake Dominus", "sh": true, }, - "value": 204429, + "value": 215688, }, { "category": "Pet", @@ -25147,7 +28757,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 21467, + "value": 23470, }, { "category": "Pet", @@ -25156,7 +28766,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13442, + "value": 14288, }, { "category": "Pet", @@ -25165,7 +28775,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 123437, + "value": 123503, }, { "category": "Pet", @@ -25174,7 +28784,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 283, + "value": 281, }, { "category": "Pet", @@ -25183,7 +28793,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 20839, + "value": 23018, }, { "category": "Pet", @@ -25192,7 +28802,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 71913, + "value": 79163, }, { "category": "Pet", @@ -25201,7 +28811,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 18953, + "value": 22160, }, { "category": "Pet", @@ -25218,7 +28828,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Holiday Pegasus", "pt": 2, }, - "value": 325, + "value": 328, }, { "category": "Pet", @@ -25226,7 +28836,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pajamas Cat", "sh": true, }, - "value": 11720, + "value": 12175, }, { "category": "Pet", @@ -25244,7 +28854,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 26196, + "value": 29025, }, { "category": "Pet", @@ -25253,7 +28863,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13121, + "value": 13810, }, { "category": "Pet", @@ -25262,7 +28872,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13553, + "value": 13938, }, { "category": "Pet", @@ -25280,7 +28890,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 198, + "value": 195, }, { "category": "Pet", @@ -25288,7 +28898,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Holiday Pegasus", "sh": true, }, - "value": 345, + "value": 352, }, { "category": "Pet", @@ -25296,7 +28906,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Peppermint Angelus", "pt": 2, }, - "value": 188, + "value": 191, }, { "category": "Pet", @@ -25305,7 +28915,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 28018, + "value": 31270, }, { "category": "Pet", @@ -25314,7 +28924,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 18389, + "value": 18777, }, { "category": "Pet", @@ -25323,7 +28933,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 19445, + "value": 20902, }, { "category": "Pet", @@ -25332,7 +28942,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 19286, + "value": 21499, }, { "category": "Pet", @@ -25350,7 +28960,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1523, + "value": 1679, }, { "category": "Pet", @@ -25359,7 +28969,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2170, + "value": 2463, }, { "category": "Pet", @@ -25376,7 +28986,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 71, + "value": 70, }, { "category": "Pet", @@ -25384,7 +28994,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Reindeer Cat", "pt": 2, }, - "value": 315, + "value": 460, }, { "category": "Pet", @@ -25392,7 +29002,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Dove", "pt": 2, }, - "value": 35, + "value": 64, }, { "category": "Pet", @@ -25409,7 +29019,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Silver Dragon", "sh": true, }, - "value": 13, + "value": 14, }, { "category": "Pet", @@ -25418,7 +29028,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13, + "value": 16, }, { "category": "Pet", @@ -25434,7 +29044,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Giraffe", "sh": true, }, - "value": 1712, + "value": 2841, }, { "category": "Pet", @@ -25443,7 +29053,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 52, + "value": 76, }, { "category": "Pet", @@ -25452,7 +29062,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 35, + "value": 43, }, { "category": "Pet", @@ -25460,7 +29070,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Dove", "sh": true, }, - "value": 29, + "value": 61, }, { "category": "Pet", @@ -25469,7 +29079,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12, + "value": 14, }, { "category": "Pet", @@ -25478,7 +29088,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 21, + "value": 36, }, { "category": "Pet", @@ -25487,7 +29097,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 109, + "value": 165, }, { "category": "Pet", @@ -25496,7 +29106,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 20, + "value": 22, }, { "category": "Pet", @@ -25505,7 +29115,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 6, + "value": 7, }, { "category": "Pet", @@ -25514,7 +29124,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 11, + "value": 12, }, { "category": "Pet", @@ -25523,7 +29133,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 313, + "value": 564, }, { "category": "Pet", @@ -25532,7 +29142,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8, + "value": 11, }, { "category": "Pet", @@ -25576,7 +29186,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 32, + "value": 45, }, { "category": "Pet", @@ -25585,7 +29195,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 30, + "value": 40, }, { "category": "Pet", @@ -25593,7 +29203,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Poseidon Corgi", "pt": 2, }, - "value": 4899, + "value": 5180, }, { "category": "Pet", @@ -25608,7 +29218,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Huge Fox", }, - "value": 2390, + "value": 2569, }, { "category": "Pet", @@ -25616,7 +29226,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Festive Cardinal", "pt": 2, }, - "value": 143, + "value": 235, }, { "category": "Pet", @@ -25624,7 +29234,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Reindeer Corgi", "pt": 2, }, - "value": 116, + "value": 177, }, { "category": "Pet", @@ -25632,7 +29242,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "North Pole Wolf", "pt": 2, }, - "value": 53, + "value": 87, }, { "category": "Pet", @@ -25641,7 +29251,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 2, + "value": 3, }, { "category": "Pet", @@ -25649,7 +29259,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mrs. Claws", "pt": 1, }, - "value": 195, + "value": 213, }, { "category": "Pet", @@ -25658,7 +29268,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 230, + "value": 430, }, { "category": "Pet", @@ -25666,7 +29276,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Present Cat", "pt": 2, }, - "value": 114, + "value": 183, }, { "category": "Pet", @@ -25674,7 +29284,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rudolf", "pt": 2, }, - "value": 51, + "value": 75, }, { "category": "Pet", @@ -25683,7 +29293,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 64, + "value": 137, }, { "category": "Pet", @@ -25692,7 +29302,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 64, + "value": 115, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Red Present", + }, + "value": 143, + }, + { + "category": "Booth", + "configData": { + "id": "Present", + }, + "value": 2275, }, { "category": "Pet", @@ -25707,7 +29331,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Silver Stag", "pt": 2, }, - "value": 47, + "value": 82, }, { "category": "Pet", @@ -25716,7 +29340,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 457, + "value": 840, }, { "category": "Pet", @@ -25724,7 +29348,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nutcracker Cat", "pt": 2, }, - "value": 26, + "value": 41, }, { "category": "Pet", @@ -25735,27 +29359,42 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 1, }, + { + "category": "Hoverboard", + "configData": { + "id": "Noob", + }, + "value": 28165, + }, + { + "category": "Enchant", + "configData": { + "id": "Party Time", + "tn": 1, + }, + "value": 53114, + }, { "category": "Pet", "configData": { "id": "Orange Parrot", "pt": 2, }, - "value": 6417818, + "value": 6552273, }, { "category": "Pet", "configData": { "id": "Cold Firefly", }, - "value": 323713755, + "value": 357877007, }, { "category": "Pet", "configData": { "id": "Orange Parrot", }, - "value": 159268702, + "value": 176152124, }, { "category": "Pet", @@ -25763,14 +29402,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cold Firefly", "pt": 1, }, - "value": 33549935, + "value": 36186112, }, { "category": "Pet", "configData": { "id": "Golden Retriever", }, - "value": 271128071, + "value": 301986733, }, { "category": "Pet", @@ -25778,7 +29417,69 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cold Firefly", "pt": 2, }, - "value": 13523608, + "value": 13950335, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Banana", + }, + "value": 83372, + }, + { + "category": "Enchant", + "configData": { + "id": "Diamond Chest Mimic", + "tn": 1, + }, + "value": 22738, + }, + { + "category": "Enchant", + "configData": { + "id": "Lucky Eggs", + "tn": 7, + }, + "value": 3901002488, + }, + { + "category": "Enchant", + "configData": { + "id": "Strong Pets", + "tn": 7, + }, + "value": 2842691919, + }, + { + "category": "Enchant", + "configData": { + "id": "Coins", + "tn": 7, + }, + "value": 3263408486, + }, + { + "category": "Enchant", + "configData": { + "id": "Criticals", + "tn": 7, + }, + "value": 2242035967, + }, + { + "category": "Potion", + "configData": { + "id": "Lucky", + "tn": 8, + }, + "value": 1157495738, + }, + { + "category": "Hoverboard", + "configData": { + "id": "UFO", + }, + "value": 16613, }, { "category": "Pet", @@ -25786,14 +29487,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Orange Parrot", "pt": 1, }, - "value": 16013905, + "value": 17111485, }, { "category": "Pet", "configData": { "id": "Tabby Cat", }, - "value": 72634341, + "value": 80244346, }, { "category": "Pet", @@ -25801,35 +29502,35 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Golden Retriever", "pt": 1, }, - "value": 30329876, + "value": 32752681, }, { "category": "Pet", "configData": { "id": "Goblin", }, - "value": 144843837, + "value": 158864000, }, { "category": "Pet", "configData": { "id": "Relic Bat", }, - "value": 119159836, + "value": 131947062, }, { "category": "Pet", "configData": { "id": "Potion Poodle", }, - "value": 235798888946, + "value": 232075176335, }, { "category": "Pet", "configData": { "id": "Relic Agony", }, - "value": 130869147, + "value": 141412762, }, { "category": "Pet", @@ -25837,7 +29538,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Orange Parrot", "sh": true, }, - "value": 320908, + "value": 350781, }, { "category": "Pet", @@ -25845,14 +29546,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Golden Retriever", "pt": 2, }, - "value": 14069773, + "value": 14360899, }, { "category": "Pet", "configData": { "id": "Cold Butterfly", }, - "value": 53825446, + "value": 64943212, }, { "category": "Pet", @@ -25860,7 +29561,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cold Ladybug", "pt": 2, }, - "value": 11612856, + "value": 12258953, }, { "category": "Pet", @@ -25868,7 +29569,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cold Ladybug", "pt": 1, }, - "value": 26924277, + "value": 30412163, }, { "category": "Pet", @@ -25876,7 +29577,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cold Butterfly", "pt": 1, }, - "value": 8237166, + "value": 10568225, }, { "category": "Pet", @@ -25885,14 +29586,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13545, + "value": 15611, }, { "category": "Pet", "configData": { "id": "Cold Ladybug", }, - "value": 261313553, + "value": 308172865, }, { "category": "Pet", @@ -25900,7 +29601,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cold Butterfly", "pt": 2, }, - "value": 4407971, + "value": 4868868, }, { "category": "Pet", @@ -25908,14 +29609,22 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cold Firefly", "sh": true, }, - "value": 657508, + "value": 723647, + }, + { + "category": "Enchant", + "configData": { + "id": "Massive Comet", + "tn": 1, + }, + "value": 43667, }, { "category": "Pet", "configData": { "id": "Rock Dog", }, - "value": 356011583, + "value": 392763419, }, { "category": "Pet", @@ -25923,7 +29632,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Enchanted Raccoon", "pt": 2, }, - "value": 17280288, + "value": 17558934, }, { "category": "Pet", @@ -25931,28 +29640,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rock Dog", "pt": 2, }, - "value": 21220482, + "value": 21413731, }, { "category": "Pet", "configData": { "id": "Enchanted Dragon", }, - "value": 96390528, + "value": 104368918, }, { "category": "Pet", "configData": { "id": "Rock Cat", }, - "value": 120230137, + "value": 130917676, }, { "category": "Pet", "configData": { "id": "Enchanted Raccoon", }, - "value": 363516674, + "value": 393896377, }, { "category": "Pet", @@ -25960,7 +29669,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Enchanted Raccoon", "pt": 1, }, - "value": 38352783, + "value": 40546156, }, { "category": "Pet", @@ -25968,7 +29677,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rock Cat", "pt": 1, }, - "value": 13152331, + "value": 14079772, }, { "category": "Pet", @@ -25976,7 +29685,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Enchanted Dragon", "pt": 1, }, - "value": 12711264, + "value": 14013416, }, { "category": "Pet", @@ -25984,7 +29693,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rock Dog", "pt": 1, }, - "value": 40129397, + "value": 41986317, }, { "category": "Pet", @@ -25992,14 +29701,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Enchanted Dragon", "pt": 2, }, - "value": 7159675, + "value": 7337326, + }, + { + "category": "Misc", + "configData": { + "id": "Firework Cannon", + }, + "value": 922743, + }, + { + "category": "Misc", + "configData": { + "id": "Fireworks", + }, + "value": 568489206, }, { "category": "Pet", "configData": { "id": "Enchanted Fox", }, - "value": 87218335, + "value": 97441766, }, { "category": "Pet", @@ -26007,7 +29730,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Enchanted Fox", "pt": 2, }, - "value": 5124412, + "value": 5244980, }, { "category": "Pet", @@ -26015,7 +29738,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Enchanted Fox", "pt": 1, }, - "value": 10198422, + "value": 11252780, }, { "category": "Pet", @@ -26023,7 +29746,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tabby Cat", "pt": 2, }, - "value": 5744259, + "value": 5966417, }, { "category": "Pet", @@ -26031,7 +29754,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tabby Cat", "pt": 1, }, - "value": 10253662, + "value": 11608503, }, { "category": "Pet", @@ -26039,7 +29762,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Agony", "pt": 1, }, - "value": 19136457, + "value": 20956034, }, { "category": "Pet", @@ -26047,7 +29770,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rock Cat", "pt": 2, }, - "value": 6481256, + "value": 6602013, }, { "category": "Pet", @@ -26055,21 +29778,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Bat", "pt": 1, }, - "value": 14234738, + "value": 14916139, }, { "category": "Pet", "configData": { "id": "Relic Cyclops", }, - "value": 420043477, + "value": 459355038, }, { "category": "Pet", "configData": { "id": "Rock Dragon", }, - "value": 101725769, + "value": 110848739, }, { "category": "Pet", @@ -26077,7 +29800,23 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rock Dragon", "pt": 1, }, - "value": 14350362, + "value": 15235929, + }, + { + "category": "Enchant", + "configData": { + "id": "Treasure Hunter", + "tn": 7, + }, + "value": 3306054770, + }, + { + "category": "Enchant", + "configData": { + "id": "Tap Power", + "tn": 7, + }, + "value": 2775730111, }, { "category": "Pet", @@ -26086,7 +29825,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 40888, + "value": 42557, }, { "category": "Pet", @@ -26094,7 +29833,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tabby Cat", "sh": true, }, - "value": 174985, + "value": 187558, }, { "category": "Pet", @@ -26102,7 +29841,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Bat", "pt": 2, }, - "value": 8159457, + "value": 8225741, }, { "category": "Pet", @@ -26110,14 +29849,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Cyclops", "pt": 2, }, - "value": 27938711, + "value": 28280461, }, { "category": "Pet", "configData": { "id": "Owl", }, - "value": 106711424465, + "value": 104986806372, }, { "category": "Pet", @@ -26125,7 +29864,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Owl", "pt": 1, }, - "value": 13603273267, + "value": 13484340506, }, { "category": "Pet", @@ -26133,7 +29872,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Cyclops", "pt": 1, }, - "value": 49659479, + "value": 52316338, }, { "category": "Pet", @@ -26141,7 +29880,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Wizard Westie", "pt": 1, }, - "value": 3673010879, + "value": 3638915304, }, { "category": "Pet", @@ -26149,14 +29888,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Witch Cat", "pt": 2, }, - "value": 295573210, + "value": 290940031, }, { "category": "Pet", "configData": { "id": "Witch Cat", }, - "value": 2705220232, + "value": 2671376036, }, { "category": "Pet", @@ -26164,7 +29903,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Wizard Westie", "pt": 2, }, - "value": 2618920776, + "value": 2578363116, }, { "category": "Pet", @@ -26172,7 +29911,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Potion Poodle", "pt": 1, }, - "value": 29694643917, + "value": 29425568929, }, { "category": "Pet", @@ -26180,14 +29919,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Potion Poodle", "pt": 2, }, - "value": 18179907953, + "value": 17920349186, }, { "category": "Pet", "configData": { "id": "Wizard Westie", }, - "value": 24064106425, + "value": 23683029545, }, { "category": "Pet", @@ -26195,7 +29934,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Owl", "pt": 2, }, - "value": 8541209054, + "value": 8414983375, }, { "category": "Pet", @@ -26204,7 +29943,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 81349, + "value": 83451, }, { "category": "Pet", @@ -26212,7 +29951,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Golden Retriever", "sh": true, }, - "value": 580827, + "value": 638277, }, { "category": "Pet", @@ -26220,7 +29959,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rock Dog", "sh": true, }, - "value": 790360, + "value": 862335, }, { "category": "Pet", @@ -26228,7 +29967,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rock Dragon", "pt": 2, }, - "value": 9178082, + "value": 9278182, }, { "category": "Pet", @@ -26236,7 +29975,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Enchanted Raccoon", "sh": true, }, - "value": 756932, + "value": 819262, }, { "category": "Pet", @@ -26244,7 +29983,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cold Ladybug", "sh": true, }, - "value": 529434, + "value": 624745, }, { "category": "Pet", @@ -26253,7 +29992,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 25596, + "value": 27874, }, { "category": "Pet", @@ -26261,7 +30000,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rock Dragon", "sh": true, }, - "value": 256971, + "value": 270923, }, { "category": "Pet", @@ -26269,7 +30008,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Goblin", "pt": 1, }, - "value": 18017937, + "value": 19315633, }, { "category": "Pet", @@ -26277,7 +30016,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Goblin", "pt": 2, }, - "value": 10867273, + "value": 11042327, }, { "category": "Pet", @@ -26285,7 +30024,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Agony", "pt": 2, }, - "value": 12265053, + "value": 12566986, }, { "category": "Pet", @@ -26293,7 +30032,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Enchanted Dragon", "sh": true, }, - "value": 226231, + "value": 240110, }, { "category": "Pet", @@ -26301,7 +30040,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rock Cat", "sh": true, }, - "value": 258417, + "value": 277648, }, { "category": "Pet", @@ -26310,7 +30049,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 48670, + "value": 50191, }, { "category": "Pet", @@ -26319,7 +30058,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 23759, + "value": 32341, }, { "category": "Pet", @@ -26327,7 +30066,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Cyclops", "sh": true, }, - "value": 945181, + "value": 1026009, }, { "category": "Pet", @@ -26336,7 +30075,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 15269, + "value": 16198, }, { "category": "Pet", @@ -26345,7 +30084,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 103998, + "value": 112426, }, { "category": "Pet", @@ -26354,7 +30093,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 37998, + "value": 39700, }, { "category": "Pet", @@ -26362,7 +30101,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cold Butterfly", "sh": true, }, - "value": 129989, + "value": 153160, }, { "category": "Pet", @@ -26370,7 +30109,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Enchanted Fox", "sh": true, }, - "value": 193195, + "value": 210771, }, { "category": "Pet", @@ -26378,7 +30117,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Witch Cat", "pt": 1, }, - "value": 418838274, + "value": 415209229, }, { "category": "Pet", @@ -26386,7 +30125,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Owl", "sh": true, }, - "value": 225996569, + "value": 223325666, }, { "category": "Pet", @@ -26394,7 +30133,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Witch Cat", "sh": true, }, - "value": 6032878, + "value": 5954505, }, { "category": "Pet", @@ -26403,7 +30142,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 55959, + "value": 64868, + }, + { + "category": "Potion", + "configData": { + "id": "Coins", + "tn": 8, + }, + "value": 2171308479, }, { "category": "Pet", @@ -26412,7 +30159,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 67180, + "value": 75309, }, { "category": "Pet", @@ -26420,7 +30167,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Bat", "sh": true, }, - "value": 274963, + "value": 296316, }, { "category": "Pet", @@ -26429,7 +30176,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 19968, + "value": 25188, }, { "category": "Pet", @@ -26437,7 +30184,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Agony", "sh": true, }, - "value": 326876, + "value": 349058, }, { "category": "Pet", @@ -26445,7 +30192,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Wizard Westie", "sh": true, }, - "value": 53610543, + "value": 52930979, }, { "category": "Pet", @@ -26454,7 +30201,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 19712867, + "value": 19405539, }, { "category": "Pet", @@ -26463,7 +30210,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 21369, + "value": 22747, }, { "category": "Pet", @@ -26471,7 +30218,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Goblin", "sh": true, }, - "value": 336441, + "value": 363218, }, { "category": "Pet", @@ -26480,7 +30227,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 30869, + "value": 32332, + }, + { + "category": "Potion", + "configData": { + "id": "Diamonds", + "tn": 6, + }, + "value": 5345919670, }, { "category": "Pet", @@ -26488,7 +30243,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Potion Poodle", "sh": true, }, - "value": 496657867, + "value": 489791640, }, { "category": "Pet", @@ -26497,7 +30252,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 55425, + "value": 62196, }, { "category": "Pet", @@ -26506,7 +30261,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 46172, + "value": 56158, }, { "category": "Pet", @@ -26515,7 +30270,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 63553, + "value": 64423, }, { "category": "Pet", @@ -26524,14 +30279,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 81579, + "value": 85678, }, { "category": "Pet", "configData": { "id": "Broomstick Corgi", }, - "value": 128643597, + "value": 140515441, }, { "category": "Pet", @@ -26540,7 +30295,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 28747, + "value": 35020, }, { "category": "Pet", @@ -26549,7 +30304,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 24923, + "value": 28530, }, { "category": "Pet", @@ -26558,7 +30313,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 17760, + "value": 19329, }, { "category": "Pet", @@ -26567,7 +30322,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 41790036, + "value": 41137051, }, { "category": "Pet", @@ -26576,7 +30331,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 18806, + "value": 19628, }, { "category": "Pet", @@ -26585,7 +30340,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 28562, + "value": 29306, }, { "category": "Pet", @@ -26594,7 +30349,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 18393, + "value": 19066, }, { "category": "Pet", @@ -26602,7 +30357,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Broomstick Corgi", "pt": 1, }, - "value": 17090477, + "value": 17950729, }, { "category": "Pet", @@ -26611,7 +30366,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 36408, + "value": 38691, }, { "category": "Pet", @@ -26620,7 +30375,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 6142865, + "value": 6046621, }, { "category": "Pet", @@ -26629,7 +30384,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 60363858, + "value": 59790953, }, { "category": "Pet", @@ -26638,7 +30393,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 25074, + "value": 25453, }, { "category": "Pet", @@ -26647,7 +30402,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 28237219, + "value": 27959900, }, { "category": "Pet", @@ -26656,7 +30411,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 19853, + "value": 28552, }, { "category": "Pet", @@ -26665,7 +30420,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 33164, + "value": 35318, }, { "category": "Pet", @@ -26674,7 +30429,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 7830374, + "value": 7756653, }, { "category": "Pet", @@ -26683,7 +30438,23 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 32265, + "value": 33782, + }, + { + "category": "Potion", + "configData": { + "id": "Damage", + "tn": 8, + }, + "value": 937406268, + }, + { + "category": "Potion", + "configData": { + "id": "Treasure Hunter", + "tn": 8, + }, + "value": 24856407004, }, { "category": "Pet", @@ -26691,7 +30462,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Broomstick Corgi", "pt": 2, }, - "value": 9673417, + "value": 9745842, }, { "category": "Pet", @@ -26700,7 +30471,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 831419, + "value": 822283, }, { "category": "Pet", @@ -26709,7 +30480,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 47223, + "value": 55492, }, { "category": "Pet", @@ -26718,7 +30489,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 37008, + "value": 39230, }, { "category": "Pet", @@ -26727,14 +30498,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 39844, + "value": 45193, }, { "category": "Pet", "configData": { "id": "Imp", }, - "value": 395468499, + "value": 444696296, }, { "category": "Pet", @@ -26742,7 +30513,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Broomstick Corgi", "sh": true, }, - "value": 276788, + "value": 296888, + }, + { + "category": "Enchant", + "configData": { + "id": "Diamonds", + "tn": 7, + }, + "value": 2134431250, }, { "category": "Pet", @@ -26751,7 +30530,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 682509, + "value": 672102, }, { "category": "Pet", @@ -26759,14 +30538,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Imp", "pt": 1, }, - "value": 44934929, + "value": 48705129, }, { "category": "Pet", "configData": { "id": "Huge Knight Beagle", }, - "value": 62733, + "value": 87815, }, { "category": "Pet", @@ -26774,21 +30553,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Imp", "pt": 2, }, - "value": 15172965, + "value": 15661355, }, { "category": "Pet", "configData": { "id": "Huge Fluffy Cat", }, - "value": 133028, + "value": 195165, }, { "category": "Pet", "configData": { "id": "Huge Zebra", }, - "value": 73741, + "value": 122493, }, { "category": "Pet", @@ -26797,7 +30576,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 28892, + "value": 32577, }, { "category": "Pet", @@ -26806,7 +30585,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 24703, + "value": 25446, }, { "category": "Pet", @@ -26815,7 +30594,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 39785, + "value": 41259, }, { "category": "Pet", @@ -26823,7 +30602,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Imp", "sh": true, }, - "value": 776762, + "value": 878439, }, { "category": "Pet", @@ -26831,7 +30610,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Zebra", "pt": 1, }, - "value": 16267, + "value": 27219, }, { "category": "Pet", @@ -26840,7 +30619,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 461, + "value": 695, }, { "category": "Pet", @@ -26848,7 +30627,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Fluffy Cat", "pt": 2, }, - "value": 21548, + "value": 32162, }, { "category": "Pet", @@ -26856,7 +30635,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Zebra", "pt": 2, }, - "value": 11395, + "value": 19666, }, { "category": "Pet", @@ -26864,7 +30643,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Knight Beagle", "pt": 2, }, - "value": 9985, + "value": 14443, }, { "category": "Pet", @@ -26872,7 +30651,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Fluffy Cat", "pt": 1, }, - "value": 27968, + "value": 41423, }, { "category": "Pet", @@ -26880,7 +30659,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Knight Beagle", "pt": 1, }, - "value": 14878, + "value": 20421, }, { "category": "Pet", @@ -26888,7 +30667,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Knight Beagle", "sh": true, }, - "value": 1345, + "value": 1882, }, { "category": "Pet", @@ -26896,7 +30675,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Zebra", "sh": true, }, - "value": 1550, + "value": 2615, }, { "category": "Pet", @@ -26905,7 +30684,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 278, + "value": 456, }, { "category": "Pet", @@ -26914,7 +30693,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 74051, + "value": 82832, }, { "category": "Pet", @@ -26922,7 +30701,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Fluffy Cat", "sh": true, }, - "value": 2868, + "value": 4133, }, { "category": "Pet", @@ -26931,14 +30710,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 581, + "value": 862, }, { "category": "Pet", "configData": { "id": "Titanic Cheerful Yeti", }, - "value": 1079, + "value": 1115, }, { "category": "Pet", @@ -26947,7 +30726,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 315, + "value": 430, }, { "category": "Pet", @@ -26955,14 +30734,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Silver Dragon", "pt": 2, }, - "value": 24, + "value": 35, }, { "category": "Pet", "configData": { "id": "Huge Shadow Dominus", }, - "value": 61624, + "value": 85774, }, { "category": "Pet", @@ -26970,7 +30749,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Shadow Dominus", "pt": 2, }, - "value": 9677, + "value": 13951, }, { "category": "Pet", @@ -26978,7 +30757,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Shadow Dominus", "pt": 1, }, - "value": 11974, + "value": 17723, }, { "category": "Pet", @@ -26987,7 +30766,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 221, + "value": 301, }, { "category": "Pet", @@ -26996,7 +30775,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 115, + "value": 199, }, { "category": "Pet", @@ -27004,7 +30783,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Angel Cat", "sh": true, }, - "value": 15, + "value": 32, }, { "category": "Pet", @@ -27013,7 +30792,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 281, + "value": 394, }, { "category": "Pet", @@ -27021,7 +30800,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Shadow Dominus", "sh": true, }, - "value": 1239, + "value": 1789, }, { "category": "Pet", @@ -27030,7 +30809,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 324, + "value": 576, }, { "category": "Pet", @@ -27038,7 +30817,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mrs. Claws", "pt": 2, }, - "value": 11, + "value": 21, + }, + { + "category": "Lootbox", + "configData": { + "id": "2024 New Years Gift", + }, + "value": 760901, }, { "category": "Pet", @@ -27047,7 +30833,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 11, + "value": 14, }, { "category": "Pet", @@ -27064,7 +30850,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Robber Pug", "pt": 1, }, - "value": 15561, + "value": 24538, }, { "category": "Pet", @@ -27072,14 +30858,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Robber Pug", "pt": 2, }, - "value": 11528, + "value": 19532, }, { "category": "Pet", "configData": { "id": "Huge Robber Pug", }, - "value": 73275, + "value": 120590, }, { "category": "Pet", @@ -27087,7 +30873,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Robber Pug", "sh": true, }, - "value": 1585, + "value": 2602, }, { "category": "Pet", @@ -27096,7 +30882,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 209, + "value": 301, }, { "category": "Pet", @@ -27105,7 +30891,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 345, + "value": 543, }, { "category": "Pet", @@ -27114,7 +30900,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 248, + "value": 384, }, { "category": "Pet", @@ -27123,7 +30909,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 214, + "value": 403, }, { "category": "Pet", @@ -27131,7 +30917,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Cheerful Yeti", "sh": true, }, - "value": 16, + "value": 19, }, { "category": "Pet", @@ -27139,7 +30925,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Fox", "pt": 2, }, - "value": 66, + "value": 69, }, { "category": "Pet", @@ -27156,7 +30942,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Cheerful Yeti", "pt": 2, }, - "value": 12, + "value": 14, }, { "category": "Pet", @@ -27164,7 +30950,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Otter", "pt": 1, }, - "value": 258, + "value": 264, }, { "category": "Pet", @@ -27173,7 +30959,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 104, + "value": 216, }, { "category": "Pet", @@ -27182,7 +30968,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 228, + "value": 420, }, { "category": "Pet", @@ -27191,7 +30977,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2, + "value": 7, }, { "category": "Pet", @@ -27199,7 +30985,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cow", "pt": 1, }, - "value": 269, + "value": 282, }, { "category": "Pet", @@ -27215,14 +31001,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Titanic Monkey", }, - "value": 1155, + "value": 1180, }, { "category": "Pet", "configData": { "id": "Titanic Red Panda", }, - "value": 1123, + "value": 1147, }, { "category": "Pet", @@ -27246,7 +31032,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Otter", "sh": true, }, - "value": 50, + "value": 51, }, { "category": "Pet", @@ -27254,7 +31040,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge White Tiger", "sh": true, }, - "value": 60, + "value": 64, }, { "category": "Pet", @@ -27262,7 +31048,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cow", "sh": true, }, - "value": 54, + "value": 57, }, { "category": "Pet", @@ -27270,7 +31056,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Fox", "sh": true, }, - "value": 46, + "value": 49, }, { "category": "Pet", @@ -27278,7 +31064,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge White Tiger", "pt": 2, }, - "value": 51, + "value": 56, }, { "category": "Pet", @@ -27286,7 +31072,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Red Panda", "pt": 2, }, - "value": 16, + "value": 17, }, { "category": "Pet", @@ -27303,7 +31089,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cow", "pt": 2, }, - "value": 54, + "value": 60, }, { "category": "Pet", @@ -27311,7 +31097,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Monkey", "sh": true, }, - "value": 24, + "value": 25, }, { "category": "Pet", @@ -27320,7 +31106,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 6, + "value": 7, + }, + { + "category": "Booth", + "configData": { + "id": "Cupcake", + }, + "value": 2407, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Blobfish", + }, + "value": 149, }, { "category": "Pet", @@ -27329,33 +31129,132 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 50, }, + { + "category": "Misc", + "configData": { + "id": "Party Box", + }, + "value": 7250082262, + }, + { + "category": "Misc", + "configData": { + "id": "Mini Lucky Block", + }, + "value": 1734181036, + }, + { + "category": "Misc", + "configData": { + "id": "Mini Pinata", + }, + "value": 1228939246, + }, + { + "category": "Misc", + "configData": { + "id": "Enchant Bundle", + }, + "value": 31009658544, + }, + { + "category": "Misc", + "configData": { + "id": "Potion Bundle", + }, + "value": 31421189432, + }, + { + "category": "Misc", + "configData": { + "id": "Index Token", + }, + "value": 3827198842, + }, + { + "category": "Misc", + "configData": { + "id": "Toy Bundle", + }, + "value": 35464883223, + }, + { + "category": "Misc", + "configData": { + "id": "Slingshot", + }, + "value": 10874338, + }, + { + "category": "Misc", + "configData": { + "id": "Secret Key", + }, + "value": 1169450125, + }, + { + "category": "Misc", + "configData": { + "id": "Flag Bundle", + }, + "value": 32450933418, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 20", + }, + "value": 1044513, + }, + { + "category": "Misc", + "configData": { + "id": "Strength Flag", + }, + "value": 16457651523, + }, + { + "category": "Charm", + "configData": { + "id": "TNT", + "tn": 1, + }, + "value": 95816184, + }, + { + "category": "Misc", + "configData": { + "id": "Mini Chest", + }, + "value": 1547343368, + }, { "category": "Pet", "configData": { "id": "Werewolf", }, - "value": 66804797, + "value": 81049049, }, { "category": "Pet", "configData": { "id": "Scary Corgi", }, - "value": 371123567, + "value": 451071386, }, { "category": "Pet", "configData": { "id": "Scary Cat", }, - "value": 116843784, + "value": 143271675, }, { "category": "Pet", "configData": { "id": "Emoji Cat", }, - "value": 490681, + "value": 430727, }, { "category": "Pet", @@ -27363,7 +31262,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Zombie Corgi", "pt": 1, }, - "value": 8674663, + "value": 9516242, }, { "category": "Pet", @@ -27371,21 +31270,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Zombie Squirrel", "pt": 1, }, - "value": 15816177, + "value": 17004975, }, { "category": "Pet", "configData": { "id": "Zombie Corgi", }, - "value": 73201451, + "value": 85619296, }, { "category": "Pet", "configData": { "id": "Zombie Squirrel", }, - "value": 150048950, + "value": 174188754, }, { "category": "Pet", @@ -27393,7 +31292,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Zombie Bull", "pt": 2, }, - "value": 3979014, + "value": 4185043, }, { "category": "Pet", @@ -27401,7 +31300,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Zombie Squirrel", "pt": 2, }, - "value": 6168029, + "value": 6354951, }, { "category": "Pet", @@ -27409,14 +31308,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Zombie Corgi", "pt": 2, }, - "value": 3647046, + "value": 3793047, }, { "category": "Pet", "configData": { "id": "Zombie Bull", }, - "value": 59751769, + "value": 68607875, }, { "category": "Pet", @@ -27424,28 +31323,35 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Zombie Bull", "pt": 1, }, - "value": 8857614, + "value": 9973181, }, { "category": "Pet", "configData": { "id": "Emoji Monkey", }, - "value": 127342, + "value": 105544, }, { "category": "Pet", "configData": { "id": "Emoji Dog", }, - "value": 343560, + "value": 303069, }, { "category": "Pet", "configData": { "id": "Huge Emoji Cat", }, - "value": 12048, + "value": 12110, + }, + { + "category": "Misc", + "configData": { + "id": "Rainbow Flag", + }, + "value": 2118267417, }, { "category": "Pet", @@ -27453,7 +31359,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Werewolf", "pt": 2, }, - "value": 3810422, + "value": 4256652, }, { "category": "Pet", @@ -27461,7 +31367,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Scary Corgi", "pt": 1, }, - "value": 36254029, + "value": 39936126, }, { "category": "Pet", @@ -27469,7 +31375,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Werewolf", "sh": true, }, - "value": 141142, + "value": 170463, }, { "category": "Pet", @@ -27477,7 +31383,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Scary Cat", "pt": 2, }, - "value": 4045765, + "value": 4426236, }, { "category": "Pet", @@ -27485,7 +31391,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Werewolf", "pt": 1, }, - "value": 9578963, + "value": 11147376, }, { "category": "Pet", @@ -27493,7 +31399,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Scary Corgi", "pt": 2, }, - "value": 10509353, + "value": 11384552, }, { "category": "Pet", @@ -27501,7 +31407,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Scary Cat", "pt": 1, }, - "value": 12435553, + "value": 14029022, }, { "category": "Pet", @@ -27509,7 +31415,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Vampire Bat", "pt": 1, }, - "value": 38011909, + "value": 41770141, }, { "category": "Pet", @@ -27517,7 +31423,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Emoji Cat", "pt": 2, }, - "value": 10131, + "value": 8443, }, { "category": "Pet", @@ -27525,7 +31431,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ghost Cat", "pt": 2, }, - "value": 5838606, + "value": 6034174, }, { "category": "Pet", @@ -27533,28 +31439,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Detective Terrier", "pt": 1, }, - "value": 18048617, + "value": 20251257, }, { "category": "Pet", "configData": { "id": "Detective Terrier", }, - "value": 104281776, + "value": 118590773, }, { "category": "Pet", "configData": { "id": "Vampire Bat", }, - "value": 308836669, + "value": 348269403, }, { "category": "Pet", "configData": { "id": "Ghost Cat", }, - "value": 132266643, + "value": 150220049, }, { "category": "Pet", @@ -27562,7 +31468,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ghost Cat", "pt": 1, }, - "value": 16949576, + "value": 18776615, }, { "category": "Pet", @@ -27570,7 +31476,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Detective Terrier", "pt": 2, }, - "value": 6441951, + "value": 6724580, }, { "category": "Pet", @@ -27578,7 +31484,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ghost Cat", "sh": true, }, - "value": 264862, + "value": 298554, + }, + { + "category": "Charm", + "configData": { + "id": "Criticals", + "tn": 1, + }, + "value": 210910248, }, { "category": "Pet", @@ -27586,7 +31500,30 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Zombie Squirrel", "sh": true, }, - "value": 298560, + "value": 346338, + }, + { + "category": "Charm", + "configData": { + "id": "XP", + "tn": 1, + }, + "value": 35111814, + }, + { + "category": "Charm", + "configData": { + "id": "Lightning", + "tn": 1, + }, + "value": 35004473, + }, + { + "category": "Misc", + "configData": { + "id": "Secret Key Lower Half", + }, + "value": 1068477553, }, { "category": "Pet", @@ -27594,14 +31531,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Scary Corgi", "sh": true, }, - "value": 677345, + "value": 848999, }, { "category": "Pet", "configData": { "id": "Queen Slime", }, - "value": 219088124, + "value": 255486787, + }, + { + "category": "Box", + "configData": { + "id": "Small", + }, + "value": 215308672, }, { "category": "Pet", @@ -27609,14 +31553,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Zombie Bull", "sh": true, }, - "value": 134797, + "value": 149846, }, { "category": "Pet", "configData": { "id": "Robber Goblin", }, - "value": 217777572, + "value": 256380776, }, { "category": "Pet", @@ -27624,7 +31568,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blue Slime", "pt": 1, }, - "value": 9004356, + "value": 10079630, + }, + { + "category": "Misc", + "configData": { + "id": "Shiny Flag", + }, + "value": 1964888879, }, { "category": "Pet", @@ -27632,7 +31583,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Skeleton", "pt": 2, }, - "value": 11630742, + "value": 11946608, }, { "category": "Pet", @@ -27640,14 +31591,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Grim Reaper", "pt": 2, }, - "value": 5774615, + "value": 6065324, }, { "category": "Pet", "configData": { "id": "Grim Reaper", }, - "value": 83286359, + "value": 94823280, }, { "category": "Pet", @@ -27655,7 +31606,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ghost", "pt": 2, }, - "value": 5025356, + "value": 5192123, }, { "category": "Pet", @@ -27663,14 +31614,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Reaper", "pt": 2, }, - "value": 4790904, + "value": 4979547, }, { "category": "Pet", "configData": { "id": "Ghost", }, - "value": 99708233, + "value": 113401831, }, { "category": "Pet", @@ -27678,14 +31629,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ghost", "pt": 1, }, - "value": 13051432, + "value": 14718778, }, { "category": "Pet", "configData": { "id": "Skeleton", }, - "value": 240363833, + "value": 277612332, }, { "category": "Pet", @@ -27693,7 +31644,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Skeleton", "pt": 1, }, - "value": 27559804, + "value": 30284072, }, { "category": "Pet", @@ -27701,7 +31652,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Grim Reaper", "pt": 1, }, - "value": 14423638, + "value": 16263735, }, { "category": "Pet", @@ -27709,7 +31660,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Vampire Bat", "pt": 2, }, - "value": 13875543, + "value": 14305092, + }, + { + "category": "Enchant", + "configData": { + "id": "Large Taps", + "tn": 1, + }, + "value": 50220620, }, { "category": "Pet", @@ -27717,14 +31676,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Zombie Corgi", "sh": true, }, - "value": 152619, + "value": 174383, }, { "category": "Pet", "configData": { "id": "Reaper", }, - "value": 66072343, + "value": 75023020, }, { "category": "Pet", @@ -27732,7 +31691,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Vampire Bat", "sh": true, }, - "value": 631905, + "value": 711541, }, { "category": "Pet", @@ -27740,7 +31699,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Emoji Cat", "sh": true, }, - "value": 10239, + "value": 8165, }, { "category": "Pet", @@ -27748,7 +31707,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Reaper", "pt": 1, }, - "value": 9328951, + "value": 10820455, }, { "category": "Pet", @@ -27756,7 +31715,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blue Slime", "pt": 2, }, - "value": 4208349, + "value": 4324178, }, { "category": "Pet", @@ -27764,7 +31723,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Queen Slime", "pt": 1, }, - "value": 24869573, + "value": 27478806, }, { "category": "Pet", @@ -27772,21 +31731,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Queen Slime", "pt": 2, }, - "value": 11635825, + "value": 12077626, }, { "category": "Pet", "configData": { "id": "Stacked King Slime", }, - "value": 61981972, + "value": 71486799, }, { "category": "Pet", "configData": { "id": "Blue Slime", }, - "value": 78088255, + "value": 90799569, + }, + { + "category": "Misc", + "configData": { + "id": "Daycare Slot Voucher", + }, + "value": 191603910, }, { "category": "Pet", @@ -27794,7 +31760,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Red Dragon", "pt": 2, }, - "value": 4359620, + "value": 4599320, }, { "category": "Pet", @@ -27802,14 +31768,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Red Dragon", "pt": 1, }, - "value": 8750399, + "value": 9950151, }, { "category": "Pet", "configData": { "id": "Red Dragon", }, - "value": 72541751, + "value": 85548511, }, { "category": "Pet", @@ -27817,7 +31783,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stacked King Slime", "pt": 1, }, - "value": 9024452, + "value": 10666636, }, { "category": "Pet", @@ -27825,7 +31791,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stacked King Slime", "pt": 2, }, - "value": 4929369, + "value": 5218220, + }, + { + "category": "Enchant", + "configData": { + "id": "Explosive", + "tn": 1, + }, + "value": 80933701, }, { "category": "Pet", @@ -27833,7 +31807,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Robber Goblin", "pt": 1, }, - "value": 25710944, + "value": 28083175, }, { "category": "Pet", @@ -27841,14 +31815,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Robber Goblin", "pt": 2, }, - "value": 11664941, + "value": 12138130, }, { "category": "Pet", "configData": { "id": "Knight Cat", }, - "value": 62133937, + "value": 71847311, }, { "category": "Pet", @@ -27856,7 +31830,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Emoji Dog", "sh": true, }, - "value": 6915, + "value": 5568, }, { "category": "Pet", @@ -27864,7 +31838,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Scary Cat", "sh": true, }, - "value": 220484, + "value": 274620, }, { "category": "Pet", @@ -27873,7 +31847,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 14716, + "value": 15436, }, { "category": "Pet", @@ -27882,7 +31856,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 36954, + "value": 42625, }, { "category": "Pet", @@ -27891,7 +31865,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 38110, + "value": 39408, }, { "category": "Pet", @@ -27900,7 +31874,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 46956, + "value": 52528, }, { "category": "Pet", @@ -27909,7 +31883,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 16027, + "value": 18495, }, { "category": "Pet", @@ -27918,7 +31892,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 18807, + "value": 22609, }, { "category": "Pet", @@ -27927,7 +31901,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 17186, + "value": 18011, }, { "category": "Pet", @@ -27936,7 +31910,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 33055, + "value": 34349, }, { "category": "Pet", @@ -27944,7 +31918,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blue Slime", "sh": true, }, - "value": 164942, + "value": 187662, + }, + { + "category": "Misc", + "configData": { + "id": "Bucket", + }, + "value": 512819567, }, { "category": "Pet", @@ -27952,7 +31933,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Detective Terrier", "sh": true, }, - "value": 224294, + "value": 250639, + }, + { + "category": "Misc", + "configData": { + "id": "Platinum Shovel", + }, + "value": 847355, }, { "category": "Pet", @@ -27960,14 +31948,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Emoji Monkey", "sh": true, }, - "value": 2647, + "value": 2165, }, { "category": "Pet", "configData": { "id": "Huge Emoji Monkey", }, - "value": 6654, + "value": 6702, }, { "category": "Pet", @@ -27975,7 +31963,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Emoji Dog", "pt": 2, }, - "value": 7202, + "value": 6102, }, { "category": "Pet", @@ -27983,7 +31971,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Reaper", "sh": true, }, - "value": 152308, + "value": 167322, }, { "category": "Pet", @@ -27992,14 +31980,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12397, + "value": 13133, }, { "category": "Pet", "configData": { "id": "Empyrean Stallion", }, - "value": 262293537, + "value": 303984319, }, { "category": "Pet", @@ -28007,7 +31995,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Empyrean Stallion", "pt": 2, }, - "value": 13661876, + "value": 14408418, }, { "category": "Pet", @@ -28015,14 +32003,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Empyrean Snake", "pt": 2, }, - "value": 4367990, + "value": 4555917, }, { "category": "Pet", "configData": { "id": "Empyrean Snake", }, - "value": 72515893, + "value": 85583956, }, { "category": "Pet", @@ -28030,7 +32018,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Knight Cat", "pt": 1, }, - "value": 9534099, + "value": 10746449, }, { "category": "Pet", @@ -28038,14 +32026,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Knight Cat", "pt": 2, }, - "value": 4917313, + "value": 5182933, }, { "category": "Pet", "configData": { "id": "Empyrean Fox", }, - "value": 59532482, + "value": 68274666, }, { "category": "Pet", @@ -28053,7 +32041,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Skeleton", "sh": true, }, - "value": 496597, + "value": 570652, }, { "category": "Pet", @@ -28061,7 +32049,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Grim Reaper", "sh": true, }, - "value": 189998, + "value": 207400, }, { "category": "Pet", @@ -28069,7 +32057,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ghost", "sh": true, }, - "value": 209879, + "value": 234594, + }, + { + "category": "Misc", + "configData": { + "id": "Secret Key Upper Half", + }, + "value": 695817695, }, { "category": "Pet", @@ -28077,7 +32072,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Empyrean Snake", "pt": 1, }, - "value": 9212361, + "value": 10130857, }, { "category": "Pet", @@ -28085,7 +32080,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Empyrean Stallion", "pt": 1, }, - "value": 30490553, + "value": 33811069, }, { "category": "Pet", @@ -28093,7 +32088,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Empyrean Stallion", "sh": true, }, - "value": 552362, + "value": 639027, }, { "category": "Pet", @@ -28102,7 +32097,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 66691, + "value": 74580, }, { "category": "Pet", @@ -28110,7 +32105,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Empyrean Fox", "pt": 2, }, - "value": 4603707, + "value": 5010740, }, { "category": "Pet", @@ -28118,14 +32113,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Encrusted Wolf", "pt": 1, }, - "value": 22660468, + "value": 24715867, }, { "category": "Pet", "configData": { "id": "Encrusted Dragon", }, - "value": 57409690, + "value": 66670344, }, { "category": "Pet", @@ -28133,14 +32128,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Encrusted Dragon", "pt": 1, }, - "value": 8108074, + "value": 9097912, }, { "category": "Pet", "configData": { "id": "Encrusted Wolf", }, - "value": 198848706, + "value": 235005224, }, { "category": "Pet", @@ -28149,7 +32144,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 18814, + "value": 32613, }, { "category": "Pet", @@ -28157,7 +32152,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Encrusted Wolf", "pt": 2, }, - "value": 11189561, + "value": 11590149, }, { "category": "Pet", @@ -28165,7 +32160,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Encrusted Dragon", "pt": 2, }, - "value": 4706764, + "value": 4903661, }, { "category": "Pet", @@ -28173,7 +32168,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Empyrean Fox", "pt": 1, }, - "value": 8601918, + "value": 10426554, + }, + { + "category": "Misc", + "configData": { + "id": "Emerald Shovel", + }, + "value": 522187, }, { "category": "Pet", @@ -28182,7 +32184,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 44190, + "value": 50025, }, { "category": "Pet", @@ -28191,7 +32193,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 15826, + "value": 16536, }, { "category": "Pet", @@ -28200,7 +32202,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12310, + "value": 13639, }, { "category": "Pet", @@ -28208,7 +32210,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stacked King Slime", "sh": true, }, - "value": 148173, + "value": 165717, }, { "category": "Pet", @@ -28217,7 +32219,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 10802, + "value": 11618, }, { "category": "Pet", @@ -28226,7 +32228,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 33622, + "value": 35697, }, { "category": "Pet", @@ -28234,7 +32236,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Red Dragon", "sh": true, }, - "value": 158608, + "value": 183388, }, { "category": "Pet", @@ -28243,7 +32245,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 24474, + "value": 28025, }, { "category": "Pet", @@ -28251,7 +32253,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Robber Goblin", "sh": true, }, - "value": 460882, + "value": 539873, }, { "category": "Pet", @@ -28260,7 +32262,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 26294, + "value": 29026, }, { "category": "Pet", @@ -28269,7 +32271,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 17630, + "value": 20494, }, { "category": "Pet", @@ -28277,7 +32279,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Knight Cat", "sh": true, }, - "value": 147553, + "value": 165120, }, { "category": "Pet", @@ -28285,14 +32287,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Queen Slime", "sh": true, }, - "value": 465334, + "value": 545075, }, { "category": "Pet", "configData": { "id": "Cotton Candy Unicorn", }, - "value": 60359825, + "value": 69923804, }, { "category": "Pet", @@ -28300,7 +32302,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gummy Bear", "pt": 2, }, - "value": 9345737, + "value": 9585626, }, { "category": "Pet", @@ -28308,7 +32310,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gummy Raccoon", "pt": 1, }, - "value": 8587782, + "value": 9431415, }, { "category": "Pet", @@ -28316,14 +32318,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gummy Raccoon", "pt": 2, }, - "value": 4450711, + "value": 4559857, }, { "category": "Pet", "configData": { "id": "Gummy Bear", }, - "value": 155729256, + "value": 180531548, }, { "category": "Pet", @@ -28331,7 +32333,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cotton Candy Cow", "pt": 2, }, - "value": 11746611, + "value": 11993719, }, { "category": "Pet", @@ -28339,7 +32341,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cotton Candy Cow", "pt": 1, }, - "value": 23794090, + "value": 25832195, }, { "category": "Pet", @@ -28347,21 +32349,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cotton Candy Unicorn", "pt": 2, }, - "value": 5071226, + "value": 5227905, }, { "category": "Pet", "configData": { "id": "Gummy Raccoon", }, - "value": 68956397, + "value": 81038510, }, { "category": "Pet", "configData": { "id": "Cotton Candy Cow", }, - "value": 204513757, + "value": 240086266, }, { "category": "Pet", @@ -28369,7 +32371,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cotton Candy Unicorn", "pt": 1, }, - "value": 9115378, + "value": 10355573, }, { "category": "Pet", @@ -28377,7 +32379,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gummy Fox", "pt": 1, }, - "value": 9193755, + "value": 10138049, }, { "category": "Pet", @@ -28386,7 +32388,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 30885, + "value": 36138, }, { "category": "Pet", @@ -28394,7 +32396,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Emoji Monkey", "pt": 2, }, - "value": 2619, + "value": 2341, }, { "category": "Pet", @@ -28402,7 +32404,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Emoji Monkey", "sh": true, }, - "value": 257, + "value": 260, }, { "category": "Pet", @@ -28411,7 +32413,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 14847, + "value": 16065, }, { "category": "Pet", @@ -28420,7 +32422,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 18050, + "value": 19103, }, { "category": "Pet", @@ -28429,7 +32431,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 45248, + "value": 54486, }, { "category": "Pet", @@ -28438,7 +32440,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 19102, + "value": 24486, }, { "category": "Pet", @@ -28447,7 +32449,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 15540, + "value": 19111, }, { "category": "Pet", @@ -28456,7 +32458,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 33705, + "value": 35832, }, { "category": "Pet", @@ -28465,7 +32467,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 10977, + "value": 12762, }, { "category": "Pet", @@ -28474,14 +32476,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 20696, + "value": 29967, }, { "category": "Pet", "configData": { "id": "Titanic Emoji Corgi", }, - "value": 461, + "value": 463, }, { "category": "Pet", @@ -28489,7 +32491,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Empyrean Snake", "sh": true, }, - "value": 157439, + "value": 181574, }, { "category": "Pet", @@ -28498,7 +32500,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 47327, + "value": 54736, }, { "category": "Pet", @@ -28507,7 +32509,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 17230, + "value": 18483, }, { "category": "Pet", @@ -28515,14 +32517,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gummy Bear", "sh": true, }, - "value": 343931, + "value": 393323, }, { "category": "Pet", "configData": { "id": "Gummy Fox", }, - "value": 62495553, + "value": 71561989, }, { "category": "Pet", @@ -28531,7 +32533,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 42189, + "value": 49463, }, { "category": "Pet", @@ -28539,7 +32541,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cotton Candy Lamb", "pt": 2, }, - "value": 4168339, + "value": 4297311, }, { "category": "Pet", @@ -28547,14 +32549,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cotton Candy Lamb", "pt": 1, }, - "value": 7812917, + "value": 8536259, }, { "category": "Pet", "configData": { "id": "Cotton Candy Lamb", }, - "value": 66254130, + "value": 78982743, + }, + { + "category": "Misc", + "configData": { + "id": "Sapphire Shovel", + }, + "value": 344244, + }, + { + "category": "Misc", + "configData": { + "id": "Amethyst Shovel", + }, + "value": 303790, }, { "category": "Pet", @@ -28563,7 +32579,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 29924, + "value": 33885, }, { "category": "Pet", @@ -28572,7 +32588,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 20191, + "value": 24060, }, { "category": "Pet", @@ -28581,7 +32597,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 15298, + "value": 17502, }, { "category": "Pet", @@ -28590,7 +32606,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 24185, + "value": 27806, }, { "category": "Pet", @@ -28598,14 +32614,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hot Air Balloon Dog", "pt": 1, }, - "value": 31617798, + "value": 40881835, }, { "category": "Pet", "configData": { "id": "Chocolate Hippo", }, - "value": 59497936, + "value": 68723470, }, { "category": "Pet", @@ -28613,7 +32629,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chocolate Bunny", "pt": 1, }, - "value": 23565029, + "value": 25439626, }, { "category": "Pet", @@ -28621,21 +32637,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hot Air Balloon Dog", "pt": 2, }, - "value": 15729069, + "value": 16550745, }, { "category": "Pet", "configData": { "id": "Cloud Penguin", }, - "value": 258226828, + "value": 402973194, }, { "category": "Pet", "configData": { "id": "Pink Marshmallow Chick", }, - "value": 158767636, + "value": 182460613, }, { "category": "Pet", @@ -28643,7 +32659,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chocolate Bunny", "pt": 2, }, - "value": 12234812, + "value": 12487285, }, { "category": "Pet", @@ -28651,7 +32667,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blue Marshmallow Chick", "pt": 2, }, - "value": 4587300, + "value": 4669568, }, { "category": "Pet", @@ -28659,21 +32675,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cloud Penguin", "pt": 1, }, - "value": 31937162, + "value": 37315331, }, { "category": "Pet", "configData": { "id": "Hot Air Balloon Dog", }, - "value": 252248429, + "value": 418249761, }, { "category": "Pet", "configData": { "id": "Basketball Retriever", }, - "value": 59318960, + "value": 85598363, }, { "category": "Pet", @@ -28681,7 +32697,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blue Marshmallow Chick", "pt": 1, }, - "value": 8156035, + "value": 8838854, }, { "category": "Pet", @@ -28689,21 +32705,42 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chocolate Hippo", "pt": 2, }, - "value": 5279314, + "value": 5423140, }, { "category": "Pet", "configData": { "id": "Blue Marshmallow Chick", }, - "value": 66924081, + "value": 79104625, }, { "category": "Pet", "configData": { "id": "Chocolate Bunny", }, - "value": 199091104, + "value": 233628658, + }, + { + "category": "Misc", + "configData": { + "id": "Diamond Shovel", + }, + "value": 244210, + }, + { + "category": "Misc", + "configData": { + "id": "Diamond Fishing Rod", + }, + "value": 166138, + }, + { + "category": "Booth", + "configData": { + "id": "Parrot", + }, + "value": 21950, }, { "category": "Pet", @@ -28711,7 +32748,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Emoji Cat", "sh": true, }, - "value": 492, + "value": 498, }, { "category": "Pet", @@ -28719,7 +32756,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chocolate Dog", "pt": 1, }, - "value": 9269635, + "value": 9959966, }, { "category": "Pet", @@ -28727,7 +32764,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chocolate Frog", "pt": 2, }, - "value": 4874061, + "value": 5016611, }, { "category": "Pet", @@ -28735,14 +32772,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gummy Fox", "pt": 2, }, - "value": 5342551, + "value": 5526320, }, { "category": "Pet", "configData": { "id": "Chocolate Dog", }, - "value": 78977198, + "value": 92578966, }, { "category": "Pet", @@ -28750,7 +32787,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chocolate Frog", "pt": 1, }, - "value": 8761253, + "value": 9571941, }, { "category": "Pet", @@ -28758,7 +32795,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gummy Bear", "pt": 1, }, - "value": 18544104, + "value": 19905844, }, { "category": "Pet", @@ -28766,14 +32803,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chocolate Dog", "pt": 2, }, - "value": 4816152, + "value": 4944236, }, { "category": "Pet", "configData": { "id": "Chocolate Frog", }, - "value": 66138592, + "value": 76634395, }, { "category": "Pet", @@ -28782,7 +32819,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13078, + "value": 14897, }, { "category": "Pet", @@ -28791,7 +32828,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 11379, + "value": 14144, }, { "category": "Pet", @@ -28799,7 +32836,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cotton Candy Cow", "sh": true, }, - "value": 439304, + "value": 509071, }, { "category": "Pet", @@ -28807,14 +32844,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Encrusted Wolf", "sh": true, }, - "value": 425045, + "value": 496871, }, { "category": "Pet", "configData": { "id": "Pastel Sock Bear", }, - "value": 81376042, + "value": 94711954, }, { "category": "Pet", @@ -28822,7 +32859,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pastel Sock Bunny", "pt": 1, }, - "value": 9922435, + "value": 10765032, }, { "category": "Pet", @@ -28830,7 +32867,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pastel Sock Bear", "pt": 2, }, - "value": 5381308, + "value": 5448062, }, { "category": "Pet", @@ -28838,14 +32875,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cupcake", "pt": 2, }, - "value": 6008019, + "value": 6147360, }, { "category": "Pet", "configData": { "id": "Pastel Sock Corgi", }, - "value": 161340342, + "value": 186578823, }, { "category": "Pet", @@ -28853,7 +32890,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pink Marshmallow Chick", "pt": 1, }, - "value": 19730536, + "value": 21142462, }, { "category": "Pet", @@ -28861,14 +32898,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pastel Sock Corgi", "pt": 1, }, - "value": 20133616, + "value": 21633774, }, { "category": "Pet", "configData": { "id": "Pastel Sock Bunny", }, - "value": 69282227, + "value": 79389683, }, { "category": "Pet", @@ -28876,7 +32913,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pastel Sock Corgi", "pt": 2, }, - "value": 10876948, + "value": 11107915, }, { "category": "Pet", @@ -28884,7 +32921,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pastel Sock Bunny", "pt": 2, }, - "value": 5478976, + "value": 5568826, }, { "category": "Pet", @@ -28892,7 +32929,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pink Marshmallow Chick", "pt": 2, }, - "value": 10257632, + "value": 10384816, }, { "category": "Pet", @@ -28900,14 +32937,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cupcake", "pt": 1, }, - "value": 10480040, + "value": 11349486, }, { "category": "Pet", "configData": { "id": "Cupcake", }, - "value": 66302912, + "value": 74942905, }, { "category": "Pet", @@ -28915,7 +32952,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pastel Sock Bear", "pt": 1, }, - "value": 10293735, + "value": 10956729, }, { "category": "Pet", @@ -28923,7 +32960,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Empyrean Fox", "sh": true, }, - "value": 138620, + "value": 154203, }, { "category": "Pet", @@ -28931,7 +32968,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cotton Candy Lamb", "sh": true, }, - "value": 145513, + "value": 168161, }, { "category": "Pet", @@ -28940,7 +32977,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 17726, + "value": 20290, }, { "category": "Pet", @@ -28948,7 +32985,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cotton Candy Unicorn", "sh": true, }, - "value": 145378, + "value": 161810, + }, + { + "category": "Charm", + "configData": { + "id": "Overload", + "tn": 1, + }, + "value": 2507077, }, { "category": "Pet", @@ -28956,7 +33001,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Encrusted Dragon", "sh": true, }, - "value": 136764, + "value": 153459, }, { "category": "Pet", @@ -28965,7 +33010,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 32331, + "value": 34106, }, { "category": "Pet", @@ -28974,7 +33019,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 27956, + "value": 28987, }, { "category": "Pet", @@ -28982,7 +33027,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pink Marshmallow Chick", "sh": true, }, - "value": 361935, + "value": 408932, }, { "category": "Pet", @@ -28991,7 +33036,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 54402, + "value": 75482, }, { "category": "Pet", @@ -29000,7 +33045,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 14014, + "value": 16856, }, { "category": "Pet", @@ -29008,14 +33053,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Emoji Monkey", "pt": 2, }, - "value": 126, + "value": 127, }, { "category": "Pet", "configData": { "id": "Blossom Koi Fish", }, - "value": 65627579, + "value": 84396443, }, { "category": "Pet", @@ -29023,7 +33068,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chocolate Hippo", "pt": 1, }, - "value": 8759732, + "value": 9686243, }, { "category": "Pet", @@ -29031,14 +33076,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blossom Squirrel", "pt": 2, }, - "value": 18099943, + "value": 18567806, }, { "category": "Pet", "configData": { "id": "Blossom Squirrel", }, - "value": 265513787, + "value": 364784127, }, { "category": "Pet", @@ -29046,7 +33091,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cloud Monkey", "pt": 1, }, - "value": 9540330, + "value": 11050665, }, { "category": "Pet", @@ -29054,7 +33099,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cloud Monkey", "pt": 2, }, - "value": 5848243, + "value": 6035051, }, { "category": "Pet", @@ -29062,14 +33107,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cloud Penguin", "pt": 2, }, - "value": 17051595, + "value": 17562575, }, { "category": "Pet", "configData": { "id": "Cloud Monkey", }, - "value": 63613159, + "value": 87358482, }, { "category": "Pet", @@ -29078,7 +33123,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12918, + "value": 13828, }, { "category": "Pet", @@ -29087,7 +33132,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 149, + "value": 147, + }, + { + "category": "Misc", + "configData": { + "id": "Bucket O' Magic", + }, + "value": 274034225, }, { "category": "Pet", @@ -29096,7 +33148,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12750, + "value": 13399, }, { "category": "Pet", @@ -29105,7 +33157,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 16638, + "value": 18377, }, { "category": "Pet", @@ -29113,7 +33165,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blue Marshmallow Chick", "sh": true, }, - "value": 153078, + "value": 171692, }, { "category": "Pet", @@ -29121,7 +33173,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Carnival Elephant", "pt": 2, }, - "value": 5629690, + "value": 5749839, }, { "category": "Pet", @@ -29129,7 +33181,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pastel Sock Dragon", "pt": 2, }, - "value": 6300516, + "value": 6495382, }, { "category": "Pet", @@ -29137,14 +33189,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pastel Sock Dragon", "pt": 1, }, - "value": 10455566, + "value": 11462670, }, { "category": "Pet", "configData": { "id": "Hot Dog", }, - "value": 76522315, + "value": 88519243, }, { "category": "Pet", @@ -29152,14 +33204,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chocolate Frog", "sh": true, }, - "value": 155532, + "value": 172317, }, { "category": "Pet", "configData": { "id": "Clown Cat", }, - "value": 248584283, + "value": 285882628, }, { "category": "Pet", @@ -29167,7 +33219,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Carnival Panda", "pt": 1, }, - "value": 9801347, + "value": 10637721, }, { "category": "Pet", @@ -29175,21 +33227,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Carnival Elephant", "pt": 1, }, - "value": 10141407, + "value": 10895025, }, { "category": "Pet", "configData": { "id": "Pastel Sock Dragon", }, - "value": 66910593, + "value": 75631364, }, { "category": "Pet", "configData": { "id": "Carnival Elephant", }, - "value": 81739372, + "value": 95578609, }, { "category": "Pet", @@ -29197,14 +33249,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Clown Cat", "pt": 2, }, - "value": 15124504, + "value": 16426193, }, { "category": "Pet", "configData": { "id": "Carnival Panda", }, - "value": 69631635, + "value": 80117490, }, { "category": "Pet", @@ -29212,7 +33264,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Carnival Panda", "pt": 2, }, - "value": 5735621, + "value": 5883913, }, { "category": "Pet", @@ -29220,7 +33272,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chocolate Bunny", "sh": true, }, - "value": 441665, + "value": 502185, }, { "category": "Pet", @@ -29229,7 +33281,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 19482, + "value": 24434, }, { "category": "Pet", @@ -29238,7 +33290,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 38547, + "value": 42555, }, { "category": "Pet", @@ -29246,7 +33298,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Clown Cat", "pt": 1, }, - "value": 32587360, + "value": 44522554, }, { "category": "Pet", @@ -29254,7 +33306,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blossom Squirrel", "pt": 1, }, - "value": 33206494, + "value": 38257752, }, { "category": "Pet", @@ -29262,7 +33314,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gummy Raccoon", "sh": true, }, - "value": 152741, + "value": 174885, }, { "category": "Pet", @@ -29270,14 +33322,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Popcorn Cat", "pt": 2, }, - "value": 5752889, + "value": 6482785, }, { "category": "Pet", "configData": { "id": "Popcorn Cat", }, - "value": 85256583, + "value": 100207862, }, { "category": "Pet", @@ -29285,7 +33337,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Popcorn Cat", "pt": 1, }, - "value": 12401059, + "value": 19637032, }, { "category": "Pet", @@ -29293,7 +33345,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hot Dog", "pt": 2, }, - "value": 6693273, + "value": 7760903, }, { "category": "Pet", @@ -29301,7 +33353,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hot Dog", "pt": 1, }, - "value": 14084647, + "value": 24945871, }, { "category": "Pet", @@ -29309,7 +33361,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Basketball Retriever", "pt": 2, }, - "value": 5255596, + "value": 5466780, }, { "category": "Pet", @@ -29317,7 +33369,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gummy Fox", "sh": true, }, - "value": 154545, + "value": 168444, }, { "category": "Pet", @@ -29326,7 +33378,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 30989, + "value": 31691, }, { "category": "Pet", @@ -29334,7 +33386,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Basketball Retriever", "pt": 1, }, - "value": 8897688, + "value": 11011228, }, { "category": "Pet", @@ -29352,7 +33404,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 33856, + "value": 34974, }, { "category": "Pet", @@ -29361,7 +33413,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 46551, + "value": 51019, }, { "category": "Pet", @@ -29369,7 +33421,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pastel Sock Corgi", "sh": true, }, - "value": 367130, + "value": 416333, }, { "category": "Pet", @@ -29378,7 +33430,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 14620, + "value": 15718, }, { "category": "Pet", @@ -29387,7 +33439,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 66627, + "value": 70984, }, { "category": "Pet", @@ -29396,7 +33448,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13274, + "value": 13957, }, { "category": "Pet", @@ -29404,7 +33456,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pastel Sock Bear", "sh": true, }, - "value": 186779, + "value": 210101, }, { "category": "Pet", @@ -29412,7 +33464,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chocolate Dog", "sh": true, }, - "value": 175427, + "value": 198101, }, { "category": "Pet", @@ -29421,7 +33473,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 22009, + "value": 27647, }, { "category": "Pet", @@ -29429,7 +33481,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blossom Koi Fish", "pt": 2, }, - "value": 6228144, + "value": 6408683, }, { "category": "Pet", @@ -29437,7 +33489,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Emoji Cat", "pt": 2, }, - "value": 221, + "value": 223, }, { "category": "Pet", @@ -29446,7 +33498,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 36672, + "value": 43038, }, { "category": "Pet", @@ -29455,7 +33507,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 15521, + "value": 17054, }, { "category": "Pet", @@ -29464,7 +33516,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 17127, + "value": 18693, }, { "category": "Pet", @@ -29472,7 +33524,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Carnival Elephant", "sh": true, }, - "value": 186610, + "value": 212153, }, { "category": "Pet", @@ -29480,7 +33532,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Basketball Retriever", "sh": true, }, - "value": 146019, + "value": 197158, }, { "category": "Pet", @@ -29488,7 +33540,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blossom Koi Fish", "pt": 1, }, - "value": 9876800, + "value": 11356453, }, { "category": "Pet", @@ -29497,7 +33549,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 37159, + "value": 38272, }, { "category": "Pet", @@ -29506,7 +33558,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 17435, + "value": 18022, }, { "category": "Pet", @@ -29515,21 +33567,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 16827, + "value": 17422, }, { "category": "Pet", "configData": { "id": "Pastel Deer", }, - "value": 65869321, + "value": 83290473, }, { "category": "Pet", "configData": { "id": "Cloud Hedgehog", }, - "value": 259885321, + "value": 354497213, }, { "category": "Pet", @@ -29537,7 +33589,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cloud Hedgehog", "pt": 2, }, - "value": 18991107, + "value": 19467912, }, { "category": "Pet", @@ -29545,7 +33597,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pastel Deer", "pt": 2, }, - "value": 6608111, + "value": 6820506, }, { "category": "Pet", @@ -29553,7 +33605,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Clown Cat", "sh": true, }, - "value": 575010, + "value": 657141, }, { "category": "Pet", @@ -29562,7 +33614,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 20790, + "value": 23289, }, { "category": "Pet", @@ -29571,7 +33623,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 14679, + "value": 15304, }, { "category": "Pet", @@ -29580,7 +33632,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 17232, + "value": 19033, }, { "category": "Pet", @@ -29588,7 +33640,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chocolate Hippo", "sh": true, }, - "value": 149134, + "value": 163052, }, { "category": "Pet", @@ -29597,7 +33649,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 19882, + "value": 20997, }, { "category": "Pet", @@ -29606,7 +33658,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 18656, + "value": 21776, }, { "category": "Pet", @@ -29614,7 +33666,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hot Air Balloon Dog", "sh": true, }, - "value": 560933, + "value": 904800, }, { "category": "Pet", @@ -29622,7 +33674,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cloud Bat", "pt": 2, }, - "value": 17601859, + "value": 18017567, }, { "category": "Pet", @@ -29630,14 +33682,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cloud Hedgehog", "pt": 1, }, - "value": 32567375, + "value": 36215630, }, { "category": "Pet", "configData": { "id": "Cloud Bat", }, - "value": 250015417, + "value": 308928145, }, { "category": "Pet", @@ -29645,7 +33697,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pastel Deer", "pt": 1, }, - "value": 9806763, + "value": 11024312, }, { "category": "Pet", @@ -29653,14 +33705,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cloud Bat", "pt": 1, }, - "value": 31145111, + "value": 33710060, }, { "category": "Pet", "configData": { "id": "Royal Cloud Cat", }, - "value": 230483158, + "value": 263714278, }, { "category": "Pet", @@ -29668,7 +33720,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cloud Dog", "pt": 2, }, - "value": 6051678, + "value": 6240988, }, { "category": "Pet", @@ -29676,14 +33728,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Royal Cloud Cat", "pt": 2, }, - "value": 18147330, + "value": 18458912, }, { "category": "Pet", "configData": { "id": "Cloud Dog", }, - "value": 62392736, + "value": 74446139, }, { "category": "Pet", @@ -29691,7 +33743,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cloud Dog", "pt": 1, }, - "value": 9250524, + "value": 10204140, }, { "category": "Pet", @@ -29699,7 +33751,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Royal Cloud Cat", "pt": 1, }, - "value": 29775727, + "value": 31713705, }, { "category": "Pet", @@ -29707,7 +33759,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cupcake", "sh": true, }, - "value": 168269, + "value": 182501, }, { "category": "Pet", @@ -29716,7 +33768,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 46954, + "value": 51611, }, { "category": "Pet", @@ -29724,7 +33776,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hot Dog", "sh": true, }, - "value": 195899, + "value": 222123, }, { "category": "Pet", @@ -29733,14 +33785,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 18586, + "value": 22600, }, { "category": "Pet", "configData": { "id": "Angel Dog", }, - "value": 263137345, + "value": 296881774, }, { "category": "Pet", @@ -29748,14 +33800,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Heavenly Peacock", "pt": 1, }, - "value": 13574682, + "value": 14594888, }, { "category": "Pet", "configData": { "id": "Heavenly Peacock", }, - "value": 87867794, + "value": 97516664, }, { "category": "Pet", @@ -29763,7 +33815,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Dog", "pt": 2, }, - "value": 21692148, + "value": 22186779, }, { "category": "Pet", @@ -29771,7 +33823,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Dog", "pt": 1, }, - "value": 35396804, + "value": 37705747, }, { "category": "Pet", @@ -29779,7 +33831,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dove", "pt": 2, }, - "value": 8378051, + "value": 8604654, }, { "category": "Pet", @@ -29787,21 +33839,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Heavenly Peacock", "pt": 2, }, - "value": 9543900, + "value": 9881441, }, { "category": "Pet", "configData": { "id": "Dove", }, - "value": 92581621, + "value": 105651122, }, { "category": "Pet", "configData": { "id": "Pegasus", }, - "value": 354044198, + "value": 392662076, }, { "category": "Pet", @@ -29809,7 +33861,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dove", "pt": 1, }, - "value": 12735875, + "value": 13549880, }, { "category": "Pet", @@ -29818,7 +33870,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 15357, + "value": 16236, }, { "category": "Pet", @@ -29826,7 +33878,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Empyrean Dragon", "pt": 1, }, - "value": 55293383, + "value": 58813483, }, { "category": "Pet", @@ -29834,7 +33886,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pegasus", "pt": 2, }, - "value": 29213431, + "value": 29802462, }, { "category": "Pet", @@ -29842,14 +33894,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angelus", "pt": 2, }, - "value": 13266316, + "value": 13649106, }, { "category": "Pet", "configData": { "id": "Empyrean Dragon", }, - "value": 382803570, + "value": 418845291, }, { "category": "Pet", @@ -29857,7 +33909,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Empyrean Dragon", "pt": 2, }, - "value": 37451826, + "value": 38540194, }, { "category": "Pet", @@ -29865,7 +33917,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Empyrean Axolotl", "pt": 2, }, - "value": 11616635, + "value": 11844618, }, { "category": "Pet", @@ -29873,14 +33925,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angelus", "pt": 1, }, - "value": 19283374, + "value": 20608910, }, { "category": "Pet", "configData": { "id": "Angelus", }, - "value": 120049917, + "value": 131110168, }, { "category": "Pet", @@ -29888,7 +33940,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Empyrean Axolotl", "pt": 1, }, - "value": 17970946, + "value": 19261983, }, { "category": "Pet", @@ -29896,14 +33948,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pegasus", "pt": 1, }, - "value": 47627842, + "value": 50994579, }, { "category": "Pet", "configData": { "id": "Empyrean Axolotl", }, - "value": 126473736, + "value": 141559176, }, { "category": "Pet", @@ -29920,7 +33972,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 54, + "value": 55, }, { "category": "Pet", @@ -29928,7 +33980,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cloud Penguin", "sh": true, }, - "value": 592332, + "value": 898780, }, { "category": "Pet", @@ -29937,7 +33989,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 19006, + "value": 19828, }, { "category": "Pet", @@ -29946,7 +33998,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 16822, + "value": 17633, }, { "category": "Pet", @@ -29955,7 +34007,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 22035, + "value": 25708, }, { "category": "Pet", @@ -29964,7 +34016,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 16155, + "value": 16604, }, { "category": "Pet", @@ -29972,7 +34024,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pastel Sock Bunny", "sh": true, }, - "value": 167365, + "value": 184674, }, { "category": "Pet", @@ -29981,7 +34033,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 15798, + "value": 16862, }, { "category": "Pet", @@ -29990,7 +34042,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 15454, + "value": 17247, }, { "category": "Pet", @@ -29998,7 +34050,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pastel Sock Dragon", "sh": true, }, - "value": 170567, + "value": 185999, }, { "category": "Pet", @@ -30007,7 +34059,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 46500, + "value": 48646, }, { "category": "Pet", @@ -30015,21 +34067,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Royal Cloud Corgi", "pt": 1, }, - "value": 11605364, + "value": 12536530, }, { "category": "Pet", "configData": { "id": "Angel Cat", }, - "value": 81404009, + "value": 92884862, }, { "category": "Pet", "configData": { "id": "Royal Cloud Corgi", }, - "value": 76575387, + "value": 85240543, }, { "category": "Pet", @@ -30038,7 +34090,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 87026, + "value": 91091, }, { "category": "Pet", @@ -30046,7 +34098,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Cat", "pt": 2, }, - "value": 7059517, + "value": 7173463, }, { "category": "Pet", @@ -30054,7 +34106,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Cat", "pt": 1, }, - "value": 10887485, + "value": 11565982, }, { "category": "Pet", @@ -30062,7 +34114,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Royal Cloud Corgi", "pt": 2, }, - "value": 8040357, + "value": 8211031, }, { "category": "Pet", @@ -30070,7 +34122,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Carnival Panda", "sh": true, }, - "value": 169173, + "value": 187543, }, { "category": "Pet", @@ -30079,7 +34131,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 21368, + "value": 25264, }, { "category": "Pet", @@ -30087,7 +34139,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blossom Squirrel", "sh": true, }, - "value": 618592, + "value": 845423, }, { "category": "Pet", @@ -30096,7 +34148,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 20696, + "value": 22548, }, { "category": "Pet", @@ -30105,7 +34157,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 17820, + "value": 20095, }, { "category": "Pet", @@ -30114,7 +34166,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 25650, + "value": 28445, }, { "category": "Pet", @@ -30123,7 +34175,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 21032, + "value": 22860, }, { "category": "Pet", @@ -30131,7 +34183,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pastel Goat", "pt": 1, }, - "value": 16020703218, + "value": 15968658383, }, { "category": "Pet", @@ -30139,7 +34191,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Vibrant Cobra", "pt": 1, }, - "value": 514677951, + "value": 513105784, }, { "category": "Pet", @@ -30147,7 +34199,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pastel Griffin", "sh": true, }, - "value": 536265292, + "value": 535049349, }, { "category": "Pet", @@ -30155,7 +34207,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Vibrant Cobra", "pt": 2, }, - "value": 370499445, + "value": 367329422, }, { "category": "Pet", @@ -30163,14 +34215,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pastel Goat", "pt": 2, }, - "value": 10492944444, + "value": 10375453570, }, { "category": "Pet", "configData": { "id": "Vibrant Cobra", }, - "value": 3110226599, + "value": 3107493621, }, { "category": "Pet", @@ -30178,21 +34230,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pastel Goat", "sh": true, }, - "value": 251910884, + "value": 251383771, }, { "category": "Pet", "configData": { "id": "Pastel Goat", }, - "value": 113196552616, + "value": 112559982479, }, { "category": "Pet", "configData": { "id": "Pastel Griffin", }, - "value": 242285324018, + "value": 240614583847, }, { "category": "Pet", @@ -30200,7 +34252,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pastel Griffin", "pt": 1, }, - "value": 33465816670, + "value": 33309441793, }, { "category": "Pet", @@ -30208,7 +34260,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pastel Griffin", "pt": 2, }, - "value": 21769031527, + "value": 21514707044, }, { "category": "Pet", @@ -30217,7 +34269,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 51790, + "value": 53244, }, { "category": "Pet", @@ -30226,7 +34278,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 17461, + "value": 18658, }, { "category": "Pet", @@ -30235,7 +34287,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 40900, + "value": 44164, }, { "category": "Pet", @@ -30244,7 +34296,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 45779, + "value": 49729, }, { "category": "Pet", @@ -30253,7 +34305,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 35119, + "value": 63018, }, { "category": "Pet", @@ -30262,7 +34314,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 33228, + "value": 34173, }, { "category": "Pet", @@ -30271,14 +34323,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 69823, + "value": 99982, }, { "category": "Pet", "configData": { "id": "Vibrant Toucan", }, - "value": 63024672, + "value": 63055620, }, { "category": "Pet", @@ -30287,7 +34339,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 24436, + "value": 26679, }, { "category": "Pet", @@ -30295,7 +34347,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Royal Cloud Corgi", "sh": true, }, - "value": 210082, + "value": 225989, }, { "category": "Pet", @@ -30303,7 +34355,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Royal Cloud Cat", "sh": true, }, - "value": 572832, + "value": 639865, }, { "category": "Pet", @@ -30311,14 +34363,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Vibrant Whale", "sh": true, }, - "value": 389205, + "value": 441320, }, { "category": "Pet", "configData": { "id": "Vibrant Whale", }, - "value": 136255954, + "value": 156609240, }, { "category": "Pet", @@ -30326,7 +34378,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cloud Hedgehog", "sh": true, }, - "value": 620704, + "value": 803655, }, { "category": "Pet", @@ -30335,7 +34387,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 14465, + "value": 15002, }, { "category": "Pet", @@ -30343,7 +34395,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Vibrant Whale", "pt": 1, }, - "value": 22569224, + "value": 24273525, }, { "category": "Pet", @@ -30351,7 +34403,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cloud Monkey", "sh": true, }, - "value": 162298, + "value": 210223, }, { "category": "Pet", @@ -30359,7 +34411,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pastel Elephant", "pt": 1, }, - "value": 20609618, + "value": 23266498, }, { "category": "Pet", @@ -30367,7 +34419,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pastel Elephant", "pt": 2, }, - "value": 14756790, + "value": 14823742, }, { "category": "Pet", @@ -30375,14 +34427,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Vibrant Whale", "pt": 2, }, - "value": 16914748, + "value": 17009457, }, { "category": "Pet", "configData": { "id": "Pastel Elephant", }, - "value": 137685480, + "value": 160934598, }, { "category": "Pet", @@ -30391,7 +34443,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 16667, + "value": 17650, }, { "category": "Pet", @@ -30399,7 +34451,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Popcorn Cat", "sh": true, }, - "value": 202407, + "value": 232331, }, { "category": "Pet", @@ -30408,7 +34460,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 41889, + "value": 45234, }, { "category": "Pet", @@ -30417,7 +34469,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 18252, + "value": 19225, }, { "category": "Pet", @@ -30426,7 +34478,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 56695, + "value": 57840, }, { "category": "Pet", @@ -30434,7 +34486,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Cat", "sh": true, }, - "value": 209394, + "value": 230199, }, { "category": "Pet", @@ -30443,7 +34495,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 21276, + "value": 25005, }, { "category": "Pet", @@ -30452,7 +34504,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 62224, + "value": 75241, }, { "category": "Pet", @@ -30461,7 +34513,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 59036, + "value": 60653, }, { "category": "Pet", @@ -30469,7 +34521,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pastel Deer", "sh": true, }, - "value": 177480, + "value": 208683, }, { "category": "Pet", @@ -30477,7 +34529,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Vibrant Toucan", "pt": 1, }, - "value": 9808478, + "value": 9780983, }, { "category": "Pet", @@ -30485,7 +34537,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cloud Bat", "sh": true, }, - "value": 589507, + "value": 698956, }, { "category": "Pet", @@ -30493,7 +34545,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Empyrean Dragon", "sh": true, }, - "value": 1001082, + "value": 1219993, }, { "category": "Pet", @@ -30501,7 +34553,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blossom Koi Fish", "sh": true, }, - "value": 170165, + "value": 208023, }, { "category": "Pet", @@ -30509,7 +34561,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Vibrant Toucan", "pt": 2, }, - "value": 7384824, + "value": 7317679, }, { "category": "Pet", @@ -30518,7 +34570,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 21735, + "value": 22960, }, { "category": "Pet", @@ -30527,7 +34579,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 19660, + "value": 20611, }, { "category": "Pet", @@ -30535,7 +34587,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cloud Dog", "sh": true, }, - "value": 163403, + "value": 183320, }, { "category": "Pet", @@ -30544,7 +34596,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 20165, + "value": 24054, }, { "category": "Pet", @@ -30553,7 +34605,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 53828, + "value": 55400, }, { "category": "Pet", @@ -30562,7 +34614,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 22879, + "value": 25344, }, { "category": "Pet", @@ -30571,7 +34623,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 55743, + "value": 56976, }, { "category": "Pet", @@ -30580,7 +34632,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 22146, + "value": 24770, + }, + { + "category": "Misc", + "configData": { + "id": "Platinum Fishing Rod", + }, + "value": 640162, }, { "category": "Pet", @@ -30589,7 +34648,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 22787, + "value": 25133, }, { "category": "Pet", @@ -30598,7 +34657,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 18748, + "value": 19813, }, { "category": "Pet", @@ -30607,7 +34666,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 52369188, + "value": 52169795, }, { "category": "Pet", @@ -30616,7 +34675,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 72631034, + "value": 72646477, }, { "category": "Pet", @@ -30625,7 +34684,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1058099, + "value": 1065265, }, { "category": "Pet", @@ -30633,7 +34692,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pegasus", "sh": true, }, - "value": 890845, + "value": 989110, }, { "category": "Pet", @@ -30641,7 +34700,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Empyrean Axolotl", "sh": true, }, - "value": 329120, + "value": 359787, }, { "category": "Pet", @@ -30650,7 +34709,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 25165218, + "value": 25127487, }, { "category": "Pet", @@ -30659,7 +34718,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 33906507, + "value": 33937461, }, { "category": "Pet", @@ -30667,7 +34726,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Dog", "sh": true, }, - "value": 656339, + "value": 739006, }, { "category": "Pet", @@ -30676,7 +34735,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 35919, + "value": 39290, }, { "category": "Pet", @@ -30684,7 +34743,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pastel Elephant", "sh": true, }, - "value": 370183, + "value": 442263, }, { "category": "Pet", @@ -30693,7 +34752,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 26161, + "value": 27595, }, { "category": "Pet", @@ -30702,7 +34761,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 72985, + "value": 76685, }, { "category": "Pet", @@ -30711,7 +34770,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 69494, + "value": 73040, }, { "category": "Pet", @@ -30720,7 +34779,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 27081, + "value": 46186, }, { "category": "Pet", @@ -30728,7 +34787,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angelus", "sh": true, }, - "value": 336226, + "value": 361655, }, { "category": "Pet", @@ -30737,7 +34796,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 26478, + "value": 29134, }, { "category": "Pet", @@ -30745,7 +34804,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Heavenly Peacock", "sh": true, }, - "value": 242375, + "value": 266830, + }, + { + "category": "Misc", + "configData": { + "id": "Emerald Fishing Rod", + }, + "value": 509482, }, { "category": "Pet", @@ -30753,7 +34819,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dove", "sh": true, }, - "value": 238341, + "value": 266707, + }, + { + "category": "Misc", + "configData": { + "id": "Sapphire Fishing Rod", + }, + "value": 458971, }, { "category": "Pet", @@ -30762,7 +34835,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 68177, + "value": 71904, }, { "category": "Pet", @@ -30771,7 +34844,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 25433, + "value": 28425, }, { "category": "Pet", @@ -30780,7 +34853,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 22498, + "value": 24658, + }, + { + "category": "Misc", + "configData": { + "id": "Amethyst Fishing Rod", + }, + "value": 414512, }, { "category": "Pet", @@ -30789,7 +34869,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 26035, + "value": 26943, }, { "category": "Pet", @@ -30798,7 +34878,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 67153, + "value": 71211, }, { "category": "Pet", @@ -30807,7 +34887,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 22640, + "value": 23211, }, { "category": "Pet", @@ -30816,7 +34896,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 896226, + "value": 905702, }, { "category": "Pet", @@ -30825,7 +34905,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 92209, + "value": 96448, }, { "category": "Pet", @@ -30833,7 +34913,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Vibrant Cobra", "sh": true, }, - "value": 7292683, + "value": 7261426, }, { "category": "Pet", @@ -30842,7 +34922,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 30951, + "value": 33293, }, { "category": "Pet", @@ -30851,7 +34931,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 25310, + "value": 27820, }, { "category": "Pet", @@ -30860,7 +34940,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 31150, + "value": 35563, }, { "category": "Pet", @@ -30869,7 +34949,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 20030, + "value": 20750, }, { "category": "Pet", @@ -30878,7 +34958,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 53708, + "value": 54790, }, { "category": "Pet", @@ -30887,7 +34967,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 73499, + "value": 77625, }, { "category": "Pet", @@ -30896,14 +34976,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 45393, + "value": 47741, }, { "category": "Pet", "configData": { "id": "Sun Angelus", }, - "value": 1260521, + "value": 1257288, }, { "category": "Pet", @@ -30912,7 +34992,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 37427, + "value": 39434, }, { "category": "Pet", @@ -30921,7 +35001,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 52778, + "value": 53376, }, { "category": "Pet", @@ -30930,7 +35010,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 52396, + "value": 55709, }, { "category": "Pet", @@ -30939,7 +35019,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 31160, + "value": 33275, }, { "category": "Pet", @@ -30948,7 +35028,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 43080, + "value": 46073, }, { "category": "Pet", @@ -30957,7 +35037,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 114634, + "value": 116323, }, { "category": "Pet", @@ -30966,7 +35046,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 143776, + "value": 146055, }, { "category": "Pet", @@ -30975,7 +35055,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 45433, + "value": 45666, + }, + { + "category": "Potion", + "configData": { + "id": "Huge", + "tn": 1, + }, + "value": 22056727, }, { "category": "Pet", @@ -30984,7 +35072,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 61088, + "value": 62810, }, { "category": "Pet", @@ -30993,7 +35081,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 121784, + "value": 127831, }, { "category": "Pet", @@ -31001,7 +35089,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sun Angelus", "pt": 1, }, - "value": 162972, + "value": 162177, }, { "category": "Pet", @@ -31009,7 +35097,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Vibrant Toucan", "sh": true, }, - "value": 146845, + "value": 145680, }, { "category": "Pet", @@ -31017,7 +35105,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sun Angelus", "pt": 2, }, - "value": 140177, + "value": 138890, + }, + { + "category": "Misc", + "configData": { + "id": "Magic Shard", + }, + "value": 128591297, }, { "category": "Pet", @@ -31025,7 +35120,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sun Angelus", "sh": true, }, - "value": 2881, + "value": 2835, }, { "category": "Pet", @@ -31043,7 +35138,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13, + "value": 15, }, { "category": "Pet", @@ -31052,7 +35147,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 17710, + "value": 17894, }, { "category": "Pet", @@ -31061,7 +35156,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 17172, + "value": 17626, }, { "category": "Pet", @@ -31071,6 +35166,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 8, }, + { + "category": "Enchant", + "configData": { + "id": "Magic Orb", + "tn": 1, + }, + "value": 939558, + }, { "category": "Pet", "configData": { @@ -31078,7 +35181,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 364, + "value": 362, }, { "category": "Pet", @@ -31096,7 +35199,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 382, + "value": 431, }, { "category": "Pet", @@ -31120,21 +35223,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Chroma Balloon Corgi", }, - "value": 1, + "value": 3, }, { "category": "Pet", "configData": { "id": "Chroma Balloon Dragon", }, - "value": 2, + "value": 4, + }, + { + "category": "Misc", + "configData": { + "id": "Mystery Ticket", + }, + "value": 19987, }, { "category": "Pet", "configData": { "id": "Titanic Axolotl", }, - "value": 1020, + "value": 1039, }, { "category": "Pet", @@ -31149,7 +35259,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Titanic Corgi", }, - "value": 678, + "value": 686, }, { "category": "Pet", @@ -31182,7 +35292,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Corgi", "pt": 2, }, - "value": 18, + "value": 21, }, { "category": "Pet", @@ -31208,7 +35318,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pixel Wolf", "pt": 1, }, - "value": 134, + "value": 168, + }, + { + "category": "Booth", + "configData": { + "id": "M10", + }, + "value": 2474, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Pegasus", + }, + "value": 150, }, { "category": "Pet", @@ -31224,42 +35348,49 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 49, + "value": 106, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 21", + }, + "value": 691400, }, { "category": "Pet", "configData": { "id": "Huge Valentines Cat", }, - "value": 7690, + "value": 7761, }, { "category": "Pet", "configData": { "id": "Valentines Cat", }, - "value": 318245, + "value": 288135, }, { "category": "Pet", "configData": { "id": "Heart Balloon Cat", }, - "value": 83197, + "value": 71989, }, { "category": "Pet", "configData": { "id": "Cupid Corgi", }, - "value": 223020, + "value": 201016, }, { "category": "Pet", "configData": { "id": "Huge Heart Balloon Cat", }, - "value": 4484, + "value": 4521, }, { "category": "Pet", @@ -31267,14 +35398,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Valentines Cat", "sh": true, }, - "value": 6591, + "value": 5459, }, { "category": "Pet", "configData": { "id": "Titanic Lovemelon", }, - "value": 329, + "value": 332, }, { "category": "Pet", @@ -31282,7 +35413,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Heart Balloon Cat", "sh": true, }, - "value": 1696, + "value": 1430, }, { "category": "Pet", @@ -31290,7 +35421,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cupid Corgi", "sh": true, }, - "value": 4523, + "value": 3681, }, { "category": "Pet", @@ -31298,7 +35429,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Heart Balloon Cat", "pt": 2, }, - "value": 1755, + "value": 1615, }, { "category": "Pet", @@ -31306,7 +35437,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Valentines Cat", "pt": 2, }, - "value": 6784, + "value": 5808, }, { "category": "Pet", @@ -31314,7 +35445,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cupid Corgi", "pt": 2, }, - "value": 4660, + "value": 4046, }, { "category": "Pet", @@ -31322,7 +35453,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Heart Balloon Cat", "pt": 2, }, - "value": 89, + "value": 92, }, { "category": "Pet", @@ -31330,7 +35461,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Heart Balloon Cat", "sh": true, }, - "value": 203, + "value": 204, }, { "category": "Pet", @@ -31339,7 +35470,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 29, + "value": 30, }, { "category": "Pet", @@ -31348,7 +35479,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 144, + "value": 142, }, { "category": "Pet", @@ -31364,7 +35495,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Valentines Cat", "pt": 2, }, - "value": 170, + "value": 172, }, { "category": "Pet", @@ -31373,7 +35504,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 90, + "value": 91, }, { "category": "Pet", @@ -31407,7 +35538,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5, + "value": 6, }, { "category": "Pet", @@ -31415,14 +35546,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Purple Dragon", "sh": true, }, - "value": 177, + "value": 355, }, { "category": "Pet", "configData": { "id": "Huge Hot Dog", }, - "value": 10038, + "value": 19337, }, { "category": "Pet", @@ -31430,14 +35561,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Hot Dog", "sh": true, }, - "value": 208, + "value": 392, }, { "category": "Pet", "configData": { "id": "Titanic Valentines Cat", }, - "value": 929, + "value": 946, }, { "category": "Pet", @@ -31453,14 +35584,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Valentines Cat", "pt": 2, }, - "value": 19, + "value": 20, }, { "category": "Pet", "configData": { "id": "Titanic Love Lamb", }, - "value": 1228, + "value": 1237, }, { "category": "Pet", @@ -31485,7 +35616,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Love Lamb", "pt": 2, }, - "value": 26, + "value": 27, + }, + { + "category": "Booth", + "configData": { + "id": "Empyrean", + }, + "value": 3698, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Ducky", + }, + "value": 222, }, { "category": "Pet", @@ -31494,54 +35639,106 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 75, }, + { + "category": "Misc", + "configData": { + "id": "Breakable Sprinkler", + }, + "value": 2786535681, + }, + { + "category": "Ultimate", + "configData": { + "id": "Ground Pound", + }, + "value": 9245214, + }, + { + "category": "Potion", + "configData": { + "id": "Diamonds", + "tn": 7, + }, + "value": 614887791, + }, { "category": "Pet", "configData": { "id": "Huge Jelly Axolotl", }, - "value": 10541, + "value": 10629, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 22", + }, + "value": 909356, }, { "category": "Pet", "configData": { "id": "Jelly Axolotl", }, - "value": 428093, + "value": 382729, }, { "category": "Pet", "configData": { "id": "Jelly Shiba", }, - "value": 231745, + "value": 209460, }, { "category": "Pet", "configData": { "id": "Jelly Monkey", }, - "value": 180005, + "value": 156372, + }, + { + "category": "Ultimate", + "configData": { + "id": "Black Hole", + }, + "value": 8005, + }, + { + "category": "Enchant", + "configData": { + "id": "Boss Chest Mimic", + "tn": 1, + }, + "value": 68002, + }, + { + "category": "Enchant", + "configData": { + "id": "Super Shiny Hunter", + "tn": 1, + }, + "value": 15790, }, { "category": "Pet", "configData": { "id": "Cyber Axolotl", }, - "value": 3097539501, + "value": 3127405882, }, { "category": "Pet", "configData": { "id": "Cyborg Piggy", }, - "value": 2234460991, + "value": 2227176299, }, { "category": "Pet", "configData": { "id": "Cyber Slime", }, - "value": 1117444163, + "value": 1144890477, }, { "category": "Pet", @@ -31549,21 +35746,105 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Piggy", "pt": 1, }, - "value": 245037276, + "value": 246697060, }, { "category": "Pet", "configData": { "id": "Cyborg Cow", }, - "value": 543071816, + "value": 541679774, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Toilet", + }, + "value": 21862, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Rocket", + }, + "value": 4967, + }, + { + "category": "Potion", + "configData": { + "id": "Treasure Hunter", + "tn": 9, + }, + "value": 2703344345, + }, + { + "category": "Enchant", + "configData": { + "id": "Strong Pets", + "tn": 8, + }, + "value": 370490556, + }, + { + "category": "Enchant", + "configData": { + "id": "Criticals", + "tn": 8, + }, + "value": 345468157, + }, + { + "category": "Enchant", + "configData": { + "id": "Lucky Eggs", + "tn": 8, + }, + "value": 78138112, + }, + { + "category": "Enchant", + "configData": { + "id": "Coins", + "tn": 8, + }, + "value": 374602370, + }, + { + "category": "Enchant", + "configData": { + "id": "Diamonds", + "tn": 8, + }, + "value": 35236827, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Hologram", + }, + "value": 44587, }, { "category": "Pet", "configData": { "id": "Cyborg Corgi", }, - "value": 5598760116, + "value": 5511129403, + }, + { + "category": "Potion", + "configData": { + "id": "Damage", + "tn": 9, + }, + "value": 202894240, + }, + { + "category": "Booth", + "configData": { + "id": "Lucky Block", + }, + "value": 66889, }, { "category": "Pet", @@ -31571,7 +35852,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jelly Axolotl", "pt": 2, }, - "value": 10110, + "value": 8738, }, { "category": "Pet", @@ -31579,28 +35860,80 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jelly Monkey", "sh": true, }, - "value": 3618, + "value": 3057, + }, + { + "category": "Booth", + "configData": { + "id": "Fruit", + }, + "value": 75391, + }, + { + "category": "Booth", + "configData": { + "id": "TNT", + }, + "value": 40363, + }, + { + "category": "Misc", + "configData": { + "id": "Tech Key", + }, + "value": 1882432874, }, { "category": "Pet", "configData": { "id": "Huge Bat", }, - "value": 33334, + "value": 33505, }, { "category": "Pet", "configData": { "id": "Huge Willow Wisp", }, - "value": 19809, + "value": 19905, + }, + { + "category": "Egg", + "configData": { + "id": "Huge Machine Egg 3", + }, + "value": 78785, + }, + { + "category": "Potion", + "configData": { + "id": "Lucky", + "tn": 9, + }, + "value": 221185406, + }, + { + "category": "Potion", + "configData": { + "id": "Coins", + "tn": 9, + }, + "value": 343187874, }, { "category": "Pet", "configData": { "id": "Cyborg Squirrel", }, - "value": 2978400524, + "value": 2956421327, + }, + { + "category": "Enchant", + "configData": { + "id": "Treasure Hunter", + "tn": 8, + }, + "value": 379418565, }, { "category": "Pet", @@ -31608,21 +35941,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Axolotl", "pt": 1, }, - "value": 398660638, + "value": 415529609, }, { "category": "Pet", "configData": { "id": "Cyber Dragon", }, - "value": 4517440506, + "value": 4577901262, }, { "category": "Pet", "configData": { "id": "Cyber Ducky", }, - "value": 1034323754, + "value": 1068634877, }, { "category": "Pet", @@ -31630,7 +35963,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jelly Monkey", "pt": 2, }, - "value": 4183, + "value": 3813, }, { "category": "Pet", @@ -31638,14 +35971,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jelly Shiba", "pt": 2, }, - "value": 5584, + "value": 4877, }, { "category": "Pet", "configData": { "id": "Cyborg Bat", }, - "value": 713661969, + "value": 709635348, }, { "category": "Pet", @@ -31653,7 +35986,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Squirrel", "pt": 1, }, - "value": 337866183, + "value": 339184338, }, { "category": "Pet", @@ -31661,21 +35994,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Ducky", "pt": 1, }, - "value": 160022090, + "value": 159086866, }, { "category": "Pet", "configData": { "id": "Huge Pastel Elephant", }, - "value": 10018, + "value": 10073, }, { "category": "Pet", "configData": { "id": "Cyborg Ducky", }, - "value": 1268363443, + "value": 1249067027, }, { "category": "Pet", @@ -31683,7 +36016,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Corgi", "pt": 1, }, - "value": 648153621, + "value": 645802103, }, { "category": "Pet", @@ -31691,7 +36024,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jelly Axolotl", "sh": true, }, - "value": 8896, + "value": 7121, }, { "category": "Pet", @@ -31699,14 +36032,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pastel Elephant", "sh": true, }, - "value": 433, + "value": 435, }, { "category": "Pet", "configData": { "id": "Huge Jelly Monkey", }, - "value": 5746, + "value": 5781, }, { "category": "Pet", @@ -31714,7 +36047,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Cat", "pt": 1, }, - "value": 55412242929, + "value": 54884021601, }, { "category": "Pet", @@ -31722,14 +36055,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Piggy", "pt": 2, }, - "value": 96111491, + "value": 95744260, }, { "category": "Pet", "configData": { "id": "Cyborg Cat", }, - "value": 503164941163, + "value": 491138225388, + }, + { + "category": "Booth", + "configData": { + "id": "Comet", + }, + "value": 5074, + }, + { + "category": "Booth", + "configData": { + "id": "Money", + }, + "value": 1651, }, { "category": "Pet", @@ -31737,7 +36084,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Ducky", "pt": 2, }, - "value": 79427264, + "value": 78695435, }, { "category": "Pet", @@ -31745,7 +36092,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Cow", "pt": 1, }, - "value": 68987041, + "value": 69551847, }, { "category": "Pet", @@ -31753,7 +36100,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Squirrel", "pt": 2, }, - "value": 135652352, + "value": 135333852, }, { "category": "Pet", @@ -31763,13 +36110,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 245, }, + { + "category": "Enchant", + "configData": { + "id": "Tap Power", + "tn": 8, + }, + "value": 373689730, + }, { "category": "Pet", "configData": { "id": "Huge Bat", "pt": 1, }, - "value": 2943, + "value": 2955, }, { "category": "Pet", @@ -31777,7 +36132,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jelly Shiba", "sh": true, }, - "value": 4821, + "value": 3913, }, { "category": "Pet", @@ -31785,7 +36140,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Slime", "pt": 1, }, - "value": 157945010, + "value": 169621741, }, { "category": "Pet", @@ -31793,7 +36148,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Cat", "pt": 2, }, - "value": 19955925405, + "value": 19734062556, }, { "category": "Pet", @@ -31801,7 +36156,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Ducky", "pt": 1, }, - "value": 174978335, + "value": 192734776, }, { "category": "Pet", @@ -31809,7 +36164,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Bat", "pt": 1, }, - "value": 92335053, + "value": 92118218, }, { "category": "Pet", @@ -31817,14 +36172,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Corgi", "pt": 2, }, - "value": 277594271, + "value": 275184020, }, { "category": "Pet", "configData": { "id": "Cyber Agony", }, - "value": 4160954533, + "value": 4183256872, }, { "category": "Pet", @@ -31832,21 +36187,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Dog", "pt": 1, }, - "value": 15784686420, + "value": 15599194478, }, { "category": "Pet", "configData": { "id": "Cyborg Dog", }, - "value": 126847894180, + "value": 123796435984, }, { "category": "Pet", "configData": { "id": "Titanic Jelly Dragon", }, - "value": 462, + "value": 466, }, { "category": "Pet", @@ -31854,7 +36209,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Dragon", "pt": 1, }, - "value": 621716406, + "value": 655475135, }, { "category": "Pet", @@ -31862,14 +36217,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Willow Wisp", "pt": 1, }, - "value": 1757, + "value": 1768, }, { "category": "Pet", "configData": { "id": "Huge Red Fluffy", }, - "value": 2969, + "value": 2983, }, { "category": "Pet", @@ -31884,7 +36239,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Huge Lumi Axolotl", }, - "value": 3714, + "value": 10052, }, { "category": "Pet", @@ -31892,7 +36247,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pastel Elephant", "pt": 1, }, - "value": 917, + "value": 925, }, { "category": "Pet", @@ -31900,7 +36255,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Jelly Axolotl", "pt": 2, }, - "value": 252, + "value": 256, }, { "category": "Pet", @@ -31908,7 +36263,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Bat", "pt": 2, }, - "value": 44646394, + "value": 44513515, }, { "category": "Pet", @@ -31916,7 +36271,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Dragon", "pt": 2, }, - "value": 229480587, + "value": 237853822, }, { "category": "Pet", @@ -31924,7 +36279,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Dog", "pt": 2, }, - "value": 7064852211, + "value": 6975592305, }, { "category": "Pet", @@ -31932,7 +36287,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Cow", "pt": 2, }, - "value": 32447832, + "value": 32287908, }, { "category": "Pet", @@ -31940,7 +36295,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Corgi", "sh": true, }, - "value": 11621616, + "value": 11502586, }, { "category": "Pet", @@ -31957,7 +36312,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 191, + "value": 189, }, { "category": "Pet", @@ -31986,13 +36341,20 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 73, }, + { + "category": "Misc", + "configData": { + "id": "Tech Spinny Wheel Ticket", + }, + "value": 792482347, + }, { "category": "Pet", "configData": { "id": "Cyber Axolotl", "pt": 2, }, - "value": 140354331, + "value": 145038568, }, { "category": "Pet", @@ -32001,7 +36363,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 434423, + "value": 435516, }, { "category": "Pet", @@ -32010,14 +36372,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 312655, + "value": 311583, + }, + { + "category": "Misc", + "configData": { + "id": "Tech Key Lower Half", + }, + "value": 2465450864, }, { "category": "Pet", "configData": { "id": "Cyber Bear", }, - "value": 2540652519, + "value": 2528026087, }, { "category": "Pet", @@ -32025,7 +36394,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Agony", "pt": 1, }, - "value": 598947768, + "value": 622911962, }, { "category": "Pet", @@ -32033,7 +36402,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Agony", "pt": 2, }, - "value": 212894439, + "value": 220344103, }, { "category": "Pet", @@ -32041,7 +36410,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Squirrel", "sh": true, }, - "value": 6184332, + "value": 6184326, }, { "category": "Pet", @@ -32049,14 +36418,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hi-Tech Monkey", "pt": 2, }, - "value": 44521457, + "value": 44970447, }, { "category": "Pet", "configData": { "id": "Hi-Tech Monkey", }, - "value": 1053186265, + "value": 1067036032, }, { "category": "Pet", @@ -32064,21 +36433,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Slime", "pt": 2, }, - "value": 58106699, + "value": 61414198, }, { "category": "Pet", "configData": { "id": "Hi-Tech Sloth", }, - "value": 820667989, + "value": 834988575, }, { "category": "Pet", "configData": { "id": "Hi-Tech Parrot", }, - "value": 256486807, + "value": 260706640, }, { "category": "Pet", @@ -32086,7 +36455,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Ducky", "pt": 2, }, - "value": 67960588, + "value": 73268983, + }, + { + "category": "Misc", + "configData": { + "id": "Tech Key Upper Half", + }, + "value": 1275070817, }, { "category": "Pet", @@ -32094,7 +36470,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hi-Tech Monkey", "pt": 1, }, - "value": 119690002, + "value": 121670658, }, { "category": "Pet", @@ -32102,7 +36478,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hi-Tech Sloth", "pt": 1, }, - "value": 94437936, + "value": 96872344, }, { "category": "Pet", @@ -32110,7 +36486,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Bear", "pt": 2, }, - "value": 134681011, + "value": 135543155, }, { "category": "Pet", @@ -32118,14 +36494,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Cat", "sh": true, }, - "value": 992101601, + "value": 970134185, }, { "category": "Pet", "configData": { "id": "Hi-Tech Bee", }, - "value": 1222943390, + "value": 1229058956, }, { "category": "Pet", @@ -32133,7 +36509,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hi-Tech Bee", "pt": 2, }, - "value": 54165613, + "value": 54179911, }, { "category": "Pet", @@ -32141,14 +36517,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hi-Tech Ladybug", "pt": 2, }, - "value": 16892180, + "value": 16866406, }, { "category": "Pet", "configData": { "id": "Hi-Tech Ladybug", }, - "value": 281646845, + "value": 283793766, }, { "category": "Pet", @@ -32156,7 +36532,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hi-Tech Bee", "pt": 1, }, - "value": 138091666, + "value": 140207999, + }, + { + "category": "Misc", + "configData": { + "id": "Charm Hammer", + }, + "value": 132456156, }, { "category": "Pet", @@ -32164,7 +36547,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Bear", "pt": 1, }, - "value": 333519547, + "value": 339033803, }, { "category": "Pet", @@ -32172,7 +36555,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hi-Tech Ladybug", "pt": 1, }, - "value": 36416127, + "value": 37384332, }, { "category": "Pet", @@ -32180,7 +36563,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Dog", "sh": true, }, - "value": 258611018, + "value": 252887962, }, { "category": "Pet", @@ -32188,21 +36571,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hi-Tech Flamingo", "pt": 2, }, - "value": 33086593, + "value": 33130007, }, { "category": "Pet", "configData": { "id": "Hi-Tech Elephant", }, - "value": 184391449, + "value": 188491228, }, { "category": "Pet", "configData": { "id": "Hi-Tech Flamingo", }, - "value": 744601560, + "value": 760381215, }, { "category": "Pet", @@ -32210,21 +36593,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hi-Tech Elephant", "pt": 2, }, - "value": 11737193, + "value": 11766960, }, { "category": "Pet", "configData": { "id": "Abyssal Axolotl", }, - "value": 715088193, + "value": 723772088, }, { "category": "Pet", "configData": { "id": "Abyssal Pufferfish", }, - "value": 622030836, + "value": 637735983, }, { "category": "Pet", @@ -32232,7 +36615,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Horse", "pt": 1, }, - "value": 66507690, + "value": 68594722, }, { "category": "Pet", @@ -32240,7 +36623,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abyssal Seal", "pt": 1, }, - "value": 27521355, + "value": 28215269, }, { "category": "Pet", @@ -32248,7 +36631,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Cowboy Cat", "pt": 1, }, - "value": 74789250, + "value": 77506316, }, { "category": "Pet", @@ -32256,7 +36639,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abyssal Parrot", "pt": 1, }, - "value": 158548633, + "value": 160775342, }, { "category": "Pet", @@ -32264,35 +36647,35 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abyssal Axolotl", "pt": 1, }, - "value": 90812823, + "value": 92420458, }, { "category": "Pet", "configData": { "id": "Tech Puma", }, - "value": 175749934, + "value": 178997567, }, { "category": "Pet", "configData": { "id": "Abyssal Parrot", }, - "value": 1373079123, + "value": 1370064818, }, { "category": "Pet", "configData": { "id": "Abyssal Kraken", }, - "value": 330476982, + "value": 330360967, }, { "category": "Pet", "configData": { "id": "Tech Camel", }, - "value": 734005397, + "value": 747780189, }, { "category": "Pet", @@ -32300,14 +36683,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abyssal Parrot", "pt": 2, }, - "value": 58256020, + "value": 58001770, }, { "category": "Pet", "configData": { "id": "Abyssal Shark", }, - "value": 157559961, + "value": 161467246, }, { "category": "Pet", @@ -32315,7 +36698,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Bull", "pt": 2, }, - "value": 9082254, + "value": 9272552, }, { "category": "Pet", @@ -32323,14 +36706,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Bull", "pt": 1, }, - "value": 18639719, + "value": 19323810, }, { "category": "Pet", "configData": { "id": "Tech Cowboy Cat", }, - "value": 618440780, + "value": 637844876, }, { "category": "Pet", @@ -32338,14 +36721,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abyssal Axolotl", "pt": 2, }, - "value": 37716562, + "value": 38415440, }, { "category": "Pet", "configData": { "id": "Tech Bull", }, - "value": 131803930, + "value": 136420860, }, { "category": "Pet", @@ -32353,21 +36736,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Horse", "pt": 2, }, - "value": 26087888, + "value": 26717612, }, { "category": "Pet", "configData": { "id": "Tech Cowboy Dog", }, - "value": 151029567, + "value": 155742424, }, { "category": "Pet", "configData": { "id": "Tech Horse", }, - "value": 523781734, + "value": 541756986, }, { "category": "Pet", @@ -32375,7 +36758,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abyssal Seal", "pt": 2, }, - "value": 13754891, + "value": 13981205, }, { "category": "Pet", @@ -32383,14 +36766,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abyssal Pufferfish", "pt": 2, }, - "value": 28665618, + "value": 29231429, }, { "category": "Pet", "configData": { "id": "Abyssal Seal", }, - "value": 186365355, + "value": 189783701, }, { "category": "Pet", @@ -32398,7 +36781,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abyssal Pufferfish", "pt": 1, }, - "value": 76076205, + "value": 78000015, }, { "category": "Pet", @@ -32406,7 +36789,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abyssal Kraken", "pt": 1, }, - "value": 43668067, + "value": 44587533, }, { "category": "Pet", @@ -32414,7 +36797,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abyssal Kraken", "pt": 2, }, - "value": 19186576, + "value": 19224351, }, { "category": "Pet", @@ -32422,7 +36805,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hi-Tech Ladybug", "sh": true, }, - "value": 603378, + "value": 610962, }, { "category": "Pet", @@ -32430,7 +36813,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Camel", "pt": 1, }, - "value": 88717872, + "value": 90527376, }, { "category": "Pet", @@ -32438,14 +36821,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hi-Tech Sloth", "pt": 2, }, - "value": 34436898, + "value": 34806298, }, { "category": "Pet", "configData": { "id": "Hi-Tech Tiger", }, - "value": 197645116, + "value": 202717742, }, { "category": "Pet", @@ -32453,7 +36836,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hi-Tech Flamingo", "pt": 1, }, - "value": 87316150, + "value": 89300976, }, { "category": "Pet", @@ -32461,14 +36844,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hi-Tech Tiger", "pt": 1, }, - "value": 26531724, + "value": 27392673, }, { "category": "Pet", "configData": { "id": "Cyber Fox", }, - "value": 315749, + "value": 334145, }, { "category": "Pet", @@ -32476,7 +36859,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Snow Ram", "pt": 2, }, - "value": 8018715, + "value": 8129718, }, { "category": "Pet", @@ -32484,21 +36867,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Griffin", "pt": 2, }, - "value": 9202967, + "value": 9345218, }, { "category": "Pet", "configData": { "id": "Tech Griffin", }, - "value": 127720929, + "value": 132805018, }, { "category": "Pet", "configData": { "id": "Frostbyte Fox", }, - "value": 393498426, + "value": 414091062, }, { "category": "Pet", @@ -32506,7 +36889,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hi-Tech Elephant", "pt": 1, }, - "value": 25348399, + "value": 25982318, }, { "category": "Pet", @@ -32514,7 +36897,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Goat", "pt": 1, }, - "value": 52907363, + "value": 55103676, }, { "category": "Pet", @@ -32522,21 +36905,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Goat", "pt": 2, }, - "value": 21421907, + "value": 21755111, }, { "category": "Pet", "configData": { "id": "Tech Scorpion", }, - "value": 605613804, + "value": 615263290, }, { "category": "Pet", "configData": { "id": "Frostbyte Dragon", }, - "value": 101322262, + "value": 106393709, }, { "category": "Pet", @@ -32544,7 +36927,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Griffin", "pt": 1, }, - "value": 19366245, + "value": 20448789, }, { "category": "Pet", @@ -32552,7 +36935,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Camel", "pt": 2, }, - "value": 35035950, + "value": 35107421, }, { "category": "Pet", @@ -32560,21 +36943,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Snow Ram", "pt": 1, }, - "value": 18680313, + "value": 19453059, }, { "category": "Pet", "configData": { "id": "Tech Goat", }, - "value": 406005932, + "value": 419125464, }, { "category": "Pet", "configData": { "id": "Frostbyte Snow Ram", }, - "value": 137348529, + "value": 143145369, }, { "category": "Pet", @@ -32583,7 +36966,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 83612, + "value": 84582, }, { "category": "Pet", @@ -32591,7 +36974,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hi-Tech Tiger", "pt": 2, }, - "value": 11656056, + "value": 11861818, }, { "category": "Pet", @@ -32599,7 +36982,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Slime", "sh": true, }, - "value": 2524326, + "value": 2619477, }, { "category": "Pet", @@ -32608,7 +36991,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 96587198, + "value": 95558549, }, { "category": "Pet", @@ -32617,14 +37000,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 15679640, + "value": 15432225, }, { "category": "Pet", "configData": { "id": "Abyssal Fish", }, - "value": 1843043015, + "value": 1834522721, }, { "category": "Pet", @@ -32632,7 +37015,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Piggy", "sh": true, }, - "value": 4604173, + "value": 4614876, }, { "category": "Pet", @@ -32641,7 +37024,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 42327824, + "value": 41745559, }, { "category": "Pet", @@ -32649,7 +37032,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abyssal Shark", "pt": 2, }, - "value": 10029203, + "value": 10241393, }, { "category": "Pet", @@ -32657,7 +37040,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hi-Tech Parrot", "pt": 1, }, - "value": 34101476, + "value": 34959530, }, { "category": "Pet", @@ -32665,7 +37048,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abyssal Fish", "pt": 2, }, - "value": 72632252, + "value": 73139771, }, { "category": "Pet", @@ -32673,7 +37056,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Scorpion", "pt": 1, }, - "value": 75772665, + "value": 78597841, }, { "category": "Pet", @@ -32681,7 +37064,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Sphinx", "pt": 1, }, - "value": 22822141, + "value": 23956067, }, { "category": "Pet", @@ -32689,7 +37072,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Puma", "pt": 1, }, - "value": 24304398, + "value": 25207440, }, { "category": "Pet", @@ -32697,7 +37080,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Bear", "sh": true, }, - "value": 5448126, + "value": 5469761, }, { "category": "Pet", @@ -32705,7 +37088,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hi-Tech Parrot", "pt": 2, }, - "value": 14972537, + "value": 15121912, }, { "category": "Pet", @@ -32713,7 +37096,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abyssal Shark", "pt": 1, }, - "value": 22695954, + "value": 23588392, }, { "category": "Pet", @@ -32721,14 +37104,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Cowboy Dog", "pt": 2, }, - "value": 9754064, + "value": 9998656, }, { "category": "Pet", "configData": { "id": "Abyssal Dolphin", }, - "value": 480927783, + "value": 479756280, }, { "category": "Pet", @@ -32736,7 +37119,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Cowboy Cat", "pt": 2, }, - "value": 28887740, + "value": 29568128, }, { "category": "Pet", @@ -32744,7 +37127,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abyssal Dolphin", "pt": 2, }, - "value": 27251925, + "value": 27364455, }, { "category": "Pet", @@ -32752,7 +37135,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Cowboy Dog", "pt": 1, }, - "value": 20499048, + "value": 21730875, }, { "category": "Pet", @@ -32760,7 +37143,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abyssal Dolphin", "pt": 1, }, - "value": 67871651, + "value": 70191271, + }, + { + "category": "Ultimate", + "configData": { + "id": "Pet Surge", + }, + "value": 22730917, + }, + { + "category": "Misc", + "configData": { + "id": "Charm Chisel", + }, + "value": 66408129, }, { "category": "Pet", @@ -32769,7 +37166,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 103201, + "value": 104314, }, { "category": "Pet", @@ -32778,7 +37175,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 80370, + "value": 80274, }, { "category": "Pet", @@ -32786,7 +37183,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abyssal Fish", "pt": 1, }, - "value": 216745287, + "value": 221467529, }, { "category": "Pet", @@ -32794,7 +37191,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hi-Tech Monkey", "sh": true, }, - "value": 2170296, + "value": 2249557, }, { "category": "Pet", @@ -32803,7 +37200,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 30287, + "value": 30796, }, { "category": "Pet", @@ -32811,7 +37208,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Puma", "pt": 2, }, - "value": 11444091, + "value": 11466527, }, { "category": "Pet", @@ -32820,7 +37217,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 379665, + "value": 405694, + }, + { + "category": "Booth", + "configData": { + "id": "Throne", + }, + "value": 8614, }, { "category": "Pet", @@ -32828,7 +37232,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Dragon", "sh": true, }, - "value": 10100934, + "value": 10375341, }, { "category": "Pet", @@ -32837,7 +37241,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 637463, + "value": 631447, }, { "category": "Pet", @@ -32845,7 +37249,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Ducky", "sh": true, }, - "value": 2714799, + "value": 2661041, }, { "category": "Pet", @@ -32854,7 +37258,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 28212987, + "value": 27861926, }, { "category": "Pet", @@ -32862,14 +37266,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Scorpion", "pt": 2, }, - "value": 28621981, + "value": 30125218, }, { "category": "Pet", "configData": { "id": "Tech Sphinx", }, - "value": 149175260, + "value": 152039999, }, { "category": "Pet", @@ -32877,7 +37281,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Sphinx", "pt": 2, }, - "value": 9935654, + "value": 10830323, }, { "category": "Pet", @@ -32885,7 +37289,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Cow", "sh": true, }, - "value": 1167713, + "value": 1161397, }, { "category": "Pet", @@ -32893,7 +37297,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Axolotl", "sh": true, }, - "value": 6791602, + "value": 6968275, }, { "category": "Pet", @@ -32902,7 +37306,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 223770, + "value": 222260, }, { "category": "Pet", @@ -32910,14 +37314,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Husky", "pt": 2, }, - "value": 19161148909, + "value": 18782982249, }, { "category": "Pet", "configData": { "id": "Frostbyte Husky", }, - "value": 165335856099, + "value": 163486657370, }, { "category": "Pet", @@ -32925,7 +37329,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Bear", "pt": 2, }, - "value": 3213121738, + "value": 3150703374, }, { "category": "Pet", @@ -32933,28 +37337,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Husky", "pt": 1, }, - "value": 31767308469, + "value": 31535600744, }, { "category": "Pet", "configData": { "id": "Frostbyte Bear", }, - "value": 22630221826, + "value": 22453523082, }, { "category": "Pet", "configData": { "id": "Frostbyte Bat", }, - "value": 77314859993, + "value": 76506114980, }, { "category": "Pet", "configData": { "id": "Frostbyte Yeti", }, - "value": 2555741141, + "value": 2540001131, }, { "category": "Pet", @@ -32962,7 +37366,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Bat", "pt": 2, }, - "value": 9217229083, + "value": 9029042050, }, { "category": "Pet", @@ -32970,7 +37374,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Bat", "pt": 1, }, - "value": 15132981623, + "value": 15028331055, }, { "category": "Pet", @@ -32978,7 +37382,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abyssal Axolotl", "sh": true, }, - "value": 1538698, + "value": 1581540, }, { "category": "Pet", @@ -32986,7 +37390,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abyssal Pufferfish", "sh": true, }, - "value": 1293679, + "value": 1349870, }, { "category": "Pet", @@ -32995,7 +37399,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 169097, + "value": 173692, }, { "category": "Pet", @@ -33004,7 +37408,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 335052, + "value": 345618, }, { "category": "Pet", @@ -33012,7 +37416,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Agony", "sh": true, }, - "value": 9296101, + "value": 9528038, }, { "category": "Pet", @@ -33021,7 +37425,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 77533339, + "value": 76768408, }, { "category": "Pet", @@ -33029,7 +37433,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hi-Tech Sloth", "sh": true, }, - "value": 1707426, + "value": 1775141, }, { "category": "Pet", @@ -33037,7 +37441,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Dragon", "pt": 2, }, - "value": 8106716, + "value": 8255060, }, { "category": "Pet", @@ -33045,14 +37449,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Dragon", "pt": 1, }, - "value": 16181229, + "value": 17064782, }, { "category": "Pet", "configData": { "id": "Frostbyte Snow Leopard", }, - "value": 182258203, + "value": 185333131, }, { "category": "Pet", @@ -33060,7 +37464,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Deer", "pt": 1, }, - "value": 98461457, + "value": 99915351, }, { "category": "Pet", @@ -33068,7 +37472,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Snow Leopard", "pt": 2, }, - "value": 20900943, + "value": 20881310, }, { "category": "Pet", @@ -33076,7 +37480,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Husky", "sh": true, }, - "value": 410923324, + "value": 405611190, }, { "category": "Pet", @@ -33084,7 +37488,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Snow Leopard", "pt": 1, }, - "value": 34052358, + "value": 34453535, }, { "category": "Pet", @@ -33092,7 +37496,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Bear", "pt": 1, }, - "value": 4933544505, + "value": 4905653670, }, { "category": "Pet", @@ -33100,7 +37504,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Fox", "pt": 1, }, - "value": 54320145, + "value": 56762417, }, { "category": "Pet", @@ -33108,7 +37512,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Deer", "pt": 2, }, - "value": 52939368, + "value": 52895163, }, { "category": "Pet", @@ -33116,14 +37520,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Fox", "pt": 2, }, - "value": 22943025, + "value": 23385946, }, { "category": "Pet", "configData": { "id": "Frostbyte Deer", }, - "value": 596788457, + "value": 612652409, }, { "category": "Pet", @@ -33131,7 +37535,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Snow Ram", "sh": true, }, - "value": 293505, + "value": 306621, }, { "category": "Pet", @@ -33139,7 +37543,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hi-Tech Parrot", "sh": true, }, - "value": 545791, + "value": 556840, }, { "category": "Pet", @@ -33148,14 +37552,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1465479, + "value": 1662835, }, { "category": "Pet", "configData": { "id": "M-6 PROTOTYPE", }, - "value": 1036362, + "value": 1024588, }, { "category": "Pet", @@ -33164,7 +37568,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 603272, + "value": 597816, }, { "category": "Pet", @@ -33172,7 +37576,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abyssal Parrot", "sh": true, }, - "value": 2814309, + "value": 2842847, }, { "category": "Pet", @@ -33180,7 +37584,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hi-Tech Flamingo", "sh": true, }, - "value": 1542482, + "value": 1608822, }, { "category": "Pet", @@ -33189,7 +37593,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 80552, + "value": 80747, }, { "category": "Pet", @@ -33197,7 +37601,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Sphinx", "sh": true, }, - "value": 334232, + "value": 341547, }, { "category": "Pet", @@ -33205,7 +37609,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Yeti", "pt": 2, }, - "value": 362223140, + "value": 355474839, }, { "category": "Pet", @@ -33213,7 +37617,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Bat", "sh": true, }, - "value": 194245844, + "value": 191899413, }, { "category": "Pet", @@ -33221,7 +37625,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Yeti", "pt": 1, }, - "value": 556404764, + "value": 553517833, }, { "category": "Pet", @@ -33229,7 +37633,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hi-Tech Bee", "sh": true, }, - "value": 2554879, + "value": 2619018, }, { "category": "Pet", @@ -33238,7 +37642,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 12627572, + "value": 12555827, }, { "category": "Pet", @@ -33247,7 +37651,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1150877, + "value": 1140538, }, { "category": "Pet", @@ -33256,7 +37660,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 25353186, + "value": 24921209, }, { "category": "Pet", @@ -33265,7 +37669,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 30063, + "value": 30723, }, { "category": "Pet", @@ -33273,7 +37677,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hi-Tech Tiger", "sh": true, }, - "value": 425820, + "value": 437158, }, { "category": "Pet", @@ -33281,7 +37685,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Deer", "sh": true, }, - "value": 1398284, + "value": 1447646, }, { "category": "Pet", @@ -33289,7 +37693,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abyssal Shark", "sh": true, }, - "value": 341588, + "value": 351684, }, { "category": "Pet", @@ -33297,7 +37701,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Goat", "sh": true, }, - "value": 863453, + "value": 904049, }, { "category": "Pet", @@ -33305,7 +37709,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Camel", "sh": true, }, - "value": 1561321, + "value": 1607177, }, { "category": "Pet", @@ -33314,7 +37718,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 634073, + "value": 694723, }, { "category": "Pet", @@ -33322,7 +37726,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Scorpion", "sh": true, }, - "value": 1290856, + "value": 1343023, }, { "category": "Pet", @@ -33330,7 +37734,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Yeti", "sh": true, }, - "value": 6907284, + "value": 6816457, }, { "category": "Pet", @@ -33339,7 +37743,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 103234, + "value": 107976, }, { "category": "Pet", @@ -33347,7 +37751,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abyssal Fish", "sh": true, }, - "value": 3776800, + "value": 3811423, }, { "category": "Pet", @@ -33356,7 +37760,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 861596, + "value": 955553, }, { "category": "Pet", @@ -33364,7 +37768,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Ducky", "sh": true, }, - "value": 2489612, + "value": 2622179, }, { "category": "Pet", @@ -33373,7 +37777,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 175991, + "value": 176762, }, { "category": "Pet", @@ -33382,7 +37786,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 27379, + "value": 28368, }, { "category": "Pet", @@ -33390,14 +37794,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Snowman", "pt": 1, }, - "value": 10640772, + "value": 10581143, }, { "category": "Pet", "configData": { "id": "Frostbyte Snowman", }, - "value": 51800656, + "value": 51368900, }, { "category": "Pet", @@ -33406,7 +37810,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 37201049, + "value": 36868368, }, { "category": "Pet", @@ -33415,7 +37819,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 168028, + "value": 171070, }, { "category": "Pet", @@ -33424,7 +37828,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 571840, + "value": 618388, }, { "category": "Pet", @@ -33433,7 +37837,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1417704, + "value": 1562259, }, { "category": "Pet", @@ -33441,21 +37845,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Dragon", "sh": true, }, - "value": 231435, + "value": 241031, }, { "category": "Pet", "configData": { "id": "Huge Hi-Tech Tiger", }, - "value": 4300, + "value": 5390, }, { "category": "Pet", "configData": { "id": "Cyber Raccoon", }, - "value": 310070, + "value": 323827, }, { "category": "Pet", @@ -33464,7 +37868,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 129177, + "value": 129240, }, { "category": "Pet", @@ -33473,7 +37877,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 210310, + "value": 213860, }, { "category": "Pet", @@ -33482,7 +37886,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 171107, + "value": 191872, }, { "category": "Pet", @@ -33491,7 +37895,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 671823, + "value": 702457, }, { "category": "Pet", @@ -33499,7 +37903,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abyssal Seal", "sh": true, }, - "value": 412059, + "value": 418047, }, { "category": "Pet", @@ -33508,7 +37912,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 126023, + "value": 129819, }, { "category": "Pet", @@ -33516,7 +37920,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Cowboy Cat", "sh": true, }, - "value": 1309456, + "value": 1374333, }, { "category": "Pet", @@ -33524,7 +37928,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Fox", "sh": true, }, - "value": 845422, + "value": 906416, }, { "category": "Pet", @@ -33533,7 +37937,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 381203, + "value": 449837, }, { "category": "Pet", @@ -33542,7 +37946,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 25349, + "value": 26432, }, { "category": "Pet", @@ -33551,7 +37955,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 52325016, + "value": 51339483, }, { "category": "Pet", @@ -33559,7 +37963,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Bear", "sh": true, }, - "value": 61207292, + "value": 60509480, }, { "category": "Pet", @@ -33568,7 +37972,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 253122, + "value": 256565, }, { "category": "Pet", @@ -33576,7 +37980,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Horse", "sh": true, }, - "value": 1112923, + "value": 1171409, }, { "category": "Pet", @@ -33585,7 +37989,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 58344, + "value": 60564, }, { "category": "Pet", @@ -33593,7 +37997,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyborg Bat", "sh": true, }, - "value": 1536290, + "value": 1522099, }, { "category": "Pet", @@ -33602,7 +38006,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 39944, + "value": 41950, }, { "category": "Pet", @@ -33611,7 +38015,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 36233, + "value": 37366, }, { "category": "Pet", @@ -33620,7 +38024,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 129666, + "value": 137350, }, { "category": "Pet", @@ -33629,7 +38033,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 141558, + "value": 144408, }, { "category": "Pet", @@ -33637,7 +38041,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Willow Wisp", "sh": true, }, - "value": 785, + "value": 793, }, { "category": "Pet", @@ -33646,7 +38050,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 66045, + "value": 66516, }, { "category": "Pet", @@ -33655,7 +38059,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 385477, + "value": 398665, }, { "category": "Pet", @@ -33663,7 +38067,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abyssal Dolphin", "sh": true, }, - "value": 1022073, + "value": 1025107, }, { "category": "Pet", @@ -33672,7 +38076,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 52694, + "value": 55117, }, { "category": "Pet", @@ -33680,7 +38084,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Bull", "sh": true, }, - "value": 293455, + "value": 303987, }, { "category": "Pet", @@ -33689,7 +38093,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 71698, + "value": 73946, }, { "category": "Pet", @@ -33698,7 +38102,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 137631, + "value": 136445, }, { "category": "Pet", @@ -33706,7 +38110,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abyssal Kraken", "sh": true, }, - "value": 702689, + "value": 705515, }, { "category": "Pet", @@ -33714,7 +38118,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Griffin", "sh": true, }, - "value": 286719, + "value": 295358, }, { "category": "Pet", @@ -33723,7 +38127,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 165926, + "value": 166292, }, { "category": "Pet", @@ -33731,7 +38135,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Snow Leopard", "sh": true, }, - "value": 463209, + "value": 469890, }, { "category": "Pet", @@ -33740,7 +38144,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 49055, + "value": 52167, }, { "category": "Pet", @@ -33748,14 +38152,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hi-Tech Elephant", "sh": true, }, - "value": 396778, + "value": 405637, }, { "category": "Pet", "configData": { "id": "Cyber Bunny", }, - "value": 346371, + "value": 362642, }, { "category": "Pet", @@ -33764,7 +38168,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 219009, + "value": 253981, }, { "category": "Pet", @@ -33773,7 +38177,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 9199729, + "value": 9063076, }, { "category": "Pet", @@ -33782,7 +38186,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 51651, + "value": 53297, }, { "category": "Pet", @@ -33791,7 +38195,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 480960, + "value": 599787, }, { "category": "Pet", @@ -33800,7 +38204,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 66552, + "value": 68519, }, { "category": "Pet", @@ -33809,7 +38213,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 31122, + "value": 31659, }, { "category": "Pet", @@ -33818,7 +38222,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 47242, + "value": 49473, }, { "category": "Pet", @@ -33827,7 +38231,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 130946, + "value": 133203, }, { "category": "Pet", @@ -33836,7 +38240,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 146755, + "value": 152113, }, { "category": "Pet", @@ -33844,7 +38248,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Puma", "sh": true, }, - "value": 390599, + "value": 397628, }, { "category": "Pet", @@ -33853,7 +38257,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 160059, + "value": 163644, }, { "category": "Pet", @@ -33862,7 +38266,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 279859, + "value": 285840, }, { "category": "Pet", @@ -33870,7 +38274,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Snowman", "pt": 2, }, - "value": 7201430, + "value": 7078225, }, { "category": "Pet", @@ -33879,7 +38283,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 51904, + "value": 53556, }, { "category": "Pet", @@ -33888,7 +38292,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 54333, + "value": 55774, }, { "category": "Pet", @@ -33897,7 +38301,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 210964, + "value": 213243, }, { "category": "Pet", @@ -33905,7 +38309,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Cowboy Dog", "sh": true, }, - "value": 332216, + "value": 342641, }, { "category": "Pet", @@ -33913,7 +38317,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Bat", "pt": 2, }, - "value": 966, + "value": 970, + }, + { + "category": "Ultimate", + "configData": { + "id": "TNT Shower", + }, + "value": 2456470, }, { "category": "Pet", @@ -33922,7 +38333,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 84347, + "value": 88418, }, { "category": "Pet", @@ -33931,7 +38342,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1018230, + "value": 1006228, }, { "category": "Pet", @@ -33940,7 +38351,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 42186, + "value": 47551, }, { "category": "Pet", @@ -33949,7 +38360,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 142519, + "value": 142975, }, { "category": "Pet", @@ -33958,7 +38369,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 139544, + "value": 146490, }, { "category": "Pet", @@ -33967,7 +38378,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 60309, + "value": 61674, }, { "category": "Pet", @@ -33976,7 +38387,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 74773, + "value": 79923, }, { "category": "Pet", @@ -33985,7 +38396,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 81147, + "value": 82264, }, { "category": "Pet", @@ -33994,7 +38405,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 71640, + "value": 74131, }, { "category": "Pet", @@ -34003,7 +38414,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 94898, + "value": 96924, }, { "category": "Pet", @@ -34012,7 +38423,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 97967, + "value": 103275, }, { "category": "Pet", @@ -34021,7 +38432,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 72505, + "value": 74389, }, { "category": "Pet", @@ -34030,7 +38441,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 89179, + "value": 89677, }, { "category": "Pet", @@ -34039,7 +38450,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 174847, + "value": 178675, }, { "category": "Pet", @@ -34048,7 +38459,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1356775, + "value": 1346533, }, { "category": "Pet", @@ -34057,7 +38468,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 23108, + "value": 23887, }, { "category": "Pet", @@ -34066,7 +38477,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 37110, + "value": 38025, }, { "category": "Pet", @@ -34074,7 +38485,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Raccoon", "pt": 2, }, - "value": 22544, + "value": 24518, }, { "category": "Pet", @@ -34083,7 +38494,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 107930, + "value": 107790, }, { "category": "Pet", @@ -34092,7 +38503,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 19877, + "value": 19798, }, { "category": "Pet", @@ -34101,7 +38512,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 59614, + "value": 60065, }, { "category": "Pet", @@ -34110,7 +38521,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 27803, + "value": 31061, }, { "category": "Pet", @@ -34119,7 +38530,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 26234, + "value": 27838, }, { "category": "Pet", @@ -34128,7 +38539,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 39827, + "value": 42588, }, { "category": "Pet", @@ -34137,7 +38548,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 34972, + "value": 37277, }, { "category": "Pet", @@ -34145,7 +38556,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "M-6 PROTOTYPE", "pt": 2, }, - "value": 135453, + "value": 133550, }, { "category": "Pet", @@ -34154,7 +38565,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 65156, + "value": 67041, }, { "category": "Pet", @@ -34163,7 +38574,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 302124, + "value": 300107, }, { "category": "Pet", @@ -34172,7 +38583,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 21027, + "value": 21667, }, { "category": "Pet", @@ -34180,7 +38591,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "M-6 PROTOTYPE", "pt": 1, }, - "value": 185420, + "value": 183670, }, { "category": "Pet", @@ -34188,7 +38599,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Abyssal Axolotl", "pt": 1, }, - "value": 722, + "value": 1315, }, { "category": "Pet", @@ -34205,7 +38616,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 48072, + "value": 48749, }, { "category": "Pet", @@ -34214,7 +38625,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 42640, + "value": 43154, }, { "category": "Pet", @@ -34223,7 +38634,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 190642, + "value": 189792, }, { "category": "Pet", @@ -34232,7 +38643,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 24928, + "value": 25815, }, { "category": "Pet", @@ -34240,14 +38651,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Bat", "sh": true, }, - "value": 1419, + "value": 1429, }, { "category": "Pet", "configData": { "id": "Huge Blurred Dominus", }, - "value": 334, + "value": 337, }, { "category": "Pet", @@ -34255,14 +38666,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Fox", "pt": 2, }, - "value": 21612, + "value": 23866, }, { "category": "Pet", "configData": { "id": "Huge Elephant", }, - "value": 172577, + "value": 150031, }, { "category": "Pet", @@ -34270,7 +38681,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Snowman", "sh": true, }, - "value": 139166, + "value": 136833, }, { "category": "Pet", @@ -34279,7 +38690,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 23260, + "value": 23247, }, { "category": "Pet", @@ -34287,7 +38698,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Fox", "pt": 1, }, - "value": 50562, + "value": 56317, }, { "category": "Pet", @@ -34295,7 +38706,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Raccoon", "pt": 1, }, - "value": 54258, + "value": 57743, }, { "category": "Pet", @@ -34304,7 +38715,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 113, + "value": 110, }, { "category": "Pet", @@ -34312,7 +38723,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Lumi Axolotl", "pt": 1, }, - "value": 723, + "value": 1996, }, { "category": "Pet", @@ -34321,7 +38732,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 35134, + "value": 36874, }, { "category": "Pet", @@ -34335,7 +38746,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Huge Abyssal Axolotl", }, - "value": 6547, + "value": 12341, }, { "category": "Pet", @@ -34343,7 +38754,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Bunny", "pt": 2, }, - "value": 25210, + "value": 28036, }, { "category": "Pet", @@ -34367,7 +38778,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Bunny", "pt": 1, }, - "value": 58479, + "value": 64759, }, { "category": "Pet", @@ -34376,7 +38787,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 511, + "value": 559, }, { "category": "Pet", @@ -34392,7 +38803,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Bunny", "sh": true, }, - "value": 707, + "value": 733, + }, + { + "category": "Ultimate", + "configData": { + "id": "Chest Spell", + }, + "value": 60221, + }, + { + "category": "Ultimate", + "configData": { + "id": "Tornado", + }, + "value": 389923, }, { "category": "Pet", @@ -34400,7 +38825,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Willow Wisp", "pt": 2, }, - "value": 615, + "value": 621, }, { "category": "Pet", @@ -34416,7 +38841,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pastel Elephant", "pt": 2, }, - "value": 307, + "value": 309, }, { "category": "Pet", @@ -34433,7 +38858,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "M-6 PROTOTYPE", "sh": true, }, - "value": 2835, + "value": 2803, }, { "category": "Pet", @@ -34442,7 +38867,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 402, + "value": 401, }, { "category": "Pet", @@ -34459,7 +38884,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Elephant", "pt": 1, }, - "value": 40687, + "value": 38795, }, { "category": "Pet", @@ -34467,7 +38892,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Elephant", "pt": 2, }, - "value": 29438, + "value": 26987, }, { "category": "Pet", @@ -34475,7 +38900,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Raccoon", "sh": true, }, - "value": 630, + "value": 639, }, { "category": "Pet", @@ -34484,7 +38909,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 231, + "value": 288, }, { "category": "Pet", @@ -34501,14 +38926,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Red Fluffy", "pt": 2, }, - "value": 88, + "value": 89, }, { "category": "Pet", "configData": { "id": "Huge Colorful Wisp", }, - "value": 15161, + "value": 22788, }, { "category": "Pet", @@ -34525,7 +38950,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Colorful Wisp", "pt": 1, }, - "value": 2637, + "value": 3946, }, { "category": "Pet", @@ -34533,7 +38958,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Hi-Tech Tiger", "pt": 1, }, - "value": 910, + "value": 1118, }, { "category": "Pet", @@ -34541,7 +38966,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Red Fluffy", "pt": 1, }, - "value": 294, + "value": 295, }, { "category": "Pet", @@ -34549,7 +38974,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Hi-Tech Tiger", "pt": 2, }, - "value": 168, + "value": 220, }, { "category": "Pet", @@ -34557,7 +38982,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Elephant", "sh": true, }, - "value": 3674, + "value": 3197, }, { "category": "Pet", @@ -34565,7 +38990,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyber Fox", "sh": true, }, - "value": 639, + "value": 659, }, { "category": "Pet", @@ -34574,7 +38999,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 122, + "value": 123, }, { "category": "Pet", @@ -34583,14 +39008,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 612, + "value": 602, }, { "category": "Pet", "configData": { "id": "Huge Koi Fish", }, - "value": 59046, + "value": 88310, }, { "category": "Pet", @@ -34598,7 +39023,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Koi Fish", "pt": 1, }, - "value": 14739, + "value": 21045, + }, + { + "category": "Enchant", + "configData": { + "id": "Fruity", + "tn": 1, + }, + "value": 2802598, }, { "category": "Pet", @@ -34607,7 +39040,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 121, + "value": 199, }, { "category": "Pet", @@ -34615,7 +39048,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Koi Fish", "pt": 2, }, - "value": 9887, + "value": 15057, }, { "category": "Pet", @@ -34623,7 +39056,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Koi Fish", "sh": true, }, - "value": 1274, + "value": 1933, }, { "category": "Pet", @@ -34632,7 +39065,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 217, + "value": 315, }, { "category": "Pet", @@ -34641,7 +39074,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 155, + "value": 256, }, { "category": "Pet", @@ -34658,14 +39091,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 127, + "value": 195, }, { "category": "Pet", "configData": { "id": "Huge Cyber Agony", }, - "value": 165058, + "value": 169938, }, { "category": "Pet", @@ -34682,7 +39115,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Colorful Wisp", "pt": 2, }, - "value": 463, + "value": 707, }, { "category": "Pet", @@ -34691,7 +39124,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 170, + "value": 251, }, { "category": "Pet", @@ -34726,7 +39159,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 161, + "value": 238, }, { "category": "Pet", @@ -34735,7 +39168,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 232, + "value": 363, }, { "category": "Pet", @@ -34743,7 +39176,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Lumi Axolotl", "pt": 2, }, - "value": 140, + "value": 397, }, { "category": "Pet", @@ -34751,7 +39184,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Glitched Cat", "pt": 2, }, - "value": 31, + "value": 37, }, { "category": "Pet", @@ -34769,14 +39202,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 134, + "value": 209, }, { "category": "Pet", "configData": { "id": "Huge Bee", }, - "value": 55293, + "value": 73070, }, { "category": "Pet", @@ -34784,7 +39217,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Bee", "pt": 1, }, - "value": 11973, + "value": 15626, }, { "category": "Pet", @@ -34792,7 +39225,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Bee", "pt": 2, }, - "value": 9057, + "value": 12049, }, { "category": "Pet", @@ -34800,7 +39233,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Bee", "sh": true, }, - "value": 1142, + "value": 1503, }, { "category": "Pet", @@ -34818,7 +39251,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 205, + "value": 273, }, { "category": "Pet", @@ -34827,7 +39260,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 231, + "value": 301, }, { "category": "Pet", @@ -34835,7 +39268,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Glitched Cat", "pt": 1, }, - "value": 99, + "value": 144, }, { "category": "Pet", @@ -34844,7 +39277,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 903, + "value": 879, }, { "category": "Pet", @@ -34869,7 +39302,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Huge Glitched Cat", }, - "value": 247, + "value": 337, }, { "category": "Pet", @@ -34884,7 +39317,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Titanic Bread Shiba", }, - "value": 1139, + "value": 1126, }, { "category": "Pet", @@ -34901,7 +39334,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 303, + "value": 426, }, { "category": "Pet", @@ -34909,7 +39342,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Bread Shiba", "pt": 2, }, - "value": 23, + "value": 24, }, { "category": "Pet", @@ -34918,7 +39351,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 268, + "value": 444, }, { "category": "Pet", @@ -34934,7 +39367,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Huge Purple Dragon", }, - "value": 8766, + "value": 16312, }, { "category": "Pet", @@ -34967,14 +39400,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Abyssal Axolotl", "pt": 2, }, - "value": 122, + "value": 231, }, { "category": "Pet", "configData": { "id": "Titanic Kawaii Cat", }, - "value": 588, + "value": 581, }, { "category": "Pet", @@ -34983,7 +39416,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 153, + "value": 246, }, { "category": "Pet", @@ -35001,6 +39434,20 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 12, }, + { + "category": "Booth", + "configData": { + "id": "Galaxy", + }, + "value": 3572, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Cosmic", + }, + "value": 224, + }, { "category": "Pet", "configData": { @@ -35014,7 +39461,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Bearserker", "pt": 2, }, - "value": 340, + "value": 637, }, { "category": "Pet", @@ -35023,7 +39470,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 9, + "value": 20, }, { "category": "Pet", @@ -35031,7 +39478,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Bearserker", "sh": true, }, - "value": 42, + "value": 80, }, { "category": "Pet", @@ -35040,28 +39487,65 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 6, + "value": 10, + }, + { + "category": "Fruit", + "configData": { + "id": "Watermelon", + }, + "value": 308838146082, + }, + { + "category": "Enchant", + "configData": { + "id": "Boss Lucky Block", + "tn": 1, + }, + "value": 17937, + }, + { + "category": "Enchant", + "configData": { + "id": "Super Magnet", + "tn": 1, + }, + "value": 70859, + }, + { + "category": "Misc", + "configData": { + "id": "Fruit Bundle", + }, + "value": 36176639262, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 23", + }, + "value": 1372139, }, { "category": "Pet", "configData": { "id": "Thunder Bear", }, - "value": 448350, + "value": 356754, }, { "category": "Pet", "configData": { "id": "Jester Dog", }, - "value": 639947, + "value": 494453, }, { "category": "Pet", "configData": { "id": "Super Tiger", }, - "value": 166158, + "value": 119813, }, { "category": "Pet", @@ -35069,14 +39553,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Thunder Bear", "sh": true, }, - "value": 9126, + "value": 6349, }, { "category": "Pet", "configData": { "id": "Frostbyte Penguin", }, - "value": 75219219, + "value": 99265637, }, { "category": "Pet", @@ -35084,7 +39568,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Penguin", "pt": 1, }, - "value": 13690851, + "value": 16362017, }, { "category": "Pet", @@ -35092,7 +39576,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Penguin", "pt": 2, }, - "value": 3148322, + "value": 3707621, }, { "category": "Pet", @@ -35100,7 +39584,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Cat", "pt": 1, }, - "value": 53073932, + "value": 60609147, }, { "category": "Pet", @@ -35108,21 +39592,35 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Cat", "pt": 2, }, - "value": 9827005, + "value": 11433502, }, { "category": "Pet", "configData": { "id": "Frostbyte Cat", }, - "value": 382897465, + "value": 481970664, + }, + { + "category": "Misc", + "configData": { + "id": "Large Enchant Bundle", + }, + "value": 10059480351, + }, + { + "category": "Misc", + "configData": { + "id": "Large Potion Bundle", + }, + "value": 9928553659, }, { "category": "Pet", "configData": { "id": "Frostbyte Walrus", }, - "value": 112035347, + "value": 146780980, }, { "category": "Pet", @@ -35130,14 +39628,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Walrus", "pt": 2, }, - "value": 3433637, + "value": 4169485, }, { "category": "Pet", "configData": { "id": "Nuclear Dragon", }, - "value": 28047750, + "value": 36970245, }, { "category": "Pet", @@ -35145,21 +39643,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nuclear Axolotl", "pt": 1, }, - "value": 19139461, + "value": 21966133, }, { "category": "Pet", "configData": { "id": "Nuclear Axolotl", }, - "value": 124223655, + "value": 156028672, }, { "category": "Pet", "configData": { "id": "Nuclear Squirrel", }, - "value": 158134967, + "value": 191091535, }, { "category": "Pet", @@ -35168,7 +39666,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 32594, + "value": 39180, }, { "category": "Pet", @@ -35176,7 +39674,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nuclear Dragon", "pt": 2, }, - "value": 1350229, + "value": 1582419, }, { "category": "Pet", @@ -35184,7 +39682,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nuclear Dragon", "pt": 1, }, - "value": 5404010, + "value": 6570301, }, { "category": "Pet", @@ -35192,14 +39690,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nuclear Wolf", "pt": 2, }, - "value": 2587346, + "value": 2865292, }, { "category": "Pet", "configData": { "id": "Nuclear Wolf", }, - "value": 39873873, + "value": 47975375, }, { "category": "Pet", @@ -35207,7 +39705,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nuclear Squirrel", "pt": 1, }, - "value": 25675923, + "value": 28705901, }, { "category": "Pet", @@ -35215,7 +39713,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nuclear Squirrel", "pt": 2, }, - "value": 6328001, + "value": 7015143, }, { "category": "Pet", @@ -35223,14 +39721,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nuclear Axolotl", "pt": 2, }, - "value": 3826305, + "value": 4498711, }, { "category": "Pet", "configData": { "id": "Huge Jester Dog", }, - "value": 15652, + "value": 14741, }, { "category": "Pet", @@ -35238,14 +39736,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Galaxy Fox", "pt": 2, }, - "value": 2070814, + "value": 2659944, }, { "category": "Pet", "configData": { "id": "Astronaut Dog", }, - "value": 37326467, + "value": 45075656, }, { "category": "Pet", @@ -35253,14 +39751,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nuclear Mining Dog", "pt": 2, }, - "value": 3025649, + "value": 3333543, }, { "category": "Pet", "configData": { "id": "Evil Computer", }, - "value": 43599734, + "value": 53593438, }, { "category": "Pet", @@ -35268,14 +39766,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Red Fluffy", "pt": 1, }, - "value": 17250637, + "value": 20204402, }, { "category": "Pet", "configData": { "id": "Nuclear Agony", }, - "value": 50266571, + "value": 58393020, }, { "category": "Pet", @@ -35283,21 +39781,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Happy Computer", "pt": 2, }, - "value": 5414064, + "value": 6214437, }, { "category": "Pet", "configData": { "id": "Red Fluffy", }, - "value": 116620004, + "value": 146924136, }, { "category": "Pet", "configData": { "id": "Nuclear Mortuus", }, - "value": 188217793, + "value": 221489628, }, { "category": "Pet", @@ -35305,7 +39803,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blue Fluffy", "pt": 2, }, - "value": 6330031, + "value": 7606300, }, { "category": "Pet", @@ -35313,7 +39811,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Meebo The Alien", "pt": 2, }, - "value": 5853524, + "value": 6710881, }, { "category": "Pet", @@ -35321,7 +39819,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nuclear Mining Cat", "pt": 2, }, - "value": 7867490, + "value": 8616049, }, { "category": "Pet", @@ -35329,7 +39827,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Astronaut Cat", "pt": 2, }, - "value": 7865931, + "value": 8413721, }, { "category": "Pet", @@ -35337,14 +39835,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Astronaut Cat", "pt": 1, }, - "value": 23467666, + "value": 26687557, }, { "category": "Pet", "configData": { "id": "Comet Agony", }, - "value": 36195478, + "value": 45734784, }, { "category": "Pet", @@ -35352,21 +39850,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Red Fluffy", "sh": true, }, - "value": 253284, + "value": 329929, }, { "category": "Pet", "configData": { "id": "Happy Computer", }, - "value": 180460656, + "value": 219645929, }, { "category": "Pet", "configData": { "id": "Nuclear Mining Dog", }, - "value": 44473299, + "value": 52120678, }, { "category": "Pet", @@ -35374,14 +39872,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Evil Computer", "pt": 1, }, - "value": 12563237, + "value": 13944705, }, { "category": "Pet", "configData": { "id": "Red Woofy", }, - "value": 28183597, + "value": 35785558, }, { "category": "Pet", @@ -35389,7 +39887,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Red Fluffy", "pt": 2, }, - "value": 4695912, + "value": 5336902, }, { "category": "Pet", @@ -35397,14 +39895,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Red Woofy", "pt": 1, }, - "value": 5561035, + "value": 6765009, }, { "category": "Pet", "configData": { "id": "Astronaut Cat", }, - "value": 150923069, + "value": 182594858, }, { "category": "Pet", @@ -35412,7 +39910,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Astronaut Dog", "pt": 2, }, - "value": 2739321, + "value": 2938015, }, { "category": "Pet", @@ -35420,7 +39918,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Astral Axolotl", "pt": 2, }, - "value": 5442574, + "value": 6635418, }, { "category": "Pet", @@ -35428,7 +39926,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Comet Agony", "pt": 1, }, - "value": 10881854, + "value": 12777954, }, { "category": "Pet", @@ -35436,7 +39934,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Comet Cyclops", "pt": 2, }, - "value": 6217537, + "value": 7293290, }, { "category": "Pet", @@ -35444,7 +39942,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Comet Cyclops", "pt": 1, }, - "value": 27368877, + "value": 31344165, }, { "category": "Pet", @@ -35452,14 +39950,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Thunder Bear", "pt": 2, }, - "value": 11300, + "value": 8270, }, { "category": "Pet", "configData": { "id": "Astral Axolotl", }, - "value": 155887031, + "value": 192778294, }, { "category": "Pet", @@ -35467,7 +39965,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Meebo The Alien", "pt": 1, }, - "value": 19412160, + "value": 22516407, }, { "category": "Pet", @@ -35475,28 +39973,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Evil Computer", "pt": 2, }, - "value": 2056551, + "value": 2355704, }, { "category": "Pet", "configData": { "id": "Comet Cyclops", }, - "value": 145664522, + "value": 184280055, }, { "category": "Pet", "configData": { "id": "Meebo The Alien", }, - "value": 133140587, + "value": 167538829, }, { "category": "Pet", "configData": { "id": "Nuclear Mining Cat", }, - "value": 179425619, + "value": 207755433, }, { "category": "Pet", @@ -35504,14 +40002,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blue Fluffy", "pt": 1, }, - "value": 26840394, + "value": 31345691, }, { "category": "Pet", "configData": { "id": "Blue Fluffy", }, - "value": 156439172, + "value": 201946968, }, { "category": "Pet", @@ -35519,7 +40017,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Red Woofy", "pt": 2, }, - "value": 1739222, + "value": 1967681, }, { "category": "Pet", @@ -35527,7 +40025,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Happy Computer", "pt": 1, }, - "value": 33965902, + "value": 37371141, }, { "category": "Pet", @@ -35535,7 +40033,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nuclear Mining Cat", "pt": 1, }, - "value": 29627991, + "value": 32562000, }, { "category": "Pet", @@ -35543,7 +40041,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nuclear Mining Dog", "pt": 1, }, - "value": 10499357, + "value": 11686502, }, { "category": "Pet", @@ -35551,7 +40049,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jester Dog", "pt": 2, }, - "value": 16316, + "value": 12422, }, { "category": "Pet", @@ -35559,7 +40057,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Walrus", "sh": true, }, - "value": 195305, + "value": 269039, }, { "category": "Pet", @@ -35567,7 +40065,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Cat", "sh": true, }, - "value": 826522, + "value": 1104010, }, { "category": "Pet", @@ -35576,7 +40074,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 20796, + "value": 24633, }, { "category": "Pet", @@ -35584,14 +40082,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Narwhal", "pt": 1, }, - "value": 4921889, + "value": 6289884, }, { "category": "Pet", "configData": { "id": "Frostbyte Narwhal", }, - "value": 24969937, + "value": 32976020, }, { "category": "Pet", @@ -35599,7 +40097,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Walrus", "pt": 1, }, - "value": 16029633, + "value": 19101719, + }, + { + "category": "Ultimate", + "configData": { + "id": "Hidden Treasure", + }, + "value": 4908, }, { "category": "Pet", @@ -35607,7 +40112,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nuclear Wolf", "pt": 1, }, - "value": 9049139, + "value": 10250338, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Tiger", + }, + "value": 615420, }, { "category": "Pet", @@ -35615,7 +40127,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nuclear Mining Dog", "sh": true, }, - "value": 98472, + "value": 111193, }, { "category": "Pet", @@ -35623,7 +40135,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nuclear Mortuus", "pt": 2, }, - "value": 11953850, + "value": 12734767, }, { "category": "Pet", @@ -35631,7 +40143,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nuclear Agony", "sh": true, }, - "value": 132058, + "value": 145603, }, { "category": "Pet", @@ -35639,7 +40151,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nuclear Agony", "pt": 1, }, - "value": 11021399, + "value": 12507352, }, { "category": "Pet", @@ -35647,7 +40159,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nuclear Agony", "pt": 2, }, - "value": 4674137, + "value": 4973047, }, { "category": "Pet", @@ -35655,21 +40167,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nuclear Mortuus", "pt": 1, }, - "value": 32271819, + "value": 35791203, }, { "category": "Pet", "configData": { "id": "Melted Slime", }, - "value": 132400300, + "value": 160816833, }, { "category": "Pet", "configData": { "id": "Melted Rock", }, - "value": 34311708, + "value": 41762504, }, { "category": "Pet", @@ -35677,7 +40189,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nuclear Dragon", "sh": true, }, - "value": 47355, + "value": 64625, }, { "category": "Pet", @@ -35685,7 +40197,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nuclear Squirrel", "sh": true, }, - "value": 337027, + "value": 410614, }, { "category": "Pet", @@ -35693,7 +40205,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nuclear Mining Cat", "sh": true, }, - "value": 401091, + "value": 469449, }, { "category": "Pet", @@ -35702,7 +40214,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 23180, + "value": 26312, }, { "category": "Pet", @@ -35711,7 +40223,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 9348, + "value": 11183, }, { "category": "Pet", @@ -35719,7 +40231,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nuclear Axolotl", "sh": true, }, - "value": 227893, + "value": 313319, }, { "category": "Pet", @@ -35727,7 +40239,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Evil Computer", "sh": true, }, - "value": 81621, + "value": 100345, }, { "category": "Pet", @@ -35735,7 +40247,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Happy Computer", "sh": true, }, - "value": 360603, + "value": 452159, }, { "category": "Pet", @@ -35744,7 +40256,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12661, + "value": 14451, }, { "category": "Pet", @@ -35752,7 +40264,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Melted Slime", "sh": true, }, - "value": 241524, + "value": 314740, }, { "category": "Pet", @@ -35760,7 +40272,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Melted Slime", "pt": 1, }, - "value": 20533921, + "value": 23554450, }, { "category": "Pet", @@ -35768,7 +40280,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Astronaut Dog", "pt": 1, }, - "value": 7325071, + "value": 8500578, }, { "category": "Pet", @@ -35777,7 +40289,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 37122, + "value": 43569, }, { "category": "Pet", @@ -35785,7 +40297,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Lunar Fox", "pt": 2, }, - "value": 4976448, + "value": 5623163, }, { "category": "Pet", @@ -35793,14 +40305,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Star Surfer", "pt": 1, }, - "value": 5794723, + "value": 6965007, }, { "category": "Pet", "configData": { "id": "Lunar Fox", }, - "value": 126519306, + "value": 160102100, }, { "category": "Pet", @@ -35808,14 +40320,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Star Surfer", "pt": 2, }, - "value": 2069136, + "value": 2417148, }, { "category": "Pet", "configData": { "id": "Star Surfer", }, - "value": 32372034, + "value": 40902310, + }, + { + "category": "Misc", + "configData": { + "id": "Quest Medal", + }, + "value": 229386617, }, { "category": "Pet", @@ -35823,7 +40342,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Super Tiger", "pt": 2, }, - "value": 4208, + "value": 3220, }, { "category": "Pet", @@ -35831,7 +40350,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Melted Rock", "pt": 1, }, - "value": 7584645, + "value": 8821445, }, { "category": "Pet", @@ -35839,7 +40358,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Melted Slime", "pt": 2, }, - "value": 4416018, + "value": 5115324, }, { "category": "Pet", @@ -35847,7 +40366,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Melted Rock", "sh": true, }, - "value": 61999, + "value": 74629, }, { "category": "Pet", @@ -35855,7 +40374,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Melted Rock", "pt": 2, }, - "value": 1887698, + "value": 2138794, }, { "category": "Pet", @@ -35863,7 +40382,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Narwhal", "pt": 2, }, - "value": 1265481, + "value": 1594062, }, { "category": "Pet", @@ -35872,14 +40391,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 35397, + "value": 42507, }, { "category": "Pet", "configData": { "id": "Electric Bear", }, - "value": 127563285, + "value": 155497946, }, { "category": "Pet", @@ -35887,7 +40406,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Lunar Fox", "pt": 1, }, - "value": 18205048, + "value": 21028137, }, { "category": "Pet", @@ -35895,7 +40414,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Fox", "pt": 2, }, - "value": 5799434, + "value": 6727266, }, { "category": "Pet", @@ -35903,14 +40422,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Bear", "pt": 1, }, - "value": 19203207, + "value": 22459475, }, { "category": "Pet", "configData": { "id": "Lunar Deer", }, - "value": 30026266, + "value": 38158260, }, { "category": "Pet", @@ -35918,7 +40437,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Bunny", "pt": 2, }, - "value": 2080402, + "value": 2399922, }, { "category": "Pet", @@ -35926,7 +40445,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Lunar Deer", "pt": 1, }, - "value": 5575956, + "value": 6636700, }, { "category": "Pet", @@ -35934,14 +40453,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Fox", "pt": 1, }, - "value": 22037028, + "value": 25471273, }, { "category": "Pet", "configData": { "id": "Electric Fox", }, - "value": 141761968, + "value": 179739583, }, { "category": "Pet", @@ -35949,7 +40468,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Lunar Deer", "pt": 2, }, - "value": 1782327, + "value": 1992939, }, { "category": "Pet", @@ -35957,21 +40476,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Bunny", "pt": 1, }, - "value": 6707128, + "value": 7939586, }, { "category": "Pet", "configData": { "id": "Electric Griffin", }, - "value": 31278615, + "value": 38927798, }, { "category": "Pet", "configData": { "id": "Electric Bunny", }, - "value": 34311238, + "value": 43786678, }, { "category": "Pet", @@ -35979,7 +40498,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Bear", "pt": 2, }, - "value": 5393764, + "value": 6298976, }, { "category": "Pet", @@ -35988,7 +40507,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 70045, + "value": 77530, }, { "category": "Pet", @@ -35996,7 +40515,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jester Dog", "sh": true, }, - "value": 13003, + "value": 8729, }, { "category": "Pet", @@ -36004,7 +40523,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Penguin", "sh": true, }, - "value": 146527, + "value": 195446, }, { "category": "Pet", @@ -36013,7 +40532,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 10810, + "value": 12683, }, { "category": "Pet", @@ -36021,14 +40540,22 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Frostbyte Narwhal", "sh": true, }, - "value": 40299, + "value": 52220, }, { "category": "Pet", "configData": { "id": "Titanic Bat Cat", }, - "value": 626, + "value": 612, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Toilet", + "sh": true, + }, + "value": 1019, }, { "category": "Pet", @@ -36037,7 +40564,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 62440, + "value": 69033, }, { "category": "Pet", @@ -36046,14 +40573,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 22909, + "value": 24901, }, { "category": "Pet", "configData": { "id": "Huge Rich Cat", }, - "value": 33637, + "value": 32849, }, { "category": "Pet", @@ -36062,7 +40589,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 101077, + "value": 113805, }, { "category": "Pet", @@ -36070,7 +40597,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Galaxy Fox", "pt": 1, }, - "value": 9545473, + "value": 11364469, }, { "category": "Pet", @@ -36079,7 +40606,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 20095, + "value": 23281, }, { "category": "Pet", @@ -36087,14 +40614,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Astral Axolotl", "pt": 1, }, - "value": 26921144, + "value": 31023759, }, { "category": "Pet", "configData": { "id": "Galaxy Fox", }, - "value": 37016463, + "value": 46695683, }, { "category": "Pet", @@ -36103,7 +40630,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 10159, + "value": 11263, }, { "category": "Pet", @@ -36112,7 +40639,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 217, + "value": 202, }, { "category": "Pet", @@ -36120,7 +40647,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Jester Dog", "pt": 2, }, - "value": 389, + "value": 390, }, { "category": "Pet", @@ -36128,7 +40655,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Jester Dog", "sh": true, }, - "value": 629, + "value": 591, }, { "category": "Pet", @@ -36137,7 +40664,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 43702, + "value": 45356, }, { "category": "Pet", @@ -36146,14 +40673,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 10154, + "value": 11224, }, { "category": "Pet", "configData": { "id": "Huge Super Tiger", }, - "value": 8734, + "value": 8272, + }, + { + "category": "Misc", + "configData": { + "id": "Arcade Token", + }, + "value": 241931572, }, { "category": "Pet", @@ -36161,7 +40695,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Comet Agony", "pt": 2, }, - "value": 2482255, + "value": 3015404, }, { "category": "Pet", @@ -36169,7 +40703,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Unicorn", "pt": 2, }, - "value": 5253887, + "value": 6028103, }, { "category": "Pet", @@ -36177,14 +40711,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Robot", "pt": 2, }, - "value": 6048614, + "value": 7089117, }, { "category": "Pet", "configData": { "id": "M-2 PROTOTYPE", }, - "value": 39923587, + "value": 50240664, }, { "category": "Pet", @@ -36192,7 +40726,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Dragon", "pt": 2, }, - "value": 2043901, + "value": 2337022, }, { "category": "Pet", @@ -36200,14 +40734,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Dragon", "pt": 1, }, - "value": 6288053, + "value": 7408156, }, { "category": "Pet", "configData": { "id": "Robot", }, - "value": 157996243, + "value": 195925589, }, { "category": "Pet", @@ -36215,7 +40749,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Robot", "pt": 1, }, - "value": 26566743, + "value": 31871638, }, { "category": "Pet", @@ -36223,21 +40757,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Unicorn", "pt": 1, }, - "value": 19250124, + "value": 22255378, }, { "category": "Pet", "configData": { "id": "Electric Unicorn", }, - "value": 128481271, + "value": 162764842, }, { "category": "Pet", "configData": { "id": "Electric Dragon", }, - "value": 32676430, + "value": 41411090, }, { "category": "Pet", @@ -36246,7 +40780,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 54662, + "value": 61024, }, { "category": "Pet", @@ -36254,7 +40788,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Lunar Fox", "sh": true, }, - "value": 263190, + "value": 346388, }, { "category": "Pet", @@ -36263,7 +40797,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 25317, + "value": 34768, }, { "category": "Pet", @@ -36272,7 +40806,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 68, + "value": 66, }, { "category": "Pet", @@ -36281,7 +40815,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 27845, + "value": 33807, }, { "category": "Pet", @@ -36290,7 +40824,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3910, + "value": 5142, }, { "category": "Pet", @@ -36299,7 +40833,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 25436, + "value": 27295, }, { "category": "Pet", @@ -36308,7 +40842,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 10692, + "value": 13761, }, { "category": "Pet", @@ -36316,7 +40850,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Rich Cat", "pt": 2, }, - "value": 3027, + "value": 2926, }, { "category": "Pet", @@ -36324,7 +40858,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Comet Agony", "sh": true, }, - "value": 79094, + "value": 97339, }, { "category": "Pet", @@ -36333,7 +40867,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8044, + "value": 10257, }, { "category": "Pet", @@ -36342,7 +40876,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 9669, + "value": 16502, }, { "category": "Pet", @@ -36350,7 +40884,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Rich Cat", "pt": 1, }, - "value": 10036, + "value": 9909, }, { "category": "Pet", @@ -36358,7 +40892,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Griffin", "pt": 2, }, - "value": 1995207, + "value": 2362838, }, { "category": "Pet", @@ -36366,7 +40900,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Griffin", "pt": 1, }, - "value": 6091407, + "value": 7227847, }, { "category": "Pet", @@ -36374,14 +40908,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Corgi", "pt": 1, }, - "value": 6866527, + "value": 8112343, }, { "category": "Pet", "configData": { "id": "Electric Cat", }, - "value": 152285188, + "value": 188416486, }, { "category": "Pet", @@ -36389,7 +40923,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Super Tiger", "sh": true, }, - "value": 3420, + "value": 2340, + }, + { + "category": "Misc", + "configData": { + "id": "Exclusive Daycare Slot Voucher", + }, + "value": 776289, }, { "category": "Pet", @@ -36398,7 +40939,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 28134, + "value": 29231, }, { "category": "Pet", @@ -36407,7 +40948,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5183, + "value": 6267, + }, + { + "category": "Ultimate", + "configData": { + "id": "Lightning Storm", + }, + "value": 806469, }, { "category": "Pet", @@ -36416,7 +40964,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 29081, + "value": 33049, }, { "category": "Pet", @@ -36424,7 +40972,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Astronaut Dog", "sh": true, }, - "value": 87865, + "value": 100531, }, { "category": "Pet", @@ -36432,7 +40980,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nuclear Wolf", "sh": true, }, - "value": 88603, + "value": 100858, }, { "category": "Pet", @@ -36441,7 +40989,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 52981, + "value": 65245, }, { "category": "Pet", @@ -36449,7 +40997,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Meebo The Alien", "sh": true, }, - "value": 298177, + "value": 382757, }, { "category": "Pet", @@ -36457,7 +41005,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Astral Axolotl", "sh": true, }, - "value": 328161, + "value": 423420, }, { "category": "Pet", @@ -36466,7 +41014,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 53061, + "value": 58654, }, { "category": "Pet", @@ -36475,7 +41023,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 41176, + "value": 48322, }, { "category": "Pet", @@ -36483,7 +41031,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nuclear Mortuus", "sh": true, }, - "value": 464299, + "value": 543399, }, { "category": "Pet", @@ -36492,7 +41040,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 77887, + "value": 86310, }, { "category": "Pet", @@ -36501,7 +41049,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5161, + "value": 6099, }, { "category": "Pet", @@ -36509,7 +41057,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "M-2 PROTOTYPE", "pt": 2, }, - "value": 2394898, + "value": 3048837, }, { "category": "Pet", @@ -36517,7 +41065,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blue Fluffy", "sh": true, }, - "value": 324124, + "value": 449582, }, { "category": "Pet", @@ -36525,7 +41073,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Super Tiger", "sh": true, }, - "value": 343, + "value": 333, }, { "category": "Pet", @@ -36534,7 +41082,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 18462, + "value": 20301, }, { "category": "Pet", @@ -36542,14 +41090,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Corgi", "pt": 2, }, - "value": 1947618, + "value": 2268555, }, { "category": "Pet", "configData": { "id": "Electric Corgi", }, - "value": 35881501, + "value": 44949364, }, { "category": "Pet", @@ -36557,7 +41105,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Cat", "pt": 1, }, - "value": 23163885, + "value": 26446956, }, { "category": "Pet", @@ -36565,7 +41113,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Cat", "pt": 2, }, - "value": 5529024, + "value": 6352090, }, { "category": "Pet", @@ -36573,7 +41121,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Astronaut Cat", "sh": true, }, - "value": 348219, + "value": 423067, }, { "category": "Pet", @@ -36582,7 +41130,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8259, + "value": 10567, }, { "category": "Pet", @@ -36591,7 +41139,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 27854, + "value": 31438, + }, + { + "category": "Egg", + "configData": { + "id": "Active Huge Egg", + }, + "value": 135200, }, { "category": "Pet", @@ -36600,7 +41155,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 15132, + "value": 18172, }, { "category": "Pet", @@ -36608,7 +41163,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Comet Cyclops", "sh": true, }, - "value": 310630, + "value": 406001, }, { "category": "Pet", @@ -36617,7 +41172,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3499, + "value": 5210, }, { "category": "Pet", @@ -36626,7 +41181,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8490, + "value": 9881, }, { "category": "Pet", @@ -36634,7 +41189,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Red Woofy", "sh": true, }, - "value": 63947, + "value": 77755, }, { "category": "Pet", @@ -36643,7 +41198,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 22332, + "value": 25306, }, { "category": "Pet", @@ -36652,7 +41207,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 17066, + "value": 18676, }, { "category": "Pet", @@ -36661,7 +41216,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 293, + "value": 240, }, { "category": "Pet", @@ -36669,7 +41224,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Star Surfer", "sh": true, }, - "value": 75330, + "value": 91225, }, { "category": "Pet", @@ -36678,7 +41233,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 10484, + "value": 11229, }, { "category": "Pet", @@ -36687,7 +41242,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 18124, + "value": 22378, }, { "category": "Pet", @@ -36696,7 +41251,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 21694, + "value": 24296, }, { "category": "Pet", @@ -36704,7 +41259,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Robot", "sh": true, }, - "value": 363858, + "value": 458846, }, { "category": "Pet", @@ -36712,7 +41267,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "A-36", "pt": 2, }, - "value": 7517719, + "value": 9285226, }, { "category": "Pet", @@ -36720,14 +41275,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Fox", "sh": true, }, - "value": 299507, + "value": 391597, }, { "category": "Pet", "configData": { "id": "A-36", }, - "value": 186917153, + "value": 231817733, }, { "category": "Pet", @@ -36735,7 +41290,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "A-36", "pt": 1, }, - "value": 37979504, + "value": 44662192, }, { "category": "Pet", @@ -36743,7 +41298,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "M-2 PROTOTYPE", "pt": 1, }, - "value": 10149493, + "value": 12194201, }, { "category": "Pet", @@ -36752,7 +41307,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 21352, + "value": 26448, }, { "category": "Pet", @@ -36761,7 +41316,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 14404, + "value": 17573, }, { "category": "Pet", @@ -36770,7 +41325,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 35791, + "value": 41969, }, { "category": "Pet", @@ -36779,7 +41334,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 17648, + "value": 18673, }, { "category": "Pet", @@ -36787,14 +41342,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Lunar Deer", "sh": true, }, - "value": 62165, + "value": 76290, }, { "category": "Pet", "configData": { "id": "M-B PROTOTYPE", }, - "value": 69351304, + "value": 79255037, }, { "category": "Pet", @@ -36802,7 +41357,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Alien Arachnid", "pt": 1, }, - "value": 38956217, + "value": 39642970, }, { "category": "Pet", @@ -36810,7 +41365,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Robot Bee", "pt": 1, }, - "value": 46479313, + "value": 51783198, }, { "category": "Pet", @@ -36818,14 +41373,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "M-B PROTOTYPE", "pt": 2, }, - "value": 5122579, + "value": 5581105, }, { "category": "Pet", "configData": { "id": "Alien Arachnid", }, - "value": 199375969, + "value": 203427786, }, { "category": "Pet", @@ -36833,14 +41388,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "M-B PROTOTYPE", "pt": 1, }, - "value": 17195148, + "value": 18868497, }, { "category": "Pet", "configData": { "id": "Gleebo The Alien", }, - "value": 517280650, + "value": 532025526, }, { "category": "Pet", @@ -36848,7 +41403,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Robot Bee", "pt": 2, }, - "value": 12276216, + "value": 13338977, }, { "category": "Pet", @@ -36856,14 +41411,22 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gleebo The Alien", "pt": 2, }, - "value": 44752200, + "value": 44716446, }, { "category": "Pet", "configData": { "id": "Robot Bee", }, - "value": 262789770, + "value": 300979728, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Hologram", + "sh": true, + }, + "value": 2469, }, { "category": "Pet", @@ -36871,7 +41434,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Bunny", "sh": true, }, - "value": 72692, + "value": 88886, }, { "category": "Pet", @@ -36880,7 +41443,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 59715, + "value": 74328, }, { "category": "Pet", @@ -36888,14 +41451,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Galaxy Fox", "sh": true, }, - "value": 76822, + "value": 97964, }, { "category": "Pet", "configData": { "id": "Bleebo The Alien", }, - "value": 42346402495, + "value": 41901209062, }, { "category": "Pet", @@ -36903,7 +41466,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nine Eyed Lion", "pt": 1, }, - "value": 35164424, + "value": 35811242, }, { "category": "Pet", @@ -36911,7 +41474,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Alien Parasite", "pt": 2, }, - "value": 17234306527, + "value": 16804268954, }, { "category": "Pet", @@ -36919,14 +41482,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Alien Parasite", "pt": 1, }, - "value": 29222457953, + "value": 28999271503, }, { "category": "Pet", "configData": { "id": "Nine Eyed Lion", }, - "value": 199459034, + "value": 204530668, }, { "category": "Pet", @@ -36934,7 +41497,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Alien Axolotl", "pt": 1, }, - "value": 62129966993, + "value": 61660504946, }, { "category": "Pet", @@ -36942,7 +41505,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gleebo The Alien", "pt": 1, }, - "value": 87529591, + "value": 89420448, }, { "category": "Pet", @@ -36950,7 +41513,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Alien Axolotl", "pt": 2, }, - "value": 36113438071, + "value": 35245029797, }, { "category": "Pet", @@ -36958,7 +41521,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bleebo The Alien", "pt": 1, }, - "value": 9198306734, + "value": 9134174360, }, { "category": "Pet", @@ -36966,7 +41529,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bleebo The Alien", "pt": 2, }, - "value": 5882767959, + "value": 5737522532, }, { "category": "Pet", @@ -36974,7 +41537,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nine Eyed Lion", "pt": 2, }, - "value": 19630373, + "value": 19552194, }, { "category": "Pet", @@ -36982,7 +41545,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Alien Arachnid", "pt": 2, }, - "value": 22680088, + "value": 22680077, }, { "category": "Pet", @@ -36991,21 +41554,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 272072584, + "value": 269371148, }, { "category": "Pet", "configData": { "id": "Alien Axolotl", }, - "value": 325680399305, + "value": 321196023327, }, { "category": "Pet", "configData": { "id": "Alien Parasite", }, - "value": 151284874024, + "value": 149328498284, }, { "category": "Pet", @@ -37013,7 +41576,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Alien Axolotl", "sh": true, }, - "value": 1352394399, + "value": 1334706181, }, { "category": "Pet", @@ -37022,7 +41585,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 81026410, + "value": 79012485, }, { "category": "Pet", @@ -37031,7 +41594,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 7729, + "value": 9089, }, { "category": "Pet", @@ -37039,7 +41602,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Bear", "sh": true, }, - "value": 271727, + "value": 339994, }, { "category": "Pet", @@ -37047,7 +41610,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Super Tiger", "pt": 2, }, - "value": 202, + "value": 183, }, { "category": "Pet", @@ -37055,7 +41618,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "M-10 PROTOTYPE", "pt": 1, }, - "value": 15909374, + "value": 19567547, }, { "category": "Pet", @@ -37064,7 +41627,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 44476, + "value": 52733, }, { "category": "Pet", @@ -37072,14 +41635,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "M-10 PROTOTYPE", "pt": 2, }, - "value": 3186349, + "value": 4155817, }, { "category": "Pet", "configData": { "id": "M-10 PROTOTYPE", }, - "value": 49419398, + "value": 65233984, }, { "category": "Pet", @@ -37088,7 +41651,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 10683, + "value": 15526, }, { "category": "Pet", @@ -37097,7 +41660,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 38664858, + "value": 38260686, }, { "category": "Pet", @@ -37105,7 +41668,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Alien Parasite", "sh": true, }, - "value": 611112854, + "value": 603745021, }, { "category": "Pet", @@ -37114,7 +41677,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 175078154, + "value": 170242645, }, { "category": "Pet", @@ -37123,7 +41686,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 18142, + "value": 24467, }, { "category": "Pet", @@ -37131,7 +41694,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "A-36", "sh": true, }, - "value": 428556, + "value": 551384, }, { "category": "Pet", @@ -37139,7 +41702,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "M-10 PROTOTYPE", "sh": true, }, - "value": 112761, + "value": 152099, }, { "category": "Pet", @@ -37147,14 +41710,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Cat", "sh": true, }, - "value": 339147, + "value": 431029, }, { "category": "Pet", "configData": { "id": "Jelly Alien", }, - "value": 97014760, + "value": 95988543, }, { "category": "Pet", @@ -37163,7 +41726,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 21474, + "value": 27430, }, { "category": "Pet", @@ -37171,7 +41734,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Robot Bee", "sh": true, }, - "value": 618691, + "value": 710406, }, { "category": "Pet", @@ -37180,7 +41743,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 9527, + "value": 14308, }, { "category": "Pet", @@ -37189,7 +41752,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 37899, + "value": 50920, }, { "category": "Pet", @@ -37198,7 +41761,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 124292590, + "value": 122910192, }, { "category": "Pet", @@ -37206,7 +41769,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Dragon", "sh": true, }, - "value": 70269, + "value": 84133, }, { "category": "Pet", @@ -37215,7 +41778,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 18786, + "value": 21228, }, { "category": "Pet", @@ -37223,7 +41786,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Unicorn", "sh": true, }, - "value": 270859, + "value": 353985, + }, + { + "category": "Lootbox", + "configData": { + "id": "Arcade Egg 3", + }, + "value": 4939534, }, { "category": "Pet", @@ -37232,7 +41802,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 55009, + "value": 67291, }, { "category": "Pet", @@ -37241,7 +41811,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 47036, + "value": 53316, }, { "category": "Pet", @@ -37249,7 +41819,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gleebo The Alien", "sh": true, }, - "value": 1512440, + "value": 1544149, }, { "category": "Pet", @@ -37257,7 +41827,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Nine Eyed Lion", "sh": true, }, - "value": 574511, + "value": 581582, }, { "category": "Pet", @@ -37266,7 +41836,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 7861, + "value": 9155, }, { "category": "Pet", @@ -37275,7 +41845,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 14358, + "value": 16609, }, { "category": "Pet", @@ -37284,7 +41854,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 39126, + "value": 45330, }, { "category": "Pet", @@ -37292,7 +41862,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bleebo The Alien", "sh": true, }, - "value": 175959417, + "value": 173653498, }, { "category": "Pet", @@ -37300,7 +41870,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Corgi", "sh": true, }, - "value": 78330, + "value": 94987, }, { "category": "Pet", @@ -37309,7 +41879,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 239607, + "value": 242615, }, { "category": "Pet", @@ -37317,7 +41887,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Alien Arachnid", "sh": true, }, - "value": 610517, + "value": 614849, }, { "category": "Pet", @@ -37326,7 +41896,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 114124, + "value": 115690, }, { "category": "Pet", @@ -37334,7 +41904,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "M-B PROTOTYPE", "sh": true, }, - "value": 162577, + "value": 181396, }, { "category": "Pet", @@ -37343,7 +41913,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 102741, + "value": 116657, }, { "category": "Pet", @@ -37352,7 +41922,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 15615, + "value": 18475, }, { "category": "Pet", @@ -37361,7 +41931,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 7326, + "value": 8323, }, { "category": "Pet", @@ -37370,7 +41940,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 18204, + "value": 20808, }, { "category": "Pet", @@ -37378,7 +41948,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Griffin", "sh": true, }, - "value": 67467, + "value": 81402, }, { "category": "Pet", @@ -37386,7 +41956,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "M-2 PROTOTYPE", "sh": true, }, - "value": 92657, + "value": 116866, }, { "category": "Pet", @@ -37395,7 +41965,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 27293981, + "value": 26693080, + }, + { + "category": "Lootbox", + "configData": { + "id": "Arcade Egg 4", + }, + "value": 3597325, }, { "category": "Pet", @@ -37403,7 +41980,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jelly Alien", "pt": 1, }, - "value": 19965166, + "value": 19799409, + }, + { + "category": "Lootbox", + "configData": { + "id": "Arcade Egg 2", + }, + "value": 3335227, }, { "category": "Pet", @@ -37412,7 +41996,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 156081, + "value": 155595, }, { "category": "Pet", @@ -37421,7 +42005,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 18760, + "value": 20853, }, { "category": "Pet", @@ -37430,7 +42014,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 85154, + "value": 103680, }, { "category": "Pet", @@ -37439,7 +42023,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 39969, + "value": 42915, }, { "category": "Pet", @@ -37448,7 +42032,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 60173, + "value": 74303, }, { "category": "Pet", @@ -37457,7 +42041,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 39415, + "value": 45416, }, { "category": "Pet", @@ -37466,7 +42050,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 6636, + "value": 7518, }, { "category": "Pet", @@ -37474,7 +42058,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Rich Cat", "sh": true, }, - "value": 639, + "value": 637, + }, + { + "category": "Lootbox", + "configData": { + "id": "Arcade Egg 1", + }, + "value": 3061399, }, { "category": "Pet", @@ -37482,7 +42073,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jelly Alien", "pt": 2, }, - "value": 13128119, + "value": 12858067, }, { "category": "Pet", @@ -37491,7 +42082,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 7230, + "value": 8415, }, { "category": "Pet", @@ -37500,7 +42091,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 12654, + "value": 15212, }, { "category": "Pet", @@ -37509,7 +42100,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 9463, + "value": 12403, }, { "category": "Pet", @@ -37518,7 +42109,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 13914, + "value": 16698, }, { "category": "Pet", @@ -37527,7 +42118,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 25566, + "value": 33570, }, { "category": "Pet", @@ -37536,7 +42127,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 14858, + "value": 17672, }, { "category": "Pet", @@ -37554,7 +42145,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 14962, + "value": 18353, }, { "category": "Pet", @@ -37563,7 +42154,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 19611, + "value": 22278, }, { "category": "Pet", @@ -37572,7 +42163,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 27208, + "value": 31805, }, { "category": "Pet", @@ -37581,7 +42172,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 67682, + "value": 67583, }, { "category": "Pet", @@ -37590,7 +42181,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 40263, + "value": 45545, }, { "category": "Pet", @@ -37599,7 +42190,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 97065, + "value": 97809, }, { "category": "Pet", @@ -37608,14 +42199,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 7296, + "value": 11616, }, { "category": "Pet", "configData": { "id": "Meebo in a Spaceship", }, - "value": 1949320, + "value": 1921935, }, { "category": "Pet", @@ -37624,7 +42215,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 7623, + "value": 9048, + }, + { + "category": "Lootbox", + "configData": { + "id": "Arcade Egg 5", + }, + "value": 3003467, }, { "category": "Pet", @@ -37633,7 +42231,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 25193, + "value": 31851, }, { "category": "Pet", @@ -37642,7 +42240,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 23626, + "value": 26984, }, { "category": "Pet", @@ -37651,7 +42249,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 17078, + "value": 18677, }, { "category": "Pet", @@ -37659,7 +42257,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Meebo in a Spaceship", "pt": 1, }, - "value": 360654, + "value": 356572, }, { "category": "Pet", @@ -37667,7 +42265,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Meebo in a Spaceship", "pt": 2, }, - "value": 251769, + "value": 247528, }, { "category": "Pet", @@ -37676,7 +42274,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 80803, + "value": 80731, }, { "category": "Pet", @@ -37685,7 +42283,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 49085, + "value": 48485, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Rocket", + "sh": true, + }, + "value": 194, }, { "category": "Pet", @@ -37693,7 +42299,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Bat Cat", "sh": true, }, - "value": 17, + "value": 9, }, { "category": "Pet", @@ -37701,7 +42307,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Jelly Alien", "sh": true, }, - "value": 254102, + "value": 249105, }, { "category": "Pet", @@ -37710,7 +42316,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 44252, + "value": 43614, }, { "category": "Pet", @@ -37718,7 +42324,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Meebo in a Spaceship", "sh": true, }, - "value": 636, + "value": 615, }, { "category": "Pet", @@ -37744,7 +42350,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Leprechaun Cat", "pt": 1, }, - "value": 2382831900, + "value": 2362900027, }, { "category": "Pet", @@ -37752,14 +42358,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Irish Corgi", "pt": 1, }, - "value": 1132718346, + "value": 1122699192, }, { "category": "Pet", "configData": { "id": "Clover Fairy", }, - "value": 1934698738, + "value": 1909286182, }, { "category": "Pet", @@ -37767,7 +42373,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Leprechaun Cat", "pt": 2, }, - "value": 1240906805, + "value": 1199784505, }, { "category": "Pet", @@ -37775,21 +42381,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Clover Fairy", "pt": 2, }, - "value": 232742037, + "value": 224904304, }, { "category": "Pet", "configData": { "id": "Leprechaun Cat", }, - "value": 14524141314, + "value": 14305034126, }, { "category": "Pet", "configData": { "id": "Irish Corgi", }, - "value": 6767452484, + "value": 6667373149, }, { "category": "Pet", @@ -37797,7 +42403,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Clover Fairy", "pt": 1, }, - "value": 381768916, + "value": 378532470, }, { "category": "Pet", @@ -37805,7 +42411,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Irish Corgi", "pt": 2, }, - "value": 606286638, + "value": 586529790, }, { "category": "Pet", @@ -37813,7 +42419,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Leprechaun Cat", "sh": true, }, - "value": 56324307, + "value": 55436686, }, { "category": "Pet", @@ -37821,7 +42427,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Clover Axolotl", "pt": 2, }, - "value": 511676, + "value": 496719, }, { "category": "Pet", @@ -37829,7 +42435,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Irish Corgi", "sh": true, }, - "value": 25696476, + "value": 25335600, }, { "category": "Pet", @@ -37837,7 +42443,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Clover Axolotl", "pt": 1, }, - "value": 788238, + "value": 777212, }, { "category": "Pet", @@ -37846,7 +42452,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 6657123, + "value": 6412848, }, { "category": "Pet", @@ -37854,7 +42460,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Clover Fairy", "sh": true, }, - "value": 8002962, + "value": 7883746, }, { "category": "Pet", @@ -37863,7 +42469,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 10301263, + "value": 10177664, }, { "category": "Pet", @@ -37872,14 +42478,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3157460, + "value": 3049386, }, { "category": "Pet", "configData": { "id": "Clover Axolotl", }, - "value": 4441586, + "value": 4382244, }, { "category": "Pet", @@ -37888,7 +42494,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 4822095, + "value": 4758982, }, { "category": "Pet", @@ -37897,7 +42503,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1202304, + "value": 1163557, }, { "category": "Pet", @@ -37906,7 +42512,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1686300, + "value": 1665150, }, { "category": "Pet", @@ -37915,7 +42521,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1639, + "value": 1609, }, { "category": "Pet", @@ -37923,7 +42529,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Clover Axolotl", "sh": true, }, - "value": 7145, + "value": 6918, }, { "category": "Pet", @@ -37948,21 +42554,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Clover Fairy", "pt": 1, }, - "value": 796, + "value": 794, + }, + { + "category": "Lootbox", + "configData": { + "id": "Adventurer Lootbox", + }, + "value": 390816, }, { "category": "Pet", "configData": { "id": "Huge Clover Fairy", }, - "value": 7725, + "value": 7631, }, { "category": "Pet", "configData": { "id": "Huge Whale Shark", }, - "value": 43915, + "value": 64025, }, { "category": "Pet", @@ -37971,7 +42584,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 18, + "value": 6, + }, + { + "category": "Misc", + "configData": { + "id": "Basic Item Jar", + }, + "value": 60806897, }, { "category": "Pet", @@ -37979,7 +42599,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Whale Shark", "pt": 2, }, - "value": 7707, + "value": 11259, + }, + { + "category": "Hoverboard", + "configData": { + "id": "M-10", + }, + "value": 32122, }, { "category": "Pet", @@ -37987,7 +42614,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Clover Fairy", "pt": 2, }, - "value": 642, + "value": 636, }, { "category": "Pet", @@ -37995,14 +42622,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Whale Shark", "pt": 1, }, - "value": 21644, + "value": 31515, }, { "category": "Pet", "configData": { "id": "Huge Arcade Dragon", }, - "value": 6091, + "value": 9358, + }, + { + "category": "Booth", + "configData": { + "id": "Panda", + }, + "value": 10517, }, { "category": "Pet", @@ -38010,7 +42644,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Clover Fairy", "sh": true, }, - "value": 169, + "value": 166, }, { "category": "Pet", @@ -38018,28 +42652,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Firefly", "pt": 1, }, - "value": 66, + "value": 127, }, { "category": "Pet", "configData": { "id": "Coin", }, - "value": 28, + "value": 132, }, { "category": "Pet", "configData": { "id": "Banana", }, - "value": 49, + "value": 174, }, { "category": "Pet", "configData": { "id": "Huge Firefly", }, - "value": 312, + "value": 599, }, { "category": "Pet", @@ -38057,7 +42691,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 577, + "value": 595, }, { "category": "Pet", @@ -38066,7 +42700,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 847, + "value": 859, }, { "category": "Pet", @@ -38074,7 +42708,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Firefly", "pt": 2, }, - "value": 12, + "value": 25, }, { "category": "Pet", @@ -38083,7 +42717,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13, + "value": 12, }, { "category": "Pet", @@ -38099,14 +42733,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Titanic Sock Monkey", }, - "value": 532, + "value": 541, }, { "category": "Pet", "configData": { "id": "Titanic Sock Cat", }, - "value": 589, + "value": 597, }, { "category": "Pet", @@ -38115,7 +42749,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 66, + "value": 123, }, { "category": "Pet", @@ -38124,14 +42758,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 127, + "value": 229, + }, + { + "category": "Booth", + "configData": { + "id": "Alien", + }, + "value": 3542, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Bleebo The Alien", + }, + "value": 221, }, { "category": "Pet", "configData": { "id": "Huge Alien Arachnid", }, - "value": 74, + "value": 73, }, { "category": "Pet", @@ -38147,7 +42795,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Sock Cat", "sh": true, }, - "value": 5, + "value": 6, }, { "category": "Pet", @@ -38174,19 +42822,113 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 1, }, + { + "category": "Potion", + "configData": { + "id": "Diamonds", + "tn": 8, + }, + "value": 171921155, + }, + { + "category": "Potion", + "configData": { + "id": "Coins", + "tn": 10, + }, + "value": 112930353, + }, + { + "category": "Potion", + "configData": { + "id": "Lucky", + "tn": 10, + }, + "value": 32294178, + }, + { + "category": "Potion", + "configData": { + "id": "Treasure Hunter", + "tn": 10, + }, + "value": 45391398, + }, + { + "category": "Potion", + "configData": { + "id": "Damage", + "tn": 10, + }, + "value": 65123130, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Hotdog", + }, + "value": 39182, + }, + { + "category": "Misc", + "configData": { + "id": "Rainbow Mini Chest", + }, + "value": 178060722, + }, + { + "category": "Enchant", + "configData": { + "id": "Tap Power", + "tn": 9, + }, + "value": 14411148, + }, + { + "category": "Enchant", + "configData": { + "id": "Criticals", + "tn": 9, + }, + "value": 12518374, + }, + { + "category": "Enchant", + "configData": { + "id": "Diamonds", + "tn": 9, + }, + "value": 5943550, + }, + { + "category": "Enchant", + "configData": { + "id": "Lucky Eggs", + "tn": 9, + }, + "value": 12151256, + }, + { + "category": "Enchant", + "configData": { + "id": "Treasure Hunter", + "tn": 9, + }, + "value": 15759992, + }, { "category": "Pet", "configData": { "id": "Alien Octopus", }, - "value": 277759948, + "value": 378061310, }, { "category": "Pet", "configData": { "id": "Brain", }, - "value": 65581332, + "value": 92947512, }, { "category": "Pet", @@ -38194,21 +42936,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Alien Octopus", "pt": 2, }, - "value": 7002841, + "value": 9696434, }, { "category": "Pet", "configData": { "id": "Forged Robot", }, - "value": 26180353, + "value": 42837213, }, { "category": "Pet", "configData": { "id": "Forged Cyclops", }, - "value": 105717163, + "value": 161377351, }, { "category": "Pet", @@ -38216,42 +42958,79 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Alien Octopus", "pt": 1, }, - "value": 41407372, + "value": 49908029, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 24", + }, + "value": 839676, }, { "category": "Pet", "configData": { "id": "Sketch Cow", }, - "value": 274050, + "value": 235853, }, { "category": "Pet", "configData": { "id": "Sketch Corgi", }, - "value": 393386, + "value": 337295, }, { "category": "Pet", "configData": { "id": "Sketch Dragon", }, - "value": 101835, + "value": 81859, + }, + { + "category": "Enchant", + "configData": { + "id": "Strong Pets", + "tn": 9, + }, + "value": 15234639, + }, + { + "category": "Enchant", + "configData": { + "id": "Coins", + "tn": 9, + }, + "value": 15511316, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Nightmare", + }, + "value": 15413, + }, + { + "category": "Lootbox", + "configData": { + "id": "Hype Egg", + }, + "value": 131647330, }, { "category": "Pet", "configData": { "id": "Junkyard Hound", }, - "value": 25528355, + "value": 38710835, }, { "category": "Pet", "configData": { "id": "Cat Magician", }, - "value": 27288464, + "value": 41922335, }, { "category": "Pet", @@ -38259,7 +43038,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Brain", "pt": 1, }, - "value": 13842846, + "value": 17381647, }, { "category": "Pet", @@ -38267,7 +43046,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sophisticated Fox", "pt": 1, }, - "value": 13083128, + "value": 15511268, }, { "category": "Pet", @@ -38275,7 +43054,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cat Magician", "pt": 2, }, - "value": 1077121, + "value": 1354720, }, { "category": "Pet", @@ -38283,14 +43062,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Junkyard Bat", "pt": 1, }, - "value": 13107247, + "value": 15987117, }, { "category": "Pet", "configData": { "id": "Junkyard Bat", }, - "value": 78861624, + "value": 114337485, }, { "category": "Pet", @@ -38298,14 +43077,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Junkyard Bat", "pt": 2, }, - "value": 2606464, + "value": 3321772, }, { "category": "Pet", "configData": { "id": "Steampunk Fish", }, - "value": 25085887, + "value": 33553851, }, { "category": "Pet", @@ -38313,7 +43092,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sophisticated Fox", "pt": 2, }, - "value": 2863373, + "value": 3449855, }, { "category": "Pet", @@ -38321,7 +43100,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Junkyard Hound", "pt": 2, }, - "value": 1419055, + "value": 1775437, }, { "category": "Pet", @@ -38329,7 +43108,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cat Magician", "pt": 1, }, - "value": 5024283, + "value": 6203290, }, { "category": "Pet", @@ -38337,14 +43116,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Junkyard Hound", "pt": 1, }, - "value": 5946469, + "value": 7298925, }, { "category": "Pet", "configData": { "id": "Sophisticated Fox", }, - "value": 79430269, + "value": 106708032, }, { "category": "Pet", @@ -38352,7 +43131,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Steampunk Octopus", "pt": 2, }, - "value": 1045776, + "value": 1246668, }, { "category": "Pet", @@ -38360,7 +43139,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Steampunk Crocodile", "pt": 2, }, - "value": 3618625, + "value": 4167500, }, { "category": "Pet", @@ -38368,7 +43147,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Steampunk Crocodile", "pt": 1, }, - "value": 15697734, + "value": 18150791, }, { "category": "Pet", @@ -38376,14 +43155,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ducky Magician", "pt": 2, }, - "value": 2610687, + "value": 3138205, }, { "category": "Pet", "configData": { "id": "Ducky Magician", }, - "value": 75040848, + "value": 98125823, }, { "category": "Pet", @@ -38391,7 +43170,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mechanical Spider", "pt": 1, }, - "value": 5405064, + "value": 6712358, }, { "category": "Pet", @@ -38399,14 +43178,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ducky Magician", "pt": 1, }, - "value": 12269009, + "value": 14706716, }, { "category": "Pet", "configData": { "id": "Steampunk Crocodile", }, - "value": 84324004, + "value": 107900792, }, { "category": "Pet", @@ -38414,14 +43193,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Steampunk Octopus", "pt": 1, }, - "value": 4622326, + "value": 5671675, }, { "category": "Pet", "configData": { "id": "Mechanical Spider", }, - "value": 24423764, + "value": 32079310, }, { "category": "Pet", @@ -38429,21 +43208,36 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mechanical Spider", "pt": 2, }, - "value": 1357266, + "value": 1626004, }, { "category": "Pet", "configData": { "id": "Steampunk Octopus", }, - "value": 25921780, + "value": 34454156, + }, + { + "category": "Enchant", + "configData": { + "id": "Lightning Orb", + "tn": 1, + }, + "value": 9273, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Helicopter", + }, + "value": 5435, }, { "category": "Pet", "configData": { "id": "Toy Mouse", }, - "value": 27188117, + "value": 37039865, }, { "category": "Pet", @@ -38451,7 +43245,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Toy Mouse", "pt": 1, }, - "value": 4792662, + "value": 5772922, }, { "category": "Pet", @@ -38459,7 +43253,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Steampunk Fish", "pt": 2, }, - "value": 1413188, + "value": 1685748, }, { "category": "Pet", @@ -38467,7 +43261,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Toy Mouse", "pt": 2, }, - "value": 1116264, + "value": 1325522, }, { "category": "Pet", @@ -38475,7 +43269,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Steampunk Fish", "pt": 1, }, - "value": 5534463, + "value": 6738998, }, { "category": "Pet", @@ -38483,14 +43277,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sketch Corgi", "pt": 2, }, - "value": 10646, + "value": 8500, }, { "category": "Pet", "configData": { "id": "Forged Turtle", }, - "value": 25762281, + "value": 33257905, }, { "category": "Pet", @@ -38498,14 +43292,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Forged Hedgehog", "pt": 2, }, - "value": 3354766, + "value": 4169168, }, { "category": "Pet", "configData": { "id": "Forged Hedgehog", }, - "value": 107561860, + "value": 137081984, }, { "category": "Pet", @@ -38513,7 +43307,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Forged Hedgehog", "pt": 1, }, - "value": 16995937, + "value": 20010242, }, { "category": "Pet", @@ -38521,7 +43315,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Forged Turtle", "pt": 2, }, - "value": 1257254, + "value": 1549392, }, { "category": "Pet", @@ -38529,7 +43323,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Forged Turtle", "pt": 1, }, - "value": 5279164, + "value": 6415323, }, { "category": "Pet", @@ -38537,7 +43331,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Raccoon", "pt": 2, }, - "value": 2897011, + "value": 3219122, }, { "category": "Pet", @@ -38545,21 +43339,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blimp Dragon", "pt": 2, }, - "value": 4100199, + "value": 4330184, }, { "category": "Pet", "configData": { "id": "Circuit Cat", }, - "value": 104541025, + "value": 131454135, }, { "category": "Pet", "configData": { "id": "Relic Raccoon", }, - "value": 38537022, + "value": 46477753, }, { "category": "Pet", @@ -38567,7 +43361,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Fox", "pt": 2, }, - "value": 5759197, + "value": 6528390, }, { "category": "Pet", @@ -38575,7 +43369,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blimp Dragon", "pt": 1, }, - "value": 12420690, + "value": 13456383, }, { "category": "Pet", @@ -38583,7 +43377,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Dragon", "pt": 1, }, - "value": 5473993, + "value": 6659895, }, { "category": "Pet", @@ -38591,14 +43385,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Circuit Cat", "pt": 2, }, - "value": 5673022, + "value": 6400236, }, { "category": "Pet", "configData": { "id": "Relic Fox", }, - "value": 120547750, + "value": 151484827, }, { "category": "Pet", @@ -38606,7 +43400,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Bear", "pt": 1, }, - "value": 14901308, + "value": 17185898, }, { "category": "Pet", @@ -38614,7 +43408,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Steampunk Bat", "pt": 1, }, - "value": 28509158, + "value": 31103804, }, { "category": "Pet", @@ -38622,7 +43416,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Steampunk Bat", "pt": 2, }, - "value": 8079064, + "value": 8684021, }, { "category": "Pet", @@ -38630,35 +43424,35 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Bear", "pt": 2, }, - "value": 3374009, + "value": 4011851, }, { "category": "Pet", "configData": { "id": "Steampunk Bat", }, - "value": 121776818, + "value": 149789317, }, { "category": "Pet", "configData": { "id": "Blimp Dragon", }, - "value": 38777739, + "value": 46276856, }, { "category": "Pet", "configData": { "id": "Relic Bear", }, - "value": 85567016, + "value": 111836859, }, { "category": "Pet", "configData": { "id": "Relic Dragon", }, - "value": 23428400, + "value": 30105006, }, { "category": "Pet", @@ -38666,7 +43460,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Circuit Cat", "pt": 1, }, - "value": 20271608, + "value": 22863039, }, { "category": "Pet", @@ -38674,7 +43468,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Dragon", "pt": 2, }, - "value": 1425427, + "value": 1653673, }, { "category": "Pet", @@ -38682,7 +43476,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sketch Cow", "pt": 2, }, - "value": 7320, + "value": 5792, }, { "category": "Pet", @@ -38690,7 +43484,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Forged Robot", "pt": 1, }, - "value": 5680859, + "value": 7308447, }, { "category": "Pet", @@ -38698,7 +43492,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Forged Cyclops", "pt": 2, }, - "value": 3023095, + "value": 4399140, }, { "category": "Pet", @@ -38706,7 +43500,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Forged Cyclops", "pt": 1, }, - "value": 16951143, + "value": 21263135, }, { "category": "Pet", @@ -38714,14 +43508,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Forged Robot", "pt": 2, }, - "value": 1228609, + "value": 1759704, }, { "category": "Pet", "configData": { "id": "Steampunk Wolf", }, - "value": 30650880, + "value": 39474986, }, { "category": "Pet", @@ -38729,7 +43523,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mining Mole", "pt": 1, }, - "value": 7647653, + "value": 8975897, }, { "category": "Pet", @@ -38737,7 +43531,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Steampunk Wolf", "pt": 2, }, - "value": 1580211, + "value": 1784966, }, { "category": "Pet", @@ -38745,7 +43539,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Steampunk Wolf", "pt": 1, }, - "value": 6354943, + "value": 7341236, }, { "category": "Pet", @@ -38753,14 +43547,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mining Mole", "pt": 2, }, - "value": 2080401, + "value": 2327968, }, { "category": "Pet", "configData": { "id": "Mining Mole", }, - "value": 30393227, + "value": 37495616, }, { "category": "Pet", @@ -38768,7 +43562,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Fox", "pt": 1, }, - "value": 22846243, + "value": 25680003, }, { "category": "Pet", @@ -38776,14 +43570,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Circuit Slime", "pt": 2, }, - "value": 2316892, + "value": 2648067, }, { "category": "Pet", "configData": { "id": "Circuit Corgi", }, - "value": 87707658, + "value": 116825428, }, { "category": "Pet", @@ -38791,7 +43585,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Circuit Slime", "pt": 1, }, - "value": 6913569, + "value": 7842861, }, { "category": "Pet", @@ -38799,21 +43593,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Circuit Corgi", "pt": 2, }, - "value": 3952065, + "value": 4625520, }, { "category": "Pet", "configData": { "id": "Circuit Griffin", }, - "value": 23433654, + "value": 31119105, }, { "category": "Pet", "configData": { "id": "Circuit Slime", }, - "value": 29008539, + "value": 36690767, }, { "category": "Pet", @@ -38821,7 +43615,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Brain", "pt": 2, }, - "value": 2843360, + "value": 3703220, }, { "category": "Pet", @@ -38829,7 +43623,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Circuit Corgi", "pt": 1, }, - "value": 14828428, + "value": 17429087, }, { "category": "Pet", @@ -38837,7 +43631,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cat Magician", "sh": true, }, - "value": 39133, + "value": 69661, }, { "category": "Pet", @@ -38845,7 +43639,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Circuit Griffin", "pt": 1, }, - "value": 5101883, + "value": 6211175, }, { "category": "Pet", @@ -38853,7 +43647,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Junkyard Bat", "sh": true, }, - "value": 131198, + "value": 223216, }, { "category": "Pet", @@ -38862,14 +43656,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5670, + "value": 8238, }, { "category": "Pet", "configData": { "id": "Huge Sketch Dragon", }, - "value": 5547, + "value": 5597, }, { "category": "Pet", @@ -38877,7 +43671,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Junkyard Hound", "sh": true, }, - "value": 40803, + "value": 69550, }, { "category": "Pet", @@ -38885,7 +43679,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Circuit Griffin", "pt": 2, }, - "value": 1602055, + "value": 1866700, }, { "category": "Pet", @@ -38893,14 +43687,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Squirrel", "pt": 1, }, - "value": 15083311, + "value": 17981338, }, { "category": "Pet", "configData": { "id": "Relic Squirrel", }, - "value": 85136386, + "value": 113013244, }, { "category": "Pet", @@ -38908,7 +43702,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sketch Corgi", "sh": true, }, - "value": 7909, + "value": 6068, }, { "category": "Pet", @@ -38916,7 +43710,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sketch Dragon", "sh": true, }, - "value": 2058, + "value": 1557, }, { "category": "Pet", @@ -38924,7 +43718,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sketch Dragon", "pt": 2, }, - "value": 2728, + "value": 2306, }, { "category": "Pet", @@ -38932,7 +43726,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Forged Hedgehog", "sh": true, }, - "value": 195631, + "value": 272583, }, { "category": "Pet", @@ -38941,7 +43735,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 65348, + "value": 83369, }, { "category": "Pet", @@ -38949,7 +43743,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Alien Octopus", "sh": true, }, - "value": 521353, + "value": 846949, }, { "category": "Pet", @@ -38957,7 +43751,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Circuit Cat", "sh": true, }, - "value": 203270, + "value": 272020, }, { "category": "Pet", @@ -38965,7 +43759,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sketch Cow", "sh": true, }, - "value": 5615, + "value": 4319, }, { "category": "Pet", @@ -38973,7 +43767,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Gecko", "pt": 1, }, - "value": 14075921, + "value": 16533240, }, { "category": "Pet", @@ -38981,14 +43775,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Bunny", "pt": 1, }, - "value": 14598329, + "value": 17113812, }, { "category": "Pet", "configData": { "id": "Cyberpunk Gecko", }, - "value": 77206735, + "value": 102220775, }, { "category": "Pet", @@ -38996,7 +43790,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Axolotl", "pt": 2, }, - "value": 1257215, + "value": 1490096, }, { "category": "Pet", @@ -39004,7 +43798,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Raccoon", "pt": 1, }, - "value": 9903532, + "value": 11024553, }, { "category": "Pet", @@ -39012,14 +43806,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Gecko", "pt": 2, }, - "value": 2977269, + "value": 3591850, }, { "category": "Pet", "configData": { "id": "Cyberpunk Axolotl", }, - "value": 21050658, + "value": 27594916, }, { "category": "Pet", @@ -39027,21 +43821,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Sketch Dragon", "pt": 2, }, - "value": 146, + "value": 147, }, { "category": "Pet", "configData": { "id": "Cyberpunk Bunny", }, - "value": 79093991, + "value": 101144378, }, { "category": "Pet", "configData": { "id": "Huge Sketch Corgi", }, - "value": 9484, + "value": 9541, }, { "category": "Pet", @@ -39049,7 +43843,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Axolotl", "pt": 1, }, - "value": 5257813, + "value": 6205737, }, { "category": "Pet", @@ -39058,14 +43852,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 2647, + "value": 3476, }, { "category": "Pet", "configData": { "id": "Wizard Unicorn", }, - "value": 27093147, + "value": 33969165, }, { "category": "Pet", @@ -39073,14 +43867,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Wizard Unicorn", "pt": 2, }, - "value": 1773963, + "value": 2112643, }, { "category": "Pet", "configData": { "id": "Runic Wolf", }, - "value": 87964549, + "value": 114973531, }, { "category": "Pet", @@ -39088,14 +43882,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Wizard Unicorn", "pt": 1, }, - "value": 7454213, + "value": 8876074, }, { "category": "Pet", "configData": { "id": "Cyberpunk Cat", }, - "value": 80728713, + "value": 107017353, }, { "category": "Pet", @@ -39103,7 +43897,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Wizard Cat", "pt": 2, }, - "value": 4304978, + "value": 5005408, }, { "category": "Pet", @@ -39111,14 +43905,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Bunny", "pt": 2, }, - "value": 3602860, + "value": 4192316, }, { "category": "Pet", "configData": { "id": "Cyberpunk Dog", }, - "value": 22155721, + "value": 29235834, }, { "category": "Pet", @@ -39126,14 +43920,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Meerkat", "pt": 2, }, - "value": 1429453, + "value": 1652905, }, { "category": "Pet", "configData": { "id": "Cyberpunk Meerkat", }, - "value": 21002383, + "value": 27273897, }, { "category": "Pet", @@ -39141,14 +43935,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Runic Wolf", "pt": 2, }, - "value": 3565404, + "value": 4361003, }, { "category": "Pet", "configData": { "id": "Runic Agony", }, - "value": 23365301, + "value": 30713237, }, { "category": "Pet", @@ -39156,14 +43950,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Meerkat", "pt": 1, }, - "value": 5175798, + "value": 6248535, }, { "category": "Pet", "configData": { "id": "Wizard Cat", }, - "value": 100332810, + "value": 126827266, }, { "category": "Pet", @@ -39171,7 +43965,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Wizard Cat", "pt": 1, }, - "value": 19534802, + "value": 22403958, }, { "category": "Pet", @@ -39180,7 +43974,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8809, + "value": 10467, }, { "category": "Pet", @@ -39188,7 +43982,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Brain", "sh": true, }, - "value": 117573, + "value": 187115, }, { "category": "Pet", @@ -39196,7 +43990,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Runic Wolf", "pt": 1, }, - "value": 16023822, + "value": 19216771, }, { "category": "Pet", @@ -39204,7 +43998,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Goblin", "pt": 1, }, - "value": 5208718, + "value": 6547875, }, { "category": "Pet", @@ -39212,14 +44006,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Circuit Corgi", "sh": true, }, - "value": 162317, + "value": 231317, }, { "category": "Pet", "configData": { "id": "Relic Goblin", }, - "value": 22766723, + "value": 29849325, }, { "category": "Pet", @@ -39227,7 +44021,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Runic Agony", "pt": 2, }, - "value": 1465292, + "value": 1812099, }, { "category": "Pet", @@ -39235,7 +44029,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Wizard Cat", "sh": true, }, - "value": 194394, + "value": 257036, }, { "category": "Pet", @@ -39243,7 +44037,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Goblin", "pt": 2, }, - "value": 1517339, + "value": 1751804, }, { "category": "Pet", @@ -39251,7 +44045,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Squirrel", "pt": 2, }, - "value": 3723201, + "value": 4355240, }, { "category": "Pet", @@ -39260,7 +44054,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 7337, + "value": 9524, }, { "category": "Pet", @@ -39269,7 +44063,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 28102, + "value": 34197, }, { "category": "Pet", @@ -39277,7 +44071,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Forged Cyclops", "sh": true, }, - "value": 184634, + "value": 331060, }, { "category": "Pet", @@ -39285,7 +44079,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Steampunk Bat", "sh": true, }, - "value": 249602, + "value": 317927, }, { "category": "Pet", @@ -39294,7 +44088,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 8140, + "value": 11881, }, { "category": "Pet", @@ -39302,7 +44096,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ducky Magician", "sh": true, }, - "value": 128153, + "value": 183349, }, { "category": "Pet", @@ -39311,7 +44105,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 6331, + "value": 10104, }, { "category": "Pet", @@ -39320,7 +44114,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 27716, + "value": 34647, }, { "category": "Pet", @@ -39329,7 +44123,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 66040, + "value": 71748, }, { "category": "Pet", @@ -39337,7 +44131,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Forged Turtle", "sh": true, }, - "value": 41097, + "value": 55033, }, { "category": "Pet", @@ -39346,7 +44140,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 26317, + "value": 36235, }, { "category": "Pet", @@ -39354,7 +44148,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Cat", "pt": 1, }, - "value": 14033530, + "value": 16522808, }, { "category": "Pet", @@ -39363,7 +44157,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 15302, + "value": 21026, }, { "category": "Pet", @@ -39371,7 +44165,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Sketch Corgi", "pt": 2, }, - "value": 260, + "value": 266, }, { "category": "Pet", @@ -39380,7 +44174,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 10615, + "value": 13326, }, { "category": "Pet", @@ -39388,7 +44182,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Circuit Griffin", "sh": true, }, - "value": 40340, + "value": 54867, }, { "category": "Pet", @@ -39397,7 +44191,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8090, + "value": 10882, }, { "category": "Pet", @@ -39405,7 +44199,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Cat", "pt": 2, }, - "value": 3316628, + "value": 3976877, }, { "category": "Pet", @@ -39413,7 +44207,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Steampunk Fish", "sh": true, }, - "value": 39136, + "value": 55941, }, { "category": "Pet", @@ -39422,7 +44216,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 6396, + "value": 8568, }, { "category": "Pet", @@ -39430,7 +44224,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Dog", "pt": 1, }, - "value": 5115143, + "value": 6082560, }, { "category": "Pet", @@ -39438,7 +44232,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sophisticated Fox", "sh": true, }, - "value": 132724, + "value": 201267, }, { "category": "Pet", @@ -39446,7 +44240,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Runic Agony", "pt": 1, }, - "value": 5739689, + "value": 7161294, }, { "category": "Pet", @@ -39454,14 +44248,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Ghost", "pt": 1, }, - "value": 6325321, + "value": 7247267, }, { "category": "Pet", "configData": { "id": "Cyberpunk Spider", }, - "value": 92123647, + "value": 117579558, }, { "category": "Pet", @@ -39469,14 +44263,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Spider", "pt": 1, }, - "value": 16442519, + "value": 18781263, }, { "category": "Pet", "configData": { "id": "Cyberpunk Ghost", }, - "value": 25938586, + "value": 32937697, }, { "category": "Pet", @@ -39484,7 +44278,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Ghost", "pt": 2, }, - "value": 1965744, + "value": 2185381, }, { "category": "Pet", @@ -39492,7 +44286,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Spider", "pt": 2, }, - "value": 4478051, + "value": 5069909, }, { "category": "Pet", @@ -39500,7 +44294,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Dog", "pt": 2, }, - "value": 1432940, + "value": 1732534, }, { "category": "Pet", @@ -39509,7 +44303,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 27240, + "value": 33079, }, { "category": "Pet", @@ -39518,7 +44312,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 20759, + "value": 27034, }, { "category": "Pet", @@ -39527,7 +44321,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 8642, + "value": 12776, }, { "category": "Pet", @@ -39535,7 +44329,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Squirrel", "sh": true, }, - "value": 153594, + "value": 221188, + }, + { + "category": "Ultimate", + "configData": { + "id": "Tsunami", + }, + "value": 186311, }, { "category": "Pet", @@ -39543,7 +44344,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Forged Robot", "sh": true, }, - "value": 43147, + "value": 78371, }, { "category": "Pet", @@ -39551,7 +44352,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Sketch Dragon", "sh": true, }, - "value": 217, + "value": 219, }, { "category": "Pet", @@ -39559,7 +44360,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Toy Mouse", "sh": true, }, - "value": 39218, + "value": 58324, }, { "category": "Pet", @@ -39568,7 +44369,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3625, + "value": 5512, }, { "category": "Pet", @@ -39577,7 +44378,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 10883, + "value": 14799, }, { "category": "Pet", @@ -39586,7 +44387,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5927, + "value": 7749, }, { "category": "Pet", @@ -39594,28 +44395,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mechanical Spider", "sh": true, }, - "value": 40032, + "value": 53764, }, { "category": "Pet", "configData": { "id": "Tech Ninja Giraffe", }, - "value": 24979361, + "value": 31176325, }, { "category": "Pet", "configData": { "id": "Tech Ninja Panda", }, - "value": 86922674, + "value": 109439493, }, { "category": "Pet", "configData": { "id": "Tech Samurai Cat", }, - "value": 99502480, + "value": 124599166, }, { "category": "Pet", @@ -39623,7 +44424,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Ninja Giraffe", "pt": 2, }, - "value": 1851612, + "value": 2173617, }, { "category": "Pet", @@ -39631,7 +44432,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Ninja Panda", "pt": 2, }, - "value": 4279284, + "value": 4956635, }, { "category": "Pet", @@ -39639,7 +44440,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Ninja Giraffe", "pt": 1, }, - "value": 5593996, + "value": 6622066, }, { "category": "Pet", @@ -39647,7 +44448,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Ninja Panda", "pt": 1, }, - "value": 16184549, + "value": 18641211, }, { "category": "Pet", @@ -39656,7 +44457,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8767, + "value": 10737, }, { "category": "Pet", @@ -39665,7 +44466,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 21175, + "value": 29457, }, { "category": "Pet", @@ -39674,7 +44475,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 11983, + "value": 18245, }, { "category": "Pet", @@ -39683,14 +44484,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3154, + "value": 4227, }, { "category": "Pet", "configData": { "id": "Tech Ninja Red Panda", }, - "value": 141828729, + "value": 164421960, }, { "category": "Pet", @@ -39698,7 +44499,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Samurai Cat", "pt": 2, }, - "value": 5366936, + "value": 6045550, }, { "category": "Pet", @@ -39706,7 +44507,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Samurai Cat", "pt": 1, }, - "value": 19130182, + "value": 21692218, }, { "category": "Pet", @@ -39714,14 +44515,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Ninja Red Panda", "pt": 2, }, - "value": 9987136, + "value": 10321658, }, { "category": "Pet", "configData": { "id": "Tech Ninja Cow", }, - "value": 53429087, + "value": 59387792, }, { "category": "Pet", @@ -39729,14 +44530,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Samurai Dragon", "pt": 2, }, - "value": 2621062, + "value": 2899202, }, { "category": "Pet", "configData": { "id": "Tech Samurai Dragon", }, - "value": 31452145, + "value": 38287904, }, { "category": "Pet", @@ -39744,7 +44545,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Samurai Dragon", "pt": 1, }, - "value": 7805801, + "value": 8849242, + }, + { + "category": "Misc", + "configData": { + "id": "Enchant Essence", + }, + "value": 101155295800, }, { "category": "Pet", @@ -39753,14 +44561,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 10196, + "value": 12735, }, { "category": "Pet", "configData": { "id": "Stacked Dominus", }, - "value": 119702812247, + "value": 117743734435, }, { "category": "Pet", @@ -39768,7 +44576,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Bear", "sh": true, }, - "value": 159166, + "value": 221914, }, { "category": "Pet", @@ -39776,7 +44584,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dominus Hippomelon", "pt": 1, }, - "value": 14049104868, + "value": 13938680880, }, { "category": "Pet", @@ -39785,14 +44593,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 36523297, + "value": 35538077, }, { "category": "Pet", "configData": { "id": "Dominus Hippomelon", }, - "value": 48139029475, + "value": 47485722789, }, { "category": "Pet", @@ -39800,7 +44608,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dominus Mushrooms", "pt": 1, }, - "value": 31040182, + "value": 30717267, }, { "category": "Pet", @@ -39808,14 +44616,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stacked Dominus", "pt": 1, }, - "value": 33716594506, + "value": 33402750431, }, { "category": "Pet", "configData": { "id": "Dominus Mushrooms", }, - "value": 110864180, + "value": 109328687, }, { "category": "Pet", @@ -39824,7 +44632,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12114, + "value": 15191, }, { "category": "Pet", @@ -39832,7 +44640,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Axolotl", "sh": true, }, - "value": 37021, + "value": 48104, }, { "category": "Pet", @@ -39841,7 +44649,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 302691647, + "value": 298508867, }, { "category": "Pet", @@ -39850,7 +44658,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 60482389, + "value": 59772296, }, { "category": "Pet", @@ -39859,7 +44667,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 161435938, + "value": 156835320, }, { "category": "Pet", @@ -39867,7 +44675,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dominus Infernus", "sh": true, }, - "value": 992722429, + "value": 973723486, }, { "category": "Pet", @@ -39875,7 +44683,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dominus Infernus", "pt": 1, }, - "value": 67716082374, + "value": 67043093594, }, { "category": "Pet", @@ -39883,7 +44691,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stacked Dominus", "sh": true, }, - "value": 479459282, + "value": 471000471, }, { "category": "Pet", @@ -39892,7 +44700,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 146827689, + "value": 145032507, }, { "category": "Pet", @@ -39900,7 +44708,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dominus Hippomelon", "pt": 2, }, - "value": 8129649360, + "value": 7857814038, }, { "category": "Pet", @@ -39908,7 +44716,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stacked Dominus", "pt": 2, }, - "value": 17691994499, + "value": 17165256535, }, { "category": "Pet", @@ -39916,14 +44724,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dominus Infernus", "pt": 2, }, - "value": 34709514664, + "value": 33762510243, }, { "category": "Pet", "configData": { "id": "Dominus Infernus", }, - "value": 242137999951, + "value": 238002658285, }, { "category": "Pet", @@ -39931,7 +44739,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dominus Hippomelon", "sh": true, }, - "value": 197722415, + "value": 194503429, }, { "category": "Pet", @@ -39939,7 +44747,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Steampunk Crocodile", "sh": true, }, - "value": 151262, + "value": 208520, }, { "category": "Pet", @@ -39948,7 +44756,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 28805, + "value": 35423, }, { "category": "Pet", @@ -39957,7 +44765,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 22644, + "value": 24292, }, { "category": "Pet", @@ -39965,7 +44773,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Raccoon", "sh": true, }, - "value": 75267, + "value": 89466, }, { "category": "Pet", @@ -39973,7 +44781,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Runic Wolf", "sh": true, }, - "value": 158942, + "value": 227954, }, { "category": "Pet", @@ -39982,7 +44790,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 9754, + "value": 11879, + }, + { + "category": "XPPotion", + "configData": { + "id": "Titanic", + }, + "value": 5853755, }, { "category": "Pet", @@ -39990,7 +44805,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Circuit Slime", "sh": true, }, - "value": 54897, + "value": 68517, }, { "category": "Pet", @@ -39999,7 +44814,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 2447, + "value": 3742, + }, + { + "category": "XPPotion", + "configData": { + "id": "Mastery", + }, + "value": 65653117, }, { "category": "Pet", @@ -40007,7 +44829,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Sketch Corgi", "sh": true, }, - "value": 424, + "value": 429, }, { "category": "Pet", @@ -40016,7 +44838,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 2424, + "value": 3456, }, { "category": "Pet", @@ -40025,7 +44847,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 10954, + "value": 14019, }, { "category": "Pet", @@ -40033,7 +44855,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Steampunk Octopus", "sh": true, }, - "value": 39327, + "value": 54695, }, { "category": "Pet", @@ -40042,7 +44864,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3770, + "value": 5398, }, { "category": "Pet", @@ -40051,7 +44873,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 209, + "value": 202, }, { "category": "Pet", @@ -40060,7 +44882,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 32696, + "value": 35393, }, { "category": "Pet", @@ -40069,14 +44891,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 58, + "value": 57, }, { "category": "Pet", "configData": { "id": "Titanic Sketch Cat", }, - "value": 349, + "value": 351, }, { "category": "Pet", @@ -40085,7 +44907,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 21009, + "value": 28307, }, { "category": "Pet", @@ -40094,7 +44916,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 11262, + "value": 17293, }, { "category": "Pet", @@ -40102,7 +44924,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Fox", "sh": true, }, - "value": 233783, + "value": 310424, }, { "category": "Pet", @@ -40111,7 +44933,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3775, + "value": 5008, }, { "category": "Pet", @@ -40120,7 +44942,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3020, + "value": 4769, }, { "category": "Pet", @@ -40129,7 +44951,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 10404, + "value": 13149, + }, + { + "category": "XPPotion", + "configData": { + "id": "Ultimate", + }, + "value": 25862753, }, { "category": "Pet", @@ -40138,7 +44967,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 4091, + "value": 4754, }, { "category": "Pet", @@ -40147,7 +44976,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 15491, + "value": 17570, }, { "category": "Pet", @@ -40156,14 +44985,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 16645, + "value": 19343, }, { "category": "Pet", "configData": { "id": "Cyberpunk Husky", }, - "value": 280508765, + "value": 296859857, }, { "category": "Pet", @@ -40171,7 +45000,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Husky", "pt": 2, }, - "value": 27188259, + "value": 26618010, }, { "category": "Pet", @@ -40179,7 +45008,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Ninja Red Panda", "pt": 1, }, - "value": 27717381, + "value": 29829755, }, { "category": "Pet", @@ -40187,14 +45016,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Ninja Cow", "pt": 1, }, - "value": 11697925, + "value": 12515055, }, { "category": "Pet", "configData": { "id": "Cyberpunk Lemur", }, - "value": 152371745, + "value": 155511005, }, { "category": "Pet", @@ -40202,7 +45031,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Ninja Cow", "pt": 2, }, - "value": 5268461, + "value": 5305198, }, { "category": "Pet", @@ -40210,7 +45039,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Domortuus", "pt": 1, }, - "value": 33501903, + "value": 34019711, }, { "category": "Pet", @@ -40218,7 +45047,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Lemur", "pt": 2, }, - "value": 19068584, + "value": 18924711, }, { "category": "Pet", @@ -40226,7 +45055,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Lemur", "pt": 1, }, - "value": 43096226, + "value": 43765417, }, { "category": "Pet", @@ -40234,7 +45063,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Wizard Unicorn", "sh": true, }, - "value": 49449, + "value": 61658, }, { "category": "Pet", @@ -40243,7 +45072,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 43405, + "value": 43156, }, { "category": "Pet", @@ -40251,14 +45080,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Husky", "sh": true, }, - "value": 755804, + "value": 789971, }, { "category": "Pet", "configData": { "id": "Domortuus", }, - "value": 125438768, + "value": 129859968, }, { "category": "Pet", @@ -40266,7 +45095,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Domortuus", "pt": 2, }, - "value": 13985398, + "value": 13684690, }, { "category": "Pet", @@ -40275,7 +45104,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 35699, + "value": 46320, }, { "category": "Pet", @@ -40283,7 +45112,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Husky", "pt": 1, }, - "value": 69733443, + "value": 71199078, }, { "category": "Pet", @@ -40292,7 +45121,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 7683, + "value": 9936, }, { "category": "Pet", @@ -40301,7 +45130,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 80289886, + "value": 78036791, }, { "category": "Pet", @@ -40310,7 +45139,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 43483, + "value": 49886, + }, + { + "category": "Misc", + "configData": { + "id": "Treasure Hideout Key", + }, + "value": 54757211, }, { "category": "Pet", @@ -40319,7 +45155,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 6865, + "value": 8406, }, { "category": "Pet", @@ -40327,7 +45163,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mining Mole", "sh": true, }, - "value": 54796, + "value": 67673, }, { "category": "Pet", @@ -40336,7 +45172,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 12012, + "value": 14431, + }, + { + "category": "XPPotion", + "configData": { + "id": "Huge", + }, + "value": 3698828, }, { "category": "Pet", @@ -40344,7 +45187,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Cat", "sh": true, }, - "value": 148973, + "value": 210929, }, { "category": "Pet", @@ -40353,7 +45196,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 25813, + "value": 32358, }, { "category": "Pet", @@ -40361,7 +45204,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blimp Dragon", "sh": true, }, - "value": 84678, + "value": 97625, }, { "category": "Pet", @@ -40370,7 +45213,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 7829, + "value": 9579, }, { "category": "Pet", @@ -40379,7 +45222,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8402, + "value": 11950, }, { "category": "Pet", @@ -40388,7 +45231,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 43483, + "value": 49645, }, { "category": "Pet", @@ -40397,7 +45240,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 27954, + "value": 35011, }, { "category": "Pet", @@ -40406,7 +45249,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 24328, + "value": 30145, }, { "category": "Pet", @@ -40414,7 +45257,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Spider", "sh": true, }, - "value": 177823, + "value": 240904, }, { "category": "Pet", @@ -40422,7 +45265,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Gecko", "sh": true, }, - "value": 142191, + "value": 199523, }, { "category": "Pet", @@ -40430,7 +45273,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Dragon", "sh": true, }, - "value": 40963, + "value": 52810, }, { "category": "Pet", @@ -40438,7 +45281,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Relic Goblin", "sh": true, }, - "value": 37131, + "value": 49940, }, { "category": "Pet", @@ -40446,7 +45289,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Samurai Cat", "sh": true, }, - "value": 203395, + "value": 259289, }, { "category": "Pet", @@ -40455,7 +45298,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3811, + "value": 4784, }, { "category": "Pet", @@ -40464,7 +45307,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 162, + "value": 158, }, { "category": "Pet", @@ -40473,7 +45316,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 25842, + "value": 31650, }, { "category": "Pet", @@ -40481,7 +45324,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Meerkat", "sh": true, }, - "value": 35169, + "value": 45592, }, { "category": "Pet", @@ -40489,7 +45332,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Steampunk Wolf", "sh": true, }, - "value": 49697, + "value": 65866, }, { "category": "Pet", @@ -40498,7 +45341,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 31054, + "value": 36121, }, { "category": "Pet", @@ -40507,7 +45350,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 38854, + "value": 45387, }, { "category": "Pet", @@ -40515,7 +45358,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Runic Agony", "sh": true, }, - "value": 39114, + "value": 52590, }, { "category": "Pet", @@ -40524,7 +45367,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 14897, + "value": 17014, }, { "category": "Pet", @@ -40533,7 +45376,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 16382, + "value": 19978, }, { "category": "Pet", @@ -40542,7 +45385,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 27269, + "value": 42424, }, { "category": "Pet", @@ -40550,7 +45393,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Bunny", "sh": true, }, - "value": 142227, + "value": 194947, }, { "category": "Pet", @@ -40559,7 +45402,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5769, + "value": 6718, }, { "category": "Pet", @@ -40567,7 +45410,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Ghost", "sh": true, }, - "value": 48963, + "value": 61542, }, { "category": "Pet", @@ -40575,7 +45418,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Ninja Red Panda", "sh": true, }, - "value": 330667, + "value": 383969, }, { "category": "Pet", @@ -40584,7 +45427,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 66016, + "value": 70572, }, { "category": "Pet", @@ -40592,7 +45435,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Ninja Panda", "sh": true, }, - "value": 173926, + "value": 229068, }, { "category": "Pet", @@ -40601,7 +45444,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 15725, + "value": 18191, }, { "category": "Pet", @@ -40610,7 +45453,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 10914, + "value": 14485, }, { "category": "Pet", @@ -40618,7 +45461,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Ninja Giraffe", "sh": true, }, - "value": 49740, + "value": 61991, }, { "category": "Pet", @@ -40627,7 +45470,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3792, + "value": 4745, }, { "category": "Pet", @@ -40635,7 +45478,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dominus Mushrooms", "pt": 2, }, - "value": 18252291, + "value": 17836982, }, { "category": "Pet", @@ -40644,7 +45487,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8451, + "value": 10059, }, { "category": "Pet", @@ -40653,7 +45496,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8176, + "value": 10175, }, { "category": "Pet", @@ -40662,7 +45505,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8607, + "value": 9697, }, { "category": "Pet", @@ -40670,7 +45513,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Dog", "sh": true, }, - "value": 40423, + "value": 52665, }, { "category": "Pet", @@ -40679,7 +45522,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 85267, + "value": 84807, }, { "category": "Pet", @@ -40688,7 +45531,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 10966, + "value": 14184, }, { "category": "Pet", @@ -40697,7 +45540,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 30463, + "value": 31103, }, { "category": "Pet", @@ -40706,7 +45549,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12630, + "value": 13608, }, { "category": "Pet", @@ -40715,7 +45558,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 32585, + "value": 38927, }, { "category": "Pet", @@ -40724,7 +45567,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5812, + "value": 7671, }, { "category": "Pet", @@ -40732,7 +45575,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Domortuus", "sh": true, }, - "value": 332232, + "value": 340277, }, { "category": "Pet", @@ -40741,7 +45584,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 15356, + "value": 23633, }, { "category": "Pet", @@ -40750,7 +45593,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12019, + "value": 13776, }, { "category": "Pet", @@ -40759,7 +45602,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 4600, + "value": 5709, }, { "category": "Pet", @@ -40768,7 +45611,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 21364, + "value": 24170, }, { "category": "Pet", @@ -40777,7 +45620,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 4139, + "value": 6483, }, { "category": "Pet", @@ -40786,7 +45629,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 4325, + "value": 5545, + }, + { + "category": "Misc", + "configData": { + "id": "Treasure Hideout Key Upper Half", + }, + "value": 64363892, }, { "category": "Pet", @@ -40795,7 +45645,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 11626, + "value": 21431, + }, + { + "category": "Misc", + "configData": { + "id": "Treasure Hideout Key Lower Half", + }, + "value": 51064337, }, { "category": "Pet", @@ -40804,7 +45661,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3523, + "value": 4415, }, { "category": "Pet", @@ -40813,7 +45670,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 7242, + "value": 9223, }, { "category": "Pet", @@ -40822,7 +45679,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 197358, + "value": 200030, }, { "category": "Pet", @@ -40831,7 +45688,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5890, + "value": 6788, }, { "category": "Pet", @@ -40840,14 +45697,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 4625, + "value": 6713, }, { "category": "Pet", "configData": { "id": "Dominus Alienus", }, - "value": 2224284, + "value": 2190535, }, { "category": "Pet", @@ -40856,7 +45713,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 14205, + "value": 16545, }, { "category": "Pet", @@ -40864,7 +45721,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Ninja Cow", "sh": true, }, - "value": 133999, + "value": 143467, }, { "category": "Pet", @@ -40872,7 +45729,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dominus Alienus", "pt": 1, }, - "value": 592040, + "value": 585306, }, { "category": "Pet", @@ -40881,7 +45738,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 7999, + "value": 9084, }, { "category": "Pet", @@ -40890,7 +45747,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 25582, + "value": 33089, }, { "category": "Pet", @@ -40898,7 +45755,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tech Samurai Dragon", "sh": true, }, - "value": 65965, + "value": 77052, }, { "category": "Pet", @@ -40907,7 +45764,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 18069, + "value": 21414, }, { "category": "Pet", @@ -40915,7 +45772,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cyberpunk Lemur", "sh": true, }, - "value": 428299, + "value": 431572, }, { "category": "Pet", @@ -40924,7 +45781,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 17005, + "value": 17142, }, { "category": "Pet", @@ -40933,7 +45790,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 10904, + "value": 13545, }, { "category": "Pet", @@ -40942,7 +45799,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 30460, + "value": 31583, }, { "category": "Pet", @@ -40950,7 +45807,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dominus Alienus", "pt": 2, }, - "value": 355364, + "value": 347859, }, { "category": "Pet", @@ -40968,7 +45825,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 60780, + "value": 60435, }, { "category": "Pet", @@ -40977,7 +45834,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 12834, + "value": 15718, }, { "category": "Pet", @@ -40986,7 +45843,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 125512, + "value": 126768, }, { "category": "Pet", @@ -40995,7 +45852,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 94313, + "value": 95389, }, { "category": "Pet", @@ -41012,7 +45869,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 10971, + "value": 13509, }, { "category": "Pet", @@ -41021,14 +45878,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3720, + "value": 4634, }, { "category": "Pet", "configData": { "id": "Huge Electric Cat", }, - "value": 15303, + "value": 15544, }, { "category": "Pet", @@ -41037,14 +45894,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 10310, + "value": 13154, }, { "category": "Pet", "configData": { "id": "Huge Party Dragon", }, - "value": 36020, + "value": 54544, }, { "category": "Pet", @@ -41052,7 +45909,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Party Dragon", "pt": 1, }, - "value": 7335, + "value": 11046, }, { "category": "Pet", @@ -41060,7 +45917,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Party Dragon", "pt": 2, }, - "value": 1412, + "value": 2172, }, { "category": "Pet", @@ -41068,14 +45925,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Party Dragon", "sh": true, }, - "value": 271, + "value": 427, }, { "category": "Pet", "configData": { "id": "Titanic Party Cat", }, - "value": 195, + "value": 299, }, { "category": "Pet", @@ -41084,7 +45941,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 72, + "value": 102, }, { "category": "Pet", @@ -41093,7 +45950,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 82766, + "value": 81368, }, { "category": "Pet", @@ -41102,7 +45959,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 88290, + "value": 87088, }, { "category": "Pet", @@ -41110,7 +45967,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dominus Mushrooms", "sh": true, }, - "value": 296845, + "value": 290723, }, { "category": "Pet", @@ -41118,7 +45975,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Electric Cat", "pt": 1, }, - "value": 2867, + "value": 2968, }, { "category": "Pet", @@ -41126,7 +45983,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Electric Cat", "pt": 2, }, - "value": 965, + "value": 999, }, { "category": "Pet", @@ -41135,7 +45992,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 2230, + "value": 2235, }, { "category": "Pet", @@ -41144,7 +46001,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2078, + "value": 2080, }, { "category": "Pet", @@ -41152,14 +46009,45 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dominus Alienus", "sh": true, }, - "value": 1640, + "value": 1557, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Nightmare", + "sh": true, + }, + "value": 1069, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Hotdog", + "sh": true, + }, + "value": 3062, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Helicopter", + "sh": true, + }, + "value": 330, }, { "category": "Pet", "configData": { "id": "Yellow Lucky Block", }, - "value": 26, + "value": 112, + }, + { + "category": "Lootbox", + "configData": { + "id": "Global Event Gift", + }, + "value": 15885900, }, { "category": "Pet", @@ -41167,7 +46055,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Banana", "pt": 2, }, - "value": 5, + "value": 15, }, { "category": "Pet", @@ -41175,7 +46063,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Lunar Moth", "pt": 1, }, - "value": 9535, + "value": 9924, }, { "category": "Pet", @@ -41190,14 +46078,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Huge Lunar Moth", }, - "value": 48389, + "value": 50299, }, { "category": "Pet", "configData": { "id": "Titanic Pink Balloon", }, - "value": 68, + "value": 71, }, { "category": "Pet", @@ -41206,7 +46094,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 20, + "value": 50, }, { "category": "Pet", @@ -41230,7 +46118,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Hot Dog", "pt": 2, }, - "value": 209, + "value": 399, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Pixel Dragon", + }, + "value": 1213, + }, + { + "category": "Lootbox", + "configData": { + "id": "Clan Gift", + }, + "value": 565706, + }, + { + "category": "Booth", + "configData": { + "id": "Pixel", + }, + "value": 4749, }, { "category": "Pet", @@ -41244,7 +46153,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Huge Tech Samurai Cat", }, - "value": 1157, + "value": 3245, }, { "category": "Pet", @@ -41252,7 +46161,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Purple Dragon", "pt": 2, }, - "value": 188, + "value": 332, }, { "category": "Pet", @@ -41260,7 +46169,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pixel Wolf", "sh": true, }, - "value": 18, + "value": 23, }, { "category": "Pet", @@ -41277,7 +46186,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pixel Wolf", "pt": 2, }, - "value": 25, + "value": 31, }, { "category": "Pet", @@ -41286,7 +46195,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 66, + "value": 99, }, { "category": "Pet", @@ -41295,7 +46204,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12, + "value": 28, }, { "category": "Pet", @@ -41304,42 +46213,71 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 54, + "value": 102, + }, + { + "category": "Enchant", + "configData": { + "id": "Mini Chest Fortune", + "tn": 1, + }, + "value": 255505, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 25", + }, + "value": 1170920, + }, + { + "category": "Misc", + "configData": { + "id": "Basic Glitch Core", + }, + "value": 287299829, + }, + { + "category": "Misc", + "configData": { + "id": "Rare Glitch Core", + }, + "value": 132680982, }, { "category": "Pet", "configData": { "id": "Black Hole Axolotl", }, - "value": 543701, + "value": 457395, }, { "category": "Pet", "configData": { "id": "Black Hole Kitsune", }, - "value": 140882, + "value": 116167, }, { "category": "Pet", "configData": { "id": "Black Hole Immortuus", }, - "value": 380565, + "value": 320486, }, { "category": "Pet", "configData": { "id": "Dominus Serpents", }, - "value": 185764103, + "value": 260108490, }, { "category": "Pet", "configData": { "id": "Wicked Empyrean Dominus", }, - "value": 85287344, + "value": 116707451, }, { "category": "Pet", @@ -41347,7 +46285,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dominus Serpents", "pt": 1, }, - "value": 32244864, + "value": 39765333, }, { "category": "Pet", @@ -41355,7 +46293,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Wicked Empyrean Dominus", "pt": 1, }, - "value": 17271930, + "value": 21113769, }, { "category": "Pet", @@ -41363,7 +46301,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Wicked Empyrean Dominus", "pt": 2, }, - "value": 3381170, + "value": 4390530, }, { "category": "Pet", @@ -41371,21 +46309,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dominus Serpents", "pt": 2, }, - "value": 5585231, + "value": 7378101, }, { "category": "Pet", "configData": { "id": "Holographic Cat", }, - "value": 101609708, + "value": 135002637, }, { "category": "Pet", "configData": { "id": "Holographic Corgi", }, - "value": 27823369, + "value": 36630861, }, { "category": "Pet", @@ -41393,7 +46331,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Holographic Cat", "pt": 1, }, - "value": 16029130, + "value": 19679207, }, { "category": "Pet", @@ -41401,14 +46339,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Kraken", "pt": 2, }, - "value": 3443205, + "value": 4094832, }, { "category": "Pet", "configData": { "id": "Holographic Dragon", }, - "value": 80643107, + "value": 108344932, }, { "category": "Pet", @@ -41416,7 +46354,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Holographic Dragon", "pt": 1, }, - "value": 16988922, + "value": 20195483, }, { "category": "Pet", @@ -41424,7 +46362,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Kraken", "pt": 1, }, - "value": 14295849, + "value": 16790136, }, { "category": "Pet", @@ -41432,14 +46370,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Holographic Monkey", "pt": 1, }, - "value": 22348773, + "value": 26279394, }, { "category": "Pet", "configData": { "id": "Holographic Axolotl", }, - "value": 31152115, + "value": 38301588, }, { "category": "Pet", @@ -41447,7 +46385,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Holographic Axolotl", "pt": 2, }, - "value": 2494714, + "value": 2824904, }, { "category": "Pet", @@ -41455,14 +46393,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Holographic Monkey", "pt": 2, }, - "value": 5374547, + "value": 6183711, }, { "category": "Pet", "configData": { "id": "Holographic Monkey", }, - "value": 101781486, + "value": 126877527, }, { "category": "Pet", @@ -41470,14 +46408,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Shark", "pt": 1, }, - "value": 5495167, + "value": 6966224, }, { "category": "Pet", "configData": { "id": "Shadow Kraken", }, - "value": 66793830, + "value": 93424057, }, { "category": "Pet", @@ -41485,14 +46423,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Dolphin", "pt": 1, }, - "value": 15759312, + "value": 19273729, }, { "category": "Pet", "configData": { "id": "Shadow Dolphin", }, - "value": 78731896, + "value": 104966207, }, { "category": "Pet", @@ -41500,14 +46438,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Dolphin", "pt": 2, }, - "value": 3556869, + "value": 4353598, }, { "category": "Pet", "configData": { "id": "Shadow Shark", }, - "value": 21721173, + "value": 29415934, }, { "category": "Pet", @@ -41515,7 +46453,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Holographic Axolotl", "pt": 1, }, - "value": 9276352, + "value": 11076141, }, { "category": "Pet", @@ -41523,14 +46461,22 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Shark", "pt": 2, }, - "value": 1314648, + "value": 1631574, }, { "category": "Pet", "configData": { "id": "Holographic Bear", }, - "value": 65089795, + "value": 86533076, + }, + { + "category": "Enchant", + "configData": { + "id": "Shiny Supercharge", + "tn": 1, + }, + "value": 379605, }, { "category": "Pet", @@ -41538,7 +46484,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Holographic Bear", "pt": 1, }, - "value": 10044471, + "value": 12352099, + }, + { + "category": "Ultimate", + "configData": { + "id": "Nightmare", + }, + "value": 47760, + }, + { + "category": "Misc", + "configData": { + "id": "Epic Glitch Core", + }, + "value": 44586507, }, { "category": "Pet", @@ -41546,7 +46506,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Holographic Dragon", "pt": 2, }, - "value": 3552695, + "value": 4285442, }, { "category": "Pet", @@ -41554,7 +46514,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Holographic Monkey", "sh": true, }, - "value": 184713, + "value": 244919, }, { "category": "Pet", @@ -41562,7 +46522,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Holographic Cat", "pt": 2, }, - "value": 3664844, + "value": 4665108, }, { "category": "Pet", @@ -41570,7 +46530,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Holographic Cat", "sh": true, }, - "value": 199840, + "value": 283137, }, { "category": "Pet", @@ -41578,7 +46538,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Holographic Corgi", "pt": 1, }, - "value": 4837477, + "value": 6232256, + }, + { + "category": "Misc", + "configData": { + "id": "Legendary Glitch Core", + }, + "value": 6753168, }, { "category": "Pet", @@ -41586,7 +46553,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Holographic Corgi", "pt": 2, }, - "value": 1223442, + "value": 1576242, }, { "category": "Pet", @@ -41594,7 +46561,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Holographic Bear", "pt": 2, }, - "value": 2322114, + "value": 2895509, }, { "category": "Pet", @@ -41602,7 +46569,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Dragon", "pt": 1, }, - "value": 15264627, + "value": 18145751, }, { "category": "Pet", @@ -41610,7 +46577,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Bull", "pt": 2, }, - "value": 3658449, + "value": 4536042, }, { "category": "Pet", @@ -41618,21 +46585,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Bull", "pt": 1, }, - "value": 15123019, + "value": 18218331, }, { "category": "Pet", "configData": { "id": "Shadow Bull", }, - "value": 80343122, + "value": 107062616, }, { "category": "Pet", "configData": { "id": "Haxigator", }, - "value": 66893707, + "value": 93630787, }, { "category": "Pet", @@ -41640,21 +46607,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Haxigator", "pt": 2, }, - "value": 3227272, + "value": 4078024, }, { "category": "Pet", "configData": { "id": "Hacked Raccoon", }, - "value": 64508704, + "value": 87977118, }, { "category": "Pet", "configData": { "id": "Shadow Panther", }, - "value": 25537475, + "value": 32863344, }, { "category": "Pet", @@ -41662,7 +46629,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Dragon", "pt": 2, }, - "value": 3931715, + "value": 4721485, }, { "category": "Pet", @@ -41670,7 +46637,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hacked Raccoon", "pt": 1, }, - "value": 15880165, + "value": 18992740, }, { "category": "Pet", @@ -41678,7 +46645,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Haxigator", "pt": 1, }, - "value": 13933548, + "value": 16676435, }, { "category": "Pet", @@ -41686,28 +46653,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Panther", "pt": 2, }, - "value": 1600343, + "value": 1965249, }, { "category": "Pet", "configData": { "id": "Shadow Dragon", }, - "value": 74192507, + "value": 98562100, }, { "category": "Pet", "configData": { "id": "Shadow Wolf", }, - "value": 17524487, + "value": 25049456, }, { "category": "Pet", "configData": { "id": "Haxolotl", }, - "value": 61305053, + "value": 83920259, }, { "category": "Pet", @@ -41715,14 +46682,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Wolf", "pt": 1, }, - "value": 5031481, + "value": 6478663, }, { "category": "Pet", "configData": { "id": "Shadow Dominus", }, - "value": 63502317, + "value": 91345952, }, { "category": "Pet", @@ -41730,7 +46697,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Dominus", "pt": 2, }, - "value": 2739421, + "value": 3535316, }, { "category": "Pet", @@ -41738,7 +46705,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Dominus", "pt": 1, }, - "value": 12356697, + "value": 15532827, }, { "category": "Pet", @@ -41746,7 +46713,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Wolf", "pt": 2, }, - "value": 1214052, + "value": 1586830, }, { "category": "Pet", @@ -41754,7 +46721,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Black Hole Axolotl", "pt": 2, }, - "value": 15300, + "value": 12118, }, { "category": "Pet", @@ -41762,7 +46729,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Black Hole Immortuus", "pt": 2, }, - "value": 10646, + "value": 8649, + }, + { + "category": "Misc", + "configData": { + "id": "Mythical Glitch Core", + }, + "value": 1849771, }, { "category": "Pet", @@ -41770,7 +46744,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "404 Demon", "pt": 2, }, - "value": 2106050, + "value": 2694516, }, { "category": "Pet", @@ -41778,7 +46752,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "404 Demon", "pt": 1, }, - "value": 11147719, + "value": 12954107, }, { "category": "Pet", @@ -41786,7 +46760,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Haxolotl", "pt": 1, }, - "value": 12818523, + "value": 16133527, }, { "category": "Pet", @@ -41794,7 +46768,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Glitched Cat", "pt": 1, }, - "value": 12896500, + "value": 16247475, }, { "category": "Pet", @@ -41802,42 +46776,42 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Glitched Immortuus", "pt": 1, }, - "value": 9868552, + "value": 11985052, }, { "category": "Pet", "configData": { "id": "Glitched Dragon", }, - "value": 61533290, + "value": 82975450, }, { "category": "Pet", "configData": { "id": "Glitched Cat", }, - "value": 70401632, + "value": 98432722, }, { "category": "Pet", "configData": { "id": "404 Demon", }, - "value": 27831573, + "value": 35853116, }, { "category": "Pet", "configData": { "id": "Fragmented Dominus", }, - "value": 71458827, + "value": 91378450, }, { "category": "Pet", "configData": { "id": "Glitched Dominus", }, - "value": 18947338, + "value": 25033285, }, { "category": "Pet", @@ -41845,7 +46819,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Glitched Dominus", "pt": 2, }, - "value": 1345350, + "value": 1632491, }, { "category": "Pet", @@ -41853,7 +46827,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Glitched Unicorn", "pt": 1, }, - "value": 9853607, + "value": 11916726, }, { "category": "Pet", @@ -41861,7 +46835,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fragmented Dominus", "pt": 2, }, - "value": 3794921, + "value": 4540730, }, { "category": "Pet", @@ -41869,14 +46843,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hacked Cat", "pt": 2, }, - "value": 4517863, + "value": 5720882, }, { "category": "Pet", "configData": { "id": "Fragmented Pterodactyl", }, - "value": 24484647, + "value": 30455922, }, { "category": "Pet", @@ -41884,7 +46858,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Haxolotl", "pt": 2, }, - "value": 2991014, + "value": 3887781, }, { "category": "Pet", @@ -41892,7 +46866,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Glitched Dragon", "pt": 1, }, - "value": 10682966, + "value": 12998263, }, { "category": "Pet", @@ -41900,7 +46874,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fragmented Pterodactyl", "pt": 2, }, - "value": 1777276, + "value": 2063472, }, { "category": "Pet", @@ -41908,7 +46882,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hacked Cat", "pt": 1, }, - "value": 25515574, + "value": 29789958, }, { "category": "Pet", @@ -41916,7 +46890,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fragmented Dominus", "pt": 1, }, - "value": 13682166, + "value": 16082118, }, { "category": "Pet", @@ -41924,14 +46898,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Glitched Immortuus", "pt": 2, }, - "value": 2538756, + "value": 3128599, }, { "category": "Pet", "configData": { "id": "Glitched Immortuus", }, - "value": 50984223, + "value": 68443672, }, { "category": "Pet", @@ -41939,14 +46913,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Glitched Dragon", "pt": 2, }, - "value": 2896072, + "value": 3593440, }, { "category": "Pet", "configData": { "id": "Glitched Unicorn", }, - "value": 57810851, + "value": 81103811, }, { "category": "Pet", @@ -41954,14 +46928,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Glitched Dominus", "pt": 1, }, - "value": 4132418, + "value": 5131211, }, { "category": "Pet", "configData": { "id": "Hacked Cat", }, - "value": 86801667, + "value": 115130389, }, { "category": "Pet", @@ -41969,7 +46943,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dominus Serpents", "sh": true, }, - "value": 347388, + "value": 563361, }, { "category": "Pet", @@ -41978,7 +46952,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12696, + "value": 15235, }, { "category": "Pet", @@ -41986,7 +46960,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Black Hole Axolotl", "sh": true, }, - "value": 11049, + "value": 8368, }, { "category": "Pet", @@ -41994,7 +46968,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Wicked Empyrean Dominus", "sh": true, }, - "value": 150090, + "value": 231944, }, { "category": "Pet", @@ -42003,7 +46977,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 55673, + "value": 75199, }, { "category": "Pet", @@ -42011,14 +46985,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hacked Raccoon", "pt": 2, }, - "value": 2815853, + "value": 3498191, }, { "category": "Pet", "configData": { "id": "Huge Black Hole Axolotl", }, - "value": 13333, + "value": 13483, }, { "category": "Pet", @@ -42026,7 +47000,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Holographic Bear", "sh": true, }, - "value": 110723, + "value": 163814, }, { "category": "Pet", @@ -42034,7 +47008,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Black Hole Kitsune", "pt": 2, }, - "value": 3816, + "value": 3356, }, { "category": "Pet", @@ -42042,7 +47016,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Panther", "pt": 1, }, - "value": 5982359, + "value": 7295220, }, { "category": "Pet", @@ -42051,7 +47025,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 29713, + "value": 36684, }, { "category": "Pet", @@ -42059,14 +47033,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Black Hole Axolotl", "pt": 2, }, - "value": 375, + "value": 380, }, { "category": "Pet", "configData": { "id": "Huge Black Hole Kitsune", }, - "value": 7442, + "value": 7520, }, { "category": "Pet", @@ -42074,7 +47048,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Glitched Cat", "pt": 2, }, - "value": 2991445, + "value": 3734174, }, { "category": "Pet", @@ -42082,28 +47056,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fragmented Pterodactyl", "pt": 1, }, - "value": 5397518, + "value": 6426312, }, { "category": "Pet", "configData": { "id": "Titanic Black Hole Angelus", }, - "value": 542, + "value": 553, }, { "category": "Pet", "configData": { "id": "Quantum Bunny", }, - "value": 66860012, + "value": 84400496, }, { "category": "Pet", "configData": { "id": "Quantum Fox", }, - "value": 55284811, + "value": 76218729, }, { "category": "Pet", @@ -42111,14 +47085,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Black Hole Immortuus", "sh": true, }, - "value": 7575, + "value": 5763, }, { "category": "Pet", "configData": { "id": "Quantum Tiger", }, - "value": 24189979, + "value": 29053096, }, { "category": "Pet", @@ -42126,7 +47100,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Quantum Fox", "pt": 1, }, - "value": 9367954, + "value": 11037151, }, { "category": "Pet", @@ -42134,7 +47108,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Quantum Goat", "pt": 2, }, - "value": 1377973, + "value": 1642466, }, { "category": "Pet", @@ -42142,7 +47116,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Quantum Bunny", "pt": 1, }, - "value": 11266535, + "value": 13031045, }, { "category": "Pet", @@ -42150,14 +47124,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Quantum Fox", "pt": 2, }, - "value": 2837143, + "value": 3387007, }, { "category": "Pet", "configData": { "id": "Quantum Goat", }, - "value": 18736945, + "value": 24242147, }, { "category": "Pet", @@ -42165,7 +47139,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Glitched Unicorn", "pt": 2, }, - "value": 2562034, + "value": 3270645, }, { "category": "Pet", @@ -42174,7 +47148,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8527, + "value": 12271, }, { "category": "Pet", @@ -42182,7 +47156,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Dolphin", "sh": true, }, - "value": 143710, + "value": 210595, }, { "category": "Pet", @@ -42191,7 +47165,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8219, + "value": 10681, }, { "category": "Pet", @@ -42199,14 +47173,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Holographic Axolotl", "sh": true, }, - "value": 53483, + "value": 64502, }, { "category": "Pet", "configData": { "id": "Glitched Phoenix", }, - "value": 16481091, + "value": 22826940, }, { "category": "Pet", @@ -42214,7 +47188,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Bull", "sh": true, }, - "value": 148212, + "value": 214938, }, { "category": "Pet", @@ -42222,7 +47196,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Glitched Phoenix", "pt": 1, }, - "value": 3559163, + "value": 4518010, }, { "category": "Pet", @@ -42230,7 +47204,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Kraken", "sh": true, }, - "value": 120963, + "value": 183425, }, { "category": "Pet", @@ -42238,7 +47212,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Haxolotl", "sh": true, }, - "value": 107615, + "value": 164484, }, { "category": "Pet", @@ -42247,7 +47221,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 7736, + "value": 9414, }, { "category": "Pet", @@ -42256,14 +47230,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 32791, + "value": 45022, }, { "category": "Pet", "configData": { "id": "Glitched Dog", }, - "value": 21511893, + "value": 28807184, }, { "category": "Pet", @@ -42271,7 +47245,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Glitched Phoenix", "pt": 2, }, - "value": 1102607, + "value": 1421677, }, { "category": "Pet", @@ -42279,7 +47253,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Glitched Dog", "pt": 2, }, - "value": 1263253, + "value": 1571874, }, { "category": "Pet", @@ -42287,7 +47261,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Glitched Dog", "pt": 1, }, - "value": 4322380, + "value": 5735572, }, { "category": "Pet", @@ -42295,7 +47269,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Holographic Dragon", "sh": true, }, - "value": 147702, + "value": 210517, }, { "category": "Pet", @@ -42303,7 +47277,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Black Hole Kitsune", "sh": true, }, - "value": 2929, + "value": 2218, }, { "category": "Pet", @@ -42311,7 +47285,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Black Hole Kitsune", "pt": 2, }, - "value": 210, + "value": 212, }, { "category": "Pet", @@ -42320,7 +47294,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12116, + "value": 14789, }, { "category": "Pet", @@ -42328,7 +47302,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Black Hole Axolotl", "sh": true, }, - "value": 555, + "value": 561, }, { "category": "Pet", @@ -42337,7 +47311,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13586, + "value": 20502, + }, + { + "category": "Lootbox", + "configData": { + "id": "Glitched Gift", + }, + "value": 7686545, }, { "category": "Pet", @@ -42345,7 +47326,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Shark", "sh": true, }, - "value": 34501, + "value": 48710, }, { "category": "Pet", @@ -42354,7 +47335,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8439, + "value": 13926, }, { "category": "Pet", @@ -42363,7 +47344,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 27023, + "value": 36399, }, { "category": "Pet", @@ -42372,7 +47353,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 14655, + "value": 19425, }, { "category": "Pet", @@ -42380,7 +47361,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Dragon", "sh": true, }, - "value": 131447, + "value": 191265, }, { "category": "Pet", @@ -42389,7 +47370,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 11385, + "value": 13341, }, { "category": "Pet", @@ -42398,7 +47379,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 302, + "value": 291, }, { "category": "Pet", @@ -42407,7 +47388,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 45056, + "value": 51159, }, { "category": "Pet", @@ -42416,7 +47397,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 28376, + "value": 36466, }, { "category": "Pet", @@ -42424,7 +47405,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Holographic Corgi", "sh": true, }, - "value": 52973, + "value": 69098, }, { "category": "Pet", @@ -42432,7 +47413,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Panther", "sh": true, }, - "value": 44512, + "value": 57468, }, { "category": "Pet", @@ -42441,7 +47422,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 22612, + "value": 30027, }, { "category": "Pet", @@ -42449,7 +47430,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Wireframe Cat", "pt": 1, }, - "value": 51387966738, + "value": 50785635616, }, { "category": "Pet", @@ -42458,7 +47439,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 448053475, + "value": 438567998, }, { "category": "Pet", @@ -42466,7 +47447,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Wireframe Cat", "pt": 2, }, - "value": 28255676966, + "value": 27482156234, }, { "category": "Pet", @@ -42474,7 +47455,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Atomic Axolotl", "pt": 2, }, - "value": 33592963, + "value": 33743093, }, { "category": "Pet", @@ -42482,7 +47463,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Atomic Axolotl", "pt": 1, }, - "value": 92692826, + "value": 97220821, }, { "category": "Pet", @@ -42490,21 +47471,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Wireframe Dog", "pt": 2, }, - "value": 50649052378, + "value": 49553499640, }, { "category": "Pet", "configData": { "id": "Wireframe Dog", }, - "value": 332935943926, + "value": 324181074603, }, { "category": "Pet", "configData": { "id": "Atomic Monkey", }, - "value": 211759482, + "value": 217299107, }, { "category": "Pet", @@ -42512,14 +47493,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Wireframe Dog", "pt": 1, }, - "value": 102825430216, + "value": 101226963057, }, { "category": "Pet", "configData": { "id": "Wireframe Cat", }, - "value": 165828750053, + "value": 162619916516, }, { "category": "Pet", @@ -42527,7 +47508,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Atomic Monkey", "pt": 2, }, - "value": 20186812, + "value": 19967345, }, { "category": "Pet", @@ -42535,28 +47516,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Atomic Monkey", "pt": 1, }, - "value": 45201968, + "value": 46275138, }, { "category": "Pet", "configData": { "id": "Atomic Axolotl", }, - "value": 425316276, + "value": 463624232, }, { "category": "Pet", "configData": { "id": "Quantum Griffin", }, - "value": 106444290, + "value": 129460485, }, { "category": "Pet", "configData": { "id": "Quantum Dominus", }, - "value": 42807595, + "value": 48464337, }, { "category": "Pet", @@ -42564,7 +47545,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Quantum Bunny", "pt": 2, }, - "value": 3582034, + "value": 4078693, }, { "category": "Pet", @@ -42572,7 +47553,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Quantum Dominus", "pt": 1, }, - "value": 8533074, + "value": 9255298, }, { "category": "Pet", @@ -42580,7 +47561,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Quantum Dominus", "pt": 2, }, - "value": 3436986, + "value": 3546300, }, { "category": "Pet", @@ -42589,7 +47570,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 41616, + "value": 50751, }, { "category": "Pet", @@ -42597,7 +47578,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Quantum Griffin", "pt": 2, }, - "value": 6466913, + "value": 6982806, }, { "category": "Pet", @@ -42605,7 +47586,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Quantum Griffin", "pt": 1, }, - "value": 19786180, + "value": 21583335, }, { "category": "Pet", @@ -42614,7 +47595,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 10659, + "value": 14377, }, { "category": "Pet", @@ -42623,7 +47604,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3323, + "value": 4693, }, { "category": "Pet", @@ -42631,7 +47612,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Haxigator", "sh": true, }, - "value": 113853, + "value": 175953, }, { "category": "Pet", @@ -42640,7 +47621,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8995, + "value": 11792, }, { "category": "Pet", @@ -42649,7 +47630,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5108, + "value": 6902, }, { "category": "Pet", @@ -42658,7 +47639,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 221747820, + "value": 218212263, }, { "category": "Pet", @@ -42667,7 +47648,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 225495537, + "value": 220611945, }, { "category": "Pet", @@ -42676,7 +47657,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 31580, + "value": 40026, }, { "category": "Pet", @@ -42684,7 +47665,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Quantum Tiger", "pt": 2, }, - "value": 1889114, + "value": 2090492, }, { "category": "Pet", @@ -42692,7 +47673,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Quantum Goat", "pt": 1, }, - "value": 3605543, + "value": 4367030, }, { "category": "Pet", @@ -42700,7 +47681,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Dominus", "sh": true, }, - "value": 108171, + "value": 168398, }, { "category": "Pet", @@ -42708,7 +47689,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shadow Wolf", "sh": true, }, - "value": 27579, + "value": 43284, }, { "category": "Pet", @@ -42717,7 +47698,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 6405, + "value": 8277, + }, + { + "category": "Misc", + "configData": { + "id": "Glitched Drive", + }, + "value": 4294098, }, { "category": "Pet", @@ -42726,7 +47714,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 45864, + "value": 53227, }, { "category": "Pet", @@ -42735,7 +47723,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 9208, + "value": 12735, }, { "category": "Pet", @@ -42743,7 +47731,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Quantum Tiger", "pt": 1, }, - "value": 4549175, + "value": 5230601, }, { "category": "Pet", @@ -42752,7 +47740,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 18945, + "value": 23887, }, { "category": "Pet", @@ -42761,7 +47749,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 23002, + "value": 31581, }, { "category": "Pet", @@ -42770,7 +47758,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3192, + "value": 4450, }, { "category": "Pet", @@ -42779,7 +47767,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 86, + "value": 84, }, { "category": "Pet", @@ -42788,7 +47776,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 6506, + "value": 7712, }, { "category": "Pet", @@ -42797,7 +47785,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 11032, + "value": 14549, }, { "category": "Pet", @@ -42806,7 +47794,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5982, + "value": 9137, }, { "category": "Pet", @@ -42815,7 +47803,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 205, + "value": 199, }, { "category": "Pet", @@ -42832,7 +47820,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Wireframe Dog", "sh": true, }, - "value": 1319589991, + "value": 1278962139, }, { "category": "Pet", @@ -42841,7 +47829,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 4182, + "value": 5624, }, { "category": "Pet", @@ -42849,14 +47837,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Wireframe Cat", "sh": true, }, - "value": 673986678, + "value": 659055792, }, { "category": "Pet", "configData": { "id": "Void Alien", }, - "value": 122739847, + "value": 120399053, }, { "category": "Pet", @@ -42864,7 +47852,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Black Hole Kitsune", "sh": true, }, - "value": 307, + "value": 311, }, { "category": "Pet", @@ -42872,7 +47860,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Glitched Cat", "sh": true, }, - "value": 132699, + "value": 196304, }, { "category": "Pet", @@ -42888,7 +47876,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 10865, + "value": 13987, }, { "category": "Pet", @@ -42896,7 +47884,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hacked Cat", "sh": true, }, - "value": 169205, + "value": 239359, }, { "category": "Pet", @@ -42905,7 +47893,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 7197, + "value": 9016, }, { "category": "Pet", @@ -42913,7 +47901,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Glitched Unicorn", "sh": true, }, - "value": 103516, + "value": 156052, }, { "category": "Pet", @@ -42922,7 +47910,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 125394143, + "value": 122055985, }, { "category": "Pet", @@ -42930,7 +47918,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Glitched Dragon", "sh": true, }, - "value": 112738, + "value": 164793, }, { "category": "Pet", @@ -42938,7 +47926,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "404 Demon", "sh": true, }, - "value": 51252, + "value": 67628, }, { "category": "Pet", @@ -42946,7 +47934,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fragmented Dominus", "sh": true, }, - "value": 138670, + "value": 183495, }, { "category": "Pet", @@ -42954,7 +47942,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Glitched Dominus", "sh": true, }, - "value": 33648, + "value": 44902, + }, + { + "category": "Misc", + "configData": { + "id": "Nightmare Fuel", + }, + "value": 2115924, }, { "category": "Pet", @@ -42963,7 +47958,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 22610, + "value": 31644, }, { "category": "Pet", @@ -42971,7 +47966,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Quantum Tiger", "sh": true, }, - "value": 51748, + "value": 59622, }, { "category": "Pet", @@ -42979,7 +47974,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Void Alien", "pt": 1, }, - "value": 36036190, + "value": 35526592, }, { "category": "Pet", @@ -42987,7 +47982,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Quantum Fox", "sh": true, }, - "value": 101545, + "value": 149337, }, { "category": "Pet", @@ -42995,7 +47990,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hacked Raccoon", "sh": true, }, - "value": 117820, + "value": 175045, }, { "category": "Pet", @@ -43004,7 +47999,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 6833, + "value": 10203, }, { "category": "Pet", @@ -43012,7 +48007,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Quantum Bunny", "sh": true, }, - "value": 132595, + "value": 172813, }, { "category": "Pet", @@ -43021,7 +48016,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 18963, + "value": 25045, }, { "category": "Pet", @@ -43030,7 +48025,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 32709, + "value": 40518, }, { "category": "Pet", @@ -43038,7 +48033,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Glitched Dog", "sh": true, }, - "value": 39177, + "value": 51703, }, { "category": "Pet", @@ -43047,7 +48042,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 7718, + "value": 10405, }, { "category": "Pet", @@ -43056,7 +48051,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 26976, + "value": 33923, }, { "category": "Pet", @@ -43064,7 +48059,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Glitched Immortuus", "sh": true, }, - "value": 89688, + "value": 130169, }, { "category": "Pet", @@ -43073,7 +48068,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 17195, + "value": 22315, }, { "category": "Pet", @@ -43081,7 +48076,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Void Alien", "pt": 2, }, - "value": 20546637, + "value": 20062858, }, { "category": "Pet", @@ -43090,7 +48085,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 7558, + "value": 9859, }, { "category": "Pet", @@ -43098,7 +48093,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Quantum Goat", "sh": true, }, - "value": 34669, + "value": 44925, }, { "category": "Pet", @@ -43107,7 +48102,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 16999, + "value": 21567, }, { "category": "Pet", @@ -43115,7 +48110,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fragmented Pterodactyl", "sh": true, }, - "value": 47921, + "value": 58063, }, { "category": "Pet", @@ -43123,7 +48118,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Atomic Axolotl", "sh": true, }, - "value": 1066516, + "value": 1148904, }, { "category": "Pet", @@ -43132,7 +48127,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 6066, + "value": 8479, }, { "category": "Pet", @@ -43141,7 +48136,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 6941, + "value": 9133, }, { "category": "Pet", @@ -43149,7 +48144,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Glitched Phoenix", "sh": true, }, - "value": 28067, + "value": 41381, }, { "category": "Pet", @@ -43158,14 +48153,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 16512, + "value": 22732, }, { "category": "Pet", "configData": { "id": "Black Hole Angelus", }, - "value": 2458319, + "value": 2409386, }, { "category": "Pet", @@ -43174,7 +48169,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 8098, + "value": 12921, }, { "category": "Pet", @@ -43183,7 +48178,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 55780, + "value": 66302, }, { "category": "Pet", @@ -43192,7 +48187,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 25197, + "value": 30135, }, { "category": "Pet", @@ -43201,7 +48196,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3862, + "value": 4928, }, { "category": "Pet", @@ -43210,7 +48205,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 6632, + "value": 8701, }, { "category": "Pet", @@ -43218,7 +48213,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Quantum Griffin", "sh": true, }, - "value": 225680, + "value": 281016, }, { "category": "Pet", @@ -43227,7 +48222,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 19172, + "value": 20964, }, { "category": "Pet", @@ -43236,7 +48231,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3041, + "value": 4238, }, { "category": "Pet", @@ -43245,7 +48240,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 11361, + "value": 14653, }, { "category": "Pet", @@ -43254,7 +48249,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 9855, + "value": 12838, }, { "category": "Pet", @@ -43263,7 +48258,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 41969, + "value": 45801, }, { "category": "Pet", @@ -43272,7 +48267,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 13517, + "value": 17371, }, { "category": "Pet", @@ -43280,7 +48275,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Black Hole Angelus", "pt": 1, }, - "value": 687889, + "value": 678177, }, { "category": "Pet", @@ -43289,7 +48284,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 26406, + "value": 33049, }, { "category": "Pet", @@ -43298,7 +48293,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3179, + "value": 5559, }, { "category": "Pet", @@ -43307,7 +48302,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 16698, + "value": 17781, }, { "category": "Pet", @@ -43316,7 +48311,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 21626, + "value": 25986, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Glitched", + }, + "value": 44978, }, { "category": "Pet", @@ -43325,7 +48327,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 7305, + "value": 11028, }, { "category": "Pet", @@ -43334,7 +48336,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 6173, + "value": 8984, }, { "category": "Pet", @@ -43343,7 +48345,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 9471, + "value": 10996, }, { "category": "Pet", @@ -43352,7 +48354,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5066, + "value": 6466, }, { "category": "Pet", @@ -43361,7 +48363,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5215, + "value": 7050, }, { "category": "Pet", @@ -43369,7 +48371,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Quantum Dominus", "sh": true, }, - "value": 91836, + "value": 100902, }, { "category": "Pet", @@ -43378,7 +48380,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 224988, + "value": 228670, }, { "category": "Pet", @@ -43387,7 +48389,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3825, + "value": 4871, }, { "category": "Pet", @@ -43395,7 +48397,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Black Hole Angelus", "pt": 2, }, - "value": 402779, + "value": 394698, }, { "category": "Pet", @@ -43404,7 +48406,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 8623, + "value": 11077, }, { "category": "Pet", @@ -43413,7 +48415,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5667, + "value": 6452, }, { "category": "Pet", @@ -43422,7 +48424,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 90359, + "value": 90061, }, { "category": "Pet", @@ -43430,7 +48432,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Atomic Monkey", "sh": true, }, - "value": 544633, + "value": 551124, }, { "category": "Pet", @@ -43439,7 +48441,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 9139, + "value": 9780, }, { "category": "Pet", @@ -43448,7 +48450,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3189, + "value": 5084, }, { "category": "Pet", @@ -43457,7 +48459,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 10197, + "value": 12505, }, { "category": "Pet", @@ -43466,7 +48468,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 56808, + "value": 56212, }, { "category": "Pet", @@ -43475,7 +48477,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 113199, + "value": 114070, }, { "category": "Pet", @@ -43492,14 +48494,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 101165, + "value": 99517, }, { "category": "Pet", "configData": { "id": "Huge 404 Demon", }, - "value": 21560, + "value": 22534, }, { "category": "Pet", @@ -43508,7 +48510,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 93897, + "value": 92140, }, { "category": "Pet", @@ -43516,7 +48518,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Black Hole Angelus", "sh": true, }, - "value": 15, + "value": 16, }, { "category": "Pet", @@ -43533,7 +48535,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 15, + "value": 16, }, { "category": "Pet", @@ -43541,7 +48543,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Void Alien", "sh": true, }, - "value": 313909, + "value": 305594, }, { "category": "Pet", @@ -43550,7 +48552,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 2335, + "value": 2375, }, { "category": "Pet", @@ -43559,7 +48561,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2283, + "value": 2356, }, { "category": "Pet", @@ -43567,7 +48569,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Arcade Dragon", "pt": 2, }, - "value": 49, + "value": 75, }, { "category": "Pet", @@ -43575,7 +48577,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Arcade Dragon", "pt": 1, }, - "value": 214, + "value": 351, }, { "category": "Pet", @@ -43591,7 +48593,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Party Cat", "pt": 2, }, - "value": 3, + "value": 12, }, { "category": "Pet", @@ -43599,7 +48601,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Party Cat", "pt": 1, }, - "value": 40, + "value": 66, }, { "category": "Pet", @@ -43607,7 +48609,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Black Hole Angelus", "sh": true, }, - "value": 1707, + "value": 1649, }, { "category": "Pet", @@ -43615,7 +48617,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Firefly", "sh": true, }, - "value": 6, + "value": 10, }, { "category": "Pet", @@ -43623,14 +48625,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Kangaroo", "pt": 2, }, - "value": 30634, + "value": 29470, }, { "category": "Pet", "configData": { "id": "Huge Kangaroo", }, - "value": 181178, + "value": 169428, }, { "category": "Pet", @@ -43638,7 +48640,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Kangaroo", "pt": 1, }, - "value": 44683, + "value": 44908, }, { "category": "Pet", @@ -43646,7 +48648,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Kangaroo", "sh": true, }, - "value": 3890, + "value": 3409, }, { "category": "Pet", @@ -43655,7 +48657,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 637, + "value": 670, }, { "category": "Pet", @@ -43664,7 +48666,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 868, + "value": 856, }, { "category": "Pet", @@ -43673,21 +48675,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 107, + "value": 195, + }, + { + "category": "Misc", + "configData": { + "id": "Backrooms Key", + }, + "value": 17800782, }, { "category": "Pet", "configData": { "id": "Ender Goat", }, - "value": 42626692425, + "value": 41421592514, }, { "category": "Pet", "configData": { "id": "Night Terror Cat", }, - "value": 12510523121, + "value": 12158175215, }, { "category": "Pet", @@ -43695,7 +48704,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ender Goat", "pt": 2, }, - "value": 2963646117, + "value": 2903049443, }, { "category": "Pet", @@ -43703,7 +48712,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Creepy Yeti", "pt": 2, }, - "value": 2838877358, + "value": 2764748138, }, { "category": "Pet", @@ -43711,14 +48720,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ender Goat", "pt": 1, }, - "value": 5930691221, + "value": 5850287790, }, { "category": "Pet", "configData": { "id": "Creepy Yeti", }, - "value": 35204886803, + "value": 34222667542, }, { "category": "Pet", @@ -43726,7 +48735,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Night Terror Cat", "pt": 2, }, - "value": 672510007, + "value": 661105328, }, { "category": "Pet", @@ -43734,14 +48743,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Night Terror Cat", "pt": 1, }, - "value": 1496251284, + "value": 1475737526, }, { "category": "Pet", "configData": { "id": "Bloo Cat", }, - "value": 74140, + "value": 58764, }, { "category": "Pet", @@ -43749,14 +48758,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Creepy Yeti", "pt": 1, }, - "value": 5291456258, + "value": 5219175311, }, { "category": "Pet", "configData": { "id": "Ender Slime", }, - "value": 52722508578, + "value": 51326432124, }, { "category": "Pet", @@ -43764,7 +48773,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ender Slime", "pt": 1, }, - "value": 8496216602, + "value": 8382278499, }, { "category": "Pet", @@ -43772,14 +48781,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ender Slime", "pt": 2, }, - "value": 4652728102, + "value": 4548453730, }, { "category": "Pet", "configData": { "id": "Corrupt Skeleton", }, - "value": 31247413329, + "value": 30279631115, }, { "category": "Pet", @@ -43787,7 +48796,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bloo Cat", "pt": 2, }, - "value": 13476, + "value": 11017, }, { "category": "Pet", @@ -43795,7 +48804,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Night Terror Cat", "sh": true, }, - "value": 35721590, + "value": 34903446, }, { "category": "Pet", @@ -43810,7 +48819,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Corrupt Skeleton", "pt": 1, }, - "value": 5464987230, + "value": 5387587457, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Night Terror", + }, + "value": 186916, }, { "category": "Pet", @@ -43818,7 +48834,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bloo Cat", "pt": 1, }, - "value": 38569, + "value": 27780, }, { "category": "Pet", @@ -43827,7 +48843,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 4289982, + "value": 4222574, + }, + { + "category": "Enchant", + "configData": { + "id": "Nightmare Orb", + "tn": 1, + }, + "value": 70662, }, { "category": "Pet", @@ -43835,7 +48859,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Corrupt Skeleton", "pt": 2, }, - "value": 3285059442, + "value": 3227752576, }, { "category": "Pet", @@ -43843,14 +48867,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ender Goat", "sh": true, }, - "value": 144291516, + "value": 141088663, + }, + { + "category": "Booth", + "configData": { + "id": "Night Terror", + }, + "value": 208502, }, { "category": "Pet", "configData": { "id": "Corrupt Octopus", }, - "value": 1319058562, + "value": 1293104733, }, { "category": "Pet", @@ -43859,7 +48890,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 19913168, + "value": 19575558, }, { "category": "Pet", @@ -43867,14 +48898,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Creepy Yeti", "sh": true, }, - "value": 126674115, + "value": 123665486, }, { "category": "Pet", "configData": { "id": "Creepy Wolf", }, - "value": 303724604, + "value": 297802877, }, { "category": "Pet", @@ -43883,7 +48914,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 20884922, + "value": 20557867, }, { "category": "Pet", @@ -43892,7 +48923,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12716943, + "value": 12376462, }, { "category": "Pet", @@ -43900,7 +48931,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Corrupt Octopus", "pt": 2, }, - "value": 144279510, + "value": 140553319, }, { "category": "Pet", @@ -43915,7 +48946,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Corrupt Octopus", "pt": 1, }, - "value": 242307587, + "value": 238320081, }, { "category": "Pet", @@ -43924,7 +48955,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 2444759, + "value": 2388422, }, { "category": "Pet", @@ -43933,14 +48964,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12816341, + "value": 12408208, }, { "category": "Pet", "configData": { "id": "Plague Dragon", }, - "value": 84671634, + "value": 82998150, }, { "category": "Pet", @@ -43948,7 +48979,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ender Slime", "sh": true, }, - "value": 200963244, + "value": 195528074, }, { "category": "Pet", @@ -43956,7 +48987,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bloo Cat", "sh": true, }, - "value": 3045, + "value": 2318, }, { "category": "Pet", @@ -43964,7 +48995,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Creepy Wolf", "pt": 1, }, - "value": 54824302, + "value": 53882827, }, { "category": "Pet", @@ -43972,7 +49003,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Creepy Wolf", "pt": 2, }, - "value": 33079598, + "value": 32217524, }, { "category": "Pet", @@ -43987,7 +49018,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Ender Hades", }, - "value": 4286860, + "value": 4202364, }, { "category": "Pet", @@ -43995,7 +49026,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Corrupt Skeleton", "sh": true, }, - "value": 127468876, + "value": 123175751, + }, + { + "category": "Enchant", + "configData": { + "id": "Corruption", + "tn": 1, + }, + "value": 39182, }, { "category": "Pet", @@ -44004,7 +49043,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 640, + "value": 616, }, { "category": "Pet", @@ -44029,7 +49068,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 34321819, + "value": 33560666, }, { "category": "Pet", @@ -44037,7 +49076,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Plague Dragon", "pt": 1, }, - "value": 15226514, + "value": 14979084, }, { "category": "Pet", @@ -44046,7 +49085,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 22270356, + "value": 21630362, }, { "category": "Pet", @@ -44054,7 +49093,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Plague Dragon", "pt": 2, }, - "value": 9178532, + "value": 8957421, }, { "category": "Pet", @@ -44070,7 +49109,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ender Hades", "pt": 1, }, - "value": 733553, + "value": 720885, }, { "category": "Pet", @@ -44078,7 +49117,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ender Hades", "pt": 2, }, - "value": 446937, + "value": 437405, }, { "category": "Pet", @@ -44095,7 +49134,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 16559543, + "value": 16234363, }, { "category": "Pet", @@ -44104,7 +49143,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 23941946, + "value": 23294803, }, { "category": "Pet", @@ -44113,7 +49152,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 826240, + "value": 808677, }, { "category": "Pet", @@ -44121,7 +49160,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Corrupt Octopus", "sh": true, }, - "value": 4402495, + "value": 4265369, }, { "category": "Pet", @@ -44138,7 +49177,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 587781, + "value": 571346, }, { "category": "Pet", @@ -44147,7 +49186,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 152, + "value": 151, }, { "category": "Pet", @@ -44155,7 +49194,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Plague Dragon", "sh": true, }, - "value": 220336, + "value": 213621, }, { "category": "Pet", @@ -44163,7 +49202,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Creepy Wolf", "sh": true, }, - "value": 913348, + "value": 886134, }, { "category": "Pet", @@ -44172,7 +49211,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 130384, + "value": 126013, }, { "category": "Pet", @@ -44181,7 +49220,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 167602, + "value": 163460, }, { "category": "Pet", @@ -44217,7 +49256,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 42382, + "value": 41142, }, { "category": "Pet", @@ -44235,7 +49274,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 38827, + "value": 37845, }, { "category": "Pet", @@ -44243,7 +49282,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ender Hades", "sh": true, }, - "value": 4539, + "value": 4415, }, { "category": "Pet", @@ -44252,7 +49291,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2728, + "value": 2751, }, { "category": "Pet", @@ -44261,14 +49300,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1999, + "value": 2018, }, { "category": "Pet", "configData": { "id": "Titanic Shiba", }, - "value": 829, + "value": 846, }, { "category": "Pet", @@ -44284,7 +49323,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Shiba", "sh": true, }, - "value": 14, + "value": 15, }, { "category": "Pet", @@ -44293,7 +49332,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 11, + "value": 18, }, { "category": "Pet", @@ -44302,7 +49341,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 33, + "value": 67, }, { "category": "Pet", @@ -44311,7 +49350,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 9, + "value": 19, }, { "category": "Pet", @@ -44320,7 +49359,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8, + "value": 15, }, { "category": "Pet", @@ -44329,21 +49368,42 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 27, + "value": 48, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Bubble", + }, + "value": 662, + }, + { + "category": "Booth", + "configData": { + "id": "Bubble", + }, + "value": 3199, }, { "category": "Pet", "configData": { "id": "Huge Bubble Dog", }, - "value": 65, + "value": 57, + }, + { + "category": "Misc", + "configData": { + "id": "Deep Backrooms Key", + }, + "value": 9230972, }, { "category": "Pet", "configData": { "id": "Night Terror Dog", }, - "value": 24929760735, + "value": 24259659063, }, { "category": "Pet", @@ -44351,7 +49411,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Night Terror Dog", "pt": 1, }, - "value": 3816550185, + "value": 3763614362, }, { "category": "Pet", @@ -44359,7 +49419,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Night Terror Dog", "pt": 2, }, - "value": 2016023789, + "value": 1978970780, }, { "category": "Pet", @@ -44367,14 +49427,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Puurple Cat", "pt": 1, }, - "value": 25558, + "value": 18575, }, { "category": "Pet", "configData": { "id": "Puurple Cat", }, - "value": 44418, + "value": 34294, }, { "category": "Pet", @@ -44382,14 +49442,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Puurple Cat", "sh": true, }, - "value": 2161, + "value": 1719, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 26", + }, + "value": 844009, }, { "category": "Pet", "configData": { "id": "Ender Bunny", }, - "value": 6179152094, + "value": 5955414972, }, { "category": "Pet", @@ -44397,7 +49464,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ender Bunny", "pt": 2, }, - "value": 743537344, + "value": 732463177, }, { "category": "Pet", @@ -44405,14 +49472,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ender Bunny", "pt": 1, }, - "value": 1142705110, + "value": 1124002550, }, { "category": "Pet", "configData": { "id": "Bejeweled Unicorn", }, - "value": 390237, + "value": 317046, }, { "category": "Pet", @@ -44420,7 +49487,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Puurple Cat", "pt": 2, }, - "value": 9595, + "value": 8094, }, { "category": "Pet", @@ -44428,21 +49495,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Night Terror Dog", "sh": true, }, - "value": 92057305, + "value": 90161672, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Supercar", + }, + "value": 10702, }, { "category": "Pet", "configData": { "id": "Corrupt Cat", }, - "value": 46021458, + "value": 44426254, }, { "category": "Pet", "configData": { "id": "Evil Gorilla", }, - "value": 890411186, + "value": 863437229, }, { "category": "Pet", @@ -44450,7 +49524,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Evil Gorilla", "pt": 1, }, - "value": 178013087, + "value": 174090955, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Mosaic", + }, + "value": 45842, }, { "category": "Pet", @@ -44464,14 +49545,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Bejeweled Deer", }, - "value": 273478, + "value": 226163, }, { "category": "Pet", "configData": { "id": "Bejeweled Lion", }, - "value": 101380, + "value": 76138, }, { "category": "Pet", @@ -44479,7 +49560,22 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bejeweled Lion", "sh": true, }, - "value": 2094, + "value": 1684, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Supercar", + "sh": true, + }, + "value": 1174, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Rich", + }, + "value": 7809, }, { "category": "Pet", @@ -44488,7 +49584,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 9454952, + "value": 9248709, }, { "category": "Pet", @@ -44505,21 +49601,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 15017382, + "value": 14830765, }, { "category": "Pet", "configData": { "id": "Huge Bejeweled Unicorn", }, - "value": 9552, + "value": 9669, }, { "category": "Pet", "configData": { "id": "Huge Bejeweled Lion", }, - "value": 5362, + "value": 5419, }, { "category": "Pet", @@ -44527,7 +49623,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Corrupt Cat", "pt": 1, }, - "value": 8868914, + "value": 8653528, }, { "category": "Pet", @@ -44535,7 +49631,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Evil Gorilla", "pt": 2, }, - "value": 118993489, + "value": 116795031, }, { "category": "Pet", @@ -44550,7 +49646,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ender Bunny", "sh": true, }, - "value": 25899879, + "value": 24495846, }, { "category": "Pet", @@ -44566,7 +49662,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bejeweled Unicorn", "sh": true, }, - "value": 7929, + "value": 5793, }, { "category": "Pet", @@ -44574,7 +49670,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bejeweled Deer", "pt": 2, }, - "value": 7542, + "value": 5792, }, { "category": "Pet", @@ -44582,7 +49678,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bejeweled Deer", "sh": true, }, - "value": 5591, + "value": 4118, }, { "category": "Pet", @@ -44599,7 +49695,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 5059989, + "value": 4881647, }, { "category": "Pet", @@ -44607,7 +49703,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bejeweled Unicorn", "pt": 2, }, - "value": 10661, + "value": 8316, }, { "category": "Pet", @@ -44615,14 +49711,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Corrupt Cat", "pt": 2, }, - "value": 6086740, + "value": 5985310, }, { "category": "Pet", "configData": { "id": "Plague Cow", }, - "value": 2006373, + "value": 1926852, }, { "category": "Pet", @@ -44631,7 +49727,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3734433, + "value": 3684175, + }, + { + "category": "Booth", + "configData": { + "id": "Dino Cat", + }, + "value": 87825, + }, + { + "category": "Booth", + "configData": { + "id": "Giraffe", + }, + "value": 131665, + }, + { + "category": "Booth", + "configData": { + "id": "Pop Cat", + }, + "value": 160837, }, { "category": "Pet", @@ -44639,7 +49756,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Bejeweled Lion", "sh": true, }, - "value": 220, + "value": 222, }, { "category": "Pet", @@ -44647,7 +49764,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bejeweled Lion", "pt": 2, }, - "value": 2744, + "value": 2170, }, { "category": "Pet", @@ -44655,7 +49772,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Plague Cow", "pt": 2, }, - "value": 263039, + "value": 259403, }, { "category": "Pet", @@ -44672,7 +49789,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 431, + "value": 419, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Rich", + "sh": true, + }, + "value": 876, }, { "category": "Pet", @@ -44680,7 +49805,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Bejeweled Unicorn", "sh": true, }, - "value": 392, + "value": 396, }, { "category": "Pet", @@ -44697,14 +49822,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Evil Gorilla", "sh": true, }, - "value": 3564007, + "value": 3385321, }, { "category": "Pet", "configData": { "id": "Titanic Bejeweled Griffin", }, - "value": 370, + "value": 376, }, { "category": "Pet", @@ -44720,7 +49845,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Plague Cow", "pt": 1, }, - "value": 371374, + "value": 361885, }, { "category": "Pet", @@ -44730,6 +49855,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 316, }, + { + "category": "Hoverboard", + "configData": { + "id": "Mosaic", + "sh": true, + }, + "value": 5092, + }, { "category": "Pet", "configData": { @@ -44737,7 +49870,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 226, + "value": 210, }, { "category": "Pet", @@ -44745,7 +49878,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Bejeweled Unicorn", "pt": 2, }, - "value": 295, + "value": 297, }, { "category": "Pet", @@ -44754,7 +49887,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 743697, + "value": 718639, + }, + { + "category": "Booth", + "configData": { + "id": "Hotdog", + }, + "value": 2863, + }, + { + "category": "Booth", + "configData": { + "id": "Cardboard", + }, + "value": 1568, + }, + { + "category": "Booth", + "configData": { + "id": "Black Hole", + }, + "value": 4258, }, { "category": "Pet", @@ -44762,7 +49916,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Bejeweled Lion", "pt": 2, }, - "value": 127, + "value": 130, }, { "category": "Pet", @@ -44771,7 +49925,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 566120, + "value": 556601, }, { "category": "Pet", @@ -44780,7 +49934,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 85, + "value": 84, }, { "category": "Pet", @@ -44789,7 +49943,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 57, + "value": 56, }, { "category": "Pet", @@ -44798,7 +49952,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 149, + "value": 142, }, { "category": "Pet", @@ -44806,7 +49960,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Corrupt Cat", "sh": true, }, - "value": 147248, + "value": 139918, }, { "category": "Pet", @@ -44815,7 +49969,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 32606, + "value": 31605, }, { "category": "Pet", @@ -44824,7 +49978,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 30120, + "value": 29687, }, { "category": "Pet", @@ -44832,7 +49986,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Plague Cow", "sh": true, }, - "value": 3829, + "value": 3680, }, { "category": "Pet", @@ -44858,7 +50012,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1996, + "value": 2028, }, { "category": "Pet", @@ -44867,7 +50021,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12, + "value": 17, }, { "category": "Pet", @@ -44876,7 +50030,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1416, + "value": 1434, }, { "category": "Pet", @@ -44920,7 +50074,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 11, + "value": 28, }, { "category": "Pet", @@ -44938,7 +50092,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 21, + "value": 36, }, { "category": "Pet", @@ -44947,7 +50101,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 6, + "value": 10, }, { "category": "Pet", @@ -44955,7 +50109,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Lunar Moth", "pt": 2, }, - "value": 1825, + "value": 1912, }, { "category": "Pet", @@ -44964,7 +50118,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13, + "value": 20, }, { "category": "Pet", @@ -44972,7 +50126,36 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Lunar Moth", "sh": true, }, - "value": 399, + "value": 422, + }, + { + "category": "Misc", + "configData": { + "id": "Void Spinny Wheel Ticket", + }, + "value": 337586682, + }, + { + "category": "Misc", + "configData": { + "id": "Void Key", + }, + "value": 636648491, + }, + { + "category": "Enchant", + "configData": { + "id": "Superior Chest Mimic", + "tn": 1, + }, + "value": 28790, + }, + { + "category": "Misc", + "configData": { + "id": "Prison Key", + }, + "value": 504649429, }, { "category": "Pet", @@ -44980,7 +50163,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Robber Cat", "pt": 2, }, - "value": 91322626, + "value": 107732626, }, { "category": "Pet", @@ -44988,14 +50171,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Detective Cat", "pt": 1, }, - "value": 29930365560, + "value": 29304174275, }, { "category": "Pet", "configData": { "id": "Robber Cat", }, - "value": 2780131687, + "value": 3028041653, }, { "category": "Pet", @@ -45003,21 +50186,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Prison Cow", "pt": 1, }, - "value": 35777055160, + "value": 37764290826, }, { "category": "Pet", "configData": { "id": "Prison Dog", }, - "value": 122141778, + "value": 148631173, }, { "category": "Pet", "configData": { "id": "Prison Bunny", }, - "value": 643827037, + "value": 753547818, }, { "category": "Pet", @@ -45025,28 +50208,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Prison Bunny", "pt": 1, }, - "value": 93657747, + "value": 104039226, }, { "category": "Pet", "configData": { "id": "Detective Cat", }, - "value": 126709403784, + "value": 126427475059, }, { "category": "Pet", "configData": { "id": "Prison Cow", }, - "value": 149995366257, + "value": 150368546584, }, { "category": "Pet", "configData": { "id": "Prison Cat", }, - "value": 1167271576, + "value": 1301041945, }, { "category": "Pet", @@ -45054,7 +50237,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Prison Monkey", "pt": 1, }, - "value": 139270403, + "value": 164463260, }, { "category": "Pet", @@ -45062,14 +50245,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Prison Cat", "pt": 1, }, - "value": 274366799, + "value": 292086767, }, { "category": "Pet", "configData": { "id": "Prison Monkey", }, - "value": 790085764, + "value": 914973155, }, { "category": "Pet", @@ -45077,7 +50260,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Robber Cat", "pt": 1, }, - "value": 371139694, + "value": 403747479, }, { "category": "Pet", @@ -45085,7 +50268,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Detective Cat", "pt": 2, }, - "value": 20810605017, + "value": 20442691766, }, { "category": "Pet", @@ -45093,7 +50276,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Prison Dog", "pt": 1, }, - "value": 19419726, + "value": 27716093, + }, + { + "category": "Misc", + "configData": { + "id": "Golden Prison Key", + }, + "value": 63008029, }, { "category": "Pet", @@ -45101,7 +50291,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Prison Cat", "pt": 2, }, - "value": 77985546, + "value": 74905885, }, { "category": "Pet", @@ -45109,7 +50299,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Wizard Westie", "pt": 1, }, - "value": 24815, + "value": 26334, }, { "category": "Pet", @@ -45117,7 +50307,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Prison Monkey", "pt": 2, }, - "value": 34376472, + "value": 40171476, }, { "category": "Pet", @@ -45125,7 +50315,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Prison Dog", "pt": 2, }, - "value": 5523939, + "value": 6739255, }, { "category": "Pet", @@ -45133,7 +50323,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cyber Agony", "pt": 1, }, - "value": 17556, + "value": 18690, }, { "category": "Pet", @@ -45141,7 +50331,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Prison Bunny", "pt": 2, }, - "value": 33046374, + "value": 36321305, }, { "category": "Pet", @@ -45149,7 +50339,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cyber Agony", "pt": 2, }, - "value": 3532, + "value": 3736, }, { "category": "Pet", @@ -45158,7 +50348,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 33301, + "value": 39933, }, { "category": "Pet", @@ -45166,7 +50356,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Prison Monkey", "sh": true, }, - "value": 1417134, + "value": 1750649, + }, + { + "category": "Misc", + "configData": { + "id": "Void Key Upper Half", + }, + "value": 656398296, }, { "category": "Pet", @@ -45174,7 +50371,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Robber Cat", "sh": true, }, - "value": 5254730, + "value": 7001812, }, { "category": "Pet", @@ -45182,7 +50379,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Prison Bunny", "sh": true, }, - "value": 1078517, + "value": 1228050, }, { "category": "Pet", @@ -45191,7 +50388,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 82275, + "value": 91171, }, { "category": "Pet", @@ -45200,7 +50397,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 179464, + "value": 192759, }, { "category": "Pet", @@ -45209,7 +50406,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 430990, + "value": 481675, }, { "category": "Pet", @@ -45218,7 +50415,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 261084, + "value": 308371, }, { "category": "Pet", @@ -45227,7 +50424,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 151106, + "value": 150275, + }, + { + "category": "Misc", + "configData": { + "id": "Void Key Lower Half", + }, + "value": 1291027145, }, { "category": "Pet", @@ -45236,7 +50440,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 81422, + "value": 100598, }, { "category": "Pet", @@ -45244,7 +50448,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Prison Dog", "sh": true, }, - "value": 154272, + "value": 186432, }, { "category": "Pet", @@ -45252,7 +50456,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Prison Cat", "sh": true, }, - "value": 2977899, + "value": 3359218, }, { "category": "Pet", @@ -45261,7 +50465,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 215737, + "value": 186206, }, { "category": "Pet", @@ -45269,7 +50473,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Detective Cat", "sh": true, }, - "value": 467840399, + "value": 461249166, }, { "category": "Pet", @@ -45278,7 +50482,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 110492548, + "value": 107896770, }, { "category": "Pet", @@ -45287,7 +50491,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 688448, + "value": 721877, }, { "category": "Pet", @@ -45296,7 +50500,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13720, + "value": 16464, }, { "category": "Pet", @@ -45305,7 +50509,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 80596451, + "value": 79029606, }, { "category": "Pet", @@ -45313,14 +50517,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Holographic Cat", "pt": 1, }, - "value": 19182, + "value": 21820, }, { "category": "Pet", "configData": { "id": "Huge Prison Cat", }, - "value": 99979, + "value": 102186, }, { "category": "Pet", @@ -45328,7 +50532,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Prison Cat", "pt": 1, }, - "value": 20115, + "value": 20535, }, { "category": "Pet", @@ -45336,14 +50540,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Holographic Cat", "pt": 2, }, - "value": 3717, + "value": 4232, }, { "category": "Pet", "configData": { "id": "Huge Holographic Cat", }, - "value": 87669, + "value": 95497, }, { "category": "Pet", @@ -45351,7 +50555,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Prison Axolotl", "pt": 1, }, - "value": 402061271, + "value": 459796839, }, { "category": "Pet", @@ -45359,7 +50563,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Prison Axolotl", "pt": 2, }, - "value": 219157937, + "value": 221558943, }, { "category": "Pet", @@ -45367,21 +50571,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Prison Cow", "pt": 2, }, - "value": 20562675313, + "value": 20454718235, }, { "category": "Pet", "configData": { "id": "Prison Axolotl", }, - "value": 1486955738, + "value": 1549418123, }, { "category": "Pet", "configData": { "id": "Huge Atomic Axolotl", }, - "value": 2024, + "value": 5828, }, { "category": "Pet", @@ -45390,7 +50594,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 81034799, + "value": 80629717, }, { "category": "Pet", @@ -45399,7 +50603,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 132260722, + "value": 140152876, }, { "category": "Pet", @@ -45407,7 +50611,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Prison Cow", "sh": true, }, - "value": 545678173, + "value": 546477817, }, { "category": "Pet", @@ -45415,14 +50619,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Prison Cat", "pt": 2, }, - "value": 3878, + "value": 3976, }, { "category": "Pet", "configData": { "id": "Guard Corgi", }, - "value": 10085514, + "value": 10562840, }, { "category": "Pet", @@ -45430,7 +50634,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Guard Corgi", "pt": 1, }, - "value": 2565399, + "value": 2998493, }, { "category": "Pet", @@ -45438,7 +50642,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Guard Corgi", "pt": 2, }, - "value": 1431958, + "value": 1441257, }, { "category": "Pet", @@ -45446,7 +50650,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Wizard Westie", "pt": 2, }, - "value": 4793, + "value": 5078, }, { "category": "Pet", @@ -45455,7 +50659,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 735275, + "value": 751778, }, { "category": "Pet", @@ -45464,7 +50668,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1193959, + "value": 1388691, }, { "category": "Pet", @@ -45472,7 +50676,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Prison Axolotl", "sh": true, }, - "value": 4369298, + "value": 4524357, }, { "category": "Pet", @@ -45480,7 +50684,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Atomic Axolotl", "pt": 1, }, - "value": 420, + "value": 1220, }, { "category": "Pet", @@ -45489,7 +50693,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 9726, + "value": 10667, }, { "category": "Pet", @@ -45498,7 +50702,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8369, + "value": 8666, }, { "category": "Pet", @@ -45507,7 +50711,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 87, + "value": 90, }, { "category": "Pet", @@ -45524,7 +50728,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 17, + "value": 18, }, { "category": "Pet", @@ -45532,7 +50736,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Atomic Axolotl", "pt": 2, }, - "value": 79, + "value": 220, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 27", + }, + "value": 899234, }, { "category": "Pet", @@ -45540,28 +50751,35 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Police Dog", "pt": 2, }, - "value": 2855780, + "value": 2890469, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Police", + }, + "value": 71771, }, { "category": "Pet", "configData": { "id": "Stargazing Bear", }, - "value": 288378, + "value": 229115, }, { "category": "Pet", "configData": { "id": "Police Dog", }, - "value": 19856431, + "value": 20831220, }, { "category": "Pet", "configData": { "id": "Stargazing Wolf", }, - "value": 412890, + "value": 327128, }, { "category": "Pet", @@ -45569,14 +50787,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stargazing Bear", "sh": true, }, - "value": 5936, + "value": 4385, }, { "category": "Pet", "configData": { "id": "Stargazing Axolotl", }, - "value": 106860, + "value": 79219, }, { "category": "Pet", @@ -45584,7 +50802,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Police Dog", "pt": 1, }, - "value": 5221477, + "value": 6031929, }, { "category": "Pet", @@ -45592,7 +50810,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stargazing Bear", "pt": 2, }, - "value": 7735, + "value": 5900, }, { "category": "Pet", @@ -45607,14 +50825,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Huge Police Cat", }, - "value": 7709, + "value": 7914, }, { "category": "Pet", "configData": { "id": "Huge Stargazing Wolf", }, - "value": 9900, + "value": 10038, }, { "category": "Pet", @@ -45622,7 +50840,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stargazing Wolf", "pt": 2, }, - "value": 11180, + "value": 8607, }, { "category": "Pet", @@ -45630,7 +50848,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Stargazing Wolf", "sh": true, }, - "value": 400, + "value": 406, }, { "category": "Pet", @@ -45638,7 +50856,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stargazing Axolotl", "sh": true, }, - "value": 2244, + "value": 1642, }, { "category": "Pet", @@ -45646,21 +50864,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Police Cat", "pt": 1, }, - "value": 2627, + "value": 2676, }, { "category": "Pet", "configData": { "id": "Huge Stargazing Axolotl", }, - "value": 5683, + "value": 5777, }, { "category": "Pet", "configData": { "id": "Police Cat", }, - "value": 217405, + "value": 227972, }, { "category": "Pet", @@ -45668,7 +50886,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stargazing Axolotl", "pt": 2, }, - "value": 2922, + "value": 2399, }, { "category": "Pet", @@ -45676,7 +50894,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Police Cat", "pt": 2, }, - "value": 28718, + "value": 28845, }, { "category": "Pet", @@ -45684,14 +50902,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stargazing Wolf", "sh": true, }, - "value": 8433, + "value": 6038, }, { "category": "Pet", "configData": { "id": "Huge Robber Cat", }, - "value": 3301, + "value": 3297, }, { "category": "Pet", @@ -45699,7 +50917,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Police Cat", "pt": 2, }, - "value": 809, + "value": 818, }, { "category": "Pet", @@ -45723,7 +50941,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Police Cat", "pt": 1, }, - "value": 53088, + "value": 62095, }, { "category": "Pet", @@ -45739,7 +50957,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Stargazing Axolotl", "pt": 2, }, - "value": 172, + "value": 175, }, { "category": "Pet", @@ -45748,7 +50966,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 215, + "value": 206, }, { "category": "Pet", @@ -45757,7 +50975,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 156, + "value": 154, }, { "category": "Pet", @@ -45765,14 +50983,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Stargazing Wolf", "pt": 2, }, - "value": 262, + "value": 266, }, { "category": "Pet", "configData": { "id": "Titanic Stargazing Bull", }, - "value": 408, + "value": 419, }, { "category": "Pet", @@ -45780,7 +50998,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Stargazing Axolotl", "sh": true, }, - "value": 232, + "value": 237, }, { "category": "Pet", @@ -45822,7 +51040,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Police Cat", "sh": true, }, - "value": 427, + "value": 429, }, { "category": "Pet", @@ -45831,7 +51049,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 50, + "value": 48, }, { "category": "Pet", @@ -45840,7 +51058,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 253, + "value": 265, }, { "category": "Pet", @@ -45849,7 +51067,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 18087, + "value": 18406, }, { "category": "Pet", @@ -45858,7 +51076,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 20079, + "value": 21857, }, { "category": "Pet", @@ -45885,7 +51103,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 69, + "value": 71, }, { "category": "Pet", @@ -45902,7 +51120,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Police Dog", "sh": true, }, - "value": 36165, + "value": 37152, }, { "category": "Pet", @@ -45910,7 +51128,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Guard Corgi", "sh": true, }, - "value": 15320, + "value": 15628, }, { "category": "Pet", @@ -45937,6 +51155,20 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 522, }, + { + "category": "Hoverboard", + "configData": { + "id": "Fragmented", + }, + "value": 748, + }, + { + "category": "Booth", + "configData": { + "id": "Fragmented", + }, + "value": 3651, + }, { "category": "Pet", "configData": { @@ -45953,13 +51185,20 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 75, }, + { + "category": "Misc", + "configData": { + "id": "Seashell", + }, + "value": 3513731756, + }, { "category": "Pet", "configData": { "id": "Scuba Dog", "pt": 1, }, - "value": 72557686, + "value": 87854889, }, { "category": "Pet", @@ -45967,7 +51206,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Scuba Dog", "pt": 2, }, - "value": 22265726, + "value": 26710148, }, { "category": "Pet", @@ -45975,14 +51214,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Scuba Shark", "pt": 1, }, - "value": 33427124, + "value": 42979238, }, { "category": "Pet", "configData": { "id": "Scuba Dog", }, - "value": 506651075, + "value": 625228652, }, { "category": "Pet", @@ -45990,14 +51229,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Floatie Ducky", "pt": 1, }, - "value": 394552200, + "value": 589080762, }, { "category": "Pet", "configData": { "id": "Floatie Ducky", }, - "value": 2383934283, + "value": 3004396185, }, { "category": "Pet", @@ -46005,7 +51244,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Floatie Ducky", "pt": 2, }, - "value": 116788461, + "value": 139185523, }, { "category": "Pet", @@ -46013,14 +51252,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Scuba Shark", "pt": 2, }, - "value": 10259968, + "value": 12432438, }, { "category": "Pet", "configData": { "id": "Scuba Shark", }, - "value": 228268865, + "value": 285211107, }, { "category": "Pet", @@ -46028,7 +51267,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Scuba Shark", "sh": true, }, - "value": 372869, + "value": 459138, }, { "category": "Pet", @@ -46036,7 +51275,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Scuba Dog", "sh": true, }, - "value": 905113, + "value": 1109678, }, { "category": "Pet", @@ -46045,7 +51284,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 138881, + "value": 178217, }, { "category": "Pet", @@ -46054,7 +51293,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 26703, + "value": 32702, }, { "category": "Pet", @@ -46062,7 +51301,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pineapple Monkey", "pt": 1, }, - "value": 6433, + "value": 7072, + }, + { + "category": "Booth", + "configData": { + "id": "Summer", + }, + "value": 107130, }, { "category": "Pet", @@ -46070,7 +51316,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Beach Ball Dolphin", "pt": 1, }, - "value": 586312786, + "value": 752491583, }, { "category": "Pet", @@ -46078,21 +51324,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Floatie Flamingo", "pt": 1, }, - "value": 166315664, + "value": 273140296, }, { "category": "Pet", "configData": { "id": "Beach Ball Dolphin", }, - "value": 3450830344, + "value": 3981329146, }, { "category": "Pet", "configData": { "id": "Floatie Flamingo", }, - "value": 905692316, + "value": 1178924317, }, { "category": "Pet", @@ -46100,7 +51346,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Beach Ball Dolphin", "pt": 2, }, - "value": 181853752, + "value": 211227077, }, { "category": "Pet", @@ -46108,7 +51354,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Floatie Flamingo", "pt": 2, }, - "value": 47822955, + "value": 58215361, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Surfboard", + }, + "value": 96323, }, { "category": "Pet", @@ -46116,14 +51369,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Sun Agony", "pt": 1, }, - "value": 1246, + "value": 1245, }, { "category": "Pet", "configData": { "id": "Sun Agony", }, - "value": 690975, + "value": 696919, }, { "category": "Pet", @@ -46131,7 +51384,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Floatie Ducky", "sh": true, }, - "value": 5831166, + "value": 7628817, }, { "category": "Pet", @@ -46139,7 +51392,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Beach Ball Monkey", "pt": 2, }, - "value": 70395568, + "value": 81785965, }, { "category": "Pet", @@ -46147,14 +51400,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flower Cat", "pt": 2, }, - "value": 104016620, + "value": 123716968, }, { "category": "Pet", "configData": { "id": "Beach Ball Monkey", }, - "value": 1117274959, + "value": 1411500932, }, { "category": "Pet", @@ -46162,14 +51415,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flower Cat", "pt": 1, }, - "value": 382963447, + "value": 542385550, }, { "category": "Pet", "configData": { "id": "Flower Cat", }, - "value": 1844953801, + "value": 2373578905, }, { "category": "Pet", @@ -46178,7 +51431,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 965790, + "value": 1491256, }, { "category": "Pet", @@ -46187,7 +51440,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 367312, + "value": 415341, }, { "category": "Pet", @@ -46195,7 +51448,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Beach Ball Monkey", "pt": 1, }, - "value": 215139595, + "value": 303089454, }, { "category": "Pet", @@ -46204,7 +51457,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 62143, + "value": 81393, + }, + { + "category": "Lootbox", + "configData": { + "id": "Summer Gift", + }, + "value": 5605298, }, { "category": "Pet", @@ -46212,7 +51472,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Beach Ball Dolphin", "sh": true, }, - "value": 8518122, + "value": 10815700, }, { "category": "Pet", @@ -46220,7 +51480,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Beach Ball Monkey", "sh": true, }, - "value": 2692085, + "value": 3319344, }, { "category": "Pet", @@ -46228,7 +51488,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Floatie Flamingo", "sh": true, }, - "value": 2126586, + "value": 2789867, }, { "category": "Pet", @@ -46237,7 +51497,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 420624, + "value": 715343, }, { "category": "Pet", @@ -46246,7 +51506,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 236953, + "value": 270488, }, { "category": "Pet", @@ -46255,7 +51515,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1309825, + "value": 1755307, }, { "category": "Pet", @@ -46264,7 +51524,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 58296, + "value": 69838, }, { "category": "Pet", @@ -46278,14 +51538,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Huge Pineapple Monkey", }, - "value": 29335, + "value": 32312, }, { "category": "Pet", "configData": { "id": "Surfboard Axolotl", }, - "value": 183562801750, + "value": 180013219862, }, { "category": "Pet", @@ -46293,7 +51553,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Surfboard Corgi", "pt": 2, }, - "value": 42682517, + "value": 53394066, }, { "category": "Pet", @@ -46301,14 +51561,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Surfboard Corgi", "pt": 1, }, - "value": 171722200, + "value": 268447087, }, { "category": "Pet", "configData": { "id": "Surfboard Corgi", }, - "value": 720215561, + "value": 971692866, }, { "category": "Pet", @@ -46316,7 +51576,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sun Agony", "pt": 1, }, - "value": 145501, + "value": 156858, }, { "category": "Pet", @@ -46325,7 +51585,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 580978, + "value": 637381, }, { "category": "Pet", @@ -46333,7 +51593,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sun Agony", "pt": 2, }, - "value": 94299, + "value": 93260, }, { "category": "Pet", @@ -46342,7 +51602,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 151353, + "value": 174076, }, { "category": "Pet", @@ -46351,7 +51611,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 530296, + "value": 775036, }, { "category": "Pet", @@ -46359,7 +51619,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pineapple Monkey", "pt": 2, }, - "value": 1947, + "value": 2050, }, { "category": "Pet", @@ -46367,7 +51627,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Surfboard Axolotl", "pt": 1, }, - "value": 41015969730, + "value": 41227555899, }, { "category": "Pet", @@ -46375,14 +51635,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flower Cat", "sh": true, }, - "value": 4661420, + "value": 6117517, }, { "category": "Pet", "configData": { "id": "Sailor Seal", }, - "value": 29942171978, + "value": 30232375263, + }, + { + "category": "Misc", + "configData": { + "id": "Water Gun", + }, + "value": 23204, }, { "category": "Pet", @@ -46391,7 +51658,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 275, + "value": 291, }, { "category": "Pet", @@ -46400,7 +51667,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 996907, + "value": 1450607, }, { "category": "Pet", @@ -46408,7 +51675,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sailor Seal", "pt": 1, }, - "value": 6140540480, + "value": 6508694858, }, { "category": "Pet", @@ -46416,7 +51683,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Surfboard Axolotl", "pt": 2, }, - "value": 26571096406, + "value": 26203377407, }, { "category": "Pet", @@ -46424,7 +51691,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sailor Seal", "pt": 2, }, - "value": 2648917838, + "value": 2637206012, }, { "category": "Pet", @@ -46432,7 +51699,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pineapple Monkey", "sh": true, }, - "value": 314, + "value": 320, }, { "category": "Pet", @@ -46440,7 +51707,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Surfboard Corgi", "sh": true, }, - "value": 1761377, + "value": 2404254, }, { "category": "Pet", @@ -46449,7 +51716,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1045, + "value": 1082, }, { "category": "Pet", @@ -46457,7 +51724,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sun Agony", "sh": true, }, - "value": 464, + "value": 459, }, { "category": "Pet", @@ -46466,7 +51733,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 319168, + "value": 365473, }, { "category": "Pet", @@ -46483,7 +51750,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 129024, + "value": 154034, }, { "category": "Pet", @@ -46499,7 +51766,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Surfboard Axolotl", "sh": true, }, - "value": 696858688, + "value": 683297818, }, { "category": "Pet", @@ -46508,7 +51775,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 53, + "value": 56, }, { "category": "Pet", @@ -46517,7 +51784,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 109006838, + "value": 107136377, }, { "category": "Pet", @@ -46526,14 +51793,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 158824080, + "value": 159267267, }, { "category": "Pet", "configData": { "id": "Pineapple Monkey", }, - "value": 446513470, + "value": 462854109, }, { "category": "Pet", @@ -46542,7 +51809,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 444848, + "value": 727711, }, { "category": "Pet", @@ -46550,7 +51817,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pineapple Monkey", "pt": 1, }, - "value": 103912378, + "value": 116252019, }, { "category": "Pet", @@ -46558,7 +51825,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pineapple Monkey", "pt": 2, }, - "value": 44701433, + "value": 45198380, }, { "category": "Pet", @@ -46566,7 +51833,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sailor Seal", "sh": true, }, - "value": 101090147, + "value": 101619793, }, { "category": "Pet", @@ -46575,7 +51842,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 21144879, + "value": 22477648, }, { "category": "Pet", @@ -46584,7 +51851,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 10552669, + "value": 10484315, }, { "category": "Pet", @@ -46593,7 +51860,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 206649, + "value": 209218, }, { "category": "Pet", @@ -46602,7 +51869,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 309396, + "value": 342716, }, { "category": "Pet", @@ -46610,7 +51877,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pineapple Monkey", "sh": true, }, - "value": 1213638, + "value": 1242566, }, { "category": "Pet", @@ -46628,7 +51895,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 6, + "value": 9, }, { "category": "Pet", @@ -46648,13 +51915,20 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 2, }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 28", + }, + "value": 846311, + }, { "category": "Pet", "configData": { "id": "Hooded Piggy", "pt": 2, }, - "value": 3802802, + "value": 4138885, }, { "category": "Pet", @@ -46662,7 +51936,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hooded Bobcat", "pt": 2, }, - "value": 38041090, + "value": 41352767, }, { "category": "Pet", @@ -46670,14 +51944,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hooded Bobcat", "pt": 1, }, - "value": 118589435, + "value": 129887289, }, { "category": "Pet", "configData": { "id": "Hooded Bobcat", }, - "value": 820097000, + "value": 941453846, }, { "category": "Pet", @@ -46685,28 +51959,42 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hooded Piggy", "pt": 1, }, - "value": 8867948, + "value": 9977140, }, { "category": "Pet", "configData": { "id": "Hooded Piggy", }, - "value": 51163083, + "value": 58320577, + }, + { + "category": "Misc", + "configData": { + "id": "Hacker Key", + }, + "value": 107208508, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Hacker", + }, + "value": 179193, }, { "category": "Pet", "configData": { "id": "Hooded Dragon", }, - "value": 56730916, + "value": 65448220, }, { "category": "Pet", "configData": { "id": "Hooded Monkey", }, - "value": 879896963, + "value": 981214201, }, { "category": "Pet", @@ -46714,7 +52002,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hooded Dragon", "pt": 1, }, - "value": 8344788, + "value": 9794361, }, { "category": "Pet", @@ -46722,7 +52010,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hooded Monkey", "pt": 2, }, - "value": 37723149, + "value": 42409946, }, { "category": "Pet", @@ -46730,14 +52018,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hooded Monkey", "pt": 1, }, - "value": 120337624, + "value": 143640492, }, { "category": "Pet", "configData": { "id": "Blazing Corgi", }, - "value": 272341, + "value": 195618, }, { "category": "Pet", @@ -46745,21 +52033,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hooded Dragon", "pt": 2, }, - "value": 3865977, + "value": 4221127, }, { "category": "Pet", "configData": { "id": "Blazing Shark", }, - "value": 389123, + "value": 290819, }, { "category": "Pet", "configData": { "id": "Blazing Bat", }, - "value": 101061, + "value": 71530, }, { "category": "Pet", @@ -46767,7 +52055,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hooded Bobcat", "sh": true, }, - "value": 1624907, + "value": 1827536, }, { "category": "Pet", @@ -46775,7 +52063,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hacked Computer", "pt": 2, }, - "value": 91455163597, + "value": 91350792115, }, { "category": "Pet", @@ -46783,7 +52071,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hacked Computer", "pt": 1, }, - "value": 134700936772, + "value": 92680333656, }, { "category": "Pet", @@ -46791,14 +52079,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Hacker Axolotl", "pt": 1, }, - "value": 8945, + "value": 8975, }, { "category": "Pet", "configData": { "id": "Huge Blazing Shark", }, - "value": 9384, + "value": 9533, }, { "category": "Pet", @@ -46807,7 +52095,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 100608, + "value": 110041, }, { "category": "Pet", @@ -46816,7 +52104,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 93151, + "value": 102336, }, { "category": "Pet", @@ -46824,7 +52112,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hooded Monkey", "sh": true, }, - "value": 1598952, + "value": 2002366, }, { "category": "Pet", @@ -46833,7 +52121,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 225828, + "value": 248287, }, { "category": "Pet", @@ -46849,7 +52137,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blazing Shark", "sh": true, }, - "value": 8127, + "value": 5668, }, { "category": "Pet", @@ -46857,14 +52145,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hacker Bear", "pt": 1, }, - "value": 12961809, + "value": 15368373, }, { "category": "Pet", "configData": { "id": "Hacker Bear", }, - "value": 89989412, + "value": 114645089, }, { "category": "Pet", @@ -46872,7 +52160,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hacker Corgi", "pt": 2, }, - "value": 61015230, + "value": 75916812, }, { "category": "Pet", @@ -46880,14 +52168,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hacker Corgi", "pt": 1, }, - "value": 249719656, + "value": 275046464, }, { "category": "Pet", "configData": { "id": "Hacker Corgi", }, - "value": 1787850501, + "value": 1985295587, }, { "category": "Pet", @@ -46895,14 +52183,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hooded Piggy", "sh": true, }, - "value": 90426, + "value": 98012, }, { "category": "Pet", "configData": { "id": "Masked Fox", }, - "value": 13324083, + "value": 12367217, }, { "category": "Pet", @@ -46911,7 +52199,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 175085, + "value": 201879, }, { "category": "Pet", @@ -46919,7 +52207,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hacker Bear", "pt": 2, }, - "value": 5166772, + "value": 5712176, }, { "category": "Pet", @@ -46928,7 +52216,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 254546, + "value": 307486, }, { "category": "Pet", @@ -46936,7 +52224,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hacker Corgi", "sh": true, }, - "value": 3281931, + "value": 4876172, }, { "category": "Pet", @@ -46945,14 +52233,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 17052, + "value": 19613, }, { "category": "Pet", "configData": { "id": "Huge Hacker Axolotl", }, - "value": 32694, + "value": 32856, }, { "category": "Pet", @@ -46960,7 +52248,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Masked Fox", "pt": 2, }, - "value": 1469420, + "value": 1518813, }, { "category": "Pet", @@ -46968,7 +52256,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blazing Shark", "pt": 2, }, - "value": 11138, + "value": 8165, }, { "category": "Pet", @@ -46976,7 +52264,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hooded Dragon", "sh": true, }, - "value": 73623, + "value": 84458, }, { "category": "Pet", @@ -46985,7 +52273,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 118922, + "value": 130167, }, { "category": "Pet", @@ -46994,7 +52282,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 10934, + "value": 12318, }, { "category": "Pet", @@ -47003,14 +52291,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 10957, + "value": 11950, }, { "category": "Pet", "configData": { "id": "Hacker Cat", }, - "value": 104092432, + "value": 111008919, }, { "category": "Pet", @@ -47018,14 +52306,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hacker Cat", "pt": 2, }, - "value": 8582359, + "value": 8875108, }, { "category": "Pet", "configData": { "id": "Hacker Axolotl", }, - "value": 1298984959, + "value": 1400599037, }, { "category": "Pet", @@ -47033,7 +52321,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hacker Axolotl", "pt": 2, }, - "value": 72602331, + "value": 76162168, }, { "category": "Pet", @@ -47041,7 +52329,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hacker Axolotl", "pt": 1, }, - "value": 189641187, + "value": 200947524, }, { "category": "Pet", @@ -47049,7 +52337,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hacker Cat", "pt": 1, }, - "value": 17977281, + "value": 19105260, }, { "category": "Pet", @@ -47057,14 +52345,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Masked Fox", "sh": true, }, - "value": 19589, + "value": 19319, }, { "category": "Pet", "configData": { "id": "Hacked Computer", }, - "value": 618427816298, + "value": 423623562923, }, { "category": "Pet", @@ -47079,7 +52367,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Masked Fox", "pt": 1, }, - "value": 2768878, + "value": 3088902, }, { "category": "Pet", @@ -47087,7 +52375,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hacker Bear", "sh": true, }, - "value": 96391, + "value": 111449, }, { "category": "Pet", @@ -47096,7 +52384,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 17941, + "value": 20758, }, { "category": "Pet", @@ -47104,7 +52392,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Hacker Axolotl", "pt": 2, }, - "value": 2045, + "value": 2048, }, { "category": "Pet", @@ -47112,7 +52400,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hacker Axolotl", "sh": true, }, - "value": 3281801, + "value": 3644140, }, { "category": "Pet", @@ -47120,7 +52408,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Blazing Bat", "sh": true, }, - "value": 221, + "value": 222, }, { "category": "Pet", @@ -47129,7 +52417,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13724, + "value": 15219, }, { "category": "Pet", @@ -47138,7 +52426,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 18573, + "value": 23253, }, { "category": "Pet", @@ -47146,14 +52434,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blazing Corgi", "sh": true, }, - "value": 5613, + "value": 3947, }, { "category": "Pet", "configData": { "id": "Huge Blazing Bat", }, - "value": 5466, + "value": 5541, }, { "category": "Pet", @@ -47161,7 +52449,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blazing Bat", "pt": 2, }, - "value": 2866, + "value": 2251, }, { "category": "Pet", @@ -47170,7 +52458,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 208010, + "value": 215455, }, { "category": "Pet", @@ -47178,7 +52466,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blazing Corgi", "pt": 2, }, - "value": 7549, + "value": 5604, }, { "category": "Pet", @@ -47202,7 +52490,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blazing Bat", "sh": true, }, - "value": 1991, + "value": 1376, + }, + { + "category": "Enchant", + "configData": { + "id": "Hacker Key Hunter", + "tn": 1, + }, + "value": 52452, }, { "category": "Pet", @@ -47218,7 +52514,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Blazing Shark", "sh": true, }, - "value": 409, + "value": 416, }, { "category": "Pet", @@ -47227,14 +52523,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 446359, + "value": 469585, }, { "category": "Pet", "configData": { "id": "Titanic Blazing Dragon", }, - "value": 408, + "value": 414, }, { "category": "Pet", @@ -47243,7 +52539,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 11697, + "value": 12437, }, { "category": "Pet", @@ -47252,7 +52548,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 142, + "value": 134, }, { "category": "Pet", @@ -47261,7 +52557,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 15568, + "value": 17050, }, { "category": "Pet", @@ -47277,7 +52573,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hacked Computer", "sh": true, }, - "value": 2351084348, + "value": 1721070121, }, { "category": "Pet", @@ -47286,7 +52582,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 216, + "value": 202, }, { "category": "Pet", @@ -47295,7 +52591,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 371597323, + "value": 369784236, }, { "category": "Pet", @@ -47303,14 +52599,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hacker Cat", "sh": true, }, - "value": 232801, + "value": 245097, }, { "category": "Pet", "configData": { "id": "Hacked Skeleton", }, - "value": 90668750, + "value": 75471538, }, { "category": "Pet", @@ -47319,7 +52615,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 528832501, + "value": 395369601, }, { "category": "Pet", @@ -47327,7 +52623,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hacked Skeleton", "pt": 1, }, - "value": 19656950, + "value": 17399999, }, { "category": "Pet", @@ -47336,7 +52632,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 28880, + "value": 29561, }, { "category": "Pet", @@ -47345,7 +52641,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 42023, + "value": 44840, }, { "category": "Pet", @@ -47353,7 +52649,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hacked Skeleton", "pt": 2, }, - "value": 12609103, + "value": 12564213, }, { "category": "Pet", @@ -47370,7 +52666,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Blazing Shark", "pt": 2, }, - "value": 292, + "value": 294, }, { "category": "Pet", @@ -47405,7 +52701,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 58, + "value": 57, }, { "category": "Pet", @@ -47414,7 +52710,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 64088, + "value": 64564, }, { "category": "Pet", @@ -47423,7 +52719,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 62872, + "value": 63328, }, { "category": "Pet", @@ -47466,7 +52762,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hacked Skeleton", "sh": true, }, - "value": 195366, + "value": 178535, }, { "category": "Pet", @@ -47492,49 +52788,70 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Virus Griffin", "pt": 1, }, - "value": 15284, + "value": 18219, + }, + { + "category": "Booth", + "configData": { + "id": "Hacker", + }, + "value": 44891, + }, + { + "category": "Egg", + "configData": { + "id": "Huge Machine Egg 4", + }, + "value": 215658, }, { "category": "Pet", "configData": { "id": "Huge Vibrant Toucan", }, - "value": 28749, + "value": 53332, + }, + { + "category": "Ultimate", + "configData": { + "id": "UFO", + }, + "value": 70504, }, { "category": "Pet", "configData": { "id": "Huge Bison", }, - "value": 173570, + "value": 174556, }, { "category": "Pet", "configData": { "id": "Huge Mantis Shrimp", }, - "value": 14559, + "value": 26772, }, { "category": "Pet", "configData": { "id": "Huge Virus Griffin", }, - "value": 6734, + "value": 6967, }, { "category": "Pet", "configData": { "id": "Huge Mushroom Raccoon", }, - "value": 47977, + "value": 88644, }, { "category": "Pet", "configData": { "id": "Huge Pixie Fox", }, - "value": 3783, + "value": 7135, }, { "category": "Pet", @@ -47542,14 +52859,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Vibrant Toucan", "pt": 1, }, - "value": 2765, + "value": 5155, }, { "category": "Pet", "configData": { "id": "Matrix Monkey", }, - "value": 2328195, + "value": 2463286, }, { "category": "Pet", @@ -47557,14 +52874,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Matrix Monkey", "pt": 1, }, - "value": 456268, + "value": 571750, }, { "category": "Pet", "configData": { "id": "Virus Griffin", }, - "value": 73562, + "value": 76392, }, { "category": "Pet", @@ -47580,7 +52897,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Virus Griffin", "pt": 1, }, - "value": 1554, + "value": 1707, }, { "category": "Pet", @@ -47588,7 +52905,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Virus Griffin", "pt": 2, }, - "value": 7438, + "value": 7654, }, { "category": "Pet", @@ -47596,7 +52913,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mantis Shrimp", "pt": 2, }, - "value": 543, + "value": 986, }, { "category": "Pet", @@ -47604,7 +52921,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Matrix Monkey", "pt": 2, }, - "value": 236997, + "value": 247071, }, { "category": "Pet", @@ -47619,7 +52936,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mushroom Raccoon", "pt": 1, }, - "value": 4559, + "value": 8556, }, { "category": "Pet", @@ -47627,7 +52944,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mushroom Raccoon", "pt": 2, }, - "value": 1668, + "value": 3176, }, { "category": "Pet", @@ -47635,7 +52952,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mushroom Raccoon", "sh": true, }, - "value": 1936, + "value": 3647, }, { "category": "Pet", @@ -47651,7 +52968,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Vibrant Toucan", "sh": true, }, - "value": 1276, + "value": 2301, }, { "category": "Pet", @@ -47659,7 +52976,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Virus Griffin", "pt": 2, }, - "value": 600, + "value": 613, }, { "category": "Pet", @@ -47668,7 +52985,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 50, + "value": 100, }, { "category": "Pet", @@ -47676,7 +52993,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Virus Griffin", "sh": true, }, - "value": 354, + "value": 353, }, { "category": "Pet", @@ -47684,7 +53001,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mantis Shrimp", "sh": true, }, - "value": 630, + "value": 1156, }, { "category": "Pet", @@ -47692,7 +53009,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Bison", "sh": true, }, - "value": 3553, + "value": 3372, }, { "category": "Pet", @@ -47717,14 +53034,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Bison", "pt": 1, }, - "value": 39570, + "value": 43298, }, { "category": "Pet", "configData": { "id": "Huge Umbrella Cat", }, - "value": 959, + "value": 1777, }, { "category": "Pet", @@ -47732,7 +53049,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Vibrant Toucan", "pt": 2, }, - "value": 1040, + "value": 1980, }, { "category": "Pet", @@ -47741,7 +53058,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 206, + "value": 359, }, { "category": "Pet", @@ -47749,14 +53066,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mantis Shrimp", "pt": 1, }, - "value": 1354, + "value": 2560, }, { "category": "Pet", "configData": { "id": "Titanic Butterfly", }, - "value": 242, + "value": 446, }, { "category": "Pet", @@ -47765,7 +53082,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 19, + "value": 36, }, { "category": "Pet", @@ -47774,7 +53091,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 111, + "value": 194, }, { "category": "Pet", @@ -47782,7 +53099,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Virus Griffin", "sh": true, }, - "value": 163, + "value": 167, }, { "category": "Pet", @@ -47791,7 +53108,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 17, + "value": 22, }, { "category": "Pet", @@ -47799,7 +53116,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pixie Fox", "pt": 1, }, - "value": 366, + "value": 688, }, { "category": "Pet", @@ -47807,7 +53124,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pixie Fox", "pt": 2, }, - "value": 135, + "value": 283, }, { "category": "Pet", @@ -47815,7 +53132,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Bison", "pt": 2, }, - "value": 28966, + "value": 30576, }, { "category": "Pet", @@ -47823,7 +53140,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pixie Fox", "sh": true, }, - "value": 148, + "value": 278, }, { "category": "Pet", @@ -47831,7 +53148,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Umbrella Cat", "pt": 1, }, - "value": 99, + "value": 172, }, { "category": "Pet", @@ -47840,7 +53157,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 69, + "value": 118, }, { "category": "Pet", @@ -47849,7 +53166,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 51, + "value": 50, }, { "category": "Pet", @@ -47858,7 +53175,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 3676, + "value": 3840, }, { "category": "Pet", @@ -47866,7 +53183,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Umbrella Cat", "sh": true, }, - "value": 39, + "value": 72, }, { "category": "Pet", @@ -47875,7 +53192,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1431, + "value": 1633, }, { "category": "Pet", @@ -47884,7 +53201,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 576, + "value": 659, }, { "category": "Pet", @@ -47892,7 +53209,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Butterfly", "pt": 1, }, - "value": 31, + "value": 48, }, { "category": "Pet", @@ -47900,7 +53217,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Umbrella Cat", "pt": 2, }, - "value": 31, + "value": 63, }, { "category": "Pet", @@ -47909,7 +53226,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 32, + "value": 69, }, { "category": "Pet", @@ -47918,7 +53235,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 797, + "value": 889, }, { "category": "Pet", @@ -47944,7 +53261,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Matrix Monkey", "sh": true, }, - "value": 1321, + "value": 1390, }, { "category": "Pet", @@ -47961,7 +53278,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Butterfly", "sh": true, }, - "value": 6, + "value": 10, }, { "category": "Pet", @@ -47970,7 +53287,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 13, + "value": 21, }, { "category": "Pet", @@ -47979,7 +53296,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5, + "value": 10, }, { "category": "Pet", @@ -47995,7 +53312,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Rainbow Swirl", }, - "value": 29, + "value": 93, }, { "category": "Pet", @@ -48004,6 +53321,20 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 521, }, + { + "category": "Booth", + "configData": { + "id": "Wicked", + }, + "value": 3689, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Wicked", + }, + "value": 745, + }, { "category": "Pet", "configData": { @@ -48020,19 +53351,33 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 149, }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 29", + }, + "value": 1302358, + }, { "category": "Pet", "configData": { "id": "Huge Dark Lord", }, - "value": 26006, + "value": 25999, }, { "category": "Pet", "configData": { "id": "Angel Lamb", }, - "value": 160168903, + "value": 158375390, + }, + { + "category": "Booth", + "configData": { + "id": "Good vs Evil", + }, + "value": 230465, }, { "category": "Pet", @@ -48040,7 +53385,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Divinus", "pt": 1, }, - "value": 14030, + "value": 14028, }, { "category": "Pet", @@ -48055,7 +53400,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Demon Cat", }, - "value": 147923843, + "value": 145916199, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Good vs Evil", + }, + "value": 183732, }, { "category": "Pet", @@ -48069,7 +53421,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Flex Tiger", }, - "value": 154717, + "value": 47186, }, { "category": "Pet", @@ -48084,21 +53436,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Good vs Evil Cat", }, - "value": 365788145, + "value": 361716131, }, { "category": "Pet", "configData": { "id": "Angel Seal", }, - "value": 206846491, + "value": 203862669, }, { "category": "Pet", "configData": { "id": "Evil Ram", }, - "value": 196755545, + "value": 192872231, }, { "category": "Pet", @@ -48113,7 +53465,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Flex Fluffy Cat", }, - "value": 592274, + "value": 245577, }, { "category": "Pet", @@ -48121,21 +53473,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Good vs Evil Cat", "pt": 1, }, - "value": 70635223, + "value": 69526108, }, { "category": "Pet", "configData": { "id": "Flex Bear", }, - "value": 414958, + "value": 108728, }, { "category": "Pet", "configData": { "id": "Huge Flex Tiger", }, - "value": 8116, + "value": 8292, }, { "category": "Pet", @@ -48143,21 +53495,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Demon Cat", "pt": 1, }, - "value": 30359737, + "value": 29669128, }, { "category": "Pet", "configData": { "id": "Chimera", }, - "value": 393093480, + "value": 385486045, }, { "category": "Pet", "configData": { "id": "Heavenly Dove", }, - "value": 425501323, + "value": 418269532, }, { "category": "Pet", @@ -48165,7 +53517,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Flex Fluffy Cat", "pt": 2, }, - "value": 423, + "value": 440, }, { "category": "Pet", @@ -48173,7 +53525,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flex Bear", "sh": true, }, - "value": 8466, + "value": 3028, }, { "category": "Pet", @@ -48183,12 +53535,19 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 3480, }, + { + "category": "Misc", + "configData": { + "id": "Demon Horn", + }, + "value": 655566040, + }, { "category": "Pet", "configData": { "id": "Evil Imp", }, - "value": 168071055109, + "value": 163685003651, }, { "category": "Pet", @@ -48196,21 +53555,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Lamb", "sh": true, }, - "value": 302756, + "value": 297279, }, { "category": "Pet", "configData": { "id": "Titanic Flex Cat", }, - "value": 573, + "value": 588, }, { "category": "Pet", "configData": { "id": "Angel Pegasus", }, - "value": 154272344433, + "value": 150331477487, }, { "category": "Pet", @@ -48218,7 +53577,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Seal", "sh": true, }, - "value": 390019, + "value": 383136, }, { "category": "Pet", @@ -48226,7 +53585,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Seal", "pt": 1, }, - "value": 32376799, + "value": 31947932, }, { "category": "Pet", @@ -48234,7 +53593,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Seal", "pt": 2, }, - "value": 10227161, + "value": 10112210, }, { "category": "Pet", @@ -48242,7 +53601,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Heavenly Dove", "pt": 2, }, - "value": 16741302, + "value": 16552103, }, { "category": "Pet", @@ -48258,7 +53617,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Demon Cat", "sh": true, }, - "value": 271735, + "value": 266381, }, { "category": "Pet", @@ -48266,14 +53625,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flex Fluffy Cat", "pt": 2, }, - "value": 16391, + "value": 9306, }, { "category": "Pet", "configData": { "id": "Huge Flex Fluffy Cat", }, - "value": 14480, + "value": 14783, }, { "category": "Pet", @@ -48281,7 +53640,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flex Bear", "pt": 2, }, - "value": 11582, + "value": 6162, }, { "category": "Pet", @@ -48289,7 +53648,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flex Tiger", "pt": 2, }, - "value": 4309, + "value": 2622, }, { "category": "Pet", @@ -48297,7 +53656,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Good vs Evil Cat", "sh": true, }, - "value": 604581, + "value": 594834, }, { "category": "Pet", @@ -48305,7 +53664,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flex Tiger", "sh": true, }, - "value": 3227, + "value": 1286, }, { "category": "Pet", @@ -48313,7 +53672,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Lamb", "pt": 1, }, - "value": 36608168, + "value": 36052626, }, { "category": "Pet", @@ -48321,7 +53680,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Good vs Evil Cat", "pt": 2, }, - "value": 13193016, + "value": 13077119, + }, + { + "category": "Misc", + "configData": { + "id": "Angel Feather", + }, + "value": 618349728, }, { "category": "Pet", @@ -48329,7 +53695,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flex Fluffy Cat", "sh": true, }, - "value": 12080, + "value": 4292, }, { "category": "Pet", @@ -48337,7 +53703,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Evil Ram", "pt": 1, }, - "value": 32405653, + "value": 30909509, }, { "category": "Pet", @@ -48345,14 +53711,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Demon Cat", "pt": 2, }, - "value": 8481749, + "value": 8424242, }, { "category": "Pet", "configData": { "id": "Evil Deer", }, - "value": 87275095552, + "value": 85089251281, }, { "category": "Pet", @@ -48360,7 +53726,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Evil Ram", "sh": true, }, - "value": 385613, + "value": 377961, }, { "category": "Pet", @@ -48378,7 +53744,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 329, + "value": 292, }, { "category": "Pet", @@ -48386,7 +53752,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Lamb", "pt": 2, }, - "value": 9721219, + "value": 9628641, }, { "category": "Pet", @@ -48394,14 +53760,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Flex Fluffy Cat", "sh": true, }, - "value": 600, + "value": 613, }, { "category": "Pet", "configData": { "id": "Avenging Griffin", }, - "value": 80076229336, + "value": 78014974940, }, { "category": "Pet", @@ -48409,7 +53775,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chimera", "sh": true, }, - "value": 779407, + "value": 765295, }, { "category": "Pet", @@ -48417,7 +53783,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Evil Ram", "pt": 2, }, - "value": 10832372, + "value": 10866682, }, { "category": "Pet", @@ -48425,7 +53791,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Heavenly Dove", "sh": true, }, - "value": 814868, + "value": 796795, }, { "category": "Pet", @@ -48442,7 +53808,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Heavenly Dove", "pt": 1, }, - "value": 53649437, + "value": 53084134, }, { "category": "Pet", @@ -48458,7 +53824,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Pentangelus", }, - "value": 1485461421, + "value": 1451514561, }, { "category": "Pet", @@ -48466,7 +53832,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chimera", "pt": 1, }, - "value": 52649168, + "value": 52097293, }, { "category": "Pet", @@ -48474,7 +53840,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Flex Tiger", "sh": true, }, - "value": 345, + "value": 349, }, { "category": "Pet", @@ -48482,7 +53848,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Evil Imp", "pt": 1, }, - "value": 32000364353, + "value": 31602462477, }, { "category": "Pet", @@ -48490,7 +53856,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Pegasus", "pt": 1, }, - "value": 29461032949, + "value": 29025296358, }, { "category": "Pet", @@ -48498,7 +53864,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Avenging Griffin", "pt": 2, }, - "value": 9360262951, + "value": 9096183612, }, { "category": "Pet", @@ -48506,7 +53872,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Pegasus", "pt": 2, }, - "value": 13688826412, + "value": 13375710287, }, { "category": "Pet", @@ -48514,7 +53880,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Avenging Griffin", "pt": 1, }, - "value": 17221007925, + "value": 16956022308, }, { "category": "Pet", @@ -48522,7 +53888,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Pegasus", "sh": true, }, - "value": 549693494, + "value": 536202401, }, { "category": "Pet", @@ -48530,7 +53896,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Evil Deer", "pt": 1, }, - "value": 18659794503, + "value": 18415869141, }, { "category": "Pet", @@ -48538,14 +53904,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Evil Imp", "sh": true, }, - "value": 596995615, + "value": 583781999, }, { "category": "Pet", "configData": { "id": "Demon Serpents", }, - "value": 1619070932, + "value": 1584007986, }, { "category": "Pet", @@ -48554,7 +53920,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 228, + "value": 209, }, { "category": "Pet", @@ -48562,7 +53928,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chimera", "pt": 2, }, - "value": 16905030, + "value": 16559738, }, { "category": "Pet", @@ -48571,7 +53937,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 92891, + "value": 91280, }, { "category": "Pet", @@ -48579,7 +53945,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Evil Imp", "pt": 2, }, - "value": 14889907476, + "value": 14588561940, }, { "category": "Pet", @@ -48588,7 +53954,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 35751, + "value": 35524, }, { "category": "Pet", @@ -48596,7 +53962,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Avenging Griffin", "sh": true, }, - "value": 312133899, + "value": 305004193, }, { "category": "Pet", @@ -48604,7 +53970,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Evil Deer", "sh": true, }, - "value": 337278454, + "value": 330397963, }, { "category": "Pet", @@ -48613,7 +53979,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 141505, + "value": 140382, }, { "category": "Pet", @@ -48622,7 +53988,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 73061, + "value": 68486, }, { "category": "Pet", @@ -48631,7 +53997,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 82496, + "value": 77379, }, { "category": "Pet", @@ -48640,7 +54006,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 28813, + "value": 28875, }, { "category": "Pet", @@ -48648,7 +54014,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Evil Deer", "pt": 2, }, - "value": 10170754575, + "value": 9905866213, }, { "category": "Pet", @@ -48657,7 +54023,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 64626, + "value": 63425, }, { "category": "Pet", @@ -48666,7 +54032,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 29273, + "value": 29074, }, { "category": "Pet", @@ -48675,7 +54041,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 82890, + "value": 81666, }, { "category": "Pet", @@ -48684,7 +54050,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 27464, + "value": 27367, }, { "category": "Pet", @@ -48693,7 +54059,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 42422, + "value": 42013, }, { "category": "Pet", @@ -48702,7 +54068,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 35397, + "value": 35807, }, { "category": "Pet", @@ -48711,7 +54077,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 94437, + "value": 91683, }, { "category": "Pet", @@ -48720,7 +54086,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 46692, + "value": 45999, }, { "category": "Pet", @@ -48729,7 +54095,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 66434634, + "value": 64751580, }, { "category": "Pet", @@ -48738,7 +54104,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 61882489, + "value": 60157424, }, { "category": "Pet", @@ -48746,7 +54112,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pentangelus", "pt": 2, }, - "value": 181536655, + "value": 176363355, }, { "category": "Pet", @@ -48755,7 +54121,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 120057238, + "value": 118290309, }, { "category": "Pet", @@ -48763,7 +54129,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Demon Serpents", "pt": 2, }, - "value": 196619267, + "value": 191302449, }, { "category": "Pet", @@ -48772,7 +54138,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 75588844, + "value": 74486736, }, { "category": "Pet", @@ -48780,7 +54146,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pentangelus", "pt": 1, }, - "value": 324043570, + "value": 320221365, }, { "category": "Pet", @@ -48789,7 +54155,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 44620513, + "value": 43237303, }, { "category": "Pet", @@ -48798,7 +54164,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 129331592, + "value": 127784829, }, { "category": "Pet", @@ -48806,7 +54172,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Demon Serpents", "pt": 1, }, - "value": 350261301, + "value": 346329441, }, { "category": "Pet", @@ -48815,7 +54181,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 47692824, + "value": 46319788, }, { "category": "Pet", @@ -48824,7 +54190,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 80411912, + "value": 79588272, }, { "category": "Pet", @@ -48832,14 +54198,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Demon Serpents", "sh": true, }, - "value": 5083732, + "value": 4987810, }, { "category": "Pet", "configData": { "id": "Dark Lord", }, - "value": 419154784, + "value": 412792474, }, { "category": "Pet", @@ -48855,7 +54221,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Divinus", }, - "value": 454278309, + "value": 447788336, }, { "category": "Pet", @@ -48864,7 +54230,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1120449, + "value": 1101130, }, { "category": "Pet", @@ -48872,7 +54238,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Flex Tiger", "pt": 2, }, - "value": 223, + "value": 229, }, { "category": "Pet", @@ -48880,7 +54246,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Divinus", "pt": 2, }, - "value": 13182123, + "value": 13043637, }, { "category": "Pet", @@ -48889,7 +54255,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1200790, + "value": 1186111, }, { "category": "Pet", @@ -48897,7 +54263,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Divinus", "pt": 1, }, - "value": 71021716, + "value": 70420814, }, { "category": "Pet", @@ -48905,7 +54271,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dark Lord", "pt": 2, }, - "value": 13216722, + "value": 13089318, }, { "category": "Pet", @@ -48913,7 +54279,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dark Lord", "pt": 1, }, - "value": 64386106, + "value": 63986350, + }, + { + "category": "Lootbox", + "configData": { + "id": "Evil Gift", + }, + "value": 60486791, + }, + { + "category": "Lootbox", + "configData": { + "id": "Good Gift", + }, + "value": 56475678, }, { "category": "Pet", @@ -48921,7 +54301,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pentangelus", "sh": true, }, - "value": 4704854, + "value": 4591671, }, { "category": "Pet", @@ -48930,7 +54310,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 89, + "value": 87, }, { "category": "Pet", @@ -48939,14 +54319,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 734187, + "value": 711566, }, { "category": "Pet", "configData": { "id": "Huge Evil Imp", }, - "value": 37086, + "value": 37970, }, { "category": "Pet", @@ -48954,7 +54334,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Evil Imp", "pt": 1, }, - "value": 8841, + "value": 9002, }, { "category": "Pet", @@ -48963,14 +54343,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 789008, + "value": 766952, + }, + { + "category": "Lootbox", + "configData": { + "id": "Good vs Evil Gift", + }, + "value": 69642189, }, { "category": "Pet", "configData": { "id": "Huge Avenging Griffin", }, - "value": 34996, + "value": 35862, }, { "category": "Pet", @@ -48978,7 +54365,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Evil Imp", "pt": 2, }, - "value": 2743, + "value": 2776, }, { "category": "Pet", @@ -48994,14 +54381,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Avenging Griffin", "pt": 2, }, - "value": 2564, + "value": 2593, }, { "category": "Pet", "configData": { "id": "Huge Good vs Evil Cat", }, - "value": 7976, + "value": 8528, }, { "category": "Pet", @@ -49009,7 +54396,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Good vs Evil Cat", "pt": 1, }, - "value": 1594, + "value": 1699, }, { "category": "Pet", @@ -49025,7 +54412,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Avenging Griffin", "pt": 1, }, - "value": 8624, + "value": 8815, }, { "category": "Pet", @@ -49034,7 +54421,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 140, + "value": 139, }, { "category": "Pet", @@ -49051,7 +54438,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 33774, + "value": 33644, }, { "category": "Pet", @@ -49059,7 +54446,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Good vs Evil Cat", "pt": 2, }, - "value": 338, + "value": 359, }, { "category": "Pet", @@ -49067,7 +54454,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Divinus", "sh": true, }, - "value": 878960, + "value": 864715, }, { "category": "Pet", @@ -49076,7 +54463,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 126318, + "value": 124891, }, { "category": "Pet", @@ -49085,7 +54472,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 27712, + "value": 27626, }, { "category": "Pet", @@ -49094,7 +54481,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 122174, + "value": 120954, }, { "category": "Pet", @@ -49137,7 +54524,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dark Lord", "sh": true, }, - "value": 843023, + "value": 828825, }, { "category": "Pet", @@ -49154,7 +54541,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Atomic Axolotl", "sh": true, }, - "value": 12, + "value": 42, }, { "category": "Pet", @@ -49163,7 +54550,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 5, + "value": 9, }, { "category": "Pet", @@ -49181,7 +54568,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 6, + "value": 11, }, { "category": "Pet", @@ -49189,14 +54576,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Butterfly", "pt": 2, }, - "value": 11, + "value": 13, }, { "category": "Pet", "configData": { "id": "Huge Punksky", }, - "value": 87650, + "value": 121546, }, { "category": "Pet", @@ -49204,7 +54591,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Punksky", "pt": 2, }, - "value": 14621, + "value": 20450, }, { "category": "Pet", @@ -49212,7 +54599,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Punksky", "pt": 1, }, - "value": 21249, + "value": 28085, }, { "category": "Pet", @@ -49220,7 +54607,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Punksky", "sh": true, }, - "value": 1835, + "value": 2535, }, { "category": "Pet", @@ -49229,7 +54616,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 433, + "value": 576, }, { "category": "Pet", @@ -49238,7 +54625,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 325, + "value": 446, }, { "category": "Pet", @@ -49247,7 +54634,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5, + "value": 8, }, { "category": "Pet", @@ -49256,7 +54643,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 4, + "value": 9, }, { "category": "Pet", @@ -49274,7 +54661,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 6, + "value": 12, }, { "category": "Pet", @@ -49283,7 +54670,23 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3, + "value": 9, + }, + { + "category": "Enchant", + "configData": { + "id": "Demonic", + "tn": 1, + }, + "value": 123115, + }, + { + "category": "Enchant", + "configData": { + "id": "Diamond Gift Hunter", + "tn": 1, + }, + "value": 21880, }, { "category": "Pet", @@ -49297,21 +54700,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Huge Warrior Wolf", }, - "value": 16155, + "value": 16146, }, { "category": "Pet", "configData": { "id": "Angel Fawn", }, - "value": 560457396, + "value": 552612396, }, { "category": "Pet", "configData": { "id": "Archangel Cat", }, - "value": 123552560, + "value": 121953754, }, { "category": "Pet", @@ -49326,14 +54729,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Demon Dog", }, - "value": 119188067, + "value": 117502571, }, { "category": "Pet", "configData": { "id": "Evil Bat", }, - "value": 525422806, + "value": 517431012, }, { "category": "Pet", @@ -49341,7 +54744,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Fawn", "pt": 2, }, - "value": 17527212, + "value": 17291542, }, { "category": "Pet", @@ -49349,7 +54752,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Archangel Cat", "pt": 2, }, - "value": 5583660, + "value": 5502858, }, { "category": "Pet", @@ -49357,7 +54760,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Archangel Cat", "pt": 1, }, - "value": 22518217, + "value": 22259402, }, { "category": "Pet", @@ -49365,7 +54768,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Archangel Cat", "sh": true, }, - "value": 232064, + "value": 227763, }, { "category": "Pet", @@ -49373,7 +54776,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Fawn", "pt": 1, }, - "value": 91378054, + "value": 90727766, + }, + { + "category": "Misc", + "configData": { + "id": "Diamond Gift Bag", + }, + "value": 606491350, }, { "category": "Pet", @@ -49381,7 +54791,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Demon Dog", "sh": true, }, - "value": 241424, + "value": 236979, }, { "category": "Pet", @@ -49389,7 +54799,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Evil Bat", "pt": 2, }, - "value": 17643813, + "value": 17454307, }, { "category": "Pet", @@ -49397,7 +54807,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Evil Bat", "pt": 1, }, - "value": 83853085, + "value": 83355043, }, { "category": "Pet", @@ -49405,7 +54815,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Demon Dog", "pt": 2, }, - "value": 5949129, + "value": 5868131, }, { "category": "Pet", @@ -49413,7 +54823,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Demon Dog", "pt": 1, }, - "value": 21743613, + "value": 21504215, + }, + { + "category": "Enchant", + "configData": { + "id": "Angelic", + "tn": 1, + }, + "value": 159674, }, { "category": "Pet", @@ -49430,7 +54848,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 42970, + "value": 42676, }, { "category": "Pet", @@ -49439,7 +54857,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 14413, + "value": 14302, }, { "category": "Pet", @@ -49447,7 +54865,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Pony", "pt": 1, }, - "value": 33275582568, + "value": 32580284326, }, { "category": "Pet", @@ -49456,7 +54874,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 154233, + "value": 152168, }, { "category": "Pet", @@ -49464,7 +54882,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Pony", "pt": 2, }, - "value": 9489242447, + "value": 9250649621, }, { "category": "Pet", @@ -49472,7 +54890,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Moth", "pt": 1, }, - "value": 47171480379, + "value": 46128622119, }, { "category": "Pet", @@ -49480,7 +54898,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Moth", "pt": 2, }, - "value": 12337851364, + "value": 12078954300, }, { "category": "Pet", @@ -49488,14 +54906,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Evil Bat", "sh": true, }, - "value": 1066555, + "value": 1049766, }, { "category": "Pet", "configData": { "id": "Evil Minotaur", }, - "value": 91365902335, + "value": 88862386319, }, { "category": "Pet", @@ -49503,14 +54921,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Evil Minotaur", "pt": 1, }, - "value": 47818701492, + "value": 46771103664, }, { "category": "Pet", "configData": { "id": "Hell Scorpion", }, - "value": 59511207842, + "value": 57853478600, }, { "category": "Pet", @@ -49518,7 +54936,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Fawn", "sh": true, }, - "value": 1095150, + "value": 1077260, }, { "category": "Pet", @@ -49534,7 +54952,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Warrior Wolf", "sh": true, }, - "value": 462, + "value": 461, }, { "category": "Pet", @@ -49543,7 +54961,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 50385, + "value": 49878, }, { "category": "Pet", @@ -49568,7 +54986,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 18537, + "value": 18423, }, { "category": "Pet", @@ -49576,7 +54994,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hell Scorpion", "pt": 2, }, - "value": 9845303255, + "value": 9605520563, }, { "category": "Pet", @@ -49584,7 +55002,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hell Scorpion", "pt": 1, }, - "value": 33975874453, + "value": 33258911784, }, { "category": "Pet", @@ -49592,7 +55010,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Evil Minotaur", "pt": 2, }, - "value": 12703700265, + "value": 12446062815, }, { "category": "Pet", @@ -49601,14 +55019,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 39951, + "value": 39604, }, { "category": "Pet", "configData": { "id": "Good vs Evil Dragon", }, - "value": 30978895942, + "value": 30022556692, }, { "category": "Pet", @@ -49617,7 +55035,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 34309, + "value": 33928, }, { "category": "Pet", @@ -49626,21 +55044,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 154277, + "value": 152670, }, { "category": "Pet", "configData": { "id": "Angel Moth", }, - "value": 90960436593, + "value": 88445583121, }, { "category": "Pet", "configData": { "id": "Angel Pony", }, - "value": 58600056569, + "value": 57080508795, }, { "category": "Pet", @@ -49648,7 +55066,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Good vs Evil Dragon", "pt": 1, }, - "value": 5867316562, + "value": 5764095998, }, { "category": "Pet", @@ -49656,7 +55074,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Good vs Evil Dragon", "pt": 2, }, - "value": 3636535382, + "value": 3544996269, }, { "category": "Pet", @@ -49665,7 +55083,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 206589003, + "value": 202922307, }, { "category": "Pet", @@ -49673,7 +55091,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Moth", "sh": true, }, - "value": 308474386, + "value": 302146665, }, { "category": "Pet", @@ -49681,7 +55099,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Evil Minotaur", "sh": true, }, - "value": 314241125, + "value": 307944314, }, { "category": "Pet", @@ -49698,14 +55116,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Good vs Evil Dragon", "sh": true, }, - "value": 125280044, + "value": 122704484, }, { "category": "Pet", "configData": { "id": "Devil Agony", }, - "value": 1148007328, + "value": 1124164110, }, { "category": "Pet", @@ -49714,7 +55132,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 26852836, + "value": 26486583, }, { "category": "Pet", @@ -49722,7 +55140,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Pony", "sh": true, }, - "value": 208669420, + "value": 205419513, }, { "category": "Pet", @@ -49730,7 +55148,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hell Scorpion", "sh": true, }, - "value": 215233526, + "value": 211773221, }, { "category": "Pet", @@ -49739,7 +55157,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 58260953, + "value": 56726403, }, { "category": "Pet", @@ -49748,7 +55166,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 47258285, + "value": 45956064, }, { "category": "Pet", @@ -49757,7 +55175,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 155020543, + "value": 152571850, }, { "category": "Pet", @@ -49765,7 +55183,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Devil Agony", "pt": 1, }, - "value": 664721997, + "value": 653799713, }, { "category": "Pet", @@ -49773,7 +55191,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Devil Agony", "pt": 2, }, - "value": 195396473, + "value": 190260092, }, { "category": "Pet", @@ -49782,7 +55200,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 56779339, + "value": 55230062, }, { "category": "Pet", @@ -49791,7 +55209,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 204548269, + "value": 200496287, }, { "category": "Pet", @@ -49800,7 +55218,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 45629281, + "value": 44259785, }, { "category": "Pet", @@ -49809,14 +55227,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 152752485, + "value": 150444001, }, { "category": "Pet", "configData": { "id": "Sage Axolotl", }, - "value": 1128446456, + "value": 1103677235, }, { "category": "Pet", @@ -49824,7 +55242,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sage Axolotl", "pt": 2, }, - "value": 188043828, + "value": 182658722, }, { "category": "Pet", @@ -49832,7 +55250,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sage Axolotl", "pt": 1, }, - "value": 650077486, + "value": 639379769, }, { "category": "Pet", @@ -49841,7 +55259,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 17889926, + "value": 17398110, }, { "category": "Pet", @@ -49849,7 +55267,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Warrior Wolf", "pt": 1, }, - "value": 1260319, + "value": 1237193, }, { "category": "Pet", @@ -49874,14 +55292,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Warrior Wolf", }, - "value": 2278706, + "value": 2233605, }, { "category": "Pet", "configData": { "id": "Devil Dominus", }, - "value": 2318005, + "value": 2276093, }, { "category": "Pet", @@ -49889,7 +55307,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Devil Dominus", "pt": 1, }, - "value": 1291450, + "value": 1270493, }, { "category": "Pet", @@ -49897,7 +55315,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Warrior Wolf", "pt": 2, }, - "value": 346166, + "value": 335719, }, { "category": "Pet", @@ -49905,7 +55323,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Devil Dominus", "pt": 2, }, - "value": 361657, + "value": 350787, }, { "category": "Pet", @@ -49914,7 +55332,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2418424, + "value": 2390828, }, { "category": "Pet", @@ -49930,7 +55348,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sage Axolotl", "sh": true, }, - "value": 3214344, + "value": 3165409, }, { "category": "Pet", @@ -49939,7 +55357,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 824296, + "value": 795749, }, { "category": "Pet", @@ -49948,14 +55366,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 761006, + "value": 735929, }, { "category": "Pet", "configData": { "id": "Huge Good vs Evil Dragon", }, - "value": 1979, + "value": 1976, }, { "category": "Pet", @@ -49963,14 +55381,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Devil Agony", "sh": true, }, - "value": 3326358, + "value": 3280455, }, { "category": "Pet", "configData": { "id": "Huge Sage Axolotl", }, - "value": 10555, + "value": 11106, }, { "category": "Pet", @@ -49979,14 +55397,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2364149, + "value": 2328746, }, { "category": "Pet", "configData": { "id": "Huge Devil Agony", }, - "value": 10820, + "value": 11332, }, { "category": "Pet", @@ -50019,7 +55437,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Sage Axolotl", "pt": 1, }, - "value": 3597, + "value": 3703, }, { "category": "Pet", @@ -50027,7 +55445,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Devil Agony", "pt": 1, }, - "value": 3648, + "value": 3767, }, { "category": "Pet", @@ -50035,7 +55453,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Devil Agony", "pt": 2, }, - "value": 761, + "value": 777, }, { "category": "Pet", @@ -50069,7 +55487,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Warrior Wolf", "sh": true, }, - "value": 1244, + "value": 1225, }, { "category": "Pet", @@ -50078,7 +55496,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 3008, + "value": 2952, }, { "category": "Pet", @@ -50086,7 +55504,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Sage Axolotl", "pt": 2, }, - "value": 734, + "value": 747, }, { "category": "Pet", @@ -50104,7 +55522,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2779, + "value": 2728, }, { "category": "Pet", @@ -50113,7 +55531,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 4308, + "value": 4211, }, { "category": "Pet", @@ -50121,7 +55539,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Devil Dominus", "sh": true, }, - "value": 1388, + "value": 1341, }, { "category": "Pet", @@ -50138,7 +55556,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 4757, + "value": 4653, }, { "category": "Pet", @@ -50147,7 +55565,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1, + "value": 2, }, { "category": "Pet", @@ -50173,7 +55591,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Party Cat", "sh": true, }, - "value": 2, + "value": 5, }, { "category": "Pet", @@ -50184,6 +55602,13 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 2, }, + { + "category": "Booth", + "configData": { + "id": "Safety", + }, + "value": 3632, + }, { "category": "Pet", "configData": { @@ -50191,6 +55616,13 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 523, }, + { + "category": "Hoverboard", + "configData": { + "id": "Safety", + }, + "value": 748, + }, { "category": "Pet", "configData": { @@ -50212,7 +55644,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Titanic Dino Cat", }, - "value": 1295, + "value": 1341, }, { "category": "Pet", @@ -50228,14 +55660,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Corgi", "pt": 1, }, - "value": 51231082, + "value": 50393515, }, { "category": "Pet", "configData": { "id": "UV Cat", }, - "value": 416962997, + "value": 408684344, }, { "category": "Pet", @@ -50243,14 +55675,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "UV Cat", "pt": 2, }, - "value": 11439222, + "value": 11362243, }, { "category": "Pet", "configData": { "id": "Rave Corgi", }, - "value": 360372632, + "value": 355284980, }, { "category": "Pet", @@ -50258,7 +55690,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Corgi", "pt": 2, }, - "value": 17415520, + "value": 17221392, }, { "category": "Pet", @@ -50266,7 +55698,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "UV Cat", "pt": 1, }, - "value": 53698106, + "value": 53331486, + }, + { + "category": "Misc", + "configData": { + "id": "Lucky Tile", + }, + "value": 18487168, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Rave", + }, + "value": 398363, + }, + { + "category": "Booth", + "configData": { + "id": "Rave", + }, + "value": 470780, }, { "category": "Pet", @@ -50274,7 +55727,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "UV Cat", "sh": true, }, - "value": 652093, + "value": 638144, }, { "category": "Pet", @@ -50283,14 +55736,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 93380, + "value": 93252, }, { "category": "Pet", "configData": { "id": "DJ Panda", }, - "value": 647171918, + "value": 634532783, }, { "category": "Pet", @@ -50298,7 +55751,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "DJ Panda", "pt": 1, }, - "value": 80310952, + "value": 79437864, }, { "category": "Pet", @@ -50306,7 +55759,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Troll", "pt": 1, }, - "value": 60415126398, + "value": 59296762073, }, { "category": "Pet", @@ -50314,14 +55767,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "DJ Panda", "pt": 2, }, - "value": 30395922, + "value": 29997854, }, { "category": "Pet", "configData": { "id": "Rave Troll", }, - "value": 397372740897, + "value": 384481244285, }, { "category": "Pet", @@ -50329,7 +55782,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "DJ Panda", "sh": true, }, - "value": 1262669, + "value": 1236978, }, { "category": "Pet", @@ -50337,7 +55790,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Corgi", "sh": true, }, - "value": 681071, + "value": 667941, }, { "category": "Pet", @@ -50346,7 +55799,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 148619, + "value": 146708, }, { "category": "Pet", @@ -50354,7 +55807,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Rave Meebo in a Spaceship", "pt": 1, }, - "value": 14452, + "value": 14438, }, { "category": "Pet", @@ -50363,7 +55816,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 91672, + "value": 91028, }, { "category": "Pet", @@ -50372,7 +55825,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 50586, + "value": 50401, }, { "category": "Pet", @@ -50380,7 +55833,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Troll", "pt": 2, }, - "value": 31029739664, + "value": 30458659863, }, { "category": "Pet", @@ -50389,21 +55842,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 29506, + "value": 29855, + }, + { + "category": "Misc", + "configData": { + "id": "Ultra Lucky Tile", + }, + "value": 3253348, }, { "category": "Pet", "configData": { "id": "Rave Bunny", }, - "value": 37895599224, + "value": 36704341125, }, { "category": "Pet", "configData": { "id": "Huge Rave Meebo in a Spaceship", }, - "value": 32777, + "value": 32743, }, { "category": "Pet", @@ -50412,7 +55872,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 84076, + "value": 83501, }, { "category": "Pet", @@ -50420,14 +55880,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Kitsune Fox", "pt": 1, }, - "value": 17509, + "value": 17496, }, { "category": "Pet", "configData": { "id": "Huge Kitsune Fox", }, - "value": 40675, + "value": 40648, }, { "category": "Pet", @@ -50435,7 +55895,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Bunny", "pt": 1, }, - "value": 6850156248, + "value": 6711234576, }, { "category": "Pet", @@ -50443,7 +55903,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Troll", "sh": true, }, - "value": 1405155836, + "value": 1366188609, }, { "category": "Pet", @@ -50451,7 +55911,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Bunny", "pt": 2, }, - "value": 4154473091, + "value": 4063064746, }, { "category": "Pet", @@ -50459,7 +55919,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Rave Meebo in a Spaceship", "pt": 2, }, - "value": 4009, + "value": 4008, }, { "category": "Pet", @@ -50468,7 +55928,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 231548835, + "value": 227549409, }, { "category": "Pet", @@ -50477,7 +55937,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 135488685, + "value": 132305796, }, { "category": "Pet", @@ -50508,7 +55968,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "UV Kitsune", }, - "value": 3010489339, + "value": 2941622995, }, { "category": "Pet", @@ -50516,7 +55976,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "UV Kitsune", "pt": 2, }, - "value": 273781432, + "value": 267309926, }, { "category": "Pet", @@ -50532,7 +55992,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "UV Kitsune", "pt": 1, }, - "value": 516430936, + "value": 509608158, }, { "category": "Pet", @@ -50548,7 +56008,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Rave Meebo in a Spaceship", }, - "value": 1157326954, + "value": 1136627316, }, { "category": "Pet", @@ -50556,7 +56016,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Bunny", "sh": true, }, - "value": 135863202, + "value": 132551578, }, { "category": "Pet", @@ -50565,7 +56025,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 26337828, + "value": 25908075, }, { "category": "Pet", @@ -50573,7 +56033,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Meebo in a Spaceship", "pt": 2, }, - "value": 54127647, + "value": 53082853, }, { "category": "Pet", @@ -50582,7 +56042,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 17670011, + "value": 17168124, + }, + { + "category": "Lootbox", + "configData": { + "id": "Rave Gift", + }, + "value": 81121972, }, { "category": "Pet", @@ -50591,7 +56058,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1555747, + "value": 1531679, }, { "category": "Pet", @@ -50599,7 +56066,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Meebo in a Spaceship", "pt": 1, }, - "value": 162636998, + "value": 161796942, }, { "category": "Pet", @@ -50614,7 +56081,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "UV Kitsune", "sh": true, }, - "value": 8383096, + "value": 8210157, }, { "category": "Pet", @@ -50622,7 +56089,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Kitsune Fox", "sh": true, }, - "value": 994, + "value": 991, }, { "category": "Pet", @@ -50631,7 +56098,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 990491, + "value": 963719, }, { "category": "Pet", @@ -50678,7 +56145,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Huge Rave Troll", }, - "value": 22229, + "value": 24257, }, { "category": "Pet", @@ -50686,7 +56153,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Rave Troll", "pt": 1, }, - "value": 4571, + "value": 4992, }, { "category": "Pet", @@ -50728,7 +56195,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Meebo in a Spaceship", "sh": true, }, - "value": 2547640, + "value": 2501849, }, { "category": "Pet", @@ -50752,7 +56219,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Rave Troll", "pt": 2, }, - "value": 910, + "value": 995, }, { "category": "Pet", @@ -50761,7 +56228,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 342869, + "value": 337528, }, { "category": "Pet", @@ -50786,7 +56253,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Dino Cat", "sh": true, }, - "value": 33, + "value": 34, }, { "category": "Pet", @@ -50795,7 +56262,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 149643, + "value": 147253, }, { "category": "Pet", @@ -50803,7 +56270,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Rave Troll", "sh": true, }, - "value": 162, + "value": 187, }, { "category": "Pet", @@ -50812,7 +56279,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 47, + "value": 49, }, { "category": "Pet", @@ -50847,7 +56314,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5, + "value": 10, }, { "category": "Pet", @@ -50855,7 +56322,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rainbow Swirl", "pt": 2, }, - "value": 3, + "value": 6, }, { "category": "Pet", @@ -50864,7 +56331,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5, + "value": 6, }, { "category": "Pet", @@ -50873,7 +56340,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1, + "value": 7, }, { "category": "Pet", @@ -50889,21 +56356,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Valkyrie Dog", }, - "value": 320510, + "value": 140820, }, { "category": "Pet", "configData": { "id": "Valkyrie Dragon", }, - "value": 223858, + "value": 61441, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 30", + }, + "value": 701429, }, { "category": "Pet", "configData": { "id": "Huge Valkyrie Dog", }, - "value": 7917, + "value": 8071, }, { "category": "Pet", @@ -50911,21 +56385,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Valkyrie Dragon", "pt": 2, }, - "value": 6203, + "value": 3271, }, { "category": "Pet", "configData": { "id": "Rave Cat", }, - "value": 283419665396, + "value": 273959562138, }, { "category": "Pet", "configData": { "id": "Huge Disco Ball Dragon", }, - "value": 12898, + "value": 12881, }, { "category": "Pet", @@ -50933,7 +56407,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Cat", "pt": 2, }, - "value": 20275717517, + "value": 19901530776, }, { "category": "Pet", @@ -50941,7 +56415,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Cat", "pt": 1, }, - "value": 46055176575, + "value": 45072359318, }, { "category": "Pet", @@ -50949,21 +56423,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Valkyrie Wolf", "pt": 2, }, - "value": 2246, + "value": 1459, }, { "category": "Pet", "configData": { "id": "Valkyrie Wolf", }, - "value": 82906, + "value": 25827, }, { "category": "Pet", "configData": { "id": "Rave Jaguar", }, - "value": 39185603651, + "value": 16304020188, }, { "category": "Pet", @@ -50971,14 +56445,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Jaguar", "pt": 1, }, - "value": 7623827377, + "value": 2560565786, }, { "category": "Pet", "configData": { "id": "Rave Axolotl", }, - "value": 125206436172, + "value": 121095511637, }, { "category": "Pet", @@ -50986,7 +56460,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Axolotl", "pt": 1, }, - "value": 23572809850, + "value": 23090061218, }, { "category": "Pet", @@ -50994,7 +56468,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Valkyrie Dog", "pt": 2, }, - "value": 8920, + "value": 5025, }, { "category": "Pet", @@ -51002,7 +56476,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Disco Ball Dragon", "pt": 1, }, - "value": 6320, + "value": 6312, }, { "category": "Pet", @@ -51010,7 +56484,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Valkyrie Dog", "sh": true, }, - "value": 6518, + "value": 2533, }, { "category": "Pet", @@ -51018,7 +56492,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Disco Ball Dragon", "pt": 2, }, - "value": 1758, + "value": 1757, }, { "category": "Pet", @@ -51026,7 +56500,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Valkyrie Dragon", "sh": true, }, - "value": 4578, + "value": 1771, }, { "category": "Pet", @@ -51034,7 +56508,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Valkyrie Wolf", "sh": true, }, - "value": 1687, + "value": 955, }, { "category": "Pet", @@ -51042,14 +56516,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Cat", "sh": true, }, - "value": 960003422, + "value": 934196253, }, { "category": "Pet", "configData": { "id": "Huge Valkyrie Wolf", }, - "value": 4351, + "value": 4429, }, { "category": "Pet", @@ -51064,7 +56538,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Rave Butterfly", }, - "value": 225123442, + "value": 91284261, }, { "category": "Pet", @@ -51072,7 +56546,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Axolotl", "pt": 2, }, - "value": 12051937401, + "value": 11776941024, }, { "category": "Pet", @@ -51080,7 +56554,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Jaguar", "pt": 2, }, - "value": 3990333950, + "value": 3896004860, }, { "category": "Pet", @@ -51088,21 +56562,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Axolotl", "sh": true, }, - "value": 457554600, + "value": 446240865, }, { "category": "Pet", "configData": { "id": "Rave Unicorn", }, - "value": 2241276254, + "value": 1013589044, }, { "category": "Pet", "configData": { "id": "Titanic Valkyrie Pegasus", }, - "value": 308, + "value": 313, + }, + { + "category": "Misc", + "configData": { + "id": "Rave Upgrade Ticket", + }, + "value": 226872901, }, { "category": "Pet", @@ -51110,7 +56591,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Valkyrie Dog", "pt": 2, }, - "value": 232, + "value": 240, }, { "category": "Pet", @@ -51119,7 +56600,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 183060003, + "value": 179439522, }, { "category": "Pet", @@ -51127,7 +56608,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Valkyrie Wolf", "sh": true, }, - "value": 165, + "value": 170, }, { "category": "Pet", @@ -51144,7 +56625,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Unicorn", "pt": 1, }, - "value": 425086948, + "value": 159478170, }, { "category": "Pet", @@ -51153,7 +56634,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 120, + "value": 113, }, { "category": "Pet", @@ -51162,7 +56643,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 89244960, + "value": 87150517, }, { "category": "Pet", @@ -51170,7 +56651,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Unicorn", "pt": 2, }, - "value": 225292208, + "value": 219061313, }, { "category": "Pet", @@ -51179,7 +56660,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 98159473, + "value": 96437856, }, { "category": "Pet", @@ -51187,7 +56668,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Valkyrie Dog", "sh": true, }, - "value": 351, + "value": 361, }, { "category": "Pet", @@ -51195,7 +56676,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Butterfly", "pt": 1, }, - "value": 43606700, + "value": 15153044, }, { "category": "Pet", @@ -51203,7 +56684,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Jaguar", "sh": true, }, - "value": 137908436, + "value": 57827353, }, { "category": "Pet", @@ -51211,7 +56692,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Butterfly", "pt": 2, }, - "value": 22758190, + "value": 22066117, }, { "category": "Pet", @@ -51220,7 +56701,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 30709789, + "value": 11133872, }, { "category": "Pet", @@ -51229,7 +56710,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 54827247, + "value": 53257043, }, { "category": "Pet", @@ -51237,7 +56718,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Unicorn", "sh": true, }, - "value": 6606690, + "value": 3159820, }, { "category": "Pet", @@ -51246,21 +56727,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 17373654, + "value": 16858847, }, { "category": "Pet", "configData": { "id": "Disco Ball Dragon", }, - "value": 2261572, + "value": 1270303, }, { "category": "Pet", "configData": { "id": "Huge Rave Butterfly", }, - "value": 26361, + "value": 26321, }, { "category": "Pet", @@ -51276,7 +56757,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Disco Ball Dragon", "pt": 2, }, - "value": 212621, + "value": 204834, }, { "category": "Pet", @@ -51284,7 +56765,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Disco Ball Dragon", "pt": 1, }, - "value": 392687, + "value": 239722, }, { "category": "Pet", @@ -51292,7 +56773,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Rave Jaguar", "pt": 1, }, - "value": 15697, + "value": 15656, }, { "category": "Pet", @@ -51300,14 +56781,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Valkyrie Wolf", "pt": 2, }, - "value": 121, + "value": 124, }, { "category": "Pet", "configData": { "id": "Huge Rave Jaguar", }, - "value": 61084, + "value": 60962, }, { "category": "Pet", @@ -51324,7 +56805,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Rave Butterfly", "pt": 1, }, - "value": 2910, + "value": 2907, }, { "category": "Pet", @@ -51333,7 +56814,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1439778, + "value": 677417, }, { "category": "Pet", @@ -51342,7 +56823,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 857623, + "value": 826288, }, { "category": "Pet", @@ -51350,7 +56831,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Rave Jaguar", "pt": 2, }, - "value": 3411, + "value": 3399, }, { "category": "Pet", @@ -51359,7 +56840,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 206, + "value": 180, }, { "category": "Pet", @@ -51368,7 +56849,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 129459, + "value": 84690, }, { "category": "Pet", @@ -51376,7 +56857,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rave Butterfly", "sh": true, }, - "value": 550883, + "value": 370879, }, { "category": "Pet", @@ -51402,7 +56883,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Rave Butterfly", "pt": 2, }, - "value": 1861, + "value": 1859, }, { "category": "Pet", @@ -51411,7 +56892,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 110389, + "value": 106836, }, { "category": "Pet", @@ -51428,7 +56909,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 7, + "value": 8, }, { "category": "Pet", @@ -51436,7 +56917,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Disco Ball Dragon", "sh": true, }, - "value": 224, + "value": 217, }, { "category": "Pet", @@ -51444,7 +56925,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Rave Butterfly", "sh": true, }, - "value": 528, + "value": 527, }, { "category": "Pet", @@ -51453,7 +56934,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1005, + "value": 1002, }, { "category": "Pet", @@ -51462,7 +56943,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 3000, + "value": 2775, }, { "category": "Pet", @@ -51513,7 +56994,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Titanic Strawberry Cow", }, - "value": 545, + "value": 564, }, { "category": "Pet", @@ -51530,7 +57011,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Strawberry Cow", "sh": true, }, - "value": 4, + "value": 5, + }, + { + "category": "Misc", + "configData": { + "id": "Millionaire Bucks", + }, + "value": 5951280713, }, { "category": "Pet", @@ -51538,7 +57026,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Humble Rabbit", "pt": 2, }, - "value": 45581710, + "value": 52128523, }, { "category": "Pet", @@ -51546,21 +57034,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Humble Hen", "pt": 2, }, - "value": 31892548, + "value": 35081844, }, { "category": "Pet", "configData": { "id": "Humble Hen", }, - "value": 513354116, + "value": 655237900, }, { "category": "Pet", "configData": { "id": "Humble Rabbit", }, - "value": 842397859, + "value": 1055909600, }, { "category": "Pet", @@ -51568,7 +57056,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Humble Hen", "pt": 1, }, - "value": 80871188, + "value": 92718078, + }, + { + "category": "Booth", + "configData": { + "id": "Millionaire", + }, + "value": 47668, }, { "category": "Pet", @@ -51576,21 +57071,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Humble Rabbit", "pt": 1, }, - "value": 120255272, + "value": 149730671, }, { "category": "Pet", "configData": { "id": "Fortress Dog", }, - "value": 218476294, + "value": 277807502, }, { "category": "Pet", "configData": { "id": "Fortress Owl", }, - "value": 1608711538, + "value": 1879420562, }, { "category": "Pet", @@ -51598,14 +57093,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Humble Rabbit", "sh": true, }, - "value": 1647125, + "value": 2274274, }, { "category": "Pet", "configData": { "id": "Pristine Snake", }, - "value": 375625189, + "value": 501770135, }, { "category": "Pet", @@ -51613,7 +57108,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fortress Owl", "pt": 1, }, - "value": 240473812, + "value": 270413418, }, { "category": "Pet", @@ -51621,7 +57116,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fortress Owl", "pt": 2, }, - "value": 55701522, + "value": 73182090, }, { "category": "Pet", @@ -51629,7 +57124,22 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fortress Dog", "pt": 2, }, - "value": 15334800, + "value": 17452560, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Millionaire", + }, + "value": 49218, + }, + { + "category": "Fruit", + "configData": { + "id": "Watermelon", + "sh": true, + }, + "value": 779314101, }, { "category": "Pet", @@ -51637,7 +57147,39 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fortress Dog", "pt": 1, }, - "value": 33687750, + "value": 40404606, + }, + { + "category": "Fruit", + "configData": { + "id": "Apple", + "sh": true, + }, + "value": 769243848, + }, + { + "category": "Fruit", + "configData": { + "id": "Orange", + "sh": true, + }, + "value": 792136418, + }, + { + "category": "Fruit", + "configData": { + "id": "Pineapple", + "sh": true, + }, + "value": 772312648, + }, + { + "category": "Fruit", + "configData": { + "id": "Banana", + "sh": true, + }, + "value": 760887382, }, { "category": "Pet", @@ -51645,7 +57187,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pristine Snake", "pt": 1, }, - "value": 54650997, + "value": 63152303, }, { "category": "Pet", @@ -51653,7 +57195,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Humble Hen", "sh": true, }, - "value": 1019760, + "value": 1234188, }, { "category": "Pet", @@ -51662,7 +57204,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 199880, + "value": 231071, }, { "category": "Pet", @@ -51670,7 +57212,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pristine Snake", "pt": 2, }, - "value": 16997488, + "value": 20611868, }, { "category": "Pet", @@ -51679,7 +57221,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 223881, + "value": 271282, }, { "category": "Pet", @@ -51695,7 +57237,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 69813, + "value": 83431, }, { "category": "Pet", @@ -51703,7 +57245,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Elegant Eagle", "pt": 2, }, - "value": 102652173295, + "value": 105170818750, }, { "category": "Pet", @@ -51719,7 +57261,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fortress Dog", "sh": true, }, - "value": 381917, + "value": 501972, }, { "category": "Pet", @@ -51728,7 +57270,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 127927, + "value": 143644, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Pizza", + }, + "value": 38626, }, { "category": "Pet", @@ -51737,7 +57286,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 98182, + "value": 107326, }, { "category": "Pet", @@ -51746,7 +57295,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 313507, + "value": 378484, }, { "category": "Pet", @@ -51763,7 +57312,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 44557, + "value": 50506, }, { "category": "Pet", @@ -51771,7 +57320,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pristine Poodle", "pt": 1, }, - "value": 87952696, + "value": 108439318, }, { "category": "Pet", @@ -51779,14 +57328,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pristine Poodle", "pt": 2, }, - "value": 38113354, + "value": 44783216, }, { "category": "Pet", "configData": { "id": "Pristine Poodle", }, - "value": 660616495, + "value": 860384086, }, { "category": "Pet", @@ -51794,14 +57343,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Treasure Turtle", "pt": 1, }, - "value": 24551249, + "value": 30708564, }, { "category": "Pet", "configData": { "id": "Treasure Turtle", }, - "value": 176006373, + "value": 225271503, }, { "category": "Pet", @@ -51809,7 +57358,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fortress Owl", "sh": true, }, - "value": 3031062, + "value": 4700707, }, { "category": "Pet", @@ -51817,14 +57366,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Diamond Dragon", "pt": 1, }, - "value": 13821872628, + "value": 8344519531, }, { "category": "Pet", "configData": { "id": "Elegant Eagle", }, - "value": 723358830013, + "value": 438898183870, }, { "category": "Pet", @@ -51832,7 +57381,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Elegant Eagle", "pt": 1, }, - "value": 142351952852, + "value": 90064599914, }, { "category": "Pet", @@ -51840,7 +57389,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Treasure Turtle", "pt": 2, }, - "value": 12162092, + "value": 14082764, }, { "category": "Pet", @@ -51848,7 +57397,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Diamond Dragon", "pt": 2, }, - "value": 9777930469, + "value": 9920110630, }, { "category": "Pet", @@ -51857,7 +57406,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 45161, + "value": 56300, }, { "category": "Pet", @@ -51866,7 +57415,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 119293, + "value": 143884, }, { "category": "Pet", @@ -51874,14 +57423,35 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pristine Snake", "sh": true, }, - "value": 583587, + "value": 787090, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Throne", + }, + "value": 6348, + }, + { + "category": "Misc", + "configData": { + "id": "Millionaire Ticket", + }, + "value": 1172045541, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Popcat", + }, + "value": 12674, }, { "category": "Pet", "configData": { "id": "Diamond Dragon", }, - "value": 65341275201, + "value": 36423509912, }, { "category": "Pet", @@ -51889,7 +57459,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Luxe Peacock", "pt": 1, }, - "value": 365350, + "value": 294111, }, { "category": "Pet", @@ -51898,14 +57468,38 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 79754, + "value": 97160, }, { "category": "Pet", "configData": { "id": "Luxe Axolotl", }, - "value": 74876420, + "value": 44216054, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Pizza", + "sh": true, + }, + "value": 4367, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Popcat", + "sh": true, + }, + "value": 1401, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Throne", + "sh": true, + }, + "value": 661, }, { "category": "Pet", @@ -51922,7 +57516,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 107242, + "value": 124695, }, { "category": "Pet", @@ -51930,7 +57524,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pristine Poodle", "sh": true, }, - "value": 1415188, + "value": 1974825, }, { "category": "Pet", @@ -51948,7 +57542,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 177879, + "value": 228150, }, { "category": "Pet", @@ -51956,14 +57550,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Luxe Axolotl", "pt": 1, }, - "value": 15503670, + "value": 9775331, }, { "category": "Pet", "configData": { "id": "Huge Elegant Eagle", }, - "value": 16513, + "value": 48149, }, { "category": "Pet", @@ -51972,7 +57566,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 53679, + "value": 70849, }, { "category": "Pet", @@ -51980,7 +57574,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Treasure Turtle", "sh": true, }, - "value": 370278, + "value": 483916, }, { "category": "Pet", @@ -51989,7 +57583,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 577478250, + "value": 381984389, }, { "category": "Pet", @@ -51997,7 +57591,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Elegant Eagle", "sh": true, }, - "value": 2792264311, + "value": 1739053401, }, { "category": "Pet", @@ -52006,7 +57600,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 425974650, + "value": 437088970, }, { "category": "Pet", @@ -52015,7 +57609,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 35748, + "value": 42101, }, { "category": "Pet", @@ -52024,7 +57618,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 38804411, + "value": 39581857, }, { "category": "Pet", @@ -52032,14 +57626,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Diamond Dragon", "sh": true, }, - "value": 240711285, + "value": 149986774, }, { "category": "Pet", "configData": { "id": "Luxe Peacock", }, - "value": 1876891, + "value": 1268682, }, { "category": "Pet", @@ -52048,7 +57642,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 52285154, + "value": 35198016, }, { "category": "Pet", @@ -52056,7 +57650,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Luxe Axolotl", "pt": 2, }, - "value": 11063889, + "value": 11225675, }, { "category": "Pet", @@ -52064,7 +57658,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Luxe Peacock", "pt": 2, }, - "value": 269380, + "value": 272554, }, { "category": "Pet", @@ -52081,7 +57675,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Elegant Eagle", "pt": 1, }, - "value": 1937, + "value": 5765, }, { "category": "Pet", @@ -52090,21 +57684,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 64, + "value": 114, }, { "category": "Pet", "configData": { "id": "Huge Pristine Snake", }, - "value": 7687, + "value": 7759, }, { "category": "Pet", "configData": { "id": "Huge Treasure Turtle", }, - "value": 1471, + "value": 2378, }, { "category": "Pet", @@ -52112,7 +57706,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pristine Snake", "sh": true, }, - "value": 170, + "value": 171, }, { "category": "Pet", @@ -52120,7 +57714,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pristine Snake", "pt": 1, }, - "value": 1111, + "value": 1140, }, { "category": "Pet", @@ -52129,7 +57723,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 62556, + "value": 53575, }, { "category": "Pet", @@ -52138,7 +57732,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 54974, + "value": 56553, }, { "category": "Pet", @@ -52147,7 +57741,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2877, + "value": 3170, }, { "category": "Pet", @@ -52155,7 +57749,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Elegant Eagle", "sh": true, }, - "value": 369, + "value": 1150, }, { "category": "Pet", @@ -52164,7 +57758,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1021, + "value": 1332, }, { "category": "Pet", @@ -52172,7 +57766,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Elegant Eagle", "pt": 2, }, - "value": 384, + "value": 1157, }, { "category": "Pet", @@ -52188,7 +57782,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Pristine Snake", "pt": 2, }, - "value": 975, + "value": 980, }, { "category": "Pet", @@ -52196,7 +57790,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Luxe Axolotl", "sh": true, }, - "value": 169771, + "value": 147275, }, { "category": "Pet", @@ -52213,7 +57807,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Treasure Turtle", "pt": 1, }, - "value": 118, + "value": 163, }, { "category": "Pet", @@ -52221,7 +57815,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Treasure Turtle", "pt": 2, }, - "value": 66, + "value": 103, }, { "category": "Pet", @@ -52239,7 +57833,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 23, + "value": 24, }, { "category": "Pet", @@ -52247,7 +57841,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Luxe Peacock", "sh": true, }, - "value": 929, + "value": 942, }, { "category": "Pet", @@ -52256,28 +57850,49 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 40, + "value": 114, }, { "category": "Pet", "configData": { "id": "Old Wizard Owl", }, - "value": 909, + "value": 3003, }, { "category": "Pet", "configData": { "id": "Tropical Parrot", }, - "value": 913, + "value": 3353, + }, + { + "category": "Egg", + "configData": { + "id": "Series 3 Mythical Gift", + }, + "value": 125148, + }, + { + "category": "Egg", + "configData": { + "id": "Series 3 Legendary Gift", + }, + "value": 27775, + }, + { + "category": "Egg", + "configData": { + "id": "Series 3 Epic Gift", + }, + "value": 20212, }, { "category": "Pet", "configData": { "id": "Tropical Toucan", }, - "value": 639, + "value": 2300, }, { "category": "Pet", @@ -52285,28 +57900,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Hippo", "pt": 1, }, - "value": 577, + "value": 1754, }, { "category": "Pet", "configData": { "id": "Huge Hippo", }, - "value": 4978, + "value": 15283, }, { "category": "Pet", "configData": { "id": "Old Wizard Corgi", }, - "value": 1127, + "value": 3721, }, { "category": "Pet", "configData": { "id": "Old Wizard Dragon", }, - "value": 1345, + "value": 4319, }, { "category": "Pet", @@ -52314,7 +57929,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tropical Toucan", "pt": 1, }, - "value": 81, + "value": 414, }, { "category": "Pet", @@ -52322,28 +57937,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Hippo", "pt": 2, }, - "value": 106, + "value": 356, }, { "category": "Pet", "configData": { "id": "Huge Old Wizard Owl", }, - "value": 320, + "value": 12960, }, { "category": "Pet", "configData": { "id": "Tropical Flamingo", }, - "value": 1053, + "value": 3871, }, { "category": "Pet", "configData": { "id": "Huge Tropical Parrot", }, - "value": 570, + "value": 16357, }, { "category": "Pet", @@ -52351,7 +57966,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Old Wizard Corgi", "pt": 1, }, - "value": 171, + "value": 671, }, { "category": "Pet", @@ -52359,7 +57974,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Old Wizard Dragon", "pt": 1, }, - "value": 195, + "value": 693, }, { "category": "Pet", @@ -52367,7 +57982,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Old Wizard Dragon", "pt": 2, }, - "value": 52, + "value": 178, }, { "category": "Pet", @@ -52375,7 +57990,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tropical Parrot", "pt": 2, }, - "value": 17, + "value": 553, }, { "category": "Pet", @@ -52383,7 +57998,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tropical Parrot", "pt": 1, }, - "value": 129, + "value": 645, }, { "category": "Pet", @@ -52391,7 +58006,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Old Wizard Owl", "pt": 1, }, - "value": 142, + "value": 497, }, { "category": "Pet", @@ -52399,7 +58014,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tropical Flamingo", "pt": 1, }, - "value": 166, + "value": 724, }, { "category": "Pet", @@ -52407,7 +58022,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Old Wizard Corgi", "pt": 1, }, - "value": 76, + "value": 2153, }, { "category": "Pet", @@ -52415,7 +58030,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Old Wizard Corgi", "pt": 2, }, - "value": 15, + "value": 450, }, { "category": "Pet", @@ -52423,7 +58038,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tropical Parrot", "pt": 1, }, - "value": 83, + "value": 2467, }, { "category": "Pet", @@ -52431,7 +58046,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Old Wizard Owl", "pt": 1, }, - "value": 62, + "value": 2001, }, { "category": "Pet", @@ -52439,21 +58054,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tropical Toucan", "pt": 1, }, - "value": 56, + "value": 2421, }, { "category": "Pet", "configData": { "id": "Huge Old Wizard Corgi", }, - "value": 530, + "value": 13969, }, { "category": "Pet", "configData": { "id": "Huge Tropical Flamingo", }, - "value": 339, + "value": 15218, }, { "category": "Pet", @@ -52461,7 +58076,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Old Wizard Owl", "sh": true, }, - "value": 28, + "value": 106, }, { "category": "Pet", @@ -52469,7 +58084,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Old Wizard Corgi", "sh": true, }, - "value": 27, + "value": 556, }, { "category": "Pet", @@ -52477,7 +58092,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tropical Flamingo", "pt": 2, }, - "value": 33, + "value": 175, }, { "category": "Pet", @@ -52485,14 +58100,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Hippo", "sh": true, }, - "value": 101, + "value": 298, }, { "category": "Pet", "configData": { "id": "Huge Tropical Toucan", }, - "value": 366, + "value": 15281, }, { "category": "Pet", @@ -52500,7 +58115,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tropical Parrot", "pt": 2, }, - "value": 35, + "value": 143, }, { "category": "Pet", @@ -52509,7 +58124,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2, + "value": 9, }, { "category": "Pet", @@ -52517,7 +58132,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tropical Parrot", "sh": true, }, - "value": 26, + "value": 682, }, { "category": "Pet", @@ -52525,7 +58140,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Old Wizard Dragon", "sh": true, }, - "value": 29, + "value": 122, }, { "category": "Pet", @@ -52533,7 +58148,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Old Wizard Corgi", "pt": 2, }, - "value": 37, + "value": 172, }, { "category": "Pet", @@ -52541,7 +58156,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tropical Flamingo", "pt": 1, }, - "value": 46, + "value": 2365, }, { "category": "Pet", @@ -52549,21 +58164,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Yellow Lucky Block", "pt": 2, }, - "value": 1, + "value": 5, + }, + { + "category": "Misc", + "configData": { + "id": "Fossil Token", + }, + "value": 1273816360, }, { "category": "Pet", "configData": { "id": "Dino Axolotl", }, - "value": 205285056, + "value": 199972645, }, { "category": "Pet", "configData": { "id": "Dino Dog", }, - "value": 206238681, + "value": 202389855, }, { "category": "Pet", @@ -52571,7 +58193,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dino Axolotl", "pt": 1, }, - "value": 30510809, + "value": 30018914, }, { "category": "Pet", @@ -52579,7 +58201,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dino Dog", "pt": 1, }, - "value": 31410004, + "value": 31076726, }, { "category": "Pet", @@ -52587,14 +58209,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dino Axolotl", "pt": 2, }, - "value": 8246923, + "value": 8177923, }, { "category": "Pet", "configData": { "id": "Dino Monkey", }, - "value": 252828162, + "value": 247611679, }, { "category": "Pet", @@ -52602,14 +58224,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dino Dog", "pt": 2, }, - "value": 8031797, + "value": 7766683, + }, + { + "category": "Lootbox", + "configData": { + "id": "Dino Gift", + }, + "value": 61688600, }, { "category": "Pet", "configData": { "id": "Patrick Star", }, - "value": 123767, + "value": 74946, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 31", + }, + "value": 1071231, }, { "category": "Pet", @@ -52617,7 +58253,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dino Monkey", "pt": 2, }, - "value": 8668490, + "value": 8590936, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Dino", + }, + "value": 171561, }, { "category": "Pet", @@ -52625,7 +58268,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dino Dog", "sh": true, }, - "value": 365923, + "value": 353731, }, { "category": "Pet", @@ -52633,21 +58276,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dino Monkey", "pt": 1, }, - "value": 32039489, + "value": 31588258, }, { "category": "Pet", "configData": { "id": "Gary the Snail", }, - "value": 334976, + "value": 151928, + }, + { + "category": "Booth", + "configData": { + "id": "Dino", + }, + "value": 229348, }, { "category": "Pet", "configData": { "id": "Mr Krabs", }, - "value": 479464, + "value": 296513, }, { "category": "Pet", @@ -52655,7 +58305,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gary the Snail", "pt": 2, }, - "value": 9121, + "value": 6091, }, { "category": "Pet", @@ -52663,21 +58313,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mr Krabs", "pt": 2, }, - "value": 13253, + "value": 9118, }, { "category": "Pet", "configData": { "id": "Huge Patrick Star", }, - "value": 6562, + "value": 6793, }, { "category": "Pet", "configData": { "id": "Safari Dog", }, - "value": 271356506, + "value": 265935664, }, { "category": "Pet", @@ -52686,7 +58336,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 75436, + "value": 75784, }, { "category": "Pet", @@ -52694,7 +58344,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Safari Dog", "pt": 2, }, - "value": 10486555, + "value": 10381679, }, { "category": "Pet", @@ -52702,7 +58352,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Safari Dog", "pt": 1, }, - "value": 35372578, + "value": 34432593, }, { "category": "Pet", @@ -52724,7 +58374,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Huge Mr Krabs", }, - "value": 11811, + "value": 12188, }, { "category": "Pet", @@ -52732,7 +58382,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Patrick Star", "sh": true, }, - "value": 2483, + "value": 1842, }, { "category": "Pet", @@ -52740,7 +58390,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Patrick Star", "pt": 2, }, - "value": 3296, + "value": 2647, }, { "category": "Pet", @@ -52748,14 +58398,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mr Krabs", "sh": true, }, - "value": 9817, + "value": 5831, }, { "category": "Pet", "configData": { "id": "Huge Electric Dino", }, - "value": 17647, + "value": 18966, }, { "category": "Pet", @@ -52772,7 +58422,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 262, + "value": 252, }, { "category": "Pet", @@ -52780,7 +58430,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gary the Snail", "sh": true, }, - "value": 6880, + "value": 3818, }, { "category": "Pet", @@ -52789,7 +58439,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 25547, + "value": 25064, }, { "category": "Pet", @@ -52797,7 +58447,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dino Axolotl", "sh": true, }, - "value": 339809, + "value": 327633, }, { "category": "Pet", @@ -52805,7 +58455,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Patrick Star", "pt": 2, }, - "value": 169, + "value": 179, }, { "category": "Pet", @@ -52822,7 +58472,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 26081, + "value": 26160, }, { "category": "Pet", @@ -52831,7 +58481,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 68465, + "value": 68295, }, { "category": "Pet", @@ -52839,7 +58489,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Old Wizard Owl", "pt": 2, }, - "value": 31, + "value": 127, }, { "category": "Pet", @@ -52847,14 +58497,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Research Cat", "pt": 2, }, - "value": 11970982766, + "value": 11694463577, }, { "category": "Pet", "configData": { "id": "Research Cat", }, - "value": 143035598022, + "value": 136550211986, }, { "category": "Pet", @@ -52862,7 +58512,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dino Monkey", "sh": true, }, - "value": 413102, + "value": 404815, }, { "category": "Pet", @@ -52870,7 +58520,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Research Cat", "pt": 1, }, - "value": 21761287424, + "value": 21243019620, }, { "category": "Pet", @@ -52879,7 +58529,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 127, + "value": 126, }, { "category": "Pet", @@ -52888,7 +58538,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 194, + "value": 184, }, { "category": "Pet", @@ -52896,7 +58546,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mr Krabs", "sh": true, }, - "value": 504, + "value": 518, }, { "category": "Pet", @@ -52905,7 +58555,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 61467, + "value": 60880, }, { "category": "Pet", @@ -52913,7 +58563,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Electric Dino", "pt": 1, }, - "value": 3437, + "value": 3707, }, { "category": "Pet", @@ -52922,7 +58572,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 24896, + "value": 24792, }, { "category": "Pet", @@ -52930,7 +58580,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angry Dino", "pt": 2, }, - "value": 5527080743, + "value": 5382136622, }, { "category": "Pet", @@ -52938,7 +58588,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Safari Dog", "sh": true, }, - "value": 477135, + "value": 467484, }, { "category": "Pet", @@ -52946,14 +58596,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angry Dino", "pt": 1, }, - "value": 9024598938, + "value": 8793496431, }, { "category": "Pet", "configData": { "id": "Angry Dino", }, - "value": 52693105956, + "value": 50381150375, }, { "category": "Pet", @@ -52961,7 +58611,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mr Krabs", "pt": 2, }, - "value": 304, + "value": 317, }, { "category": "Pet", @@ -52969,7 +58619,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Triceratops", "pt": 1, }, - "value": 2831047021, + "value": 2094379981, }, { "category": "Pet", @@ -52977,14 +58627,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Triceratops", "pt": 2, }, - "value": 1755408623, + "value": 1708657374, }, { "category": "Pet", "configData": { "id": "Triceratops", }, - "value": 15730265878, + "value": 11981002105, }, { "category": "Pet", @@ -53000,7 +58650,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Electric Dino", }, - "value": 1038993328, + "value": 985298563, }, { "category": "Pet", @@ -53009,7 +58659,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 71052, + "value": 69441, }, { "category": "Pet", @@ -53017,14 +58667,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Dino", "pt": 2, }, - "value": 36837948, + "value": 36345740, }, { "category": "Pet", "configData": { "id": "Titanic SpongeBob SquarePants", }, - "value": 449, + "value": 467, }, { "category": "Pet", @@ -53032,7 +58682,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Research Cat", "sh": true, }, - "value": 527946774, + "value": 508797813, }, { "category": "Pet", @@ -53040,7 +58690,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angry Dino", "sh": true, }, - "value": 202691343, + "value": 195888802, }, { "category": "Pet", @@ -53049,7 +58699,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 55015583, + "value": 53336935, }, { "category": "Pet", @@ -53058,7 +58708,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 30895, + "value": 30805, }, { "category": "Pet", @@ -53066,7 +58716,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Dino", "pt": 1, }, - "value": 121485172, + "value": 115778478, }, { "category": "Pet", @@ -53075,7 +58725,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 87697564, + "value": 85748443, }, { "category": "Pet", @@ -53084,7 +58734,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 25803714, + "value": 24958163, }, { "category": "Pet", @@ -53093,7 +58743,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 38130271, + "value": 37345203, }, { "category": "Pet", @@ -53102,7 +58752,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 7782018, + "value": 7506396, }, { "category": "Pet", @@ -53110,7 +58760,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Triceratops", "sh": true, }, - "value": 57806363, + "value": 43893203, }, { "category": "Pet", @@ -53119,14 +58769,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 11418115, + "value": 8246049, }, { "category": "Pet", "configData": { "id": "Mech Dino", }, - "value": 222840871, + "value": 215353796, }, { "category": "Pet", @@ -53134,7 +58784,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Patrick Star", "sh": true, }, - "value": 265, + "value": 272, }, { "category": "Pet", @@ -53151,7 +58801,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mech Dino", "pt": 1, }, - "value": 31737861, + "value": 31221964, }, { "category": "Pet", @@ -53159,7 +58809,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mech Dino", "pt": 2, }, - "value": 10552992, + "value": 10425860, }, { "category": "Pet", @@ -53175,14 +58825,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Electric Dino", "pt": 2, }, - "value": 677, + "value": 736, }, { "category": "Pet", "configData": { "id": "Huge Dino Dog", }, - "value": 45819, + "value": 45784, }, { "category": "Pet", @@ -53198,7 +58848,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Dino", "sh": true, }, - "value": 2232014, + "value": 2144138, }, { "category": "Pet", @@ -53207,7 +58857,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 279162, + "value": 265106, }, { "category": "Pet", @@ -53216,7 +58866,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 15, + "value": 16, }, { "category": "Pet", @@ -53234,7 +58884,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 122290, + "value": 119489, }, { "category": "Pet", @@ -53268,7 +58918,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 31416, + "value": 31248, }, { "category": "Pet", @@ -53277,7 +58927,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 74457, + "value": 73985, }, { "category": "Pet", @@ -53285,7 +58935,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Electric Dino", "sh": true, }, - "value": 152, + "value": 173, }, { "category": "Pet", @@ -53294,7 +58944,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 16, + "value": 40, }, { "category": "Pet", @@ -53302,7 +58952,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Old Wizard Corgi", "sh": true, }, - "value": 18, + "value": 101, }, { "category": "Pet", @@ -53319,7 +58969,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Old Wizard Owl", "sh": true, }, - "value": 14, + "value": 531, }, { "category": "Pet", @@ -53327,7 +58977,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tropical Toucan", "pt": 2, }, - "value": 21, + "value": 112, }, { "category": "Pet", @@ -53335,7 +58985,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mech Dino", "sh": true, }, - "value": 450438, + "value": 436851, }, { "category": "Pet", @@ -53344,7 +58994,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 20, + "value": 54, }, { "category": "Pet", @@ -53353,7 +59003,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 5, + "value": 18, }, { "category": "Pet", @@ -53362,7 +59012,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 32, + "value": 34, }, { "category": "Pet", @@ -53370,7 +59020,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tropical Flamingo", "sh": true, }, - "value": 22, + "value": 636, }, { "category": "Pet", @@ -53378,7 +59028,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tropical Toucan", "pt": 2, }, - "value": 9, + "value": 529, }, { "category": "Pet", @@ -53387,7 +59037,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 4, + "value": 17, }, { "category": "Pet", @@ -53396,7 +59046,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 7, + "value": 26, }, { "category": "Pet", @@ -53404,7 +59054,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tropical Parrot", "sh": true, }, - "value": 15, + "value": 81, }, { "category": "Pet", @@ -53412,7 +59062,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tropical Flamingo", "sh": true, }, - "value": 13, + "value": 89, }, { "category": "Pet", @@ -53420,7 +59070,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic SpongeBob SquarePants", "sh": true, }, - "value": 9, + "value": 11, }, { "category": "Pet", @@ -53428,14 +59078,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Old Wizard Owl", "pt": 2, }, - "value": 10, + "value": 454, }, { "category": "Pet", "configData": { "id": "Huge Ancient Dragon", }, - "value": 982, + "value": 12751, }, { "category": "Pet", @@ -53444,7 +59094,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 8, + "value": 20, }, { "category": "Pet", @@ -53453,7 +59103,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 4, + "value": 91, }, { "category": "Pet", @@ -53462,7 +59112,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 2, + "value": 19, + }, + { + "category": "Booth", + "configData": { + "id": "Clown", + }, + "value": 3687, }, { "category": "Pet", @@ -53471,6 +59128,13 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 519, }, + { + "category": "Hoverboard", + "configData": { + "id": "Clown", + }, + "value": 744, + }, { "category": "Pet", "configData": { @@ -53493,7 +59157,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tropical Toucan", "sh": true, }, - "value": 7, + "value": 599, }, { "category": "Pet", @@ -53502,7 +59166,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5, + "value": 7, + }, + { + "category": "Misc", + "configData": { + "id": "Dino Lab Keycard", + }, + "value": 10917274, + }, + { + "category": "Lootbox", + "configData": { + "id": "Meteor Gift", + }, + "value": 7991603, }, { "category": "Pet", @@ -53519,6 +59197,48 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 9126, }, + { + "category": "Booth", + "configData": { + "id": "Nightmare Cat", + }, + "value": 8128, + }, + { + "category": "Booth", + "configData": { + "id": "Abyssal", + }, + "value": 1317, + }, + { + "category": "Booth", + "configData": { + "id": "Lemonade", + }, + "value": 5307, + }, + { + "category": "Booth", + "configData": { + "id": "Error", + }, + "value": 344572, + }, + { + "category": "Booth", + "configData": { + "id": "Enchant", + }, + "value": 174558, + }, + { + "category": "Booth", + "configData": { + "id": "Kawaii", + }, + "value": 182179, + }, { "category": "Pet", "configData": { @@ -53533,7 +59253,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Egg Dino", "pt": 1, }, - "value": 21603021, + "value": 21215640, }, { "category": "Pet", @@ -53541,21 +59261,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Egg Dino", "pt": 2, }, - "value": 7350503, + "value": 7254165, }, { "category": "Pet", "configData": { "id": "Egg Dino", }, - "value": 146945769, + "value": 142291178, }, { "category": "Pet", "configData": { "id": "Egg Spitting Dino", }, - "value": 1585488458, + "value": 1536031412, }, { "category": "Pet", @@ -53563,14 +59283,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Egg Triceratops", "pt": 1, }, - "value": 127857279, + "value": 125688295, }, { "category": "Pet", "configData": { "id": "Egg Triceratops", }, - "value": 1025138287, + "value": 997286490, }, { "category": "Pet", @@ -53578,7 +59298,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Egg Triceratops", "pt": 2, }, - "value": 36544366, + "value": 36213230, }, { "category": "Pet", @@ -53593,7 +59313,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Huge Triceratops", }, - "value": 2522, + "value": 2655, }, { "category": "Pet", @@ -53601,7 +59321,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Egg Spitting Dino", "pt": 2, }, - "value": 75110699, + "value": 74835731, }, { "category": "Pet", @@ -53609,7 +59329,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Egg Spitting Dino", "pt": 1, }, - "value": 264392144, + "value": 256270692, }, { "category": "Pet", @@ -53617,7 +59337,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Egg Dino", "sh": true, }, - "value": 286650, + "value": 277828, }, { "category": "Pet", @@ -53626,7 +59346,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 98887, + "value": 97107, }, { "category": "Pet", @@ -53635,7 +59355,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 21441, + "value": 21271, }, { "category": "Pet", @@ -53644,7 +59364,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 50209, + "value": 49852, }, { "category": "Pet", @@ -53652,7 +59372,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Egg Triceratops", "sh": true, }, - "value": 2262552, + "value": 2218723, }, { "category": "Pet", @@ -53661,7 +59381,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 286233, + "value": 281739, }, { "category": "Pet", @@ -53669,14 +59389,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Triceratops", "pt": 1, }, - "value": 470, + "value": 495, }, { "category": "Pet", "configData": { "id": "Safari Cat", }, - "value": 74047833827, + "value": 45585045213, }, { "category": "Pet", @@ -53684,7 +59404,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Safari Cat", "pt": 1, }, - "value": 62670661500, + "value": 35134041452, }, { "category": "Pet", @@ -53692,7 +59412,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Safari Cat", "pt": 2, }, - "value": 12699145798, + "value": 12634966874, }, { "category": "Pet", @@ -53700,7 +59420,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Egg Spitting Dino", "sh": true, }, - "value": 3691201, + "value": 3613035, }, { "category": "Pet", @@ -53709,7 +59429,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 231291, + "value": 230318, }, { "category": "Pet", @@ -53718,7 +59438,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 701065, + "value": 682188, }, { "category": "Pet", @@ -53726,7 +59446,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Triceratops", "pt": 2, }, - "value": 79, + "value": 86, }, { "category": "Pet", @@ -53735,7 +59455,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 268209507, + "value": 161470747, }, { "category": "Pet", @@ -53744,21 +59464,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 58708245, + "value": 57884494, }, { "category": "Pet", "configData": { "id": "Research Dog", }, - "value": 46337129778, + "value": 27896107533, }, { "category": "Pet", "configData": { "id": "Stegosaurus", }, - "value": 15500797544, + "value": 9140239449, }, { "category": "Pet", @@ -53766,7 +59486,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stegosaurus", "pt": 2, }, - "value": 3133695684, + "value": 3092267627, }, { "category": "Pet", @@ -53774,7 +59494,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Research Dog", "pt": 2, }, - "value": 9183062983, + "value": 9073804304, }, { "category": "Pet", @@ -53782,7 +59502,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Research Dog", "pt": 1, }, - "value": 41166929051, + "value": 21755748654, }, { "category": "Pet", @@ -53790,7 +59510,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Safari Cat", "sh": true, }, - "value": 258505375, + "value": 169189195, }, { "category": "Pet", @@ -53798,14 +59518,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stegosaurus", "pt": 1, }, - "value": 13865165175, + "value": 7166108037, }, { "category": "Pet", "configData": { "id": "Raptor", }, - "value": 89381680, + "value": 54568110, }, { "category": "Pet", @@ -53814,7 +59534,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 44061912, + "value": 43162658, }, { "category": "Pet", @@ -53822,7 +59542,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Triceratops", "sh": true, }, - "value": 21, + "value": 23, }, { "category": "Pet", @@ -53830,7 +59550,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Research Dog", "sh": true, }, - "value": 171048877, + "value": 106579388, }, { "category": "Pet", @@ -53838,7 +59558,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Stegosaurus", "sh": true, }, - "value": 54442591, + "value": 32087580, }, { "category": "Pet", @@ -53846,7 +59566,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Raptor", "pt": 2, }, - "value": 17359046, + "value": 16960577, }, { "category": "Pet", @@ -53855,7 +59575,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 183712184, + "value": 100613342, }, { "category": "Pet", @@ -53864,7 +59584,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 14455567, + "value": 14097532, }, { "category": "Pet", @@ -53872,7 +59592,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Raptor", "pt": 1, }, - "value": 79258337, + "value": 41873143, }, { "category": "Pet", @@ -53881,7 +59601,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 58928226, + "value": 29971873, }, { "category": "Pet", @@ -53897,7 +59617,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Hydra Dino", }, - "value": 895816, + "value": 610700, }, { "category": "Pet", @@ -53905,7 +59625,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hydra Dino", "pt": 2, }, - "value": 167683, + "value": 162934, }, { "category": "Pet", @@ -53913,7 +59633,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hydra Dino", "pt": 1, }, - "value": 784889, + "value": 432603, }, { "category": "Pet", @@ -53945,7 +59665,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 245077, + "value": 170909, }, { "category": "Pet", @@ -53954,7 +59674,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 107135, + "value": 104281, }, { "category": "Pet", @@ -53970,7 +59690,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Raptor", "sh": true, }, - "value": 214502, + "value": 173028, }, { "category": "Pet", @@ -53978,7 +59698,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hydra Dino", "sh": true, }, - "value": 73, + "value": 72, }, { "category": "Pet", @@ -54037,7 +59757,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 2388, + "value": 2383, }, { "category": "Pet", @@ -54046,7 +59766,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1177, + "value": 1140, }, { "category": "Pet", @@ -54055,7 +59775,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1, + "value": 6, }, { "category": "Pet", @@ -54073,7 +59793,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 2, + "value": 3, }, { "category": "Pet", @@ -54099,7 +59819,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tropical Toucan", "sh": true, }, - "value": 17, + "value": 69, }, { "category": "Pet", @@ -54116,7 +59836,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 4, + "value": 15, }, { "category": "Pet", @@ -54134,14 +59854,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1, + "value": 93, }, { "category": "Pet", "configData": { "id": "Titanic Nightfall Pegasus", }, - "value": 770, + "value": 806, }, { "category": "Pet", @@ -54166,14 +59886,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2, + "value": 22, }, { "category": "Pet", "configData": { "id": "Titanic Nightfall Wolf", }, - "value": 577, + "value": 625, }, { "category": "Pet", @@ -54181,7 +59901,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Nightfall Wolf", "sh": true, }, - "value": 10, + "value": 11, }, { "category": "Pet", @@ -54189,7 +59909,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Nightfall Wolf", "pt": 2, }, - "value": 14, + "value": 15, }, { "category": "Pet", @@ -54198,14 +59918,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12144811196, + "value": 12069499952, }, { "category": "Pet", "configData": { "id": "Enchanted Squirrel", }, - "value": 7068137987, + "value": 7032091128, }, { "category": "Pet", @@ -54213,7 +59933,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Enchanted Squirrel", "sh": true, }, - "value": 9588878591, + "value": 9535747915, }, { "category": "Pet", @@ -54221,14 +59941,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Enchanted Squirrel", "pt": 1, }, - "value": 11396155371, + "value": 11330203684, }, { "category": "Pet", "configData": { "id": "Cloud Cat", }, - "value": 7184739310, + "value": 7139487313, }, { "category": "Pet", @@ -54237,7 +59957,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 12726572346, + "value": 12648791556, }, { "category": "Pet", @@ -54245,7 +59965,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Enchanted Squirrel", "pt": 2, }, - "value": 11484442956, + "value": 11415229936, + }, + { + "category": "Misc", + "configData": { + "id": "Lucky Dice", + }, + "value": 52770981679, + }, + { + "category": "Booth", + "configData": { + "id": "Aura", + }, + "value": 115086, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 32", + }, + "value": 966675, }, { "category": "Pet", @@ -54253,7 +59994,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cloud Cat", "sh": true, }, - "value": 3937015084, + "value": 3911778850, }, { "category": "Pet", @@ -54262,7 +60003,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 295038882, + "value": 293122919, }, { "category": "Pet", @@ -54270,14 +60011,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cloud Cat", "pt": 1, }, - "value": 2066019811, + "value": 2052772447, }, { "category": "Pet", "configData": { "id": "Umbrella Bear", }, - "value": 570533700, + "value": 566804023, }, { "category": "Pet", @@ -54285,7 +60026,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cloud Cat", "pt": 2, }, - "value": 1818385269, + "value": 1806685711, }, { "category": "Pet", @@ -54294,7 +60035,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 706008391, + "value": 701464547, }, { "category": "Pet", @@ -54302,7 +60043,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ice Bunny", "pt": 1, }, - "value": 170608429, + "value": 169469922, }, { "category": "Pet", @@ -54310,7 +60051,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ice Bunny", "sh": true, }, - "value": 290503051, + "value": 288563940, + }, + { + "category": "Misc", + "configData": { + "id": "Lucky Dice II", + }, + "value": 10732240606, }, { "category": "Pet", @@ -54318,7 +60066,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Umbrella Bear", "pt": 1, }, - "value": 413740789, + "value": 411048235, }, { "category": "Pet", @@ -54326,7 +60074,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Umbrella Bear", "sh": true, }, - "value": 479356059, + "value": 476263839, }, { "category": "Pet", @@ -54335,7 +60083,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 929205522, + "value": 923299740, }, { "category": "Pet", @@ -54344,7 +60092,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 366541165, + "value": 364142039, }, { "category": "Pet", @@ -54352,7 +60100,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Umbrella Bear", "pt": 2, }, - "value": 388655587, + "value": 386121301, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Aura", + }, + "value": 120988, }, { "category": "Pet", @@ -54361,21 +60116,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 75083596, + "value": 74583576, }, { "category": "Pet", "configData": { "id": "Love Corgi", }, - "value": 25434713, + "value": 25258376, }, { "category": "Pet", "configData": { "id": "Ice Bunny", }, - "value": 296125810, + "value": 294138061, }, { "category": "Pet", @@ -54384,21 +60139,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 119970254, + "value": 119170087, }, { "category": "Pet", "configData": { "id": "Huge Quantum Agony", }, - "value": 30485, + "value": 30468, }, { "category": "Pet", "configData": { "id": "Classic Bunny", }, - "value": 298371, + "value": 94690, }, { "category": "Pet", @@ -54406,7 +60161,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ice Bunny", "pt": 2, }, - "value": 149648144, + "value": 148649727, }, { "category": "Pet", @@ -54414,7 +60169,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Love Corgi", "pt": 1, }, - "value": 15742172, + "value": 15636052, }, { "category": "Pet", @@ -54430,7 +60185,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Hell Monkey", }, - "value": 64444088, + "value": 64009357, }, { "category": "Pet", @@ -54438,7 +60193,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hell Monkey", "pt": 1, }, - "value": 45198229, + "value": 44896453, }, { "category": "Pet", @@ -54446,7 +60201,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hell Monkey", "pt": 2, }, - "value": 39330566, + "value": 39065563, }, { "category": "Pet", @@ -54455,7 +60210,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8501631, + "value": 8444654, }, { "category": "Pet", @@ -54464,7 +60219,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 34855531, + "value": 34619731, }, { "category": "Pet", @@ -54472,28 +60227,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hell Monkey", "sh": true, }, - "value": 53125463, + "value": 52766174, }, { "category": "Pet", "configData": { "id": "Classic Dragon", }, - "value": 110863, + "value": 39182, }, { "category": "Pet", "configData": { "id": "Classic Dog", }, - "value": 426177, + "value": 175921, }, { "category": "Pet", "configData": { "id": "Angel Cow", }, - "value": 5097778, + "value": 5062506, }, { "category": "Pet", @@ -54502,7 +60257,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 28425121, + "value": 28230354, + }, + { + "category": "Misc", + "configData": { + "id": "Mega Lucky Dice II", + }, + "value": 121313741, }, { "category": "Pet", @@ -54511,7 +60273,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 8074064, + "value": 7996926, }, { "category": "Pet", @@ -54519,7 +60281,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Love Corgi", "pt": 2, }, - "value": 12876850, + "value": 12789239, }, { "category": "Pet", @@ -54527,7 +60289,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Werewolf", "pt": 2, }, - "value": 6914586, + "value": 6868109, }, { "category": "Pet", @@ -54535,7 +60297,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Love Corgi", "sh": true, }, - "value": 20611866, + "value": 20471489, }, { "category": "Pet", @@ -54551,7 +60313,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Werewolf", "pt": 1, }, - "value": 7272585, + "value": 7223662, }, { "category": "Pet", @@ -54560,7 +60322,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 11025404, + "value": 10952739, }, { "category": "Pet", @@ -54569,7 +60331,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 6675301, + "value": 6631038, + }, + { + "category": "Misc", + "configData": { + "id": "Mega Lucky Dice", + }, + "value": 379719206, }, { "category": "Pet", @@ -54578,7 +60347,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 6823273, + "value": 6760096, }, { "category": "Pet", @@ -54586,7 +60355,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Classic Dog", "pt": 2, }, - "value": 12161, + "value": 6454, }, { "category": "Pet", @@ -54594,14 +60363,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Cow", "pt": 1, }, - "value": 3920535, + "value": 3891300, }, { "category": "Pet", "configData": { "id": "Electric Werewolf", }, - "value": 7816229, + "value": 7762486, }, { "category": "Pet", @@ -54609,7 +60378,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Demon Cyclops", "pt": 2, }, - "value": 1364926, + "value": 1349603, }, { "category": "Pet", @@ -54617,7 +60386,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Plasma Bull", "pt": 1, }, - "value": 5931128, + "value": 5878281, }, { "category": "Pet", @@ -54625,7 +60394,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Lunar Bat", "pt": 1, }, - "value": 5022071, + "value": 4971952, }, { "category": "Pet", @@ -54634,7 +60403,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 4225249, + "value": 4190554, }, { "category": "Pet", @@ -54642,7 +60411,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Classic Dog", "sh": true, }, - "value": 8691, + "value": 3915, }, { "category": "Pet", @@ -54650,14 +60419,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sun Parrot", "pt": 2, }, - "value": 7695182, + "value": 7620007, }, { "category": "Pet", "configData": { "id": "Huge Classic Dog", }, - "value": 10496, + "value": 10883, }, { "category": "Pet", @@ -54666,7 +60435,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5860027, + "value": 5820386, }, { "category": "Pet", @@ -54674,7 +60443,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Quantum Agony", "pt": 2, }, - "value": 4387, + "value": 4386, }, { "category": "Pet", @@ -54682,7 +60451,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sun Parrot", "pt": 1, }, - "value": 7324150, + "value": 7255004, }, { "category": "Pet", @@ -54690,7 +60459,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Plasma Bull", "sh": true, }, - "value": 5191963, + "value": 5145809, }, { "category": "Pet", @@ -54698,7 +60467,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Classic Bunny", "pt": 2, }, - "value": 8473, + "value": 4207, }, { "category": "Pet", @@ -54714,7 +60483,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Classic Dragon", "sh": true, }, - "value": 2222, + "value": 1106, }, { "category": "Pet", @@ -54722,7 +60491,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Werewolf", "sh": true, }, - "value": 7617312, + "value": 7566103, }, { "category": "Pet", @@ -54730,7 +60499,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sun Parrot", "sh": true, }, - "value": 6953871, + "value": 6887775, }, { "category": "Pet", @@ -54738,7 +60507,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Cow", "sh": true, }, - "value": 3916942, + "value": 3888547, }, { "category": "Pet", @@ -54746,7 +60515,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Classic Dragon", "pt": 2, }, - "value": 3070, + "value": 1920, }, { "category": "Pet", @@ -54754,21 +60523,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Angel Cow", "pt": 2, }, - "value": 4243256, + "value": 4209949, }, { "category": "Pet", "configData": { "id": "Huge Classic Dragon", }, - "value": 5887, + "value": 6110, }, { "category": "Pet", "configData": { "id": "Sun Parrot", }, - "value": 7068950, + "value": 7001279, }, { "category": "Pet", @@ -54776,7 +60545,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Plasma Bull", "pt": 2, }, - "value": 6364322, + "value": 6305792, }, { "category": "Pet", @@ -54785,14 +60554,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8011575, + "value": 7928965, }, { "category": "Pet", "configData": { "id": "Titanic Classic Cat", }, - "value": 392, + "value": 406, }, { "category": "Pet", @@ -54801,7 +60570,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 6651909, + "value": 6587163, }, { "category": "Pet", @@ -54809,7 +60578,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Classic Bunny", "sh": true, }, - "value": 5998, + "value": 2621, }, { "category": "Pet", @@ -54818,7 +60587,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 64, + "value": 59, }, { "category": "Pet", @@ -54826,21 +60595,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Classic Dog", "sh": true, }, - "value": 398, + "value": 413, }, { "category": "Pet", "configData": { "id": "Lunar Bat", }, - "value": 8799484, + "value": 8712106, }, { "category": "Pet", "configData": { "id": "Plasma Bull", }, - "value": 4573275, + "value": 4533515, }, { "category": "Pet", @@ -54848,7 +60617,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Lunar Bat", "pt": 2, }, - "value": 3480203, + "value": 3445015, }, { "category": "Pet", @@ -54856,7 +60625,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Lunar Bat", "sh": true, }, - "value": 6341676, + "value": 6279478, }, { "category": "Pet", @@ -54864,7 +60633,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mechatronic Robot", "pt": 1, }, - "value": 67211, + "value": 67155, }, { "category": "Pet", @@ -54873,7 +60642,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2684637, + "value": 2656942, }, { "category": "Pet", @@ -54882,7 +60651,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 4353063, + "value": 4315240, }, { "category": "Pet", @@ -54891,7 +60660,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5321, + "value": 5320, }, { "category": "Pet", @@ -54900,7 +60669,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 2194958, + "value": 2171555, }, { "category": "Pet", @@ -54917,7 +60686,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Abyssal Jellyfish", "sh": true, }, - "value": 24423, + "value": 24409, }, { "category": "Pet", @@ -54926,7 +60695,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 15970, + "value": 15966, }, { "category": "Pet", @@ -54935,7 +60704,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1303000, + "value": 1289083, }, { "category": "Pet", @@ -54943,7 +60712,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Classic Dragon", "pt": 2, }, - "value": 180, + "value": 187, }, { "category": "Pet", @@ -54952,7 +60721,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 191, + "value": 166, }, { "category": "Pet", @@ -54960,21 +60729,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Demon Cyclops", "sh": true, }, - "value": 1619410, + "value": 1602455, }, { "category": "Pet", "configData": { "id": "Huge Abyssal Jellyfish", }, - "value": 148429, + "value": 148223, }, { "category": "Pet", "configData": { "id": "Demon Cyclops", }, - "value": 1860028, + "value": 1840862, }, { "category": "Pet", @@ -54982,14 +60751,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Abyssal Jellyfish", "pt": 1, }, - "value": 53850, + "value": 53796, }, { "category": "Pet", "configData": { "id": "Huge Mechatronic Robot", }, - "value": 197679, + "value": 197347, }, { "category": "Pet", @@ -54997,7 +60766,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Demon Cyclops", "pt": 1, }, - "value": 1433169, + "value": 1418162, }, { "category": "Pet", @@ -55005,7 +60774,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Classic Dog", "pt": 2, }, - "value": 336, + "value": 342, }, { "category": "Pet", @@ -55022,7 +60791,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mechatronic Robot", "sh": true, }, - "value": 30351, + "value": 30337, }, { "category": "Pet", @@ -55031,7 +60800,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8548, + "value": 8544, }, { "category": "Pet", @@ -55039,7 +60808,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Classic Dragon", "sh": true, }, - "value": 223, + "value": 233, }, { "category": "Pet", @@ -55048,7 +60817,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12451, + "value": 12443, }, { "category": "Pet", @@ -55057,7 +60826,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 248, + "value": 193, }, { "category": "Pet", @@ -55065,14 +60834,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Temporal Owl", "pt": 1, }, - "value": 41885, + "value": 41826, }, { "category": "Pet", "configData": { "id": "Huge Corrupt Butterfly", }, - "value": 116158, + "value": 116005, }, { "category": "Pet", @@ -55081,7 +60850,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1184483, + "value": 1170782, }, { "category": "Pet", @@ -55098,14 +60867,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Corrupt Butterfly", "sh": true, }, - "value": 18499, + "value": 18490, }, { "category": "Pet", "configData": { "id": "Huge Temporal Owl", }, - "value": 117084, + "value": 116885, }, { "category": "Pet", @@ -55113,7 +60882,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Corrupt Butterfly", "pt": 1, }, - "value": 41551, + "value": 41521, }, { "category": "Pet", @@ -55121,7 +60890,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mechatronic Robot", "pt": 2, }, - "value": 22634, + "value": 22622, }, { "category": "Pet", @@ -55130,7 +60899,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 12134, + "value": 12130, }, { "category": "Pet", @@ -55138,7 +60907,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Temporal Owl", "sh": true, }, - "value": 18756, + "value": 18750, }, { "category": "Pet", @@ -55147,7 +60916,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 8665, + "value": 8660, }, { "category": "Pet", @@ -55155,7 +60924,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Temporal Owl", "pt": 2, }, - "value": 14559, + "value": 14546, }, { "category": "Pet", @@ -55163,7 +60932,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Abyssal Jellyfish", "pt": 2, }, - "value": 18682, + "value": 18669, }, { "category": "Pet", @@ -55180,7 +60949,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 8946, + "value": 8941, }, { "category": "Pet", @@ -55262,28 +61031,42 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Three Headed Dragon", "pt": 1, }, - "value": 3, + "value": 71, }, { "category": "Pet", "configData": { "id": "Titanic Blueberry Cow", }, - "value": 41, + "value": 46, }, { "category": "Pet", "configData": { "id": "Titanic Orange Axolotl", }, - "value": 339, + "value": 364, + }, + { + "category": "Misc", + "configData": { + "id": "Lucky Dice III", + }, + "value": 307382414, + }, + { + "category": "Misc", + "configData": { + "id": "Fire Dice", + }, + "value": 4513265, }, { "category": "Pet", "configData": { "id": "Huge Nuclear Wild Dog", }, - "value": 340656, + "value": 340297, }, { "category": "Pet", @@ -55292,7 +61075,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 408450, + "value": 403490, }, { "category": "Pet", @@ -55308,7 +61091,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Demolition Husky", "pt": 2, }, - "value": 452031, + "value": 446472, }, { "category": "Pet", @@ -55316,7 +61099,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blurred Monkey", "pt": 2, }, - "value": 2871306, + "value": 2851126, }, { "category": "Pet", @@ -55325,7 +61108,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 428474, + "value": 423484, }, { "category": "Pet", @@ -55341,7 +61124,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Demolition Husky", "sh": true, }, - "value": 583242, + "value": 576494, }, { "category": "Pet", @@ -55349,7 +61132,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blurred Monkey", "pt": 1, }, - "value": 3141292, + "value": 3119195, }, { "category": "Pet", @@ -55357,7 +61140,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Demolition Husky", "pt": 1, }, - "value": 508558, + "value": 502544, }, { "category": "Pet", @@ -55366,14 +61149,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 2501399, + "value": 2483091, }, { "category": "Pet", "configData": { "id": "Demolition Husky", }, - "value": 625738, + "value": 618486, }, { "category": "Pet", @@ -55381,7 +61164,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Shuriken Corgi", "pt": 1, }, - "value": 88385, + "value": 88356, }, { "category": "Pet", @@ -55389,7 +61172,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Blurred Monkey", "sh": true, }, - "value": 3291477, + "value": 3268142, }, { "category": "Pet", @@ -55397,14 +61180,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Comet Pony", "pt": 2, }, - "value": 344320, + "value": 340011, }, { "category": "Pet", "configData": { "id": "Comet Pony", }, - "value": 391144, + "value": 386528, }, { "category": "Pet", @@ -55412,14 +61195,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Comet Pony", "pt": 1, }, - "value": 358643, + "value": 354261, }, { "category": "Pet", "configData": { "id": "Huge Atomic Forged Shark", }, - "value": 15754, + "value": 16150, }, { "category": "Pet", @@ -55428,7 +61211,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 320431, + "value": 316219, }, { "category": "Pet", @@ -55436,7 +61219,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Comet Pony", "sh": true, }, - "value": 373915, + "value": 369451, }, { "category": "Pet", @@ -55454,14 +61237,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2772134, + "value": 2752557, }, { "category": "Pet", "configData": { "id": "Huge Sorcerer Bear", }, - "value": 209625, + "value": 209506, }, { "category": "Pet", @@ -55469,21 +61252,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Sorcerer Bear", "pt": 1, }, - "value": 70876, + "value": 70860, }, { "category": "Pet", "configData": { "id": "Huge Shuriken Corgi", }, - "value": 258361, + "value": 258178, }, { "category": "Pet", "configData": { "id": "Blurred Monkey", }, - "value": 3469991, + "value": 3445214, }, { "category": "Pet", @@ -55492,7 +61275,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 332399, + "value": 328343, }, { "category": "Pet", @@ -55500,7 +61283,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Nuclear Wild Dog", "pt": 1, }, - "value": 105540, + "value": 105530, }, { "category": "Pet", @@ -55524,7 +61307,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Atomic Forged Shark", "pt": 1, }, - "value": 7885, + "value": 7951, }, { "category": "Pet", @@ -55658,7 +61441,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tropical Flamingo", "pt": 2, }, - "value": 7, + "value": 511, }, { "category": "Pet", @@ -55693,7 +61476,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1, + "value": 74, }, { "category": "Pet", @@ -55711,6 +61494,13 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 4, }, + { + "category": "Booth", + "configData": { + "id": "Ice Cream", + }, + "value": 3706, + }, { "category": "Pet", "configData": { @@ -55718,6 +61508,13 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 524, }, + { + "category": "Hoverboard", + "configData": { + "id": "Ice Cream", + }, + "value": 749, + }, { "category": "Pet", "configData": { @@ -55739,21 +61536,105 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Huge Three Headed Dragon", }, - "value": 24, + "value": 713, + }, + { + "category": "Misc", + "configData": { + "id": "Supercomputer Radio", + }, + "value": 3131777, + }, + { + "category": "XPPotion", + "configData": { + "id": "Ultra Mastery", + }, + "value": 3177858, + }, + { + "category": "Booth", + "configData": { + "id": "Strawberry", + }, + "value": 38586, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 33", + }, + "value": 594102, + }, + { + "category": "Enchant", + "configData": { + "id": "Strong Pets", + "tn": 10, + }, + "value": 1104142, + }, + { + "category": "Enchant", + "configData": { + "id": "Diamonds", + "tn": 10, + }, + "value": 703526, + }, + { + "category": "Enchant", + "configData": { + "id": "Lucky Eggs", + "tn": 10, + }, + "value": 1744940, + }, + { + "category": "Enchant", + "configData": { + "id": "Coins", + "tn": 10, + }, + "value": 1025121, + }, + { + "category": "Enchant", + "configData": { + "id": "Criticals", + "tn": 10, + }, + "value": 875107, + }, + { + "category": "Enchant", + "configData": { + "id": "Treasure Hunter", + "tn": 10, + }, + "value": 1142310, + }, + { + "category": "Enchant", + "configData": { + "id": "Tap Power", + "tn": 10, + }, + "value": 799309, }, { "category": "Pet", "configData": { "id": "Dino Bear", }, - "value": 211451725, + "value": 277859492, }, { "category": "Pet", "configData": { "id": "Kawaii Cat", }, - "value": 626851301, + "value": 1013314557, }, { "category": "Pet", @@ -55761,14 +61642,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dino Bear", "pt": 1, }, - "value": 30726743, + "value": 38977862, }, { "category": "Pet", "configData": { "id": "Flower Panda", }, - "value": 830335096, + "value": 1076518156, }, { "category": "Pet", @@ -55776,7 +61657,15 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Kawaii Cat", "pt": 1, }, - "value": 102010222, + "value": 106439991, + }, + { + "category": "Potion", + "configData": { + "id": "Coins", + "tn": 11, + }, + "value": 18323691, }, { "category": "Pet", @@ -55784,7 +61673,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flower Panda", "pt": 1, }, - "value": 113230656, + "value": 147363400, }, { "category": "Pet", @@ -55792,7 +61681,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dino Bear", "pt": 2, }, - "value": 13339062, + "value": 16781103, }, { "category": "Pet", @@ -55800,14 +61689,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Playful Seal", "pt": 2, }, - "value": 58404278, + "value": 77711309, }, { "category": "Pet", "configData": { "id": "Playful Seal", }, - "value": 1392814839, + "value": 1690669973, }, { "category": "Pet", @@ -55815,7 +61704,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flower Panda", "pt": 2, }, - "value": 39351525, + "value": 51780098, }, { "category": "Pet", @@ -55823,14 +61712,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sailor Narwhal", "pt": 2, }, - "value": 3755604, + "value": 4669513, }, { "category": "Pet", "configData": { "id": "Sailor Narwhal", }, - "value": 54024887, + "value": 71637091, }, { "category": "Pet", @@ -55838,7 +61727,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sailor Narwhal", "pt": 1, }, - "value": 8009164, + "value": 9999019, }, { "category": "Pet", @@ -55846,7 +61735,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Kawaii Cat", "pt": 2, }, - "value": 60961755, + "value": 73050113, }, { "category": "Pet", @@ -55854,7 +61743,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Seedling Squirrel", "pt": 1, }, - "value": 46799487, + "value": 56999768, }, { "category": "Pet", @@ -55863,14 +61752,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 44593, + "value": 59453, }, { "category": "Pet", "configData": { "id": "Seedling Squirrel", }, - "value": 337603222, + "value": 469462370, }, { "category": "Pet", @@ -55878,14 +61767,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flower Panda", "sh": true, }, - "value": 1770598, + "value": 2687414, }, { "category": "Pet", "configData": { "id": "Luchador Coyote", }, - "value": 265920, + "value": 99979, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Strawberry", + }, + "value": 40163, }, { "category": "Pet", @@ -55893,28 +61789,60 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Playful Seal", "pt": 1, }, - "value": 198350105, + "value": 235172538, + }, + { + "category": "Potion", + "configData": { + "id": "Damage", + "tn": 11, + }, + "value": 2475428, + }, + { + "category": "Potion", + "configData": { + "id": "Lucky", + "tn": 11, + }, + "value": 1955157, + }, + { + "category": "Potion", + "configData": { + "id": "Treasure Hunter", + "tn": 11, + }, + "value": 5536422, }, { "category": "Pet", "configData": { "id": "Huge Strawberry Cow", }, - "value": 10260, + "value": 10253, + }, + { + "category": "Potion", + "configData": { + "id": "Diamonds", + "tn": 9, + }, + "value": 19327098, }, { "category": "Pet", "configData": { "id": "Kawaii Mushroom Fox", }, - "value": 83976429, + "value": 115995587, }, { "category": "Pet", "configData": { "id": "Bread Shiba", }, - "value": 297092823, + "value": 375050782, }, { "category": "Pet", @@ -55922,14 +61850,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Butterfly Llama", "pt": 2, }, - "value": 59713969, + "value": 70438612, }, { "category": "Pet", "configData": { "id": "Butterfly Llama", }, - "value": 1108322260, + "value": 1392482189, }, { "category": "Pet", @@ -55937,7 +61865,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Kawaii Mushroom Fox", "pt": 1, }, - "value": 11425214, + "value": 14427914, }, { "category": "Pet", @@ -55945,7 +61873,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Butterfly Llama", "pt": 1, }, - "value": 149865551, + "value": 180567434, }, { "category": "Pet", @@ -55953,7 +61881,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Seedling Squirrel", "pt": 2, }, - "value": 16574613, + "value": 20532609, }, { "category": "Pet", @@ -55961,7 +61889,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Kawaii Mushroom Fox", "pt": 2, }, - "value": 4318225, + "value": 5279152, }, { "category": "Pet", @@ -55970,21 +61898,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 278650, + "value": 280759, }, { "category": "Pet", "configData": { "id": "Luchador Axolotl", }, - "value": 185283, + "value": 51687, }, { "category": "Pet", "configData": { "id": "Luchador Eagle", }, - "value": 69030, + "value": 20479, }, { "category": "Pet", @@ -55992,7 +61920,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Strawberry Cow", "pt": 1, }, - "value": 5209, + "value": 5208, }, { "category": "Pet", @@ -56000,14 +61928,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Kawaii Cat", "sh": true, }, - "value": 1458169, + "value": 2585133, }, { "category": "Pet", "configData": { "id": "Huge Helicopter Cat", }, - "value": 90154, + "value": 222188, }, { "category": "Pet", @@ -56015,7 +61943,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bread Shiba", "pt": 1, }, - "value": 42037782, + "value": 51257935, }, { "category": "Pet", @@ -56023,7 +61951,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Strawberry Cow", "pt": 1, }, - "value": 5913573, + "value": 7279201, }, { "category": "Pet", @@ -56031,7 +61959,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bread Shiba", "pt": 2, }, - "value": 18963173, + "value": 22261063, }, { "category": "Pet", @@ -56039,28 +61967,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Playful Seal", "sh": true, }, - "value": 2777095, + "value": 4535769, }, { "category": "Pet", "configData": { "id": "Strawberry Cow", }, - "value": 41198334, + "value": 52906287, }, { "category": "Pet", "configData": { "id": "Chef Monkey", }, - "value": 882645292483, + "value": 773629746119, }, { "category": "Pet", "configData": { "id": "Cupcake Unicorn", }, - "value": 78589697428, + "value": 71401584540, }, { "category": "Pet", @@ -56068,7 +61996,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chef Monkey", "pt": 1, }, - "value": 171678556266, + "value": 157202635655, }, { "category": "Pet", @@ -56076,7 +62004,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Strawberry Cow", "pt": 2, }, - "value": 2798624, + "value": 3274660, }, { "category": "Pet", @@ -56085,7 +62013,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 163612, + "value": 214307, }, { "category": "Pet", @@ -56093,7 +62021,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cupcake Unicorn", "pt": 1, }, - "value": 16255587717, + "value": 15464947697, }, { "category": "Pet", @@ -56102,7 +62030,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 82432, + "value": 110379, }, { "category": "Pet", @@ -56111,7 +62039,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 192120, + "value": 229698, }, { "category": "Pet", @@ -56120,7 +62048,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 124785, + "value": 171762, }, { "category": "Pet", @@ -56129,7 +62057,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 293313, + "value": 400509, }, { "category": "Pet", @@ -56138,7 +62066,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 248503, + "value": 343185, }, { "category": "Pet", @@ -56146,7 +62074,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Seedling Squirrel", "sh": true, }, - "value": 574220, + "value": 816749, }, { "category": "Pet", @@ -56154,7 +62082,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dino Bear", "sh": true, }, - "value": 420093, + "value": 590378, }, { "category": "Pet", @@ -56163,7 +62091,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 89459, + "value": 119603, }, { "category": "Pet", @@ -56171,7 +62099,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Luchador Axolotl", "pt": 2, }, - "value": 5625, + "value": 2403, }, { "category": "Pet", @@ -56180,14 +62108,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 55157, + "value": 69316, }, { "category": "Pet", "configData": { "id": "Huge Luchador Coyote", }, - "value": 6565, + "value": 6775, }, { "category": "Pet", @@ -56196,14 +62124,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 23122, + "value": 31025, }, { "category": "Pet", "configData": { "id": "Huge Luchador Eagle", }, - "value": 3573, + "value": 3672, }, { "category": "Pet", @@ -56211,7 +62139,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Luchador Coyote", "pt": 2, }, - "value": 7849, + "value": 3622, }, { "category": "Pet", @@ -56219,7 +62147,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Luchador Coyote", "sh": true, }, - "value": 5359, + "value": 2175, }, { "category": "Pet", @@ -56227,7 +62155,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Strawberry Cow", "pt": 2, }, - "value": 1458, + "value": 1457, }, { "category": "Pet", @@ -56235,7 +62163,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Luchador Axolotl", "sh": true, }, - "value": 3891, + "value": 1519, }, { "category": "Pet", @@ -56244,7 +62172,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 26399, + "value": 36449, }, { "category": "Pet", @@ -56252,7 +62180,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Butterfly Llama", "sh": true, }, - "value": 2554725, + "value": 3570472, }, { "category": "Pet", @@ -56261,7 +62189,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 330641, + "value": 413329, }, { "category": "Pet", @@ -56269,7 +62197,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sailor Narwhal", "sh": true, }, - "value": 95023, + "value": 128383, }, { "category": "Pet", @@ -56278,7 +62206,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 12120, + "value": 15583, }, { "category": "Pet", @@ -56286,7 +62214,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Helicopter Cat", "sh": true, }, - "value": 1845, + "value": 4643, }, { "category": "Pet", @@ -56294,7 +62222,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Luchador Eagle", "pt": 2, }, - "value": 1994, + "value": 1176, }, { "category": "Pet", @@ -56302,7 +62230,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Kawaii Tiger", "pt": 1, }, - "value": 121, + "value": 1043, }, { "category": "Pet", @@ -56310,7 +62238,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cupcake Unicorn", "pt": 2, }, - "value": 11672184402, + "value": 11757831850, }, { "category": "Pet", @@ -56319,7 +62247,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 58112, + "value": 68769, }, { "category": "Pet", @@ -56336,7 +62264,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Luchador Coyote", "sh": true, }, - "value": 268, + "value": 278, }, { "category": "Pet", @@ -56344,7 +62272,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Luchador Eagle", "sh": true, }, - "value": 1464, + "value": 879, }, { "category": "Pet", @@ -56352,7 +62280,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chef Monkey", "pt": 2, }, - "value": 123348870127, + "value": 126501405623, }, { "category": "Pet", @@ -56368,7 +62296,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Luchador Coyote", "pt": 2, }, - "value": 195, + "value": 205, }, { "category": "Pet", @@ -56386,7 +62314,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 117, + "value": 99, }, { "category": "Pet", @@ -56394,14 +62322,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Luchador Eagle", "pt": 2, }, - "value": 98, + "value": 101, }, { "category": "Pet", "configData": { "id": "Titanic Luchador Cat", }, - "value": 268, + "value": 280, }, { "category": "Pet", @@ -56410,7 +62338,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 13143, + "value": 15858, }, { "category": "Pet", @@ -56418,7 +62346,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chef Monkey", "sh": true, }, - "value": 3187637884, + "value": 2870169407, }, { "category": "Pet", @@ -56427,7 +62355,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 171651, + "value": 199977, }, { "category": "Pet", @@ -56436,7 +62364,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 667127929, + "value": 626951836, }, { "category": "Pet", @@ -56444,7 +62372,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Kawaii Mushroom Fox", "sh": true, }, - "value": 102126, + "value": 134652, }, { "category": "Pet", @@ -56452,7 +62380,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Bread Shiba", "sh": true, }, - "value": 638973, + "value": 869774, }, { "category": "Pet", @@ -56461,7 +62389,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 98387, + "value": 125559, }, { "category": "Pet", @@ -56470,7 +62398,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 61775462, + "value": 60126520, }, { "category": "Pet", @@ -56478,7 +62406,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Helicopter Cat", "pt": 1, }, - "value": 18073, + "value": 46072, }, { "category": "Pet", @@ -56486,14 +62414,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cupcake Unicorn", "sh": true, }, - "value": 275801175, + "value": 257232736, }, { "category": "Pet", "configData": { "id": "Kawaii Dragon", }, - "value": 89973426, + "value": 83488445, }, { "category": "Pet", @@ -56502,7 +62430,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 490392996, + "value": 499473589, }, { "category": "Pet", @@ -56510,7 +62438,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Kawaii Dragon", "pt": 2, }, - "value": 17402475, + "value": 17347979, }, { "category": "Pet", @@ -56518,14 +62446,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Strawberry Cow", "sh": true, }, - "value": 69855, + "value": 93937, }, { "category": "Pet", "configData": { "id": "Masked Owl", }, - "value": 2279827, + "value": 2119148, }, { "category": "Pet", @@ -56533,7 +62461,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Kawaii Dragon", "pt": 1, }, - "value": 18888936, + "value": 18161391, }, { "category": "Pet", @@ -56542,14 +62470,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 45169823, + "value": 45394560, }, { "category": "Pet", "configData": { "id": "Ninja Axolotl", }, - "value": 22701753, + "value": 21158914, }, { "category": "Pet", @@ -56558,7 +62486,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 15993, + "value": 20532, }, { "category": "Pet", @@ -56566,7 +62494,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Luchador Eagle", "sh": true, }, - "value": 157, + "value": 160, }, { "category": "Pet", @@ -56574,7 +62502,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ninja Axolotl", "pt": 1, }, - "value": 5245099, + "value": 5062202, }, { "category": "Pet", @@ -56582,7 +62510,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Masked Owl", "pt": 1, }, - "value": 1446913, + "value": 1416427, }, { "category": "Pet", @@ -56591,7 +62519,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 142, + "value": 126, }, { "category": "Pet", @@ -56600,7 +62528,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8676, + "value": 10305, }, { "category": "Pet", @@ -56608,7 +62536,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Kawaii Tiger", "pt": 1, }, - "value": 1068854, + "value": 1051627, }, { "category": "Pet", @@ -56616,7 +62544,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Masked Owl", "pt": 2, }, - "value": 490753, + "value": 485275, }, { "category": "Pet", @@ -56624,14 +62552,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ninja Axolotl", "pt": 2, }, - "value": 4383680, + "value": 4375157, }, { "category": "Pet", "configData": { "id": "Kawaii Tiger", }, - "value": 1674365, + "value": 1553493, }, { "category": "Pet", @@ -56639,7 +62567,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Kawaii Tiger", "pt": 2, }, - "value": 363963, + "value": 358265, }, { "category": "Pet", @@ -56647,7 +62575,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Kawaii Tiger", "pt": 2, }, - "value": 26, + "value": 214, }, { "category": "Pet", @@ -56655,7 +62583,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Helicopter Cat", "pt": 2, }, - "value": 15266, + "value": 38538, }, { "category": "Pet", @@ -56663,14 +62591,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chef Monkey", "pt": 1, }, - "value": 1339, + "value": 1352, }, { "category": "Pet", "configData": { "id": "Huge Chef Monkey", }, - "value": 9276, + "value": 9312, }, { "category": "Pet", @@ -56679,7 +62607,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 31, + "value": 27, }, { "category": "Pet", @@ -56687,14 +62615,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chef Monkey", "pt": 2, }, - "value": 1192, + "value": 1196, }, { "category": "Pet", "configData": { "id": "Huge Cupcake Unicorn", }, - "value": 135, + "value": 376, }, { "category": "Pet", @@ -56703,7 +62631,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 57703, + "value": 58742, }, { "category": "Pet", @@ -56711,7 +62639,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cupcake Unicorn", "pt": 2, }, - "value": 13, + "value": 37, }, { "category": "Pet", @@ -56719,7 +62647,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Luchador Cat", "sh": true, }, - "value": 12, + "value": 13, }, { "category": "Pet", @@ -56728,7 +62656,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 72417, + "value": 74109, }, { "category": "Pet", @@ -56737,7 +62665,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 4233, + "value": 4421, }, { "category": "Pet", @@ -56746,7 +62674,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5185, + "value": 5454, }, { "category": "Pet", @@ -56755,7 +62683,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 346, + "value": 922, }, { "category": "Pet", @@ -56764,14 +62692,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 18072, + "value": 19180, }, { "category": "Pet", "configData": { "id": "Huge Kawaii Tiger", }, - "value": 749, + "value": 5291, }, { "category": "Pet", @@ -56779,7 +62707,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cupcake Unicorn", "sh": true, }, - "value": 3, + "value": 9, }, { "category": "Pet", @@ -56788,7 +62716,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 2, + "value": 22, }, { "category": "Pet", @@ -56796,7 +62724,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chef Monkey", "sh": true, }, - "value": 201, + "value": 202, }, { "category": "Pet", @@ -56804,7 +62732,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Kawaii Dragon", "sh": true, }, - "value": 193460, + "value": 185646, }, { "category": "Pet", @@ -56813,7 +62741,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 25931, + "value": 26844, }, { "category": "Pet", @@ -56821,7 +62749,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Luchador Cat", "pt": 2, }, - "value": 9, + "value": 10, }, { "category": "Pet", @@ -56830,7 +62758,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 340, + "value": 804, }, { "category": "Pet", @@ -56848,7 +62776,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 3155, + "value": 3804, }, { "category": "Pet", @@ -56857,7 +62785,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2423, + "value": 3042, }, { "category": "Pet", @@ -56865,7 +62793,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ninja Axolotl", "sh": true, }, - "value": 38757, + "value": 38206, }, { "category": "Pet", @@ -56873,7 +62801,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Cupcake Unicorn", "pt": 1, }, - "value": 10, + "value": 44, }, { "category": "Pet", @@ -56891,7 +62819,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 22, + "value": 23, }, { "category": "Pet", @@ -56907,7 +62835,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Titanic Pineapple Cat", }, - "value": 1042, + "value": 1141, }, { "category": "Pet", @@ -56915,7 +62843,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Masked Owl", "sh": true, }, - "value": 1219, + "value": 1196, }, { "category": "Pet", @@ -56923,14 +62851,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Skateboard Bulldog", "pt": 1, }, - "value": 12084, + "value": 35912, }, { "category": "Pet", "configData": { "id": "Huge Skateboard Bulldog", }, - "value": 64045, + "value": 174424, }, { "category": "Pet", @@ -56938,7 +62866,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Skateboard Bulldog", "pt": 2, }, - "value": 10879, + "value": 30057, }, { "category": "Pet", @@ -56946,7 +62874,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Skateboard Bulldog", "sh": true, }, - "value": 1273, + "value": 3690, }, { "category": "Pet", @@ -56955,7 +62883,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 250, + "value": 779, }, { "category": "Pet", @@ -56964,7 +62892,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 200, + "value": 607, }, { "category": "Pet", @@ -56981,7 +62909,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Kawaii Tiger", "sh": true, }, - "value": 617, + "value": 607, }, { "category": "Pet", @@ -56997,21 +62925,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Pineapple Cat", "sh": true, }, - "value": 30, + "value": 32, + }, + { + "category": "Lootbox", + "configData": { + "id": "Color Gift", + }, + "value": 131725651, }, { "category": "Pet", "configData": { "id": "Flowers Fox", }, - "value": 363221647, + "value": 345376666, }, { "category": "Pet", "configData": { "id": "Flowers Hedgehog", }, - "value": 1008957835, + "value": 966595078, }, { "category": "Pet", @@ -57019,7 +62954,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flowers Hedgehog", "pt": 1, }, - "value": 180730588, + "value": 172258974, }, { "category": "Pet", @@ -57027,7 +62962,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flowers Hedgehog", "pt": 2, }, - "value": 48103565, + "value": 48829077, }, { "category": "Pet", @@ -57035,7 +62970,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flowers Fox", "pt": 2, }, - "value": 25523045, + "value": 25721440, }, { "category": "Pet", @@ -57043,7 +62978,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flowers Fox", "pt": 1, }, - "value": 71549552, + "value": 68336044, }, { "category": "Pet", @@ -57051,7 +62986,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flowers Hedgehog", "sh": true, }, - "value": 2175746, + "value": 2077748, }, { "category": "Pet", @@ -57060,7 +62995,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 109015, + "value": 108818, }, { "category": "Pet", @@ -57068,7 +63003,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 5, "id": "Huge Chroma Unicorn", }, - "value": 11599, + "value": 11594, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Art", + }, + "value": 164932, + }, + { + "category": "Booth", + "configData": { + "id": "Art", + }, + "value": 163058, }, { "category": "Pet", @@ -57085,14 +63034,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Flowers Fox", "sh": true, }, - "value": 838916, + "value": 798059, }, { "category": "Pet", "configData": { "id": "Gemstone Gargoyle Dragon", }, - "value": 479056398, + "value": 465924067, }, { "category": "Pet", @@ -57100,7 +63049,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gemstone Gargoyle Dragon", "pt": 1, }, - "value": 63758816, + "value": 62375040, }, { "category": "Pet", @@ -57108,7 +63057,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gemstone Gargoyle Dragon", "pt": 2, }, - "value": 18392729, + "value": 18245441, }, { "category": "Pet", @@ -57117,7 +63066,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 231558, + "value": 222421, }, { "category": "Pet", @@ -57126,7 +63075,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 472544, + "value": 453090, }, { "category": "Pet", @@ -57135,7 +63084,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 185195, + "value": 186216, }, { "category": "Pet", @@ -57143,7 +63092,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Painter Dog", "pt": 1, }, - "value": 31747527, + "value": 31101048, }, { "category": "Pet", @@ -57151,14 +63100,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Painter Cat", "pt": 2, }, - "value": 34322499, + "value": 34133081, }, { "category": "Pet", "configData": { "id": "Painter Cat", }, - "value": 952295834, + "value": 917814410, }, { "category": "Pet", @@ -57167,7 +63116,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 58781, + "value": 58429, }, { "category": "Pet", @@ -57175,14 +63124,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Painter Cat", "pt": 1, }, - "value": 120849099, + "value": 119092532, }, { "category": "Pet", "configData": { "id": "Painter Dog", }, - "value": 219369023, + "value": 211842089, }, { "category": "Pet", @@ -57198,7 +63147,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Painter Dog", "pt": 2, }, - "value": 10891126, + "value": 10819501, }, { "category": "Pet", @@ -57206,7 +63155,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Gemstone Gargoyle Dragon", "sh": true, }, - "value": 857207, + "value": 836453, }, { "category": "Pet", @@ -57215,7 +63164,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 126308, + "value": 125366, }, { "category": "Pet", @@ -57223,14 +63172,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 4, "id": "Huge Chroma Unicorn", }, - "value": 8598, + "value": 8597, }, { "category": "Pet", "configData": { "id": "Paintbot Spider", }, - "value": 403018708369, + "value": 379544269171, }, { "category": "Pet", @@ -57238,7 +63187,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Painter Cat", "sh": true, }, - "value": 1876235, + "value": 1812778, }, { "category": "Pet", @@ -57254,7 +63203,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 6, "id": "Huge Chroma Butterfly", }, - "value": 3099, + "value": 3832, }, { "category": "Pet", @@ -57263,7 +63212,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 101291, + "value": 100381, }, { "category": "Pet", @@ -57272,7 +63221,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 244836, + "value": 240132, }, { "category": "Pet", @@ -57280,7 +63229,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Paintbot Spider", "pt": 2, }, - "value": 30533779131, + "value": 30194769261, }, { "category": "Pet", @@ -57288,7 +63237,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Paintbot Spider", "pt": 1, }, - "value": 64651118571, + "value": 62737343598, }, { "category": "Pet", @@ -57305,7 +63254,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 2, "id": "Huge Chroma Butterfly", }, - "value": 3087, + "value": 3821, }, { "category": "Pet", @@ -57313,7 +63262,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Painter Dog", "sh": true, }, - "value": 398693, + "value": 385872, }, { "category": "Pet", @@ -57322,7 +63271,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 77502, + "value": 76288, }, { "category": "Pet", @@ -57331,7 +63280,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 36933, + "value": 36788, }, { "category": "Pet", @@ -57339,7 +63288,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abstract Dragon", "pt": 1, }, - "value": 11349574154, + "value": 11045016322, }, { "category": "Pet", @@ -57347,7 +63296,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abstract Dragon", "pt": 2, }, - "value": 6513197334, + "value": 6387510050, }, { "category": "Pet", @@ -57355,21 +63304,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Paintbot Spider", "sh": true, }, - "value": 1450679144, + "value": 1382439257, }, { "category": "Pet", "configData": { "id": "Abstract Agony", }, - "value": 4556856300, + "value": 4354175854, }, { "category": "Pet", "configData": { "id": "Abstract Dragon", }, - "value": 61380397702, + "value": 57734346812, }, { "category": "Pet", @@ -57404,7 +63353,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 267329210, + "value": 263220133, }, { "category": "Pet", @@ -57421,7 +63370,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 5, "id": "Huge Chroma Butterfly", }, - "value": 3082, + "value": 3770, }, { "category": "Pet", @@ -57447,7 +63396,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 1, "id": "Huge Chroma Butterfly", }, - "value": 3117, + "value": 3833, }, { "category": "Pet", @@ -57463,7 +63412,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abstract Agony", "pt": 2, }, - "value": 408421058, + "value": 399237736, }, { "category": "Pet", @@ -57471,7 +63420,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abstract Agony", "pt": 1, }, - "value": 812527176, + "value": 800509154, }, { "category": "Pet", @@ -57479,7 +63428,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 3, "id": "Huge Chroma Butterfly", }, - "value": 3140, + "value": 3828, }, { "category": "Pet", @@ -57496,7 +63445,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 4, "id": "Huge Chroma Butterfly", }, - "value": 3158, + "value": 3853, }, { "category": "Pet", @@ -57505,7 +63454,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 141801178, + "value": 138196884, }, { "category": "Pet", @@ -57513,7 +63462,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abstract Dragon", "sh": true, }, - "value": 230987762, + "value": 222165817, }, { "category": "Pet", @@ -57531,7 +63480,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 30608058, + "value": 29788863, }, { "category": "Pet", @@ -57540,7 +63489,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 48716596, + "value": 48086766, }, { "category": "Pet", @@ -57548,7 +63497,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 1, "id": "Chroma Tiger", }, - "value": 866068, + "value": 842744, }, { "category": "Pet", @@ -57556,7 +63505,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 3, "id": "Chroma Tiger", }, - "value": 846441, + "value": 822516, }, { "category": "Pet", @@ -57565,7 +63514,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2732226, + "value": 2691618, }, { "category": "Pet", @@ -57573,7 +63522,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chroma Tiger", "pt": 1, }, - "value": 56749870, + "value": 55777073, }, { "category": "Pet", @@ -57581,7 +63530,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 2, "id": "Chroma Tiger", }, - "value": 1002261, + "value": 973033, }, { "category": "Pet", @@ -57589,7 +63538,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 5, "id": "Chroma Tiger", }, - "value": 863440, + "value": 839133, }, { "category": "Pet", @@ -57597,7 +63546,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chroma Tiger", "pt": 2, }, - "value": 15458012, + "value": 15292131, }, { "category": "Pet", @@ -57605,7 +63554,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 4, "id": "Chroma Tiger", }, - "value": 854408, + "value": 829574, }, { "category": "Pet", @@ -57613,7 +63562,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 6, "id": "Chroma Tiger", }, - "value": 879099, + "value": 853793, }, { "category": "Pet", @@ -57630,7 +63579,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 2, "id": "Huge Chroma Tiger", }, - "value": 5717, + "value": 5713, }, { "category": "Pet", @@ -57639,7 +63588,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1656477, + "value": 1609919, }, { "category": "Pet", @@ -57647,7 +63596,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abstract Agony", "sh": true, }, - "value": 13416113, + "value": 12995800, }, { "category": "Pet", @@ -57672,7 +63621,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 3, "id": "Huge Chroma Tiger", }, - "value": 4863, + "value": 4860, }, { "category": "Pet", @@ -57725,6 +63674,13 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 98, }, + { + "category": "Misc", + "configData": { + "id": "Bucket O' Paint", + }, + "value": 164157669, + }, { "category": "Pet", "configData": { @@ -57750,7 +63706,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chroma Butterfly", "pt": 2, }, - "value": 120, + "value": 144, }, { "category": "Pet", @@ -57777,7 +63733,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 55359, + "value": 54694, }, { "category": "Pet", @@ -57805,7 +63761,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chroma Tiger", "sh": true, }, - "value": 600, + "value": 587, }, { "category": "Pet", @@ -57823,7 +63779,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chroma Butterfly", "pt": 2, }, - "value": 135, + "value": 158, }, { "category": "Pet", @@ -57861,7 +63817,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chroma Butterfly", "pt": 2, }, - "value": 142, + "value": 169, }, { "category": "Pet", @@ -57870,7 +63826,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chroma Tiger", "sh": true, }, - "value": 700, + "value": 686, }, { "category": "Pet", @@ -57879,7 +63835,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chroma Tiger", "sh": true, }, - "value": 623, + "value": 605, }, { "category": "Pet", @@ -57915,7 +63871,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chroma Tiger", "sh": true, }, - "value": 642, + "value": 625, }, { "category": "Pet", @@ -57925,7 +63881,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1180, + "value": 1176, }, { "category": "Pet", @@ -57935,7 +63891,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1149, + "value": 1148, }, { "category": "Pet", @@ -57944,7 +63900,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chroma Butterfly", "pt": 2, }, - "value": 117, + "value": 147, }, { "category": "Pet", @@ -57954,7 +63910,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1137, + "value": 1135, }, { "category": "Pet", @@ -57964,7 +63920,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1121, + "value": 1119, }, { "category": "Pet", @@ -57974,7 +63930,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1436, + "value": 1429, }, { "category": "Pet", @@ -57984,7 +63940,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1141, + "value": 1137, }, { "category": "Pet", @@ -57993,7 +63949,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chroma Tiger", "sh": true, }, - "value": 621, + "value": 606, }, { "category": "Pet", @@ -58012,7 +63968,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chroma Tiger", "sh": true, }, - "value": 617, + "value": 594, }, { "category": "Pet", @@ -58031,7 +63987,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chroma Butterfly", "pt": 2, }, - "value": 116, + "value": 142, }, { "category": "Pet", @@ -58040,7 +63996,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chroma Butterfly", "pt": 2, }, - "value": 135, + "value": 163, }, { "category": "Pet", @@ -58049,7 +64005,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 126824, + "value": 125842, }, { "category": "Pet", @@ -58078,7 +64034,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1, + "value": 89, }, { "category": "Pet", @@ -58097,7 +64053,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1, + "value": 2, }, { "category": "Pet", @@ -58119,6 +64075,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 4, }, + { + "category": "Enchant", + "configData": { + "id": "Diamond Orb", + "tn": 1, + }, + "value": 3522, + }, { "category": "Pet", "configData": { @@ -58135,14 +64099,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 1, "id": "Huge Chroma Swan", }, - "value": 1012, + "value": 1025, }, { "category": "Pet", "configData": { "id": "Huge Chroma Swan", }, - "value": 5412, + "value": 5450, }, { "category": "Pet", @@ -58158,7 +64122,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 4, "id": "Huge Chroma Swan", }, - "value": 1032, + "value": 1042, }, { "category": "Pet", @@ -58166,7 +64130,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 5, "id": "Huge Chroma Swan", }, - "value": 1014, + "value": 1023, }, { "category": "Pet", @@ -58174,7 +64138,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 3, "id": "Huge Chroma Swan", }, - "value": 1009, + "value": 1017, }, { "category": "Pet", @@ -58182,7 +64146,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 2, "id": "Huge Chroma Swan", }, - "value": 1046, + "value": 1052, }, { "category": "Pet", @@ -58190,7 +64154,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 6, "id": "Huge Chroma Swan", }, - "value": 1052, + "value": 1058, }, { "category": "Pet", @@ -58208,7 +64172,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chroma Swan", "pt": 2, }, - "value": 136, + "value": 137, }, { "category": "Pet", @@ -58244,7 +64208,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chroma Swan", "pt": 2, }, - "value": 115, + "value": 116, }, { "category": "Pet", @@ -58259,7 +64223,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Titanic Dolphin", }, - "value": 1049, + "value": 1129, }, { "category": "Pet", @@ -58267,14 +64231,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Dolphin", "pt": 2, }, - "value": 23, + "value": 24, + }, + { + "category": "Misc", + "configData": { + "id": "Graffiti Can", + }, + "value": 1214006570, }, { "category": "Pet", "configData": { "id": "Sad Bunny", }, - "value": 136330, + "value": 36906, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 34", + }, + "value": 445121, }, { "category": "Pet", @@ -58282,28 +64260,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 1, "id": "Huge Chroma Ink Blob", }, - "value": 877, + "value": 876, }, { "category": "Pet", "configData": { "id": "Chroma Tiger", }, - "value": 331145743, + "value": 321338349, }, { "category": "Pet", "configData": { "id": "Sad Hamster", }, - "value": 51127, + "value": 21533, }, { "category": "Pet", "configData": { "id": "Sad Doge", }, - "value": 195780, + "value": 90771, }, { "category": "Pet", @@ -58311,7 +64289,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sad Doge", "sh": true, }, - "value": 4026, + "value": 1891, }, { "category": "Pet", @@ -58319,7 +64297,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shimmering Fish", "pt": 1, }, - "value": 263814209, + "value": 249914459, }, { "category": "Pet", @@ -58327,14 +64305,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shimmering Octopus", "pt": 2, }, - "value": 26342885, + "value": 26399058, }, { "category": "Pet", "configData": { "id": "Shimmering Fish", }, - "value": 1333157212, + "value": 1291117147, }, { "category": "Pet", @@ -58342,14 +64320,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shimmering Fish", "pt": 2, }, - "value": 48562229, + "value": 49452754, }, { "category": "Pet", "configData": { "id": "Shimmering Octopus", }, - "value": 477587814, + "value": 458320134, }, { "category": "Pet", @@ -58357,7 +64335,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shimmering Octopus", "pt": 1, }, - "value": 101263471, + "value": 96443054, }, { "category": "Pet", @@ -58365,7 +64343,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chroma Tiger", "sh": true, }, - "value": 679728, + "value": 659424, }, { "category": "Pet", @@ -58391,7 +64369,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sad Bunny", "pt": 2, }, - "value": 4234, + "value": 1976, }, { "category": "Pet", @@ -58399,14 +64377,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sad Bunny", "sh": true, }, - "value": 2789, + "value": 1100, }, { "category": "Pet", "configData": { "id": "Huge Sad Doge", }, - "value": 4815, + "value": 5030, }, { "category": "Pet", @@ -58421,7 +64399,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Color Ruins Monkey", }, - "value": 7959173, + "value": 7699723, }, { "category": "Pet", @@ -58429,7 +64407,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Color Ruins Parrot", "pt": 2, }, - "value": 906337, + "value": 898750, }, { "category": "Pet", @@ -58437,7 +64415,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sad Hamster", "pt": 2, }, - "value": 1560, + "value": 968, }, { "category": "Pet", @@ -58445,14 +64423,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 4, "id": "Huge Chroma Ink Blob", }, - "value": 4972, + "value": 4970, }, { "category": "Pet", "configData": { "id": "Color Ruins Parrot", }, - "value": 15828916, + "value": 15316930, }, { "category": "Pet", @@ -58461,7 +64439,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 122, + "value": 113, }, { "category": "Pet", @@ -58469,14 +64447,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sad Doge", "pt": 2, }, - "value": 6061, + "value": 3481, }, { "category": "Pet", "configData": { "id": "Huge Sad Hamster", }, - "value": 2710, + "value": 2830, }, { "category": "Pet", @@ -58493,7 +64471,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chroma Ink Blob", "pt": 2, }, - "value": 292, + "value": 291, }, { "category": "Pet", @@ -58510,7 +64488,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 628748, + "value": 557053, }, { "category": "Pet", @@ -58518,7 +64496,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Color Ruins Monkey", "pt": 1, }, - "value": 1642660, + "value": 1570021, }, { "category": "Pet", @@ -58526,7 +64504,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Color Ruins Parrot", "pt": 1, }, - "value": 3270583, + "value": 3157405, }, { "category": "Pet", @@ -58534,7 +64512,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Color Ruins Monkey", "pt": 2, }, - "value": 451065, + "value": 447459, }, { "category": "Pet", @@ -58542,7 +64520,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shimmering Fish", "sh": true, }, - "value": 2894692, + "value": 2820401, }, { "category": "Pet", @@ -58551,7 +64529,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 75, + "value": 65, }, { "category": "Pet", @@ -58560,7 +64538,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 98714, + "value": 98362, }, { "category": "Pet", @@ -58569,7 +64547,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 275196, + "value": 265541, }, { "category": "Pet", @@ -58585,7 +64563,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Graffiti Raccoon", }, - "value": 512096575107, + "value": 480389757804, }, { "category": "Pet", @@ -58594,7 +64572,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 142743, + "value": 148614, }, { "category": "Pet", @@ -58602,7 +64580,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Shimmering Octopus", "sh": true, }, - "value": 1109426, + "value": 1081693, }, { "category": "Pet", @@ -58610,7 +64588,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Sad Hamster", "pt": 2, }, - "value": 92, + "value": 94, }, { "category": "Pet", @@ -58618,7 +64596,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Graffiti Raccoon", "pt": 2, }, - "value": 42926543759, + "value": 42819803450, }, { "category": "Pet", @@ -58626,7 +64604,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Painted Balloon", "pt": 1, }, - "value": 1320378986, + "value": 1277936505, }, { "category": "Pet", @@ -58634,14 +64612,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Painted King Crab", "pt": 2, }, - "value": 295996522, + "value": 292109437, }, { "category": "Pet", "configData": { "id": "Graffiti Dino", }, - "value": 108904994393, + "value": 102126367472, }, { "category": "Pet", @@ -58649,7 +64627,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Graffiti Dino", "pt": 1, }, - "value": 23346243362, + "value": 22439871290, }, { "category": "Pet", @@ -58657,14 +64635,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Graffiti Raccoon", "pt": 1, }, - "value": 127739549358, + "value": 122006812846, }, { "category": "Pet", "configData": { "id": "Painted Balloon", }, - "value": 6242278434, + "value": 5905147547, }, { "category": "Pet", @@ -58672,7 +64650,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Graffiti Dino", "pt": 2, }, - "value": 10217976064, + "value": 10116650184, }, { "category": "Pet", @@ -58689,7 +64667,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Painted King Crab", "pt": 1, }, - "value": 680709488, + "value": 660495891, }, { "category": "Pet", @@ -58697,14 +64675,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Graffiti Raccoon", "sh": true, }, - "value": 1896363814, + "value": 1803758234, }, { "category": "Pet", "configData": { "id": "Painted King Crab", }, - "value": 3132815966, + "value": 2965900423, }, { "category": "Pet", @@ -58719,7 +64697,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Titanic Sad Cat", }, - "value": 186, + "value": 197, }, { "category": "Pet", @@ -58727,7 +64705,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Sad Doge", "sh": true, }, - "value": 184, + "value": 192, }, { "category": "Pet", @@ -58735,7 +64713,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Sad Hamster", "sh": true, }, - "value": 1061, + "value": 617, + }, + { + "category": "Lootbox", + "configData": { + "id": "Graffiti Gift", + }, + "value": 113003360, }, { "category": "Pet", @@ -58744,7 +64729,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 541171767, + "value": 521611436, }, { "category": "Pet", @@ -58752,7 +64737,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Painted Balloon", "pt": 2, }, - "value": 579521787, + "value": 571860565, }, { "category": "Pet", @@ -58760,7 +64745,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Graffiti Dino", "sh": true, }, - "value": 405330264, + "value": 388197591, }, { "category": "Pet", @@ -58778,7 +64763,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 204860363, + "value": 202231875, }, { "category": "Pet", @@ -58786,7 +64771,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chroma Phoenix", "pt": 2, }, - "value": 863783, + "value": 857532, }, { "category": "Pet", @@ -58794,7 +64779,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Sad Hamster", "sh": true, }, - "value": 119, + "value": 125, }, { "category": "Pet", @@ -58831,7 +64816,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 47785390, + "value": 46841963, }, { "category": "Pet", @@ -58840,7 +64825,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 98574705, + "value": 95889296, }, { "category": "Pet", @@ -58848,7 +64833,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Sad Doge", "pt": 2, }, - "value": 137, + "value": 144, }, { "category": "Pet", @@ -58857,7 +64842,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 10054, + "value": 9811, }, { "category": "Pet", @@ -58866,14 +64851,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 5475, + "value": 5501, }, { "category": "Pet", "configData": { "id": "Chroma Phoenix", }, - "value": 3430442, + "value": 3414523, }, { "category": "Pet", @@ -58881,7 +64866,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Painted Balloon", "sh": true, }, - "value": 19764975, + "value": 19141567, }, { "category": "Pet", @@ -58890,7 +64875,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3547, + "value": 3689, }, { "category": "Pet", @@ -58898,7 +64883,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Color Ruins Parrot", "sh": true, }, - "value": 19443, + "value": 18980, }, { "category": "Pet", @@ -58906,7 +64891,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chroma Phoenix", "pt": 1, }, - "value": 1928093, + "value": 1886834, }, { "category": "Pet", @@ -58922,7 +64907,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Color Ruins Monkey", "sh": true, }, - "value": 8550, + "value": 8378, }, { "category": "Pet", @@ -58931,7 +64916,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 2041, + "value": 2105, }, { "category": "Pet", @@ -58940,7 +64925,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1234388, + "value": 1207352, }, { "category": "Pet", @@ -58949,7 +64934,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 4822280, + "value": 4714236, }, { "category": "Pet", @@ -58958,7 +64943,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 2382511, + "value": 2331784, }, { "category": "Pet", @@ -58966,14 +64951,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Painted King Crab", "sh": true, }, - "value": 9459081, + "value": 9190176, }, { "category": "Pet", "configData": { "id": "Huge Chroma Phoenix", }, - "value": 16399, + "value": 16397, }, { "category": "Pet", @@ -58982,7 +64967,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2403106, + "value": 2356881, }, { "category": "Pet", @@ -58990,7 +64975,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 3, "id": "Huge Chroma Snail", }, - "value": 3458, + "value": 4294, }, { "category": "Pet", @@ -59007,7 +64992,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 5, "id": "Huge Chroma Snail", }, - "value": 3516, + "value": 4327, }, { "category": "Pet", @@ -59015,7 +65000,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 4, "id": "Huge Chroma Snail", }, - "value": 3427, + "value": 4253, }, { "category": "Pet", @@ -59032,7 +65017,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 6, "id": "Huge Chroma Snail", }, - "value": 3310, + "value": 4142, }, { "category": "Pet", @@ -59040,7 +65025,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 1, "id": "Huge Chroma Snail", }, - "value": 3456, + "value": 4252, }, { "category": "Pet", @@ -59055,7 +65040,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Graffiti Raccoon", "pt": 1, }, - "value": 427, + "value": 426, }, { "category": "Pet", @@ -59071,7 +65056,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 2, "id": "Huge Chroma Snail", }, - "value": 3515, + "value": 4355, }, { "category": "Pet", @@ -59080,7 +65065,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chroma Snail", "pt": 2, }, - "value": 123, + "value": 159, }, { "category": "Pet", @@ -59088,7 +65073,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chroma Phoenix", "pt": 2, }, - "value": 942, + "value": 940, }, { "category": "Pet", @@ -59114,7 +65099,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 7991, + "value": 8134, }, { "category": "Pet", @@ -59123,7 +65108,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chroma Snail", "pt": 2, }, - "value": 130, + "value": 155, }, { "category": "Pet", @@ -59141,7 +65126,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chroma Snail", "pt": 2, }, - "value": 140, + "value": 180, }, { "category": "Pet", @@ -59150,7 +65135,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chroma Snail", "pt": 2, }, - "value": 141, + "value": 171, }, { "category": "Pet", @@ -59168,7 +65153,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 17759, + "value": 17876, }, { "category": "Pet", @@ -59176,7 +65161,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chroma Phoenix", "sh": true, }, - "value": 994, + "value": 992, }, { "category": "Pet", @@ -59185,7 +65170,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chroma Snail", "pt": 2, }, - "value": 126, + "value": 160, }, { "category": "Pet", @@ -59194,7 +65179,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chroma Snail", "pt": 2, }, - "value": 135, + "value": 182, }, { "category": "Pet", @@ -59210,7 +65195,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Huge Fancy Axolotl", }, - "value": 40504, + "value": 81132, }, { "category": "Pet", @@ -59218,7 +65203,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Fancy Axolotl", "pt": 2, }, - "value": 7078, + "value": 14017, }, { "category": "Pet", @@ -59226,7 +65211,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Fancy Axolotl", "pt": 1, }, - "value": 9036, + "value": 17209, }, { "category": "Pet", @@ -59234,7 +65219,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Fancy Axolotl", "sh": true, }, - "value": 848, + "value": 1733, }, { "category": "Pet", @@ -59243,7 +65228,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2, + "value": 6, }, { "category": "Pet", @@ -59252,7 +65237,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 204, + "value": 366, }, { "category": "Pet", @@ -59261,7 +65246,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 148, + "value": 286, }, { "category": "Pet", @@ -59270,7 +65255,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5, + "value": 7, }, { "category": "Pet", @@ -59297,7 +65282,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1, + "value": 4, }, { "category": "Pet", @@ -59305,7 +65290,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 3, "id": "Chroma Phoenix", }, - "value": 980799, + "value": 940473, }, { "category": "Pet", @@ -59313,7 +65298,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 2, "id": "Chroma Phoenix", }, - "value": 1009663, + "value": 968187, }, { "category": "Pet", @@ -59321,7 +65306,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 5, "id": "Chroma Phoenix", }, - "value": 981823, + "value": 941707, }, { "category": "Pet", @@ -59329,7 +65314,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 4, "id": "Chroma Phoenix", }, - "value": 973820, + "value": 931963, }, { "category": "Pet", @@ -59337,7 +65322,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 1, "id": "Chroma Phoenix", }, - "value": 1092040, + "value": 1049458, }, { "category": "Pet", @@ -59345,7 +65330,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "cv": 6, "id": "Chroma Phoenix", }, - "value": 981446, + "value": 940786, }, { "category": "Pet", @@ -59354,7 +65339,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chroma Phoenix", "sh": true, }, - "value": 1461, + "value": 1428, }, { "category": "Pet", @@ -59412,7 +65397,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chroma Phoenix", "sh": true, }, - "value": 1603, + "value": 1566, }, { "category": "Pet", @@ -59447,7 +65432,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Chroma Phoenix", "pt": 2, }, - "value": 292, + "value": 291, }, { "category": "Pet", @@ -59456,7 +65441,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chroma Phoenix", "sh": true, }, - "value": 1506, + "value": 1469, }, { "category": "Pet", @@ -59465,7 +65450,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chroma Phoenix", "sh": true, }, - "value": 1520, + "value": 1488, }, { "category": "Pet", @@ -59483,7 +65468,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chroma Phoenix", "sh": true, }, - "value": 1411, + "value": 1383, }, { "category": "Pet", @@ -59502,7 +65487,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Chroma Phoenix", "sh": true, }, - "value": 1542, + "value": 1523, }, { "category": "Pet", @@ -59652,7 +65637,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Kawaii Tiger", "sh": true, }, - "value": 3, + "value": 43, }, { "category": "Pet", @@ -59660,7 +65645,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Capybara", "sh": true, }, - "value": 3, + "value": 32, + }, + { + "category": "Booth", + "configData": { + "id": "Rave Crab", + }, + "value": 3724, }, { "category": "Pet", @@ -59675,7 +65667,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Huge Rave Crab", }, - "value": 524, + "value": 525, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Rave Crab", + }, + "value": 750, }, { "category": "Pet", @@ -59701,7 +65700,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1, + "value": 2, }, { "category": "Pet", @@ -59709,14 +65708,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Dragonfruit Dragon", "pt": 2, }, - "value": 15, + "value": 17, }, { "category": "Pet", "configData": { "id": "Titanic Dragonfruit Dragon", }, - "value": 923, + "value": 1055, }, { "category": "Pet", @@ -59724,7 +65723,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Dragonfruit Dragon", "sh": true, }, - "value": 18, + "value": 19, }, { "category": "Pet", @@ -59742,14 +65741,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1, + "value": 2, + }, + { + "category": "Misc", + "configData": { + "id": "Pet Cube", + }, + "value": 2941805930, + }, + { + "category": "Misc", + "configData": { + "id": "Ultra Pet Cube", + }, + "value": 23686531, }, { "category": "Pet", "configData": { "id": "Storm Griffin", }, - "value": 1477328118, + "value": 1793751879, }, { "category": "Pet", @@ -59757,14 +65770,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fire Bat", "sh": true, }, - "value": 381227568, + "value": 370493121, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Elemental", + }, + "value": 98613, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 35", + }, + "value": 591581, }, { "category": "Pet", "configData": { "id": "Ice Snake", }, - "value": 259101620, + "value": 348405344, }, { "category": "Pet", @@ -59772,7 +65799,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Grass Bunny", "pt": 1, }, - "value": 562261576, + "value": 613252382, }, { "category": "Pet", @@ -59780,14 +65807,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rock Monkey", "pt": 1, }, - "value": 156021613, + "value": 201326278, }, { "category": "Pet", "configData": { "id": "Grass Bunny", }, - "value": 2929460498, + "value": 3241794329, }, { "category": "Pet", @@ -59795,7 +65822,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Grass Bunny", "pt": 2, }, - "value": 456906389, + "value": 489789870, }, { "category": "Pet", @@ -59803,28 +65830,35 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rock Monkey", "pt": 2, }, - "value": 66087089, + "value": 81512005, }, { "category": "Pet", "configData": { "id": "Rock Monkey", }, - "value": 1020213770, + "value": 1340813376, }, { "category": "Pet", "configData": { "id": "Soul Cat", }, - "value": 245628, + "value": 117578, }, { "category": "Pet", "configData": { "id": "Soul Bat", }, - "value": 172044, + "value": 53471, + }, + { + "category": "Booth", + "configData": { + "id": "Elemental", + }, + "value": 133961, }, { "category": "Pet", @@ -59832,7 +65866,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Grass Bunny", "sh": true, }, - "value": 8525651, + "value": 9444459, }, { "category": "Pet", @@ -59840,14 +65874,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ice Snake", "pt": 1, }, - "value": 41481469, + "value": 52065571, }, { "category": "Pet", "configData": { "id": "Water Zebra", }, - "value": 274888941, + "value": 421086736, }, { "category": "Pet", @@ -59855,7 +65889,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ice Snake", "pt": 2, }, - "value": 18767178, + "value": 23182649, }, { "category": "Pet", @@ -59863,7 +65897,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Water Zebra", "pt": 1, }, - "value": 41302465, + "value": 54866886, }, { "category": "Pet", @@ -59871,7 +65905,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Penguin", "pt": 2, }, - "value": 25305742, + "value": 30083471, }, { "category": "Pet", @@ -59879,7 +65913,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Poison Turtle", "pt": 1, }, - "value": 145707879, + "value": 191420416, }, { "category": "Pet", @@ -59887,21 +65921,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Poison Turtle", "pt": 2, }, - "value": 40204962, + "value": 63684173, }, { "category": "Pet", "configData": { "id": "Dark Dragon", }, - "value": 163152198, + "value": 160692659, }, { "category": "Pet", "configData": { "id": "Poison Turtle", }, - "value": 1012967182, + "value": 1359791924, }, { "category": "Pet", @@ -59909,7 +65943,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Storm Griffin", "pt": 1, }, - "value": 196275210, + "value": 235835384, }, { "category": "Pet", @@ -59917,14 +65951,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ice Snake", "sh": true, }, - "value": 563759, + "value": 797013, }, { "category": "Pet", "configData": { "id": "Psychic Seal", }, - "value": 1229396010754, + "value": 1140699249288, }, { "category": "Pet", @@ -59932,7 +65966,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Rock Monkey", "sh": true, }, - "value": 2491301, + "value": 3679457, }, { "category": "Pet", @@ -59940,14 +65974,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Storm Griffin", "pt": 2, }, - "value": 61256478, + "value": 76976275, }, { "category": "Pet", "configData": { "id": "Electric Penguin", }, - "value": 532754978, + "value": 609810562, }, { "category": "Pet", @@ -59955,7 +65989,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Water Zebra", "pt": 2, }, - "value": 13797705, + "value": 19045920, }, { "category": "Pet", @@ -59964,7 +65998,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 242890, + "value": 295167, }, { "category": "Pet", @@ -59972,7 +66006,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fire Bat", "pt": 1, }, - "value": 21549926617, + "value": 21611660841, }, { "category": "Pet", @@ -59981,7 +66015,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 128803, + "value": 161480, }, { "category": "Pet", @@ -59989,7 +66023,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Penguin", "pt": 1, }, - "value": 78008132, + "value": 89998304, }, { "category": "Pet", @@ -59997,7 +66031,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Poison Turtle", "sh": true, }, - "value": 2119459, + "value": 3952015, }, { "category": "Pet", @@ -60005,14 +66039,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Fire Bat", "pt": 2, }, - "value": 15369029865, + "value": 16665011236, }, { "category": "Pet", "configData": { "id": "Fire Bat", }, - "value": 106231154419, + "value": 100104045435, }, { "category": "Pet", @@ -60021,7 +66055,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 100371, + "value": 142970, }, { "category": "Pet", @@ -60029,7 +66063,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Psychic Seal", "pt": 2, }, - "value": 166790642574, + "value": 188975646079, }, { "category": "Pet", @@ -60037,14 +66071,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Psychic Seal", "pt": 1, }, - "value": 234594402101, + "value": 232396158275, }, { "category": "Pet", "configData": { "id": "Huge Elemental Phoenix", }, - "value": 14634, + "value": 14630, }, { "category": "Pet", @@ -60052,7 +66086,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Storm Griffin", "sh": true, }, - "value": 4796081, + "value": 5893513, }, { "category": "Pet", @@ -60061,7 +66095,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 454804, + "value": 581754, }, { "category": "Pet", @@ -60070,7 +66104,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 286006, + "value": 426623, }, { "category": "Pet", @@ -60078,14 +66112,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Electric Penguin", "sh": true, }, - "value": 2514573, + "value": 2769432, }, { "category": "Pet", "configData": { "id": "Ghost Axolotl", }, - "value": 35726058, + "value": 35032128, }, { "category": "Pet", @@ -60094,7 +66128,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1881982, + "value": 2123879, }, { "category": "Pet", @@ -60103,7 +66137,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 60713, + "value": 77036, }, { "category": "Pet", @@ -60112,7 +66146,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 140088, + "value": 211309, }, { "category": "Pet", @@ -60121,14 +66155,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1614921, + "value": 1804224, }, { "category": "Pet", "configData": { "id": "Soul Dragon", }, - "value": 63826, + "value": 22616, }, { "category": "Pet", @@ -60136,7 +66170,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Soul Bat", "pt": 2, }, - "value": 5235, + "value": 2394, }, { "category": "Pet", @@ -60144,7 +66178,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dark Dragon", "pt": 1, }, - "value": 70368438, + "value": 72239907, }, { "category": "Pet", @@ -60153,14 +66187,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 57731, + "value": 77451, }, { "category": "Pet", "configData": { "id": "Huge Soul Cat", }, - "value": 6056, + "value": 6699, }, { "category": "Pet", @@ -60169,7 +66203,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 774316670, + "value": 869578297, }, { "category": "Pet", @@ -60177,7 +66211,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Water Zebra", "sh": true, }, - "value": 503068, + "value": 768597, }, { "category": "Pet", @@ -60185,7 +66219,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Psychic Seal", "sh": true, }, - "value": 4524778108, + "value": 4318530526, }, { "category": "Pet", @@ -60194,7 +66228,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 409261, + "value": 459314, }, { "category": "Pet", @@ -60203,7 +66237,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 125560, + "value": 150920, }, { "category": "Pet", @@ -60212,7 +66246,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 680723, + "value": 813426, }, { "category": "Pet", @@ -60220,7 +66254,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dark Dragon", "pt": 2, }, - "value": 26408635, + "value": 28060561, }, { "category": "Pet", @@ -60228,7 +66262,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Elemental Phoenix", "pt": 1, }, - "value": 7551, + "value": 7546, }, { "category": "Pet", @@ -60237,7 +66271,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 126839836, + "value": 137080424, }, { "category": "Pet", @@ -60246,14 +66280,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 229193, + "value": 276991, }, { "category": "Pet", "configData": { "id": "Elemental Phoenix", }, - "value": 3683724, + "value": 3718920, }, { "category": "Pet", @@ -60262,7 +66296,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 1011004717, + "value": 1037196984, }, { "category": "Pet", @@ -60270,7 +66304,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ghost Axolotl", "pt": 1, }, - "value": 16572094, + "value": 17082555, }, { "category": "Pet", @@ -60278,7 +66312,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Dark Dragon", "sh": true, }, - "value": 699944, + "value": 714243, }, { "category": "Pet", @@ -60286,7 +66320,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ghost Axolotl", "pt": 2, }, - "value": 6415274, + "value": 6780652, }, { "category": "Pet", @@ -60294,7 +66328,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Soul Dragon", "pt": 2, }, - "value": 1921, + "value": 959, }, { "category": "Pet", @@ -60303,7 +66337,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 71957222, + "value": 79423263, }, { "category": "Pet", @@ -60320,14 +66354,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Elemental Phoenix", "pt": 2, }, - "value": 2192, + "value": 2191, }, { "category": "Pet", "configData": { "id": "Huge Electric Penguin", }, - "value": 84751, + "value": 119589, }, { "category": "Pet", @@ -60335,7 +66369,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Soul Cat", "sh": true, }, - "value": 5000, + "value": 2153, }, { "category": "Pet", @@ -60343,14 +66377,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Soul Cat", "pt": 2, }, - "value": 201, + "value": 221, }, { "category": "Pet", "configData": { "id": "Huge Soul Dragon", }, - "value": 3289, + "value": 3622, }, { "category": "Pet", @@ -60358,7 +66392,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Strawberry Corgi", "sh": true, }, - "value": 18, + "value": 20, }, { "category": "Pet", @@ -60366,7 +66400,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Soul Cat", "sh": true, }, - "value": 222, + "value": 247, }, { "category": "Pet", @@ -60381,7 +66415,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Titanic Soul Owl", }, - "value": 241, + "value": 266, }, { "category": "Pet", @@ -60389,14 +66423,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Soul Cat", "pt": 2, }, - "value": 7426, + "value": 3951, }, { "category": "Pet", "configData": { "id": "Huge Dark Dragon", }, - "value": 6666, + "value": 7808, }, { "category": "Pet", @@ -60405,7 +66439,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 190389, + "value": 201345, }, { "category": "Pet", @@ -60413,7 +66447,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Elemental Phoenix", "pt": 1, }, - "value": 1309233, + "value": 1355294, }, { "category": "Pet", @@ -60421,7 +66455,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Soul Bat", "sh": true, }, - "value": 3546, + "value": 1621, }, { "category": "Pet", @@ -60429,7 +66463,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Ghost Axolotl", "sh": true, }, - "value": 103079, + "value": 107902, }, { "category": "Pet", @@ -60437,7 +66471,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Soul Dragon", "sh": true, }, - "value": 1282, + "value": 737, }, { "category": "Pet", @@ -60446,7 +66480,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 366790, + "value": 372959, }, { "category": "Pet", @@ -60454,7 +66488,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Elemental Phoenix", "sh": true, }, - "value": 5970, + "value": 6488, }, { "category": "Pet", @@ -60463,7 +66497,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 161, + "value": 160, }, { "category": "Pet", @@ -60480,7 +66514,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Elemental Phoenix", "pt": 2, }, - "value": 477506, + "value": 503464, }, { "category": "Pet", @@ -60488,7 +66522,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Electric Penguin", "pt": 1, }, - "value": 9652, + "value": 13779, }, { "category": "Pet", @@ -60496,7 +66530,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Dark Dragon", "pt": 1, }, - "value": 744, + "value": 872, }, { "category": "Pet", @@ -60505,7 +66539,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 109, + "value": 107, }, { "category": "Pet", @@ -60514,7 +66548,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 55020, + "value": 57866, + }, + { + "category": "Lootbox", + "configData": { + "id": "Elemental Gift", + }, + "value": 13202153, }, { "category": "Pet", @@ -60522,7 +66563,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Soul Dragon", "pt": 2, }, - "value": 98, + "value": 112, }, { "category": "Pet", @@ -60530,7 +66571,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Soul Dragon", "sh": true, }, - "value": 132, + "value": 143, }, { "category": "Pet", @@ -60539,7 +66580,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 39, + "value": 43, }, { "category": "Pet", @@ -60547,7 +66588,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Electric Penguin", "pt": 2, }, - "value": 3174, + "value": 4133, }, { "category": "Pet", @@ -60555,7 +66596,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Dark Dragon", "pt": 2, }, - "value": 166, + "value": 194, }, { "category": "Pet", @@ -60563,7 +66604,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Dark Dragon", "sh": true, }, - "value": 69, + "value": 77, }, { "category": "Pet", @@ -60572,14 +66613,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 69587, + "value": 67580, }, { "category": "Pet", "configData": { "id": "Huge Water Zebra", }, - "value": 8108, + "value": 12348, }, { "category": "Pet", @@ -60587,7 +66628,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Water Zebra", "pt": 1, }, - "value": 1581, + "value": 2387, }, { "category": "Pet", @@ -60603,7 +66644,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Electric Penguin", "sh": true, }, - "value": 1009, + "value": 1453, }, { "category": "Pet", @@ -60612,14 +66653,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8195, + "value": 8449, }, { "category": "Pet", "configData": { "id": "Titanic Strawberry Corgi", }, - "value": 632, + "value": 750, }, { "category": "Pet", @@ -60628,7 +66669,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 124, + "value": 168, }, { "category": "Pet", @@ -60637,7 +66678,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 14566, + "value": 15504, }, { "category": "Pet", @@ -60646,7 +66687,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 8, + "value": 9, }, { "category": "Pet", @@ -60654,7 +66695,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Water Zebra", "pt": 2, }, - "value": 312, + "value": 492, }, { "category": "Pet", @@ -60663,7 +66704,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 7, + "value": 8, }, { "category": "Pet", @@ -60672,7 +66713,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 43, + "value": 50, }, { "category": "Pet", @@ -60689,7 +66730,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Soul Owl", "pt": 2, }, - "value": 8, + "value": 9, }, { "category": "Pet", @@ -60697,7 +66738,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Strawberry Corgi", "pt": 2, }, - "value": 12, + "value": 15, }, { "category": "Pet", @@ -60706,7 +66747,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1, + "value": 20, }, { "category": "Pet", @@ -60715,7 +66756,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 2, + "value": 3, }, { "category": "Pet", @@ -60724,7 +66765,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 6, + "value": 8, }, { "category": "Pet", @@ -60732,7 +66773,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Inferno Stealth Bobcat", "pt": 1, }, - "value": 17, + "value": 2270, }, { "category": "Pet", @@ -60747,14 +66788,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Huge Inferno Stealth Bobcat", }, - "value": 138, + "value": 13984, }, { "category": "Pet", "configData": { "id": "Titanic Pink Kitsune Fox", }, - "value": 832, + "value": 987, }, { "category": "Pet", @@ -60762,14 +66803,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Pink Kitsune Fox", "pt": 2, }, - "value": 14, + "value": 17, }, { "category": "Pet", "configData": { "id": "Huge Inferno Stealth Cat", }, - "value": 130, + "value": 14482, }, { "category": "Pet", @@ -60777,7 +66818,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Pink Kitsune Fox", "sh": true, }, - "value": 22, + "value": 23, }, { "category": "Pet", @@ -60785,7 +66826,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Inferno Stealth Bobcat", "pt": 2, }, - "value": 5, + "value": 503, }, { "category": "Pet", @@ -60795,6 +66836,20 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 150, }, + { + "category": "Hoverboard", + "configData": { + "id": "Reversed", + }, + "value": 749, + }, + { + "category": "Booth", + "configData": { + "id": "Reversed", + }, + "value": 3620, + }, { "category": "Pet", "configData": { @@ -60816,7 +66871,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Ancient Dragon", "sh": true, }, - "value": 20, + "value": 268, }, { "category": "Pet", @@ -60824,7 +66879,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Ancient Dragon", "pt": 1, }, - "value": 104, + "value": 1338, }, { "category": "Pet", @@ -60832,7 +66887,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Ancient Dragon", "pt": 2, }, - "value": 25, + "value": 274, }, { "category": "Pet", @@ -60840,7 +66895,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Inferno Stealth Cat", "pt": 2, }, - "value": 3, + "value": 479, }, { "category": "Pet", @@ -60848,14 +66903,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Inferno Stealth Cat", "pt": 1, }, - "value": 17, + "value": 2223, }, { "category": "Pet", "configData": { "id": "Huge Guest Noob", }, - "value": 5796, + "value": 24900, }, { "category": "Pet", @@ -60863,7 +66918,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Guest Noob", "pt": 2, }, - "value": 1013, + "value": 4420, }, { "category": "Pet", @@ -60871,7 +66926,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Guest Noob", "pt": 1, }, - "value": 1179, + "value": 5284, }, { "category": "Pet", @@ -60879,7 +66934,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Guest Noob", "sh": true, }, - "value": 129, + "value": 553, }, { "category": "Pet", @@ -60888,7 +66943,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 20, + "value": 102, }, { "category": "Pet", @@ -60897,7 +66952,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 18, + "value": 122, }, { "category": "Pet", @@ -60905,7 +66960,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Inferno Stealth Cat", "sh": true, }, - "value": 4, + "value": 607, }, { "category": "Pet", @@ -60914,7 +66969,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1, + "value": 15, }, { "category": "Pet", @@ -60922,7 +66977,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Coin", "pt": 2, }, - "value": 1, + "value": 4, }, { "category": "Pet", @@ -60930,14 +66985,29 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Inferno Stealth Bobcat", "sh": true, }, - "value": 3, + "value": 558, }, { "category": "Pet", "configData": { "id": "Huge Dino Cat", }, - "value": 1, + "value": 1906, + }, + { + "category": "Enchant", + "configData": { + "id": "Active Huge Overload", + "tn": 1, + }, + "value": 10337, + }, + { + "category": "Misc", + "configData": { + "id": "Haunted Backrooms Key", + }, + "value": 8904281, }, { "category": "Pet", @@ -60945,14 +67015,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pumpkin Cat", "pt": 1, }, - "value": 1111568334, + "value": 1306289428, }, { "category": "Pet", "configData": { "id": "Albino Bat", }, - "value": 7617941771, + "value": 8067870358, }, { "category": "Pet", @@ -60960,14 +67030,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pumpkin Cat", "pt": 2, }, - "value": 690119574, + "value": 761232496, }, { "category": "Pet", "configData": { "id": "Zombie Deer", }, - "value": 4949549977, + "value": 4722397006, }, { "category": "Pet", @@ -60975,7 +67045,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Albino Bat", "pt": 2, }, - "value": 384215802, + "value": 453946114, }, { "category": "Pet", @@ -60983,14 +67053,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Albino Bat", "pt": 1, }, - "value": 721623283, + "value": 967673208, }, { "category": "Pet", "configData": { "id": "Pumpkin Cat", }, - "value": 9897529174, + "value": 9943968360, }, { "category": "Pet", @@ -60999,13 +67069,34 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 6527, }, + { + "category": "Hoverboard", + "configData": { + "id": "Web", + }, + "value": 46210, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 36", + }, + "value": 455420, + }, + { + "category": "Misc", + "configData": { + "id": "Candy Corn", + }, + "value": 3362679390, + }, { "category": "Pet", "configData": { "id": "Zombie Deer", "pt": 2, }, - "value": 414092766, + "value": 441860220, }, { "category": "Pet", @@ -61013,14 +67104,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Zombie Deer", "pt": 1, }, - "value": 615860362, + "value": 674123863, }, { "category": "Pet", "configData": { "id": "Little Melty", }, - "value": 17483016609, + "value": 15870632362, }, { "category": "Pet", @@ -61028,7 +67119,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pumpkin Cat", "sh": true, }, - "value": 32914169, + "value": 33808486, }, { "category": "Pet", @@ -61036,7 +67127,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Albino Bat", "sh": true, }, - "value": 22660532, + "value": 24309592, }, { "category": "Pet", @@ -61045,7 +67136,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2400763, + "value": 3112064, }, { "category": "Pet", @@ -61053,7 +67144,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Little Melty", "pt": 1, }, - "value": 2098553971, + "value": 2383960230, }, { "category": "Pet", @@ -61061,14 +67152,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Little Melty", "pt": 2, }, - "value": 1454194664, + "value": 1525323490, }, { "category": "Pet", "configData": { "id": "Slasher Sloth", }, - "value": 116596, + "value": 80193, }, { "category": "Pet", @@ -61077,7 +67168,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1485798, + "value": 1676979, }, { "category": "Pet", @@ -61086,14 +67177,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 4237094, + "value": 4892149, }, { "category": "Pet", "configData": { "id": "Huge Machete Dog", }, - "value": 1622, + "value": 2902, }, { "category": "Pet", @@ -61102,21 +67193,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 2943559, + "value": 3158411, }, { "category": "Pet", "configData": { "id": "Cannibal Meerkat", }, - "value": 81022, + "value": 42195, }, { "category": "Pet", "configData": { "id": "Broomstick Cat", }, - "value": 130244149629, + "value": 116513642114, }, { "category": "Pet", @@ -61124,7 +67215,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Zombie Deer", "sh": true, }, - "value": 17097447, + "value": 16660913, }, { "category": "Pet", @@ -61132,28 +67223,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Ghoul Horse", "pt": 1, }, - "value": 3301, + "value": 3300, }, { "category": "Pet", "configData": { "id": "Machete Dog", }, - "value": 30497, + "value": 19089, }, { "category": "Pet", "configData": { "id": "Huge Dominus Darkwing", }, - "value": 2581, + "value": 3679, }, { "category": "Pet", "configData": { "id": "Huge Slasher Sloth", }, - "value": 2847, + "value": 5156, }, { "category": "Pet", @@ -61161,7 +67252,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Slasher Sloth", "pt": 2, }, - "value": 3569, + "value": 2825, + }, + { + "category": "Booth", + "configData": { + "id": "Vampire", + }, + "value": 46197, + }, + { + "category": "Lootbox", + "configData": { + "id": "Candy Corn Gift", + }, + "value": 317569456, + }, + { + "category": "Lootbox", + "configData": { + "id": "Pumpkin Gift", + }, + "value": 13839123, }, { "category": "Pet", @@ -61169,7 +67281,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Broomstick Cat", "pt": 2, }, - "value": 9766346002, + "value": 10227603895, }, { "category": "Pet", @@ -61177,7 +67289,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Machete Dog", "sh": true, }, - "value": 623, + "value": 650, }, { "category": "Pet", @@ -61185,7 +67297,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Broomstick Cat", "pt": 1, }, - "value": 21098287390, + "value": 21409348610, }, { "category": "Pet", @@ -61193,7 +67305,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Dominus Darkwing", "pt": 1, }, - "value": 1226, + "value": 1718, }, { "category": "Pet", @@ -61202,7 +67314,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1812027, + "value": 1895591, }, { "category": "Pet", @@ -61210,7 +67322,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cannibal Meerkat", "sh": true, }, - "value": 1670, + "value": 1272, }, { "category": "Pet", @@ -61228,14 +67340,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5570300, + "value": 5768419, }, { "category": "Pet", "configData": { "id": "Skeleton Cat", }, - "value": 58049255950, + "value": 51568431443, }, { "category": "Pet", @@ -61244,7 +67356,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 2440452, + "value": 2669423, }, { "category": "Pet", @@ -61252,7 +67364,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Little Melty", "sh": true, }, - "value": 55155580, + "value": 50919624, }, { "category": "Pet", @@ -61260,7 +67372,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Slasher Sloth", "sh": true, }, - "value": 2353, + "value": 1811, }, { "category": "Pet", @@ -61268,7 +67380,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Machete Dog", "pt": 2, }, - "value": 907, + "value": 948, }, { "category": "Pet", @@ -61284,7 +67396,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Broomstick Cat", "sh": true, }, - "value": 418494813, + "value": 388279092, }, { "category": "Pet", @@ -61293,7 +67405,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 7514271, + "value": 8374992, }, { "category": "Pet", @@ -61301,7 +67413,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Skeleton Cat", "pt": 2, }, - "value": 5713967547, + "value": 5878853066, }, { "category": "Pet", @@ -61309,7 +67421,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Skeleton Cat", "pt": 1, }, - "value": 10242254759, + "value": 10430484904, }, { "category": "Pet", @@ -61317,7 +67429,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Machete Dog", "sh": true, }, - "value": 70, + "value": 138, }, { "category": "Pet", @@ -61325,7 +67437,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Cannibal Meerkat", "pt": 2, }, - "value": 2463, + "value": 2072, }, { "category": "Pet", @@ -61333,7 +67445,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Glowy the Ghost", "pt": 1, }, - "value": 3364939175, + "value": 3503205949, }, { "category": "Pet", @@ -61341,14 +67453,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Glowy the Ghost", "pt": 2, }, - "value": 1955216423, + "value": 1991722897, }, { "category": "Pet", "configData": { "id": "Glowy the Ghost", }, - "value": 18293887389, + "value": 16588502208, }, { "category": "Pet", @@ -61357,7 +67469,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 38240884, + "value": 38916000, }, { "category": "Pet", @@ -61374,7 +67486,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 76703794, + "value": 78588317, }, { "category": "Pet", @@ -61382,7 +67494,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Slasher Sloth", "sh": true, }, - "value": 121, + "value": 229, }, { "category": "Pet", @@ -61391,7 +67503,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 22832942, + "value": 22911940, }, { "category": "Pet", @@ -61399,7 +67511,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Skeleton Cat", "sh": true, }, - "value": 195164577, + "value": 181672384, + }, + { + "category": "Booth", + "configData": { + "id": "Haunted", + }, + "value": 366311, }, { "category": "Pet", @@ -61407,14 +67526,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Machete Dog", "pt": 2, }, - "value": 55, + "value": 93, }, { "category": "Pet", "configData": { "id": "Hippokin", }, - "value": 138227361, + "value": 183028688, }, { "category": "Pet", @@ -61422,7 +67541,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hippokin", "pt": 1, }, - "value": 25253985, + "value": 33118321, }, { "category": "Pet", @@ -61430,7 +67549,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Dominus Darkwing", "sh": true, }, - "value": 65, + "value": 100, }, { "category": "Pet", @@ -61438,7 +67557,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hippokin", "pt": 2, }, - "value": 15144071, + "value": 19457444, }, { "category": "Pet", @@ -61446,7 +67565,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Dominus Darkwing", "pt": 2, }, - "value": 304, + "value": 422, + }, + { + "category": "Misc", + "configData": { + "id": "Pumpkin", + }, + "value": 152783446, }, { "category": "Pet", @@ -61462,7 +67588,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "configData": { "id": "Titanic Ghostface Cat", }, - "value": 105, + "value": 193, }, { "category": "Pet", @@ -61471,7 +67597,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 38735584, + "value": 39577810, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Witch Cat", + }, + "value": 207937, }, { "category": "Pet", @@ -61480,7 +67613,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 12182242, + "value": 12602770, }, { "category": "Pet", @@ -61488,14 +67621,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Glowy the Ghost", "sh": true, }, - "value": 58773317, + "value": 55912142, + }, + { + "category": "Booth", + "configData": { + "id": "Cauldron", + }, + "value": 419986, }, { "category": "Pet", "configData": { "id": "Pumpkin Scarecrow", }, - "value": 313598353, + "value": 718059994, }, { "category": "Pet", @@ -61504,7 +67644,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 7383216, + "value": 7379792, }, { "category": "Pet", @@ -61512,7 +67652,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Slasher Sloth", "pt": 2, }, - "value": 84, + "value": 163, }, { "category": "Pet", @@ -61520,14 +67660,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pumpkin Scarecrow", "pt": 1, }, - "value": 40516493, + "value": 104655469, }, { "category": "Pet", "configData": { "id": "Huge Skeleton Cat", }, - "value": 15691, + "value": 45029, }, { "category": "Pet", @@ -61535,7 +67675,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pumpkin Scarecrow", "pt": 2, }, - "value": 10102764, + "value": 24191000, }, { "category": "Pet", @@ -61544,14 +67684,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 72, + "value": 121, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Pumpkin Cat", + }, + "value": 9997, }, { "category": "Pet", "configData": { "id": "Titanic Dominus Darkwing", }, - "value": 30, + "value": 74, }, { "category": "Pet", @@ -61560,14 +67707,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 59, + "value": 90, }, { "category": "Pet", "configData": { "id": "Huge Little Melty", }, - "value": 1344, + "value": 2591, }, { "category": "Pet", @@ -61577,13 +67724,20 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` }, "value": 1638, }, + { + "category": "Booth", + "configData": { + "id": "Pumpkin Cat", + }, + "value": 19610, + }, { "category": "Pet", "configData": { "id": "Huge Skeleton Cat", "pt": 1, }, - "value": 3151, + "value": 8925, }, { "category": "Pet", @@ -61607,7 +67761,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 90631, + "value": 122312, }, { "category": "Pet", @@ -61616,7 +67770,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 14, + "value": 28, }, { "category": "Pet", @@ -61624,7 +67778,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Little Melty", "pt": 1, }, - "value": 222, + "value": 463, }, { "category": "Pet", @@ -61632,7 +67786,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Little Melty", "pt": 2, }, - "value": 101, + "value": 149, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Vampire Bat", + }, + "value": 150728, }, { "category": "Pet", @@ -61640,7 +67801,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Hippokin", "sh": true, }, - "value": 312742, + "value": 487336, }, { "category": "Pet", @@ -61649,7 +67810,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 71132, + "value": 90624, }, { "category": "Pet", @@ -61674,7 +67835,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Skeleton Cat", "pt": 2, }, - "value": 654, + "value": 1808, }, { "category": "Pet", @@ -61683,7 +67844,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 68469, + "value": 204101, }, { "category": "Pet", @@ -61700,7 +67861,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 9, + "value": 12, }, { "category": "Pet", @@ -61718,14 +67879,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 28395, + "value": 70355, }, { "category": "Pet", "configData": { "id": "Huge Glowy the Ghost", }, - "value": 38919, + "value": 75855, }, { "category": "Pet", @@ -61733,7 +67894,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Glowy the Ghost", "pt": 2, }, - "value": 3440, + "value": 6348, }, { "category": "Pet", @@ -61741,7 +67902,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Glowy the Ghost", "pt": 1, }, - "value": 4300, + "value": 7841, }, { "category": "Pet", @@ -61758,7 +67919,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Glowy the Ghost", "sh": true, }, - "value": 784, + "value": 1558, }, { "category": "Pet", @@ -61767,7 +67928,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 2, + "value": 3, }, { "category": "Pet", @@ -61775,7 +67936,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Pumpkin Scarecrow", "sh": true, }, - "value": 599869, + "value": 1434339, }, { "category": "Pet", @@ -61784,7 +67945,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 71, + "value": 119, }, { "category": "Pet", @@ -61801,7 +67962,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 92, + "value": 162, }, { "category": "Pet", @@ -61818,7 +67979,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Dominus Darkwing", "pt": 1, }, - "value": 10, + "value": 26, }, { "category": "Pet", @@ -61827,7 +67988,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3, + "value": 5, }, { "category": "Pet", @@ -61836,7 +67997,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1, + "value": 3, }, { "category": "Pet", @@ -61845,14 +68006,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1, + "value": 2, }, { "category": "Pet", "configData": { "id": "Titanic Fossil Dragon", }, - "value": 506, + "value": 963, }, { "category": "Pet", @@ -61860,14 +68021,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Nightmare Corgi", "pt": 2, }, - "value": 7, + "value": 13, }, { "category": "Pet", "configData": { "id": "Titanic Nightmare Corgi", }, - "value": 282, + "value": 590, }, { "category": "Pet", @@ -61875,7 +68036,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Fossil Dragon", "pt": 2, }, - "value": 7, + "value": 12, }, { "category": "Pet", @@ -61883,7 +68044,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Dominus Darkwing", "pt": 2, }, - "value": 3, + "value": 9, }, { "category": "Pet", @@ -61891,7 +68052,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Fossil Dragon", "sh": true, }, - "value": 6, + "value": 16, }, { "category": "Pet", @@ -61899,14 +68060,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Nightmare Corgi", "sh": true, }, - "value": 3, + "value": 7, }, { "category": "Pet", "configData": { "id": "Huge Shiba", }, - "value": 5, + "value": 456, + }, + { + "category": "Misc", + "configData": { + "id": "Halloween Mask", + }, + "value": 60363226, }, { "category": "Pet", @@ -61914,7 +68082,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Evil Wolverine", "pt": 2, }, - "value": 57344697, + "value": 1344019381, }, { "category": "Pet", @@ -61922,7 +68090,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tarantula", "pt": 2, }, - "value": 29761735, + "value": 441765842, }, { "category": "Pet", @@ -61930,7 +68098,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Evil Wolverine", "pt": 1, }, - "value": 81101108, + "value": 2246403567, }, { "category": "Pet", @@ -61938,28 +68106,28 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tarantula", "pt": 1, }, - "value": 79161160, + "value": 790852309, }, { "category": "Pet", "configData": { "id": "Tarantula", }, - "value": 585978996, + "value": 4663652567, }, { "category": "Pet", "configData": { "id": "Evil Wolverine", }, - "value": 769095714, + "value": 14909447576, }, { "category": "Pet", "configData": { "id": "Huge Phantom Wolf", }, - "value": 1081, + "value": 4490, }, { "category": "Pet", @@ -61968,7 +68136,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 167324, + "value": 4470357, }, { "category": "Pet", @@ -61977,7 +68145,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 214694, + "value": 7257089, }, { "category": "Pet", @@ -61985,7 +68153,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Tarantula", "sh": true, }, - "value": 1234167, + "value": 12434916, }, { "category": "Pet", @@ -61994,7 +68162,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 158641, + "value": 2458461, }, { "category": "Pet", @@ -62002,14 +68170,21 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Evil Wolverine", "sh": true, }, - "value": 1896935, + "value": 42486103, + }, + { + "category": "Lootbox", + "configData": { + "id": "Ghostface Gift", + }, + "value": 980806, }, { "category": "Pet", "configData": { "id": "Reaper Cat", }, - "value": 10973352266, + "value": 117770690193, }, { "category": "Pet", @@ -62017,14 +68192,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mummy Bunny", "pt": 1, }, - "value": 4273087833, + "value": 70717748766, }, { "category": "Pet", "configData": { "id": "Mummy Bunny", }, - "value": 18731783103, + "value": 196655810269, }, { "category": "Pet", @@ -62032,7 +68207,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Phantom Wolf", "pt": 1, }, - "value": 642, + "value": 2354, }, { "category": "Pet", @@ -62040,7 +68215,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Reaper Cat", "pt": 1, }, - "value": 2153705855, + "value": 32898961019, }, { "category": "Pet", @@ -62048,7 +68223,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mummy Bunny", "pt": 2, }, - "value": 1366919948, + "value": 22586976413, }, { "category": "Pet", @@ -62056,7 +68231,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Reaper Cat", "pt": 2, }, - "value": 932038605, + "value": 14011287841, }, { "category": "Pet", @@ -62065,7 +68240,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 79041, + "value": 1432504, }, { "category": "Pet", @@ -62073,7 +68248,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Mummy Bunny", "sh": true, }, - "value": 54339370, + "value": 685025190, }, { "category": "Pet", @@ -62081,14 +68256,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Reaper Cat", "sh": true, }, - "value": 33468124, + "value": 437593909, }, { "category": "Pet", "configData": { "id": "Vampire Dragon", }, - "value": 208539526, + "value": 2314729966, }, { "category": "Pet", @@ -62096,7 +68271,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Vampire Dragon", "pt": 1, }, - "value": 40237396, + "value": 611753854, }, { "category": "Pet", @@ -62105,7 +68280,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 14540185, + "value": 285704678, }, { "category": "Pet", @@ -62114,7 +68289,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3525628, + "value": 60938747, }, { "category": "Pet", @@ -62122,14 +68297,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Vampire Dragon", "pt": 2, }, - "value": 18276815, + "value": 267938083, }, { "category": "Pet", "configData": { "id": "Abomination", }, - "value": 466543, + "value": 5903929, }, { "category": "Pet", @@ -62138,7 +68313,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 5025939, + "value": 94704690, }, { "category": "Pet", @@ -62146,7 +68321,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abomination", "pt": 2, }, - "value": 40284, + "value": 636991, }, { "category": "Pet", @@ -62154,7 +68329,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Phantom Wolf", "pt": 2, }, - "value": 143, + "value": 560, }, { "category": "Pet", @@ -62162,7 +68337,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abomination", "pt": 1, }, - "value": 81691, + "value": 1443519, }, { "category": "Pet", @@ -62171,7 +68346,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 7622174, + "value": 140522559, }, { "category": "Pet", @@ -62179,14 +68354,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Phantom Wolf", "sh": true, }, - "value": 33, + "value": 151, }, { "category": "Pet", "configData": { "id": "Huge Tarantula", }, - "value": 1259, + "value": 4694, }, { "category": "Pet", @@ -62194,7 +68369,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tarantula", "pt": 1, }, - "value": 248, + "value": 949, }, { "category": "Pet", @@ -62202,7 +68377,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Tarantula", "pt": 2, }, - "value": 56, + "value": 181, }, { "category": "Pet", @@ -62211,7 +68386,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 114763, + "value": 2159794, }, { "category": "Pet", @@ -62220,7 +68395,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 7, + "value": 25, }, { "category": "Pet", @@ -62228,14 +68403,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Vampire Dragon", "sh": true, }, - "value": 482451, + "value": 6961180, }, { "category": "Pet", "configData": { "id": "Huge Abomination", }, - "value": 1737, + "value": 20670, }, { "category": "Pet", @@ -62244,14 +68419,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 65792, + "value": 1008619, }, { "category": "Pet", "configData": { "id": "Titanic Pumpkin Cat", }, - "value": 86, + "value": 501, }, { "category": "Pet", @@ -62259,7 +68434,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Abomination", "pt": 1, }, - "value": 317, + "value": 5790, }, { "category": "Pet", @@ -62267,7 +68442,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Abomination", "pt": 2, }, - "value": 121, + "value": 1864, }, { "category": "Pet", @@ -62275,7 +68450,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Pumpkin Cat", "pt": 1, }, - "value": 14, + "value": 113, }, { "category": "Pet", @@ -62283,14 +68458,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Abomination", "sh": true, }, - "value": 28, + "value": 453, }, { "category": "Pet", "configData": { "id": "Huge Mummy Bunny", }, - "value": 13, + "value": 263, }, { "category": "Pet", @@ -62299,7 +68474,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 54, + "value": 9083, }, { "category": "Pet", @@ -62307,14 +68482,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Reaper Cat", "pt": 1, }, - "value": 37, + "value": 562, }, { "category": "Pet", "configData": { "id": "Huge Reaper Cat", }, - "value": 117, + "value": 2707, }, { "category": "Pet", @@ -62323,7 +68498,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 28, + "value": 5445, }, { "category": "Pet", @@ -62332,7 +68507,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 1, "sh": true, }, - "value": 7, + "value": 122, }, { "category": "Pet", @@ -62340,7 +68515,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mummy Bunny", "pt": 1, }, - "value": 2, + "value": 43, }, { "category": "Pet", @@ -62348,7 +68523,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Titanic Pumpkin Cat", "pt": 2, }, - "value": 8, + "value": 37, }, { "category": "Pet", @@ -62356,7 +68531,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Abomination", "sh": true, }, - "value": 12, + "value": 4446, }, { "category": "Pet", @@ -62364,7 +68539,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Mummy Bunny", "pt": 2, }, - "value": 2, + "value": 8, }, { "category": "Pet", @@ -62373,7 +68548,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 1, + "value": 9, }, { "category": "Pet", @@ -62382,14 +68557,14 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "pt": 2, "sh": true, }, - "value": 3, + "value": 34, }, { "category": "Pet", "configData": { "id": "Huge Vampire Dragon", }, - "value": 17, + "value": 2056, }, { "category": "Pet", @@ -62397,7 +68572,7 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Reaper Cat", "pt": 2, }, - "value": 2, + "value": 96, }, { "category": "Pet", @@ -62405,7796 +68580,7526 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get Exists 1`] = ` "id": "Huge Vampire Dragon", "pt": 1, }, - "value": 2, - }, - ], - "status": "ok", -} -`; - -exports[`Pet Simulator Public Live API Test - Changing Items Get RAP 1`] = ` -{ - "data": [ - { - "category": "XPPotion", - "configData": { - "id": "Huge", - }, - "value": 1119546, - }, - { - "category": "XPPotion", - "configData": { - "id": "Ultimate", - }, - "value": 390630, + "value": 394, }, { - "category": "XPPotion", + "category": "Pet", "configData": { - "id": "Titanic", + "id": "Huge Vampire Dragon", + "pt": 2, }, - "value": 31722, + "value": 87, }, { - "category": "XPPotion", + "category": "Pet", "configData": { - "id": "Mastery", + "id": "Huge Ancient Dragon", + "pt": 1, + "sh": true, }, - "value": 696057, + "value": 19, }, { "category": "Pet", "configData": { - "id": "Huge Abomination", - "pt": 1, + "id": "Huge Three Headed Dragon", + "pt": 2, }, - "value": 143320000, + "value": 20, }, { "category": "Pet", "configData": { - "id": "Huge Reaper Cat", + "id": "Huge Shiba", + "pt": 1, }, - "value": 633599996, + "value": 52, }, { "category": "Pet", "configData": { - "id": "Huge Abomination", + "id": "Huge Three Headed Dragon", "sh": true, }, - "value": 930999999, + "value": 17, }, { "category": "Pet", "configData": { - "id": "Huge Abomination", - "pt": 2, + "id": "Huge Ghost Cat", }, - "value": 3422295961, + "value": 525, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Huge Phantom Wolf", - "pt": 1, + "id": "Ghost", }, - "value": 110326649, + "value": 750, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Vampire Dragon", - "sh": true, + "id": "Ghost Cat", }, - "value": 20, + "value": 3607, }, { "category": "Pet", "configData": { - "id": "Tarantula", + "id": "Huge Ghost Cat", "pt": 1, - "sh": true, }, - "value": 1, + "value": 150, }, { "category": "Pet", "configData": { - "id": "Abomination", - "pt": 1, + "id": "Huge Ghost Cat", + "pt": 2, }, - "value": 4914416, + "value": 75, }, { "category": "Pet", "configData": { - "id": "Mummy Bunny", - "pt": 1, + "id": "Titanic Dominus Darkwing", "sh": true, }, - "value": 10248, + "value": 1, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Abomination", + "id": "Breakables Cape", }, - "value": 150955171, + "value": 325195, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Phantom Wolf", - "pt": 1, - "sh": true, + "id": "Eggs Cape", }, - "value": 2000000000, + "value": 757017, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Mummy Bunny", - "pt": 1, + "id": "Fruit Cape", }, - "value": 281, + "value": 102241, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Tarantula", - "sh": true, + "id": "Superior Chests Cape", }, - "value": 5199, + "value": 123806, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Tarantula", - "pt": 1, + "id": "Economy Cape", }, - "value": 55288, + "value": 398134, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Vampire Dragon", - "pt": 1, + "id": "Enchants Cape", }, - "value": 27988, + "value": 600621, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Tarantula", - "pt": 1, + "id": "Potions Cape", }, - "value": 103056000, + "value": 321924, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Vampire Dragon", - "pt": 2, - "sh": true, + "id": "Pets Cape", }, - "value": 1990848, + "value": 460267, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Abomination", - "pt": 2, + "id": "Gifts Cape", }, - "value": 1361853, + "value": 87279, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Mummy Bunny", - "sh": true, + "id": "Keys Cape", }, - "value": 2632, + "value": 37082, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Evil Wolverine", - "pt": 2, + "id": "Digging Cape", }, - "value": 4896, + "value": 54177, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Reaper Cat", + "id": "Fishing Cape", }, - "value": 200, + "value": 52808, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Tarantula", + "id": "Essence Fuel", }, - "value": 462, + "value": 23781924363, }, { "category": "Pet", "configData": { - "id": "Huge Phantom Wolf", + "id": "Sacred Deer", }, - "value": 165185924, + "value": 1621571275, }, { "category": "Pet", "configData": { - "id": "Vampire Dragon", + "id": "Sacred Boar", }, - "value": 2476, + "value": 4886157058, }, { "category": "Pet", "configData": { - "id": "Tarantula", - "pt": 2, + "id": "Ocean Horse", }, - "value": 1276, + "value": 1420087874, }, { "category": "Pet", "configData": { - "id": "Mummy Bunny", + "id": "Sacred Deer", "pt": 2, }, - "value": 917, + "value": 115012653, }, { "category": "Pet", "configData": { - "id": "Reaper Cat", - "pt": 2, - "sh": true, + "id": "Sacred Deer", + "pt": 1, }, - "value": 259507, + "value": 259160523, }, { "category": "Pet", "configData": { - "id": "Evil Wolverine", + "id": "Sacred Boar", + "pt": 2, }, - "value": 289, + "value": 457893489, }, { "category": "Pet", "configData": { - "id": "Reaper Cat", + "id": "Sacred Boar", "pt": 1, }, - "value": 752, - }, - { - "category": "Pet", - "configData": { - "id": "Reaper Cat", - "pt": 2, - }, - "value": 2641, + "value": 843659827, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Huge Tropical Parrot", - "pt": 2, - "sh": true, + "id": "Exclusive Egg 37", }, - "value": 23000000000, + "value": 361221, }, { "category": "Pet", "configData": { - "id": "Titanic Strawberry Cow", - "pt": 2, + "id": "Ocean Horse", + "pt": 1, }, - "value": 25000000000, + "value": 205111376, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Butterfly", - "pt": 2, - "sh": true, + "id": "Forcefield", }, - "value": 1, + "value": 18586, }, { "category": "Pet", "configData": { - "id": "Huge Enchanted Deer", - "pt": 2, - "sh": true, + "id": "Huge Forcefield Cat", }, - "value": 20000000000, + "value": 5135, }, { "category": "Pet", "configData": { - "id": "Huge Inferno Stealth Cat", + "id": "Ocean Horse", "pt": 2, }, - "value": 24500000000, + "value": 103197526, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Titanic Fossil Dragon", + "id": "Forcefield", }, - "value": 8046225729, + "value": 19175, }, { "category": "Pet", "configData": { - "id": "Huge Ghoul Horse", - "sh": true, + "id": "Artemis Bear", + "pt": 1, }, - "value": 621256511, + "value": 30634159, }, { "category": "Pet", "configData": { - "id": "Albino Bat", - "pt": 2, - "sh": true, + "id": "Cartoon Corgi", }, - "value": 1080, + "value": 34287, }, { "category": "Pet", "configData": { - "id": "Huge Dominus Darkwing", - "sh": true, + "id": "Cartoon Bunny", }, - "value": 1017571839, + "value": 64396, }, { "category": "Pet", "configData": { - "id": "Huge Pumpkin Scarecrow", - "pt": 1, + "id": "Sacred Boar", "sh": true, }, - "value": 1726041601, - }, - { - "category": "Pet", - "configData": { - "id": "Huge Dominus Darkwing", - "pt": 2, - }, - "value": 412847807, + "value": 15494530, }, { "category": "Pet", "configData": { - "id": "Huge Glowy the Ghost", - "pt": 1, - "sh": true, + "id": "Apollo Raven", }, - "value": 1653599990, + "value": 2056828555, }, { "category": "Pet", "configData": { - "id": "Little Melty", + "id": "Apollo Raven", "pt": 1, - "sh": true, }, - "value": 1070, + "value": 301147481, }, { "category": "Pet", "configData": { - "id": "Machete Dog", + "id": "Apollo Raven", "pt": 2, }, - "value": 29751834, + "value": 176234316, }, { "category": "Pet", "configData": { - "id": "Huge Glowy the Ghost", + "id": "Trojan Horse", "pt": 2, - "sh": true, }, - "value": 2501391600, + "value": 150667839905, }, { "category": "Pet", "configData": { - "id": "Hippokin", - "sh": true, + "id": "Athena Owl", + "pt": 1, }, - "value": 38718, + "value": 14646079153, }, { "category": "Pet", "configData": { - "id": "Huge Pumpkin Scarecrow", - "pt": 2, + "id": "Zeus Bull", }, - "value": 295363303, + "value": 2386328, }, { "category": "Pet", "configData": { - "id": "Slasher Sloth", - "pt": 2, + "id": "Athena Owl", }, - "value": 9736968, + "value": 69974792352, }, { "category": "Pet", "configData": { - "id": "Glowy the Ghost", + "id": "Gorgon", "pt": 1, - "sh": true, }, - "value": 2158, + "value": 9492757, }, { "category": "Pet", "configData": { - "id": "Huge Pumpkin Scarecrow", + "id": "Zeus Bull", "pt": 1, }, - "value": 95967656, + "value": 861954, }, { "category": "Pet", "configData": { - "id": "Huge Dominus Darkwing", + "id": "Trojan Horse", "pt": 1, }, - "value": 377106143, - }, - { - "category": "Pet", - "configData": { - "id": "Pumpkin Scarecrow", - "pt": 2, - "sh": true, - }, - "value": 23705586, + "value": 148839648354, }, { "category": "Pet", "configData": { - "id": "Titanic Ghostface Cat", + "id": "Trojan Horse", }, - "value": 18183999992, + "value": 798339176298, }, { "category": "Pet", "configData": { - "id": "Pumpkin Cat", - "pt": 2, + "id": "Ocean Horse", + "pt": 1, "sh": true, }, - "value": 46004086, + "value": 656054, }, { "category": "Pet", "configData": { - "id": "Little Melty", - "pt": 2, + "id": "Sacred Deer", "sh": true, }, - "value": 3000, + "value": 4751536, }, { "category": "Pet", "configData": { - "id": "Slasher Sloth", - "pt": 2, + "id": "Apollo Raven", + "pt": 1, "sh": true, }, - "value": 137240001, + "value": 1063795, }, { "category": "Pet", "configData": { - "id": "Huge Glowy the Ghost", + "id": "Apollo Raven", + "sh": true, }, - "value": 36360957, + "value": 5903340, }, { "category": "Pet", "configData": { - "id": "Huge Machete Dog", + "id": "Ocean Horse", + "sh": true, }, - "value": 289055896, + "value": 4829852, }, { "category": "Pet", "configData": { - "id": "Glowy the Ghost", + "id": "Sacred Deer", + "pt": 1, "sh": true, }, - "value": 931, + "value": 2511119, }, { "category": "Pet", "configData": { - "id": "Huge Little Melty", + "id": "Sacred Boar", "pt": 1, "sh": true, }, - "value": 12000000000, + "value": 4924858, }, { "category": "Pet", "configData": { - "id": "Huge Little Melty", + "id": "Sacred Boar", + "pt": 2, + "sh": true, }, - "value": 170973731, + "value": 4372487, }, { "category": "Pet", "configData": { - "id": "Hippokin", + "id": "Sacred Deer", "pt": 2, "sh": true, }, - "value": 567382, + "value": 742206, }, { "category": "Pet", "configData": { - "id": "Huge Little Melty", + "id": "Ocean Horse", "pt": 2, + "sh": true, }, - "value": 996128005, + "value": 379980, }, { "category": "Pet", "configData": { - "id": "Albino Bat", + "id": "Huge Forcefield Cat", "pt": 1, }, - "value": 367, + "value": 2649, }, { "category": "Pet", "configData": { - "id": "Machete Dog", + "id": "Athena Owl", + "pt": 2, }, - "value": 8596086, + "value": 15052359788, }, { "category": "Pet", "configData": { - "id": "Broomstick Cat", - "pt": 1, - "sh": true, + "id": "Gorgon", }, - "value": 1251, + "value": 24748871, }, { "category": "Pet", "configData": { - "id": "Huge Skeleton Cat", + "id": "Apollo Raven", + "pt": 2, + "sh": true, }, - "value": 37957108, + "value": 751577, }, { "category": "Pet", "configData": { - "id": "Zombie Deer", - "pt": 1, + "id": "Cartoon Bunny", + "pt": 2, }, - "value": 1380, + "value": 2802, }, { "category": "Pet", "configData": { - "id": "Skeleton Cat", - "pt": 1, + "id": "Cartoon Demon", }, - "value": 42, + "value": 14862, }, { "category": "Pet", "configData": { - "id": "Zombie Deer", - "sh": true, + "id": "Huge Yee-haw Cat", }, - "value": 9177, + "value": 15849, }, { "category": "Pet", "configData": { - "id": "Hippokin", + "id": "Huge Forcefield Cat", "pt": 1, + "sh": true, }, - "value": 3180, + "value": 32, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Skeleton Cat", + "id": "Wooden Axe", }, - "value": 119, + "value": 1653851, }, { "category": "Pet", "configData": { - "id": "Pumpkin Scarecrow", + "id": "Gorgon", "pt": 2, }, - "value": 3030, + "value": 5830535, }, { "category": "Pet", "configData": { - "id": "Hippokin", + "id": "Artemis Bear", "pt": 2, }, - "value": 5719, - }, - { - "category": "Pet", - "configData": { - "id": "Broomstick Cat", - "pt": 1, - }, - "value": 150, + "value": 20755851, }, { "category": "Pet", "configData": { - "id": "Slasher Sloth", + "id": "Trojan Horse", + "pt": 2, + "sh": true, }, - "value": 3107492, + "value": 752603419, }, { "category": "Pet", "configData": { - "id": "Broomstick Cat", - "pt": 2, + "id": "Huge Forcefield Cat", "sh": true, }, - "value": 335, + "value": 147, }, { "category": "Pet", "configData": { - "id": "Pumpkin Cat", + "id": "Cartoon Bunny", "sh": true, }, - "value": 611, + "value": 1778, }, { "category": "Pet", "configData": { - "id": "Broomstick Cat", + "id": "Huge Yee-haw Cat", + "pt": 1, }, - "value": 65, + "value": 6725, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Glowy the Ghost", + "id": "Boost Exchange Cape", }, - "value": 93, + "value": 21518, }, { "category": "Pet", "configData": { - "id": "Pumpkin Cat", - "pt": 1, + "id": "Artemis Bear", }, - "value": 48, + "value": 86889922, }, { "category": "Pet", "configData": { - "id": "Skeleton Cat", + "id": "Huge Forcefield Cat", "pt": 2, - "sh": true, }, - "value": 395, + "value": 740, }, { "category": "Pet", "configData": { - "id": "Skeleton Cat", - "pt": 2, + "id": "Cartoon Corgi", + "sh": true, }, - "value": 124, + "value": 985, }, { "category": "Pet", "configData": { - "id": "Albino Bat", + "id": "Titanic Yee-haw Cat", }, - "value": 458, + "value": 1607, }, { "category": "Pet", "configData": { - "id": "Huge Ghoul Horse", + "id": "Cartoon Demon", + "sh": true, }, - "value": 129118623, + "value": 532, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Pumpkin Cat", - "pt": 2, + "id": "Sturdy Axe", }, - "value": 319, + "value": 500287, }, { "category": "Pet", "configData": { - "id": "Huge Nightfall Pegasus", - "pt": 2, - "sh": true, + "id": "Huge Cartoon Bunny", }, - "value": 25000000000, + "value": 4034, }, { "category": "Pet", "configData": { - "id": "Huge Inferno Stealth Cat", - "pt": 1, + "id": "Cartoon Demon", + "pt": 2, }, - "value": 6739999984, + "value": 807, }, { "category": "Pet", "configData": { - "id": "Mining Mole", - "pt": 1, - "sh": true, + "id": "Huge Cartoon Demon", }, - "value": 10000, + "value": 2332, }, { "category": "Pet", "configData": { - "id": "Titanic Pink Kitsune Fox", + "id": "Cartoon Corgi", "pt": 2, }, - "value": 1, + "value": 1963, }, { "category": "Pet", "configData": { - "id": "Titanic Balloon Monkey", - "sh": true, + "id": "Huge Yee-haw Cat", + "pt": 2, }, - "value": 200000000, + "value": 1843, }, { "category": "Pet", "configData": { - "id": "Titanic Red Panda", + "id": "Trojan Horse", + "pt": 1, "sh": true, }, - "value": 25000000000, + "value": 678297592, }, { "category": "Pet", "configData": { - "id": "Titanic Jelly Cat", + "id": "Trojan Horse", "sh": true, }, - "value": 25000000000, + "value": 2927681431, }, { "category": "Pet", "configData": { - "id": "Grass Bunny", + "id": "Zeus Bull", "pt": 2, - "sh": true, }, - "value": 880000, + "value": 455253, }, { "category": "Pet", "configData": { - "id": "Titanic Love Lamb", + "id": "Huge Cartoon Bunny", "pt": 2, }, - "value": 3100000000, + "value": 121, }, { "category": "Pet", "configData": { - "id": "Titanic Dragonfruit Dragon", + "id": "Athena Owl", + "pt": 2, "sh": true, }, - "value": 23000000000, + "value": 96630049, }, { "category": "Pet", "configData": { - "id": "Huge Ancient Dragon", + "id": "Huge Yee-haw Cat", "sh": true, }, - "value": 3639999995, + "value": 367, }, { "category": "Pet", "configData": { - "id": "Titanic Classic Cat", + "id": "Athena Owl", "sh": true, }, - "value": 25000000000, + "value": 263509169, }, { "category": "Pet", "configData": { - "id": "Huge Soul Cat", + "id": "Cartoon Bunny", "pt": 2, "sh": true, }, - "value": 15647999942, + "value": 97, }, { "category": "Pet", "configData": { - "id": "Ice Snake", + "id": "Athena Owl", "pt": 1, "sh": true, }, - "value": 3000000, + "value": 110792443, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Guest Noob", - "pt": 1, + "id": "Fuse Cape", }, - "value": 69977295, + "value": 20890, }, { "category": "Pet", "configData": { - "id": "Huge Guest Noob", + "id": "Titanic Cartoon Cat", }, - "value": 62069821, + "value": 167, }, { "category": "Pet", "configData": { - "id": "Huge Inferno Stealth Cat", + "id": "Cartoon Corgi", + "pt": 2, + "sh": true, }, - "value": 703397211, + "value": 69, }, { "category": "Pet", "configData": { - "id": "Huge Evolved Pterodactyl", - "pt": 2, + "id": "Huge Cartoon Bunny", "sh": true, }, - "value": 4400000002, + "value": 178, }, { "category": "Pet", "configData": { - "id": "Titanic Dolphin", + "id": "Artemis Bear", + "pt": 2, "sh": true, }, - "value": 19744000009, + "value": 93475, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Inferno Stealth Bobcat", + "id": "Advanced Axe", }, - "value": 5295103298, + "value": 249704, }, { "category": "Pet", "configData": { - "id": "Hooded Piggy", - "pt": 1, + "id": "Huge Cartoon Demon", "sh": true, }, - "value": 268666, + "value": 77, }, { "category": "Pet", "configData": { - "id": "Huge Reversed Cat", + "id": "Huge Cartoon Demon", "pt": 2, }, - "value": 6090697548, + "value": 79, }, { "category": "Pet", "configData": { - "id": "Huge Reversed Cat", + "id": "Titanic Yee-haw Cat", "pt": 1, }, - "value": 1486282865, + "value": 693, }, { "category": "Pet", "configData": { - "id": "Sophisticated Fox", - "pt": 1, + "id": "Gorgon", + "pt": 2, "sh": true, }, - "value": 1000, + "value": 37141, }, { "category": "Pet", "configData": { - "id": "Hell Spider", + "id": "Artemis Bear", "pt": 1, "sh": true, }, - "value": 16200, + "value": 76582, }, { "category": "Pet", "configData": { - "id": "Titanic Pink Kitsune Fox", + "id": "Titanic Yee-haw Cat", + "pt": 2, }, - "value": 12839188562, + "value": 172, }, { "category": "Pet", "configData": { - "cv": 5, - "id": "Huge Chroma Phoenix", - "pt": 2, + "id": "Gorgon", + "pt": 1, "sh": true, }, - "value": 12412480068, + "value": 31100, }, { "category": "Pet", "configData": { - "id": "Cyber Raccoon", + "id": "Cartoon Demon", "pt": 2, "sh": true, }, - "value": 11400000, + "value": 33, }, { "category": "Pet", "configData": { - "id": "Titanic Strawberry Corgi", + "id": "Huge Cartoon Demon", + "pt": 2, "sh": true, }, - "value": 20032289258, + "value": 8, }, { "category": "Pet", "configData": { - "id": "Huge Electric Penguin", - "pt": 2, + "id": "Huge Yee-haw Cat", + "pt": 1, "sh": true, }, - "value": 4810082068, + "value": 85, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Poison Turtle", - "pt": 1, - "sh": true, + "id": "Iron Axe", }, - "value": 2680512, + "value": 18938, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Present Chest Mimic", - "pt": 2, - "sh": true, + "id": "Stone Axe", }, - "value": 25000000000, + "value": 70108, }, { "category": "Pet", "configData": { - "id": "Huge Dark Dragon", - "pt": 1, - "sh": true, + "id": "Huge Trojan Horse", }, - "value": 1, + "value": 4754, }, { "category": "Pet", "configData": { - "id": "Grass Bunny", + "id": "Huge Inferno Stealth Cat", + "pt": 1, "sh": true, }, - "value": 998, + "value": 84, }, { "category": "Pet", "configData": { - "id": "Grass Bunny", - "pt": 2, + "id": "Huge Gorgon", }, - "value": 36796, + "value": 12023, }, { "category": "Pet", "configData": { - "id": "Rock Monkey", - "pt": 2, + "id": "Zeus Bull", + "pt": 1, "sh": true, }, - "value": 12802, + "value": 5189, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Tropical Parrot", - "sh": true, + "id": "Wooden Gift", }, - "value": 787911997, + "value": 1919846, }, { "category": "Pet", "configData": { - "id": "Huge Hologram Axolotl", + "id": "Zeus Bull", "pt": 2, "sh": true, }, - "value": 25000000000, + "value": 5063, }, { "category": "Pet", "configData": { - "id": "Huge Dark Dragon", - "pt": 1, + "id": "Huge Gorgon", + "pt": 2, }, - "value": 1108677808, + "value": 1506, }, { "category": "Pet", "configData": { - "id": "Huge Dark Dragon", - "pt": 2, + "id": "Huge Gorgon", + "pt": 1, }, - "value": 766955879, + "value": 1825, }, { "category": "Pet", "configData": { - "id": "Poison Turtle", + "id": "Huge Gorgon", "sh": true, }, - "value": 140, + "value": 259, }, { "category": "Pet", "configData": { - "id": "Ghost Axolotl", - "sh": true, + "id": "Huge Trojan Horse", + "pt": 1, }, - "value": 95658, + "value": 930, }, { "category": "Pet", "configData": { - "id": "Electric Penguin", + "id": "Artemis Bear", "sh": true, }, - "value": 824, + "value": 212335, }, { "category": "Pet", "configData": { - "id": "Elemental Phoenix", - "pt": 1, + "id": "Huge Gorgon", + "pt": 2, "sh": true, }, - "value": 1506111, + "value": 34, }, { "category": "Pet", "configData": { - "id": "Titanic Strawberry Corgi", + "id": "Huge Trojan Horse", + "pt": 2, }, - "value": 12687046539, + "value": 199, }, { "category": "Pet", "configData": { - "id": "Soul Dragon", - "pt": 2, + "id": "Gorgon", "sh": true, }, - "value": 754639799, + "value": 48507, }, { "category": "Pet", "configData": { - "id": "Titanic Soul Owl", + "id": "Huge Gorgon", + "pt": 1, "sh": true, }, - "value": 6900000000, + "value": 30, }, { "category": "Pet", "configData": { - "id": "Huge Electric Penguin", + "id": "Titanic Yee-haw Cat", "sh": true, }, - "value": 245455675, + "value": 37, }, { "category": "Pet", "configData": { - "id": "Huge Elemental Phoenix", + "id": "Huge Forcefield Cat", + "pt": 2, "sh": true, }, - "value": 293019666, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Huge Elemental Phoenix", + "id": "Huge Yee-haw Cat", "pt": 2, "sh": true, }, - "value": 3247286207, + "value": 12, }, { "category": "Pet", "configData": { - "id": "Poison Turtle", - "pt": 2, + "id": "Zeus Bull", "sh": true, }, - "value": 98675, + "value": 1646, }, { "category": "Pet", "configData": { - "id": "Ghost Axolotl", - "pt": 1, + "id": "Huge Cartoon Bunny", + "pt": 2, "sh": true, }, - "value": 303484, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Grass Bunny", - "pt": 1, + "id": "Titanic Cartoon Cat", + "pt": 2, }, - "value": 245, + "value": 2, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Ice Snake", - "pt": 2, - "sh": true, + "id": "Adoption Token Boost", }, - "value": 80048, + "value": 4034486, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Storm Griffin", - "pt": 1, - "sh": true, + "id": "Ultra Adoption Token Boost", }, - "value": 5750, + "value": 798115, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Huge Soul Dragon", + "id": "Adoption Gift", }, - "value": 135132131, + "value": 21722593, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Huge Soul Cat", - "sh": true, + "id": "Daycare", }, - "value": 2078338890, + "value": 14213, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Dark Dragon", + "id": "Golden Paw Ticket", }, - "value": 51542392, + "value": 192186, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Huge Elemental Phoenix", - "pt": 1, + "id": "Paw Print", }, - "value": 57556899, + "value": 14549, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Soul Dragon", - "sh": true, + "id": "Adoption Token", }, - "value": 1012354161, + "value": 86085100211, }, { "category": "Pet", "configData": { - "id": "Storm Griffin", - "pt": 2, - "sh": true, + "id": "Huge Toy Duck", + "pt": 1, }, - "value": 394748, + "value": 1870, }, { "category": "Pet", "configData": { - "id": "Elemental Phoenix", - "sh": true, + "id": "Huge Toy Duck", }, - "value": 1209430, + "value": 3701, }, { "category": "Pet", "configData": { - "id": "Huge Soul Cat", - "pt": 2, + "id": "Baby Kitten", }, - "value": 1444568211, + "value": 2941076640, }, { "category": "Pet", "configData": { - "id": "Dark Dragon", + "id": "Toy Duck", "pt": 1, - "sh": true, }, - "value": 80795, + "value": 75015945, }, { "category": "Pet", "configData": { - "id": "Soul Dragon", - "pt": 2, + "id": "Toy Duck", }, - "value": 10294483, + "value": 613184452, }, { "category": "Pet", "configData": { - "id": "Storm Griffin", - "sh": true, + "id": "Baby Kitten", + "pt": 1, }, - "value": 101700, + "value": 277638178, }, { "category": "Pet", "configData": { - "id": "Dark Dragon", - "pt": 2, - "sh": true, + "id": "Baby Piglet", + "pt": 1, }, - "value": 95484, + "value": 815670774, }, { "category": "Pet", "configData": { - "id": "Soul Bat", - "pt": 2, + "id": "Plushie Elephant", }, - "value": 11226299, + "value": 305079989, }, { "category": "Pet", "configData": { - "id": "Psychic Seal", + "id": "Plushie Fox", "pt": 1, - "sh": true, }, - "value": 110, + "value": 181899, }, { "category": "Pet", "configData": { - "id": "Elemental Phoenix", - "pt": 2, + "id": "Huge Toy Chest Mimic", }, - "value": 370927, + "value": 192231, }, { "category": "Pet", "configData": { - "id": "Ghost Axolotl", - "pt": 1, + "id": "Toy Chest Mimic", + "pt": 2, }, - "value": 3406, + "value": 5215782, }, { "category": "Pet", "configData": { - "id": "Fire Bat", + "id": "Toy Duck", "pt": 2, - "sh": true, }, - "value": 906, + "value": 45252840, }, { "category": "Pet", "configData": { - "id": "Grass Bunny", + "id": "Toy Chest Mimic", }, - "value": 873, + "value": 67774674, }, { "category": "Pet", "configData": { - "id": "Ghost Axolotl", + "id": "Baby Kitten", "pt": 2, }, - "value": 8762, + "value": 151077147, }, { "category": "Pet", "configData": { - "id": "Electric Penguin", - "pt": 1, + "id": "Baby Piglet", + "pt": 2, }, - "value": 219, + "value": 386208384, }, { "category": "Pet", "configData": { - "id": "Psychic Seal", + "id": "Plushie Elephant", "pt": 1, }, - "value": 152, + "value": 24150710, }, { "category": "Pet", "configData": { - "id": "Dark Dragon", + "id": "Plushie Fox", "pt": 2, }, - "value": 3529, + "value": 111623, }, { "category": "Pet", "configData": { - "id": "Fire Bat", - "pt": 2, + "id": "Baby Piglet", }, - "value": 266, + "value": 10224720036, }, { "category": "Pet", "configData": { - "id": "Dark Dragon", - "sh": true, + "id": "Plushie Fox", }, - "value": 21778, + "value": 1765807, }, { "category": "Pet", "configData": { - "id": "Huge Elemental Phoenix", + "id": "Plushie Elephant", "pt": 2, }, - "value": 208028590, + "value": 12459910, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Fire Bat", + "id": "Tank", }, - "value": 155, + "value": 6127, }, { "category": "Pet", "configData": { - "id": "Ghost Axolotl", + "id": "Toy Chest Mimic", + "pt": 1, }, - "value": 1496, + "value": 9310907, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Pumpkin Scarecrow", - "pt": 1, + "id": "Pencil", "sh": true, }, - "value": 4031398, + "value": 2489, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Electric Penguin", + "id": "Electric Guitar", }, - "value": 310, + "value": 5840, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Huge Electric Penguin", + "id": "Pencil", }, - "value": 36059805, + "value": 22235, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Soul Bat", + "id": "Nuclear", }, - "value": 6046773, + "value": 1354, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Soul Dragon", + "id": "Jelly", }, - "value": 9052050, + "value": 3549, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Psychic Seal", + "id": "Pirate", }, - "value": 16, + "value": 1971, }, { "category": "Pet", "configData": { - "id": "Soul Cat", + "id": "Plushie Fox", + "sh": true, }, - "value": 3868719, + "value": 2699, }, { "category": "Pet", "configData": { - "id": "Silver Stag", + "id": "Huge Baby Kitten", "pt": 1, - "sh": true, }, - "value": 49000000, + "value": 2421, }, { "category": "Pet", "configData": { - "cv": 2, - "id": "Huge Chroma Ink Blob", - "pt": 2, + "id": "Baby Piglet", "sh": true, }, - "value": 5000000000, + "value": 25946929, }, { "category": "Pet", "configData": { - "id": "Nuclear Agony", - "sh": true, + "id": "Huge Baby Kitten", }, - "value": 5000, + "value": 49697, }, { "category": "Pet", "configData": { - "id": "Present Cat", - "pt": 2, + "id": "Plushie Elephant", "sh": true, }, - "value": 2500000000, + "value": 582797, }, { "category": "Pet", "configData": { - "id": "Titanic Dragonfruit Dragon", + "id": "Plushie Elephant", + "pt": 1, + "sh": true, }, - "value": 13746918876, + "value": 60902, }, { "category": "Pet", "configData": { - "cv": 4, - "id": "Huge Chroma Ink Blob", - "pt": 2, + "id": "Baby Kitten", "sh": true, }, - "value": 3000000000, + "value": 7629897, }, { "category": "Pet", "configData": { - "cv": 4, - "id": "Huge Chroma Phoenix", - "pt": 2, + "id": "Baby Piglet", + "pt": 1, "sh": true, }, - "value": 14623999927, + "value": 2402537, }, { "category": "Pet", "configData": { - "cv": 6, - "id": "Chroma Phoenix", - "pt": 2, + "id": "Plushie Fox", + "pt": 1, "sh": true, }, - "value": 17040000, + "value": 1357, }, { "category": "Pet", "configData": { - "cv": 3, - "id": "Chroma Phoenix", + "id": "Baby Piglet", "pt": 2, "sh": true, }, - "value": 63355982, + "value": 1307596, }, { "category": "Pet", "configData": { - "id": "Glitched Unicorn", + "id": "Plushie Fox", "pt": 2, "sh": true, }, - "value": 50000, + "value": 829, }, { "category": "Pet", "configData": { - "cv": 5, - "id": "Huge Chroma Snail", + "id": "Huge Toy Chest Mimic", "pt": 2, }, - "value": 6369457670, + "value": 6475, }, { "category": "Pet", "configData": { - "id": "Titanic Dolphin", + "id": "Huge Toy Duck", "pt": 2, }, - "value": 25000000000, + "value": 535, }, { "category": "Pet", "configData": { - "cv": 5, - "id": "Chroma Phoenix", - "sh": true, + "id": "Huge Baby Puppy", }, - "value": 4415572, + "value": 3023, }, { "category": "Pet", "configData": { - "id": "Color Ruins Monkey", - "pt": 1, + "id": "Huge Toy Duck", "sh": true, }, - "value": 2086400, + "value": 116, }, { "category": "Pet", "configData": { - "id": "Huge Rave Crab", + "id": "Baby Kitten", + "pt": 1, + "sh": true, }, - "value": 705490703, + "value": 877907, }, { "category": "Pet", "configData": { - "cv": 3, - "id": "Huge Chroma Ink Blob", + "id": "Plushie Elephant", + "pt": 2, "sh": true, }, - "value": 2997151944, + "value": 38746, }, { "category": "Pet", "configData": { - "id": "Color Ruins Monkey", + "id": "Toy Duck", "sh": true, }, - "value": 1013447, + "value": 1628365, }, { "category": "Pet", "configData": { - "cv": 1, - "id": "Huge Chroma Phoenix", + "id": "Huge Toy Chest Mimic", "sh": true, }, - "value": 1235657256, + "value": 3997, }, { "category": "Pet", "configData": { - "cv": 1, - "id": "Chroma Phoenix", + "id": "Baby Kitten", + "pt": 2, "sh": true, }, - "value": 10347352, + "value": 538717, }, { "category": "Pet", "configData": { - "cv": 4, - "id": "Chroma Phoenix", - "sh": true, + "id": "Huge Baby Kitten", + "pt": 2, }, - "value": 26518981, + "value": 1377, }, { "category": "Pet", "configData": { - "cv": 3, - "id": "Huge Chroma Phoenix", + "id": "Toy Duck", + "pt": 1, "sh": true, }, - "value": 2127149137, + "value": 260547, }, { "category": "Pet", "configData": { - "id": "Ice Snake", + "id": "Huge Toy Chest Mimic", + "pt": 1, }, - "value": 114, + "value": 10944, }, { "category": "Pet", "configData": { - "id": "Shadow Shark", - "pt": 2, + "id": "Huge Baby Kitten", "sh": true, }, - "value": 1000000, + "value": 968, }, { "category": "Pet", "configData": { - "cv": 3, - "id": "Huge Chroma Phoenix", - "pt": 2, + "id": "Toy Chest Mimic", "sh": true, }, - "value": 11800000000, + "value": 145640, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "cv": 6, - "id": "Huge Chroma Phoenix", - "pt": 2, + "id": "Electric Guitar", "sh": true, }, - "value": 21099999949, + "value": 617, }, { "category": "Pet", "configData": { - "cv": 6, - "id": "Huge Chroma Ink Blob", + "id": "Huge Toy Duck", + "pt": 1, "sh": true, }, - "value": 4597999975, + "value": 34, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Frostbyte Narwhal", + "id": "Tank", "sh": true, }, - "value": 45000, + "value": 675, }, { "category": "Pet", "configData": { - "id": "Evil Wolverine", - "pt": 1, + "id": "Huge Baby Puppy", + "pt": 2, }, - "value": 610738, + "value": 124, }, { "category": "Pet", "configData": { - "cv": 6, - "id": "Huge Chroma Phoenix", + "id": "Toy Duck", + "pt": 2, "sh": true, }, - "value": 706641703, + "value": 182748, }, { "category": "Pet", "configData": { - "id": "Nuclear Axolotl", + "id": "Toy Chest Mimic", "pt": 1, "sh": true, }, - "value": 40000, + "value": 58103, }, { "category": "Pet", "configData": { - "id": "Chroma Phoenix", + "id": "Toy Chest Mimic", + "pt": 2, "sh": true, }, - "value": 48637440, + "value": 37839, }, { "category": "Pet", "configData": { - "cv": 2, - "id": "Chroma Phoenix", + "id": "Huge Toy Chest Mimic", + "pt": 1, "sh": true, }, - "value": 2853919, + "value": 211, }, { "category": "Pet", "configData": { - "cv": 5, - "id": "Huge Chroma Swan", + "id": "Huge Toy Chest Mimic", "pt": 2, + "sh": true, }, - "value": 540430794, + "value": 105, }, { "category": "Pet", "configData": { - "cv": 4, - "id": "Huge Chroma Phoenix", + "id": "Huge Baby Kitten", "pt": 2, + "sh": true, }, - "value": 382543922, + "value": 26, }, { "category": "Pet", "configData": { - "cv": 1, - "id": "Huge Chroma Phoenix", - "pt": 2, + "id": "Huge Baby Puppy", + "pt": 1, }, - "value": 414840823, + "value": 590, }, { "category": "Pet", "configData": { - "cv": 6, - "id": "Huge Chroma Ink Blob", + "id": "Titanic Yee-haw Cat", "pt": 2, "sh": true, }, - "value": 3400000021, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Silver Bison", + "id": "Titanic Yee-haw Cat", "pt": 1, "sh": true, }, - "value": 29000, + "value": 12, }, { "category": "Pet", "configData": { - "id": "Huge Three Headed Dragon", + "id": "Huge Baby Kitten", + "pt": 1, + "sh": true, }, - "value": 3960459990, + "value": 52, }, { "category": "Pet", "configData": { - "cv": 3, - "id": "Chroma Phoenix", + "id": "Huge Toy Duck", "pt": 2, + "sh": true, }, - "value": 350266, - }, - { - "category": "Pet", - "configData": { - "cv": 1, - "id": "Huge Chroma Phoenix", - }, - "value": 55062904, + "value": 8, }, { "category": "Pet", "configData": { - "cv": 3, - "id": "Chroma Phoenix", + "id": "Titanic Cartoon Cat", "sh": true, }, - "value": 24918250, + "value": 2, }, { "category": "Pet", "configData": { - "cv": 6, - "id": "Huge Chroma Phoenix", + "id": "Huge Inferno Stealth Bobcat", + "pt": 1, + "sh": true, }, - "value": 51841958, + "value": 102, }, { - "category": "Pet", + "category": "Misc", "configData": { - "cv": 3, - "id": "Huge Chroma Ink Blob", - "pt": 2, + "id": "Locker Key", }, - "value": 4397337636, + "value": 1915903, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "cv": 6, - "id": "Chroma Phoenix", - "pt": 2, + "id": "School Gift", }, - "value": 189343, + "value": 13408319, }, { "category": "Pet", "configData": { - "id": "Empyrean Fox", - "pt": 2, - "sh": true, + "id": "Chad Elephant", }, - "value": 120000, + "value": 77821, }, { - "category": "Pet", + "category": "Egg", "configData": { - "cv": 4, - "id": "Chroma Phoenix", + "id": "Exclusive Egg 38", }, - "value": 33777, + "value": 439474, }, { "category": "Pet", "configData": { - "id": "Huge Fancy Axolotl", + "id": "Huge Coach Tiger", "pt": 1, - "sh": true, }, - "value": 495917801, + "value": 1799, }, { - "category": "Pet", + "category": "Booth", "configData": { - "cv": 2, - "id": "Huge Chroma Phoenix", + "id": "Crayon", }, - "value": 54564390, + "value": 12761, }, { "category": "Pet", "configData": { - "cv": 2, - "id": "Huge Chroma Phoenix", - "pt": 2, + "id": "Buff Doge", }, - "value": 1070205463, + "value": 50649, }, { "category": "Pet", "configData": { - "id": "Huge Fancy Axolotl", - "sh": true, + "id": "Chad Bunny", }, - "value": 192398208, + "value": 16664, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "cv": 5, - "id": "Chroma Phoenix", + "id": "Crayon", }, - "value": 16332, + "value": 13290, }, { "category": "Pet", "configData": { - "cv": 1, - "id": "Chroma Phoenix", + "id": "Buff Doge", + "sh": true, }, - "value": 22950, + "value": 1164, }, { "category": "Pet", "configData": { - "cv": 5, - "id": "Huge Chroma Phoenix", - "pt": 2, + "id": "Huge Coach Tiger", }, - "value": 1146839531, + "value": 3374, }, { "category": "Pet", "configData": { - "cv": 1, - "id": "Huge Chroma Snail", - "pt": 2, + "id": "Coach Tiger", + "pt": 1, }, - "value": 760435129, + "value": 544430753, }, { "category": "Pet", "configData": { - "cv": 2, - "id": "Chroma Phoenix", - "pt": 2, + "id": "Huge Chad Bunny", }, - "value": 185202, + "value": 2718, }, { "category": "Pet", "configData": { - "cv": 3, - "id": "Huge Chroma Phoenix", + "id": "Student Corgi", }, - "value": 51114647, + "value": 2077491848, }, { "category": "Pet", "configData": { - "cv": 3, - "id": "Chroma Phoenix", + "id": "Student Corgi", + "pt": 1, }, - "value": 29110, + "value": 113158720, }, { "category": "Pet", "configData": { - "cv": 5, - "id": "Chroma Phoenix", - "pt": 2, + "id": "Librarian Beaver", }, - "value": 259436, + "value": 204662558, }, { "category": "Pet", "configData": { - "id": "Titanic Pineapple Cat", - "sh": true, + "id": "Nurse Shark", + "pt": 2, }, - "value": 3219999990, + "value": 135102955, }, { "category": "Pet", "configData": { - "cv": 3, - "id": "Huge Chroma Snail", + "id": "Student Corgi", "pt": 2, }, - "value": 1491019007, + "value": 54351043, }, { "category": "Pet", "configData": { - "id": "Shimmering Octopus", - "sh": true, + "id": "Principal Anteater", }, - "value": 1334, + "value": 21570645, }, { "category": "Pet", "configData": { - "id": "Huge Fancy Axolotl", - "pt": 2, - "sh": true, + "id": "Nurse Shark", + "pt": 1, }, - "value": 1358425145, + "value": 194325322, }, { "category": "Pet", "configData": { - "cv": 4, - "id": "Huge Chroma Ink Blob", - "sh": true, + "id": "Nurse Shark", }, - "value": 3716557628, + "value": 2117289552, }, { "category": "Pet", "configData": { - "cv": 1, - "id": "Huge Chroma Ink Blob", + "id": "Librarian Beaver", "pt": 2, }, - "value": 1100938188, + "value": 20057473, }, { "category": "Pet", "configData": { - "id": "Huge Sad Doge", - "sh": true, + "id": "Principal Anteater", + "pt": 1, }, - "value": 1063225023, + "value": 2896473, }, { "category": "Pet", "configData": { - "cv": 3, - "id": "Huge Chroma Snail", + "id": "Coach Tiger", + "pt": 2, }, - "value": 64800915, + "value": 329812122, }, { "category": "Pet", "configData": { - "id": "Sad Hamster", - "sh": true, + "id": "Coach Tiger", }, - "value": 18410718, + "value": 8400342396, }, { "category": "Pet", "configData": { - "id": "Sad Bunny", - "pt": 2, + "id": "Coach Tiger", "sh": true, }, - "value": 250950400, + "value": 21274055, }, { "category": "Pet", "configData": { - "id": "Shimmering Fish", - "pt": 2, - "sh": true, + "id": "Librarian Beaver", + "pt": 1, }, - "value": 366, + "value": 25174752, }, { "category": "Pet", "configData": { - "id": "Huge Fancy Axolotl", + "id": "Teacher Cat", }, - "value": 35134331, + "value": 95331360, }, { "category": "Pet", "configData": { - "id": "Chroma Phoenix", + "id": "Chad Elephant", "pt": 2, - "sh": true, }, - "value": 8070649, + "value": 3028, }, { "category": "Pet", "configData": { - "id": "Huge Graffiti Raccoon", - "pt": 1, + "id": "Student Corgi", + "sh": true, }, - "value": 375461388, + "value": 4458176, }, { "category": "Pet", "configData": { - "id": "Chroma Phoenix", - "pt": 1, - "sh": true, + "id": "Buff Doge", + "pt": 2, }, - "value": 1712165, + "value": 2422, }, { "category": "Pet", "configData": { - "cv": 2, - "id": "Huge Chroma Snail", + "id": "Teacher Cat", + "pt": 2, }, - "value": 56023113, + "value": 2011003, }, { "category": "Pet", "configData": { - "id": "Huge Glowy the Ghost", + "id": "Teacher Cat", "pt": 1, }, - "value": 40976517, + "value": 3617549, }, { "category": "Pet", "configData": { - "id": "Huge Sad Hamster", + "id": "Nurse Shark", "sh": true, }, - "value": 2578516985, + "value": 5764401, }, { "category": "Pet", "configData": { - "cv": 4, - "id": "Huge Chroma Ink Blob", - "pt": 2, - }, - "value": 2888397407, - }, - { - "category": "Pet", - "configData": { - "id": "Huge Sad Hamster", + "id": "Principal Anteater", "pt": 2, }, - "value": 1621416988, + "value": 2013730, }, { "category": "Pet", "configData": { - "id": "Chroma Tiger", + "id": "Librarian Beaver", "sh": true, }, - "value": 105124, + "value": 582508, }, { "category": "Pet", "configData": { - "id": "Sad Doge", - "sh": true, + "id": "Huge Student Corgi", }, - "value": 10286465, + "value": 26576, }, { "category": "Pet", "configData": { - "id": "Color Ruins Parrot", - "pt": 2, + "id": "Teacher Cat", "sh": true, }, - "value": 865076, + "value": 173923, }, { "category": "Pet", "configData": { - "id": "Color Ruins Parrot", + "id": "Coach Tiger", "pt": 1, + "sh": true, }, - "value": 279, + "value": 1838830, }, { "category": "Pet", "configData": { - "cv": 4, - "id": "Huge Chroma Snail", + "id": "Huge Coach Tiger", "pt": 2, }, - "value": 478382104, + "value": 525, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Painted King Crab", - "sh": true, + "id": "School", }, - "value": 1454, + "value": 48391, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "cv": 1, - "id": "Huge Chroma Snail", + "id": "Ruler", }, - "value": 59226837, + "value": 24276, }, { "category": "Pet", "configData": { - "id": "Huge Chroma Phoenix", + "id": "Huge Student Corgi", "pt": 2, }, - "value": 384052246, + "value": 719, }, { "category": "Pet", "configData": { - "id": "Huge Sad Hamster", + "id": "Huge Teacher Cat", }, - "value": 223213808, + "value": 58195, }, { "category": "Pet", "configData": { - "id": "Painted Balloon", + "id": "Nurse Shark", + "pt": 1, "sh": true, }, - "value": 766, + "value": 717752, }, { "category": "Pet", "configData": { - "cv": 5, - "id": "Huge Chroma Snail", + "id": "Huge Chad Elephant", }, - "value": 51061557, + "value": 4979, }, { "category": "Pet", "configData": { - "id": "Graffiti Raccoon", - "pt": 1, - "sh": true, + "id": "Chad Bunny", + "pt": 2, }, - "value": 52, + "value": 996, }, { "category": "Pet", "configData": { - "id": "Sad Doge", - "pt": 2, + "id": "Chad Elephant", + "sh": true, }, - "value": 11027272, + "value": 1640, }, { "category": "Pet", "configData": { - "id": "Sad Bunny", - "pt": 2, + "id": "Huge Chad Elephant", + "sh": true, }, - "value": 9872535, + "value": 189, }, { "category": "Pet", "configData": { - "id": "Shimmering Fish", - "pt": 1, + "id": "Coach Tiger", + "pt": 2, + "sh": true, }, - "value": 97, + "value": 1190846, }, { "category": "Pet", "configData": { - "cv": 5, - "id": "Huge Chroma Ink Blob", + "id": "Titanic Chad Gorilla", }, - "value": 52160650, + "value": 225, }, { "category": "Pet", "configData": { - "id": "Painted Balloon", + "id": "Chad Bunny", + "sh": true, }, - "value": 461, + "value": 520, }, { "category": "Pet", "configData": { - "id": "Shimmering Octopus", - "pt": 2, + "id": "Student Corgi", + "pt": 1, "sh": true, }, - "value": 25098, + "value": 304144, }, { "category": "Pet", "configData": { - "id": "Shimmering Fish", + "id": "Chad Elephant", "pt": 2, + "sh": true, }, - "value": 1188, + "value": 103, }, { "category": "Pet", "configData": { - "id": "Painted Balloon", + "id": "Student Corgi", "pt": 2, "sh": true, }, - "value": 2556, + "value": 167032, }, { "category": "Pet", "configData": { - "id": "Painted King Crab", - "pt": 2, - "sh": true, + "id": "Huge Teacher Cat", + "pt": 1, }, - "value": 10300, + "value": 3226, }, { "category": "Pet", "configData": { - "id": "Chroma Phoenix", + "id": "Huge Student Corgi", "pt": 1, }, - "value": 41915, + "value": 1153, }, { "category": "Pet", "configData": { - "id": "Titanic Sad Cat", + "id": "Huge Chad Elephant", + "pt": 2, }, - "value": 22859078018, + "value": 164, }, { "category": "Pet", "configData": { - "id": "Chroma Phoenix", + "id": "Principal Anteater", + "sh": true, }, - "value": 2245, + "value": 47789, }, { "category": "Pet", "configData": { - "id": "Color Ruins Monkey", - "pt": 1, + "id": "Huge Coach Tiger", + "sh": true, }, - "value": 1899, + "value": 95, }, { "category": "Pet", "configData": { - "id": "Graffiti Dino", + "id": "Buff Doge", "pt": 2, "sh": true, }, - "value": 370, + "value": 76, }, { "category": "Pet", "configData": { - "id": "Painted Balloon", - "pt": 2, + "id": "Huge Librarian Beaver", }, - "value": 462, + "value": 5185, }, { "category": "Pet", "configData": { - "id": "Painted King Crab", + "id": "Huge Coach Tiger", "pt": 1, + "sh": true, }, - "value": 225, + "value": 22, }, { "category": "Pet", "configData": { - "id": "Graffiti Dino", - "pt": 1, + "id": "Titanic Teacher Cat", }, - "value": 59, + "value": 1345, }, { "category": "Pet", "configData": { - "id": "Sad Hamster", + "id": "Huge Teacher Cat", + "sh": true, }, - "value": 11489248, + "value": 1191, }, { "category": "Pet", "configData": { - "id": "Graffiti Raccoon", + "id": "Nurse Shark", + "pt": 2, "sh": true, }, - "value": 186, + "value": 513188, }, { "category": "Pet", "configData": { - "id": "Graffiti Raccoon", + "id": "Huge Teacher Cat", "pt": 2, - "sh": true, }, - "value": 215, + "value": 2057, }, { "category": "Pet", "configData": { - "id": "Shimmering Octopus", + "id": "Teacher Cat", "pt": 1, + "sh": true, }, - "value": 307, + "value": 11754, }, { "category": "Pet", "configData": { - "id": "Painted King Crab", + "id": "Huge Librarian Beaver", "pt": 2, }, - "value": 4693, + "value": 214, }, { "category": "Pet", "configData": { - "id": "Graffiti Dino", + "id": "Librarian Beaver", + "pt": 1, + "sh": true, }, - "value": 37, + "value": 122075, }, { "category": "Pet", "configData": { - "id": "Color Ruins Monkey", - "pt": 2, + "id": "Huge Principal Anteater", }, - "value": 14638, + "value": 299, }, { "category": "Pet", "configData": { - "id": "Painted Balloon", + "id": "Huge Principal Anteater", "pt": 1, }, - "value": 357, + "value": 12, }, { "category": "Pet", "configData": { - "id": "Zombie Deer", + "id": "Huge Chad Bunny", + "sh": true, }, - "value": 89, + "value": 134, }, { "category": "Pet", "configData": { - "cv": 4, - "id": "Huge Chroma Ink Blob", + "id": "Huge Principal Anteater", + "pt": 2, }, - "value": 57149998, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Sad Bunny", + "id": "Teacher Cat", + "pt": 2, + "sh": true, }, - "value": 4656178, + "value": 6931, }, { "category": "Pet", "configData": { - "id": "Graffiti Dino", + "id": "Huge Student Corgi", "pt": 2, + "sh": true, }, - "value": 125, + "value": 13, }, { "category": "Pet", "configData": { - "id": "Huge Abomination", - "pt": 1, - "sh": true, + "id": "Huge Chad Bunny", + "pt": 2, }, - "value": 990000000, + "value": 75, }, { "category": "Pet", "configData": { - "id": "Color Ruins Parrot", - "pt": 2, + "id": "Huge Librarian Beaver", + "pt": 1, }, - "value": 10158, + "value": 1078, }, { "category": "Pet", "configData": { - "id": "Painted King Crab", + "id": "Titanic Teacher Cat", + "pt": 1, }, - "value": 228, + "value": 70, }, { "category": "Pet", "configData": { - "id": "Shimmering Octopus", - "pt": 2, + "id": "Huge Student Corgi", + "sh": true, }, - "value": 131, + "value": 569, }, { "category": "Pet", "configData": { - "id": "Shimmering Fish", + "id": "Titanic Chad Gorilla", + "pt": 2, }, - "value": 159, + "value": 11, }, { "category": "Pet", "configData": { - "cv": 3, - "id": "Huge Chroma Swan", + "id": "Librarian Beaver", + "pt": 2, + "sh": true, }, - "value": 117286913, + "value": 97381, }, { "category": "Pet", "configData": { - "cv": 2, - "id": "Huge Chroma Swan", + "id": "Titanic Teacher Cat", "pt": 2, }, - "value": 1150649468, + "value": 53, }, { "category": "Pet", "configData": { - "cv": 2, - "id": "Huge Chroma Swan", + "id": "Principal Anteater", + "pt": 1, + "sh": true, }, - "value": 102969825, + "value": 25229, }, { "category": "Pet", "configData": { - "cv": 6, - "id": "Huge Chroma Swan", + "id": "Huge Teacher Cat", + "pt": 1, + "sh": true, }, - "value": 85397715, + "value": 73, }, { "category": "Pet", "configData": { - "cv": 4, - "id": "Huge Chroma Swan", + "id": "Principal Anteater", + "pt": 2, + "sh": true, }, - "value": 84870913, + "value": 16147, }, { "category": "Pet", "configData": { - "cv": 5, - "id": "Huge Chroma Swan", + "id": "Chad Bunny", + "pt": 2, + "sh": true, }, - "value": 81042918, + "value": 22, }, { "category": "Pet", "configData": { - "id": "Huge Old Wizard Owl", + "id": "Huge Student Corgi", + "pt": 1, "sh": true, }, - "value": 13839999971, + "value": 34, }, { "category": "Pet", "configData": { - "cv": 2, - "id": "Huge Chroma Butterfly", + "id": "Huge Chad Elephant", "pt": 2, + "sh": true, }, - "value": 2823999990, + "value": 10, }, { "category": "Pet", "configData": { - "cv": 2, - "id": "Huge Chroma Unicorn", + "id": "Huge Teacher Cat", "pt": 2, "sh": true, }, - "value": 18000000000, + "value": 44, }, { "category": "Pet", "configData": { - "cv": 6, - "id": "Huge Chroma Tiger", - "pt": 2, + "id": "Huge Tropical Toucan", + "pt": 1, "sh": true, }, - "value": 21000000000, + "value": 108, }, { "category": "Pet", "configData": { - "id": "Titanic Luchador Cat", + "id": "Huge Inferno Stealth Cat", "pt": 2, + "sh": true, }, - "value": 6000000015, + "value": 22, }, { "category": "Pet", "configData": { - "cv": 3, - "id": "Chroma Tiger", - "pt": 1, + "id": "Titanic Chad Gorilla", "sh": true, }, - "value": 7597536, + "value": 8, }, { "category": "Pet", "configData": { - "id": "Titanic Luchador Cat", + "id": "Huge Coach Tiger", + "pt": 2, "sh": true, }, - "value": 9000000000, + "value": 2, }, { - "category": "Pet", + "category": "Egg", "configData": { - "cv": 5, - "id": "Chroma Tiger", - "sh": true, + "id": "Series 3 Basic Gift", }, - "value": 7166400, + "value": 4314, }, { "category": "Pet", "configData": { - "id": "Painter Dog", - "pt": 1, + "id": "Huge Principal Anteater", "sh": true, }, - "value": 74766, + "value": 7, }, { "category": "Pet", "configData": { - "cv": 1, - "id": "Huge Chroma Unicorn", - "pt": 2, - "sh": true, + "id": "Huge Blimp Dragon", }, - "value": 5576800001, + "value": 518, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Huge Elf Dog", - "pt": 2, - "sh": true, + "id": "Blimp Dragon", + }, + "value": 743, + }, + { + "category": "Booth", + "configData": { + "id": "Blimp Dragon", }, - "value": 7300000000, + "value": 3534, }, { "category": "Pet", "configData": { - "cv": 2, - "id": "Huge Chroma Tiger", - "pt": 2, - "sh": true, + "id": "Huge Blimp Dragon", + "pt": 1, }, - "value": 5040000000, + "value": 150, }, { "category": "Pet", "configData": { - "cv": 5, - "id": "Huge Chroma Unicorn", + "id": "Huge Blimp Dragon", "pt": 2, - "sh": true, }, - "value": 5624799999, + "value": 75, }, { "category": "Pet", "configData": { - "id": "Chroma Tiger", + "id": "Huge Baby Piglet", "pt": 1, - "sh": true, }, - "value": 242298, + "value": 450, }, { "category": "Pet", "configData": { - "id": "Titanic Axolotl", - "sh": true, + "id": "Huge Baby Piglet", }, - "value": 23500000000, + "value": 1494, }, { "category": "Pet", "configData": { - "cv": 6, - "id": "Chroma Tiger", - "pt": 1, - "sh": true, + "id": "Huge Baby Piglet", + "pt": 2, }, - "value": 4848079, + "value": 50, }, { "category": "Pet", "configData": { - "cv": 2, - "id": "Chroma Tiger", - "sh": true, + "id": "Huge Shiba", + "pt": 2, }, - "value": 17021152, + "value": 15, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "cv": 3, - "id": "Huge Chroma Unicorn", - "sh": true, + "id": "Autumn Gift", }, - "value": 9944000095, + "value": 109426750, }, { - "category": "Pet", + "category": "Misc", "configData": { - "cv": 6, - "id": "Huge Chroma Unicorn", - "sh": true, + "id": "Maple Leaf", }, - "value": 2021023979, + "value": 1124123095, }, { "category": "Pet", "configData": { - "cv": 1, - "id": "Chroma Tiger", - "pt": 1, - "sh": true, + "id": "Beagle", }, - "value": 4500699, + "value": 161001235, }, { "category": "Pet", "configData": { - "id": "Titanic Pineapple Cat", + "id": "Beagle", "pt": 2, }, - "value": 20999999940, + "value": 11320510, }, { "category": "Pet", "configData": { - "cv": 1, - "id": "Huge Chroma Butterfly", + "id": "Mouse", + }, + "value": 428806929, + }, + { + "category": "Pet", + "configData": { + "id": "Red Fox", "pt": 2, }, - "value": 1712248395, + "value": 32288846, }, { "category": "Pet", "configData": { - "id": "Huge Skeleton Cat", + "id": "Red Fox", "pt": 1, }, - "value": 55693562, + "value": 36992122, }, { "category": "Pet", "configData": { - "cv": 1, - "id": "Huge Chroma Tiger", - "sh": true, + "id": "Mouse", + "pt": 2, }, - "value": 464775005, + "value": 50726554, }, { "category": "Pet", "configData": { - "id": "Huge Chef Monkey", - "pt": 2, + "id": "Beaver", "sh": true, }, - "value": 5611679996, + "value": 935891, }, { "category": "Pet", "configData": { - "cv": 4, - "id": "Huge Chroma Butterfly", + "id": "Red Fox", }, - "value": 63859954, + "value": 450435228, }, { "category": "Pet", "configData": { - "cv": 5, - "id": "Huge Chroma Tiger", - "pt": 2, + "id": "Beaver", + "pt": 1, }, - "value": 476893877, + "value": 26262865, }, { "category": "Pet", "configData": { - "cv": 2, - "id": "Chroma Tiger", - "pt": 1, - "sh": true, + "id": "Beaver", + "pt": 2, }, - "value": 6609434, + "value": 27113469, }, { "category": "Pet", "configData": { - "cv": 4, - "id": "Chroma Tiger", - "pt": 1, + "id": "Red Fox", "sh": true, }, - "value": 8412648, + "value": 1482217, }, { "category": "Pet", "configData": { - "cv": 6, - "id": "Huge Chroma Tiger", - "pt": 2, + "id": "Beagle", + "pt": 1, }, - "value": 530992972, + "value": 18120376, }, { "category": "Pet", "configData": { - "cv": 3, - "id": "Huge Chroma Tiger", - "pt": 2, + "id": "Mouse", + "pt": 1, }, - "value": 456212410, + "value": 51535951, }, { "category": "Pet", "configData": { - "cv": 3, - "id": "Huge Chroma Butterfly", - "pt": 2, + "id": "Beaver", }, - "value": 4840534975, + "value": 297031874, }, { "category": "Pet", "configData": { - "cv": 2, - "id": "Huge Chroma Butterfly", + "id": "Orange Squirrel", }, - "value": 59882734, + "value": 257081710466, }, { "category": "Pet", "configData": { - "cv": 1, - "id": "Huge Chroma Unicorn", - "sh": true, + "id": "Corn Cat", }, - "value": 5799999990, + "value": 297984645, }, { "category": "Pet", "configData": { - "cv": 2, - "id": "Huge Chroma Tiger", + "id": "Mouse", "sh": true, }, - "value": 721069443, + "value": 1200842, }, { "category": "Pet", "configData": { - "cv": 5, - "id": "Huge Chroma Unicorn", + "id": "Beagle", "sh": true, }, - "value": 918312493, + "value": 468757, }, { - "category": "Pet", + "category": "Enchant", "configData": { - "cv": 6, - "id": "Huge Chroma Butterfly", + "id": "Rainbow Eggs", + "tn": 1, }, - "value": 61364543, + "value": 7623, }, { "category": "Pet", "configData": { - "id": "Flowers Hedgehog", + "id": "Corn Cat", "pt": 1, - "sh": true, }, - "value": 52742, + "value": 21139872, }, { "category": "Pet", "configData": { - "cv": 2, - "id": "Huge Chroma Tiger", + "id": "Orange Squirrel", "pt": 2, }, - "value": 775999901, + "value": 37751519727, }, { "category": "Pet", "configData": { - "cv": 1, - "id": "Huge Chroma Tiger", - "pt": 2, + "id": "Orange Squirrel", + "pt": 1, }, - "value": 506658265, + "value": 36767281503, }, { "category": "Pet", "configData": { - "id": "Painter Dog", + "id": "Red Fox", "pt": 2, "sh": true, }, - "value": 5350, - }, - { - "category": "Pet", - "configData": { - "cv": 1, - "id": "Huge Chroma Tiger", - }, - "value": 63848964, + "value": 126201, }, { "category": "Pet", "configData": { - "cv": 4, - "id": "Huge Chroma Tiger", + "id": "Beaver", "pt": 2, + "sh": true, }, - "value": 470812508, + "value": 98316, }, { "category": "Pet", "configData": { - "cv": 3, - "id": "Huge Chroma Tiger", + "id": "Red Fox", + "pt": 1, + "sh": true, }, - "value": 63109393, + "value": 166597, }, { "category": "Pet", "configData": { - "id": "Flowers Fox", + "id": "Mouse", "pt": 2, "sh": true, }, - "value": 3349, + "value": 163886, }, { "category": "Pet", "configData": { - "cv": 4, - "id": "Huge Chroma Unicorn", + "id": "Beaver", + "pt": 1, "sh": true, }, - "value": 886111338, + "value": 120753, }, { "category": "Pet", "configData": { - "cv": 6, - "id": "Huge Chroma Ink Blob", - "pt": 2, + "id": "Mouse", + "pt": 1, + "sh": true, }, - "value": 922272377, + "value": 179864, }, { "category": "Pet", "configData": { - "cv": 5, - "id": "Huge Chroma Tiger", + "id": "Corn Cat", + "pt": 2, }, - "value": 66947342, + "value": 21799272, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "cv": 4, - "id": "Huge Chroma Tiger", + "id": "Autumn", }, - "value": 68930533, + "value": 292288, }, { "category": "Pet", "configData": { - "cv": 2, - "id": "Chroma Tiger", + "id": "Beagle", + "pt": 1, + "sh": true, }, - "value": 30290, + "value": 77827, }, { "category": "Pet", "configData": { - "cv": 6, - "id": "Huge Chroma Butterfly", + "id": "Beagle", "pt": 2, + "sh": true, }, - "value": 2068345739, + "value": 42782, }, { "category": "Pet", "configData": { - "cv": 5, - "id": "Huge Chroma Tiger", - "sh": true, + "id": "Huge Autumn Retriever", + "pt": 1, }, - "value": 633717785, + "value": 3982, }, { "category": "Pet", "configData": { - "id": "Abstract Dragon", - "pt": 1, - "sh": true, + "id": "Huge Autumn Retriever", }, - "value": 741, + "value": 8080, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Abstract Agony", - "sh": true, + "id": "Autumn", }, - "value": 120, + "value": 554591, }, { "category": "Pet", "configData": { - "cv": 4, - "id": "Chroma Tiger", + "id": "Corn Cat", + "pt": 2, + "sh": true, }, - "value": 31915, + "value": 73050, }, { "category": "Pet", "configData": { - "id": "Abstract Agony", + "id": "Corn Cat", "pt": 1, "sh": true, }, - "value": 4453, + "value": 139476, }, { "category": "Pet", "configData": { - "id": "Paintbot Spider", + "id": "Scarecrow Dog", "pt": 1, - "sh": true, }, - "value": 1799, + "value": 17522873168, }, { "category": "Pet", "configData": { - "id": "Painter Cat", - "pt": 1, - "sh": true, + "id": "Scarecrow Dog", }, - "value": 105391, + "value": 106054499214, }, { "category": "Pet", "configData": { - "cv": 1, - "id": "Huge Chroma Unicorn", - "pt": 2, + "id": "Huge Pumpkin Spice Cat", }, - "value": 1193120121, + "value": 30372, }, { "category": "Pet", "configData": { - "cv": 5, - "id": "Huge Chroma Unicorn", + "id": "Scarecrow Dog", + "pt": 2, }, - "value": 43891022, + "value": 23611845771, }, { "category": "Pet", "configData": { - "id": "Abstract Dragon", + "id": "Orange Squirrel", "sh": true, }, - "value": 133, + "value": 933012628, }, { "category": "Pet", "configData": { - "id": "Painter Cat", - "sh": true, + "id": "Autumn Retriever", + "pt": 2, }, - "value": 665, + "value": 449787722, }, { "category": "Pet", "configData": { - "cv": 3, - "id": "Chroma Tiger", + "id": "Autumn Retriever", }, - "value": 33396, + "value": 2038912663, }, { "category": "Pet", "configData": { - "id": "Painter Cat", - "pt": 1, + "id": "Pumpkin Spice Cat", + "pt": 2, }, - "value": 572, + "value": 1770510, }, { "category": "Pet", "configData": { - "id": "Gemstone Gargoyle Dragon", - "pt": 1, + "id": "Orange Squirrel", + "pt": 2, + "sh": true, }, - "value": 560, + "value": 173264518, }, { "category": "Pet", "configData": { - "id": "Flowers Hedgehog", + "id": "Orange Squirrel", + "pt": 1, "sh": true, }, - "value": 827, + "value": 151631748, }, { "category": "Pet", "configData": { - "id": "Flowers Hedgehog", - "pt": 2, + "id": "Huge Autumn Retriever", "sh": true, }, - "value": 287043, + "value": 275, }, { "category": "Pet", "configData": { - "cv": 5, - "id": "Huge Chroma Butterfly", + "id": "Huge Autumn Retriever", + "pt": 2, }, - "value": 52977384, + "value": 1150, }, { "category": "Pet", "configData": { - "cv": 4, - "id": "Huge Chroma Unicorn", + "id": "Autumn Retriever", + "pt": 1, }, - "value": 41706232, + "value": 327197355, }, { "category": "Pet", "configData": { - "id": "Chroma Tiger", + "id": "Scarecrow Dog", "pt": 1, + "sh": true, }, - "value": 71, + "value": 73770619, }, { "category": "Pet", "configData": { - "id": "Abstract Dragon", - "pt": 1, + "id": "Scarecrow Dog", + "sh": true, }, - "value": 506, + "value": 424328515, }, { "category": "Pet", "configData": { - "id": "Gemstone Gargoyle Dragon", - "pt": 2, + "id": "Pumpkin Spice Cat", }, - "value": 1496, + "value": 14463867, }, { "category": "Pet", "configData": { - "id": "Painter Cat", + "id": "Pumpkin Spice Cat", + "pt": 1, }, - "value": 47, + "value": 2204728, }, { "category": "Pet", "configData": { - "id": "Paintbot Spider", + "id": "Scarecrow Dog", "pt": 2, "sh": true, }, - "value": 318, + "value": 121924826, }, { "category": "Pet", "configData": { - "id": "Abstract Dragon", - "pt": 2, - "sh": true, + "id": "Huge Pumpkin Spice Cat", + "pt": 1, }, - "value": 179, + "value": 5098, }, { "category": "Pet", "configData": { - "id": "Abstract Agony", + "id": "Huge Scarecrow Dog", }, - "value": 611, + "value": 350430, }, { "category": "Pet", "configData": { - "id": "Abstract Dragon", - "pt": 2, + "id": "Huge Scarecrow Dog", + "pt": 1, }, - "value": 120, + "value": 154034, }, { "category": "Pet", "configData": { - "id": "Painter Dog", + "id": "Autumn Retriever", "pt": 2, + "sh": true, }, - "value": 291, + "value": 1921777, }, { "category": "Pet", "configData": { - "id": "Abstract Agony", + "id": "Huge Scarecrow Dog", "pt": 2, }, - "value": 338, + "value": 99707, }, { "category": "Pet", "configData": { - "id": "Gemstone Gargoyle Dragon", - "pt": 2, + "id": "Autumn Retriever", + "pt": 1, "sh": true, }, - "value": 26611, + "value": 1437366, }, { "category": "Pet", "configData": { - "id": "Paintbot Spider", + "id": "Huge Pumpkin Spice Cat", + "pt": 2, }, - "value": 45, + "value": 2199, }, { "category": "Pet", "configData": { - "id": "Painter Dog", + "id": "Autumn Retriever", + "sh": true, }, - "value": 1141, + "value": 6763868, }, { "category": "Pet", "configData": { - "id": "Paintbot Spider", - "pt": 2, + "id": "Pumpkin Spice Cat", + "sh": true, }, - "value": 207, + "value": 89224, }, { "category": "Pet", "configData": { - "id": "Gemstone Gargoyle Dragon", + "id": "Huge Autumn Retriever", + "pt": 1, + "sh": true, }, - "value": 80, + "value": 52, }, { "category": "Pet", "configData": { - "id": "Flowers Fox", - "pt": 2, + "id": "Huge Scarecrow Dog", + "pt": 1, + "sh": true, }, - "value": 597, + "value": 529, }, { "category": "Pet", "configData": { - "id": "Flowers Hedgehog", + "id": "Pumpkin Spice Cat", + "pt": 1, + "sh": true, }, - "value": 1197, + "value": 26976, }, { "category": "Pet", "configData": { - "id": "Flowers Fox", + "id": "Huge Scarecrow Dog", + "pt": 2, + "sh": true, }, - "value": 494, + "value": 201, }, { "category": "Pet", "configData": { - "id": "Kawaii Cat", - "pt": 1, + "id": "Huge Scarecrow Dog", "sh": true, }, - "value": 22000, + "value": 468, }, { "category": "Pet", "configData": { - "id": "Huge Tropical Flamingo", - "pt": 1, + "id": "Huge Corn Cat", }, - "value": 817199998, + "value": 1760, }, { "category": "Pet", "configData": { - "id": "Flower Panda", - "pt": 1, + "id": "Pumpkin Spice Cat", + "pt": 2, "sh": true, }, - "value": 125000, + "value": 22283, }, { "category": "Pet", "configData": { - "id": "Sailor Narwhal", - "pt": 1, - "sh": true, + "id": "Titanic Pilgrim Turkey", }, - "value": 400000, + "value": 1456, }, { "category": "Pet", "configData": { - "id": "Kawaii Tiger", - "pt": 1, + "id": "Corn Cat", "sh": true, }, - "value": 6083356, + "value": 991551, }, { "category": "Pet", "configData": { - "id": "Huge Luchador Eagle", - "pt": 2, - "sh": true, + "id": "Huge Corn Cat", + "pt": 1, }, - "value": 4500000000, + "value": 93, }, { "category": "Pet", "configData": { - "id": "Huge Pixie Fox", - "pt": 2, + "id": "Huge Pumpkin Spice Cat", "sh": true, }, - "value": 9179999989, + "value": 150, }, { "category": "Pet", "configData": { - "id": "Huge Skateboard Bulldog", + "id": "Huge Chad Bunny", "pt": 2, "sh": true, }, - "value": 836648162, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Luchador Eagle", + "id": "Huge Autumn Retriever", "pt": 2, "sh": true, }, - "value": 646399999, + "value": 8, }, { "category": "Pet", "configData": { - "id": "Seedling Squirrel", + "id": "Huge Pumpkin Spice Cat", "pt": 1, "sh": true, }, - "value": 8020, + "value": 35, }, { "category": "Pet", "configData": { - "id": "Old Wizard Owl", + "id": "Huge Corn Cat", "pt": 2, }, - "value": 183674368, + "value": 144, }, { "category": "Pet", "configData": { - "id": "Huge Reindeer Axolotl", + "id": "Titanic Pilgrim Turkey", "pt": 1, - "sh": true, }, - "value": 13000000000, + "value": 366, }, { "category": "Pet", "configData": { - "id": "Silver Stag", + "id": "Titanic Pilgrim Turkey", "pt": 2, - "sh": true, }, - "value": 800000000, + "value": 207, }, { "category": "Pet", "configData": { - "id": "Kawaii Cat", + "id": "Huge Corn Cat", "sh": true, }, - "value": 7984, + "value": 13, }, { "category": "Pet", "configData": { - "id": "Mrs. Claws", + "id": "Huge Corn Cat", "pt": 1, "sh": true, }, - "value": 2200000000, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Huge Chef Monkey", - "pt": 1, + "id": "Huge Pumpkin Spice Cat", + "pt": 2, "sh": true, }, - "value": 11926399741, + "value": 13, }, { "category": "Pet", "configData": { - "id": "Flower Panda", - "pt": 2, + "id": "Titanic Pilgrim Turkey", "sh": true, }, - "value": 46400, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Luchador Coyote", - "pt": 2, + "id": "Huge Kawaii Tiger", + "pt": 1, "sh": true, }, - "value": 83004677, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Huge Angel Cat", + "id": "Huge Corn Cat", + "pt": 2, "sh": true, }, - "value": 9900000000, + "value": 11, }, { "category": "Pet", "configData": { - "id": "Kawaii Dragon", - "sh": true, + "id": "Titanic Calico Cat", }, - "value": 9737, + "value": 939, }, { "category": "Pet", "configData": { - "id": "Sailor Narwhal", + "id": "Titanic Calico Cat", "pt": 2, - "sh": true, }, - "value": 10000, + "value": 13, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Kawaii Cat", - "pt": 2, - "sh": true, + "id": "Master Skill Cape", }, - "value": 1000000, + "value": 3171, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Seedling Squirrel", - "sh": true, + "id": "Turkey Gift", }, - "value": 317, + "value": 84060819, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Sailor Narwhal", - "sh": true, + "id": "Turkey Feather", }, - "value": 15000, + "value": 1410750681, }, { "category": "Pet", "configData": { - "id": "Huge Chef Monkey", - "sh": true, + "id": "Autumn Chest Mimic", }, - "value": 439724636, + "value": 1332497, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Huge Helicopter Cat", - "pt": 2, - "sh": true, + "id": "Turkey", }, - "value": 604758488, + "value": 220838, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Butterfly Llama", - "sh": true, + "id": "Exclusive Egg 39", }, - "value": 6190, + "value": 457753, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Huge Luchador Eagle", - "sh": true, + "id": "2024 Anniversary Gift", }, - "value": 1681802933, + "value": 2894216, }, { "category": "Pet", "configData": { - "id": "Butterfly Llama", - "pt": 1, - "sh": true, + "id": "Huge Evolved Bison", }, - "value": 500, + "value": 8147, }, { "category": "Pet", "configData": { - "id": "Huge Luchador Coyote", - "sh": true, + "id": "Autumn Chest Mimic", + "pt": 1, }, - "value": 853597014, + "value": 459913, }, { "category": "Pet", "configData": { - "id": "Ninja Axolotl", - "pt": 2, - "sh": true, + "id": "Huge Autumn Red Panda", }, - "value": 751667, + "value": 6846, }, { "category": "Pet", "configData": { - "id": "Dino Bear", - "sh": true, + "id": "Skunk", + "pt": 2, }, - "value": 450, + "value": 39000462, }, { "category": "Pet", "configData": { - "id": "Dino Bear", + "id": "Red Wolf", "pt": 1, - "sh": true, }, - "value": 50000, + "value": 30942506029, }, { "category": "Pet", "configData": { - "id": "Huge Strawberry Cow", - "sh": true, + "id": "Skunk", }, - "value": 588040554, + "value": 478432109, }, { "category": "Pet", "configData": { - "id": "Huge Cupcake Unicorn", + "id": "Red Wolf", "pt": 2, }, - "value": 8599999969, + "value": 32680590498, }, { "category": "Pet", "configData": { - "id": "Huge Chef Monkey", + "id": "Skunk", "pt": 1, }, - "value": 90599083, + "value": 41834428, }, { "category": "Pet", "configData": { - "id": "Huge Helicopter Cat", - "pt": 1, - "sh": true, + "id": "Red Wolf", }, - "value": 222702950, + "value": 358592171328, }, { "category": "Pet", "configData": { - "id": "Kawaii Mushroom Fox", - "pt": 1, + "id": "Skunk", + "sh": true, }, - "value": 5605, + "value": 1548949, }, { "category": "Pet", "configData": { - "id": "Bread Shiba", + "id": "Skunk", "pt": 1, "sh": true, }, - "value": 664280, + "value": 239413, }, { "category": "Pet", "configData": { - "id": "Kawaii Dragon", - "pt": 2, - "sh": true, + "id": "Huge Evolved Kangaroo", }, - "value": 148323, + "value": 7369, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Flowers Hedgehog", - "pt": 2, + "id": "Turkey", }, - "value": 445, + "value": 417926, }, { "category": "Pet", "configData": { - "id": "Huge Luchador Eagle", + "id": "Midnight Cat", }, - "value": 89382029, + "value": 78810, }, { "category": "Pet", "configData": { - "id": "Titanic Luchador Cat", + "id": "Midnight Deer", }, - "value": 13729918400, + "value": 39056, }, { "category": "Pet", "configData": { - "id": "Huge Helicopter Cat", - "sh": true, + "id": "Huge Void Alien", + "pt": 1, }, - "value": 91242878, + "value": 28359, }, { "category": "Pet", "configData": { - "id": "Strawberry Cow", + "id": "Huge Party Corgi", }, - "value": 478, + "value": 35403, }, { "category": "Pet", "configData": { - "id": "Bread Shiba", - "sh": true, + "id": "Autumn Chest Mimic", + "pt": 2, }, - "value": 40551, + "value": 225453, }, { "category": "Pet", "configData": { - "id": "Luchador Axolotl", - "sh": true, + "id": "Huge Evolved Elephant", }, - "value": 10186594, + "value": 6954, }, { "category": "Pet", "configData": { - "id": "Kawaii Mushroom Fox", + "id": "Autumn Red Panda", }, - "value": 27, + "value": 240229750539, }, { "category": "Pet", "configData": { - "id": "Sailor Narwhal", + "id": "Autumn Chest Mimic", "pt": 1, + "sh": true, }, - "value": 23596, + "value": 7380, }, { "category": "Pet", "configData": { - "id": "Electric Penguin", - "pt": 2, - "sh": true, + "id": "Midnight Zebra", }, - "value": 10494, + "value": 16599, }, { "category": "Pet", "configData": { - "id": "Playful Seal", - "pt": 1, + "id": "Midnight Cat", + "pt": 2, }, - "value": 240, + "value": 3137, }, { "category": "Pet", "configData": { - "id": "Huge Glowy the Ghost", - "pt": 2, + "id": "Huge Autumn Red Panda", + "pt": 1, }, - "value": 98516016, + "value": 3391, }, { "category": "Pet", "configData": { - "id": "Luchador Eagle", + "id": "Red Wolf", + "pt": 1, "sh": true, }, - "value": 20698803, + "value": 117412889, }, { "category": "Pet", "configData": { - "id": "Huge Helicopter Cat", + "id": "Red Wolf", + "sh": true, }, - "value": 34901341, + "value": 1067335131, }, { "category": "Pet", "configData": { - "id": "Huge Chef Monkey", + "id": "Red Wolf", + "pt": 2, + "sh": true, }, - "value": 72738862, + "value": 144711544, }, { "category": "Pet", "configData": { - "id": "Luchador Axolotl", + "id": "Skunk", + "pt": 2, + "sh": true, }, - "value": 5604605, + "value": 134321, }, { - "category": "Pet", + "category": "Enchant", "configData": { - "id": "Butterfly Llama", - "pt": 1, + "id": "Double Coins", + "tn": 1, }, - "value": 210, + "value": 3984, }, { "category": "Pet", "configData": { - "id": "Luchador Coyote", - "sh": true, + "id": "Huge Nutcracker Cat", + "pt": 1, }, - "value": 10492290, + "value": 8278, }, { "category": "Pet", "configData": { - "id": "Huge Luchador Coyote", + "id": "Huge Nutcracker Cat", }, - "value": 58887410, + "value": 19724, }, { "category": "Pet", "configData": { - "id": "Luchador Eagle", + "id": "Huge Evolved Kangaroo", "pt": 2, }, - "value": 17240748, + "value": 578, }, { "category": "Pet", "configData": { - "id": "Luchador Coyote", + "id": "Huge Evolved Elephant", "pt": 2, }, - "value": 8324223, + "value": 457, }, { "category": "Pet", "configData": { - "id": "Chef Monkey", - "pt": 1, - "sh": true, + "id": "Huge Void Alien", }, - "value": 72, + "value": 103980, }, { "category": "Pet", "configData": { - "id": "Kawaii Tiger", + "id": "Autumn Red Panda", "pt": 2, }, - "value": 23792, + "value": 27174546162, }, { "category": "Pet", "configData": { - "id": "Cannibal Meerkat", - "pt": 2, + "id": "Midnight Deer", + "sh": true, }, - "value": 14380331, + "value": 1286, }, { "category": "Pet", "configData": { - "id": "Flowers Fox", - "sh": true, + "id": "Huge Midnight Zebra", }, - "value": 72, + "value": 2972, }, { "category": "Pet", "configData": { - "id": "Seedling Squirrel", - "pt": 2, + "id": "Huge Midnight Cat", }, - "value": 365, + "value": 5210, }, { "category": "Pet", "configData": { - "id": "Huge Strawberry Cow", - "pt": 2, + "id": "Midnight Cat", + "sh": true, }, - "value": 473291249, + "value": 1876, }, { "category": "Pet", "configData": { - "id": "Sailor Narwhal", - "pt": 2, + "id": "Autumn Red Panda", + "pt": 1, }, - "value": 285, + "value": 21392477658, }, { "category": "Pet", "configData": { - "id": "Playful Seal", - "pt": 2, + "id": "Huge Pastel Deer", }, - "value": 4446, + "value": 78077, }, { "category": "Pet", "configData": { - "cv": 2, - "id": "Huge Chroma Ink Blob", - "pt": 2, + "id": "Huge Dark Fox", }, - "value": 644370384, + "value": 19319, }, { "category": "Pet", "configData": { - "id": "Huge Strawberry Cow", + "id": "Huge Party Corgi", "pt": 1, }, - "value": 98122275, + "value": 6908, }, { "category": "Pet", "configData": { - "id": "Cupcake Unicorn", - "sh": true, + "id": "Huge Evolved Bison", + "pt": 2, }, - "value": 7, + "value": 572, }, { "category": "Pet", "configData": { - "id": "Dino Bear", + "id": "Huge Honey Badger", }, - "value": 137, + "value": 63712, }, { "category": "Pet", "configData": { - "id": "Huge Slasher Sloth", + "id": "Huge Autumn Red Panda", "pt": 2, }, - "value": 1337871999, + "value": 970, }, { "category": "Pet", "configData": { - "id": "Bread Shiba", - "pt": 1, + "id": "Huge Nutcracker Cat", + "pt": 2, }, - "value": 39730, + "value": 2388, }, { "category": "Pet", "configData": { - "id": "Sailor Narwhal", + "id": "Titanic Nutcracker Cat", }, - "value": 48135, + "value": 1850, }, { "category": "Pet", "configData": { - "id": "Kawaii Mushroom Fox", + "id": "Midnight Zebra", "pt": 2, }, - "value": 1219, + "value": 887, }, { "category": "Pet", "configData": { - "id": "Kawaii Dragon", + "id": "Huge Party Corgi", "pt": 2, }, - "value": 5285, + "value": 1381, }, { "category": "Pet", "configData": { - "id": "Kawaii Tiger", + "id": "Huge Dark Fox", + "pt": 1, }, - "value": 1276, + "value": 3990, }, { "category": "Pet", "configData": { - "id": "Kawaii Tiger", - "pt": 1, + "id": "Autumn Chest Mimic", + "pt": 2, + "sh": true, }, - "value": 1311, + "value": 2548, }, { "category": "Pet", "configData": { - "id": "Cupcake Unicorn", - "pt": 1, + "id": "Midnight Deer", + "pt": 2, }, - "value": 39, + "value": 2053, }, { "category": "Pet", "configData": { - "id": "Chef Monkey", - "pt": 1, + "id": "Midnight Zebra", + "sh": true, }, - "value": 184, + "value": 573, }, { "category": "Pet", "configData": { - "id": "Chef Monkey", - "pt": 2, + "id": "Huge Midnight Cat", "sh": true, }, - "value": 776, + "value": 197, }, { "category": "Pet", "configData": { - "id": "Chef Monkey", + "id": "Huge Evolved Kangaroo", "sh": true, }, - "value": 25, + "value": 212, }, { "category": "Pet", "configData": { - "id": "Huge Water Zebra", + "id": "Huge Autumn Red Panda", + "sh": true, }, - "value": 34039961, + "value": 204, }, { "category": "Pet", "configData": { - "id": "Cupcake Unicorn", + "id": "Huge Beaver", }, - "value": 97, + "value": 75892, }, { "category": "Pet", "configData": { - "id": "Huge Strawberry Cow", + "id": "Huge Llama", }, - "value": 88537085, + "value": 126133, }, { "category": "Pet", "configData": { - "id": "Kawaii Mushroom Fox", - "pt": 1, - "sh": true, + "id": "Titanic Party Corgi", }, - "value": 1, + "value": 714, }, { "category": "Pet", "configData": { - "id": "Kawaii Dragon", + "id": "Titanic Party Corgi", + "pt": 2, }, - "value": 399, + "value": 40, }, { "category": "Pet", "configData": { - "id": "Bread Shiba", - "pt": 2, + "id": "Huge Beaver", + "pt": 1, }, - "value": 921, + "value": 15355, }, { "category": "Pet", "configData": { - "id": "Huge Luchador Eagle", - "pt": 2, + "id": "Huge Evolved Bison", + "sh": true, }, - "value": 2746591695, + "value": 248, }, { "category": "Pet", "configData": { - "id": "Chef Monkey", - "pt": 2, + "id": "Titanic Nutcracker Cat", + "pt": 1, }, - "value": 190, + "value": 828, }, { "category": "Pet", "configData": { - "id": "Seedling Squirrel", + "id": "Huge Midnight Zebra", + "sh": true, }, - "value": 58, + "value": 130, }, { "category": "Pet", "configData": { - "id": "Bread Shiba", + "id": "Huge Honey Badger", + "pt": 1, }, - "value": 395, + "value": 12088, }, { "category": "Pet", "configData": { - "id": "Cupcake Unicorn", - "pt": 2, + "id": "Dark Fox", }, - "value": 342, + "value": 4857234820, }, { "category": "Pet", "configData": { - "id": "Kawaii Cat", + "id": "Huge Honey Badger", + "pt": 2, }, - "value": 91, + "value": 10436, }, { "category": "Pet", "configData": { - "id": "Playful Seal", + "id": "Huge Circuit Cat", }, - "value": 430, + "value": 60259, }, { "category": "Pet", "configData": { - "id": "Luchador Coyote", + "id": "Huge Party Corgi", + "sh": true, }, - "value": 3693181, + "value": 240, }, { "category": "Pet", "configData": { - "id": "Mrs. Claws", - "pt": 1, + "id": "Huge Nutcracker Cat", + "sh": true, }, - "value": 176000000, + "value": 527, }, { "category": "Pet", "configData": { - "id": "Huge Ice Cream Cone", + "id": "Huge Pastel Deer", "pt": 1, }, - "value": 945908607, + "value": 15510, }, { "category": "Pet", "configData": { - "id": "Huge Ice Cream Cone", + "id": "Midnight Cat", + "pt": 2, + "sh": true, }, - "value": 1084986311, + "value": 112, }, { "category": "Pet", "configData": { - "id": "Huge Arcade Cat", - "pt": 1, - "sh": true, + "id": "Dark Fox", + "pt": 2, }, - "value": 22599999972, + "value": 536267653, }, { "category": "Pet", "configData": { - "id": "Titanic Flex Cat", + "id": "Autumn Red Panda", + "pt": 2, "sh": true, }, - "value": 5800000072, + "value": 124167320, }, { "category": "Pet", "configData": { - "id": "Titanic Arcane Pyro Cat", - "pt": 2, + "id": "Autumn Red Panda", + "sh": true, }, - "value": 5080000074, + "value": 722667865, }, { "category": "Pet", "configData": { - "id": "Huge Tropical Flamingo", - "pt": 2, + "id": "Dark Fox", + "pt": 1, }, - "value": 24000000000, + "value": 433009615, }, { "category": "Pet", "configData": { - "id": "Huge Hippo", + "id": "Huge Void Alien", "pt": 2, - "sh": true, }, - "value": 25000000000, + "value": 5820, }, { "category": "Pet", "configData": { - "id": "Shark", - "pt": 2, - "sh": true, + "id": "Autumn Teddy Bear", }, - "value": 1, + "value": 6530603, }, { "category": "Pet", "configData": { - "id": "Huge Nightfall Pegasus", + "id": "Autumn Red Panda", "pt": 1, "sh": true, }, - "value": 15000000000, + "value": 78450751, }, { "category": "Pet", "configData": { - "id": "Little Melty", + "id": "Huge Autumn Red Panda", + "pt": 1, "sh": true, }, - "value": 539, + "value": 47, }, { "category": "Pet", "configData": { - "id": "Huge Bearserker", + "id": "Autumn Teddy Bear", "pt": 1, - "sh": true, }, - "value": 16401999984, + "value": 1936756, }, { "category": "Pet", "configData": { - "id": "Queen Slime", - "pt": 1, - "sh": true, + "id": "Huge Dark Fox", + "pt": 2, }, - "value": 32000, + "value": 1334, }, { "category": "Pet", "configData": { - "cv": 6, - "id": "Huge Chroma Unicorn", + "id": "Titanic Nutcracker Cat", "pt": 2, }, - "value": 617952154, + "value": 202, }, { "category": "Pet", "configData": { - "id": "Titanic Blueberry Cow", + "id": "Titanic Midnight Lion", }, - "value": 5000000000, + "value": 211, }, { "category": "Pet", "configData": { - "id": "Huge Classic Dragon", + "id": "Huge Midnight Zebra", "pt": 2, - "sh": true, }, - "value": 3000000000, + "value": 86, }, { "category": "Pet", "configData": { - "id": "Titanic Arcane Pyro Cat", - "pt": 1, + "id": "Huge Red Wolf", }, - "value": 21043678723, + "value": 768343, }, { "category": "Pet", "configData": { - "id": "Titanic Classic Cat", + "id": "Autumn Teddy Bear", "pt": 2, }, - "value": 19895892498, + "value": 1224067, }, { "category": "Pet", "configData": { - "id": "Blossom Koi Fish", - "pt": 2, + "id": "Huge Evolved Elephant", "sh": true, }, - "value": 700, + "value": 175, }, { "category": "Pet", "configData": { - "id": "Titanic Arcane Pyro Cat", + "id": "Titanic Nutcracker Cat", + "sh": true, }, - "value": 21657881298, + "value": 40, }, { "category": "Pet", "configData": { - "id": "Titanic Orange Axolotl", + "id": "Huge Beaver", + "pt": 2, }, - "value": 12611689036, + "value": 12695, }, { "category": "Pet", "configData": { - "id": "Demolition Husky", + "id": "Titanic Nutcracker Cat", + "pt": 2, "sh": true, }, - "value": 31078, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Huge Sorcerer Bear", - "pt": 1, + "id": "Dark Fox", "sh": true, }, - "value": 164630277, + "value": 12332724, }, { "category": "Pet", "configData": { - "id": "Huge Atomic Forged Shark", + "id": "Huge Red Wolf", "pt": 1, }, - "value": 60115790, + "value": 186387, }, { "category": "Pet", "configData": { - "id": "Huge Nuclear Wild Dog", + "id": "Huge Midnight Cat", "pt": 2, }, - "value": 93254057, + "value": 142, }, { "category": "Pet", "configData": { - "id": "Huge Sorcerer Bear", + "id": "Midnight Deer", "pt": 2, + "sh": true, }, - "value": 106173713, + "value": 99, }, { "category": "Pet", "configData": { - "id": "Blurred Monkey", + "id": "Dark Fox", "pt": 1, + "sh": true, }, - "value": 5769, + "value": 1514964, }, { "category": "Pet", "configData": { - "id": "Comet Pony", - "sh": true, + "id": "Huge Circuit Cat", + "pt": 2, }, - "value": 47340, + "value": 2422, }, { "category": "Pet", "configData": { - "id": "Demolition Husky", + "id": "Dark Fox", + "pt": 2, + "sh": true, }, - "value": 59810, + "value": 2024987, }, { "category": "Pet", "configData": { - "id": "Demolition Husky", - "pt": 2, + "id": "Titanic Party Corgi", + "pt": 1, }, - "value": 13809, + "value": 129, }, { "category": "Pet", "configData": { - "id": "Demolition Husky", + "id": "Huge Red Wolf", "pt": 2, - "sh": true, }, - "value": 7372, + "value": 87821, }, { "category": "Pet", "configData": { - "id": "Flowers Fox", + "id": "Huge Llama", "pt": 1, - "sh": true, }, - "value": 201, + "value": 26836, }, { "category": "Pet", "configData": { - "id": "Huge Shuriken Corgi", - "sh": true, + "id": "Huge Llama", + "pt": 2, }, - "value": 82856079, + "value": 21814, }, { "category": "Pet", "configData": { - "id": "Comet Pony", + "id": "Huge Beaver", + "sh": true, }, - "value": 66432, + "value": 1667, }, { "category": "Pet", "configData": { - "id": "Huge Shuriken Corgi", - "pt": 1, + "id": "Huge Midnight Cat", + "pt": 2, + "sh": true, }, - "value": 43702779, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Huge Nuclear Wild Dog", + "id": "Huge Honey Badger", + "sh": true, }, - "value": 37288437, + "value": 1400, }, { "category": "Pet", "configData": { - "id": "Titanic Dominus Darkwing", + "id": "Huge Red Wolf", + "sh": true, }, - "value": 20000000000, + "value": 2376, }, { "category": "Pet", "configData": { - "id": "Huge Sorcerer Bear", + "id": "Huge Circuit Cat", + "pt": 1, }, - "value": 39692408, + "value": 11833, }, { "category": "Pet", "configData": { - "id": "Comet Pony", + "id": "Huge Nutcracker Cat", "pt": 1, + "sh": true, + }, + "value": 88, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Autumn Red Panda", + "pt": 2, + "sh": true, }, - "value": 74386, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Huge Sorcerer Bear", + "id": "Huge Party Corgi", "pt": 1, + "sh": true, }, - "value": 46352797, + "value": 64, }, { "category": "Pet", "configData": { - "id": "Huge Classic Dragon", - "pt": 2, + "id": "Huge Red Wolf", + "pt": 1, + "sh": true, }, - "value": 1231946818, + "value": 726, }, { "category": "Pet", "configData": { - "id": "Huge Classic Dog", + "id": "Huge Pastel Deer", "pt": 2, }, - "value": 672096283, + "value": 3046, }, { "category": "Pet", "configData": { - "id": "Huge Lucki Agony", - "pt": 2, + "id": "Huge Sand Turtle", }, - "value": 21998000000, + "value": 60767, }, { "category": "Pet", "configData": { - "id": "Titanic Jolly Cat", + "id": "Huge Midnight Zebra", + "pt": 2, "sh": true, }, - "value": 5000000099, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Huge Classic Dog", - "pt": 2, + "id": "Huge Dark Fox", "sh": true, }, - "value": 7400000028, + "value": 82, }, { "category": "Pet", "configData": { - "id": "Huge Quantum Agony", - "pt": 1, + "id": "Autumn Teddy Bear", "sh": true, }, - "value": 1541091314, + "value": 133588, }, { "category": "Pet", "configData": { - "id": "Classic Bunny", + "id": "Huge Red Wolf", + "pt": 2, "sh": true, }, - "value": 9215188, + "value": 260, }, { "category": "Pet", "configData": { - "id": "Titanic Arcane Cat", + "id": "Huge Poseidon Dog", "pt": 1, - "sh": true, }, - "value": 21261728023, + "value": 657, }, { "category": "Pet", "configData": { - "id": "Classic Dragon", + "id": "Huge Llama", "sh": true, }, - "value": 12920401, + "value": 2747, }, { "category": "Pet", "configData": { - "id": "Huge Mechatronic Robot", - "pt": 1, + "id": "Midnight Zebra", + "pt": 2, + "sh": true, }, - "value": 41186329, + "value": 23, }, { "category": "Pet", "configData": { - "id": "Huge Classic Dog", + "id": "Huge Evolved Elephant", + "pt": 2, "sh": true, }, - "value": 1215832458, + "value": 24, }, { "category": "Pet", "configData": { - "id": "Titanic Arcane Cat", + "id": "Titanic Midnight Lion", + "sh": true, }, - "value": 19847512676, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Huge Mechatronic Robot", + "id": "Huge Beaver", "pt": 1, "sh": true, }, - "value": 166817733, + "value": 306, }, { "category": "Pet", "configData": { - "id": "Huge Temporal Owl", - "pt": 1, + "id": "Huge Evolved Bison", + "pt": 2, + "sh": true, }, - "value": 40796147, + "value": 22, }, { "category": "Pet", "configData": { - "id": "Huge Temporal Owl", - "pt": 2, + "id": "Huge Poseidon Dog", }, - "value": 97185836, + "value": 2026, }, { "category": "Pet", "configData": { - "id": "Huge Abyssal Jellyfish", + "id": "Huge Llama", "pt": 1, "sh": true, }, - "value": 164659367, + "value": 590, }, { "category": "Pet", "configData": { - "id": "Huge Corrupt Butterfly", + "id": "Titanic Koi Fish", + }, + "value": 676, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Beaver", "pt": 2, + "sh": true, }, - "value": 127636303, + "value": 254, }, { "category": "Pet", "configData": { - "id": "Titanic Arcane Cat", - "pt": 1, + "id": "Huge Hacked Skeleton", + "pt": 2, }, - "value": 17986864475, + "value": 37, }, { "category": "Pet", "configData": { - "id": "Huge Corrupt Butterfly", + "id": "Autumn Teddy Bear", + "pt": 1, "sh": true, }, - "value": 116137567, + "value": 22541, }, { "category": "Pet", "configData": { - "id": "Huge Temporal Owl", + "id": "Huge Llama", + "pt": 2, "sh": true, }, - "value": 87879266, + "value": 442, }, { "category": "Pet", "configData": { - "id": "Lunar Bat", + "id": "Autumn Teddy Bear", + "pt": 2, "sh": true, }, - "value": 3192, + "value": 18775, }, { "category": "Pet", "configData": { - "id": "Huge Abyssal Jellyfish", + "id": "Titanic Calico Cat", "sh": true, }, - "value": 87449793, + "value": 20, }, { "category": "Pet", "configData": { - "id": "Huge Temporal Owl", + "id": "Huge Autumn Chest Mimic", }, - "value": 37381665, + "value": 2576, }, { "category": "Pet", "configData": { - "id": "Demon Cyclops", - "pt": 1, + "id": "Autumn Chest Mimic", + "sh": true, }, - "value": 7655, + "value": 6921, }, { "category": "Pet", "configData": { - "id": "Huge Mechatronic Robot", - "pt": 2, + "id": "Huge Dark Fox", + "pt": 1, + "sh": true, }, - "value": 86866659, + "value": 15, }, { "category": "Pet", "configData": { - "id": "Huge Mechatronic Robot", - "pt": 2, + "id": "Huge Honey Badger", + "pt": 1, "sh": true, }, - "value": 580895656, + "value": 242, }, { "category": "Pet", "configData": { - "id": "Huge Temporal Owl", + "id": "Huge Evolved Kangaroo", "pt": 2, "sh": true, }, - "value": 593004314, + "value": 24, }, { "category": "Pet", "configData": { - "id": "Demon Cyclops", - "sh": true, + "id": "Huge Hacked Skeleton", }, - "value": 8697, + "value": 675, }, { "category": "Pet", "configData": { - "id": "Lunar Bat", - "pt": 1, + "id": "Titanic Autumn Teddy Bear", }, - "value": 2616, + "value": 1271, }, { "category": "Pet", "configData": { - "id": "Lunar Bat", + "id": "Huge Dark Fox", "pt": 2, "sh": true, }, - "value": 5405, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Huge Abyssal Jellyfish", + "id": "Huge Autumn Chest Mimic", "pt": 1, }, - "value": 41124536, + "value": 701, }, { "category": "Pet", "configData": { - "id": "Huge Abyssal Jellyfish", + "id": "Huge Honey Badger", + "pt": 2, + "sh": true, }, - "value": 37717136, + "value": 216, }, { "category": "Pet", "configData": { - "id": "Huge Classic Dog", + "id": "Titanic Party Corgi", + "sh": true, }, - "value": 61147911, + "value": 8, }, { "category": "Pet", "configData": { - "id": "Sun Parrot", + "id": "Titanic Autumn Teddy Bear", "pt": 1, - "sh": true, }, - "value": 846, + "value": 508, }, { "category": "Pet", "configData": { - "id": "Holographic Dragon", - "sh": true, + "id": "Huge Autumn Chest Mimic", + "pt": 2, }, - "value": 9980, + "value": 211, }, { "category": "Pet", "configData": { - "id": "Angel Cow", - "pt": 1, + "id": "Huge Party Corgi", + "pt": 2, + "sh": true, }, - "value": 593, + "value": 14, }, { "category": "Pet", "configData": { - "id": "Angel Cow", + "id": "Titanic Autumn Teddy Bear", "pt": 2, - "sh": true, }, - "value": 1359, + "value": 234, }, { "category": "Pet", "configData": { - "id": "Huge Abyssal Jellyfish", + "id": "Huge Nutcracker Cat", "pt": 2, "sh": true, }, - "value": 600427033, + "value": 24, }, { "category": "Pet", "configData": { - "id": "Ninja Axolotl", - "pt": 1, + "id": "Huge Autumn Chest Mimic", "sh": true, }, - "value": 594326, + "value": 13, }, { "category": "Pet", "configData": { - "id": "Enchanted Squirrel", + "id": "Huge Hacked Skeleton", + "pt": 1, }, "value": 125, }, { "category": "Pet", "configData": { - "id": "Huge Classic Dragon", + "id": "Titanic Midnight Lion", + "pt": 2, }, - "value": 78451195, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Sun Parrot", + "id": "Titanic Party Corgi", "pt": 1, + "sh": true, }, - "value": 1361, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Angel Cow", + "id": "Titanic Nutcracker Cat", + "pt": 1, "sh": true, }, - "value": 4306, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Classic Dragon", + "id": "Huge Poseidon Dog", "pt": 2, + }, + "value": 199, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Autumn Chest Mimic", + "pt": 1, "sh": true, }, - "value": 114693426, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Ice Bunny", + "id": "Titanic Autumn Teddy Bear", + "sh": true, }, - "value": 776, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Huge Quantum Agony", + "id": "Huge Autumn Chest Mimic", "pt": 2, + "sh": true, }, - "value": 196066066, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Lunar Bat", + "id": "Titanic Autumn Teddy Bear", "pt": 2, + "sh": true, }, - "value": 43834, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Umbrella Bear", + "id": "Titanic Autumn Teddy Bear", "pt": 1, "sh": true, }, - "value": 1967, + "value": 1, + }, + { + "category": "Egg", + "configData": { + "id": "Series 3 Rare Gift", + }, + "value": 2115, }, { "category": "Pet", "configData": { - "id": "Electric Werewolf", + "id": "Titanic Party Corgi", + "pt": 2, "sh": true, }, - "value": 367, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Love Corgi", - "pt": 1, + "id": "Titanic Koi Fish", "sh": true, }, - "value": 1309, + "value": 15, }, { "category": "Pet", "configData": { - "id": "Angel Cow", + "id": "Huge Dino Cat", "pt": 2, }, - "value": 4077, + "value": 40, }, { "category": "Pet", "configData": { - "id": "Electric Werewolf", + "id": "Huge Dino Cat", + "sh": true, }, - "value": 1450, + "value": 38, }, { "category": "Pet", "configData": { - "id": "Demon Cyclops", - "pt": 2, + "id": "Huge Trojan Horse", + "sh": true, }, - "value": 6068, + "value": 2, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Angel Cow", + "id": "Snowflake Gift", }, - "value": 2061, + "value": 492075590, }, { "category": "Pet", "configData": { - "id": "Classic Dog", + "id": "Hot Cocoa Bear", "pt": 2, }, - "value": 10167884, + "value": 29571386, }, { "category": "Pet", "configData": { - "id": "Plasma Bull", + "id": "Hot Cocoa Bear", + "pt": 1, }, - "value": 408, + "value": 51583457, }, { "category": "Pet", "configData": { - "id": "Love Corgi", - "sh": true, + "id": "Festive Seal", }, - "value": 254, + "value": 498462592, }, { "category": "Pet", "configData": { - "id": "Umbrella Bear", - "sh": true, + "id": "Festive Seal", + "pt": 2, }, - "value": 209, + "value": 32578868, }, { "category": "Pet", "configData": { - "id": "Plasma Bull", - "pt": 1, + "id": "Hot Cocoa Bear", }, - "value": 708, + "value": 348964127, }, { "category": "Pet", "configData": { - "id": "Hell Monkey", - "sh": true, + "id": "Frost Hamster", + "pt": 2, }, - "value": 6954, + "value": 25260015, }, { "category": "Pet", "configData": { - "id": "Sun Parrot", - "pt": 2, + "id": "Festive Seal", + "pt": 1, }, - "value": 1034, + "value": 59386296, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Love Corgi", + "id": "Frosted Axolotl Ornament", }, - "value": 333, + "value": 23550004, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Lunar Bat", + "id": "Rudolph Ornament", }, - "value": 743, + "value": 1387048175, }, { "category": "Pet", "configData": { - "id": "Ice Bunny", - "pt": 2, - "sh": true, + "id": "Lit Cat", }, - "value": 431, + "value": 661136945, }, { "category": "Pet", "configData": { - "id": "Electric Werewolf", - "pt": 2, + "id": "Snow Globe Corgi", }, - "value": 13013, + "value": 153220, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Hell Monkey", + "id": "Exclusive Egg 40", }, - "value": 1350, + "value": 687160, }, { "category": "Pet", "configData": { - "id": "Ice Bunny", - "pt": 2, + "id": "Frost Hamster", }, - "value": 1438, + "value": 456742433, }, { "category": "Pet", "configData": { - "id": "Sun Parrot", + "id": "Frost Hamster", + "pt": 1, }, - "value": 188, + "value": 35741533, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Love Corgi", - "pt": 2, + "id": "Festive Dragon Ornament", }, - "value": 527, + "value": 5489756819, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Umbrella Bear", - "pt": 2, + "id": "Snowflake", }, - "value": 327, + "value": 4700004577, }, { "category": "Pet", "configData": { - "id": "Cloud Cat", - "pt": 1, - "sh": true, + "id": "Titanic Snowflake Dominus", }, - "value": 52, + "value": 717, }, { "category": "Pet", "configData": { - "id": "Classic Dog", + "id": "Huge Snowflake Dominus", }, - "value": 3501071, + "value": 68113, }, { "category": "Pet", "configData": { - "id": "Hell Monkey", - "pt": 2, + "id": "Gingerbread Lion", + "pt": 1, }, - "value": 400, + "value": 56095042, }, { "category": "Pet", "configData": { - "id": "Electric Werewolf", - "pt": 1, - "sh": true, + "id": "Gingerbread Lion", }, - "value": 987, + "value": 625823142, }, { "category": "Pet", "configData": { - "id": "Cloud Cat", - "pt": 1, + "id": "Hot Cocoa Bear", + "sh": true, }, - "value": 45, + "value": 1012427, }, { "category": "Pet", "configData": { - "id": "Cloud Cat", - "pt": 2, + "id": "Festive Seal", "sh": true, }, - "value": 1290, + "value": 1519949, }, { "category": "Pet", "configData": { - "id": "Enchanted Squirrel", - "pt": 2, + "id": "Nutcracker Bunny", }, - "value": 98, + "value": 336650325979, }, { "category": "Pet", "configData": { - "id": "Enchanted Squirrel", - "pt": 2, + "id": "Hot Cocoa Bear", + "pt": 1, "sh": true, }, - "value": 138, + "value": 195599, }, { "category": "Pet", "configData": { - "id": "Umbrella Bear", + "id": "Nutcracker Bunny", "pt": 1, }, - "value": 63, + "value": 26007633778, }, { "category": "Pet", "configData": { - "id": "Classic Dragon", + "id": "Frost Hamster", + "sh": true, }, - "value": 7510851, + "value": 1285080, }, { "category": "Pet", "configData": { - "id": "Umbrella Bear", + "id": "Festive Seal", + "pt": 2, + "sh": true, }, - "value": 176, + "value": 112350, }, { "category": "Pet", "configData": { - "id": "Tropical Toucan", - "pt": 1, - "sh": true, + "id": "Gingerbread Lion", + "pt": 2, }, - "value": 1000000000, + "value": 42610329, }, { "category": "Pet", "configData": { - "id": "Huge Electric Dino", + "id": "Frost Hamster", "pt": 1, "sh": true, }, - "value": 3105360004, + "value": 140443, }, { "category": "Pet", "configData": { - "id": "Huge Gecko", + "id": "Nutcracker Bunny", "pt": 2, - "sh": true, }, - "value": 11624000015, + "value": 28169812405, }, { "category": "Pet", "configData": { - "id": "Huge Jelly Monkey", + "id": "Hot Cocoa Bear", "pt": 2, "sh": true, }, - "value": 24900000000, + "value": 113046, }, { "category": "Pet", "configData": { - "id": "Huge Tropical Flamingo", + "id": "Frost Hamster", + "pt": 2, "sh": true, }, - "value": 16799999952, + "value": 96495, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Tropical Flamingo", - "sh": true, + "id": "Gingerbread Cat Ornament", }, - "value": 20000000000, + "value": 72753826, }, { "category": "Pet", "configData": { - "id": "Huge Tropical Parrot", + "id": "Lit Cat", "pt": 2, }, - "value": 7204838429, + "value": 27899111, }, { "category": "Pet", "configData": { - "id": "Old Wizard Corgi", + "id": "Festive Seal", "pt": 1, "sh": true, }, - "value": 10000000000, + "value": 247666, }, { "category": "Pet", "configData": { - "id": "Tropical Parrot", + "id": "Snow Globe Axolotl", "pt": 2, }, - "value": 6618999955, + "value": 3909, }, { "category": "Pet", "configData": { - "id": "Huge Raptor", - "sh": true, + "id": "Huge Evil Snowman", + "pt": 1, }, - "value": 1926490790, + "value": 3790, }, { "category": "Pet", "configData": { - "id": "Huge Hydra Dino", + "id": "Lit Cat", "pt": 1, - "sh": true, }, - "value": 5119839975, + "value": 33355958, }, { "category": "Pet", "configData": { - "id": "Mechanical Spider", - "sh": true, + "id": "Snow Globe Axolotl", }, - "value": 2000, + "value": 78596, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Titanic Party Cat", - "pt": 1, + "id": "Snowflake", }, - "value": 13898338828, + "value": 751747, }, { "category": "Pet", "configData": { - "id": "Huge Triceratops", + "id": "Gingerbread Lion", "sh": true, }, - "value": 1974000000, + "value": 1910899, }, { "category": "Pet", "configData": { - "id": "Nightfall Pegasus", + "id": "Lit Cat", "pt": 1, "sh": true, }, - "value": 2720000000, + "value": 193151, }, { "category": "Pet", "configData": { - "id": "Huge Old Wizard Owl", - "pt": 2, + "id": "Huge Evil Snowman", }, - "value": 13599999928, + "value": 7769, }, { "category": "Pet", "configData": { - "id": "Raptor", - "pt": 1, + "id": "Snow Globe Axolotl", "sh": true, }, - "value": 78809, - }, - { - "category": "Pet", - "configData": { - "id": "Titanic SpongeBob SquarePants", - "pt": 2, - }, - "value": 2000000000, + "value": 2419, }, { "category": "Pet", "configData": { - "id": "Raptor", - "sh": true, + "id": "Snow Globe Hamster", }, - "value": 17748, + "value": 32830, }, { "category": "Pet", "configData": { - "id": "Huge Raptor", + "id": "Snow Globe Corgi", "pt": 2, }, - "value": 722059749, - }, - { - "category": "Pet", - "configData": { - "id": "Hydra Dino", - "pt": 1, - "sh": true, - }, - "value": 10806111, + "value": 5440, }, { "category": "Pet", "configData": { - "id": "Dino Dog", - "pt": 2, + "id": "Huge Evil Snowman", "sh": true, }, - "value": 5000, + "value": 237, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Huge Egg Dino", - "pt": 2, - "sh": true, + "id": "Snowflake", }, - "value": 3770309510, + "value": 1706465, }, { "category": "Pet", "configData": { - "id": "Flowers Fox", + "id": "Gingerbread Lion", "pt": 1, + "sh": true, }, - "value": 379, + "value": 264181, }, { "category": "Pet", "configData": { - "id": "Huge Raptor", - "pt": 1, + "id": "North Pole Unicorn", }, - "value": 226877689, + "value": 134069444743, }, { "category": "Pet", "configData": { - "id": "Egg Triceratops", - "pt": 1, - "sh": true, + "id": "Huge Snow Globe Corgi", }, - "value": 10584, + "value": 7584, }, { "category": "Pet", "configData": { - "id": "Research Dog", - "pt": 1, + "id": "Snow Globe Corgi", + "pt": 2, "sh": true, }, - "value": 451, + "value": 174, }, { "category": "Pet", "configData": { - "id": "Huge Mr Krabs", + "id": "Snow Globe Hamster", "pt": 2, - "sh": true, }, - "value": 2700000000, + "value": 1606, }, { "category": "Pet", "configData": { - "id": "Egg Dino", + "id": "Gingerbread Lion", + "pt": 2, "sh": true, }, - "value": 5969, + "value": 166932, }, { "category": "Pet", "configData": { - "id": "Research Dog", - "sh": true, + "id": "North Pole Unicorn", + "pt": 1, }, - "value": 677, + "value": 13065025960, }, { "category": "Pet", "configData": { - "id": "Huge Hydra Dino", + "id": "Huge Evil Snowman", "pt": 2, }, - "value": 341991241, + "value": 1031, }, { "category": "Pet", "configData": { - "id": "Raptor", + "id": "North Pole Unicorn", "pt": 2, - "sh": true, }, - "value": 205994, + "value": 17588460938, }, { "category": "Pet", "configData": { - "id": "Strawberry Cow", - "pt": 1, - "sh": true, + "id": "Huge Snow Globe Hamster", }, - "value": 75000, + "value": 4412, }, { "category": "Pet", "configData": { - "id": "Stegosaurus", + "id": "Lit Cat", + "pt": 2, "sh": true, }, - "value": 346, + "value": 98370, }, { "category": "Pet", "configData": { - "id": "Research Dog", + "id": "Huge North Pole Unicorn", + "pt": 1, }, - "value": 38, + "value": 20104, }, { "category": "Pet", "configData": { - "id": "Raptor", - "pt": 1, + "id": "Huge Evolved Red Wolf", }, - "value": 157, + "value": 38677, }, { "category": "Pet", "configData": { - "id": "Egg Triceratops", - "sh": true, + "id": "Huge Evolved Scarecrow Dog", }, - "value": 3129, + "value": 26188, }, { "category": "Pet", "configData": { - "id": "Safari Cat", - "sh": true, + "id": "Huge North Pole Unicorn", }, - "value": 465, + "value": 100410, }, { "category": "Pet", "configData": { - "id": "Raptor", + "id": "Huge Evolved Red Wolf", + "pt": 2, }, - "value": 113, + "value": 1778, }, { "category": "Pet", "configData": { - "id": "Hydra Dino", + "id": "Huge Evolved Red Wolf", + "sh": true, }, - "value": 9675, + "value": 891, }, { "category": "Pet", "configData": { - "cv": 6, - "id": "Huge Chroma Swan", + "id": "Huge Evolved Scarecrow Dog", "pt": 2, }, - "value": 2529695973, + "value": 1668, }, { "category": "Pet", "configData": { - "id": "Egg Spitting Dino", + "id": "Huge Evolved Scarecrow Dog", + "pt": 2, "sh": true, }, - "value": 105, + "value": 54, }, { "category": "Pet", "configData": { - "id": "Stegosaurus", - "pt": 1, + "id": "Nutcracker Bunny", + "sh": true, }, - "value": 21, + "value": 1078392174, }, { "category": "Pet", "configData": { - "id": "Research Dog", - "pt": 1, + "id": "Snow Globe Corgi", + "sh": true, }, - "value": 20, + "value": 3060, }, { "category": "Pet", "configData": { - "id": "Stegosaurus", + "id": "Huge Evolved Scarecrow Dog", + "sh": true, }, - "value": 349, + "value": 566, }, { "category": "Pet", "configData": { - "id": "Safari Cat", + "id": "Nutcracker Bunny", + "pt": 1, + "sh": true, }, - "value": 49, + "value": 103615883, }, { "category": "Pet", "configData": { - "id": "Huge Triceratops", - "pt": 1, + "id": "Nutcracker Bunny", + "pt": 2, + "sh": true, }, - "value": 369394686, + "value": 132789008, }, { "category": "Pet", "configData": { - "id": "Safari Cat", - "pt": 1, + "id": "Evil Snowman", }, - "value": 30, + "value": 2386077719, }, { "category": "Pet", "configData": { - "id": "Egg Spitting Dino", - "pt": 2, + "id": "Snow Globe Hamster", "sh": true, }, - "value": 9964, + "value": 866, }, { "category": "Pet", "configData": { - "id": "Huge Hydra Dino", + "id": "Evil Snowman", "pt": 1, }, - "value": 94675739, + "value": 232606591, }, { "category": "Pet", "configData": { - "id": "Egg Dino", - "pt": 1, + "id": "Snow Globe Hamster", + "pt": 2, + "sh": true, }, - "value": 560, + "value": 51, }, { "category": "Pet", "configData": { - "id": "Safari Cat", + "id": "Evil Snowman", "pt": 2, }, - "value": 304, + "value": 337410874, }, { "category": "Pet", "configData": { - "id": "Strawberry Cow", + "id": "North Pole Unicorn", "sh": true, }, - "value": 2000, + "value": 462452802, }, { "category": "Pet", "configData": { - "id": "Egg Triceratops", - "pt": 1, + "id": "Huge North Pole Unicorn", + "pt": 2, }, - "value": 1213, + "value": 4034, }, { "category": "Pet", "configData": { - "id": "Egg Triceratops", + "id": "North Pole Unicorn", + "pt": 2, + "sh": true, }, - "value": 970, + "value": 90471333, }, { "category": "Pet", "configData": { - "id": "Egg Dino", + "id": "Huge Evolved Red Wolf", "pt": 2, "sh": true, }, - "value": 870400, + "value": 55, }, { "category": "Pet", "configData": { - "id": "Egg Spitting Dino", + "id": "Titanic Snowflake Dominus", "pt": 1, }, - "value": 194, + "value": 73, }, { "category": "Pet", "configData": { - "id": "Huge Hydra Dino", + "id": "Huge Snowflake Dominus", + "pt": 1, }, - "value": 96526914, + "value": 7429, }, { "category": "Pet", "configData": { - "id": "Egg Triceratops", - "pt": 2, + "id": "Huge Snow Globe Hamster", + "sh": true, }, - "value": 150, + "value": 152, }, { "category": "Pet", "configData": { - "id": "Huge Elegant Eagle", - "pt": 2, - "sh": true, + "id": "Crackling Dragon", }, - "value": 4407998698, + "value": 52066784, }, { "category": "Pet", "configData": { - "id": "Huge Hippo", + "id": "North Pole Unicorn", "pt": 1, "sh": true, }, - "value": 6000000000, + "value": 54933658, }, { "category": "Pet", "configData": { - "id": "Huge Pristine Snake", - "pt": 1, - "sh": true, + "id": "Crackling Dragon", + "pt": 2, }, - "value": 3210176013, + "value": 4995564, }, { "category": "Pet", "configData": { - "id": "Huge Clown Cat", - "pt": 1, + "id": "Titanic Snow Globe Cat", }, - "value": 1257099012, + "value": 330, }, { "category": "Pet", "configData": { - "id": "Huge Clown Cat", + "id": "Huge Snow Globe Hamster", "pt": 2, }, - "value": 4684699830, + "value": 144, }, { "category": "Pet", "configData": { - "id": "Huge Clown Cat", + "id": "Crackling Dragon", + "pt": 1, }, - "value": 757119896, + "value": 5522846, }, { "category": "Pet", "configData": { - "id": "Dino Dog", - "pt": 1, - "sh": true, + "id": "Titanic Snow Globe Cat", + "pt": 2, }, - "value": 19, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Present Cat", - "pt": 1, + "id": "Snow Globe Axolotl", + "pt": 2, "sh": true, }, - "value": 54504000, + "value": 104, }, { "category": "Pet", "configData": { - "id": "Huge Tropical Parrot", - "sh": true, + "id": "Huge Snowflake Dominus", + "pt": 2, }, - "value": 6419999921, + "value": 1686, }, { "category": "Pet", "configData": { - "id": "Egg Triceratops", - "pt": 2, + "id": "Huge Snow Globe Corgi", "sh": true, }, - "value": 53513, + "value": 330, }, { "category": "Pet", "configData": { - "id": "Old Wizard Corgi", - "pt": 1, + "id": "Evil Snowman", + "sh": true, }, - "value": 355790517, + "value": 6908536, }, { "category": "Pet", "configData": { - "id": "Safari Dog", + "id": "Huge Evil Snowman", "pt": 1, "sh": true, }, - "value": 10, + "value": 55, }, { "category": "Pet", "configData": { - "id": "Tech Ninja Panda", - "pt": 1, + "id": "Evil Snowman", + "pt": 2, "sh": true, }, - "value": 100000, + "value": 1453166, }, { "category": "Pet", "configData": { - "id": "Humble Rabbit", + "id": "Evil Snowman", "pt": 1, "sh": true, }, - "value": 60, + "value": 1005483, }, { "category": "Pet", "configData": { - "id": "Huge Neon Cat", - "pt": 2, - "sh": true, + "id": "Huge Festive Elf", }, - "value": 17500000000, + "value": 199406, }, { "category": "Pet", "configData": { - "id": "Huge Ghoul Horse", - "pt": 2, - "sh": true, + "id": "Huge Lit Cat", }, - "value": 2120000019, + "value": 68607, }, { "category": "Pet", "configData": { - "id": "Blossom Bunny", + "id": "Huge Snow Globe Corgi", "pt": 2, - "sh": true, }, - "value": 10, + "value": 240, }, { "category": "Pet", "configData": { - "id": "Cannibal Meerkat", + "id": "Huge Lit Cat", + "pt": 2, }, - "value": 4894424, + "value": 4273, }, { "category": "Pet", "configData": { - "id": "Huge Hippo", - "pt": 2, + "id": "Huge Festive Elf", + "pt": 1, }, - "value": 1011297676, + "value": 15805, }, { "category": "Pet", "configData": { - "id": "Huge Elegant Eagle", + "id": "Huge Lit Cat", "pt": 1, - "sh": true, }, - "value": 3237455630, + "value": 6029, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Comet Pony", - "pt": 2, - "sh": true, + "id": "Snow Globe Ornament", }, - "value": 20992, + "value": 264597296, }, { "category": "Pet", "configData": { - "id": "Nutcracker Cat", - "pt": 1, + "id": "Huge Snow Globe Corgi", + "pt": 2, "sh": true, }, - "value": 300000000, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Huge Dino Dog", - "pt": 1, + "id": "Huge Lit Cat", "sh": true, }, - "value": 2994836281, + "value": 1398, }, { "category": "Pet", "configData": { - "id": "Huge Patrick Star", + "id": "Huge Evil Snowman", "pt": 2, + "sh": true, }, - "value": 2510949164, + "value": 12, }, { "category": "Pet", "configData": { - "id": "Present Dragon", - "pt": 1, - "sh": true, + "id": "Huge Festive Elf", + "pt": 2, }, - "value": 45000000, + "value": 9230, }, { "category": "Pet", "configData": { - "id": "Old Wizard Corgi", + "id": "Huge Festive Elf", + "pt": 1, "sh": true, }, - "value": 3000000000, + "value": 329, }, { "category": "Pet", "configData": { - "id": "Huge Electric Dino", + "id": "Crackling Dragon", + "pt": 1, "sh": true, }, - "value": 709296276, + "value": 22985, }, { "category": "Pet", "configData": { - "id": "Huge Dino Dog", - "pt": 2, + "id": "Huge Festive Elf", "sh": true, }, - "value": 3033317370, + "value": 4090, }, { "category": "Pet", "configData": { - "id": "Huge Old Wizard Corgi", - "pt": 2, + "id": "Titanic Snow Globe Cat", + "sh": true, }, - "value": 1789256964, + "value": 11, }, { "category": "Pet", "configData": { - "id": "Broomstick Cat", + "id": "Crackling Dragon", "sh": true, }, - "value": 247, + "value": 101274, }, { "category": "Pet", "configData": { - "id": "Old Wizard Owl", - "pt": 1, + "id": "Huge Lit Cat", + "pt": 2, + "sh": true, }, - "value": 28187878, + "value": 77, }, { "category": "Pet", "configData": { - "id": "Huge Electric Dino", + "id": "Crackling Dragon", "pt": 2, + "sh": true, }, - "value": 401280392, + "value": 20684, }, { "category": "Pet", "configData": { - "id": "Huge Corrupt Butterfly", + "id": "Huge Festive Elf", "pt": 2, "sh": true, }, - "value": 776390458, + "value": 179, }, { "category": "Pet", "configData": { - "id": "Old Wizard Dragon", - "pt": 2, + "id": "Huge North Pole Unicorn", + "sh": true, }, - "value": 1565199993, + "value": 811, }, { "category": "Pet", "configData": { - "id": "Dino Monkey", + "id": "Huge North Pole Unicorn", "pt": 1, "sh": true, }, - "value": 101400, + "value": 175, }, { "category": "Pet", "configData": { - "id": "Bobcat", - "pt": 2, - "sh": true, + "id": "Huge Crackling Dragon", + "pt": 1, }, - "value": 1900000, + "value": 94, }, { "category": "Pet", "configData": { - "id": "Huge Tropical Toucan", - "pt": 1, + "id": "Huge Crackling Dragon", }, - "value": 3273569306, + "value": 534, }, { "category": "Pet", "configData": { - "id": "Mech Dino", + "id": "Huge Lit Cat", "pt": 1, "sh": true, }, - "value": 13027799, + "value": 114, }, { "category": "Pet", "configData": { - "id": "Dino Axolotl", + "id": "Lit Cat", "sh": true, }, - "value": 3307, + "value": 1813291, }, { "category": "Pet", "configData": { - "id": "Electric Dino", - "pt": 1, + "id": "Titanic Snowflake Dominus", "sh": true, }, - "value": 23374, + "value": 20, }, { "category": "Pet", "configData": { - "id": "Reindeer Cat", - "pt": 1, + "id": "Huge Snowflake Dominus", "sh": true, }, - "value": 31452800, + "value": 1994, }, { "category": "Pet", "configData": { - "id": "Blurred Monkey", + "id": "Huge Snow Globe Hamster", + "pt": 2, + "sh": true, }, - "value": 474, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Huge Mr Krabs", + "id": "Titanic Koi Fish", "pt": 2, }, - "value": 1095649720, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Huge Mech Dino", + "id": "Huge North Pole Unicorn", + "pt": 2, "sh": true, }, - "value": 335397876, + "value": 26, }, { "category": "Pet", "configData": { - "id": "Tropical Flamingo", + "id": "Huge Crackling Dragon", + "pt": 2, }, - "value": 17795267, + "value": 24, }, { "category": "Pet", "configData": { - "id": "Tropical Toucan", - "pt": 1, + "id": "Titanic Snowflake Dominus", + "pt": 2, }, - "value": 7913199917, + "value": 20, }, { "category": "Pet", "configData": { - "id": "Huge Electric Dino", + "id": "Huge Crackling Dragon", + "sh": true, }, - "value": 45869652, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Gary the Snail", - "sh": true, + "id": "Titanic Gingerbread Dragon", }, - "value": 11641924, + "value": 2890, }, { "category": "Pet", "configData": { - "id": "Huge Rave Crab", - "pt": 2, + "id": "Titanic Gingerbread Dragon", + "sh": true, }, - "value": 4455009836, + "value": 63, }, { "category": "Pet", "configData": { - "id": "Dino Monkey", + "id": "Huge Tropical Toucan", + "pt": 2, "sh": true, }, - "value": 1571, + "value": 23, }, { "category": "Pet", "configData": { - "id": "Huge Egg Dino", + "id": "Huge Doodle Bee", }, - "value": 47225215, + "value": 522, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Huge Mech Dino", - "pt": 2, - "sh": true, + "id": "Bee", }, - "value": 6627486858, + "value": 3528, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Safari Dog", - "sh": true, + "id": "Bee", }, - "value": 2734, + "value": 746, }, { "category": "Pet", "configData": { - "id": "Titanic SpongeBob SquarePants", + "id": "Huge Doodle Bee", + "pt": 2, }, - "value": 21691486480, + "value": 75, }, { "category": "Pet", "configData": { - "id": "Huge Dino Dog", + "id": "Huge Doodle Bee", + "pt": 1, }, - "value": 44049643, + "value": 149, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Dino Dog", - "pt": 2, + "id": "Mega Lucky Gingerbread", }, - "value": 140718350, + "value": 2237188, }, { "category": "Pet", "configData": { - "id": "Patrick Star", - "pt": 2, + "id": "Icy Phoenix", }, - "value": 26633129, + "value": 518132182, }, { "category": "Pet", "configData": { - "id": "Research Cat", - "sh": true, + "id": "Icy Phoenix", + "pt": 1, }, - "value": 203, + "value": 26349515, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Triceratops", - "sh": true, + "id": "Candy Cane", }, - "value": 781, + "value": 135241, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Patrick Star", - "sh": true, + "id": "Candy Cane", }, - "value": 20951878, + "value": 141229, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Mech Dino", - "pt": 1, + "id": "Present Bow", }, - "value": 584, + "value": 582015786, }, { "category": "Pet", "configData": { - "id": "Mr Krabs", + "id": "Holly Corgi", "pt": 2, - "sh": true, }, - "value": 156361872, + "value": 44021026, }, { "category": "Pet", "configData": { - "id": "Angry Dino", + "id": "Holiday Hedgehog", }, - "value": 40, + "value": 623893167868, }, { "category": "Pet", "configData": { - "id": "Dino Dog", + "id": "Holiday Hedgehog", "pt": 1, }, - "value": 1695, + "value": 49365878298, }, { "category": "Pet", "configData": { - "id": "Fortress Dog", - "sh": true, + "id": "Holly Corgi", + "pt": 1, }, - "value": 15567, + "value": 55770601, }, { "category": "Pet", "configData": { - "id": "Mech Dino", - "pt": 2, + "id": "Holly Corgi", }, - "value": 1929, + "value": 905143277, }, { "category": "Pet", "configData": { - "id": "Dino Axolotl", + "id": "Holiday Hedgehog", "pt": 2, - "sh": true, }, - "value": 500000, + "value": 36636610422, }, { "category": "Pet", "configData": { - "id": "Safari Dog", + "id": "Holly Corgi", + "pt": 1, + "sh": true, }, - "value": 181, + "value": 280173, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Dino Monkey", - "pt": 2, + "id": "Ultra Lucky Gingerbread", }, - "value": 139419, + "value": 5670199, }, { "category": "Pet", "configData": { - "id": "Electric Dino", + "id": "Festive Bear", "pt": 2, }, - "value": 1323, + "value": 21531909528, }, { "category": "Pet", "configData": { - "id": "Electric Dino", + "id": "Festive Bear", + "pt": 1, }, - "value": 121, + "value": 23305850739, }, { "category": "Pet", "configData": { - "id": "Research Cat", - "pt": 2, - "sh": true, + "id": "Naughty Cat", }, - "value": 128, + "value": 4492225116, }, { "category": "Pet", "configData": { - "id": "Mech Dino", + "id": "Festive Bear", }, - "value": 325, + "value": 256091761385, }, { "category": "Pet", "configData": { - "id": "Angry Dino", + "id": "Holiday Hedgehog", "pt": 1, "sh": true, }, - "value": 405, + "value": 192750082, }, { "category": "Pet", "configData": { - "id": "Huge Mr Krabs", + "id": "Holly Corgi", "sh": true, }, - "value": 552988744, + "value": 2548339, }, { "category": "Pet", "configData": { - "id": "Huge Mech Dino", + "id": "Holiday Hedgehog", + "sh": true, }, - "value": 60236202, + "value": 1824879323, }, { "category": "Pet", "configData": { - "cv": 6, - "id": "Huge Chroma Snail", + "id": "Icy Phoenix", "pt": 2, }, - "value": 1471932035, + "value": 22423100, }, { "category": "Pet", "configData": { - "id": "Angry Dino", + "id": "Holly Corgi", "pt": 2, + "sh": true, }, - "value": 331, + "value": 138462, }, { "category": "Pet", "configData": { - "id": "Water Zebra", + "id": "Huge Candycane", "pt": 1, }, - "value": 441, + "value": 4554, }, { "category": "Pet", "configData": { - "id": "Dino Monkey", - "pt": 1, + "id": "Huge Candycane", }, - "value": 774, + "value": 8785, }, { "category": "Pet", "configData": { - "id": "Cupcake Unicorn", + "id": "Icy Phoenix", "pt": 1, "sh": true, }, - "value": 1432, + "value": 160762, }, { "category": "Pet", "configData": { - "id": "Gary the Snail", + "id": "Naughty Cat", + "pt": 2, }, - "value": 7588997, + "value": 404666234, }, { "category": "Pet", "configData": { - "id": "Triceratops", + "id": "Lit Octopus", "pt": 2, }, - "value": 256, + "value": 3651658, }, { "category": "Pet", "configData": { - "id": "Dino Dog", + "id": "Holiday Hedgehog", "pt": 2, + "sh": true, }, - "value": 5293, + "value": 161127674, }, { "category": "Pet", "configData": { - "id": "Dino Monkey", + "id": "Naughty Cat", + "pt": 1, }, - "value": 490, + "value": 445087238, }, { "category": "Pet", "configData": { - "id": "Mr Krabs", + "id": "Lit Octopus", }, - "value": 5511769, + "value": 73151733, }, { "category": "Pet", "configData": { - "id": "Patrick Star", + "id": "Icy Phoenix", + "pt": 2, + "sh": true, }, - "value": 12365197, + "value": 81081, }, { "category": "Pet", "configData": { - "id": "Huge Treasure Turtle", - "pt": 2, + "id": "Festive Bear", + "sh": true, }, - "value": 2816228190, + "value": 751472699, }, { "category": "Pet", "configData": { - "id": "Titanic Strawberry Cow", + "id": "Festive Bear", + "pt": 1, "sh": true, }, - "value": 12000000000, + "value": 91708526, }, { "category": "Pet", "configData": { - "id": "Huge Kitsune Fox", - "pt": 2, - "sh": true, + "id": "Lit Octopus", + "pt": 1, }, - "value": 5242193891, + "value": 5333792, }, { "category": "Pet", "configData": { - "id": "Huge Old Wizard Corgi", + "id": "Festive Bear", + "pt": 2, + "sh": true, }, - "value": 269753523, + "value": 106018108, }, { "category": "Pet", "configData": { - "id": "Huge Hippo", - "sh": true, + "id": "Huge Candycane", + "pt": 2, }, - "value": 1419799997, + "value": 1322, }, { "category": "Pet", "configData": { - "id": "Huge Tropical Toucan", + "id": "Huge Icy Phoenix", }, - "value": 361207295, + "value": 364779, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Tropical Parrot", + "id": "Lucky Gingerbread", }, - "value": 20900073, + "value": 153074006, }, { "category": "Pet", "configData": { - "id": "Frostbyte Penguin", + "id": "Huge Candycane", + "pt": 2, "sh": true, }, - "value": 50, + "value": 12, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Tropical Parrot", + "id": "Super Lucky Gingerbread", }, - "value": 253858485, + "value": 12248222, }, { "category": "Pet", "configData": { - "id": "Huge Old Wizard Owl", - "pt": 1, + "id": "Huge Candycane", + "sh": true, }, - "value": 1714419993, + "value": 285, }, { "category": "Pet", "configData": { - "id": "Huge Hippo", - "pt": 1, + "id": "Huge Icy Phoenix", + "pt": 2, }, - "value": 985267215, + "value": 15088, }, { "category": "Pet", "configData": { - "id": "Rudolf", - "pt": 2, - "sh": true, + "id": "Huge Reindeer Agony", }, - "value": 200000000, + "value": 19577, }, { "category": "Pet", "configData": { - "id": "Huge Hippo", + "id": "Huge Icy Phoenix", + "pt": 1, }, - "value": 88040014, + "value": 76102, }, { "category": "Pet", "configData": { - "id": "Huge Tropical Flamingo", + "id": "Huge Icy Phoenix", + "sh": true, }, - "value": 552793075, + "value": 2848, }, { "category": "Pet", "configData": { - "id": "Old Wizard Dragon", + "id": "Huge Reindeer Agony", + "pt": 1, }, - "value": 22949547, + "value": 4018, }, { "category": "Pet", "configData": { - "id": "Huge Mech Dino", - "pt": 1, + "id": "Naughty Cat", "sh": true, }, - "value": 5072191933, + "value": 11892769, }, { "category": "Pet", "configData": { - "id": "Old Wizard Corgi", + "id": "Huge Snowflake Pegasus", + "pt": 1, }, - "value": 21900204, + "value": 23656, }, { "category": "Pet", "configData": { - "id": "Pristine Poodle", - "pt": 2, - "sh": true, + "id": "Titanic Icy Phoenix", }, - "value": 92800, + "value": 1073, }, { "category": "Pet", "configData": { - "id": "Santa Paws", - "pt": 1, - "sh": true, + "id": "Huge Snowflake Pegasus", }, - "value": 55000000, + "value": 384237, }, { "category": "Pet", "configData": { - "id": "Humble Hen", - "pt": 1, - "sh": true, + "id": "Huge Snowflake Pegasus", + "pt": 2, }, - "value": 200000, + "value": 14065, }, { "category": "Pet", "configData": { - "id": "Nuclear Squirrel", + "id": "Huge Icy Phoenix", + "pt": 1, "sh": true, }, - "value": 10000, + "value": 669, }, { "category": "Pet", "configData": { - "id": "Luxe Peacock", + "id": "Naughty Cat", "pt": 1, "sh": true, }, - "value": 7410701, + "value": 1572267, }, { "category": "Pet", "configData": { - "id": "Titanic Shiba", + "id": "Huge Reindeer Agony", "sh": true, }, - "value": 7900000051, + "value": 128, }, { "category": "Pet", "configData": { - "id": "Huge Treasure Turtle", - "pt": 2, - "sh": true, + "id": "Titanic Icy Phoenix", + "pt": 1, }, - "value": 3032333646, + "value": 200, }, { "category": "Pet", "configData": { - "id": "Fortress Dog", + "id": "Naughty Cat", "pt": 2, "sh": true, }, - "value": 20, + "value": 1666774, }, { "category": "Pet", "configData": { - "cv": 3, - "id": "Huge Chroma Ink Blob", + "id": "Huge Holly Corgi", }, - "value": 1350697372, + "value": 71914, }, { "category": "Pet", "configData": { - "id": "Huge Kitsune Fox", + "id": "Huge Holly Corgi", "pt": 1, - "sh": true, }, - "value": 1087950047, + "value": 7811, }, { "category": "Pet", "configData": { - "id": "Huge Pristine Snake", - "sh": true, + "id": "Huge Reindeer Agony", + "pt": 2, }, - "value": 961472253, + "value": 756, }, { "category": "Pet", "configData": { - "id": "Treasure Turtle", + "id": "Huge Icy Phoenix", "pt": 2, "sh": true, }, - "value": 43824, + "value": 121, }, { "category": "Pet", "configData": { - "id": "Treasure Turtle", + "id": "Huge Reindeer Agony", "pt": 1, "sh": true, }, - "value": 5, + "value": 29, }, { "category": "Pet", "configData": { - "id": "Humble Hen", + "id": "Huge Snowflake Pegasus", "sh": true, }, - "value": 100000, + "value": 7866, }, { "category": "Pet", "configData": { - "id": "Huge Mechatronic Robot", + "id": "Huge Lit Octopus", }, - "value": 37431311, + "value": 1111, }, { "category": "Pet", "configData": { - "id": "Huge Masked Owl", + "id": "Titanic Icy Phoenix", "pt": 2, - "sh": true, }, - "value": 23270000000, + "value": 32, }, { "category": "Pet", "configData": { - "id": "Huge Pristine Snake", - "pt": 1, + "id": "Huge Holly Corgi", + "pt": 2, }, - "value": 221786642, + "value": 4020, }, { "category": "Pet", "configData": { - "id": "Pristine Snake", + "id": "Huge Candycane", "pt": 1, + "sh": true, }, - "value": 68, + "value": 71, }, { "category": "Pet", "configData": { - "id": "Humble Rabbit", - "pt": 2, + "id": "Lit Octopus", + "sh": true, }, - "value": 739, + "value": 163917, }, { "category": "Pet", "configData": { - "id": "Luxe Axolotl", + "id": "Lit Octopus", + "pt": 1, "sh": true, }, - "value": 142646, + "value": 18414, }, { "category": "Pet", "configData": { - "id": "Diamond Dragon", + "id": "Titanic Icy Phoenix", "pt": 1, "sh": true, }, - "value": 242, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Luxe Peacock", - "pt": 2, + "id": "Huge Holly Corgi", + "pt": 1, "sh": true, }, - "value": 30027204, + "value": 153, }, { "category": "Pet", "configData": { - "id": "Fortress Owl", - "pt": 1, + "id": "Huge Holly Corgi", "sh": true, }, - "value": 2290, + "value": 1453, }, { "category": "Pet", "configData": { - "id": "Fortress Dog", + "id": "Huge Holly Corgi", "pt": 2, + "sh": true, }, - "value": 441, + "value": 81, }, { "category": "Pet", "configData": { - "id": "Elegant Eagle", - "pt": 1, - "sh": true, + "id": "Huge Lit Octopus", + "pt": 2, }, - "value": 37, + "value": 47, }, { "category": "Pet", "configData": { - "id": "Fortress Owl", + "id": "Huge Snowflake Pegasus", + "pt": 1, + "sh": true, }, - "value": 51, + "value": 467, }, { "category": "Pet", "configData": { - "id": "Fortress Owl", + "id": "Titanic Icy Phoenix", "sh": true, }, - "value": 1500, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Pristine Poodle", + "id": "Huge Lit Octopus", + "pt": 1, }, - "value": 36, + "value": 221, }, { "category": "Pet", "configData": { - "id": "Humble Hen", - "pt": 1, + "id": "Huge Reindeer Agony", + "pt": 2, + "sh": true, }, - "value": 175, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Fortress Owl", - "pt": 1, + "id": "Huge Snowflake Pegasus", + "pt": 2, + "sh": true, }, - "value": 929, + "value": 298, }, { "category": "Pet", "configData": { - "id": "Treasure Turtle", - "pt": 2, + "id": "Icy Phoenix", + "sh": true, }, - "value": 203, + "value": 1590099, }, { "category": "Pet", "configData": { - "id": "Huge Luxe Peacock", + "id": "Lit Octopus", "pt": 2, + "sh": true, }, - "value": 212154190, + "value": 15386, }, { "category": "Pet", "configData": { - "id": "Elegant Eagle", + "id": "Huge Lit Octopus", "sh": true, }, - "value": 15, + "value": 8, }, { "category": "Pet", "configData": { - "id": "Treasure Turtle", + "id": "Tropical Parrot", + "pt": 2, + "sh": true, }, - "value": 333, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Diamond Dragon", + "id": "Huge Lit Octopus", + "pt": 1, "sh": true, }, - "value": 92, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Elegant Eagle", + "id": "Titanic Gingerbread Dragon", "pt": 2, - "sh": true, }, - "value": 170, + "value": 54, }, { "category": "Pet", "configData": { - "id": "Huge Elegant Eagle", + "id": "Huge Ancient Dragon", + "pt": 2, + "sh": true, }, - "value": 37618094, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Luxe Peacock", + "id": "Titanic Gingerbread Cat", }, - "value": 704, + "value": 1126, }, { "category": "Pet", "configData": { - "id": "Huge Luxe Peacock", - "pt": 2, - "sh": true, + "id": "Titanic Gingerbread Corgi", }, - "value": 5902080030, + "value": 1130, }, { "category": "Pet", "configData": { - "id": "Diamond Dragon", + "id": "Titanic Gingerbread Corgi", "pt": 2, - "sh": true, }, - "value": 614, + "value": 19, }, { "category": "Pet", "configData": { - "id": "Luxe Axolotl", - "pt": 2, + "id": "Titanic Gingerbread Cat", + "sh": true, }, - "value": 2265, + "value": 19, }, { "category": "Pet", "configData": { - "id": "Huge Luxe Peacock", + "id": "Huge Old Wizard Corgi", + "pt": 2, + "sh": true, }, - "value": 45330743, + "value": 18, }, { "category": "Pet", "configData": { - "id": "Elegant Eagle", - "pt": 2, + "id": "Titanic Gingerbread Corgi", + "sh": true, }, - "value": 74, + "value": 23, }, { "category": "Pet", "configData": { - "id": "Diamond Dragon", + "id": "Titanic Gingerbread Cat", + "pt": 2, }, - "value": 984, + "value": 19, }, { "category": "Pet", "configData": { - "id": "Diamond Dragon", + "id": "Titanic Gingerbread Dragon", "pt": 2, + "sh": true, }, - "value": 808, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Pristine Snake", + "id": "Huge Gingerbread Dragon", }, - "value": 177, + "value": 524, }, { "category": "Pet", "configData": { - "id": "Valkyrie Dog", + "id": "Huge Gingerbread Dragon", "pt": 2, - "sh": true, }, - "value": 234789110, + "value": 75, }, { "category": "Pet", "configData": { - "id": "Huge Rave Jaguar", - "pt": 2, - "sh": true, + "id": "Huge Gingerbread Dragon", + "pt": 1, }, - "value": 4493692786, + "value": 148, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Huge Rave Troll", - "pt": 2, - "sh": true, + "id": "Gingerbread", }, - "value": 4000000000, + "value": 748, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Titanic Kitsune Fox", + "id": "Gingerbread", }, - "value": 13047930193, + "value": 3551, }, { "category": "Pet", "configData": { - "id": "Tech Camel", - "pt": 2, - "sh": true, + "id": "Huge Naughty Cat", }, - "value": 1, + "value": 8822, }, { "category": "Pet", "configData": { - "id": "Relic Fox", + "id": "Huge Naughty Cat", "pt": 1, - "sh": true, }, - "value": 5000000, + "value": 971, }, { "category": "Pet", "configData": { - "id": "Tech Ninja Panda", + "id": "Huge Naughty Cat", "pt": 2, - "sh": true, }, - "value": 1000000, + "value": 101, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Huge Valkyrie Wolf", - "pt": 2, + "id": "2024 Small Christmas Present", }, - "value": 2653097265, + "value": 435613036, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Huge Valkyrie Wolf", - "sh": true, + "id": "2024 Large Christmas Present", }, - "value": 1985663318, + "value": 54507957, }, { "category": "Pet", "configData": { - "id": "Sad Bunny", - "sh": true, + "id": "Huge Sleigh Cat", + "pt": 1, }, - "value": 9231902, + "value": 13826, }, { "category": "Pet", "configData": { - "id": "Huge Disco Ball Dragon", - "pt": 2, - "sh": true, + "id": "Huge Snow Elf", }, - "value": 5934890962, + "value": 32466, }, { "category": "Pet", "configData": { - "id": "Valkyrie Wolf", - "pt": 2, - "sh": true, + "id": "Holiday Bearserker", }, - "value": 848640880, + "value": 350812, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Huge Sorcerer Bear", - "sh": true, + "id": "2024 Gargantuan Christmas Present", }, - "value": 87872788, + "value": 2379238, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Huge Valkyrie Dog", - "pt": 2, + "id": "2024 X-Large Christmas Present", }, - "value": 930926531, + "value": 11570437, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Huge Firefly", - "pt": 2, + "id": "Exclusive Egg 41", }, - "value": 7108000023, + "value": 2379711, }, { "category": "Pet", "configData": { - "id": "Huge Valkyrie Dog", - "sh": true, + "id": "Naughty Dominus", }, - "value": 757525191, + "value": 87654, }, { "category": "Pet", "configData": { - "id": "Huge Rave Jaguar", - "sh": true, + "id": "Festive Hydra", }, - "value": 272892324, + "value": 204747, }, { "category": "Pet", "configData": { - "id": "Huge Rave Jaguar", + "id": "Marzipan Piggy", "pt": 1, - "sh": true, }, - "value": 1854221964, + "value": 51817353, }, { "category": "Pet", "configData": { - "id": "Disco Ball Dragon", - "sh": true, + "id": "Nutcracker Squirrel", + "pt": 1, }, - "value": 84770099, + "value": 54209827813, }, { "category": "Pet", "configData": { - "id": "Titanic Valkyrie Pegasus", + "id": "Nutcracker Squirrel", }, - "value": 18447388049, + "value": 668027371664, }, { "category": "Pet", "configData": { - "id": "Huge Luxe Peacock", - "sh": true, + "id": "Marzipan Piggy", }, - "value": 384207933, + "value": 653277301, }, { "category": "Pet", "configData": { - "id": "Rave Unicorn", - "pt": 1, - "sh": true, + "id": "Nutcracker Squirrel", + "pt": 2, }, - "value": 25763, + "value": 40788952813, }, { "category": "Pet", "configData": { - "id": "Rave Butterfly", - "pt": 1, - "sh": true, + "id": "Marzipan Piggy", + "pt": 2, }, - "value": 85462, + "value": 37789771, }, { "category": "Pet", "configData": { - "id": "Huge Rave Butterfly", - "pt": 1, + "id": "Festive Hydra", + "pt": 2, }, - "value": 1010357441, + "value": 9501, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Huge Rave Jaguar", - "pt": 2, + "id": "2024 Medium Christmas Present", }, - "value": 169840918, + "value": 221645972, }, { "category": "Pet", "configData": { - "id": "Valkyrie Wolf", + "id": "Holiday Bearserker", "pt": 2, }, - "value": 23479243, + "value": 13108, }, { "category": "Pet", "configData": { - "id": "Graffiti Dino", - "sh": true, + "id": "Huge Sleigh Cat", }, - "value": 81, + "value": 28931, }, { "category": "Pet", "configData": { - "id": "Electric Dino", - "pt": 1, + "id": "Huge Holiday Bearserker", }, - "value": 216, + "value": 32009, }, { "category": "Pet", "configData": { - "id": "Rave Axolotl", - "pt": 1, + "id": "Huge Sleigh Cat", "sh": true, }, - "value": 918, + "value": 804, }, { "category": "Pet", "configData": { - "id": "Enchanted Squirrel", - "pt": 1, + "id": "Marzipan Piggy", "sh": true, }, - "value": 162, + "value": 1828411, }, { "category": "Pet", "configData": { - "id": "Rave Jaguar", - "pt": 1, + "id": "Festive Hydra", "sh": true, }, - "value": 1251, + "value": 6032, }, { "category": "Pet", "configData": { - "id": "Rave Butterfly", - "pt": 2, + "id": "Holiday Bearserker", "sh": true, }, - "value": 58431, + "value": 8682, }, { "category": "Pet", "configData": { - "id": "Disco Ball Dragon", - "pt": 1, + "id": "Huge Naughty Dominus", }, - "value": 107245, + "value": 8356, }, { "category": "Pet", "configData": { - "id": "Huge Valkyrie Dog", + "id": "Naughty Dominus", + "pt": 2, }, - "value": 76154428, + "value": 4013, }, { "category": "Pet", "configData": { - "id": "Rave Butterfly", + "id": "Huge Snow Elf", "pt": 1, }, - "value": 822, - }, - { - "category": "Pet", - "configData": { - "id": "Valkyrie Dragon", - "pt": 2, - }, - "value": 14531862, + "value": 13206, }, { "category": "Pet", "configData": { - "id": "Rave Unicorn", - "pt": 2, + "id": "Nutcracker Squirrel", "sh": true, }, - "value": 13742, + "value": 1951669452, }, { "category": "Pet", "configData": { - "id": "Rave Jaguar", + "id": "Marzipan Piggy", "pt": 1, + "sh": true, }, - "value": 130, + "value": 200824, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Disco Ball Dragon", + "id": "Santa Key", }, - "value": 2897, + "value": 743042, }, { "category": "Pet", "configData": { - "id": "Rave Axolotl", + "id": "Naughty Dominus", "sh": true, }, - "value": 713, + "value": 2580, }, { "category": "Pet", "configData": { - "id": "Huge Valkyrie Wolf", + "id": "Huge Sleigh Cat", + "pt": 2, }, - "value": 133134816, + "value": 3720, }, { "category": "Pet", "configData": { - "id": "Huge Disco Ball Dragon", - "pt": 2, + "id": "Titanic Snow Elf", + "sh": true, }, - "value": 381737948, + "value": 76, }, { "category": "Pet", "configData": { - "id": "Valkyrie Wolf", + "id": "Huge Snow Elf", + "pt": 2, }, - "value": 6078565, + "value": 3544, }, { "category": "Pet", "configData": { - "id": "Research Cat", + "id": "Huge Jolly Dino", "pt": 1, - "sh": true, }, - "value": 206, + "value": 34161, }, { "category": "Pet", "configData": { - "id": "Rave Butterfly", + "id": "Huge Holiday Bearserker", "pt": 2, }, - "value": 1302, + "value": 985, }, { "category": "Pet", "configData": { - "id": "Rave Cat", - "sh": true, + "id": "Huge Jolly Dino", }, - "value": 218, + "value": 170015, }, { "category": "Pet", "configData": { - "id": "Rave Unicorn", - "pt": 2, + "id": "Titanic Snow Elf", + "pt": 1, }, - "value": 783, + "value": 1371, }, { "category": "Pet", "configData": { - "id": "Rave Axolotl", - "pt": 2, + "id": "Titanic Snow Elf", }, - "value": 290, + "value": 3059, }, { "category": "Pet", "configData": { - "id": "Rave Cat", + "id": "Huge Holiday Bearserker", "pt": 2, "sh": true, }, - "value": 373, + "value": 33, }, { "category": "Pet", "configData": { - "id": "Valkyrie Wolf", + "id": "Marzipan Piggy", + "pt": 2, "sh": true, }, - "value": 18008894, + "value": 131668, }, { "category": "Pet", "configData": { - "id": "Rave Jaguar", - "pt": 2, + "id": "Merry Manatee", }, - "value": 286, + "value": 348306316135, }, { "category": "Pet", "configData": { - "id": "Rave Cat", + "id": "Merry Manatee", + "pt": 1, }, - "value": 119, + "value": 28495028389, }, { "category": "Pet", "configData": { - "id": "Rave Jaguar", + "id": "Huge Sleigh Cat", + "pt": 1, + "sh": true, }, - "value": 115, + "value": 157, }, { "category": "Pet", "configData": { - "id": "Valkyrie Dragon", + "id": "Merry Manatee", + "pt": 2, }, - "value": 6183074, + "value": 26405325503, }, { "category": "Pet", "configData": { - "id": "Reindeer Corgi", - "pt": 1, + "id": "Huge Holiday Bearserker", "sh": true, }, - "value": 73839999, + "value": 1350, }, { "category": "Pet", "configData": { - "id": "Huge Dog", - "pt": 1, - "sh": true, + "id": "Titanic Snowflake Angelus", }, - "value": 69420, + "value": 2192, }, { "category": "Pet", "configData": { - "id": "Kawaii Cat", - "pt": 1, + "id": "Holiday Bearserker", + "pt": 2, + "sh": true, }, - "value": 2203196, + "value": 589, }, { "category": "Pet", "configData": { - "id": "Electric Dragon", - "sh": true, + "id": "Huge Naughty Dominus", + "pt": 2, }, - "value": 8, + "value": 236, }, { "category": "Pet", "configData": { - "id": "Huge Rave Troll", - "pt": 1, + "id": "Huge Snow Elf", "sh": true, }, - "value": 2904137584, + "value": 797, }, { "category": "Pet", "configData": { - "id": "Floatie Flamingo", + "id": "Nutcracker Squirrel", + "pt": 1, "sh": true, }, - "value": 129, + "value": 210170727, }, { "category": "Pet", "configData": { - "id": "Abomination", + "id": "Nutcracker Squirrel", + "pt": 2, + "sh": true, }, - "value": 302582, + "value": 191113405, }, { "category": "Pet", "configData": { - "cv": 3, - "id": "Chroma Tiger", - "sh": true, + "id": "Huge Jolly Dino", + "pt": 2, }, - "value": 18989343, + "value": 6735, }, { "category": "Pet", "configData": { - "id": "Huge Inferno Dominus", - "pt": 2, + "id": "Merry Manatee", "sh": true, }, - "value": 9699999996, + "value": 1053645308, }, { "category": "Pet", "configData": { - "id": "Candycane Unicorn", - "pt": 1, + "id": "Huge Sleigh Cat", + "pt": 2, "sh": true, }, - "value": 44000000, + "value": 37, }, { "category": "Pet", "configData": { - "id": "Titanic Reindeer", + "id": "Titanic Snow Elf", "pt": 2, }, - "value": 4980000803, + "value": 350, }, { "category": "Pet", "configData": { - "id": "Huge Hacker Axolotl", + "id": "Huge Nice Cat", "pt": 2, - "sh": true, }, - "value": 8000000000, + "value": 116, }, { "category": "Pet", "configData": { - "id": "Huge UV Cat", + "id": "Huge Snow Elf", "pt": 1, "sh": true, }, - "value": 937681689, + "value": 166, }, { "category": "Pet", "configData": { - "id": "Huge Party Penguin", + "id": "Naughty Dominus", "pt": 2, "sh": true, }, - "value": 20000000000, + "value": 179, }, { "category": "Pet", "configData": { - "id": "Titanic Dino Cat", - "sh": true, + "id": "Figgy Fox", + "pt": 2, }, - "value": 7993999928, + "value": 504437762, }, { "category": "Pet", "configData": { - "id": "Huge Rave Meebo in a Spaceship", - "pt": 2, - "sh": true, + "id": "Figgy Fox", }, - "value": 4796348921, + "value": 6569909006, }, { "category": "Pet", "configData": { - "id": "Huge Rave Troll", + "id": "Figgy Fox", "pt": 1, }, - "value": 58494121, + "value": 558984144, }, { "category": "Pet", "configData": { - "id": "Huge Rave Troll", + "id": "Merry Manatee", "pt": 2, + "sh": true, }, - "value": 312576446, + "value": 132906943, }, { "category": "Pet", "configData": { - "id": "Rave Bunny", - "pt": 1, + "id": "Huge Naughty Dominus", "sh": true, }, - "value": 1758, + "value": 350, }, { "category": "Pet", "configData": { - "id": "Huge UV Cat", - "sh": true, + "id": "Jolly Dino", }, - "value": 359437067, + "value": 102534732, }, { "category": "Pet", "configData": { - "id": "Rave Corgi", + "id": "Merry Manatee", "pt": 1, "sh": true, }, - "value": 5, + "value": 113906191, }, { "category": "Pet", "configData": { - "id": "Huge Luchador Coyote", + "id": "Jolly Dino", "pt": 2, }, - "value": 6101063034, + "value": 7571782, }, { "category": "Pet", "configData": { - "id": "Rave Meebo in a Spaceship", - "pt": 2, - "sh": true, + "id": "Huge Nice Cat", + "pt": 1, }, - "value": 90252, + "value": 585, }, { "category": "Pet", "configData": { - "id": "Titanic Bread Shiba", - "sh": true, + "id": "Titanic Grinch Cat", }, - "value": 23270799988, + "value": 1675, }, { "category": "Pet", "configData": { - "id": "Huge Kitsune Fox", + "id": "Jolly Dino", "pt": 1, }, - "value": 47019057, + "value": 8968300, }, { "category": "Pet", "configData": { - "id": "UV Kitsune", + "id": "Figgy Fox", "sh": true, }, - "value": 609, + "value": 16686422, }, { "category": "Pet", "configData": { - "id": "UV Kitsune", + "id": "Snow Elf", "pt": 1, - "sh": true, - }, - "value": 6162129, - }, - { - "category": "Pet", - "configData": { - "id": "Rave Bunny", - "sh": true, }, - "value": 4987, + "value": 944328, }, { "category": "Pet", "configData": { - "id": "Huge Kitsune Fox", + "id": "Snow Elf", }, - "value": 50722868, + "value": 10473506, }, { "category": "Pet", "configData": { - "id": "Huge Tropical Parrot", - "pt": 1, + "id": "Festive Hydra", + "pt": 2, + "sh": true, }, - "value": 2503360002, + "value": 393, }, { "category": "Pet", "configData": { - "id": "Rave Meebo in a Spaceship", - "pt": 1, + "id": "Huge Merry Manatee", }, - "value": 423, + "value": 8748, }, { "category": "Pet", "configData": { - "id": "Huge UV Cat", + "id": "Snow Elf", "pt": 2, }, - "value": 324342720, + "value": 745896, }, { "category": "Pet", "configData": { - "id": "Huge Kitsune Fox", - "sh": true, + "id": "Huge Nutcracker Squirrel", }, - "value": 376788097, + "value": 126117, }, { "category": "Pet", "configData": { - "id": "Huge Rave Meebo in a Spaceship", + "id": "Figgy Fox", "pt": 1, "sh": true, }, - "value": 2111519027, + "value": 1920406, }, { "category": "Pet", "configData": { - "id": "Huge UV Kitsune", - "pt": 1, - "sh": true, + "id": "Huge Nice Cat", }, - "value": 3367040001, + "value": 2880, }, { "category": "Pet", "configData": { - "id": "Huge UV Cat", + "id": "Figgy Fox", + "pt": 2, + "sh": true, }, - "value": 46366410, + "value": 2135933, }, { "category": "Pet", "configData": { - "id": "UV Kitsune", + "id": "Huge Merry Manatee", "pt": 2, - "sh": true, }, - "value": 14659, + "value": 509, }, { "category": "Pet", "configData": { - "id": "Huge UV Kitsune", + "id": "Gargantuan Santa Paws", }, - "value": 60258116, + "value": 239, }, { "category": "Pet", "configData": { - "id": "Huge Sombrero Chihuahua", - "sh": true, + "id": "Huge Nutcracker Squirrel", + "pt": 1, }, - "value": 15000000000, + "value": 11960, }, { "category": "Pet", "configData": { - "id": "Rave Troll", - "sh": true, + "id": "Huge Merry Manatee", + "pt": 1, }, - "value": 758, + "value": 659, }, { "category": "Pet", "configData": { - "id": "UV Kitsune", + "id": "Titanic Grinch Cat", "pt": 1, }, - "value": 173, + "value": 352, }, { "category": "Pet", "configData": { - "id": "Rave Meebo in a Spaceship", + "id": "Titanic Grinch Cat", + "pt": 2, }, - "value": 705, + "value": 73, }, { "category": "Pet", "configData": { - "id": "Huge Rave Meebo in a Spaceship", - "pt": 2, + "id": "Huge Jolly Dino", + "pt": 1, + "sh": true, }, - "value": 184220337, + "value": 286, }, { "category": "Pet", "configData": { - "id": "Rave Bunny", - "pt": 2, + "id": "Huge Jolly Dino", "sh": true, }, - "value": 924, + "value": 1385, }, { "category": "Pet", "configData": { - "id": "UV Kitsune", - "pt": 2, + "id": "Huge Nutcracker Squirrel", + "sh": true, }, - "value": 611, + "value": 2604, }, { "category": "Pet", "configData": { - "id": "Rave Troll", + "id": "Huge Merry Manatee", + "sh": true, }, - "value": 36, + "value": 203, }, { "category": "Pet", "configData": { - "id": "Rave Bunny", - "pt": 2, + "id": "Snow Elf", + "sh": true, }, - "value": 323, + "value": 8546, }, { "category": "Pet", "configData": { - "id": "DJ Panda", + "id": "Titanic Snow Elf", "pt": 1, + "sh": true, }, - "value": 527, + "value": 16, }, { "category": "Pet", "configData": { - "id": "UV Cat", + "id": "Huge Jolly Dino", "pt": 2, + "sh": true, }, - "value": 2288, + "value": 47, }, { "category": "Pet", "configData": { - "id": "Rave Corgi", + "id": "Huge Nutcracker Squirrel", "pt": 2, }, - "value": 764, + "value": 6208, }, { "category": "Pet", "configData": { - "id": "Kawaii Dragon", - "pt": 1, + "id": "Gargantuan Santa Paws", + "pt": 2, + "sh": true, }, - "value": 263, + "value": 1, }, { "category": "Pet", "configData": { - "id": "UV Cat", + "id": "Jolly Dino", "sh": true, }, - "value": 662, + "value": 216336, }, { "category": "Pet", "configData": { - "id": "DJ Panda", + "id": "Titanic Snowflake Angelus", "pt": 2, }, - "value": 2446, + "value": 81, }, { "category": "Pet", "configData": { - "id": "DJ Panda", + "id": "Huge Merry Manatee", + "pt": 2, + "sh": true, }, - "value": 296, + "value": 11, }, { "category": "Pet", "configData": { - "id": "Mummy Bunny", + "id": "Jolly Dino", + "pt": 1, + "sh": true, }, - "value": 85, + "value": 42747, }, { "category": "Pet", "configData": { - "id": "UV Cat", + "id": "Huge Merry Manatee", + "pt": 1, + "sh": true, }, - "value": 737, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Rave Corgi", + "id": "Titanic Snowflake Angelus", + "sh": true, }, - "value": 1015, + "value": 37, }, { "category": "Pet", "configData": { - "id": "UV Cat", + "id": "Huge Nutcracker Squirrel", "pt": 1, - }, - "value": 388, - }, - { - "category": "Pet", - "configData": { - "id": "Shadow Dominus", - "pt": 2, "sh": true, }, - "value": 1603000, + "value": 244, }, { "category": "Pet", "configData": { - "cv": 5, - "id": "Chroma Tiger", + "id": "Snow Elf", "pt": 1, "sh": true, }, - "value": 7880000, + "value": 7782, }, { "category": "Pet", "configData": { - "id": "Titanic Dino Cat", + "id": "Jolly Dino", + "pt": 2, + "sh": true, }, - "value": 12745096674, + "value": 40064, }, { "category": "Pet", "configData": { - "id": "Huge Safety Cat", - "pt": 1, + "id": "Huge Nutcracker Squirrel", + "pt": 2, + "sh": true, }, - "value": 1381857592, + "value": 108, }, { "category": "Pet", "configData": { - "id": "Huge Safety Cat", + "id": "Huge Snow Elf", + "pt": 2, + "sh": true, }, - "value": 583590562, + "value": 22, }, { "category": "Pet", "configData": { - "id": "Warrior Wolf", - "pt": 1, + "id": "Snow Elf", + "pt": 2, "sh": true, }, - "value": 4700000, + "value": 4414, }, { "category": "Pet", "configData": { - "id": "Candycane", - "pt": 1, + "id": "Huge Naughty Dominus", + "pt": 2, "sh": true, }, - "value": 61968000, + "value": 8, }, { "category": "Pet", "configData": { - "id": "Huge Balloon Axolotl", - "pt": 2, - "sh": true, + "id": "Titanic Nutcracker Squirrel", }, - "value": 17399999991, + "value": 774, }, { "category": "Pet", "configData": { - "id": "Mosaic Griffin", - "pt": 2, + "id": "Huge Nice Cat", "sh": true, }, - "value": 16919979893, + "value": 23, }, { "category": "Pet", "configData": { - "id": "Demon Dog", - "pt": 1, + "id": "Gargantuan Santa Paws", "sh": true, }, - "value": 21, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Huge Purple Dragon", - "pt": 2, + "id": "Huge Shiba", "sh": true, }, - "value": 25000000000, + "value": 11, }, { "category": "Pet", "configData": { - "id": "Warrior Wolf", + "id": "Titanic Grinch Cat", "sh": true, }, - "value": 63984000, + "value": 12, }, { "category": "Pet", "configData": { - "id": "Huge Dominus Lucki", + "id": "Gargantuan Santa Paws", "pt": 2, }, - "value": 16281279912, + "value": 8, }, { "category": "Pet", "configData": { - "id": "Demon Cat", - "pt": 1, + "id": "Huge Husky", + "pt": 2, "sh": true, }, "value": 1, @@ -70202,33578 +76107,34026 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get RAP 1`] = ` { "category": "Pet", "configData": { - "id": "Huge Flex Tiger", + "id": "Titanic Gingerbread Corgi", "pt": 2, "sh": true, }, - "value": 25000000000, - }, - { - "category": "Pet", - "configData": { - "id": "Evil Bat", - "pt": 1, - "sh": true, - }, - "value": 16103, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Huge Sage Axolotl", + "id": "Titanic Snow Elf", "pt": 2, "sh": true, }, - "value": 12700000003, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Comet Cyclops", - "pt": 1, - "sh": true, + "id": "Huge Panther", }, - "value": 52000, + "value": 5723, }, { "category": "Pet", "configData": { - "id": "Forged Cyclops", + "id": "Huge Diamond Dragon", "pt": 1, - "sh": true, }, - "value": 1, + "value": 150, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Safari Dog", - "pt": 2, - "sh": true, + "id": "Diamond", }, - "value": 323844, + "value": 676, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Devil Dominus", - "sh": true, + "id": "Diamond", }, - "value": 9100000, + "value": 3276, }, { "category": "Pet", "configData": { - "id": "Huge Devil Agony", - "sh": true, + "id": "Huge Diamond Dragon", }, - "value": 7035110581, + "value": 516, }, { "category": "Pet", "configData": { - "id": "Demon Cat", - "sh": true, + "id": "Huge Diamond Dragon", + "pt": 2, }, - "value": 14879, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Angel Fawn", + "id": "Huge Nice Cat", "pt": 1, "sh": true, }, - "value": 85075, + "value": 1, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Demon Dog", - "pt": 1, + "id": "Lockpick A", }, - "value": 528, + "value": 299015938, }, { "category": "Pet", "configData": { - "id": "Huge Sage Axolotl", - "pt": 1, - "sh": true, + "id": "Holiday Dove", + "pt": 2, }, - "value": 6666953470, + "value": 216795, }, { "category": "Pet", "configData": { - "id": "Elemental Phoenix", + "id": "Festive Walrus", "pt": 1, }, - "value": 62684, + "value": 2973091, }, { "category": "Pet", "configData": { - "id": "Archangel Cat", - "pt": 1, - "sh": true, + "id": "Festive Walrus", }, - "value": 87520, + "value": 25029986, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Warrior Wolf", - "pt": 2, - "sh": true, + "id": "Lockpick C", }, - "value": 4422776, + "value": 4222708, }, { - "category": "Pet", + "category": "Misc", "configData": { - "cv": 5, - "id": "Huge Chroma Phoenix", + "id": "Lockpick B", }, - "value": 51371259, + "value": 24598815, }, { "category": "Pet", "configData": { - "cv": 1, - "id": "Huge Chroma Swan", - "pt": 2, + "id": "Candycane Shake Shark", + "pt": 1, }, - "value": 1800993488, + "value": 2934018, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Demon Dog", - "sh": true, + "id": "Ultra Grinch-B-Gone", }, - "value": 3120, + "value": 1027257, }, { "category": "Pet", "configData": { - "id": "Huge Good vs Evil Dragon", - "pt": 1, + "id": "Holiday Dove", }, - "value": 769556190, + "value": 8185774, }, { "category": "Pet", "configData": { - "id": "Archangel Cat", - "sh": true, + "id": "Festive Walrus", + "pt": 2, }, - "value": 25731, + "value": 681669, }, { "category": "Pet", "configData": { - "id": "Sage Axolotl", - "pt": 1, - "sh": true, + "id": "Candycane Shake Shark", }, - "value": 5831, + "value": 24541204, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Huge Luau Cat", - "pt": 2, - "sh": true, + "id": "Jolly Gift", }, - "value": 14000000000, + "value": 15417315, }, { "category": "Pet", "configData": { - "id": "Classic Dog", - "sh": true, + "id": "Holly Fawn", + "pt": 1, }, - "value": 8230950, + "value": 492707, }, { "category": "Pet", "configData": { - "id": "Huge Sage Axolotl", - "sh": true, + "id": "Candycane Shake Shark", + "pt": 2, }, - "value": 1638711804, + "value": 664471, }, { "category": "Pet", "configData": { - "id": "Chef Monkey", + "id": "Holly Fawn", }, - "value": 136, + "value": 4130369, }, { "category": "Pet", "configData": { - "id": "Huge Cupcake", - "pt": 2, - "sh": true, + "id": "Huge Poinsettia Peacock", + "pt": 1, }, - "value": 7000000000, + "value": 7619, }, { "category": "Pet", "configData": { - "id": "Sage Axolotl", - "sh": true, + "id": "Pinecone Porcupine", }, - "value": 6376, + "value": 426093, }, { "category": "Pet", "configData": { - "id": "Huge Good vs Evil Dragon", - "pt": 2, + "id": "Candycane Shake Shark", + "sh": true, }, - "value": 1417699877, + "value": 267717, }, { "category": "Pet", "configData": { - "id": "Huge Devil Agony", - "pt": 2, + "id": "Holiday Dove", + "pt": 1, }, - "value": 759579443, + "value": 974657, }, { "category": "Pet", "configData": { - "id": "Archangel Cat", - "pt": 1, + "id": "Huge Angry Yeti", }, - "value": 252, + "value": 274982, }, { "category": "Pet", "configData": { - "id": "Huge Warrior Wolf", + "id": "Huge Ice Snake", "pt": 2, }, - "value": 326864198, + "value": 3427, }, { "category": "Pet", "configData": { - "id": "Angel Lamb", + "id": "Festive Walrus", "sh": true, }, - "value": 44, + "value": 270320, }, { "category": "Pet", "configData": { - "id": "Angel Pony", + "id": "Huge Angry Yeti", "pt": 1, }, - "value": 136, + "value": 54446, }, { "category": "Pet", "configData": { - "id": "Angel Moth", + "id": "Huge Ice Snake", "pt": 1, }, - "value": 285, + "value": 12327, }, { "category": "Pet", "configData": { - "id": "Huge Water Zebra", - "pt": 1, + "id": "Huge Poinsettia Peacock", }, - "value": 120119996, + "value": 15590, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Evil Bat", - "pt": 2, + "id": "Grinch-B-Gone", }, - "value": 178, + "value": 27355711, }, { "category": "Pet", "configData": { - "id": "Evil Bat", - "pt": 1, + "id": "Holly Fawn", + "pt": 2, }, - "value": 294, + "value": 110946, }, { "category": "Pet", "configData": { - "id": "Angel Fawn", + "id": "Holiday Dove", "sh": true, }, - "value": 211, + "value": 89423, }, { "category": "Pet", "configData": { - "id": "Huge Sage Axolotl", + "id": "Huge Poinsettia Peacock", + "pt": 2, }, - "value": 54801120, + "value": 2200, }, { "category": "Pet", "configData": { - "id": "Huge Warrior Wolf", + "id": "Huge Ice Snake", }, - "value": 63063775, + "value": 28307, }, { "category": "Pet", "configData": { - "id": "Huge Devil Dominus", - "pt": 1, + "id": "Festive Walrus", + "pt": 2, "sh": true, }, - "value": 1441180159, + "value": 8129, }, { "category": "Pet", "configData": { - "id": "Huge Warrior Wolf", + "id": "Festive Walrus", "pt": 1, + "sh": true, }, - "value": 59811020, + "value": 35475, }, { "category": "Pet", "configData": { - "id": "Huge Devil Agony", + "id": "Pinecone Porcupine", + "pt": 2, }, - "value": 77210562, + "value": 11745, }, { "category": "Pet", "configData": { - "id": "Angel Fawn", + "id": "Holiday Dove", "pt": 1, + "sh": true, }, - "value": 432, + "value": 11702, }, { "category": "Pet", "configData": { - "id": "Demon Cat", + "id": "Candycane Shake Shark", "pt": 1, + "sh": true, }, - "value": 48189, + "value": 35470, }, { "category": "Pet", "configData": { - "id": "Huge Devil Dominus", + "id": "Holly Fawn", "pt": 2, + "sh": true, }, - "value": 328436424, + "value": 1341, }, { "category": "Pet", "configData": { - "id": "Sage Axolotl", + "id": "Pinecone Porcupine", "pt": 1, + "sh": true, }, - "value": 374, + "value": 616, }, { "category": "Pet", "configData": { - "id": "Angel Fawn", - "pt": 2, + "id": "Holly Fawn", "sh": true, }, - "value": 79828, + "value": 44687, }, { "category": "Pet", "configData": { - "cv": 3, - "id": "Huge Chroma Butterfly", + "id": "Poinsettia Peacock", }, - "value": 52128452, + "value": 34158, }, { "category": "Pet", "configData": { - "id": "Hell Scorpion", + "id": "Poinsettia Peacock", "pt": 1, }, - "value": 2522, + "value": 4564, }, { "category": "Pet", "configData": { - "id": "Archangel Cat", + "id": "Huge Angry Yeti", "pt": 2, }, - "value": 1767, - }, - { - "category": "Pet", - "configData": { - "id": "Demon Dog", - }, - "value": 1846, + "value": 10977, }, { "category": "Pet", "configData": { - "id": "Angel Moth", - "pt": 2, - "sh": true, + "id": "Huge Pinecone Porcupine", }, - "value": 1165, + "value": 14157, }, { "category": "Pet", "configData": { - "id": "Devil Dominus", - "pt": 2, + "id": "Pinecone Porcupine", + "pt": 1, }, - "value": 12772, + "value": 50579, }, { "category": "Pet", "configData": { - "id": "Devil Agony", - "pt": 1, + "id": "Titanic Ice Snake", }, - "value": 17913, + "value": 2733, }, { "category": "Pet", "configData": { - "id": "Warrior Wolf", + "id": "Titanic Ice Snake", "pt": 2, }, - "value": 32712, + "value": 292, }, { "category": "Pet", "configData": { - "id": "Angel Lamb", + "id": "Titanic Ice Snake", "pt": 1, }, - "value": 2644, + "value": 1148, }, { "category": "Pet", "configData": { - "id": "Angel Pony", + "id": "Pinecone Porcupine", "sh": true, }, - "value": 140, + "value": 4637, }, { "category": "Pet", "configData": { - "id": "Devil Agony", + "id": "Holly Fawn", + "pt": 1, "sh": true, }, - "value": 2069, + "value": 5895, }, { "category": "Pet", "configData": { - "id": "Sage Axolotl", - "pt": 2, - "sh": true, + "id": "Huge Pinecone Porcupine", + "pt": 1, }, - "value": 13026, + "value": 1621, }, { "category": "Pet", "configData": { - "id": "Devil Agony", - "pt": 2, + "id": "Huge Angry Yeti", "sh": true, }, - "value": 59313, + "value": 2247, }, { "category": "Pet", "configData": { - "id": "Devil Dominus", - "pt": 1, + "id": "Huge Poinsettia Peacock", + "pt": 2, + "sh": true, }, - "value": 39686, + "value": 15, }, { "category": "Pet", "configData": { - "id": "Angel Moth", - "pt": 1, + "id": "Holiday Dove", + "pt": 2, "sh": true, }, - "value": 2880, + "value": 2635, }, { "category": "Pet", "configData": { - "id": "Fortress Owl", + "id": "Candycane Shake Shark", "pt": 2, "sh": true, }, - "value": 272, + "value": 7690, }, { "category": "Pet", "configData": { - "id": "Angel Lamb", + "id": "Huge Pinecone Porcupine", "pt": 2, }, - "value": 543, + "value": 359, }, { "category": "Pet", "configData": { - "id": "Warrior Wolf", + "id": "Poinsettia Peacock", + "sh": true, }, - "value": 6336, + "value": 653, }, { "category": "Pet", "configData": { - "id": "Hell Scorpion", - "pt": 1, + "id": "Huge Poinsettia Peacock", "sh": true, }, - "value": 342, + "value": 496, }, { "category": "Pet", "configData": { - "id": "Demon Cat", - "pt": 2, + "id": "Huge Ice Snake", + "sh": true, }, - "value": 1773904, + "value": 796, }, { "category": "Pet", "configData": { - "id": "Evil Minotaur", + "id": "Huge Poinsettia Peacock", "pt": 1, + "sh": true, }, - "value": 91, + "value": 108, }, { "category": "Pet", "configData": { - "id": "Huge Devil Dominus", + "id": "Huge Jolly Owl", }, - "value": 75105724, + "value": 4643, }, { "category": "Pet", "configData": { - "id": "Huge Warrior Wolf", - "pt": 1, - "sh": true, + "id": "Poinsettia Peacock", + "pt": 2, }, - "value": 1172939279, + "value": 2098, }, { "category": "Pet", "configData": { - "id": "Luxe Peacock", + "id": "Huge Angry Yeti", "pt": 1, + "sh": true, }, - "value": 60563, + "value": 460, }, { "category": "Pet", "configData": { - "id": "Evil Minotaur", - "pt": 2, - "sh": true, + "id": "Huge Jolly Owl", + "pt": 1, }, - "value": 1381, + "value": 921, }, { "category": "Pet", "configData": { - "id": "Good vs Evil Dragon", + "id": "Huge Pinecone Porcupine", "sh": true, }, - "value": 1446, + "value": 131, }, { "category": "Pet", "configData": { - "id": "Angel Pony", + "id": "Titanic Angry Yeti", }, - "value": 53, + "value": 86, }, { "category": "Pet", "configData": { - "id": "Angel Moth", + "id": "Huge Ice Snake", + "pt": 1, + "sh": true, }, - "value": 85, + "value": 165, }, { "category": "Pet", "configData": { - "id": "Angel Moth", + "id": "Huge Angry Yeti", + "pt": 2, "sh": true, }, - "value": 1191, + "value": 79, }, { "category": "Pet", "configData": { - "id": "Evil Minotaur", + "id": "Huge Jolly Owl", + "pt": 2, }, "value": 169, }, { "category": "Pet", "configData": { - "id": "Yellow Lucky Block", + "id": "Huge Holiday Hedgehog", }, - "value": 9285632008, + "value": 14775, }, { "category": "Pet", "configData": { - "id": "Evil Minotaur", - "pt": 2, + "id": "Huge Holiday Hedgehog", + "sh": true, }, - "value": 593, + "value": 102, }, { "category": "Pet", "configData": { - "id": "Hell Scorpion", + "id": "Huge Holiday Hedgehog", + "pt": 1, }, - "value": 78, + "value": 2962, }, { "category": "Pet", "configData": { - "id": "Good vs Evil Dragon", - "pt": 1, + "id": "Huge Holiday Hedgehog", + "pt": 2, }, - "value": 540, + "value": 631, }, { "category": "Pet", "configData": { - "id": "Devil Agony", + "id": "Pinecone Porcupine", + "pt": 2, + "sh": true, }, - "value": 1168, + "value": 148, }, { "category": "Pet", "configData": { - "id": "Angel Fawn", + "id": "Huge Ice Snake", "pt": 2, + "sh": true, }, - "value": 261, + "value": 39, }, { "category": "Pet", "configData": { - "id": "Angel Pony", - "pt": 2, + "id": "Huge Holly Fawn", }, - "value": 115, + "value": 13272, }, { "category": "Pet", "configData": { - "id": "Devil Agony", + "id": "Huge Holly Fawn", "pt": 2, }, - "value": 780, + "value": 2143, }, { "category": "Pet", "configData": { - "id": "Archangel Cat", + "id": "Huge Holly Fawn", + "pt": 1, }, - "value": 1665, + "value": 8970, }, { "category": "Pet", "configData": { - "id": "Good vs Evil Dragon", - "pt": 2, + "id": "Huge Holly Fawn", "sh": true, }, - "value": 2272, + "value": 480, }, { "category": "Pet", "configData": { - "id": "Good vs Evil Dragon", + "id": "Huge Pinecone Porcupine", + "pt": 2, + "sh": true, }, - "value": 308, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Huge Devil Dominus", + "id": "Titanic Ice Snake", "sh": true, }, - "value": 504779117, + "value": 67, }, { "category": "Pet", "configData": { - "id": "Demon Dog", + "id": "Titanic Nutcracker Squirrel", "pt": 2, }, - "value": 824, + "value": 21, }, { "category": "Pet", "configData": { - "id": "Demon Cat", + "id": "Poinsettia Peacock", + "pt": 1, + "sh": true, }, - "value": 3861, + "value": 248, }, { "category": "Pet", "configData": { - "id": "Nuclear Agony", - "pt": 2, + "id": "Huge Jolly Owl", "sh": true, }, - "value": 40000, + "value": 36, }, { "category": "Pet", "configData": { - "id": "Chimera", + "id": "Titanic Angry Yeti", "pt": 1, - "sh": true, }, - "value": 14402, + "value": 14, }, { "category": "Pet", "configData": { - "id": "Nuclear Dragon", - "pt": 2, + "id": "Huge Holly Fawn", + "pt": 1, "sh": true, }, - "value": 10000, + "value": 87, }, { "category": "Pet", "configData": { - "id": "Quantum Tiger", - "pt": 1, + "id": "Titanic Nutcracker Squirrel", "sh": true, }, - "value": 80000, + "value": 17, }, { "category": "Pet", "configData": { - "id": "Quantum Bunny", - "pt": 1, + "id": "Titanic Snowflake Angelus", + "pt": 2, "sh": true, }, - "value": 40000, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Quantum Tiger", + "id": "Titanic Ice Snake", + "pt": 1, "sh": true, }, - "value": 10000, + "value": 14, }, { "category": "Pet", "configData": { - "id": "Tech Ninja Giraffe", + "id": "Huge Holiday Hedgehog", "pt": 1, "sh": true, }, - "value": 70000, + "value": 20, }, { "category": "Pet", "configData": { - "id": "Huge King Cobra", - "pt": 1, + "id": "Huge Holly Fawn", + "pt": 2, "sh": true, }, - "value": 4000000026, + "value": 17, }, { "category": "Pet", "configData": { - "id": "Rainbow Swirl", + "id": "Huge Pinecone Porcupine", + "pt": 1, + "sh": true, }, - "value": 9540408167, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Divinus", + "id": "Poinsettia Peacock", + "pt": 2, "sh": true, }, - "value": 2438, + "value": 142, }, { "category": "Pet", "configData": { - "id": "Huge Atomic Axolotl", + "id": "Titanic Angry Yeti", "sh": true, }, - "value": 17558399902, + "value": 1, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Huge Mantis Shrimp", - "pt": 2, - "sh": true, + "id": "2025 New Years Gift", }, - "value": 18819999919, + "value": 320847, }, { "category": "Pet", "configData": { - "id": "Huge Flex Fluffy Cat", - "pt": 2, - "sh": true, + "id": "Huge Party Crown Corgi", }, - "value": 25000000000, + "value": 41502, }, { "category": "Pet", "configData": { - "id": "Huge Punksky", - "sh": true, + "id": "Huge Party Crown Corgi", + "pt": 1, }, - "value": 133023616, + "value": 8244, }, { "category": "Pet", "configData": { - "id": "Huge Flex Tiger", - "pt": 2, + "id": "Titanic Party Crown Corgi", }, - "value": 953555576, + "value": 781, }, { "category": "Pet", "configData": { - "id": "Flex Tiger", + "id": "Huge Party Crown Corgi", "pt": 2, - "sh": true, }, - "value": 546907166, + "value": 1607, }, { "category": "Pet", "configData": { - "id": "Divinus", - "pt": 1, + "id": "Huge Party Crown Corgi", "sh": true, }, - "value": 31618, + "value": 350, }, { "category": "Pet", "configData": { - "id": "Huge Avenging Griffin", + "id": "Titanic Party Crown Corgi", "pt": 1, - "sh": true, }, - "value": 1072217750, + "value": 171, }, { "category": "Pet", "configData": { - "id": "Huge Punksky", + "id": "Titanic Party Crown Corgi", "pt": 2, - "sh": true, }, - "value": 769086172, + "value": 24, }, { "category": "Pet", "configData": { - "id": "Huge Bejeweled Lion", + "id": "Huge Party Crown Corgi", "pt": 2, "sh": true, }, - "value": 25000000000, + "value": 13, }, { "category": "Pet", "configData": { - "id": "Huge Blazing Bat", - "pt": 2, + "id": "Huge Party Crown Corgi", + "pt": 1, "sh": true, }, - "value": 17455999911, + "value": 73, }, { "category": "Pet", "configData": { - "id": "Forged Robot", + "id": "Titanic Party Crown Corgi", + "pt": 1, "sh": true, }, - "value": 1000, + "value": 3, }, { "category": "Pet", "configData": { - "id": "UV Cat", - "pt": 2, + "id": "Titanic Party Crown Corgi", "sh": true, }, - "value": 155364, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Huge Evil Imp", + "id": "Huge Jolly Owl", "pt": 1, "sh": true, }, - "value": 1140175957, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Huge Punksky", + "id": "Huge Holiday Hedgehog", "pt": 2, + "sh": true, }, - "value": 81339759, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Huge Flex Fluffy Cat", + "id": "Huge Jolly Owl", + "pt": 2, "sh": true, }, - "value": 695054339, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Huge Punksky", + "id": "Titanic Angry Yeti", + "pt": 2, }, - "value": 36033771, + "value": 1, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Evil Ram", - "pt": 2, - "sh": true, + "id": "Blurred", }, - "value": 574000, + "value": 3560, }, { "category": "Pet", "configData": { - "id": "Dark Lord", - "pt": 1, - "sh": true, + "id": "Huge Blurred Agony", }, - "value": 439148, + "value": 525, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Flex Fluffy Cat", - "pt": 2, - "sh": true, + "id": "Blurred", }, - "value": 192689912, + "value": 750, }, { "category": "Pet", "configData": { - "id": "Huge Evil Imp", - "sh": true, + "id": "Huge Blurred Agony", + "pt": 1, }, - "value": 399152854, + "value": 150, }, { "category": "Pet", "configData": { - "id": "Huge Dark Lord", + "id": "Huge Blurred Agony", "pt": 2, - "sh": true, }, - "value": 12386079892, + "value": 75, }, { "category": "Pet", "configData": { - "id": "Huge Dove", - "sh": true, + "id": "Huge Holiday Dove", }, - "value": 3368730540, + "value": 8477, }, { "category": "Pet", "configData": { - "id": "Whale Shark", + "id": "Huge Holiday Dove", "pt": 1, }, - "value": 2461, + "value": 1251, }, { "category": "Pet", "configData": { - "id": "Hedgehog", + "id": "Huge Holiday Dove", "pt": 2, }, - "value": 72, + "value": 250, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Evolved Pterodactyl", - "sh": true, + "id": "Diamond Pencil", }, - "value": 414080003, + "value": 6039510, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Silver Moose", - "pt": 2, + "id": "Rainbow Pencil", }, - "value": 1198, + "value": 168864, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Tiedye Corgi", - "pt": 2, - "sh": true, + "id": "Doodle Pad", }, - "value": 779999999, + "value": 256145879168, }, { "category": "Pet", "configData": { - "id": "Present Chest Mimic", + "id": "Doodle Bunny", "pt": 2, - "sh": true, }, - "value": 158487195, + "value": 20610036, }, { "category": "Pet", "configData": { - "id": "Huge Knight Beagle", - "pt": 1, + "id": "Doodle Cat", }, - "value": 41803353, + "value": 10360140578, }, { "category": "Pet", "configData": { - "id": "Dominus Mushrooms", + "id": "Doodle Cat", + "pt": 2, "sh": true, }, - "value": 3737, - }, - { - "category": "Pet", - "configData": { - "id": "Huge Elemental Phoenix", - }, - "value": 61654366, + "value": 8420756, }, { "category": "Pet", "configData": { - "id": "Fragmented Pterodactyl", + "id": "Doodle Bunny", }, - "value": 1460, + "value": 114181045, }, { "category": "Pet", "configData": { - "id": "Huge Crystal Dog", + "id": "Doodle Corgi", "pt": 1, - "sh": true, }, - "value": 2228257325, + "value": 190010756, }, { "category": "Pet", "configData": { - "id": "Samurai Bull", - "pt": 2, + "id": "Doodle Corgi", }, - "value": 800, + "value": 1003163352, }, { "category": "Pet", "configData": { - "id": "Huge Luxe Peacock", + "id": "Doodle Cat", "pt": 1, }, - "value": 55791797, + "value": 1737038134, }, { "category": "Pet", "configData": { - "id": "Shadow Dolphin", + "id": "Doodle Cat", "pt": 2, }, - "value": 5582, + "value": 1624125464, }, { "category": "Pet", "configData": { - "id": "Huge Cupid Corgi", + "id": "Doodle Corgi", "pt": 2, - "sh": true, }, - "value": 3075366087, + "value": 181974382, }, { "category": "Pet", "configData": { - "id": "Prison Axolotl", - "pt": 1, + "id": "Doodle Tiger", }, - "value": 3043, + "value": 606976027, }, { "category": "Pet", "configData": { - "id": "Exquisite Elephant", + "id": "Doodle Tiger", "pt": 2, - "sh": true, }, - "value": 484182406, + "value": 60253975, }, { "category": "Pet", "configData": { - "id": "Shadow Griffin", - "pt": 1, + "id": "Doodle Rhino", + "pt": 2, }, - "value": 131095357, + "value": 4252524, }, { "category": "Pet", "configData": { - "id": "Huge Easter Dominus", + "id": "Doodle Elephant", "pt": 1, - "sh": true, }, - "value": 1699441064, + "value": 30582134, }, { "category": "Pet", "configData": { - "id": "Tiedye Dog", - "sh": true, + "id": "Doodle Tiger", + "pt": 1, }, - "value": 14988285, + "value": 84726203, }, { "category": "Pet", "configData": { - "id": "Huge Hoverboard Cat", - "pt": 2, + "id": "Doodle Rhino", }, - "value": 1371369593, + "value": 30404931, }, { "category": "Pet", "configData": { - "id": "Huge Elf Cat", - "pt": 1, - "sh": true, + "id": "Doodle Elephant", + "pt": 2, }, - "value": 4097867451, + "value": 23997037, }, { "category": "Pet", "configData": { - "id": "Nuclear Wolf", + "id": "Doodle Elephant", }, - "value": 3088, + "value": 201508733, }, { "category": "Pet", "configData": { - "id": "Glitched Dragon", - "pt": 2, + "id": "Doodle Bunny", + "pt": 1, }, - "value": 564, + "value": 21603316, }, { "category": "Pet", "configData": { - "id": "Huge Fluffy Cat", - "pt": 2, + "id": "Doodle Cat", + "pt": 1, + "sh": true, }, - "value": 90413279, + "value": 8161758, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Dark Lord", - "pt": 2, - "sh": true, + "id": "Exclusive Egg 42", }, - "value": 1203069, + "value": 496478, }, { - "category": "Pet", + "category": "Enchant", "configData": { - "id": "Huge Gleebo The Alien", - "pt": 2, + "id": "Breakable Mayhem", + "tn": 1, }, - "value": 1964428198, + "value": 18866, }, { "category": "Pet", "configData": { - "id": "Huge Temporal Owl", + "id": "Doodle Rhino", "pt": 1, - "sh": true, }, - "value": 163391842, + "value": 4958595, }, { "category": "Pet", "configData": { - "id": "Huge Amethyst Dragon", - "pt": 2, + "id": "Hypnotic Cat", }, - "value": 1790128912, + "value": 86750, }, { "category": "Pet", "configData": { - "id": "Huge Peacock", - "pt": 1, - "sh": true, + "id": "Hypnotic Griffin", }, - "value": 535342452, + "value": 46232, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Tiedye Corgi", - "sh": true, + "id": "Doodle Token", }, - "value": 919381814, + "value": 1251728893, }, { "category": "Pet", "configData": { - "id": "Imp", + "id": "Huge Doodle Dragon", "pt": 2, - "sh": true, }, - "value": 1930660, + "value": 920, }, { "category": "Pet", "configData": { - "id": "Huge Pineapple Cat", + "id": "Doodle Elephant", + "pt": 1, + "sh": true, }, - "value": 65409757, + "value": 114977, }, { "category": "Pet", "configData": { - "id": "Hell Rock", - "sh": true, + "id": "Doodle Crocodile", + "pt": 1, }, - "value": 283, + "value": 18445069722, }, { "category": "Pet", "configData": { - "id": "Tiger", - "sh": true, + "id": "Doodle Griffin", }, - "value": 34, + "value": 217492253, }, { "category": "Pet", "configData": { - "id": "Abyssal Parrot", + "id": "Doodle Fairy", + "pt": 1, }, - "value": 1583, + "value": 57243202, }, { "category": "Pet", "configData": { - "id": "Huge Pumpkin Scarecrow", + "id": "Doodle Griffin", + "pt": 1, }, - "value": 78283053, + "value": 26032386, }, { "category": "Pet", "configData": { - "id": "Huge Fluffy Cat", - "sh": true, + "id": "Doodle Fairy", }, - "value": 160926702, + "value": 424601629, }, { "category": "Pet", "configData": { - "id": "Huge Giraffe", - "sh": true, + "id": "Doodle Dragon", }, - "value": 203148650, + "value": 63086083, }, { "category": "Pet", "configData": { - "id": "Orange Axolotl", + "id": "Doodle Fairy", + "pt": 2, }, - "value": 4946882, + "value": 47249437, }, { "category": "Pet", "configData": { - "id": "Calico Cat", + "id": "Doodle Griffin", "pt": 2, - "sh": true, }, - "value": 300000, + "value": 18596685, }, { "category": "Pet", "configData": { - "id": "Heavenly Dove", - "pt": 2, + "id": "Doodle Griffin", + "pt": 1, + "sh": true, }, - "value": 522, + "value": 96494, }, { "category": "Pet", "configData": { - "id": "Huge Sombrero Chihuahua", + "id": "Doodle Dragon", "pt": 2, - "sh": true, }, - "value": 999000000, + "value": 5515530, }, { "category": "Pet", "configData": { - "id": "Glitched Dominus", - "pt": 2, + "id": "Doodle Elephant", + "sh": true, }, - "value": 3891, + "value": 606204, }, { "category": "Pet", "configData": { - "id": "Relic Agony", + "id": "Doodle Fairy", "pt": 2, "sh": true, }, - "value": 185956, + "value": 188945, }, { "category": "Pet", "configData": { - "id": "Huge Holiday Pegasus", + "id": "Doodle Fairy", + "pt": 1, "sh": true, }, - "value": 476990586, + "value": 272300, }, { "category": "Pet", "configData": { - "id": "Reaper Cat", - "sh": true, + "id": "Doodle Dragon", + "pt": 1, }, - "value": 7490, + "value": 8054639, }, { "category": "Pet", "configData": { - "id": "Huge Zebra", + "id": "Doodle Tiger", + "sh": true, }, - "value": 38520647, + "value": 2184020, }, { "category": "Pet", "configData": { - "id": "Huge Bat", - "pt": 2, + "id": "Doodle Cat", "sh": true, }, - "value": 2415223777, + "value": 45306664, }, { "category": "Pet", "configData": { - "id": "Imp", + "id": "Doodle Corgi", "pt": 1, + "sh": true, }, - "value": 148, + "value": 895155, }, { "category": "Pet", "configData": { - "id": "Huge Crystal Dog", - "pt": 1, + "id": "Hypnotic Dragon", }, - "value": 83002684, + "value": 18972, }, { "category": "Pet", "configData": { - "id": "Rock Cat", + "id": "Doodle Tiger", + "pt": 1, "sh": true, }, - "value": 3306, + "value": 286325, }, { "category": "Pet", "configData": { - "id": "Little Melty", + "id": "Doodle Tiger", "pt": 2, + "sh": true, }, - "value": 816, + "value": 228285, }, { "category": "Pet", "configData": { - "id": "Huge Leprechaun Cat", + "id": "Doodle Fairy", + "sh": true, }, - "value": 49057003, + "value": 2450326, }, { "category": "Pet", "configData": { - "id": "Floatie Flamingo", + "id": "Doodle Agony", "pt": 2, - "sh": true, }, - "value": 160, + "value": 32888330, }, { "category": "Pet", "configData": { - "id": "Huge Techno Cat", - "sh": true, + "id": "Doodle Unicorn", + "pt": 2, }, - "value": 351046913, + "value": 50075573, }, { "category": "Pet", "configData": { - "id": "Masked Fox", + "id": "Doodle Hydra", "pt": 2, - "sh": true, }, - "value": 1803311, + "value": 7878111, }, { "category": "Pet", "configData": { - "id": "Relic Bat", - "sh": true, + "id": "Doodle Agony", + "pt": 1, }, - "value": 2455, + "value": 27694187, }, { "category": "Pet", "configData": { - "id": "Witch Cat", - "pt": 2, - "sh": true, + "id": "Doodle Unicorn", + "pt": 1, }, - "value": 3152, + "value": 71212283, }, { "category": "Pet", "configData": { - "id": "Cool Dragon", - "pt": 1, + "id": "Doodle Griffin", + "pt": 2, "sh": true, }, - "value": 137389206, + "value": 94806, }, { "category": "Pet", "configData": { - "id": "Lunar Moth", - "pt": 2, - "sh": true, + "id": "Huge Doodle Dragon", + "pt": 1, }, - "value": 99000, + "value": 3242, }, { "category": "Pet", "configData": { - "id": "Bearserker", + "id": "Doodle Griffin", + "sh": true, }, - "value": 114, + "value": 624292, }, { "category": "Pet", "configData": { - "id": "Rock Dog", + "id": "Doodle Elephant", "pt": 2, "sh": true, }, - "value": 16336, + "value": 195882, }, { "category": "Pet", "configData": { - "id": "Red Panda", + "id": "Doodle Hydra", + "pt": 1, }, - "value": 293, + "value": 6702384, }, { "category": "Pet", "configData": { - "id": "Tabby Cat", - "sh": true, + "id": "Hypnotic Cat", + "pt": 2, }, - "value": 19352, + "value": 3399, }, { "category": "Pet", "configData": { - "id": "Huge Electric Cat", + "id": "Titanic Hypnotic Monkey", }, - "value": 85073978, + "value": 430, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Dog", - "pt": 1, + "id": "Huge Hypnotic Cat", }, - "value": 923871, + "value": 6699, }, { "category": "Pet", "configData": { - "id": "Rock Dog", + "id": "Doodle Corgi", "sh": true, }, - "value": 320, + "value": 4445447, }, { "category": "Pet", "configData": { - "id": "Shark", - "sh": true, + "id": "Huge Doodle Dragon", }, - "value": 156868, + "value": 6497, }, { "category": "Pet", "configData": { - "id": "Broomstick Corgi", + "id": "Doodle Corgi", "pt": 2, + "sh": true, }, - "value": 3088, + "value": 936153, }, { "category": "Pet", "configData": { - "id": "Firefly", - "pt": 2, + "id": "Doodle Dragon", + "pt": 1, + "sh": true, }, - "value": 1163, + "value": 35694, }, { "category": "Pet", "configData": { - "id": "Robot Bee", + "id": "Doodle Dragon", "pt": 2, + "sh": true, }, - "value": 198, + "value": 26673, }, { "category": "Pet", "configData": { - "id": "Enchanted Fox", + "id": "Doodle Rhino", "pt": 1, + "sh": true, }, - "value": 1165, + "value": 24216, }, { "category": "Pet", "configData": { - "id": "Owl", - "pt": 2, + "id": "Doodle Dragon", "sh": true, }, - "value": 1896, + "value": 128443, }, { "category": "Pet", "configData": { - "id": "Black Hole Immortuus", + "id": "Doodle Rhino", "sh": true, }, - "value": 12108858, + "value": 70998, }, { "category": "Pet", "configData": { - "id": "Rock Cat", + "id": "Doodle Axolotl", "pt": 2, }, - "value": 541, + "value": 839941, }, { "category": "Pet", "configData": { - "id": "Enchanted Raccoon", - "pt": 2, + "id": "Doodle Shark", + "pt": 1, }, - "value": 530, + "value": 15108799, }, { "category": "Pet", "configData": { - "id": "Potion Poodle", + "id": "Doodle Shark", "pt": 2, - "sh": true, }, - "value": 240, + "value": 10863295, }, { "category": "Pet", "configData": { - "id": "Huge Shadow Griffin", + "id": "Doodle Dolphin", "pt": 1, }, - "value": 359135537, + "value": 52980504, }, { "category": "Pet", "configData": { - "id": "Evil Deer", + "id": "Doodle Dolphin", + "pt": 2, }, - "value": 520, + "value": 33577733, }, { "category": "Pet", "configData": { - "id": "Demon Cyclops", - "pt": 2, - "sh": true, + "id": "Doodle Agony", }, - "value": 303262, + "value": 246661358, }, { "category": "Pet", "configData": { - "id": "Love Corgi", - "pt": 2, - "sh": true, + "id": "Doodle Hydra", }, - "value": 4209, + "value": 19552735, }, { "category": "Pet", "configData": { - "id": "Relic Agony", - "pt": 2, + "id": "Doodle Unicorn", }, - "value": 582, + "value": 743166228, }, { "category": "Pet", "configData": { - "id": "Owl", + "id": "Doodle Unicorn", + "sh": true, }, - "value": 303, + "value": 2474724, }, { "category": "Pet", "configData": { - "id": "Enchanted Deer", - "pt": 2, + "id": "Doodle Narwhal", + "pt": 1, }, - "value": 465, + "value": 167629030019, }, { "category": "Pet", "configData": { - "id": "Axolotl", + "id": "Doodle Unicorn", + "pt": 1, "sh": true, }, - "value": 581995, + "value": 245267, }, { "category": "Pet", "configData": { - "id": "Huge Rave Meebo in a Spaceship", + "id": "Doodle Agony", + "pt": 2, + "sh": true, }, - "value": 50449096, + "value": 95367, }, { "category": "Pet", "configData": { - "id": "Wizard Westie", - "pt": 1, + "id": "Hypnotic Dragon", + "sh": true, }, - "value": 151, + "value": 708, }, { "category": "Pet", "configData": { - "id": "Huge Lunar Moth", - "pt": 1, + "id": "Hypnotic Griffin", + "pt": 2, }, - "value": 48000360, + "value": 2137, }, { "category": "Pet", "configData": { - "id": "Huge Cosmic Agony", + "id": "Hypnotic Cat", + "sh": true, }, - "value": 244570919, + "value": 1847, }, { "category": "Pet", "configData": { - "id": "Rock Cat", - "pt": 1, + "id": "Hypnotic Dragon", + "pt": 2, }, - "value": 2019, + "value": 1087, }, { "category": "Pet", "configData": { - "id": "Angel Pegasus", - "pt": 1, + "id": "Hypnotic Griffin", "sh": true, }, - "value": 310, + "value": 1682, }, { "category": "Pet", "configData": { - "id": "Orange Parrot", + "id": "Doodle Unicorn", "pt": 2, + "sh": true, }, - "value": 205, + "value": 194563, }, { "category": "Pet", "configData": { - "id": "Huge Rich Cat", - "pt": 1, + "id": "Huge Hypnotic Dragon", }, - "value": 65774686, + "value": 1687, }, { "category": "Pet", "configData": { - "id": "Potion Poodle", + "id": "Doodle Agony", + "sh": true, }, - "value": 265, + "value": 766979, }, { "category": "Pet", "configData": { - "id": "Exquisite Parrot", + "id": "Doodle Crocodile", "pt": 2, }, - "value": 35770988, + "value": 21846978834, }, { "category": "Pet", "configData": { - "id": "Cold Ladybug", + "id": "Doodle Rhino", "pt": 2, + "sh": true, }, - "value": 497, + "value": 20449, }, { "category": "Pet", "configData": { - "id": "Luchador Axolotl", - "pt": 2, + "id": "Doodle Axolotl", + "pt": 1, }, - "value": 9611237, + "value": 1970755, }, { "category": "Pet", "configData": { - "id": "Huge Rainbow Unicorn", + "id": "Doodle Narwhal", "pt": 2, }, - "value": 693160259, + "value": 166916818905, }, { "category": "Pet", "configData": { - "id": "Huge Hoverboard Cat", + "id": "Doodle Agony", "pt": 1, "sh": true, }, - "value": 8736891338, + "value": 105063, }, { "category": "Pet", "configData": { - "id": "Witch Cat", + "id": "Doodle Bunny", "pt": 2, + "sh": true, }, - "value": 566, + "value": 88366, }, { "category": "Pet", "configData": { - "id": "Electric Bear", - "sh": true, + "id": "Doodle Crocodile", }, - "value": 418, + "value": 125297479445, }, { "category": "Pet", "configData": { - "id": "Atomic Axolotl", + "id": "Doodle Narwhal", "pt": 1, "sh": true, }, - "value": 22922, + "value": 683978152, }, { "category": "Pet", "configData": { - "id": "Enchanted Dragon", - "pt": 2, + "id": "Doodle Narwhal", }, - "value": 610, + "value": 1440945049447, }, { "category": "Pet", "configData": { - "id": "Frost Fox", + "id": "Doodle Bunny", + "sh": true, }, - "value": 276, + "value": 451768, }, { "category": "Pet", "configData": { - "id": "Festive Cardinal", - "pt": 1, + "id": "Huge Hypnotic Dragon", "sh": true, }, - "value": 25000000, + "value": 87, }, { "category": "Pet", "configData": { - "id": "Huge Shadow Dominus", - "pt": 2, + "id": "Doodle Bunny", + "pt": 1, + "sh": true, }, - "value": 93827728, + "value": 92292, }, { "category": "Pet", "configData": { - "id": "Tabby Cat", - "pt": 2, + "id": "Huge Doodle Dragon", + "sh": true, }, - "value": 848, + "value": 198, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Koi Fish", + "id": "Golden Pencil", }, - "value": 41027476, + "value": 188365121, }, { "category": "Pet", "configData": { - "id": "Hacked Cat", - "pt": 2, - "sh": true, + "id": "Doodle Dolphin", }, - "value": 47200, + "value": 155152493, }, { "category": "Pet", "configData": { - "id": "Goblin", + "id": "Doodle Axolotl", }, - "value": 20832, + "value": 3303790, }, { "category": "Pet", "configData": { - "id": "Golden Retriever", + "id": "Hypnotic Griffin", + "pt": 2, + "sh": true, }, - "value": 187, + "value": 101, }, { "category": "Pet", "configData": { - "id": "Jelly Alien", + "id": "Doodle Hydra", + "pt": 2, "sh": true, }, - "value": 8703, + "value": 9283, }, { "category": "Pet", "configData": { - "id": "Orange Parrot", - "pt": 1, + "id": "Doodle Hydra", + "sh": true, }, - "value": 3098, + "value": 49824, }, { "category": "Pet", "configData": { - "id": "Gazelle", - "pt": 1, + "id": "Doodle Narwhal", + "sh": true, }, - "value": 1506, + "value": 5058629000, }, { "category": "Pet", "configData": { - "id": "Golden Retriever", - "pt": 2, + "id": "Huge Hypnotic Cat", + "sh": true, }, - "value": 129, + "value": 281, }, { "category": "Pet", "configData": { - "id": "Desert Ram", - "pt": 1, + "id": "Huge Hypnotic Dragon", + "pt": 2, }, - "value": 5559, + "value": 52, }, { "category": "Pet", "configData": { - "id": "Red Fluffy", - "pt": 1, + "id": "Doodle Crocodile", + "sh": true, }, - "value": 14262, + "value": 464838984, }, { "category": "Pet", "configData": { - "id": "Potion Poodle", + "id": "Doodle Hydra", "pt": 1, + "sh": true, }, - "value": 197, + "value": 15662, }, { "category": "Pet", "configData": { - "id": "Cold Firefly", - "pt": 2, + "id": "Doodle Shark", }, - "value": 1708, + "value": 40182531, }, { "category": "Pet", "configData": { - "id": "Relic Bat", + "id": "Doodle Crocodile", + "pt": 2, + "sh": true, }, - "value": 290, + "value": 123607165, }, { "category": "Pet", "configData": { - "id": "Steampunk Fish", + "id": "Doodle Narwhal", + "pt": 2, + "sh": true, }, - "value": 1288, + "value": 785984652, }, { "category": "Pet", "configData": { - "id": "Huge Raptor", + "id": "Doodle Crocodile", "pt": 1, "sh": true, }, - "value": 24690000000, + "value": 78482750, }, { "category": "Pet", "configData": { - "id": "Cold Firefly", + "id": "Huge Hypnotic Cat", + "pt": 2, }, - "value": 878, + "value": 207, }, { "category": "Pet", "configData": { - "id": "Pineapple Monkey", + "id": "Hypnotic Cat", "pt": 2, "sh": true, }, - "value": 40644, + "value": 118, }, { "category": "Pet", "configData": { - "id": "Potion Poodle", + "id": "Doodle Dolphin", + "pt": 2, "sh": true, }, - "value": 1129, + "value": 142195, }, { "category": "Pet", "configData": { - "id": "Huge Diamond Cat", + "id": "Huge Hypnotic Cat", + "pt": 2, "sh": true, }, - "value": 248196876, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Huge Tiki Dominus", + "id": "Titanic Hypnotic Monkey", "pt": 2, }, - "value": 3090973023, + "value": 16, }, { "category": "Pet", "configData": { - "id": "Reindeer Cat", + "id": "Hypnotic Dragon", + "pt": 2, "sh": true, }, - "value": 278679, + "value": 30, }, { "category": "Pet", "configData": { - "id": "Colorful Wisp", + "id": "Doodle Shark", + "pt": 2, "sh": true, }, - "value": 1657, + "value": 47323, }, { "category": "Pet", "configData": { - "id": "Huge Cosmic Axolotl", - "pt": 2, - "sh": true, + "cv": 5, + "id": "Huge Chroma Doodle Axolotl", }, - "value": 3545723938, + "value": 1512, }, { "category": "Pet", "configData": { - "id": "Crystal Deer", - "pt": 1, - "sh": true, + "id": "Huge Chroma Doodle Axolotl", }, - "value": 66919381, + "value": 13344, }, { "category": "Pet", "configData": { - "id": "Mrs. Claws", - "sh": true, + "id": "Huge Parrot", }, - "value": 120149004, + "value": 9523, }, { "category": "Pet", "configData": { - "id": "Huge Jolly Narwhal", + "cv": 2, + "id": "Huge Chroma Doodle Axolotl", }, - "value": 43635439, + "value": 502, }, { "category": "Pet", "configData": { - "id": "Corrupt Octopus", - "pt": 2, + "id": "Huge Doodle Dragon", + "pt": 1, "sh": true, }, - "value": 990, + "value": 42, }, { "category": "Pet", "configData": { - "id": "Huge Guest Noob", - "pt": 2, + "id": "Doodle Dolphin", + "pt": 1, "sh": true, }, - "value": 1826082099, + "value": 95434, }, { "category": "Pet", "configData": { - "id": "Huge Reindeer Dog", + "id": "Doodle Axolotl", + "pt": 2, "sh": true, }, - "value": 2354607297, + "value": 8631, }, { "category": "Pet", "configData": { - "id": "Ninja Turtle", - "pt": 2, - "sh": true, + "id": "Gargantuan Hypnotic Kitsune", }, - "value": 11611, + "value": 45, }, { "category": "Pet", "configData": { - "id": "Mosaic Elephant", - "pt": 2, + "id": "Doodle Dolphin", "sh": true, }, - "value": 291929143, + "value": 405254, }, { "category": "Pet", "configData": { - "id": "Tiedye Cat", - "pt": 1, - "sh": true, + "cv": 4, + "id": "Huge Chroma Doodle Axolotl", }, - "value": 709386583, + "value": 53, }, { "category": "Pet", "configData": { - "id": "Huge Gargoyle Dragon", - "pt": 2, + "cv": 1, + "id": "Huge Chroma Doodle Axolotl", }, - "value": 897338481, + "value": 137, }, { "category": "Pet", "configData": { - "id": "Huge Cyborg Cat", + "id": "Doodle Shark", "pt": 1, "sh": true, }, - "value": 11164000112, + "value": 31849, }, { "category": "Pet", "configData": { - "id": "Peppermint Angelus", + "id": "Titanic Hypnotic Monkey", "sh": true, }, - "value": 16935559, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Alien Axolotl", - "pt": 1, - "sh": true, + "id": "Huge Chroma Doodle Axolotl", + "pt": 2, }, - "value": 646, + "value": 1409, }, { "category": "Pet", "configData": { - "id": "Abstract Agony", - "pt": 1, + "id": "Huge Chroma Doodle Axolotl", + "sh": true, }, - "value": 196, + "value": 269, }, { "category": "Pet", "configData": { - "id": "Gingerbread Corgi", - "pt": 1, + "cv": 1, + "id": "Huge Chroma Doodle Axolotl", + "pt": 2, }, - "value": 1036956, + "value": 19, }, { "category": "Pet", "configData": { - "id": "Carnival Elephant", + "id": "Huge Parrot", + "pt": 1, }, - "value": 345, + "value": 2287, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Huge Neon Griffin", - "sh": true, + "id": "Doodle Gift", }, - "value": 692601332, + "value": 333200, }, { "category": "Pet", "configData": { - "id": "Titanic Tiedye Cat", - "sh": true, + "cv": 3, + "id": "Huge Chroma Doodle Axolotl", }, - "value": 700000000, + "value": 8879, }, { "category": "Pet", "configData": { - "id": "Rock Dog", + "id": "Huge Parrot", "pt": 2, }, - "value": 245, + "value": 427, }, { "category": "Pet", "configData": { - "id": "Cyborg Ducky", + "cv": 6, + "id": "Huge Chroma Doodle Axolotl", "pt": 2, }, - "value": 74, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Huge Stealth Bobcat", + "id": "Huge Chroma Doodle Axolotl", "pt": 2, + "sh": true, }, - "value": 622998348, + "value": 24, }, { "category": "Pet", "configData": { - "id": "Willow Wisp", + "cv": 5, + "id": "Huge Chroma Doodle Axolotl", + "pt": 2, }, - "value": 903, + "value": 66, }, { "category": "Pet", "configData": { - "id": "Electric Bunny", + "id": "Huge Jaguar", }, - "value": 1677, + "value": 5290, }, { "category": "Pet", "configData": { - "id": "Huge Prickly Panda", - "pt": 1, + "cv": 2, + "id": "Huge Chroma Doodle Axolotl", + "pt": 2, }, - "value": 794133051, + "value": 56, }, { "category": "Pet", "configData": { - "id": "Corrupt Skeleton", - "pt": 2, + "id": "Doodle Axolotl", + "pt": 1, + "sh": true, }, - "value": 558, + "value": 3165, }, { "category": "Pet", "configData": { - "id": "Huge Nightfall Pegasus", - "sh": true, + "id": "Titanic Parrot", }, - "value": 577232338, + "value": 166, }, { "category": "Pet", "configData": { - "id": "Huge Clover Dragon", - "pt": 1, + "id": "Doodle Shark", + "sh": true, }, - "value": 287990066, + "value": 90240, }, { "category": "Pet", "configData": { - "id": "Hydra Axolotl", - "pt": 2, + "cv": 6, + "id": "Huge Chroma Doodle Axolotl", }, - "value": 12974, + "value": 86, }, { "category": "Pet", "configData": { "cv": 3, - "id": "Huge Chroma Tiger", + "id": "Huge Chroma Doodle Axolotl", "sh": true, }, - "value": 493128500, + "value": 186, }, { "category": "Pet", "configData": { - "id": "Ninja Axolotl", + "cv": 3, + "id": "Huge Chroma Doodle Axolotl", "pt": 2, }, - "value": 1792, + "value": 394, }, { "category": "Pet", "configData": { - "id": "Huge Elf Cat", - "pt": 2, + "id": "Huge Doodle Agony", + "pt": 1, }, - "value": 375209221, + "value": 133, }, { "category": "Pet", "configData": { - "id": "Huge Chroma Lucki", - "pt": 2, + "cv": 5, + "id": "Huge Chroma Doodle Axolotl", + "sh": true, }, - "value": 1105034798, + "value": 35, }, { "category": "Pet", "configData": { - "id": "Bleebo The Alien", - "pt": 2, - "sh": true, + "id": "Huge Doodle Agony", }, - "value": 1077, + "value": 749, }, { "category": "Pet", "configData": { - "id": "M-B PROTOTYPE", - "sh": true, + "id": "Titanic Parrot", + "pt": 1, }, - "value": 17887, + "value": 35, }, { "category": "Pet", "configData": { - "id": "Huge Strawberry Corgi", + "id": "Huge Doodle Dragon", + "pt": 2, "sh": true, }, - "value": 378843357, + "value": 8, }, { "category": "Pet", "configData": { - "id": "Triceratops", - "pt": 1, + "cv": 2, + "id": "Huge Chroma Doodle Axolotl", "sh": true, }, - "value": 5449, - }, - { - "category": "Pet", - "configData": { - "id": "Gingerbread Cat", - "pt": 1, - }, - "value": 291311, + "value": 11, }, { "category": "Pet", "configData": { - "id": "Huge Grinch Cat", + "id": "Gargantuan Hypnotic Kitsune", "sh": true, }, - "value": 549331773, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Spitting Dino", - "pt": 1, + "id": "Huge Doodle Agony", "sh": true, }, - "value": 21500, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Pristine Snake", + "id": "Old Wizard Corgi", "pt": 2, + "sh": true, }, - "value": 634, - }, - { - "category": "Pet", - "configData": { - "id": "Huge Cyborg Dragon", - }, - "value": 78965246, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Huge Pixel Dragon", + "id": "Huge Parrot", "sh": true, }, - "value": 470597516, + "value": 64, }, { "category": "Pet", "configData": { - "id": "Huge Mermaid Cat", - "pt": 2, + "id": "Titanic Giraffe", }, - "value": 77844504, + "value": 314, }, { "category": "Pet", "configData": { - "id": "Huge Strawberry Corgi", + "id": "Titanic Samurai Dragon", }, - "value": 67749436, + "value": 523, }, { "category": "Pet", "configData": { - "id": "Huge Tech Chest Mimic", + "id": "Titanic Giraffe", "pt": 2, }, - "value": 786693822, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Sapphire Carbuncle", + "id": "Huge Doodle Agony", "pt": 2, - "sh": true, - }, - "value": 1, - }, - { - "category": "Pet", - "configData": { - "id": "Huge Jelly Axolotl", }, - "value": 181821005, + "value": 30, }, { "category": "Pet", "configData": { - "id": "Dominus Alienus", + "id": "Huge Doodle Agony", + "pt": 1, + "sh": true, }, - "value": 9577, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Pajamas Cat", + "id": "Huge Parrot", "pt": 1, + "sh": true, }, - "value": 2065, + "value": 21, }, { "category": "Pet", "configData": { - "id": "Squirrel", - "pt": 2, + "id": "Titanic Giraffe", "sh": true, }, - "value": 149984, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Hooded Dragon", + "id": "Doodle Axolotl", + "sh": true, }, - "value": 398, + "value": 3046, }, { "category": "Pet", "configData": { - "id": "Huge Turtle", - "pt": 1, + "id": "Titanic Samurai Dragon", + "pt": 2, }, - "value": 621233157, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Tiedye Dragon", + "id": "Titanic Samurai Dragon", + "sh": true, }, - "value": 3925470, + "value": 11, }, { "category": "Pet", "configData": { - "id": "Titanic Balloon Monkey", + "id": "Huge Panther", + "pt": 1, }, - "value": 14491444519, + "value": 701, }, { "category": "Pet", "configData": { - "id": "Turkey", + "id": "Huge Jaguar", + "pt": 1, }, - "value": 134, + "value": 587, }, { "category": "Pet", "configData": { - "id": "Goldfish", + "id": "Huge Jaguar", "pt": 2, }, - "value": 1014, + "value": 122, }, { "category": "Pet", "configData": { - "id": "Tiedye Corgi", - "pt": 1, + "cv": 4, + "id": "Huge Chroma Doodle Axolotl", "sh": true, }, - "value": 152040236, + "value": 3, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Silver Bison", - "pt": 2, - "sh": true, + "id": "Pet Token Boost", }, - "value": 27848, + "value": 11346841, }, { "category": "Pet", "configData": { - "id": "Pastel Sock Corgi", - "pt": 2, - "sh": true, + "id": "Player Panda", }, - "value": 115200, + "value": 154492276, }, { "category": "Pet", "configData": { - "id": "Huge Turtle", + "id": "Doll Cat", "pt": 1, - "sh": true, }, - "value": 4095798043, + "value": 16032198, }, { "category": "Pet", "configData": { - "id": "Frost Rabbit", - "sh": true, + "id": "Doll Cat", }, - "value": 1201, + "value": 153211392, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Good vs Evil Cat", + "id": "Ultra Pet Token Boost", }, - "value": 71862135, + "value": 1387970, }, { "category": "Pet", "configData": { - "id": "Bear", + "id": "Doll Cat", "pt": 2, }, - "value": 48, - }, - { - "category": "Pet", - "configData": { - "id": "Stealth Dragon", - "pt": 1, - "sh": true, - }, - "value": 71045128, + "value": 10229260, }, { "category": "Pet", "configData": { - "id": "Huge Soul Cat", + "id": "Guard Raccoon", }, - "value": 85399983, + "value": 203011836, }, { "category": "Pet", "configData": { - "id": "Huge Black Hole Axolotl", + "id": "Player Panda", "pt": 2, }, - "value": 607439357, + "value": 13722543, }, { "category": "Pet", "configData": { - "id": "Black Hole Angelus", + "id": "Player Panda", "pt": 1, - "sh": true, }, - "value": 2392948, + "value": 15985220, }, { "category": "Pet", "configData": { - "id": "Huge Crocodile", - "sh": true, + "id": "Huge Guard Dragon", + "pt": 1, }, - "value": 239693764, + "value": 3358, }, { "category": "Pet", "configData": { - "id": "Relic Agony", + "id": "Guard Raccoon", "pt": 1, - "sh": true, }, - "value": 30000, + "value": 15328771, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Scary Cat", + "id": "Pet Games", }, - "value": 47, + "value": 296530, }, { "category": "Pet", "configData": { - "id": "Cyborg Dominus", + "id": "Doll Cat", "sh": true, }, - "value": 229032, + "value": 485624, }, { "category": "Pet", "configData": { - "id": "Tiedye Dog", - "pt": 1, - "sh": true, + "id": "Guard Raccoon", + "pt": 2, }, - "value": 169500113, + "value": 14644459, }, { "category": "Pet", "configData": { - "id": "Titanic Fire Dragon", + "id": "Player Panda", + "sh": true, }, - "value": 16108123287, + "value": 449478, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Corgi", - "sh": true, + "id": "Pet Games", }, - "value": 3091, + "value": 295080, }, { "category": "Pet", "configData": { - "id": "Huge Abyssal Axolotl", + "id": "Guard Wolf", "pt": 2, }, - "value": 882103208, + "value": 9462499411, }, { "category": "Pet", "configData": { - "id": "Pajamas Dog", - "pt": 1, - "sh": true, + "id": "Player Piggy", }, - "value": 288, + "value": 277497822, }, { "category": "Pet", "configData": { - "id": "Peppermint Angelus", - "pt": 2, + "id": "Guard Wolf", }, - "value": 29809776, + "value": 72962126136, }, { "category": "Pet", "configData": { - "id": "Lunar Deer", + "id": "Player Piggy", "pt": 2, }, - "value": 46932, + "value": 19271748, }, { "category": "Pet", "configData": { - "id": "Rave Unicorn", - "sh": true, + "id": "Player Piggy", + "pt": 1, }, - "value": 2041, + "value": 19723531, }, { "category": "Pet", "configData": { - "id": "Pajamas Cat", + "id": "Doll Cat", "pt": 2, + "sh": true, }, - "value": 321792, + "value": 44948, }, { "category": "Pet", "configData": { - "id": "Huge Holiday Pegasus", + "id": "Guard Raccoon", + "sh": true, }, - "value": 76796815, + "value": 650312, }, { "category": "Pet", "configData": { - "id": "Train Conductor Cat", + "id": "Guard Wolf", "pt": 1, - "sh": true, }, - "value": 265, + "value": 7236404510, }, { "category": "Pet", "configData": { - "id": "Nuclear Mining Cat", + "id": "Doll Cat", + "pt": 1, "sh": true, }, - "value": 1129, + "value": 83067, }, { "category": "Pet", "configData": { - "id": "Silver Moose", + "id": "Player Panda", + "pt": 1, "sh": true, }, - "value": 479, + "value": 78560, }, { "category": "Pet", "configData": { - "id": "Huge Neon Twilight Wolf", + "id": "Player Panda", "pt": 2, + "sh": true, }, - "value": 2439494269, + "value": 59249, }, { "category": "Pet", "configData": { - "id": "Huge Prickly Panda", + "id": "Player Piggy", + "sh": true, }, - "value": 671667762, + "value": 868218, }, { "category": "Pet", "configData": { - "id": "Green Cobra", - "pt": 2, + "id": "Guard Raccoon", + "pt": 1, "sh": true, }, - "value": 15000, + "value": 77655, }, { "category": "Pet", "configData": { - "id": "Huge Techno Cat", + "id": "Guard Raccoon", + "pt": 2, + "sh": true, }, - "value": 73134794, + "value": 60200, }, { "category": "Pet", "configData": { - "id": "Anime Unicorn", - "sh": true, + "id": "Huge Guard Dragon", }, - "value": 11601993, + "value": 6554, }, { "category": "Pet", "configData": { - "id": "Luxe Axolotl", - "pt": 2, + "id": "Player Piggy", + "pt": 1, "sh": true, }, - "value": 143656, + "value": 102137, }, { "category": "Pet", "configData": { - "id": "Huge Crocodile", + "id": "Player Corgi", "pt": 2, }, - "value": 94466591, + "value": 5880826383, }, { "category": "Pet", "configData": { - "id": "Shadow Dolphin", + "id": "Player Corgi", "pt": 1, }, - "value": 8514, + "value": 3321315316, }, { "category": "Pet", "configData": { - "id": "Ice Corgi", + "id": "Guard Wolf", "sh": true, }, - "value": 954, + "value": 265635280, }, { "category": "Pet", "configData": { - "id": "Ice Corgi", - "pt": 1, + "id": "Player Corgi", }, - "value": 209, + "value": 26812227399, }, { "category": "Pet", "configData": { - "id": "Holiday Pegasus", + "id": "Player Piggy", "pt": 2, "sh": true, }, - "value": 80380720, + "value": 75181, }, { "category": "Pet", "configData": { - "id": "Snowflake Dominus", + "id": "Huge Guard Dragon", "pt": 2, }, - "value": 1345, + "value": 903, }, { "category": "Pet", "configData": { - "id": "Otter", + "id": "Guard Wolf", + "pt": 2, + "sh": true, }, - "value": 4128830, + "value": 54800987, }, { "category": "Pet", "configData": { - "id": "Snowflake Dominus", + "id": "Guard Wolf", "pt": 1, + "sh": true, }, - "value": 942, + "value": 35184228, }, { "category": "Pet", "configData": { - "id": "Knife Cat", - "pt": 2, + "id": "Guard Dragon", + "pt": 1, }, - "value": 12617429, + "value": 62846905, }, { "category": "Pet", "configData": { - "id": "Nightfall Wolf", - "pt": 2, + "id": "Guard Dragon", }, - "value": 31166351, + "value": 492624852, }, { "category": "Pet", "configData": { - "id": "Chocolate Hippo", + "id": "Guard Dragon", "pt": 2, - "sh": true, }, - "value": 32448, + "value": 112282435, }, { "category": "Pet", "configData": { - "id": "Train Conductor Cat", - "pt": 2, + "id": "Player Corgi", "sh": true, }, - "value": 182, + "value": 113616736, }, { "category": "Pet", "configData": { - "cv": 5, - "id": "Huge Chroma Phoenix", + "id": "Player Corgi", + "pt": 2, "sh": true, }, - "value": 1759999990, + "value": 37479217, }, { "category": "Pet", "configData": { - "id": "Ice Penguin", - "pt": 1, + "id": "Huge Guard Dragon", + "sh": true, }, - "value": 108, + "value": 202, }, { "category": "Pet", "configData": { - "id": "Pajamas Dog", - "pt": 1, + "id": "Guard Dominus", }, - "value": 51, + "value": 7783643, }, { "category": "Pet", "configData": { - "id": "Forged Robot", - "pt": 2, + "id": "Player Corgi", + "pt": 1, + "sh": true, }, - "value": 16561, + "value": 17169487, }, { "category": "Pet", "configData": { - "id": "Teddy Bear", + "id": "Frontman Jellyfish", }, - "value": 17620, + "value": 240082622, }, { "category": "Pet", "configData": { - "id": "Snowflake Dominus", + "id": "Guard Dominus", + "pt": 1, }, - "value": 543, + "value": 990720, }, { "category": "Pet", "configData": { - "id": "Floppa", + "id": "Guard Dominus", "pt": 2, }, - "value": 18300331, + "value": 1700686, }, { - "category": "Pet", + "category": "XPPotion", "configData": { - "id": "Ice Corgi", + "id": "Ultra Huge", }, - "value": 426, + "value": 18209, }, { "category": "Pet", "configData": { - "id": "Tech Bull", + "id": "Huge Guard Dragon", + "pt": 1, + "sh": true, }, - "value": 60, + "value": 45, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Pixel Wolf", - "pt": 1, - "sh": true, + "id": "Pet Games Token", }, - "value": 4000000000, + "value": 3613876997, }, { "category": "Pet", "configData": { - "id": "Huge Holographic Cat", + "id": "Huge Frontman Jellyfish", }, - "value": 36323372, + "value": 551, }, { "category": "Pet", "configData": { - "id": "Pajamas Dog", + "id": "Guard Dragon", + "pt": 1, + "sh": true, }, - "value": 135, + "value": 311666, }, { "category": "Pet", "configData": { - "id": "Train Conductor Dog", + "id": "Frontman Jellyfish", "pt": 2, }, - "value": 1723, + "value": 18274471, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "cv": 4, - "id": "Huge Chroma Tiger", - "sh": true, + "id": "Pet Games Gift", }, - "value": 731227662, + "value": 92821175, }, { "category": "Pet", "configData": { - "id": "Silver Moose", + "id": "Frontman Jellyfish", "pt": 1, }, - "value": 409, + "value": 17063182, }, { "category": "Pet", "configData": { - "id": "Gummy Raccoon", - "pt": 2, + "id": "Huge Player Corgi", }, - "value": 2935, + "value": 85941, }, { "category": "Pet", "configData": { - "id": "Titanic Capybara", + "id": "Guard Dragon", + "pt": 2, "sh": true, }, - "value": 902000000, + "value": 622012, }, { "category": "Pet", "configData": { - "id": "M-B PROTOTYPE", - "pt": 2, + "id": "Guard Dragon", + "sh": true, }, - "value": 14863, + "value": 1684476, }, { "category": "Pet", "configData": { - "id": "Train Conductor Cat", + "id": "Huge Player Corgi", + "pt": 2, }, - "value": 986, + "value": 3258, }, { "category": "Pet", "configData": { - "id": "Hot Air Balloon Dog", + "id": "Huge Guard Dragon", + "pt": 2, "sh": true, }, - "value": 1324, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Train Conductor Cat", - "pt": 2, + "id": "Huge Player Corgi", + "pt": 1, }, - "value": 2157, + "value": 16709, }, { "category": "Pet", "configData": { - "id": "Huge Red Panda", - "pt": 2, + "id": "Huge Player Panda", + "pt": 1, }, - "value": 87465957, + "value": 2052, }, { "category": "Pet", "configData": { - "id": "Enchanted Raccoon", + "id": "Huge Player Panda", }, - "value": 194, + "value": 17865, }, { "category": "Pet", "configData": { - "id": "Huge Samurai Dragon", - "pt": 2, + "id": "Huge Player Corgi", + "sh": true, }, - "value": 1476597763, + "value": 671, }, { "category": "Pet", "configData": { - "id": "Huge Sailor Shark", + "id": "Huge Player Panda", "pt": 2, }, - "value": 1702219265, + "value": 1502, }, { "category": "Pet", "configData": { - "id": "Chick", - "pt": 2, - "sh": true, + "id": "Huge Guard Dominus", }, - "value": 2640, + "value": 64355, }, { "category": "Pet", "configData": { - "id": "Stealth Dragon", - "pt": 1, + "id": "Titanic Guard Dominus", }, - "value": 10775481, + "value": 709, }, { "category": "Pet", "configData": { - "id": "Huge Ghost", - "pt": 1, + "id": "Huge Player Panda", "sh": true, }, - "value": 1449950102, + "value": 349, }, { "category": "Pet", "configData": { - "id": "Huge Stealth Dragon", - "sh": true, + "id": "Huge Frontman Jellyfish", + "pt": 1, }, - "value": 449250368, + "value": 40, }, { "category": "Pet", "configData": { - "id": "Huge Cyborg Capybara", - "pt": 1, + "id": "Huge Frontman Jellyfish", + "pt": 2, }, - "value": 1320118875, + "value": 31, }, { "category": "Pet", "configData": { - "id": "Circuit Cat", + "id": "Guard Dominus", + "sh": true, }, - "value": 2489, + "value": 23257, }, { "category": "Pet", "configData": { - "id": "Huge Clover Unicorn", + "id": "Guard Dominus", "pt": 1, "sh": true, }, - "value": 3277739231, + "value": 13639, }, { "category": "Pet", "configData": { - "id": "Broomstick Corgi", - "pt": 1, + "id": "Guard Dominus", + "pt": 2, "sh": true, }, - "value": 23094, + "value": 15273, }, { "category": "Pet", "configData": { - "id": "Huge Evolved Pterodactyl", + "id": "Huge Panther", "pt": 2, }, - "value": 664994261, + "value": 127, }, { "category": "Pet", "configData": { - "id": "Huge Stargazing Axolotl", + "id": "Huge Panther", "sh": true, }, - "value": 738175887, + "value": 110, }, { "category": "Pet", "configData": { - "id": "Quantum Fox", + "id": "Frontman Jellyfish", + "pt": 1, "sh": true, }, - "value": 42, + "value": 108052, }, { "category": "Pet", "configData": { - "id": "Titanic Lucki", + "id": "Huge Player Panda", + "pt": 2, + "sh": true, }, - "value": 12491741248, + "value": 39, }, { "category": "Pet", "configData": { - "id": "Quantum Griffin", - "pt": 1, + "id": "Frontman Jellyfish", + "pt": 2, + "sh": true, }, - "value": 3912, + "value": 63980, }, { "category": "Pet", "configData": { - "id": "Tiedye Cat", + "id": "Huge Player Corgi", + "pt": 1, + "sh": true, }, - "value": 6611209, + "value": 126, }, { "category": "Pet", "configData": { - "id": "Huge Bread Shiba", + "id": "Huge Player Panda", "pt": 1, + "sh": true, }, - "value": 2426402081, + "value": 47, }, { "category": "Pet", "configData": { - "id": "Ninja Turtle", + "id": "Huge Frontman Jellyfish", "sh": true, }, - "value": 1414, + "value": 13, }, { "category": "Pet", "configData": { - "id": "Night Terror Dog", - "pt": 1, + "id": "Titanic Guard Dominus", + "sh": true, }, - "value": 350, + "value": 25, }, { "category": "Pet", "configData": { - "id": "Imp", + "id": "Huge Guard Dominus", "sh": true, }, - "value": 129, + "value": 2413, }, { "category": "Pet", "configData": { - "id": "Huge Santa Monkey", - "sh": true, + "id": "Titanic Guard Dominus", + "pt": 2, }, - "value": 597836424, + "value": 25, }, { "category": "Pet", "configData": { - "id": "Huge Super Corgi", + "id": "Huge Guard Dominus", "pt": 2, }, - "value": 834506339, + "value": 2485, }, { "category": "Pet", "configData": { - "id": "Jelly Axolotl", - "sh": true, + "id": "Titanic Guard Dominus", + "pt": 1, }, - "value": 9760222, + "value": 90, }, { "category": "Pet", "configData": { - "id": "Huge Clover Unicorn", + "id": "Huge Guard Dominus", + "pt": 1, + }, + "value": 8579, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Frontman Jellyfish", + "pt": 1, "sh": true, }, - "value": 402796130, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Balloon Corgi", + "id": "Huge Player Corgi", "pt": 2, "sh": true, }, - "value": 3600000, + "value": 22, }, { "category": "Pet", "configData": { - "id": "Stacked Dominus", - "pt": 1, + "id": "Frontman Jellyfish", "sh": true, }, - "value": 814, + "value": 888260, }, { "category": "Pet", "configData": { - "id": "Huge Hologram Axolotl", + "id": "Huge Jaguar", "sh": true, }, - "value": 561852598, + "value": 100, }, { "category": "Pet", "configData": { - "id": "Huge Ninja Axolotl", - "pt": 2, + "id": "Inferno Stealth Dragon", }, - "value": 870270691, + "value": 1096, }, { "category": "Pet", "configData": { - "id": "Huge Lucki Agony", - "pt": 1, + "id": "Huge Hypnotic Dragon", + "pt": 2, + "sh": true, }, - "value": 2753105619, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Llama", + "cv": 3, + "id": "Huge Chroma Doodle Axolotl", + "pt": 2, "sh": true, }, - "value": 3569, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Samurai Dragon", + "id": "Guard Hydra", }, - "value": 628, + "value": 1193228, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Rabbit", - "pt": 1, - "sh": true, + "id": "Pet Game Card", }, - "value": 1, + "value": 1365170167, }, { "category": "Pet", "configData": { - "id": "Huge Bee", + "id": "Guard Hydra", "pt": 1, }, - "value": 39620331, + "value": 368791, }, { "category": "Pet", "configData": { - "id": "Robber Cat", - "pt": 2, - "sh": true, + "id": "Googly Corgi", }, - "value": 89149602, + "value": 100787, }, { "category": "Pet", "configData": { - "id": "Titanic Dominus Astra", + "id": "Googly Cat", }, - "value": 13902306115, + "value": 50981, }, { "category": "Pet", "configData": { - "id": "Research Cat", + "id": "Googly Cat", "pt": 2, }, - "value": 226, + "value": 2799, }, { "category": "Pet", "configData": { - "id": "Huge Inferno Dominus", + "id": "Googly Cat", + "sh": true, }, - "value": 146373311, + "value": 1551, }, { "category": "Pet", "configData": { - "id": "Tiedye Dog", - "pt": 1, + "id": "Googly Shark", }, - "value": 6415986, + "value": 21203, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Pastel Goat", - "pt": 1, - "sh": true, + "id": "Exclusive Egg 43", }, - "value": 426, + "value": 567114, }, { "category": "Pet", "configData": { - "id": "Hacker Axolotl", - "pt": 1, + "id": "Player Penguin", + "pt": 2, }, - "value": 905, + "value": 31555163, }, { "category": "Pet", "configData": { - "id": "Huge Fairy", + "id": "Player Gecko", "pt": 1, }, - "value": 235427174, + "value": 34442543064, }, { "category": "Pet", "configData": { - "id": "Frostbyte Cat", + "id": "Player Penguin", + "pt": 1, }, - "value": 657, + "value": 35649992, }, { "category": "Pet", "configData": { - "id": "Hot Cocoa Cat", - "pt": 1, + "id": "Player Gecko", + "pt": 2, }, - "value": 42499, + "value": 30291674579, }, { "category": "Pet", "configData": { - "id": "Titanic Scary Corgi", + "id": "Player Penguin", }, - "value": 12147138310, + "value": 399104282, }, { "category": "Pet", "configData": { - "id": "Heavenly Dove", - "pt": 1, + "id": "Player Gecko", }, - "value": 778, + "value": 204556461709, }, { "category": "Pet", "configData": { - "id": "Huge Anime Agony", - "pt": 1, + "id": "Guard Hydra", + "pt": 2, }, - "value": 4605082230, + "value": 189451, }, { "category": "Pet", "configData": { - "id": "Titanic Jelly Cat", + "id": "Huge Guard Hydra", }, - "value": 19037311542, + "value": 6151, }, { "category": "Pet", "configData": { - "id": "Huge Hippomelon", - "pt": 2, + "id": "Player Penguin", + "sh": true, }, - "value": 1748538266, + "value": 1351064, }, { "category": "Pet", "configData": { - "id": "Huge Axolotl", + "id": "Huge Guard Hydra", + "pt": 1, }, - "value": 472854514, + "value": 3230, }, { "category": "Pet", "configData": { - "id": "Circuit Corgi", - "pt": 1, + "id": "Player Gecko", "sh": true, }, - "value": 21, + "value": 784621688, }, { "category": "Pet", "configData": { - "id": "Llama", - "pt": 1, - "sh": true, + "id": "Titanic Doll Cat", }, - "value": 3000, + "value": 677, }, { "category": "Pet", "configData": { - "id": "Angel Dog", + "id": "Player Penguin", + "pt": 1, "sh": true, }, - "value": 69675, + "value": 193906, }, { "category": "Pet", "configData": { - "id": "Classic Dragon", - "pt": 2, + "id": "Guard Hydra", + "pt": 1, + "sh": true, }, - "value": 19547110, + "value": 8344, }, { "category": "Pet", "configData": { - "id": "Rudolf", + "id": "Player Gecko", + "pt": 2, "sh": true, }, - "value": 10120949, + "value": 161446033, }, { "category": "Pet", "configData": { - "id": "Bunny", - "pt": 1, + "id": "Guard Hydra", + "pt": 2, + "sh": true, }, - "value": 18, + "value": 2885, }, { "category": "Pet", "configData": { - "id": "Relic Goblin", + "id": "Player Fox", + "pt": 2, }, - "value": 756, + "value": 23038436892, }, { "category": "Pet", "configData": { - "id": "Huge Dominus Lucki", - "sh": true, + "id": "Player Fox", }, - "value": 2549099255, + "value": 125645814419, }, { "category": "Pet", "configData": { - "id": "Slasher Sloth", - "sh": true, + "id": "Player Fox", + "pt": 1, }, - "value": 7944665, + "value": 21371331439, }, { "category": "Pet", "configData": { - "id": "Fish in a Bucket", + "id": "Player Gecko", + "pt": 1, "sh": true, }, - "value": 2732, + "value": 162998191, }, { "category": "Pet", "configData": { - "id": "Grinch Cat", + "id": "Player Penguin", "pt": 2, "sh": true, }, - "value": 301304562, + "value": 108137, }, { "category": "Pet", "configData": { - "id": "Festive Cardinal", - "sh": true, + "id": "Huge Googly Corgi", }, - "value": 205536, + "value": 7739, }, { "category": "Pet", "configData": { - "id": "Huge Giraffe", - "pt": 1, + "id": "Huge Googly Shark", }, - "value": 38924822, + "value": 1924, }, { "category": "Pet", "configData": { - "id": "Huge Cyborg Dragon", + "id": "Huge Guard Hydra", "pt": 2, }, - "value": 795279519, + "value": 867, }, { "category": "Pet", "configData": { - "id": "Huge Heart Balloon Cat", + "id": "Googly Corgi", "sh": true, }, - "value": 757238010, + "value": 2165, }, { "category": "Pet", "configData": { - "id": "Santa Paws", - "sh": true, + "id": "Googly Corgi", + "pt": 2, }, - "value": 7024824, + "value": 4074, }, { "category": "Pet", "configData": { - "id": "Huge Pineapple Cat", - "pt": 1, - "sh": true, + "id": "Googly Shark", + "pt": 2, }, - "value": 899849519, + "value": 1124, }, { "category": "Pet", "configData": { - "id": "Piggy", + "id": "Player Fox", + "pt": 2, + "sh": true, }, - "value": 233, + "value": 129698022, }, { "category": "Pet", "configData": { - "id": "Red Dragon", + "id": "Huge Guard Hydra", + "sh": true, }, - "value": 395, + "value": 181, }, { "category": "Pet", "configData": { - "id": "Present Dragon", + "id": "Googly Shark", "sh": true, }, - "value": 69478, + "value": 792, }, { "category": "Pet", "configData": { - "id": "Huge Techno Cat", - "pt": 2, + "id": "Recruiter Axolotl", }, - "value": 417063517, + "value": 2561917837, }, { "category": "Pet", "configData": { - "id": "Dark Dragon", + "id": "Recruiter Axolotl", + "pt": 1, }, - "value": 1094, + "value": 447689445, }, { "category": "Pet", "configData": { - "id": "Huge Crocodile", + "id": "Recruiter Axolotl", + "pt": 2, }, - "value": 32373691, + "value": 449540115, }, { "category": "Pet", "configData": { - "id": "Huge Jelly Piggy", - "pt": 2, + "id": "Player Fox", + "pt": 1, + "sh": true, }, - "value": 2110635138, + "value": 102102947, }, { "category": "Pet", "configData": { - "id": "Huge Peacock", + "id": "Googly Corgi", + "pt": 2, + "sh": true, }, - "value": 37116832, + "value": 114, }, { "category": "Pet", "configData": { - "id": "North Pole Wolf", + "id": "Huge Googly Corgi", "sh": true, }, - "value": 3495433, + "value": 307, }, { "category": "Pet", "configData": { - "id": "Ninja Maskot", + "id": "Guard Bunny", "pt": 1, - "sh": true, }, - "value": 4666, + "value": 1476711, }, { "category": "Pet", "configData": { - "id": "Candycane Unicorn", + "id": "Player Fox", "sh": true, }, - "value": 2926016, + "value": 494498196, }, { "category": "Pet", "configData": { - "id": "Prince Donkey", - "pt": 1, + "id": "Guard Bunny", }, - "value": 10506, + "value": 5833343, }, { "category": "Pet", "configData": { - "id": "Cyber Fox", - "pt": 2, + "id": "Titanic Googly Blobfish", }, - "value": 340000, + "value": 524, }, { "category": "Pet", "configData": { - "id": "Huge Strawberry Corgi", - "pt": 2, + "id": "Huge Player Fox", + "pt": 1, }, - "value": 421707612, + "value": 18778, }, { "category": "Pet", "configData": { - "id": "Huge Pirate Parrot", - "pt": 2, + "id": "Huge Player Fox", }, - "value": 1906821197, + "value": 518535, }, { "category": "Pet", "configData": { - "id": "Colorful Dragon", + "id": "Huge Googly Corgi", "pt": 2, - "sh": true, }, - "value": 148383, + "value": 262, }, { "category": "Pet", "configData": { - "id": "Huge Luau Cat", + "id": "Guard Bunny", "pt": 2, }, - "value": 672773519, - }, - { - "category": "Pet", - "configData": { - "id": "Rock Dragon", - "sh": true, - }, - "value": 4707, + "value": 920576, }, { "category": "Pet", "configData": { - "id": "Huge Lucki", + "id": "Googly Shark", "pt": 2, + "sh": true, }, - "value": 5823214397, + "value": 37, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Husky", + "id": "Huge Googly Shark", + "sh": true, }, - "value": 397, + "value": 71, }, { "category": "Pet", "configData": { - "id": "Titanic Tiedye Dragon", + "id": "Recruiter Axolotl", + "pt": 1, + "sh": true, }, - "value": 12733481896, + "value": 1699574, }, { "category": "Pet", "configData": { - "id": "Huge Giraffe", + "id": "Googly Cat", + "pt": 2, + "sh": true, }, - "value": 36290390, + "value": 117, }, { "category": "Pet", "configData": { - "id": "Blimp Dragon", + "id": "Huge Googly Shark", "pt": 2, "sh": true, }, - "value": 500000, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Candycane", + "id": "Huge Guard Hydra", + "pt": 1, "sh": true, }, - "value": 119991, + "value": 48, }, { "category": "Pet", "configData": { - "id": "Huge Hippomelon", + "id": "Recruiter Axolotl", + "sh": true, }, - "value": 204795536, + "value": 8062556, }, { "category": "Pet", "configData": { - "id": "Huge Robber Pug", + "id": "Recruiter Axolotl", "pt": 2, + "sh": true, }, - "value": 80654344, + "value": 2135317, }, { "category": "Pet", "configData": { - "id": "Water Zebra", - "sh": true, + "id": "Huge Player Fox", + "pt": 2, }, - "value": 40477, + "value": 30538, }, { "category": "Pet", "configData": { - "id": "Heavenly Peacock", + "id": "Titanic Googly Blobfish", "pt": 2, }, - "value": 3434, + "value": 16, }, { "category": "Pet", "configData": { - "id": "Surfboard Corgi", + "id": "Huge Googly Shark", + "pt": 2, }, - "value": 43, + "value": 56, }, { "category": "Pet", "configData": { - "id": "Storm Agony", + "id": "Huge Player Fox", + "pt": 1, + "sh": true, }, - "value": 13010424, + "value": 600, }, { "category": "Pet", "configData": { - "id": "Huge Dog", + "id": "Titanic Googly Blobfish", "sh": true, }, - "value": 633661989, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Huge Valentines Cat", + "id": "Gargantuan Googly Agony", }, - "value": 219021362, + "value": 56, }, { "category": "Pet", "configData": { - "id": "Titanic Axolotl", - "pt": 2, + "id": "Huge Guard Wolf", }, - "value": 13121600131, + "value": 7396, }, { "category": "Pet", "configData": { - "id": "Flower Cat", + "id": "Huge Player Fox", "sh": true, }, - "value": 2203, + "value": 802, }, { "category": "Pet", "configData": { - "id": "Colorful Dragon", + "id": "Guard Bunny", + "pt": 1, "sh": true, }, - "value": 15637, + "value": 20056, }, { "category": "Pet", "configData": { - "id": "Robber Goblin", + "id": "Guard Bunny", "sh": true, }, - "value": 17449, + "value": 69541, }, { "category": "Pet", "configData": { - "id": "Dragon", + "id": "Huge Player Fox", "pt": 2, "sh": true, }, - "value": 8000, + "value": 150, }, { "category": "Pet", "configData": { - "id": "Balloon Corgi", - "sh": true, + "id": "Titanic Doll Cat", + "pt": 2, }, - "value": 9922161, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Dark Lord", + "id": "Huge Guard Hydra", "pt": 2, + "sh": true, }, - "value": 2006, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Santa Paws", + "id": "Huge Doll Cat", }, - "value": 12095, + "value": 63169, }, { "category": "Pet", "configData": { - "id": "Huge Peppermint Angelus", - "pt": 2, + "id": "Guard Hydra", + "sh": true, }, - "value": 1637283902, + "value": 3358, }, { "category": "Pet", "configData": { - "id": "Corgi", + "id": "Guard Bunny", "pt": 2, "sh": true, }, - "value": 160891, + "value": 18892, }, { "category": "Pet", "configData": { - "id": "Huge Pumpkin Cat", - "sh": true, + "id": "Huge Guard Bunny", }, - "value": 489778803, + "value": 485, }, { "category": "Pet", "configData": { - "id": "Huge Sapphire Phoenix", - "pt": 2, - "sh": true, + "id": "Huge Doll Cat", + "pt": 1, }, - "value": 10508480093, + "value": 9154, }, { "category": "Pet", "configData": { - "id": "Ghost", - "sh": true, + "id": "Huge Guard Wolf", + "pt": 1, }, - "value": 4237, + "value": 1697, }, { "category": "Pet", "configData": { - "id": "Orange Axolotl", + "id": "Huge Dino Cat", "pt": 2, + "sh": true, }, - "value": 12320040, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Blueberry Cow", + "id": "Huge Guard Wolf", + "pt": 2, }, - "value": 3649241, + "value": 1050, }, { "category": "Pet", "configData": { - "id": "Nutcracker Cat", + "id": "Titanic Frontman Jellyfish", }, - "value": 41991, + "value": 1258, }, { "category": "Pet", "configData": { - "id": "Water Zebra", - "pt": 2, - "sh": true, + "id": "Titanic Doll Cat", + "pt": 1, }, - "value": 3855, + "value": 60, }, { "category": "Pet", "configData": { - "id": "Empyrean Axolotl", + "id": "Huge Doll Cat", "pt": 2, - "sh": true, }, - "value": 20149, + "value": 498, }, { "category": "Pet", "configData": { - "id": "Stealth Bobcat", - "pt": 1, + "id": "Huge Googly Corgi", + "pt": 2, "sh": true, }, - "value": 104593664, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Mining Axolotl", + "id": "Huge Guard Bunny", "pt": 1, }, - "value": 44, + "value": 98, }, { "category": "Pet", "configData": { - "id": "Golden Retriever", - "sh": true, + "id": "Titanic Frontman Jellyfish", + "pt": 1, }, - "value": 4130, + "value": 465, }, { "category": "Pet", "configData": { - "id": "Titanic Tiedye Cat", + "id": "Huge Guard Bunny", + "pt": 2, }, - "value": 13180626574, + "value": 28, }, { "category": "Pet", "configData": { - "id": "Colorful Dragon", + "id": "Titanic Frontman Jellyfish", + "pt": 2, }, - "value": 766, + "value": 277, }, { "category": "Pet", "configData": { - "id": "Huge Cow", + "id": "Huge Guard Wolf", "sh": true, }, - "value": 824960005, + "value": 14, }, { "category": "Pet", "configData": { - "id": "Alien Octopus", + "id": "Huge Guard Wolf", "pt": 1, + "sh": true, }, - "value": 248, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Jolly Penguin", + "id": "Huge Guard Wolf", + "pt": 2, "sh": true, }, - "value": 10183, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Redstone Cat", + "id": "Huge Guard Bunny", + "pt": 2, "sh": true, }, - "value": 8508215, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Mining Mole", + "id": "Huge Guard Bunny", "pt": 1, + "sh": true, }, - "value": 612, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Mining Axolotl", - "sh": true, + "id": "Inferno Stealth Bobcat", }, - "value": 760, + "value": 1445, }, { "category": "Pet", "configData": { - "id": "Huge Corrupt Butterfly", - "pt": 1, + "id": "Huge Guard Bunny", + "sh": true, }, - "value": 40884290, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Huge Party Axolotl", + "id": "Huge Doll Cat", "pt": 2, + "sh": true, }, - "value": 700664757, + "value": 499, }, { "category": "Pet", "configData": { - "id": "Huge Tiedye Bunny", - "pt": 1, + "id": "Titanic Doll Cat", + "pt": 2, + "sh": true, }, - "value": 119373094, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Scarecrow Cat", + "id": "Titanic Doll Cat", + "sh": true, }, - "value": 883, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Colorful Firefly", + "id": "Huge Doll Cat", "sh": true, }, - "value": 480, + "value": 996, }, { "category": "Pet", "configData": { - "id": "Dominus Alienus", + "id": "Titanic Frontman Jellyfish", "pt": 1, "sh": true, }, - "value": 3712694, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Wyvern of Hades", - "pt": 1, + "id": "Titanic Frontman Jellyfish", "sh": true, }, - "value": 1360000, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Shiba", - "pt": 2, + "cv": 1, + "id": "Huge Chroma Doodle Axolotl", "sh": true, }, - "value": 32005, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Frost Axolotl", + "id": "Titanic Frontman Jellyfish", "pt": 2, "sh": true, }, - "value": 1143, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Nuclear Axolotl", + "id": "Huge Parrot", "pt": 2, "sh": true, }, - "value": 208000, + "value": 8, }, { "category": "Pet", "configData": { - "id": "Mining Axolotl", - "pt": 2, + "id": "Inferno Stealth Cat", }, - "value": 963, + "value": 1107, }, { "category": "Pet", "configData": { - "id": "Huge Egg Dino", - "pt": 2, + "id": "Huge Panther", + "pt": 1, + "sh": true, }, - "value": 150996163, + "value": 14, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Luxe Peacock", - "sh": true, + "id": "Wyvern of Hades", }, - "value": 135802000, + "value": 3540, }, { "category": "Pet", "configData": { - "id": "Firefly", - "sh": true, + "id": "Huge Wyvern of Hades", }, - "value": 103, + "value": 522, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Ladybug", - "pt": 2, + "id": "Wyvern of Hades", }, - "value": 28, + "value": 746, }, { "category": "Pet", "configData": { - "id": "Jolly Cat", + "id": "Huge Wyvern of Hades", + "pt": 2, }, - "value": 2010, + "value": 75, }, { "category": "Pet", "configData": { - "id": "Titanic Arcane Cat", - "sh": true, + "id": "Huge Wyvern of Hades", + "pt": 1, }, - "value": 22367276546, + "value": 149, }, { "category": "Pet", "configData": { - "id": "Huge Marshmallow Agony", + "id": "Titanic Doll Cat", "pt": 1, "sh": true, }, - "value": 547842681, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Pajamas Cat", + "id": "Huge Doll Cat", + "pt": 1, + "sh": true, }, - "value": 830, + "value": 500, }, { "category": "Pet", "configData": { - "id": "Cowboy Dog", + "id": "Gargantuan Googly Agony", "pt": 2, }, - "value": 1468, + "value": 1, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Shiba", - "sh": true, + "id": "Locked Hype Egg", }, - "value": 1627, + "value": 5602659, }, { "category": "Pet", "configData": { - "id": "Graffiti Raccoon", + "id": "Huge Player Penguin", }, - "value": 29, + "value": 8305, }, { "category": "Pet", "configData": { - "id": "Calico Cat", + "id": "Huge Player Penguin", + "pt": 1, }, - "value": 661, + "value": 1232, }, { "category": "Pet", "configData": { - "id": "North Pole Bunny", + "id": "Huge Player Penguin", "pt": 2, - "sh": true, }, - "value": 41512, + "value": 249, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Colorful Wisp", + "id": "Cannon Luck Booster", + "tn": 1, }, - "value": 309, + "value": 16944591, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Colorful Fish", + "id": "Cannon Speed Booster", + "tn": 1, }, - "value": 167, + "value": 16912682, }, { "category": "Pet", "configData": { - "id": "Gingerbread Corgi", + "id": "Stunt Raccoon", }, - "value": 3652, + "value": 723166711, }, { "category": "Pet", "configData": { - "id": "Jolly Penguin", - "pt": 2, + "id": "Stunt Raccoon", + "pt": 1, }, - "value": 45428, + "value": 73149423, }, { "category": "Pet", "configData": { - "id": "Colorful Fish", + "id": "Stunt Raccoon", "pt": 2, }, - "value": 274, + "value": 56114169, }, { "category": "Pet", "configData": { - "id": "Frost Axolotl", + "id": "Crash Dummy Noob", "pt": 2, }, - "value": 2078, + "value": 75304154, }, { "category": "Pet", "configData": { - "id": "Reindeer Cat", + "id": "Rocket Shark", }, - "value": 909, + "value": 722622195, }, { "category": "Pet", "configData": { - "id": "Fire Cat", + "id": "Rocket Shark", "pt": 1, }, - "value": 1299, + "value": 73046956, }, { "category": "Pet", "configData": { - "id": "Amethyst Dragon", - "sh": true, + "id": "Crash Dummy Noob", }, - "value": 14651705, + "value": 916923072, }, { "category": "Pet", "configData": { - "id": "Huge Pastel Elephant", - "pt": 1, - "sh": true, + "id": "Rocket Shark", + "pt": 2, }, - "value": 4223168042, + "value": 48573843, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Calico Cat", - "pt": 2, + "id": "Cannon Damage Booster", + "tn": 1, }, - "value": 1467, + "value": 17165385, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Clover Fairy", - "sh": true, + "id": "Hype Egg 2", }, - "value": 1658, + "value": 4588448, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Dragonfruit Dragon", - "pt": 2, - "sh": true, + "id": "Lightning Cannon", }, - "value": 226623084, + "value": 61856735, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Titanic Mystic Corgi", - "sh": true, + "id": "Hellfire", + }, + "value": 434524, + }, + { + "category": "Misc", + "configData": { + "id": "Hellfire Crystal", }, - "value": 24900000000, + "value": 363769259, }, { "category": "Pet", "configData": { - "id": "Frost Bear", + "id": "Crash Dummy Noob", "pt": 1, }, - "value": 430, + "value": 105321751, }, { "category": "Pet", "configData": { - "id": "Chicken", - "pt": 2, - "sh": true, + "id": "Huge Fireball Cat", }, - "value": 21800, + "value": 8766, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Scorpion", - "pt": 2, - "sh": true, + "id": "Hellfire", }, - "value": 18160, + "value": 433166, }, { "category": "Pet", "configData": { - "id": "Colorful Fish", - "sh": true, + "id": "Huge Fireball Cat", + "pt": 1, }, - "value": 686, + "value": 4453, }, { "category": "Pet", "configData": { - "id": "Colorful Slime", + "id": "Turbo Cheetah", }, - "value": 521, + "value": 795675330, }, { "category": "Pet", "configData": { - "id": "Train Conductor Cat", + "id": "Stunt Raccoon", + "pt": 1, "sh": true, }, - "value": 1068, + "value": 310319, }, { "category": "Pet", "configData": { - "id": "Old Wizard Owl", + "id": "Turbo Cheetah", + "pt": 2, }, - "value": 21865897, + "value": 65458123, }, { "category": "Pet", "configData": { - "id": "Present Dragon", + "id": "Stunt Raccoon", + "sh": true, }, - "value": 94413, + "value": 2195609, }, { "category": "Pet", "configData": { - "id": "Huge Party Penguin", - "sh": true, + "id": "Turbo Cheetah", + "pt": 1, }, - "value": 1284566883, + "value": 78054634, }, { "category": "Pet", "configData": { - "id": "Huge Mushroom Raccoon", - "pt": 1, + "id": "Stunt Raccoon", + "pt": 2, "sh": true, }, - "value": 567775658, + "value": 250157, }, { "category": "Pet", "configData": { - "id": "Huge Fossil Dragon", + "id": "Rocket Shark", + "sh": true, }, - "value": 36186211, + "value": 2043109, }, { "category": "Pet", "configData": { - "id": "Chicken", - "pt": 1, + "id": "Crash Dummy Noob", "sh": true, }, - "value": 62404, + "value": 2739378, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Angel Seal", - "pt": 2, + "id": "Hellfire Core", }, - "value": 3474, + "value": 34733057, }, { "category": "Pet", "configData": { - "id": "Huge Evolved Hell Rock", + "id": "Rocket Shark", "pt": 2, "sh": true, }, - "value": 602976006, + "value": 215281, }, { "category": "Pet", "configData": { - "id": "Cat", + "id": "Rocket Shark", + "pt": 1, + "sh": true, }, - "value": 162558, + "value": 298425, }, { "category": "Pet", "configData": { - "id": "Huge Nightmare Kraken", - "sh": true, + "id": "Plane Dragon", }, - "value": 919847737, + "value": 143085797895, }, { "category": "Pet", "configData": { - "cv": 4, - "id": "Huge Chroma Snail", + "id": "Plane Dragon", + "pt": 2, }, - "value": 60666857, + "value": 17341469625, }, { "category": "Pet", "configData": { - "id": "Kawaii Cat", - "pt": 2, + "id": "Torpedo Shepherd", }, - "value": 369, + "value": 76341472673, }, { "category": "Pet", "configData": { - "id": "Wizard Westie", + "id": "Plane Dragon", + "pt": 1, }, - "value": 223, + "value": 24114056115, }, { "category": "Pet", "configData": { - "id": "Huge Chroma Lucky Block Mimic", - "sh": true, + "id": "Huge Party Panda", }, - "value": 2564826059, + "value": 64033, }, { "category": "Pet", "configData": { - "id": "Huge Celestial Dragon", + "id": "Crash Dummy Noob", + "pt": 2, "sh": true, }, - "value": 1975872029, + "value": 342887, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Blossom Bunny", + "id": "Nuclear Cannon", }, - "value": 876, + "value": 17696, }, { "category": "Pet", "configData": { - "id": "Nightfall Wolf", + "id": "Turbo Cheetah", + "sh": true, }, - "value": 9569566, + "value": 2282387, }, { "category": "Pet", "configData": { - "id": "Soul Cat", - "pt": 2, + "id": "Crash Dummy Noob", + "pt": 1, "sh": true, }, - "value": 2094038361, + "value": 444647, }, { "category": "Pet", "configData": { - "id": "Frostbyte Deer", + "id": "Huge Fireball Cat", + "sh": true, }, - "value": 935, + "value": 282, }, { "category": "Pet", "configData": { - "id": "Huge Cool Cat", - "pt": 2, + "id": "Torpedo Shepherd", + "pt": 1, }, - "value": 1585892847, + "value": 13067323301, }, { "category": "Pet", "configData": { - "id": "Huge UV Cat", + "id": "Huge Party Panda", "pt": 1, }, - "value": 118086279, + "value": 12941, }, { "category": "Pet", "configData": { - "id": "Rave Corgi", - "sh": true, + "id": "Huge Party Panda", + "pt": 2, }, - "value": 1788, + "value": 2794, }, { "category": "Pet", "configData": { - "id": "Umbrella Cat", - "pt": 2, + "id": "Turbo Cheetah", + "pt": 1, "sh": true, }, - "value": 280000, + "value": 372861, }, { "category": "Pet", "configData": { - "id": "Sphinx", - "sh": true, + "id": "Huge Fireball Cat", + "pt": 2, }, - "value": 272048, + "value": 1294, }, { "category": "Pet", "configData": { - "id": "Huge Chameleon", + "id": "Torpedo Shepherd", "pt": 2, }, - "value": 1342561579, + "value": 12842843168, }, { "category": "Pet", "configData": { - "id": "Huge Kawaii Tiger", + "id": "Plane Dragon", + "sh": true, }, - "value": 301876957, + "value": 488487063, }, { "category": "Pet", "configData": { - "id": "Huge Pop Cat", + "id": "Stunt Corgi", "pt": 2, }, - "value": 3318368791, + "value": 249888812, }, { "category": "Pet", "configData": { - "id": "Chimpanzee", - "pt": 2, + "id": "Stunt Corgi", }, - "value": 9458, + "value": 1492959765, }, { "category": "Pet", "configData": { - "id": "Huge Doodle Cat", + "id": "Huge Fireball Cat", "pt": 1, "sh": true, }, - "value": 1547470745, + "value": 55, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Exquisite Parrot", - "pt": 1, - "sh": true, + "id": "Hellfire Gift", }, - "value": 338343397, + "value": 148160808, }, { "category": "Pet", "configData": { - "id": "Sandcastle Cat", + "id": "Stunt Corgi", + "pt": 1, }, - "value": 192, + "value": 269708257, }, { "category": "Pet", "configData": { - "id": "Icemortuus", + "id": "Plane Dragon", "pt": 2, "sh": true, }, - "value": 100430986, + "value": 100399684, }, { "category": "Pet", "configData": { - "id": "Stingray", + "id": "Turbo Cheetah", "pt": 2, "sh": true, }, - "value": 8400, + "value": 305500, }, { "category": "Pet", "configData": { - "id": "Huge King Cobra", + "id": "Huge Party Panda", + "pt": 1, + "sh": true, }, - "value": 51896169, + "value": 150, }, { "category": "Pet", "configData": { - "id": "Huge Electric Cat", - "pt": 1, + "id": "Stunt Cat", }, - "value": 310908146, + "value": 77988581, }, { "category": "Pet", "configData": { - "id": "Royal Peacock", - "pt": 2, + "id": "Torpedo Shepherd", "sh": true, }, - "value": 50553, + "value": 284526874, }, { "category": "Pet", "configData": { - "id": "Huge Blazing Shark", + "id": "Plane Dragon", + "pt": 1, "sh": true, }, - "value": 580652127, + "value": 117578668, }, { "category": "Pet", "configData": { - "id": "Huge Skateboard Bulldog", + "id": "Torpedo Shepherd", "pt": 1, + "sh": true, }, - "value": 38881660, + "value": 64162889, }, { "category": "Pet", "configData": { - "id": "Huge Redstone Cat", + "id": "Torpedo Shepherd", "pt": 2, + "sh": true, }, - "value": 790457303, + "value": 80003394, }, { "category": "Pet", "configData": { - "id": "Huge Doodle Cat", - "pt": 2, + "id": "Stunt Cat", + "pt": 1, }, - "value": 530789465, + "value": 12447854, }, { "category": "Pet", "configData": { - "id": "Titanic Cat", + "id": "Fireball Cat", }, - "value": 11608640108, + "value": 193528283, }, { "category": "Pet", "configData": { - "id": "Anime Monkey", - "pt": 2, - "sh": true, + "id": "Fireball Cat", + "pt": 1, }, - "value": 865693578, + "value": 52445904, }, { "category": "Pet", "configData": { - "id": "Painter Dog", - "sh": true, + "id": "Stunt Cat", + "pt": 2, }, - "value": 2734, + "value": 15680544, }, { "category": "Pet", "configData": { - "id": "Evil Imp", + "id": "Fireball Cat", + "pt": 2, }, - "value": 505, + "value": 28112006, }, { "category": "Pet", "configData": { - "id": "Lamb", - "sh": true, + "id": "Huge Stunt Corgi", + "pt": 2, }, - "value": 1768, + "value": 2733, }, { "category": "Pet", "configData": { - "id": "Samurai Bull", - "pt": 2, + "id": "Stunt Corgi", + "pt": 1, "sh": true, }, - "value": 188, + "value": 1071363, }, { "category": "Pet", "configData": { - "cv": 6, - "id": "Huge Chroma Ink Blob", + "id": "Huge Torpedo Shepherd", }, - "value": 65914129, + "value": 33288, }, { "category": "Pet", "configData": { - "id": "Scorpion", + "id": "Huge Stunt Corgi", "pt": 1, - "sh": true, }, - "value": 32001, + "value": 6293, }, { "category": "Pet", "configData": { - "id": "Huge Heart Balloon Cat", + "id": "Huge Fireball Cat", + "pt": 2, + "sh": true, }, - "value": 267222116, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Huge Safari Dog", + "id": "Stunt Corgi", "sh": true, }, - "value": 5304483277, + "value": 4399718, }, { "category": "Pet", "configData": { - "id": "Huge Sapphire Phoenix", + "id": "Stunt Corgi", + "pt": 2, "sh": true, }, - "value": 572920497, + "value": 1367605, }, { "category": "Pet", "configData": { - "id": "Neon Griffin", + "id": "Huge Stunt Corgi", }, - "value": 9576761, + "value": 34951, }, { "category": "Pet", "configData": { - "id": "Huge Painted Cat", + "id": "Huge Torpedo Shepherd", "pt": 1, - "sh": true, }, - "value": 475163501, + "value": 6509, }, { "category": "Pet", "configData": { - "id": "Tiedye Bunny", + "id": "Huge Stunt Cat", }, - "value": 5573469, + "value": 163812, }, { "category": "Pet", "configData": { - "id": "Fawn", + "id": "Huge Party Panda", "sh": true, }, - "value": 80128, + "value": 597, }, { "category": "Pet", "configData": { - "id": "North Pole Bunny", + "id": "Stunt Cat", + "pt": 1, + "sh": true, }, - "value": 511, + "value": 98031, }, { "category": "Pet", "configData": { - "id": "Huge BIG Maskot", + "id": "Stunt Cat", "pt": 2, + "sh": true, }, - "value": 580004838, + "value": 159510, }, { "category": "Pet", "configData": { - "id": "Huge Empyrean Agony", - "sh": true, + "id": "Titanic Stunt Cat", }, - "value": 480472301, + "value": 341, }, { "category": "Pet", "configData": { - "id": "Huge Turtle", + "id": "Stunt Cat", "sh": true, }, - "value": 724637421, + "value": 254129, }, { "category": "Pet", "configData": { - "id": "Huge Bread Shiba", + "id": "Huge Stunt Corgi", + "sh": true, }, - "value": 2637418133, + "value": 722, }, { "category": "Pet", "configData": { - "id": "Rave Unicorn", - "pt": 1, + "id": "Fireball Cat", + "pt": 2, + "sh": true, }, - "value": 215, + "value": 170090, }, { "category": "Pet", "configData": { - "id": "Huge White Tiger", + "id": "Huge Torpedo Shepherd", "pt": 2, }, - "value": 1221228809, + "value": 1318, }, { "category": "Pet", "configData": { - "id": "Huge Unicorn Dragon", + "id": "Fireball Cat", + "pt": 1, "sh": true, }, - "value": 277968002, - }, - { - "category": "Pet", - "configData": { - "id": "Sphinx", - "pt": 2, - }, - "value": 12545, + "value": 250556, }, { "category": "Pet", "configData": { - "id": "Huge Cosmic Agony", + "id": "Fireball Cat", "sh": true, }, - "value": 924107095, + "value": 629078, }, { "category": "Pet", "configData": { - "id": "Huge Mosaic Corgi", - "pt": 2, + "id": "Huge Torpedo Shepherd", + "sh": true, }, - "value": 383721977, + "value": 264, }, { "category": "Pet", "configData": { - "id": "Panda", + "id": "Huge Stunt Corgi", "pt": 1, "sh": true, }, - "value": 29, + "value": 133, }, { "category": "Pet", "configData": { - "id": "Hologram Axolotl", - "sh": true, + "id": "Titanic Party Panda", + "pt": 1, }, - "value": 10428096, + "value": 34, }, { "category": "Pet", "configData": { - "id": "Wicked Empyrean Dragon", + "id": "Huge Stunt Cat", + "pt": 1, }, - "value": 16153598, + "value": 24923, }, { "category": "Pet", "configData": { - "id": "White Bunny", + "id": "Huge Stunt Corgi", + "pt": 2, "sh": true, }, - "value": 427, + "value": 61, }, { "category": "Pet", "configData": { - "id": "Luau Seal", + "id": "Huge Stunt Cat", "pt": 2, - "sh": true, }, - "value": 15000, + "value": 4993, }, { "category": "Pet", "configData": { - "id": "Dino Axolotl", - "pt": 2, + "id": "Huge Stunt Cat", + "sh": true, }, - "value": 1257, + "value": 1010, }, { "category": "Pet", "configData": { - "id": "Desert Cat", - "pt": 1, - "sh": true, + "id": "Titanic Stunt Cat", + "pt": 2, }, - "value": 20000, + "value": 13, }, { "category": "Pet", "configData": { - "id": "Subzero Cat", - "pt": 2, + "id": "Titanic Party Panda", }, - "value": 51703089, + "value": 171, }, { "category": "Pet", "configData": { - "id": "Tech Cowboy Cat", + "id": "Huge Stunt Cat", "pt": 1, + "sh": true, }, - "value": 680, + "value": 191, }, { "category": "Pet", "configData": { - "id": "Ancient Dragon", + "id": "Huge Torpedo Shepherd", + "pt": 1, "sh": true, }, - "value": 95563, + "value": 54, }, { "category": "Pet", "configData": { - "id": "Sad Hamster", + "id": "Huge Stunt Cat", "pt": 2, "sh": true, }, - "value": 421999981, + "value": 54, }, { "category": "Pet", "configData": { - "id": "Demolition Husky", + "id": "Titanic Stunt Cat", "pt": 1, }, - "value": 100194, + "value": 53, }, { "category": "Pet", "configData": { - "id": "Huge Balloon Dragon", + "id": "Gargantuan Googly Agony", + "sh": true, }, - "value": 129615373, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Huge Kraken", + "id": "Huge Torpedo Shepherd", + "pt": 2, "sh": true, }, - "value": 2444386608, + "value": 11, }, { "category": "Pet", "configData": { - "id": "Jelly Panda", - "pt": 2, + "id": "Huge Jaguar", + "pt": 1, "sh": true, }, - "value": 277575859, + "value": 19, }, { "category": "Pet", "configData": { - "id": "Pentangelus", - "pt": 1, + "id": "Titanic Stunt Cat", "sh": true, }, - "value": 6825, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Huge Cyborg Dragon", - "pt": 1, + "id": "Inferno Stealth Cat", + "pt": 2, + "sh": true, }, - "value": 352978942, + "value": 4, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Huge Pirate Parrot", - "sh": true, + "id": "Mushroom", }, - "value": 590811639, + "value": 3326, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Ninja Axolotl", - "pt": 1, + "id": "Mushroom", }, - "value": 594, + "value": 369, }, { "category": "Pet", "configData": { - "id": "Huge Police Cat", - "pt": 2, + "id": "Huge Mushroom King", + }, + "value": 524, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Mushroom", }, - "value": 384148479, + "value": 749, }, { "category": "Pet", "configData": { - "id": "Huge Gecko", + "id": "Huge Mushroom King", "pt": 2, }, - "value": 462062442, + "value": 75, }, { "category": "Pet", "configData": { - "id": "Huge Dove", + "id": "Huge Mushroom King", "pt": 1, }, - "value": 340095714, + "value": 150, }, { "category": "Pet", "configData": { - "id": "Huge Kawaii Cat", - "pt": 1, + "id": "Huge Crash Dummy Noob", }, - "value": 640249164, + "value": 8495, }, { "category": "Pet", "configData": { - "id": "Bloo Cat", - "pt": 2, + "id": "Huge Crash Dummy Noob", + "pt": 1, }, - "value": 21798192, + "value": 1249, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Cat", + "id": "Huge Crash Dummy Noob", "pt": 2, - "sh": true, }, - "value": 49000, + "value": 250, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Huge Atomic Axolotl", + "id": "Cannon Critical Booster", + "tn": 1, }, - "value": 170292563, + "value": 11097760, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Stunt Bobcat", + "id": "Confetti Cannon", }, - "value": 502488268, + "value": 11917824, }, { "category": "Pet", "configData": { - "id": "Huge Crystal Dog", - "pt": 2, + "id": "Huge Wild Galaxy Agony", }, - "value": 422422176, + "value": 8730, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Bull", + "id": "Exclusive Egg 44", }, - "value": 573, + "value": 569095, }, { "category": "Pet", "configData": { - "id": "Exquisite Parrot", + "id": "Springy Axolotl", + "pt": 2, }, - "value": 7542888, + "value": 17355130, }, { "category": "Pet", "configData": { - "id": "Kitsune Fox", - "pt": 2, - "sh": true, + "id": "Springy Axolotl", + "pt": 1, }, - "value": 26861, + "value": 33852133, }, { "category": "Pet", "configData": { - "id": "Snowflake Pegasus", - "sh": true, + "id": "Parachute Monkey", + "pt": 1, }, - "value": 3596958, + "value": 38198495, }, { "category": "Pet", "configData": { - "id": "Huge Arcade Cat", + "id": "Springy Axolotl", }, - "value": 178945725, + "value": 94586704, }, { "category": "Pet", "configData": { - "id": "Sloth", - "pt": 1, + "id": "Parachute Monkey", }, - "value": 145, + "value": 321438462, }, { "category": "Pet", "configData": { - "id": "Huge Reindeer Axolotl", + "id": "Parachute Monkey", "pt": 2, }, - "value": 3044139226, + "value": 27187306, }, { "category": "Pet", "configData": { - "id": "Nuclear Dragon", - "pt": 2, + "id": "Springy Axolotl", + "sh": true, + }, + "value": 308517, + }, + { + "category": "Consumable", + "configData": { + "id": "Cannon Corruption", + "tn": 1, }, - "value": 9710, + "value": 4766903, }, { "category": "Pet", "configData": { - "id": "Clover Fairy", + "id": "Titanic Stunt Cat", "pt": 1, + "sh": true, }, - "value": 653, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Huge Scarecrow Cat", - "pt": 2, + "id": "Matryoshka Capybara", }, - "value": 387632032, + "value": 104781, }, { "category": "Pet", "configData": { - "id": "Huge Dragon", - "sh": true, + "id": "Matryoshka Fox", }, - "value": 542850038, + "value": 50974, }, { "category": "Pet", "configData": { - "id": "Huge Elf Dog", - "pt": 2, + "id": "Jetpack Tiger", }, - "value": 371118403, + "value": 105823731436, }, { "category": "Pet", "configData": { - "id": "Tiedye Bear", - "pt": 2, + "id": "Wild Frost Agony", }, - "value": 33736786, + "value": 44186838346, }, { "category": "Pet", "configData": { - "id": "Silver Dragon", + "id": "Jetpack Tiger", + "pt": 1, }, - "value": 84226, + "value": 20245361754, }, { "category": "Pet", "configData": { - "id": "Train Conductor Dog", + "id": "Jetpack Tiger", + "pt": 2, }, - "value": 111, + "value": 14538144199, }, { "category": "Pet", "configData": { - "id": "Tiger", + "id": "Wild Frost Agony", + "pt": 1, }, - "value": 375, + "value": 12428642519, }, { "category": "Pet", "configData": { - "id": "Huge Balloon Dragon", - "sh": true, + "id": "Wild Frost Agony", + "pt": 2, }, - "value": 653360521, + "value": 10335421404, }, { "category": "Pet", "configData": { - "cv": 2, - "id": "Huge Chroma Ink Blob", + "id": "Matryoshka Dino", }, - "value": 82386003, + "value": 20042, }, { "category": "Pet", "configData": { - "id": "Blobfish", + "id": "Matryoshka Fox", + "pt": 2, }, - "value": 58232455, + "value": 2669, }, { "category": "Pet", "configData": { - "id": "Piggy", - "pt": 1, + "id": "Wild Fire Agony", }, - "value": 2506, + "value": 757667652, }, { "category": "Pet", "configData": { - "id": "Cyborg Corgi", - "pt": 1, + "id": "Wild Frost Agony", + "sh": true, }, - "value": 36, + "value": 153549275, }, { "category": "Pet", "configData": { - "id": "Huge Vibrant Toucan", + "id": "Wild Fire Agony", "pt": 2, - "sh": true, }, - "value": 11585151861, + "value": 204063704, }, { "category": "Pet", "configData": { - "id": "Huge Sapphire Phoenix", - "pt": 1, + "id": "Wild Frost Agony", + "pt": 2, "sh": true, }, - "value": 1382714219, + "value": 68377892, }, { "category": "Pet", "configData": { - "id": "Huge Red Fluffy", + "id": "Wild Fire Agony", + "pt": 1, }, - "value": 151578045, + "value": 228179056, }, { "category": "Pet", "configData": { - "id": "Huge Wild Fire Agony", - "pt": 2, + "id": "Jetpack Tiger", + "sh": true, + }, + "value": 319130210, + }, + { + "category": "Misc", + "configData": { + "id": "Black Hole Cannon", }, - "value": 1553254759, + "value": 3088, }, { "category": "Pet", "configData": { - "id": "Unicorn Kitten", + "id": "Jetpack Tiger", "pt": 2, "sh": true, }, - "value": 893496, + "value": 86214755, }, { "category": "Pet", "configData": { - "id": "DJ Panda", - "pt": 1, - "sh": true, + "id": "Titanic Nyan Cat", }, - "value": 20, + "value": 2459, }, { "category": "Pet", "configData": { - "id": "Ninja Cat", - "pt": 2, - "sh": true, + "id": "Huge Nyan Cat", }, - "value": 1358723, + "value": 26334, }, { "category": "Pet", "configData": { - "id": "Huge Inferno Dominus", + "id": "Huge Nyan Cat", "pt": 2, }, - "value": 1111238747, + "value": 3068, }, { "category": "Pet", "configData": { - "id": "Cyborg Corgi", - "pt": 2, + "id": "Huge Matryoshka Capybara", }, - "value": 310, + "value": 7620, }, { "category": "Pet", "configData": { - "id": "Huge Vibrant Toucan", + "id": "Jetpack Tiger", "pt": 1, "sh": true, }, - "value": 1069093866, + "value": 96439510, }, { "category": "Pet", "configData": { - "id": "Huge Sapphire Phoenix", - "pt": 2, + "id": "Parachute Monkey", + "sh": true, }, - "value": 913642474, + "value": 892788, }, { "category": "Pet", "configData": { - "id": "Archangel Cat", + "id": "Parachute Monkey", "pt": 2, "sh": true, }, - "value": 349762, + "value": 124808, }, { "category": "Pet", "configData": { - "id": "Black Hole Axolotl", + "id": "Parachute Monkey", + "pt": 1, + "sh": true, }, - "value": 3437152, + "value": 179290, }, { "category": "Pet", "configData": { - "id": "Patrick Star", - "pt": 2, + "id": "Wild Frost Agony", + "pt": 1, "sh": true, }, - "value": 609824000, + "value": 60126021, }, { "category": "Pet", "configData": { - "id": "Huge Tech Chest Mimic", - "sh": true, + "id": "Huge Wild Galaxy Agony", + "pt": 1, }, - "value": 504741907, + "value": 4039, }, { "category": "Pet", "configData": { - "id": "Huge Ninja Axolotl", - "sh": true, + "id": "Wild Galaxy Agony", + "pt": 2, }, - "value": 559601138, + "value": 409734, }, { "category": "Pet", "configData": { - "id": "Stealth Bobcat", - "sh": true, + "id": "Huge Nyan Cat", + "pt": 1, }, - "value": 24762049, + "value": 11011, }, { "category": "Pet", "configData": { - "id": "Balloon Dragon", + "id": "Matryoshka Dino", "pt": 2, - "sh": true, }, - "value": 2145224301, + "value": 1062, }, { "category": "Pet", "configData": { - "id": "Huge Robber Pug", + "id": "Matryoshka Capybara", + "sh": true, }, - "value": 35865731, + "value": 2528, }, { "category": "Pet", "configData": { - "id": "Huge M-10 PROTOTYPE", + "id": "Springy Axolotl", + "pt": 1, "sh": true, }, - "value": 819744194, + "value": 158260, }, { "category": "Pet", "configData": { - "id": "Huge Phantom Wolf", + "id": "Huge Wild Galaxy Agony", "pt": 2, }, - "value": 105856000, + "value": 1187, }, { "category": "Pet", "configData": { - "id": "Arctic Fox", + "id": "Wild Galaxy Agony", + }, + "value": 1603493, + }, + { + "category": "Pet", + "configData": { + "id": "Springy Axolotl", "pt": 2, "sh": true, }, - "value": 100000, + "value": 104615, }, { "category": "Pet", "configData": { - "id": "Huge Grinch Cat", + "id": "Matryoshka Capybara", "pt": 2, }, - "value": 954943453, + "value": 4276, }, { "category": "Pet", "configData": { - "id": "Devil Dominus", - "pt": 1, + "id": "Matryoshka Fox", "sh": true, }, - "value": 5313759, + "value": 1707, }, { "category": "Pet", "configData": { - "id": "Exquisite Elephant", - "sh": true, + "id": "Huge Matryoshka Dino", }, - "value": 29663201, + "value": 2076, }, { "category": "Pet", "configData": { - "id": "Scorpion", - "sh": true, + "id": "Titanic Matryoshka Cat", }, - "value": 957, + "value": 500, }, { "category": "Pet", "configData": { - "id": "Tiedye Dragon", - "pt": 2, + "id": "Matryoshka Dino", "sh": true, }, - "value": 72288001, + "value": 705, }, { "category": "Pet", "configData": { - "id": "Inferno Cat", - "pt": 2, + "id": "Wild Galaxy Agony", + "pt": 1, }, - "value": 69210501, + "value": 443666, }, { "category": "Pet", "configData": { - "id": "Huge Knife Cat", + "id": "Matryoshka Fox", "pt": 2, + "sh": true, }, - "value": 796886404, + "value": 108, }, { "category": "Pet", "configData": { - "id": "Huge Hologram Shark", + "id": "Huge Matryoshka Capybara", "sh": true, }, - "value": 454417647, + "value": 314, }, { "category": "Pet", "configData": { - "id": "Exquisite Cat", + "id": "Matryoshka Capybara", + "pt": 2, "sh": true, }, - "value": 29127419, + "value": 139, }, { "category": "Pet", "configData": { - "id": "DJ Panda", + "id": "Huge Nyan Cat", "sh": true, }, - "value": 2013, + "value": 660, }, { "category": "Pet", "configData": { - "id": "Hamster", - "pt": 2, + "id": "Huge Wild Galaxy Agony", + "sh": true, }, - "value": 1898, + "value": 231, }, { "category": "Pet", "configData": { - "id": "Relic Cyclops", + "id": "Huge Wild Galaxy Agony", "pt": 1, + "sh": true, }, - "value": 244, + "value": 53, }, { "category": "Pet", "configData": { - "id": "Safari Dog", + "id": "Titanic Nyan Cat", "pt": 1, }, - "value": 145, + "value": 1065, }, { "category": "Pet", "configData": { - "id": "Flamortuus", + "id": "Wild Fire Agony", "pt": 1, "sh": true, }, - "value": 2, + "value": 974198, }, { "category": "Pet", "configData": { - "id": "White Bunny", - "pt": 1, - "sh": true, + "id": "Titanic Nyan Cat", + "pt": 2, }, - "value": 10000, + "value": 261, }, { "category": "Pet", "configData": { - "id": "Huge King Cobra", - "pt": 1, + "id": "Huge Matryoshka Dino", + "pt": 2, }, - "value": 230167590, + "value": 66, }, { "category": "Pet", "configData": { - "id": "Frost Rabbit", - "pt": 1, + "id": "Matryoshka Dino", + "pt": 2, + "sh": true, }, - "value": 880, + "value": 34, }, { "category": "Pet", "configData": { - "id": "Huge Pristine Snake", + "id": "Wild Fire Agony", "pt": 2, "sh": true, }, - "value": 4256703982, + "value": 1320190, }, { "category": "Pet", "configData": { - "id": "Huge Stealth Bobcat", + "id": "Huge Wild Galaxy Agony", + "pt": 2, "sh": true, }, - "value": 342953646, + "value": 14, }, { "category": "Pet", "configData": { - "id": "Colorful Firefly", - "pt": 1, + "id": "Wild Fire Agony", + "sh": true, }, - "value": 1040, + "value": 2312396, }, { "category": "Pet", "configData": { - "id": "Atlantean Dolphin", - "sh": true, + "id": "Huge Parachute Monkey", }, - "value": 15464598, + "value": 18287, }, { "category": "Pet", "configData": { - "id": "Huge Capybara", - "pt": 2, + "id": "Huge Nyan Cat", + "pt": 1, + "sh": true, }, - "value": 1676303391, + "value": 132, }, { "category": "Pet", "configData": { - "id": "Ronin Panda", + "id": "Huge Matryoshka Capybara", "pt": 2, - "sh": true, }, - "value": 591410, + "value": 210, }, { "category": "Pet", "configData": { - "id": "Present Chest Mimic", + "id": "Titanic Nyan Cat", + "sh": true, }, - "value": 10239112, + "value": 61, }, { "category": "Pet", "configData": { - "id": "Painter Dog", - "pt": 1, + "id": "Gargantuan Matryoshka Bear", }, - "value": 1250, + "value": 56, }, { "category": "Pet", "configData": { - "id": "North Pole Bunny", + "id": "Huge Parachute Monkey", "pt": 2, }, - "value": 2201, + "value": 1699, }, { "category": "Pet", "configData": { - "id": "Huge Cyborg Dragon", - "sh": true, + "id": "Titanic Matryoshka Cat", + "pt": 2, }, - "value": 889942847, + "value": 18, }, { "category": "Pet", "configData": { - "id": "Samurai Dragon", - "pt": 1, + "id": "Huge Wild Corrupt Agony", }, - "value": 3576, + "value": 31636, }, { "category": "Pet", "configData": { - "id": "Huge Sailor Shark", - "pt": 1, + "id": "Huge Nyan Cat", + "pt": 2, + "sh": true, }, - "value": 288335272, + "value": 30, }, { "category": "Pet", "configData": { - "id": "Huge Party Cat", + "id": "Huge Parachute Monkey", "pt": 1, }, - "value": 286445558, + "value": 4630, }, { "category": "Pet", "configData": { - "id": "Huge Hell Rock", - "pt": 2, - "sh": true, + "id": "Huge Bobcat", }, - "value": 2137360016, + "value": 9962, }, { "category": "Pet", "configData": { - "id": "Jolly Penguin", - "pt": 1, + "id": "Huge Parachute Monkey", "sh": true, }, - "value": 975, + "value": 386, }, { "category": "Pet", "configData": { - "id": "Jester Dog", - "pt": 2, + "id": "Huge Matryoshka Dino", "sh": true, }, - "value": 566718957, + "value": 87, }, { "category": "Pet", "configData": { - "id": "Huge Super Corgi", + "id": "Huge Wild Corrupt Agony", "pt": 1, }, - "value": 264628661, + "value": 6468, }, { "category": "Pet", "configData": { - "id": "Huge Empyrean Agony", + "id": "Wild Galaxy Agony", "pt": 2, + "sh": true, }, - "value": 818148672, + "value": 7472, }, { "category": "Pet", "configData": { - "id": "Ice Snowman", - "pt": 2, + "id": "Titanic Wild Frost Agony", }, - "value": 369, + "value": 299, }, { "category": "Pet", "configData": { - "id": "Huge Mermaid Cat", + "id": "Wild Galaxy Agony", "pt": 1, - }, - "value": 41306350, - }, - { - "category": "Pet", - "configData": { - "id": "Cloud Dog", "sh": true, }, - "value": 9570, + "value": 7142, }, { "category": "Pet", "configData": { - "id": "Knight Beagle", + "id": "Huge Bobcat", "pt": 1, - "sh": true, }, - "value": 29305, + "value": 2374, }, { "category": "Pet", "configData": { - "id": "Huge Party Cat", - "pt": 2, + "id": "Huge Wild Frost Agony", }, - "value": 698327923, + "value": 146255, }, { "category": "Pet", "configData": { - "id": "Dove", + "id": "Huge Wild Frost Agony", "pt": 1, }, - "value": 1113, + "value": 29126, }, { "category": "Pet", "configData": { - "id": "Huge Atlantean Orca", + "id": "Huge Wild Frost Agony", "pt": 2, }, - "value": 1167229956, + "value": 5913, }, { "category": "Pet", "configData": { - "id": "Huge Ghost", - "pt": 1, + "id": "Titanic Matryoshka Cat", + "sh": true, }, - "value": 73299906, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Huge Anime Unicorn", - "pt": 2, + "id": "Huge Wild Frost Agony", + "pt": 1, + "sh": true, }, - "value": 890752570, + "value": 228, }, { "category": "Pet", "configData": { - "id": "Abstract Dragon", + "id": "Huge Wild Frost Agony", + "sh": true, }, - "value": 137, + "value": 1180, }, { "category": "Pet", "configData": { - "id": "Ninja Raccoon", - "pt": 2, - "sh": true, + "id": "Titanic Wild Frost Agony", + "pt": 1, }, - "value": 186662, + "value": 57, }, { "category": "Pet", "configData": { - "id": "Huge Dominus Lucki", - "pt": 1, + "id": "Huge Wild Corrupt Agony", + "pt": 2, }, - "value": 324777524, + "value": 1300, }, { "category": "Pet", "configData": { - "id": "Tiedye Axolotl", + "id": "Huge Matryoshka Dino", "pt": 2, + "sh": true, }, - "value": 37678565, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Huge Pristine Snake", + "id": "Huge Wild Frost Agony", "pt": 2, + "sh": true, }, - "value": 926643614, + "value": 50, }, { "category": "Pet", "configData": { - "id": "Tech Bull", + "id": "Titanic Nyan Cat", "pt": 1, + "sh": true, }, - "value": 795, + "value": 15, }, { "category": "Pet", "configData": { - "id": "Huge Party Dog", - "pt": 2, + "id": "Wild Galaxy Agony", + "sh": true, }, - "value": 895159986, + "value": 1632, }, { "category": "Pet", "configData": { - "id": "Huge Tiedye Cat", - "pt": 2, + "id": "Huge Parachute Monkey", + "pt": 1, + "sh": true, }, - "value": 708246339, + "value": 111, }, { "category": "Pet", "configData": { - "id": "Plasma Bull", + "id": "Titanic Wild Frost Agony", "pt": 2, - "sh": true, }, - "value": 2536, + "value": 18, }, { "category": "Pet", "configData": { - "id": "Huge Clover Dragon", + "id": "Huge Parachute Monkey", "pt": 2, + "sh": true, }, - "value": 3489126048, + "value": 36, }, { "category": "Pet", "configData": { - "id": "Huge Party Crown Ducky", + "id": "Huge Wild Corrupt Agony", + "pt": 1, "sh": true, }, - "value": 2096120608, + "value": 45, }, { "category": "Pet", "configData": { - "id": "Knight Beagle", - "pt": 2, + "id": "Huge Wild Corrupt Agony", "sh": true, }, - "value": 38271, + "value": 238, }, { "category": "Pet", "configData": { - "id": "Huge Squirrel", + "id": "Huge Bobcat", "pt": 2, }, - "value": 294708863, + "value": 543, }, { "category": "Pet", "configData": { - "id": "Frostbyte Cat", + "id": "Titanic Wild Frost Agony", "pt": 1, "sh": true, }, - "value": 5000, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Ancient Dragon", + "id": "Titanic Nyan Cat", "pt": 2, + "sh": true, }, - "value": 37351, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Luchador Eagle", + "id": "Titanic Wild Corrupt Agony", }, - "value": 8225524, + "value": 65, }, { "category": "Pet", "configData": { - "id": "Huge Bear", + "id": "Huge Wild Corrupt Agony", + "pt": 2, "sh": true, }, - "value": 1023798570, + "value": 14, }, { "category": "Pet", "configData": { - "id": "Huge Comet Cyclops", - "sh": true, + "id": "Titanic Bobcat", }, - "value": 518076255, + "value": 204, }, { "category": "Pet", "configData": { - "id": "Electric Fox", + "id": "Titanic Wild Corrupt Agony", "pt": 1, }, - "value": 1626, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Unicorn Kitten", - "pt": 1, + "id": "Titanic Wild Corrupt Agony", + "pt": 2, }, - "value": 337, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Zombie Deer", - "pt": 1, + "id": "Huge Matryoshka Capybara", + "pt": 2, "sh": true, }, - "value": 4910, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Cyber Raccoon", - "pt": 1, + "id": "Titanic Wild Frost Agony", "sh": true, }, - "value": 1000000, + "value": 2, }, { "category": "Pet", "configData": { - "cv": 4, - "id": "Huge Chroma Swan", - "pt": 2, + "id": "Huge Bobcat", + "sh": true, }, - "value": 527158255, + "value": 77, }, { "category": "Pet", "configData": { - "id": "Huge Pop Cat", + "cv": 5, + "id": "Huge Chroma Doodle Axolotl", "pt": 2, "sh": true, }, - "value": 304000000, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Huge Pinata Cat", - "pt": 2, + "id": "Titanic Wild Corrupt Agony", + "pt": 1, + "sh": true, }, - "value": 10295182159, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Huge Green Balloon Cat", - "sh": true, + "id": "Huge Jetpack Tiger", }, - "value": 633864405, + "value": 6988, }, { "category": "Pet", "configData": { - "id": "Fairy", - "pt": 2, - "sh": true, + "id": "Huge Jetpack Tiger", + "pt": 1, }, - "value": 40000, + "value": 2499, }, { "category": "Pet", "configData": { - "id": "Huge Peacock", - "pt": 1, + "id": "Huge Jetpack Tiger", + "pt": 2, + }, + "value": 498, + }, + { + "category": "Consumable", + "configData": { + "id": "Tower Luck Booster", + "tn": 1, }, - "value": 527225477, + "value": 18322367, }, { "category": "Pet", "configData": { - "id": "Pixie Squirrel", + "id": "Valentines Bee", }, - "value": 958, + "value": 7912929938, }, { "category": "Pet", "configData": { - "id": "Starry Owl", - "sh": true, + "id": "Valentines Bee", + "pt": 2, }, - "value": 1486, + "value": 550189671, }, { "category": "Pet", "configData": { - "id": "Huge Shadow Dominus", - "sh": true, + "id": "Valentines Bee", + "pt": 1, }, - "value": 153569390, + "value": 571965421, }, { "category": "Pet", "configData": { - "id": "Abyssal Axolotl", - "pt": 2, + "id": "Pink Poodle", }, - "value": 2328, + "value": 3586881897, }, { "category": "Pet", "configData": { - "id": "Mosaic Lamb", + "id": "Pink Poodle", "pt": 1, - "sh": true, }, - "value": 64032338, + "value": 337486999, }, { "category": "Pet", "configData": { - "cv": 6, - "id": "Chroma Tiger", + "id": "Lovemelon", }, - "value": 30150, + "value": 72217, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Rabbit", - "sh": true, + "id": "Tower Stacking Booster", + "tn": 1, }, - "value": 345, + "value": 18466757, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Corrupt Octopus", - "pt": 2, + "id": "Tower 10 Stack", + "tn": 1, }, - "value": 2288, + "value": 319101, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Garden Cat", - "sh": true, + "id": "Tower 10 Stack", + "tn": 2, }, - "value": 1795, + "value": 70284, + }, + { + "category": "Egg", + "configData": { + "id": "Valentines Present", + }, + "value": 777979, }, { "category": "Pet", "configData": { - "id": "Fluffy Cat", - "sh": true, + "id": "Cupcake Hamster", }, - "value": 441, + "value": 15248022205, }, { "category": "Pet", "configData": { - "id": "Broomstick Corgi", + "id": "Cupcake Hamster", "pt": 1, }, - "value": 925, + "value": 1223697948, }, { "category": "Pet", "configData": { - "id": "Starry Owl", + "id": "Pink Poodle", "pt": 2, }, - "value": 2280, + "value": 432815554, }, { "category": "Pet", "configData": { - "id": "Old Wizard Dragon", + "id": "Pink Poodle", + "pt": 1, "sh": true, }, - "value": 450000000, + "value": 1196633, }, { "category": "Pet", "configData": { - "id": "Samurai Dragon", - "sh": true, + "id": "Cupcake Hamster", + "pt": 2, }, - "value": 1473, + "value": 1323002218, }, { "category": "Pet", "configData": { - "id": "Pixie Squirrel", - "pt": 2, + "id": "Valentines Bee", + "sh": true, }, - "value": 597, + "value": 20441052, }, { "category": "Pet", "configData": { - "id": "Jester Dog", - "pt": 2, + "id": "Valentines Dominus", }, - "value": 10343435, + "value": 130046, }, { "category": "Pet", "configData": { - "id": "Hell Scorpion", + "id": "Valentines Dominus", "sh": true, }, - "value": 146, + "value": 3429, }, { "category": "Pet", "configData": { - "id": "Blossom Bunny", + "id": "Valentines Bee", + "pt": 1, "sh": true, }, - "value": 888, + "value": 2128143, }, { "category": "Pet", "configData": { - "id": "Queen Piggy", + "id": "Pink Poodle", "sh": true, }, - "value": 648, + "value": 10294696, }, { "category": "Pet", "configData": { - "id": "Willow Wisp", - "pt": 1, + "id": "Valentines Bee", + "pt": 2, + "sh": true, }, - "value": 239, + "value": 1982647, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Moose", + "id": "Valentines", }, - "value": 127, + "value": 501256, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Sketch Corgi", - "pt": 2, - "sh": true, + "id": "Valentines Heart", }, - "value": 4302400023, + "value": 1456252175, }, { "category": "Pet", "configData": { - "id": "Rock Monkey", + "id": "Pink Poodle", "pt": 2, + "sh": true, }, - "value": 1143, + "value": 1731579, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Huge Balloon Cat", - "sh": true, + "id": "Valentines", }, - "value": 581366840, + "value": 498578, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Bear", + "id": "Love Gift", }, - "value": 1239, + "value": 174463960, }, { "category": "Pet", "configData": { - "id": "Huge Zebra", - "pt": 1, + "id": "Huge Rose Cat", }, - "value": 47247659, + "value": 6791, }, { "category": "Pet", "configData": { - "id": "Huge Pixel Corgi", - "sh": true, + "id": "Lovemelon", + "pt": 2, }, - "value": 359228280, + "value": 4451, }, { "category": "Pet", "configData": { - "id": "Huge Peppermint Angelus", + "id": "Valentines Angelus", }, - "value": 158343229, + "value": 32783, }, { "category": "Pet", "configData": { - "cv": 2, - "id": "Chroma Phoenix", + "id": "Huge Valentines Dominus", }, - "value": 6312, + "value": 12494, }, { "category": "Pet", "configData": { - "id": "Frostbyte Yeti", + "id": "Huge Rose Cat", + "pt": 2, }, - "value": 2906, + "value": 1055, }, { "category": "Pet", "configData": { - "id": "Electric Corgi", + "id": "Huge Valentines Angelus", }, - "value": 830, + "value": 3395, }, { "category": "Pet", "configData": { - "id": "Shadow Dragon", + "id": "Valentines Angelus", + "sh": true, }, - "value": 309, + "value": 1058, }, { "category": "Pet", "configData": { - "id": "Tiedye Bear", - "pt": 1, + "id": "Valentines Dominus", + "pt": 2, }, - "value": 10555544, + "value": 5708, }, { "category": "Pet", "configData": { - "id": "Woodpecker", + "id": "Lovemelon", "sh": true, }, - "value": 1426, + "value": 2544, }, { "category": "Pet", "configData": { - "id": "Bear", + "id": "Huge Rose Cat", "pt": 1, }, - "value": 7264, + "value": 3653, }, { "category": "Pet", "configData": { - "id": "Sunflower Lion", + "id": "Valentines Angelus", "pt": 2, }, - "value": 625, + "value": 2005, }, { "category": "Pet", "configData": { - "id": "Huge Santa Dragon", + "id": "Valentines Bear", }, - "value": 243553082, + "value": 18279924433, }, { "category": "Pet", "configData": { - "id": "Cool Corgi", + "id": "Huge Valentines Dominus", "pt": 2, - "sh": true, }, - "value": 188688362, + "value": 407, }, { "category": "Pet", "configData": { - "id": "Titanic Reindeer", + "id": "Cupcake Hamster", + "sh": true, }, - "value": 12217768699, + "value": 43405728, }, { "category": "Pet", "configData": { - "id": "Huge Cosmic Axolotl", - "pt": 2, + "id": "Valentines Bear", + "pt": 1, }, - "value": 847136580, + "value": 1616424720, }, { "category": "Pet", "configData": { - "id": "Fairy Bee", + "id": "Cupcake Hamster", "pt": 1, + "sh": true, }, - "value": 234, + "value": 4456962, }, { "category": "Pet", "configData": { - "id": "Huge Strawberry Cow", - "pt": 1, - "sh": true, + "id": "Valentines Bear", + "pt": 2, }, - "value": 2494915197, + "value": 1990484887, }, { "category": "Pet", "configData": { - "id": "Atlantean Stingray", + "id": "Cupcake Hamster", "pt": 2, "sh": true, }, - "value": 285013403, + "value": 5093017, }, { "category": "Pet", "configData": { - "id": "Huge Present Cat", + "id": "Huge Rose Cat", + "sh": true, }, - "value": 4439254088, + "value": 200, }, { "category": "Pet", "configData": { - "id": "Tiedye Bunny", - "sh": true, + "id": "Huge Valentines Unicorn", }, - "value": 21184442, + "value": 41954, }, { "category": "Pet", "configData": { - "id": "Wizard Cat", + "id": "Huge Valentines Dominus", + "sh": true, }, - "value": 873, + "value": 511, }, { "category": "Pet", "configData": { - "id": "Rose Butterfly", + "id": "Huge Rose Cat", + "pt": 1, "sh": true, }, - "value": 1123, + "value": 57, }, { "category": "Pet", "configData": { - "id": "Huge Willow Wisp", + "id": "Valentines Angelus", + "pt": 2, "sh": true, }, - "value": 313070299, + "value": 56, }, { "category": "Pet", "configData": { - "id": "Woodpecker", + "id": "Valentines Dominus", "pt": 2, + "sh": true, }, - "value": 236, + "value": 230, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Bee", + "id": "Huge Valentines Unicorn", + "pt": 2, }, - "value": 267, + "value": 1687, }, { "category": "Pet", "configData": { - "id": "Frostbyte Snowman", - "pt": 2, + "id": "Valentines Bear", + "pt": 1, "sh": true, }, - "value": 704245, + "value": 6131326, }, { "category": "Pet", "configData": { - "id": "Colorful Rock", + "id": "Huge Valentines Unicorn", "pt": 1, }, - "value": 235, + "value": 8413, }, { "category": "Pet", "configData": { - "id": "Panda", - "pt": 1, + "id": "Titanic M-14 PROTOTYPE", }, - "value": 4158, + "value": 852, }, { "category": "Pet", "configData": { - "id": "Painter Cat", + "id": "Lovemelon", "pt": 2, + "sh": true, }, - "value": 67, + "value": 197, }, { "category": "Pet", "configData": { - "id": "Lamb", + "id": "Huge Party Panda", + "pt": 2, + "sh": true, }, - "value": 296, + "value": 63, }, { "category": "Pet", "configData": { - "id": "Blue Slime", - "pt": 1, + "id": "Huge Valentines Angelus", "sh": true, }, - "value": 110000, + "value": 123, }, { "category": "Pet", "configData": { - "id": "Princess Dragon", - "pt": 2, + "id": "Huge Valentines Bear", }, - "value": 380, + "value": 182454, }, { "category": "Pet", "configData": { - "id": "Fluffy Cat", + "id": "Titanic M-14 PROTOTYPE", "pt": 2, }, - "value": 323, + "value": 28, }, { "category": "Pet", "configData": { - "id": "Woodpecker", + "id": "Valentines Bear", + "sh": true, }, - "value": 205, + "value": 55066718, }, { "category": "Pet", "configData": { - "id": "Robot", - "pt": 2, - "sh": true, + "id": "Huge Valentines Bear", + "pt": 1, }, - "value": 900, + "value": 19122, }, { "category": "Pet", "configData": { - "id": "Unicorn Kitten", + "id": "Valentines Bear", + "pt": 2, + "sh": true, }, - "value": 106, + "value": 8290673, }, { "category": "Pet", "configData": { - "id": "Abyssal Seal", - "pt": 1, + "id": "Love Cow", }, - "value": 1187, + "value": 122990622027, }, { "category": "Pet", "configData": { - "id": "Pixie Fox", + "id": "Love Cow", "pt": 2, }, - "value": 908, + "value": 22026639134, }, { "category": "Pet", "configData": { - "id": "Dog", - "pt": 2, - "sh": true, + "id": "Love Cow", + "pt": 1, }, - "value": 299739, + "value": 13113973322, }, { "category": "Pet", "configData": { - "id": "Kawaii Tiger", + "id": "Huge Valentines Dominus", + "pt": 2, "sh": true, }, - "value": 100000000, + "value": 17, }, { "category": "Pet", "configData": { - "id": "Samurai Bull", + "id": "Titanic M-14 PROTOTYPE", "sh": true, }, - "value": 339, + "value": 26, }, { "category": "Pet", "configData": { - "id": "Brain", + "id": "Huge Valentines Angelus", + "pt": 2, }, - "value": 1823, + "value": 124, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Lemur", - "sh": true, + "id": "Huge Valentines Bear", + "pt": 2, }, - "value": 9728, + "value": 18527, }, { "category": "Pet", "configData": { - "id": "Dino", + "id": "Love Cow", + "pt": 1, "sh": true, }, - "value": 576, + "value": 63715810, }, { "category": "Pet", "configData": { - "id": "Hound of Hades", + "id": "Titanic Party Panda", "pt": 2, - "sh": true, }, - "value": 1638400, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Calico Cat", - "pt": 1, - "sh": true, + "id": "Gargantuan Matryoshka Bear", + "pt": 2, }, - "value": 400000, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Huge Marshmallow Agony", + "id": "Love Cow", "pt": 2, "sh": true, }, - "value": 1750000000, + "value": 120365384, }, { "category": "Pet", "configData": { - "id": "White Tiger", + "id": "Love Cow", + "sh": true, }, - "value": 464, + "value": 485332922, }, { "category": "Pet", "configData": { - "id": "Noobortuus", + "id": "Valentines Owl", + "pt": 2, }, - "value": 168971425, + "value": 9156176471, }, { "category": "Pet", "configData": { - "id": "Fairy Ladybug", - "sh": true, + "id": "Valentines Owl", + "pt": 1, }, - "value": 770, + "value": 5287034815, }, { "category": "Pet", "configData": { - "id": "Queen Piggy", - "pt": 1, + "id": "Valentines Owl", }, - "value": 573, + "value": 42850265227, }, { "category": "Pet", "configData": { - "id": "Holiday Pegasus", + "id": "Valentines Owl", + "pt": 1, "sh": true, }, - "value": 9543098, + "value": 26398314, }, { "category": "Pet", "configData": { - "id": "Huge Mosaic Griffin", + "id": "Love Lion", "pt": 2, }, - "value": 446428617, - }, - { - "category": "Pet", - "configData": { - "id": "Reindeer Corgi", - }, - "value": 9985, + "value": 2845231863, }, { "category": "Pet", "configData": { - "id": "Starry Owl", - "pt": 1, + "id": "Love Lion", }, - "value": 251, + "value": 12458878198, }, { "category": "Pet", "configData": { - "id": "Three Headed Dragon", + "id": "Love Lion", "pt": 1, - "sh": true, }, - "value": 15000, + "value": 1602925327, }, { "category": "Pet", "configData": { - "id": "Plasma Bull", - "pt": 1, + "id": "Valentines Owl", "sh": true, }, - "value": 2340, + "value": 177682173, }, { "category": "Pet", "configData": { - "id": "Huge Valkyrie Dog", + "id": "Love Lion", "pt": 2, "sh": true, }, - "value": 11039999980, + "value": 15887899, }, { "category": "Pet", "configData": { - "id": "Fairy", + "id": "Rose Cat", }, - "value": 828, + "value": 74541717, }, { "category": "Pet", "configData": { - "id": "Huge Egg Dino", - "pt": 1, + "id": "Rose Cat", + "pt": 2, }, - "value": 44156929, + "value": 16293158, }, { "category": "Pet", "configData": { - "id": "Green Fish", - "pt": 2, + "id": "Love Lion", + "sh": true, }, - "value": 4173, + "value": 48250989, }, { "category": "Pet", "configData": { - "id": "Teddy Bear", + "id": "Rose Cat", "pt": 1, }, - "value": 1319, + "value": 9594817, }, { "category": "Pet", "configData": { - "id": "Huge Atomic Forged Shark", + "id": "Love Lion", "pt": 1, "sh": true, }, - "value": 5683615931, + "value": 7342562, }, { "category": "Pet", "configData": { - "id": "Princess Dragon", - "pt": 1, + "id": "Valentines Unicorn", }, - "value": 208, + "value": 785547, }, { "category": "Pet", "configData": { - "id": "Blossom Bunny", - "pt": 1, + "id": "Valentines Owl", + "pt": 2, + "sh": true, }, - "value": 1544, + "value": 53115920, }, { "category": "Pet", "configData": { - "id": "Vibrant Cobra", - "pt": 1, + "id": "Valentines Unicorn", + "pt": 2, }, - "value": 1580, + "value": 156200, }, { "category": "Pet", "configData": { - "id": "Present Cat", - "pt": 2, + "id": "Huge Valentines Bear", + "sh": true, }, - "value": 14464640, + "value": 3683, }, { "category": "Pet", "configData": { - "id": "Huge Cyborg Cat", + "id": "Valentines Unicorn", + "pt": 1, }, - "value": 142389907, + "value": 151477, }, { "category": "Pet", "configData": { - "id": "Ronin Panda", + "id": "Rose Cat", "pt": 1, + "sh": true, }, - "value": 1727, + "value": 102007, }, { "category": "Pet", "configData": { - "id": "Koi Fish", + "id": "Huge Valentines Bear", + "pt": 1, "sh": true, }, - "value": 3068, + "value": 401, }, { "category": "Pet", "configData": { - "id": "Devil Dominus", + "id": "Rose Cat", "pt": 2, "sh": true, }, - "value": 10416604, + "value": 112338, }, { "category": "Pet", "configData": { - "id": "Hologram Tiger", + "id": "Huge Valentines Unicorn", + "sh": true, }, - "value": 5010566, + "value": 319, }, { "category": "Pet", "configData": { - "id": "Huge Mermaid Cat", - "sh": true, + "id": "Huge Love Corgi", + "pt": 2, }, - "value": 133390657, + "value": 3951, }, { "category": "Pet", "configData": { - "cv": 4, - "id": "Chroma Tiger", + "id": "Rose Cat", "sh": true, }, - "value": 36018880, + "value": 274907, }, { "category": "Pet", "configData": { - "id": "Wizard Westie", + "id": "Huge Rose Cat", "pt": 2, "sh": true, }, - "value": 1387, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Fire Dog", + "id": "Huge Valentines Bear", + "pt": 2, + "sh": true, }, - "value": 2356, + "value": 389, }, { "category": "Pet", "configData": { - "id": "Huge Comet Agony", - "sh": true, + "id": "Huge Love Corgi", + "pt": 1, }, - "value": 4531957990, + "value": 4131, }, { "category": "Pet", "configData": { - "id": "Titanic Sock Cat", + "id": "Huge Love Corgi", }, - "value": 12009104697, + "value": 36423, }, { "category": "Pet", "configData": { - "id": "Huge Angelus", - "pt": 2, + "id": "Valentines Unicorn", + "pt": 1, + "sh": true, }, - "value": 5060000072, + "value": 2944, }, { "category": "Pet", "configData": { - "id": "King Cow", + "id": "Huge Valentines Unicorn", + "pt": 1, + "sh": true, }, - "value": 202, + "value": 52, }, { "category": "Pet", "configData": { - "id": "Divinus", + "id": "Valentines Unicorn", "pt": 2, "sh": true, }, - "value": 1146920, + "value": 627, }, { "category": "Pet", "configData": { - "id": "Huge Hoverboard Cat", + "id": "Huge Angel Cat", + "pt": 1, "sh": true, }, - "value": 695370254, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Snow Dog", - "pt": 1, + "id": "Huge Love Corgi", + "sh": true, }, - "value": 206, + "value": 731, }, { "category": "Pet", "configData": { - "cv": 5, - "id": "Huge Chroma Ink Blob", + "id": "Huge Love Corgi", "pt": 2, "sh": true, }, - "value": 3700000003, + "value": 93, }, { "category": "Pet", "configData": { - "id": "Pajamas Dog", + "id": "Valentines Unicorn", "sh": true, }, - "value": 2008, + "value": 72, }, { "category": "Pet", "configData": { - "id": "Rock Dog", + "id": "Huge Love Corgi", "pt": 1, "sh": true, }, - "value": 10, + "value": 92, }, { "category": "Pet", "configData": { - "id": "Masked Fox", + "id": "Titanic Love Corgi", "pt": 1, }, - "value": 3987, + "value": 94, }, { "category": "Pet", "configData": { - "id": "Fluffy Cat", + "id": "Titanic Love Corgi", }, - "value": 219, + "value": 750, }, { "category": "Pet", "configData": { - "id": "Huge Lumi Axolotl", + "id": "Titanic Love Corgi", "pt": 2, }, - "value": 793166706, + "value": 102, }, { "category": "Pet", "configData": { - "id": "DJ Panda", + "id": "Huge Valentines Unicorn", "pt": 2, "sh": true, }, - "value": 4432, + "value": 16, }, { "category": "Pet", "configData": { - "id": "Wicked Empyrean Dominus", + "id": "Huge Bobcat", "pt": 2, "sh": true, }, - "value": 487794, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Ninja Raccoon", + "id": "Huge Holographic Monkey", "pt": 1, }, - "value": 194, + "value": 150, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Pirate Panda", + "id": "Holographic", }, - "value": 41, + "value": 3704, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "cv": 2, - "id": "Huge Chroma Phoenix", - "sh": true, + "id": "Holographic", }, - "value": 901276498, + "value": 748, }, { "category": "Pet", "configData": { - "id": "Ronin Panda", + "id": "Huge Holographic Monkey", }, - "value": 343, + "value": 523, }, { "category": "Pet", "configData": { - "id": "Royal Cloud Corgi", - "sh": true, + "id": "Huge Holographic Monkey", + "pt": 2, }, - "value": 13536, + "value": 75, }, { "category": "Pet", "configData": { - "id": "Angel Cat", - "sh": true, + "id": "Titanic Bobcat", + "pt": 1, }, - "value": 2615, + "value": 41, }, { "category": "Pet", "configData": { - "id": "Ninja Raccoon", - "sh": true, + "id": "Huge Love Lion", + "pt": 1, }, - "value": 204, + "value": 2496, }, { "category": "Pet", "configData": { - "id": "Scary Corgi", + "id": "Huge Love Lion", "pt": 2, }, - "value": 247, + "value": 500, }, { "category": "Pet", "configData": { - "id": "Fox", - "sh": true, + "id": "Huge Love Lion", }, - "value": 7813, + "value": 6993, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Titanic Monkey", + "id": "Tower Raffle Ticket", }, - "value": 12620499520, + "value": 4578118880, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Gummy Fox", - "pt": 2, + "id": "Tower Rebirth Token", }, - "value": 2846, + "value": 14634475, }, { - "category": "Pet", + "category": "Potion", "configData": { - "id": "Neon Twilight Tiger", + "id": "The Cocktail", + "tn": 2, }, - "value": 4699871, + "value": 761831, }, { "category": "Pet", "configData": { - "id": "Huge Jelly Piggy", - "sh": true, + "id": "Huge Love Peacock", }, - "value": 1968935140, + "value": 4148, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Huge Otter", - "pt": 1, + "id": "Mega Potion Chest", }, - "value": 1030220465, + "value": 918888, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Lunar Fox", - "sh": true, + "id": "Mega Enchant Chest", }, - "value": 70396, + "value": 881340, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Huge Sun Angelus", + "id": "Mega Ultimate Chest", }, - "value": 200568702, + "value": 188950, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Huge Red Panda", - "pt": 2, - "sh": true, + "id": "Mega Charm Chest", }, - "value": 900644925, + "value": 256457, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Humble Rabbit", - "sh": true, + "id": "Mega Boost Chest", }, - "value": 80, + "value": 1546469, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 45", + }, + "value": 689870, }, { "category": "Pet", "configData": { - "id": "Hologram Shark", + "id": "Raining Love Dog", "pt": 2, - "sh": true, }, - "value": 153089023, + "value": 2845825450, }, { "category": "Pet", "configData": { - "id": "Empyrean Dragon", + "id": "Valentines Sloth", "pt": 1, }, - "value": 701, + "value": 403925615, }, { "category": "Pet", "configData": { - "id": "Tiedye Bunny", - "pt": 2, + "id": "Rose Garden Cat", }, - "value": 16418343, + "value": 17539628378, }, { "category": "Pet", "configData": { - "id": "Frostbyte Fox", - "pt": 1, + "id": "Valentines Sloth", }, - "value": 110412, + "value": 5071733441, }, { "category": "Pet", "configData": { - "id": "Huge Atlantean Orca", + "id": "Rose Garden Cat", "sh": true, }, - "value": 600413209, + "value": 52980558, }, { "category": "Pet", "configData": { - "id": "Tech Scorpion", + "id": "Rose Garden Cat", "pt": 2, }, - "value": 744, + "value": 1595245847, }, { "category": "Pet", "configData": { - "id": "Huge Party Dragon", - "sh": true, + "id": "Raining Love Dog", + "pt": 1, }, - "value": 1089319344, + "value": 2039996656, }, { "category": "Pet", "configData": { - "id": "Platypus", - "sh": true, + "id": "Raining Love Dog", }, - "value": 817, + "value": 24779692217, }, { "category": "Pet", "configData": { - "id": "Ghost Cat", - "sh": true, + "id": "Rose Garden Cat", + "pt": 1, }, - "value": 19674, + "value": 1298356832, }, { "category": "Pet", "configData": { - "id": "Dominus Serpents", - "pt": 1, + "id": "Valentines Sloth", + "pt": 2, }, - "value": 1542, + "value": 437866358, }, { "category": "Pet", "configData": { - "id": "Hacked Raccoon", + "id": "Huge Love Peacock", + "pt": 1, }, - "value": 2471, + "value": 2332, }, { "category": "Pet", "configData": { - "id": "Huge Crocodile", - "pt": 2, + "id": "Valentines Sloth", "sh": true, }, - "value": 1138982034, + "value": 16735269, }, { "category": "Pet", "configData": { - "id": "Huge Exquisite Parrot", - "pt": 1, + "id": "Jurassic Elephant", }, - "value": 189040951, + "value": 49818, }, { "category": "Pet", "configData": { - "id": "Rock Dragon", - "pt": 1, + "id": "Valentines Sloth", + "pt": 2, + "sh": true, }, - "value": 429, + "value": 1912106, }, { "category": "Pet", "configData": { - "id": "Huge Storm Dominus", - "pt": 2, + "id": "Jurassic Beaver", }, - "value": 660968081, + "value": 20310, }, { "category": "Pet", "configData": { - "id": "Huge Butterfly", + "id": "Jurassic Crocodile", }, - "value": 2776458826, + "value": 84887, }, { "category": "Pet", "configData": { - "id": "North Pole Wolf", + "id": "Jurassic Elephant", + "pt": 2, }, - "value": 10459, + "value": 2472, }, { "category": "Pet", "configData": { - "id": "Exquisite Elephant", + "id": "Valentines Sloth", "pt": 1, "sh": true, }, - "value": 156869153, + "value": 1727639, }, { "category": "Pet", "configData": { - "id": "Huge Pinata Cat", - "pt": 1, + "id": "Huge Jurassic Beaver", }, - "value": 889425587, + "value": 2475, }, { "category": "Pet", "configData": { - "id": "Psychic Seal", + "id": "Huge Valentines Axolotl", "sh": true, }, - "value": 343, + "value": 1491, }, { "category": "Pet", "configData": { - "id": "Clout Cat", - "pt": 2, + "id": "Titanic Valentines Axolotl", "sh": true, }, - "value": 149722639, + "value": 13, }, { "category": "Pet", "configData": { - "id": "Albino Bat", - "pt": 1, - "sh": true, + "id": "Huge Valentines Axolotl", }, - "value": 5000, + "value": 73891, }, { "category": "Pet", "configData": { - "id": "Pirate Parrot", + "id": "Huge Jurassic Crocodile", + }, + "value": 9100, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Love Peacock", "sh": true, }, - "value": 23427, + "value": 162, }, { "category": "Pet", "configData": { - "id": "Huge Evolved Cupcake", - "pt": 2, + "id": "Valentines Axolotl", }, - "value": 705981404, + "value": 23447191741, }, { "category": "Pet", "configData": { - "id": "Robber Cat", + "id": "Raining Love Dog", + "pt": 1, "sh": true, }, - "value": 121, + "value": 8669336, }, { "category": "Pet", "configData": { - "id": "Huge Bejeweled Unicorn", + "id": "Raining Love Dog", + "pt": 2, + "sh": true, }, - "value": 81412051, + "value": 11444154, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Spider", + "id": "Valentines Axolotl", + "pt": 1, }, - "value": 404, + "value": 2140187320, }, { "category": "Pet", "configData": { - "id": "Emerald Carbuncle", - "sh": true, + "id": "Valentines Axolotl", + "pt": 2, }, - "value": 60, + "value": 3410707769, }, { "category": "Pet", "configData": { - "id": "Angel Seal", + "id": "Rose Garden Cat", "pt": 1, "sh": true, }, - "value": 4000, + "value": 5803128, }, { "category": "Pet", "configData": { - "id": "Sailor Dolphin", + "id": "Rose Garden Cat", "pt": 2, + "sh": true, }, - "value": 745, + "value": 6191701, }, { "category": "Pet", "configData": { - "id": "Painter Cat", - "pt": 2, + "id": "Raining Love Dog", "sh": true, }, - "value": 7918, + "value": 80399814, }, { "category": "Pet", "configData": { - "id": "Clover Axolotl", - "pt": 1, + "id": "Jurassic Crocodile", "sh": true, }, - "value": 3413179, + "value": 2441, }, { "category": "Pet", "configData": { - "id": "Huge Evolved King Cobra", + "id": "Jurassic Crocodile", "pt": 2, }, - "value": 803710860, + "value": 3378, }, { "category": "Pet", "configData": { - "id": "Huge Painted Cat", + "id": "Jurassic Elephant", + "sh": true, }, - "value": 93108613, + "value": 1532, }, { "category": "Pet", "configData": { - "id": "Turkey", - "pt": 1, + "id": "Jurassic Beaver", + "pt": 2, }, - "value": 123068, + "value": 1089, }, { "category": "Pet", "configData": { - "id": "Flamortuus", - "pt": 1, + "id": "Titanic Jurassic Feline", }, - "value": 704, + "value": 627, }, { "category": "Pet", "configData": { - "id": "Raccoon", + "id": "Huge Jurassic Crocodile", "sh": true, }, - "value": 809, + "value": 369, }, { "category": "Pet", "configData": { - "id": "Huge Party Crown Ducky", + "id": "Huge Love Peacock", "pt": 2, }, - "value": 750273292, + "value": 629, }, { "category": "Pet", "configData": { - "id": "Huge Orca", + "id": "Jurassic Beaver", "sh": true, }, - "value": 424407656, + "value": 755, }, { "category": "Pet", "configData": { - "id": "Night Terror Cat", + "id": "Valentines Axolotl", + "pt": 1, + "sh": true, }, - "value": 4756, + "value": 9203804, }, { "category": "Pet", "configData": { - "id": "Huge Diamond Cat", + "id": "Jurassic Elephant", + "pt": 2, + "sh": true, + }, + "value": 135, + }, + { + "category": "Charm", + "configData": { + "id": "Treasure", + "tn": 1, }, - "value": 732952748, + "value": 2199, }, { "category": "Pet", "configData": { - "id": "Huge Orca", + "id": "Huge Jurassic Crocodile", "pt": 2, }, - "value": 632363246, + "value": 295, }, { "category": "Pet", "configData": { - "id": "Creepy Yeti", - "pt": 1, + "id": "Jurassic Crocodile", + "pt": 2, "sh": true, }, - "value": 810, + "value": 154, }, { "category": "Pet", "configData": { - "id": "Huge Bloo Cat", - "pt": 1, - "sh": true, + "id": "Gargantuan Jurassic Dragon", }, - "value": 3755272604, + "value": 58, }, { "category": "Pet", "configData": { - "id": "Hell Scorpion", - "pt": 2, + "id": "Huge Jurassic Beaver", "sh": true, }, - "value": 282, + "value": 102, }, { "category": "Pet", "configData": { - "id": "Ugly Duckling", - "pt": 2, + "id": "Huge Love Peacock", + "pt": 1, "sh": true, }, - "value": 1, + "value": 28, }, { "category": "Pet", "configData": { - "id": "Teddy Bear", - "pt": 1, + "id": "Titanic Valentines Axolotl", + }, + "value": 748, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Axolotl", + "pt": 2, "sh": true, }, - "value": 88643, + "value": 14590127, }, { "category": "Pet", "configData": { - "id": "Huge Cool Cat", - "pt": 1, + "id": "Valentines Axolotl", + "sh": true, }, - "value": 448776665, + "value": 79358738, }, { "category": "Pet", "configData": { - "id": "Huge Kraken", + "id": "Huge Jurassic Beaver", "pt": 2, }, - "value": 2354141046, + "value": 89, }, { "category": "Pet", "configData": { - "id": "Huge Ducky", - "pt": 2, + "id": "Heartbreak Fairy", + "pt": 1, }, - "value": 1865269608, + "value": 10509795818, }, { "category": "Pet", "configData": { - "id": "Cyborg Piggy", - "sh": true, + "id": "Heartbreak Fairy", }, - "value": 1235, + "value": 90652241833, }, { "category": "Pet", "configData": { - "id": "Huge Neon Cat", + "id": "Heartbreak Fairy", "pt": 2, }, - "value": 993134012, + "value": 20973889501, }, { "category": "Pet", "configData": { - "id": "Deer", - "sh": true, + "id": "Huge Heartbreak Fairy", }, - "value": 418, + "value": 197386, }, { "category": "Pet", "configData": { - "cv": 4, - "id": "Huge Chroma Phoenix", - "sh": true, + "id": "Huge Shattered Heart Agony", }, - "value": 614861837, + "value": 25943, }, { "category": "Pet", "configData": { - "id": "Huge Wild Fire Agony", + "id": "Heartbreak Fairy", "pt": 1, + "sh": true, }, - "value": 238877328, + "value": 51424449, }, { "category": "Pet", "configData": { - "id": "Slime", + "id": "Heartbreak Fairy", "pt": 2, + "sh": true, }, - "value": 360, + "value": 113936955, }, { "category": "Pet", "configData": { - "id": "Jaguar", - "pt": 2, - "sh": true, + "id": "Huge Heartbreak Fairy", + "pt": 1, }, - "value": 42800, + "value": 21840, }, { "category": "Pet", "configData": { - "id": "Huge Masked Fox", + "id": "Titanic Jurassic Feline", "pt": 2, }, - "value": 429342958, + "value": 20, }, { "category": "Pet", "configData": { - "id": "Titanic Tiedye Dragon", + "id": "Heartbreak Fairy", "sh": true, }, - "value": 920000000, + "value": 365773135, }, { "category": "Pet", "configData": { - "id": "Knife Cat", - "pt": 2, + "id": "Huge Heartbreak Fairy", "sh": true, }, - "value": 221877796, + "value": 3872, }, { "category": "Pet", "configData": { - "id": "Tulip Hedgehog", - "sh": true, + "id": "Huge Shattered Heart Agony", + "pt": 1, }, - "value": 323, + "value": 2763, }, { "category": "Pet", "configData": { - "id": "Huge Forest Wyvern", + "id": "Huge Shattered Heart Agony", "pt": 2, }, - "value": 944905396, + "value": 2831, }, { "category": "Pet", "configData": { - "id": "Huge Error Cat", + "id": "Huge Heartbreak Fairy", "pt": 2, - "sh": true, }, - "value": 5020000000, + "value": 20382, }, { "category": "Pet", "configData": { - "id": "Jolly Cat", - "sh": true, - }, - "value": 1738, - }, - { - "category": "Pet", - "configData": { - "id": "White Tiger", + "id": "Mr. Love Cat", "pt": 2, }, - "value": 1063, + "value": 9514902135, }, { "category": "Pet", "configData": { - "id": "Huge Enchanted Deer", + "id": "Mr. Love Cat", "pt": 1, - "sh": true, }, - "value": 876442810, + "value": 4858453977, }, { "category": "Pet", "configData": { - "id": "Quantum Dominus", - "pt": 1, + "id": "Mr. Love Cat", }, - "value": 328, + "value": 37032390152, }, { "category": "Pet", "configData": { - "id": "Griffin", + "id": "Mr. Love Cat", + "pt": 2, + "sh": true, }, - "value": 5766, + "value": 56425811, }, { "category": "Pet", "configData": { - "id": "Lunar Moth", + "id": "Mr. Love Cat", + "pt": 1, "sh": true, }, - "value": 5970, + "value": 24788587, }, { "category": "Pet", "configData": { - "id": "Snow Ram", + "id": "Mr. Love Cat", + "sh": true, }, - "value": 187, + "value": 159725916, }, { "category": "Pet", "configData": { - "id": "Huge Nightfall Wolf", + "id": "Huge Jurassic Crocodile", "pt": 2, - }, - "value": 955532728, - }, - { - "category": "Pet", - "configData": { - "id": "Huge Painted Cat", "sh": true, }, - "value": 374825155, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Pirate Parrot", + "id": "Huge Heartbreak Fairy", "pt": 1, + "sh": true, }, - "value": 24, + "value": 427, }, { "category": "Pet", "configData": { - "id": "Tech Samurai Dragon", + "id": "Love Peacock", "pt": 2, }, - "value": 4631, + "value": 3023710221, }, { "category": "Pet", "configData": { - "id": "Forged Cyclops", - "sh": true, + "id": "Love Peacock", + "pt": 1, }, - "value": 10718, + "value": 1520566807, }, { "category": "Pet", "configData": { - "id": "Lion", + "id": "Love Peacock", + "pt": 2, "sh": true, }, - "value": 1944, + "value": 17490317, }, { "category": "Pet", "configData": { - "id": "Storm Dominus", - "pt": 2, + "id": "Love Peacock", "sh": true, }, - "value": 319633228, + "value": 45487329, }, { "category": "Pet", "configData": { - "id": "Armadillo", + "id": "Love Peacock", }, - "value": 3299, + "value": 11235723041, }, { "category": "Pet", "configData": { - "id": "Titanic Dominus Darkwing", - "pt": 1, + "id": "Shattered Heart Agony", + "pt": 2, }, - "value": 25000000000, + "value": 17269445, }, { "category": "Pet", "configData": { - "id": "Diamond Cat", - "pt": 2, - "sh": true, + "id": "Shattered Heart Agony", }, - "value": 300339722, + "value": 69505599, }, { "category": "Pet", "configData": { - "id": "Corrupt Skeleton", + "id": "Love Peacock", "pt": 1, + "sh": true, }, - "value": 155, + "value": 7240594, }, { "category": "Pet", "configData": { - "id": "Llama", + "id": "Shattered Heart Agony", "pt": 1, }, - "value": 1295, + "value": 9353975, }, { "category": "Pet", "configData": { - "id": "Gleebo The Alien", - "pt": 2, - "sh": true, + "id": "Loveserker", }, - "value": 180667, + "value": 760554, }, { "category": "Pet", "configData": { - "id": "Virus Griffin", + "id": "Huge Love Peacock", "pt": 2, + "sh": true, }, - "value": 1981283, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Huge Mosaic Lamb", + "id": "Shattered Heart Agony", "pt": 1, + "sh": true, }, - "value": 79165132, + "value": 110757, }, { "category": "Pet", "configData": { - "id": "Umbrella Dog", - "pt": 2, + "id": "Huge Shattered Heart Agony", + "pt": 1, + "sh": true, }, - "value": 473, + "value": 57, }, { "category": "Pet", "configData": { - "id": "Huge Ducky", - "pt": 1, + "id": "Huge Shattered Heart Agony", "sh": true, }, - "value": 999900000, + "value": 497, }, { "category": "Pet", "configData": { - "id": "Huge Doodle Fairy", - "pt": 1, - "sh": true, + "id": "Loveserker", + "pt": 2, }, - "value": 3807467073, + "value": 165322, }, { "category": "Pet", "configData": { - "id": "Frost Axolotl", - "pt": 1, + "id": "Shattered Heart Agony", + "pt": 2, "sh": true, }, - "value": 6639, + "value": 134469, }, { "category": "Pet", "configData": { - "id": "Huge Bear", + "id": "Loveserker", + "pt": 1, }, - "value": 136914692, + "value": 156146, }, { "category": "Pet", "configData": { - "id": "Tiki Dominus", - "pt": 1, + "id": "Shattered Heart Agony", "sh": true, }, - "value": 1109594, + "value": 286216, }, { "category": "Pet", "configData": { - "id": "Sandcastle Cat", + "id": "Huge Shattered Heart Agony", "pt": 2, + "sh": true, }, - "value": 533, + "value": 51, }, { "category": "Pet", "configData": { - "id": "Galaxy Fox", + "id": "Huge Heartbreak Fairy", "pt": 2, + "sh": true, }, - "value": 523, + "value": 423, }, { "category": "Pet", "configData": { - "id": "Chimera", - "pt": 2, + "id": "Titanic Jurassic Feline", + "sh": true, }, - "value": 1252, + "value": 14, }, { "category": "Pet", "configData": { - "id": "Witch Cat", + "id": "Huge Loveserker", }, - "value": 2328, + "value": 29427, }, { "category": "Pet", "configData": { - "id": "Narwhal", + "id": "Loveserker", "sh": true, }, - "value": 37782, + "value": 158, }, { "category": "Pet", "configData": { - "id": "Huge Vampire Bat", + "id": "Loveserker", "pt": 1, "sh": true, }, - "value": 3636633645, - }, - { - "category": "Pet", - "configData": { - "id": "Huge Kraken", - }, - "value": 366706200, + "value": 2953, }, { "category": "Pet", "configData": { - "id": "Pixie Squirrel", + "id": "Huge Loveserker", "pt": 1, }, - "value": 62, + "value": 3622, }, { "category": "Pet", "configData": { - "id": "Huge Husky", + "id": "Jurassic Beaver", "pt": 2, + "sh": true, }, - "value": 1150878457, - }, - { - "category": "Pet", - "configData": { - "id": "Super Cat", - }, - "value": 4294777, - }, - { - "category": "Pet", - "configData": { - "id": "Huge Rainbow Unicorn", - "pt": 1, - }, - "value": 357394967, + "value": 51, }, { "category": "Pet", "configData": { - "id": "Elephant", - "pt": 1, + "id": "Huge Loveserker", + "pt": 2, }, - "value": 129, + "value": 3524, }, { "category": "Pet", "configData": { - "id": "Stargazing Bear", + "id": "Loveserker", + "pt": 2, "sh": true, }, - "value": 8925704, + "value": 672, }, { "category": "Pet", "configData": { - "id": "Cyborg Dragon", + "id": "Huge Loveserker", "sh": true, }, - "value": 495088, + "value": 631, }, { "category": "Pet", "configData": { - "id": "Teddy Bear", + "id": "Huge Loveserker", + "pt": 1, "sh": true, }, - "value": 3067, + "value": 64, }, { "category": "Pet", "configData": { - "id": "Huge Meebo in a Spaceship", + "id": "Titanic Loveserker", }, - "value": 116643371, + "value": 844, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Dog", + "id": "Huge Valentines Axolotl", "pt": 2, - "sh": true, }, - "value": 500, + "value": 1968, }, { "category": "Pet", "configData": { - "id": "Titanic Bread Shiba", + "id": "Titanic Valentines Axolotl", "pt": 2, }, - "value": 25000000000, + "value": 19, }, { "category": "Pet", "configData": { - "id": "Anime Unicorn", + "id": "Titanic Valentines Axolotl", + "pt": 1, }, - "value": 3644606, + "value": 65, }, { "category": "Pet", "configData": { - "id": "Cosmic Dragon", - "pt": 2, - "sh": true, + "id": "Huge Valentines Axolotl", + "pt": 1, }, - "value": 174201571, + "value": 6296, }, { "category": "Pet", "configData": { - "id": "Huge Error Cat", - "pt": 1, + "id": "Huge Loveserker", + "pt": 2, "sh": true, }, - "value": 631288399, + "value": 78, }, { "category": "Pet", "configData": { - "id": "Huge Otter", + "id": "Titanic Loveserker", "pt": 2, }, - "value": 1727500536, + "value": 138, }, { "category": "Pet", "configData": { - "id": "Woodpecker", - "pt": 1, + "id": "Titanic Bobcat", + "pt": 2, }, - "value": 102, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Huge Corgi", + "id": "Titanic Loveserker", "pt": 1, }, - "value": 338408769, + "value": 128, }, { "category": "Pet", "configData": { - "id": "Mosaic Elephant", - "pt": 1, + "cv": 6, + "id": "Huge Chroma Doodle Axolotl", "sh": true, }, - "value": 128447003, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Monkey", - "pt": 1, + "id": "Inferno Stealth Cat", "sh": true, }, - "value": 2121, + "value": 29, }, { "category": "Pet", "configData": { - "id": "Flower Gecko", + "id": "Inferno Stealth Cat", "pt": 1, - "sh": true, }, - "value": 1500, + "value": 146, }, { "category": "Pet", "configData": { - "id": "Hedgehog", + "id": "Old Wizard Owl", + "pt": 2, "sh": true, }, - "value": 510, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Lemur", + "id": "Huge Raining Love Dog", "pt": 2, }, - "value": 186, + "value": 500, }, { "category": "Pet", "configData": { - "id": "Huge Lucki Agony", - "sh": true, + "id": "Huge Raining Love Dog", }, - "value": 1010272942, + "value": 6946, }, { "category": "Pet", "configData": { - "id": "Irish Corgi", - "pt": 2, + "id": "Huge Raining Love Dog", + "pt": 1, }, - "value": 1398, + "value": 2501, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Tiedye Axolotl", - "pt": 1, + "id": "Fantasy Pack", }, - "value": 7823695, + "value": 85315868, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Zombie Bull", + "id": "Nightmare Pack", }, - "value": 4244, + "value": 133639961, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Huge Devil Dominus", - "pt": 2, - "sh": true, + "id": "Retro Pack", }, - "value": 5771999998, + "value": 1296977283, }, { "category": "Pet", "configData": { - "id": "Pirate Cat", - "pt": 2, - "sh": true, + "id": "Lumi Axolotl", }, - "value": 370, + "value": 15851986, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Water Zebra", + "id": "Super Hero Pack", }, - "value": 259, + "value": 458475, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Queen Slime", - "sh": true, + "id": "Fairy Moth Card", }, - "value": 8262, + "value": 41409490, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Panther", - "sh": true, + "id": "Lumi Axolotl Card", + "pt": 1, }, - "value": 216, + "value": 27185855, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Guest Noob", - "pt": 2, + "id": "Lumi Axolotl Card", }, - "value": 132107033, + "value": 136327815, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Enchanted Squirrel", - "sh": true, + "id": "Gamer Shiba Card", }, - "value": 132, + "value": 3404893987, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Green Cobra", - "pt": 1, + "id": "Error Cat Card", }, - "value": 1043, + "value": 1128530518, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Pixel Corgi", - "pt": 2, + "id": "Pixel Dragon Card", }, - "value": 238602966, + "value": 165605444, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Mosaic Dove", + "id": "Error Cat Card", "pt": 1, }, - "value": 8478346, + "value": 226421267, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Purple Cobra", + "id": "Gamer Shiba Card", "pt": 2, - "sh": true, }, - "value": 144000, + "value": 119977600, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Umbrella Cat", + "id": "Gamer Shiba Card", "pt": 1, }, - "value": 1674328663, + "value": 682047519, }, { "category": "Pet", "configData": { - "id": "Exquisite Parrot", - "pt": 1, + "id": "Gamer Shiba", }, - "value": 10481021, + "value": 56522125, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Sketch Cow", + "id": "Lumi Axolotl Card", "sh": true, }, - "value": 10900989, + "value": 1046871, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Ender Hades", + "id": "Lumi Axolotl Card", + "pt": 1, + "sh": true, }, - "value": 35548, + "value": 228340, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Chroma Lucky Block Mimic", + "id": "Lumi Axolotl Card", "pt": 2, }, - "value": 3503531599, + "value": 4822931, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Red Panda", + "id": "Hellhound Card", "pt": 1, }, - "value": 40699692, + "value": 60922553, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Froggy", - "pt": 2, + "id": "Hellhound Card", }, - "value": 157, + "value": 302405302, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Squirrel", - "pt": 2, + "id": "Immortuus Card", + "pt": 1, }, - "value": 5332, + "value": 20136125, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Moose", - "pt": 1, + "id": "Upgrade Card", }, - "value": 129, + "value": 5940566999, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Cool Dragon", - "sh": true, + "id": "Immortuus Card", }, - "value": 23103027, + "value": 99571623, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Parrot", - "pt": 1, + "id": "Ghoul Horse Card", }, - "value": 1111613, + "value": 13116440, }, { "category": "Pet", "configData": { - "id": "Shiba", + "id": "Fairy Moth", }, - "value": 218, + "value": 5478499, }, { "category": "Pet", "configData": { - "id": "Plague Dragon", - "pt": 2, - "sh": true, + "id": "Hellhound", }, - "value": 150929, + "value": 13918830, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Pumpkin Cat", - "pt": 1, - "sh": true, + "id": "Hellhound Card", + "pt": 2, }, - "value": 2860175, + "value": 10744564, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Present Cat", - "sh": true, + "id": "Immortuus Card", + "pt": 2, }, - "value": 98978, + "value": 3817666, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Fox", + "id": "Fairy Moth Card", "pt": 2, }, - "value": 830, + "value": 1521467, }, { "category": "Pet", "configData": { - "id": "Huge Rave Butterfly", - "pt": 2, + "id": "Immortuus", }, - "value": 374394276, + "value": 4858377, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Chicken", + "id": "Hydra Cat Card", + }, + "value": 4821291, + }, + { + "category": "Card", + "configData": { + "id": "Fairy Moth Card", "pt": 1, }, - "value": 96112, + "value": 8188300, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Quantum Tiger", - "pt": 2, + "id": "Phantom Wolf Card", }, - "value": 7335, + "value": 1658646, }, { "category": "Pet", "configData": { - "id": "Paintbot Spider", + "id": "Gamer Shiba", "pt": 1, }, - "value": 275, + "value": 11724664, }, { "category": "Pet", "configData": { - "id": "Huge Elf Cat", - "sh": true, + "id": "Hellhound", + "pt": 1, }, - "value": 349019995, + "value": 2956108, }, { "category": "Pet", "configData": { - "id": "Huge Vampire Bat", - "pt": 2, + "id": "Lumi Axolotl", + "pt": 1, }, - "value": 1240366396, + "value": 3366285, }, { "category": "Pet", "configData": { - "id": "Clout Cat", - "pt": 2, + "id": "Error Cat", }, - "value": 15528936, + "value": 21281592, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Tiedye Bunny", - "pt": 1, + "id": "Retro Bulldog Card", }, - "value": 7926268, + "value": 21793246, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Pufferfish", + "id": "Wicked Agony Card", + }, + "value": 602204, + }, + { + "category": "Card", + "configData": { + "id": "Hydra Cat Card", "pt": 1, }, - "value": 442298466, + "value": 1115101, }, { "category": "Pet", "configData": { - "id": "Shiba", - "pt": 2, + "id": "Pixel Dragon", }, - "value": 3136, + "value": 4270095, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Gleebo The Alien", + "id": "Super Axolotl Card", }, - "value": 207253216, + "value": 43958, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Exquisite Cat", + "id": "Super Seal Card", }, - "value": 93406348, + "value": 69053, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Bejeweled Unicorn", - "pt": 2, - "sh": true, + "id": "Super Bat Card", }, - "value": 331681595, + "value": 58857, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Tiedye Cat", + "id": "Gamer Shiba Card", "sh": true, }, - "value": 53336802, + "value": 24624971, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Frostbyte Dragon", - "pt": 2, + "id": "Fairy Moth Card", + "pt": 1, "sh": true, }, - "value": 450, + "value": 83402, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Electric Werewolf", - "pt": 2, + "id": "Error Cat Card", "sh": true, }, - "value": 4821, + "value": 8215897, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Punksky", - "pt": 1, - "sh": true, + "id": "Error Cat Card", + "pt": 2, }, - "value": 243898512, + "value": 39461652, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Ugly Duckling", + "id": "Hydra Cat Card", "pt": 2, }, - "value": 256, + "value": 223081, }, { "category": "Pet", "configData": { - "id": "Bear", - "sh": true, + "id": "Ghoul Horse", }, - "value": 17074, + "value": 1275611, }, { "category": "Pet", "configData": { - "id": "Huge Masked Owl", + "id": "Fairy Moth", "pt": 1, }, - "value": 277371589, + "value": 1118673, }, { "category": "Pet", "configData": { - "id": "Dino Dog", - "sh": true, + "id": "Hydra Cat", }, - "value": 934, + "value": 3755957, }, { "category": "Pet", "configData": { - "id": "Huge Tiedye Cat", - "sh": true, + "id": "Immortuus", + "pt": 1, }, - "value": 527511217, + "value": 1026549, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Butterfly Llama", - "pt": 2, + "id": "Hellhound Card", + "sh": true, }, - "value": 326, + "value": 2140315, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Moose", - "sh": true, + "id": "Pixel Dragon Card", + "pt": 1, }, - "value": 13384, + "value": 33747489, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Masked Owl", + "id": "Fairy Moth Card", "sh": true, }, - "value": 970569770, + "value": 357225, }, { "category": "Pet", "configData": { - "id": "Angel Pegasus", - "pt": 2, + "id": "Huge Electric Werewolf", + "sh": true, }, - "value": 538, + "value": 221, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Leprechaun Cat", + "id": "Phantom Wolf Card", "pt": 2, }, - "value": 921, + "value": 81872, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Alien Arachnid", + "id": "Immortuus Card", + "sh": true, }, - "value": 5492676971, + "value": 819899, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Corgi", + "id": "Ghoul Horse Card", "pt": 1, }, - "value": 10, + "value": 2949934, }, { "category": "Pet", "configData": { - "id": "Prison Monkey", + "id": "Gamer Shiba", "pt": 2, }, - "value": 22300, + "value": 9813529, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Enchanted Dragon", + "id": "Ghoul Horse Card", "pt": 2, - "sh": true, }, - "value": 282000, + "value": 531748, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Sapphire Phoenix", - "pt": 1, + "id": "Huge Super Spider Card", }, - "value": 191029624, + "value": 6499, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Snowman", - "pt": 2, + "id": "Retro Bulldog Card", + "pt": 1, }, - "value": 2613125759, + "value": 4507682, }, { "category": "Pet", "configData": { - "id": "Huge Storm Dominus", - "sh": true, + "id": "Hellhound", + "pt": 2, }, - "value": 423878014, + "value": 1698703, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Bee", - "pt": 1, + "id": "Super Bat", }, - "value": 1116, + "value": 41078, }, { "category": "Pet", "configData": { - "id": "Huge Mermaid Cat", + "id": "Huge Electric Werewolf", }, - "value": 37105371, + "value": 7405, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Cold Firefly", - "pt": 2, + "id": "Hellhound Card", + "pt": 1, "sh": true, }, - "value": 1, + "value": 454785, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Nightfall Ram", + "id": "Phantom Wolf Card", "pt": 1, - "sh": true, }, - "value": 64016161, + "value": 407814, }, { "category": "Pet", "configData": { - "id": "Quantum Bunny", - "pt": 1, + "id": "Super Axolotl", }, - "value": 280, + "value": 26864, }, { "category": "Pet", "configData": { - "id": "Frost Fox", - "pt": 2, + "id": "Super Seal", }, - "value": 700, + "value": 59747, }, { "category": "Pet", "configData": { - "id": "Ninja Raccoon", - "pt": 1, - "sh": true, + "id": "Huge Super Spider", }, - "value": 19644, + "value": 20030, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Mermaid Cat", + "id": "Hellhound Card", "pt": 2, "sh": true, }, - "value": 1440, + "value": 102684, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Hippokin", + "id": "Fairy Moth Card", + "pt": 2, + "sh": true, }, - "value": 1690, + "value": 18104, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Detective Cat", - "pt": 1, + "id": "Lumi Axolotl Card", + "pt": 2, + "sh": true, }, - "value": 1098, + "value": 51478, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Neon Twilight Dragon", + "id": "Wicked Agony Card", + "pt": 2, }, - "value": 618355824, + "value": 33247, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Titanic Red Panda", + "id": "Gamer Shiba Card", "pt": 2, + "sh": true, }, - "value": 25000000000, + "value": 713994, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Leprechaun Cat", - "sh": true, + "id": "Pixel Dragon Card", + "pt": 2, }, - "value": 268937040, + "value": 5608791, }, { "category": "Pet", "configData": { - "id": "Huge Skeleton", - "pt": 2, + "id": "Error Cat", + "pt": 1, }, - "value": 536576771, + "value": 4300097, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Black Bear", - "sh": true, + "id": "Retro Bulldog Card", + "pt": 2, }, - "value": 1835, + "value": 872586, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Frostbyte Husky", - "pt": 1, + "id": "Pixel Dragon Card", "sh": true, }, - "value": 896, + "value": 1259711, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Tiedye Bear", + "id": "Huge Nightmare Dog Card", "sh": true, }, - "value": 41364771, + "value": 44, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Butterfly", + "id": "Error Cat Card", + "pt": 1, "sh": true, }, - "value": 1595, + "value": 1676096, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Pastel Griffin", - "pt": 2, + "id": "Huge Arcade Dog Card", }, - "value": 290, + "value": 54064, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Snowman", - "sh": true, + "id": "Wicked Agony Card", + "pt": 1, }, - "value": 970273301, + "value": 151192, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Nuclear Mining Dog", + "id": "Gamer Shiba Card", "pt": 1, + "sh": true, }, - "value": 1335742, + "value": 4120245, }, { "category": "Pet", "configData": { - "id": "Huge Dominus Lucki", + "id": "Lumi Axolotl", + "pt": 2, }, - "value": 219117306, + "value": 1924226, }, { "category": "Pet", "configData": { - "id": "Domortuus Astra", + "id": "Huge Electric Werewolf", + "pt": 2, }, - "value": 216131993, + "value": 940, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Raccoon", - "pt": 2, - "sh": true, + "id": "Titanic Super Wolf Card", }, - "value": 5000, + "value": 518, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Abyssal Axolotl", + "id": "Hydra Cat Card", + "sh": true, }, - "value": 3524, + "value": 58541, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Cyborg Capybara", - "pt": 2, + "id": "Huge Nightmare Dog Card", }, - "value": 2609431629, + "value": 7462, }, { "category": "Pet", "configData": { - "id": "Rabbit", + "id": "Huge Electric Werewolf", "pt": 1, }, - "value": 1174, + "value": 3520, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Santa Dragon", + "id": "Huge Blurred Axolotl Card", "pt": 1, }, - "value": 475592165, + "value": 1415, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Poison Turtle", + "id": "Immortuus Card", "pt": 1, + "sh": true, }, - "value": 2506, + "value": 175630, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Clover Fairy", + "id": "Immortuus Card", "pt": 2, "sh": true, }, - "value": 365, + "value": 37623, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Love Lamb", + "id": "Ghoul Horse Card", "pt": 1, - }, - "value": 278714405, - }, - { - "category": "Pet", - "configData": { - "id": "Cyclops", "sh": true, }, - "value": 492, + "value": 27303, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Hell Bat", - "pt": 2, + "id": "Phantom Wolf Card", + "sh": true, }, - "value": 148, + "value": 18003, }, { "category": "Pet", "configData": { - "id": "Mosaic Lamb", + "id": "Fairy Moth", "pt": 2, }, - "value": 15133841, + "value": 706409, }, { "category": "Pet", "configData": { - "id": "Huge Scary Cat", + "id": "Hydra Cat", "pt": 1, }, - "value": 173402889, + "value": 409908, }, { "category": "Pet", "configData": { - "id": "Comet Agony", + "id": "Immortuus", "pt": 2, }, - "value": 19533, + "value": 492638, }, { "category": "Pet", "configData": { - "id": "Hydra Axolotl", - "pt": 2, - "sh": true, + "id": "Ghoul Horse", + "pt": 1, }, - "value": 350000, + "value": 182676, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Junkyard Hound", + "id": "Pixel Dragon Card", + "pt": 2, + "sh": true, }, - "value": 438, + "value": 55875, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Umbrella Dog", + "id": "Error Cat Card", "pt": 2, "sh": true, }, - "value": 7501, + "value": 350788, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Shadow Dominus", + "id": "Hydra Cat Card", "pt": 1, + "sh": true, }, - "value": 41461493, + "value": 14152, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Mrs. Claws", + "id": "Ghoul Horse Card", "sh": true, }, - "value": 350237365, + "value": 124403, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Frost Fox", - "pt": 1, + "id": "Ghoul Horse Card", + "pt": 2, + "sh": true, }, - "value": 254, + "value": 5626, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Guest Noob", + "id": "Retro Bulldog Card", "sh": true, }, - "value": 534684483, + "value": 184883, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Hi-Tech Flamingo", - "sh": true, + "id": "Huge Arcade Dog Card", + "pt": 1, }, - "value": 5193, + "value": 13736, }, { "category": "Pet", "configData": { - "id": "Moose", + "id": "Error Cat", "pt": 2, }, - "value": 588, + "value": 3464947, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Nightmare Bear", - "pt": 2, - "sh": true, + "id": "Huge Blurred Axolotl Card", }, - "value": 47650353, + "value": 5320, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Fire Horse", + "id": "Pixel Dragon Card", "pt": 1, + "sh": true, }, - "value": 215844985, + "value": 269494, }, { "category": "Pet", "configData": { - "id": "Emerald Carbuncle", + "id": "Pixel Dragon", "pt": 1, }, - "value": 105, + "value": 743644, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Good vs Evil Cat", + "id": "Retro Bulldog Card", "pt": 2, + "sh": true, }, - "value": 801463451, + "value": 7636, }, { "category": "Pet", "configData": { - "id": "Stargazing Axolotl", + "id": "Gamer Shiba", "sh": true, }, - "value": 20843914, + "value": 1364514, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Poseidon Corgi", + "id": "Huge Nightmare Dog Card", "pt": 1, - "sh": true, }, - "value": 7400, + "value": 2000, }, { "category": "Pet", "configData": { - "id": "Cold Firefly", - "sh": true, + "id": "Titanic Super Wolf", }, - "value": 277, + "value": 2072, }, { "category": "Pet", "configData": { - "id": "Balloon Axolotl", + "id": "Retro Bulldog", }, - "value": 9832592, + "value": 671959, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Pterodactyl", - "pt": 2, + "id": "Retro Bulldog Card", + "pt": 1, + "sh": true, }, - "value": 309132871, + "value": 37904, }, { "category": "Pet", "configData": { - "id": "Enchanted Deer", + "id": "Gamer Shiba", + "pt": 1, "sh": true, }, - "value": 2657, + "value": 571001, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Diamond Cat", - "sh": true, + "id": "Huge Arcade Dog Card", + "pt": 2, }, - "value": 22648683, + "value": 2965, }, { "category": "Pet", "configData": { - "id": "Ice Penguin", - "pt": 2, + "id": "Lumi Axolotl", + "pt": 1, "sh": true, }, - "value": 69360, + "value": 49880, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Umbrella Dog", - "sh": true, + "id": "Huge Nightmare Dog Card", + "pt": 2, }, - "value": 12842, + "value": 333, }, { "category": "Pet", "configData": { - "id": "Tech Puma", + "id": "Hellhound", "sh": true, }, - "value": 5761, + "value": 239664, }, { "category": "Pet", "configData": { - "id": "Happy Rock", + "id": "Error Cat", "sh": true, }, - "value": 8045, + "value": 473659, }, { "category": "Pet", "configData": { - "id": "Gorilla", + "id": "Huge Electric Werewolf", "pt": 1, + "sh": true, }, - "value": 136, + "value": 43, }, { "category": "Pet", "configData": { - "id": "Melted Slime", + "id": "Pixel Dragon", "pt": 2, }, - "value": 6450, + "value": 639874, }, { "category": "Pet", "configData": { - "id": "Nightfall Pegasus", + "id": "Error Cat", + "pt": 1, "sh": true, }, - "value": 35052282, + "value": 102888, }, { "category": "Pet", "configData": { - "id": "Teddy Bear", - "pt": 2, + "id": "Retro Bulldog", + "pt": 1, }, - "value": 1349, + "value": 105086, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Abyssal Parrot", - "pt": 2, + "id": "Phantom Wolf Card", + "pt": 1, "sh": true, }, - "value": 40000, + "value": 3712, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Colorful Rock", - "pt": 2, + "id": "Huge Arcade Dog Card", + "sh": true, }, - "value": 1279, + "value": 720, }, { "category": "Pet", "configData": { - "id": "Huge Celestial Dragon", - "pt": 2, + "id": "Hellhound", + "pt": 1, + "sh": true, }, - "value": 3958766341, + "value": 55450, }, { "category": "Pet", "configData": { - "id": "Huge Rainbow Slime", - "pt": 1, + "id": "Gamer Shiba", + "pt": 2, + "sh": true, }, - "value": 237224748, + "value": 172892, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Ancient Dragon", - "pt": 1, + "id": "Hydra Cat Card", + "pt": 2, + "sh": true, }, - "value": 2287862766, + "value": 2984, }, { "category": "Pet", "configData": { - "id": "Huge Gecko", + "id": "Phantom Wolf", }, - "value": 62582327, + "value": 217623, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Haxigator", - "pt": 1, + "id": "Phantom Wolf Card", + "pt": 2, + "sh": true, }, - "value": 3223, + "value": 784, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Enchanted Raccoon", - "pt": 1, + "id": "Wicked Agony Card", + "sh": true, }, - "value": 935, + "value": 9009, }, { "category": "Pet", "configData": { - "id": "Squirrel", - "pt": 1, + "id": "Immortuus", + "sh": true, }, - "value": 82599, + "value": 49388, }, { - "category": "Pet", + "category": "Card", "configData": { - "cv": 2, - "id": "Chroma Phoenix", + "id": "Wicked Agony Card", "pt": 2, "sh": true, }, - "value": 56460800, + "value": 373, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Cool Dragon", + "id": "Huge Blurred Axolotl Card", "pt": 2, }, - "value": 29927913, + "value": 217, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Valentines Cat", + "id": "Wicked Agony Card", + "pt": 1, "sh": true, }, - "value": 636822880, + "value": 1962, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Cupcake Pegasus Card", + }, + "value": 101, }, { "category": "Pet", "configData": { - "id": "Huge Cupid Corgi", + "id": "Lumi Axolotl", "sh": true, }, - "value": 321433011, + "value": 173175, }, { "category": "Pet", "configData": { - "id": "King Cobra", + "id": "Error Cat", + "pt": 2, + "sh": true, }, - "value": 1042, + "value": 23893, }, { "category": "Pet", "configData": { - "id": "Plague Cow", + "id": "Wicked Agony", }, - "value": 2330, + "value": 158823, }, { "category": "Pet", "configData": { - "id": "Flamingo", + "id": "Ghoul Horse", "pt": 2, }, - "value": 4493, + "value": 87850, }, { "category": "Pet", "configData": { - "id": "Angry Yeti", - "sh": true, + "id": "Hydra Cat", + "pt": 2, }, - "value": 9977, + "value": 304221, }, { "category": "Pet", "configData": { - "id": "Cyber Ducky", - "pt": 1, + "id": "Hellhound", + "pt": 2, + "sh": true, }, - "value": 228, + "value": 15535, }, { "category": "Pet", "configData": { - "id": "Huge Bearserker", + "id": "Immortuus", "pt": 1, + "sh": true, }, - "value": 355176880, + "value": 14786, }, { "category": "Pet", "configData": { - "id": "Huge Santa Monkey", + "id": "Phantom Wolf", "pt": 1, }, - "value": 359793347, + "value": 25132, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Cool Cat", - "pt": 1, + "id": "Huge Blurred Axolotl Card", "sh": true, }, - "value": 70214508, + "value": 64, }, { "category": "Pet", "configData": { - "id": "Huge Pterodactyl", + "id": "Immortuus", + "pt": 2, "sh": true, }, - "value": 268144072, + "value": 6124, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Meerkat", + "id": "Phantom Wolf", "pt": 2, }, - "value": 6841, + "value": 7188, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Prickly Panda", + "id": "Super Seal Card", "pt": 2, }, - "value": 111449507, + "value": 5239, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Rock Dog", - "pt": 1, + "id": "Super Seal Card", + "sh": true, }, - "value": 348, + "value": 4908, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "White Tiger", - "pt": 1, + "id": "Super Bat Card", + "pt": 2, }, - "value": 100, + "value": 4818, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Masked Owl", + "id": "Super Bat Card", + "sh": true, }, - "value": 142716240, + "value": 4473, }, { - "category": "Pet", + "category": "Card", "configData": { - "cv": 2, - "id": "Huge Chroma Unicorn", + "id": "Super Axolotl Card", "pt": 2, }, - "value": 2131790310, + "value": 2792, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Chicken", + "id": "Super Axolotl Card", "sh": true, }, - "value": 2114, + "value": 3191, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Gummy Bear", - "pt": 1, + "id": "Huge Super Spider Card", + "sh": true, }, - "value": 282, + "value": 315, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Hi-Tech Flamingo", + "id": "Huge Super Spider Card", "pt": 2, - "sh": true, }, - "value": 26056, + "value": 281, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Pixie Fox", + "id": "Super Bat Card", "pt": 2, + "sh": true, }, - "value": 1462471662, + "value": 117, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Classic Bunny", + "id": "Huge Arcade Dog Card", "pt": 2, + "sh": true, }, - "value": 12529940, + "value": 26, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Happy Rock", + "id": "Huge Nightmare Dog Card", + "pt": 2, "sh": true, }, - "value": 233813529, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Axolotl", - "pt": 1, + "id": "Super Seal", + "sh": true, }, - "value": 26, + "value": 937, }, { "category": "Pet", "configData": { - "id": "Huge Hacker Axolotl", - "pt": 1, + "id": "Super Seal", + "pt": 2, }, - "value": 57634182, + "value": 1073, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Circuit Slime", - "pt": 1, + "id": "Super Axolotl Card", + "pt": 2, + "sh": true, }, - "value": 6771, + "value": 69, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Treasure Turtle", + "id": "Titanic Super Wolf Card", + "pt": 2, }, - "value": 98599060, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Blue Fluffy", + "id": "Super Bat", "pt": 2, }, - "value": 4696, + "value": 1025, }, { "category": "Pet", "configData": { - "id": "Beach Ball Monkey", + "id": "Super Bat", + "sh": true, }, - "value": 20, + "value": 789, }, { "category": "Pet", "configData": { - "id": "Huge Pufferfish", + "id": "Super Axolotl", + "pt": 2, }, - "value": 325357494, + "value": 781, }, { "category": "Pet", "configData": { - "id": "Huge Cosmic Axolotl", + "id": "Super Axolotl", "sh": true, }, - "value": 490913717, + "value": 520, }, { "category": "Pet", "configData": { - "id": "Mushroom King", + "id": "Phantom Wolf", + "sh": true, }, - "value": 112850328, + "value": 677, }, { "category": "Pet", "configData": { - "id": "Lava Slime", + "id": "Lumi Axolotl", "pt": 2, + "sh": true, }, - "value": 446, + "value": 26066, }, { "category": "Pet", "configData": { - "id": "Huge Hacked Cat", - "pt": 2, + "id": "Huge Arcade Dog", }, - "value": 405898897, + "value": 229106, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Luau Cat", + "id": "Super Seal Card", "pt": 2, "sh": true, }, - "value": 22000, + "value": 127, }, { "category": "Pet", "configData": { - "id": "Cloud Cat", + "id": "Fairy Moth", + "pt": 1, "sh": true, }, - "value": 187, + "value": 21201, }, { "category": "Pet", "configData": { - "id": "Research Dog", - "pt": 2, + "id": "Pixel Dragon", + "pt": 1, "sh": true, }, - "value": 168, + "value": 12614, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Propeller Cat", - "pt": 1, + "id": "Huge Super Spider Card", + "pt": 2, + "sh": true, }, - "value": 69684730, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Exquisite Elephant", + "id": "Huge Super Spider", "pt": 2, }, - "value": 53522651, + "value": 306, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Amethyst Dragon", - "sh": true, + "id": "Titanic Cupcake Pegasus Card", + "pt": 1, }, - "value": 626807034, + "value": 24, }, { "category": "Pet", "configData": { - "id": "Princess Dragon", - "pt": 2, + "id": "Pixel Dragon", "sh": true, }, - "value": 653, + "value": 65850, }, { "category": "Pet", "configData": { - "id": "Junkyard Bat", + "id": "Huge Nightmare Dog", + "pt": 1, }, - "value": 729, + "value": 4394, }, { "category": "Pet", "configData": { - "id": "Peacock", + "id": "Ghoul Horse", "sh": true, }, - "value": 2323, + "value": 8232, }, { "category": "Pet", "configData": { - "id": "Angry Dino", - "sh": true, + "id": "Retro Bulldog", + "pt": 2, }, - "value": 200, + "value": 43191, }, { "category": "Pet", "configData": { - "id": "Axolotuus", + "id": "Huge Arcade Dog", + "pt": 2, }, - "value": 409, + "value": 8934, }, { "category": "Pet", "configData": { - "id": "Tiedye Dragon", - "pt": 1, + "id": "Titanic Cupcake Pegasus", }, - "value": 5013557, + "value": 765, }, { "category": "Pet", "configData": { - "id": "Holographic Corgi", - "pt": 1, + "id": "Retro Bulldog", + "sh": true, }, - "value": 341, + "value": 3630, }, { "category": "Pet", "configData": { - "id": "Froggy", - "sh": true, + "id": "Huge Blurred Axolotl", }, - "value": 1818, + "value": 13934, }, { "category": "Pet", "configData": { - "id": "Redstone Cat", + "id": "Pixel Dragon", "pt": 2, "sh": true, }, - "value": 78410671, + "value": 3728, }, { "category": "Pet", "configData": { - "id": "Anime Agony", + "id": "Fairy Moth", "sh": true, }, - "value": 46157605, + "value": 58084, }, { "category": "Pet", "configData": { - "id": "Huge Redstone Cat", - "sh": true, + "id": "Huge Arcade Dog", + "pt": 1, }, - "value": 468412859, + "value": 44781, }, { "category": "Pet", "configData": { - "id": "Guilded Raven", + "id": "Hydra Cat", + "sh": true, }, - "value": 363, + "value": 13060, }, { "category": "Pet", "configData": { - "id": "Imp", - "pt": 2, + "id": "Retro Bulldog", + "pt": 1, + "sh": true, }, - "value": 678, + "value": 1806, }, { "category": "Pet", "configData": { - "cv": 4, - "id": "Huge Chroma Butterfly", - "pt": 2, + "id": "Wicked Agony", + "pt": 1, }, - "value": 2079999994, + "value": 31035, }, { "category": "Pet", "configData": { - "id": "Luau Seal", + "id": "Wicked Agony", + "pt": 2, }, - "value": 264, + "value": 12789, }, { "category": "Pet", "configData": { - "id": "Tech Camel", - "pt": 1, - "sh": true, + "id": "Huge Nightmare Dog", + "pt": 2, }, - "value": 8050, + "value": 879, }, { "category": "Pet", "configData": { - "id": "Tech Ninja Cow", + "id": "Fairy Moth", "pt": 2, + "sh": true, }, - "value": 36679, + "value": 18162, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Titanic Lovemelon", + "id": "Huge Arcade Dog Card", + "pt": 1, + "sh": true, }, - "value": 19373743931, + "value": 151, }, { "category": "Pet", "configData": { - "id": "Scary Corgi", + "id": "Ghoul Horse", "pt": 1, "sh": true, }, - "value": 66, + "value": 3642, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "King Cobra", + "id": "Titanic Super Wolf Card", "sh": true, }, - "value": 49553, + "value": 18, }, { "category": "Pet", "configData": { - "id": "Neon Griffin", - "pt": 2, - "sh": true, + "id": "Huge Nightmare Dog", }, - "value": 1200000, + "value": 22881, }, { "category": "Pet", "configData": { - "id": "Redstone Cat", + "id": "Super Bat", "pt": 2, + "sh": true, }, - "value": 10963218, + "value": 47, }, { "category": "Pet", "configData": { - "id": "Shiba", - "pt": 1, + "id": "Titanic Super Wolf", + "pt": 2, }, - "value": 476, + "value": 33, }, { "category": "Pet", "configData": { - "id": "Black Bear", + "id": "Huge Blurred Axolotl", "pt": 1, }, - "value": 722, + "value": 2607, }, { "category": "Pet", "configData": { - "id": "Pristine Poodle", + "id": "Hydra Cat", + "pt": 2, "sh": true, }, - "value": 1023, + "value": 4277, }, { "category": "Pet", "configData": { - "id": "Huge Neon Cat", + "id": "Hydra Cat", + "pt": 1, + "sh": true, }, - "value": 98119214, + "value": 5151, }, { "category": "Pet", "configData": { - "id": "Jellyfish", + "id": "Super Seal", "pt": 2, + "sh": true, }, - "value": 400550, + "value": 55, }, { "category": "Pet", "configData": { - "id": "Electric Cat", + "id": "Ghoul Horse", + "pt": 2, "sh": true, }, - "value": 53096, + "value": 1393, }, { "category": "Pet", "configData": { - "id": "Anime Monkey", - "pt": 2, + "id": "Titanic Cupcake Pegasus", + "pt": 1, }, - "value": 22781377, + "value": 146, }, { "category": "Pet", "configData": { - "id": "Blurred Monkey", + "id": "Wicked Agony", "sh": true, }, - "value": 892, + "value": 1100, }, { "category": "Pet", "configData": { - "id": "Hound of Hades", + "id": "Huge Electric Werewolf", "pt": 2, + "sh": true, }, - "value": 2042, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Encrusted Wolf", - "pt": 2, + "id": "Huge Super Spider", "sh": true, }, - "value": 29600, + "value": 264, }, { "category": "Pet", "configData": { - "id": "Huge Hoverboard Cat", - "pt": 1, + "id": "Titanic Super Wolf", + "sh": true, }, - "value": 316930357, + "value": 33, }, { "category": "Pet", "configData": { - "id": "Bleebo The Alien", + "id": "Super Axolotl", "pt": 2, + "sh": true, }, - "value": 314, - }, - { - "category": "Pet", - "configData": { - "id": "Huge Pterodactyl", - }, - "value": 41259781, + "value": 39, }, { "category": "Pet", "configData": { - "id": "Huge Police Cat", + "id": "Wicked Agony", "pt": 1, + "sh": true, }, - "value": 253913150, + "value": 1205, }, { "category": "Pet", "configData": { - "id": "Huge Easter Yeti", + "id": "Huge Blurred Axolotl", "pt": 2, }, - "value": 417055031, + "value": 569, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Bobcat", + "id": "Huge Nightmare Dog Card", + "pt": 1, + "sh": true, }, - "value": 237, + "value": 18, }, { "category": "Pet", "configData": { - "id": "Icemortuus", - "pt": 1, + "id": "Huge Arcade Dog", + "sh": true, }, - "value": 18142, + "value": 1730, }, { "category": "Pet", "configData": { - "id": "Nightmare Spirit", + "id": "Wicked Agony", "pt": 2, + "sh": true, }, - "value": 14021158, + "value": 520, }, { "category": "Pet", "configData": { - "id": "Huge Knight Beagle", + "id": "Huge Jurassic Beaver", + "pt": 2, + "sh": true, }, - "value": 37471734, + "value": 1, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Cupcake", + "id": "Huge Blurred Axolotl Card", + "pt": 1, + "sh": true, }, - "value": 55563705, + "value": 21, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Scuba Shark", + "id": "Titanic Cupcake Pegasus Card", + "sh": true, }, - "value": 229, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Blossom Squirrel", + "id": "Huge Arcade Dog", + "pt": 1, + "sh": true, }, - "value": 68, + "value": 340, }, { "category": "Pet", "configData": { - "id": "Corrupt Skeleton", + "id": "Retro Bulldog", + "pt": 2, "sh": true, }, - "value": 570, + "value": 593, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Surfboard Corgi", + "id": "Huge Blurred Axolotl Card", "pt": 2, "sh": true, }, - "value": 2668813, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Poseidon Dog", - "pt": 2, + "id": "Huge Blurred Axolotl", + "sh": true, }, - "value": 625, + "value": 104, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Prison Cat", - "sh": true, + "id": "Titanic Cupcake Pegasus Card", + "pt": 2, }, - "value": 318, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Bat", + "id": "Phantom Wolf", "pt": 1, + "sh": true, }, - "value": 174, + "value": 500, }, { "category": "Pet", "configData": { - "id": "Huge Ducky", - "pt": 1, + "id": "Huge Super Spider", + "pt": 2, + "sh": true, }, - "value": 621740454, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Junkyard Bat", + "id": "Phantom Wolf", + "pt": 2, "sh": true, }, - "value": 366, + "value": 151, }, { "category": "Pet", "configData": { - "id": "Purple Cobra", + "id": "Huge Nightmare Dog", + "sh": true, }, - "value": 2179, + "value": 198, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Sphinx", - "pt": 1, + "id": "Titanic Super Wolf Card", + "pt": 2, + "sh": true, }, - "value": 6428, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Glitched Dog", + "id": "Huge Nightmare Dog", "pt": 1, "sh": true, }, - "value": 150000, + "value": 34, }, { "category": "Pet", "configData": { - "id": "Diamond Cat", + "id": "Huge Blurred Axolotl", "pt": 1, "sh": true, }, - "value": 200876492, + "value": 23, }, { "category": "Pet", "configData": { - "id": "Flex Bear", + "id": "Huge Arcade Dog", "pt": 2, + "sh": true, }, - "value": 13177398, + "value": 71, }, { "category": "Pet", "configData": { - "id": "Mosaic Corgi", + "id": "Titanic Cupcake Pegasus", "sh": true, }, - "value": 11485010, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Huge Devil Dominus", - "pt": 1, + "id": "Titanic Cupcake Pegasus", + "pt": 2, }, - "value": 66904859, + "value": 30, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Hell Bat", + "id": "Titanic Cupcake Pegasus Card", "pt": 1, + "sh": true, }, - "value": 91, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Imp", + "id": "Huge Blurred Axolotl", + "pt": 2, + "sh": true, }, - "value": 210, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Huge Ancient Dragon", + "id": "Titanic Super Wolf", + "pt": 2, + "sh": true, }, - "value": 286122797, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Huge Husky", - "pt": 1, + "id": "Huge Firefly", + "pt": 2, + "sh": true, }, - "value": 263159905, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Huge Tarantula", - "pt": 2, + "id": "Huge Evil Deer", }, - "value": 1592000015, + "value": 524, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Huge Reaper Cat", - "pt": 1, + "id": "Evil", }, - "value": 1000000000, + "value": 3529, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Cyber Bunny", - "pt": 1, + "id": "Evil", }, - "value": 147860, + "value": 749, }, { "category": "Pet", "configData": { - "id": "Huge Balloon Cat", - "pt": 2, + "id": "Huge Evil Deer", + "pt": 1, }, - "value": 969068921, + "value": 150, }, { "category": "Pet", "configData": { - "id": "Ender Hades", + "id": "Huge Evil Deer", "pt": 2, - "sh": true, }, - "value": 10350275, + "value": 75, }, { "category": "Pet", "configData": { - "id": "Happy Rock", + "id": "Huge Pixel Tiger", }, - "value": 412, + "value": 3439, }, { "category": "Pet", "configData": { - "id": "Sailor Seal", - "sh": true, + "id": "Huge Pixel Tiger", + "pt": 1, }, - "value": 44, + "value": 1239, }, { "category": "Pet", "configData": { - "id": "Luxe Peacock", + "id": "Huge Pixel Tiger", "pt": 2, }, - "value": 27296, + "value": 250, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Umbrella Cat", - "sh": true, + "id": "Card Shop Key", }, - "value": 45659, + "value": 367266, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Huge Red Panda", + "id": "Pog Pack", }, - "value": 37559070, + "value": 25685715, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Enchanted Deer", + "id": "Axolotl Pack", }, - "value": 38, + "value": 17705136, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Rock Monkey", + "id": "Booster", }, - "value": 98, + "value": 164653, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Super Capybara", - "pt": 2, + "id": "Huge Machine Egg 5", }, - "value": 19572601, + "value": 363806, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Cyborg Cat", - "pt": 1, + "id": "Meme Pack", }, - "value": 112, + "value": 400214, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Shadow Wolf", - "pt": 1, + "id": "Pog Dragon Card", }, - "value": 2634, + "value": 14728466, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Police Cat", - "pt": 2, - "sh": true, + "id": "Pog Dog Card", + "pt": 1, }, - "value": 922822092, + "value": 9367273, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Evolved Peacock", + "id": "Pog Dog Card", }, - "value": 163375910, + "value": 45713446, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Vibrant Whale", - "pt": 2, - "sh": true, + "id": "Pog Monkey Card", }, - "value": 63229, + "value": 1969626, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Little Melty", + "id": "Pog Shark Card", "pt": 1, }, - "value": 384472606, + "value": 66580, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "White Bunny", - "pt": 1, + "id": "Pog Dragon Card", + "pt": 2, }, - "value": 36401, + "value": 568781, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Royal Cloud Cat", - "pt": 2, - "sh": true, + "id": "Pog Dragon Card", + "pt": 1, }, - "value": 33179, + "value": 3170230, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Doodle Cat", + "id": "Camo Axolotl Card", }, - "value": 66654288, + "value": 29281441, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Rudolf", + "id": "Camo Axolotl Card", + "pt": 1, }, - "value": 64178, + "value": 5901876, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Ghost", - "sh": true, + "id": "Chill Axolotl Card", }, - "value": 294498482, + "value": 9168778, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Giraffe", + "id": "Camo Axolotl Card", "pt": 2, }, - "value": 82501095, + "value": 1156483, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Diamond Cat", - "pt": 1, + "id": "Nature Axolotl Card", }, - "value": 11824441, + "value": 1231140, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Snow Leopard", - "sh": true, + "id": "Chill Axolotl Card", + "pt": 1, }, - "value": 845, + "value": 1893015, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Quantum Agony", + "id": "Pog Dog Card", + "sh": true, }, - "value": 64157757, + "value": 367349, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Gazelle", - "sh": true, + "id": "Fancy Axolotl Card", + "pt": 1, }, - "value": 4305, + "value": 36838, }, { "category": "Pet", "configData": { - "id": "Black Bear", + "id": "Huge Hell Spider", + "pt": 1, }, - "value": 96, + "value": 2916, }, { "category": "Pet", "configData": { - "id": "Huge Mushroom Raccoon", - "pt": 2, + "id": "Huge Hell Spider", }, - "value": 149171853, + "value": 6148, }, { "category": "Pet", "configData": { - "id": "Chicken", - "pt": 2, + "id": "Pog Dog", }, - "value": 54, + "value": 5399973, }, { "category": "Pet", "configData": { - "id": "Lion", - "pt": 1, + "id": "Pog Dragon", }, - "value": 8389, + "value": 1983983, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Crystal Dog", - "pt": 1, + "id": "Pog Dog Card", + "pt": 2, }, - "value": 7299813, + "value": 1568066, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Crocodile", + "id": "Noob Card", }, - "value": 1260, + "value": 55134, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Rift Dragon", + "id": "Hippomelon Card", }, - "value": 5486330, + "value": 48149, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Pufferfish", + "id": "Pog Shark Card", }, - "value": 279, + "value": 263950, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Mosaic Griffin", - "pt": 1, + "id": "Ninja Pack", }, - "value": 7680688, + "value": 2475301, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Holiday Pegasus", + "id": "Ninja Snake Card", }, - "value": 3540953, + "value": 2788021, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Bunny", + "id": "Ninja Otter Card", + "pt": 1, }, - "value": 55333, + "value": 217239, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Ladybug", + "id": "Sensei Penguin Card", "pt": 1, }, - "value": 4056, + "value": 4553, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Blobenstein", + "id": "Ninja Otter Card", }, - "value": 13008233, + "value": 953485, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Ninja Cat", + "id": "Pog Monkey Card", "pt": 1, }, - "value": 1302, + "value": 486708, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Happy Rock", - "pt": 2, + "id": "Pog Monkey Card", "sh": true, }, - "value": 3000, + "value": 23266, }, { "category": "Pet", "configData": { - "id": "Emerald Monkey", - "pt": 2, - "sh": true, + "id": "Nature Axolotl", }, - "value": 176328925, + "value": 214690, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Pink Marshmallow Chick", + "id": "Pog Dog Card", + "pt": 1, "sh": true, }, - "value": 3779313493, + "value": 84237, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Parrot", + "id": "Chill Axolotl Card", "pt": 2, + }, + "value": 393150, + }, + { + "category": "Card", + "configData": { + "id": "Noob Card", "sh": true, }, - "value": 1536, + "value": 4733, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Egg Spitting Dino", + "id": "Huge Hubert Card", }, - "value": 130, + "value": 4701, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Neon Twilight Dragon", - "pt": 2, + "id": "Fancy Axolotl Card", }, - "value": 70644282, + "value": 162874, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Pufferfish", - "sh": true, + "id": "Hot Dooooog Card", }, - "value": 3748493752, + "value": 33030, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Creepy Yeti", + "id": "Camo Axolotl Card", + "pt": 1, "sh": true, }, - "value": 7051, + "value": 57147, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Scarecrow Cat", + "id": "Pog Monkey Card", + "pt": 2, }, - "value": 62545994, + "value": 98546, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Virus Griffin", + "id": "Pog Dragon Card", "sh": true, }, - "value": 9992420, + "value": 133790, }, { "category": "Pet", "configData": { - "cv": 1, - "id": "Chroma Tiger", + "id": "Pog Dog", + "pt": 1, }, - "value": 25886, + "value": 1111003, }, { "category": "Pet", "configData": { - "id": "Masked Owl", + "id": "Pog Dog", "pt": 2, }, - "value": 7757, + "value": 518436, }, { "category": "Pet", "configData": { - "id": "Horse", - "sh": true, + "id": "Pog Dragon", + "pt": 1, }, - "value": 624, + "value": 367698, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Prison Axolotl", + "id": "Nature Axolotl Card", "sh": true, }, - "value": 532, + "value": 14448, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Flamingo", + "id": "Nature Axolotl Card", "pt": 1, }, - "value": 205121, + "value": 269765, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Grumpy Cat", + "id": "Huge Pog Cat Card", }, - "value": 33089343, + "value": 2058, }, { "category": "Pet", "configData": { - "id": "Jelly Panda", - "sh": true, + "id": "Pog Monkey", }, - "value": 6844372, + "value": 384886, }, { "category": "Pet", "configData": { - "id": "Parrot", + "id": "Hippomelon", }, - "value": 473, + "value": 48192, }, { "category": "Pet", "configData": { - "id": "Huge Pumpkin Scarecrow", - "sh": true, + "id": "Noob", }, - "value": 1106569215, + "value": 61225, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Poseidon Corgi", + "id": "Booster", }, - "value": 111, + "value": 40412, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Pink Marshmallow Chick", + "id": "Camo Axolotl Card", + "sh": true, }, - "value": 319864218, + "value": 258908, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Balloon Cat", + "id": "Chill Axolotl Card", + "pt": 1, + "sh": true, }, - "value": 171566442, + "value": 20410, }, { "category": "Pet", "configData": { - "id": "Grinch Cat", - "pt": 2, + "id": "Huge Detective Terrier", }, - "value": 17293042, + "value": 90072, }, { "category": "Pet", "configData": { - "id": "Wyvern of Hades", - "pt": 2, + "id": "Camo Axolotl", }, - "value": 6010, + "value": 3678621, }, { "category": "Pet", "configData": { - "id": "Teddy Bear", - "pt": 2, + "id": "Huge Green Cobra", + }, + "value": 149150, + }, + { + "category": "Card", + "configData": { + "id": "Chill Axolotl Card", "sh": true, }, - "value": 1368, + "value": 88559, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Marshmallow Agony", + "id": "Ninja Snake Card", "pt": 1, }, - "value": 84382444, + "value": 600981, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Bearserker", + "id": "Ninja Otter Card", "pt": 2, }, - "value": 570, + "value": 51320, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Midnight Axolotl", + "id": "Ninja Snake Card", + "pt": 2, + }, + "value": 138375, + }, + { + "category": "Card", + "configData": { + "id": "Hot Dooooog Card", "sh": true, }, - "value": 3115, + "value": 2742, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Pastel Elephant", + "id": "Hippomelon Card", "sh": true, }, - "value": 328720664, + "value": 3926, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Cosmic Agony", + "id": "Noob Card", "pt": 2, }, - "value": 33403325, + "value": 4645, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Cyberpunk Gecko", - "sh": true, + "id": "Pog Shark Card", + "pt": 2, }, - "value": 217, + "value": 14877, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Silver Bison", + "id": "Pog Dog Card", "pt": 2, + "sh": true, }, - "value": 1827, + "value": 18866, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Clover Unicorn", + "id": "Nature Axolotl Card", "pt": 2, }, - "value": 482000204, + "value": 60009, }, { "category": "Pet", "configData": { - "id": "Dino Cat", + "id": "Chill Axolotl", }, - "value": 25727, + "value": 1392208, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Emerald Monkey", + "id": "BIG Pack", }, - "value": 4687972, + "value": 36048592, }, { "category": "Pet", "configData": { - "id": "Huge Present Chest Mimic", - "pt": 2, + "id": "Camo Axolotl", + "pt": 1, }, - "value": 1351749789, + "value": 796562, }, { "category": "Pet", "configData": { - "id": "Royal Peacock", - "pt": 2, + "id": "Chill Axolotl", + "pt": 1, }, - "value": 539, + "value": 282898, }, { "category": "Pet", "configData": { - "id": "Demon", + "id": "Camo Axolotl", "pt": 2, }, - "value": 642, + "value": 353012, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Nightfall Tiger", - "pt": 1, + "id": "Huge Hubert Card", "sh": true, }, - "value": 44039978, + "value": 213, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Carnival Elephant", - "pt": 1, - "sh": true, + "id": "Hot Dooooog Card", + "pt": 2, }, - "value": 100, + "value": 2711, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Tiedye Axolotl", - "pt": 1, + "id": "Ninja Snake Card", "sh": true, }, - "value": 104671716, + "value": 32847, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "African Wild Dog", + "id": "Pog Dragon Card", "pt": 2, + "sh": true, }, - "value": 5397, + "value": 6945, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Electric Corgi", - "pt": 1, + "id": "Kung Fu Monkey Card", }, - "value": 87, + "value": 148100, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Fawn", + "id": "Huge Hubert Card", "pt": 2, }, - "value": 1251, + "value": 236, }, { "category": "Pet", "configData": { - "id": "Huge Party Monkey", - "pt": 1, + "id": "Hot Dooooog", }, - "value": 2724264086, + "value": 40932, }, { "category": "Pet", "configData": { - "id": "Mosaic Lamb", + "id": "Huge Green Cobra", "pt": 1, }, - "value": 7350251, + "value": 14855, }, { "category": "Pet", "configData": { - "id": "Dragonfruit Dragon", - "pt": 2, + "id": "Huge Ladybug", }, - "value": 23352838, + "value": 45198, }, { "category": "Pet", "configData": { - "id": "Goblin", - "sh": true, + "id": "Huge Spitting Dino", + "pt": 1, }, - "value": 42923, + "value": 1113, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Neon Dog", - "sh": true, + "id": "Huge Storm Axolotl Card", }, - "value": 8996809, + "value": 1335, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Glitched Immortuus", - "pt": 1, + "id": "Camo Axolotl Card", + "pt": 2, + "sh": true, }, - "value": 1728, + "value": 12890, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Plague Cow", + "id": "Hippomelon Card", "pt": 2, }, - "value": 32933, + "value": 3954, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Arctic Fox", + "id": "Kung Fu Monkey Card", "pt": 2, }, - "value": 13971, + "value": 7511, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Green Fish", + "id": "Sensei Penguin Card", }, - "value": 1383, + "value": 21190, }, { "category": "Pet", "configData": { - "id": "Titanic Valentines Cat", + "id": "Huge Ladybug", + "pt": 1, + "sh": true, }, - "value": 12945460801, + "value": 192, }, { "category": "Pet", "configData": { - "id": "Plague Cow", - "pt": 2, - "sh": true, + "id": "Huge Hubert", }, - "value": 50675385, + "value": 17482, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Meebo in a Spaceship", + "id": "Pog Dragon Card", "pt": 1, + "sh": true, }, - "value": 193674220, + "value": 31339, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Hacker Corgi", - "pt": 2, + "id": "Kung Fu Monkey Card", + "pt": 1, }, - "value": 80, + "value": 35241, }, { "category": "Pet", "configData": { - "id": "Huge Inferno Cat", + "id": "Huge Hell Spider", + "pt": 2, }, - "value": 1431409189, + "value": 798, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Prison Axolotl", + "id": "Fancy Axolotl Card", "pt": 2, }, - "value": 197, + "value": 8606, }, { "category": "Pet", "configData": { - "id": "Ice Corgi", - "pt": 2, + "id": "Huge Spitting Dino", }, - "value": 1322, + "value": 11981, }, { "category": "Pet", "configData": { - "id": "Rainbow Unicorn", + "id": "Huge Green Cobra", + "sh": true, }, - "value": 5664158, + "value": 5984, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Hell Spider", + "id": "Pog Monkey Card", + "pt": 1, "sh": true, }, - "value": 841, + "value": 5176, }, { "category": "Pet", "configData": { - "id": "Egg Dino", + "id": "Ninja Snake", }, - "value": 195, + "value": 449503, }, { "category": "Pet", "configData": { - "id": "Rave Jaguar", - "pt": 2, - "sh": true, + "id": "Pog Shark", }, - "value": 1454, + "value": 54355, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Nightmare Kraken", - "pt": 2, - "sh": true, + "id": "Tech Chest Mimic Card", }, - "value": 402039336, + "value": 20708606, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Detective Cat", + "id": "Empyrean Lion Card", "pt": 2, }, - "value": 216, + "value": 2852708, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Pristine Snake", + "id": "Empyrean Lion Card", }, - "value": 69324356, + "value": 72848693, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Carnival Panda", - "pt": 1, + "id": "Blue BIG Maskot Card", }, - "value": 28228, + "value": 274155, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Masked Owl", + "id": "Empyrean Lion Card", + "pt": 1, }, - "value": 880, + "value": 14440091, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Nuclear Dragon", - "pt": 1, + "id": "Titanic Pop Cat Card", }, - "value": 17468, + "value": 350, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Party Crown Ducky", + "id": "Chill Axolotl Card", + "pt": 2, + "sh": true, }, - "value": 118860486, + "value": 4584, }, { "category": "Pet", "configData": { - "id": "Huge Kitsune Fox", - "pt": 2, + "id": "Pog Dog", + "sh": true, }, - "value": 183265215, + "value": 54564, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Angelus", + "id": "Noob Card", + "pt": 2, + "sh": true, }, - "value": 1216, + "value": 139, }, { "category": "Pet", "configData": { - "id": "Axolotl", + "id": "Ninja Otter", }, - "value": 1446, + "value": 155616, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Cyborg Dragon", + "id": "Ninja Snake Card", "pt": 2, + "sh": true, }, - "value": 2061, + "value": 1437, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Hell Fox", + "id": "Nature Axolotl Card", + "pt": 1, "sh": true, }, - "value": 3752, + "value": 3398, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Puma", + "id": "Huge Storm Axolotl Card", + "pt": 2, + }, + "value": 59, + }, + { + "category": "Card", + "configData": { + "id": "Fancy Axolotl Card", + "pt": 1, "sh": true, }, - "value": 1205, + "value": 410, }, { "category": "Pet", "configData": { - "id": "Huge Electric Penguin", + "id": "Chill Axolotl", "pt": 1, + "sh": true, }, - "value": 38941566, + "value": 4233, }, { "category": "Pet", "configData": { - "id": "Huge Doodle Fairy", - "sh": true, + "id": "Chill Axolotl", + "pt": 2, }, - "value": 395095430, + "value": 115473, }, { "category": "Pet", "configData": { - "id": "Stingray", - "sh": true, + "id": "Huge Green Cobra", + "pt": 2, }, - "value": 6562, + "value": 5794, }, { "category": "Pet", "configData": { - "id": "Junkyard Bat", + "id": "Pog Dog", "pt": 1, "sh": true, }, - "value": 10000, + "value": 13900, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Empyrean Agony", - "pt": 1, + "id": "Empyrean Lion Card", "sh": true, }, - "value": 1706880019, + "value": 578319, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Subzero Cat", + "id": "Pog Shark Card", + "sh": true, }, - "value": 10364820, + "value": 3139, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Panda", + "id": "Fancy Axolotl Card", "sh": true, }, - "value": 686, + "value": 1965, }, { "category": "Pet", "configData": { - "id": "Huge Divinus", + "id": "Huge Detective Terrier", + "pt": 1, }, - "value": 84363199, + "value": 8904, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Doodle Cat", + "id": "Pog Shark Card", + "pt": 2, "sh": true, }, - "value": 464798464, + "value": 136, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Cyborg Bunny", + "id": "Huge Pog Cat Card", + "pt": 2, }, - "value": 293, + "value": 114, }, { "category": "Pet", "configData": { - "id": "Snow Leopard", - "pt": 1, + "id": "Huge Hell Spider", + "sh": true, }, - "value": 278, + "value": 186, }, { "category": "Pet", "configData": { - "cv": 3, - "id": "Huge Chroma Unicorn", + "id": "Pog Dragon", + "pt": 2, }, - "value": 499270491, + "value": 155823, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Train Conductor Dog", + "id": "Hippomelon Card", + "pt": 2, + "sh": true, + }, + "value": 84, + }, + { + "category": "Card", + "configData": { + "id": "Huge Pog Cat Card", "pt": 1, }, - "value": 283, + "value": 495, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Rhino", + "id": "Ninja Otter Card", "sh": true, }, - "value": 426, + "value": 11689, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Chest Mimic", + "id": "Ninja Snake Card", "pt": 1, + "sh": true, }, - "value": 471993970, + "value": 7204, }, { "category": "Pet", "configData": { - "id": "Anime Corgi", + "id": "Huge Hell Spider", + "pt": 2, "sh": true, }, - "value": 14048823, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Huge Sandcastle Cat", + "id": "Pog Monkey", + "pt": 1, }, - "value": 188145378, + "value": 56183, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Mosaic Corgi", + "id": "Tech Chest Mimic Card", "pt": 1, - "sh": true, }, - "value": 700118348, + "value": 4159956, }, { "category": "Pet", "configData": { - "id": "Forged Turtle", + "id": "Nature Axolotl", "pt": 1, }, - "value": 204877, + "value": 46584, }, { "category": "Pet", "configData": { - "id": "Cyborg Dominus", - "pt": 2, + "id": "Ninja Snake", + "pt": 1, + }, + "value": 102268, + }, + { + "category": "Card", + "configData": { + "id": "Kung Fu Monkey Card", "sh": true, }, - "value": 2199878, + "value": 1584, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Comet Agony", + "id": "Red Balloon Panda Card", }, - "value": 805, + "value": 2460097, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Dalmatian", - "pt": 2, + "id": "Huge Storm Axolotl Card", + "pt": 1, }, - "value": 1304, + "value": 401, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Flamortuus", - "pt": 2, + "id": "Pog Shark Card", + "pt": 1, + "sh": true, }, - "value": 161, + "value": 715, }, { "category": "Pet", "configData": { - "id": "Cloud Hedgehog", - "sh": true, + "id": "Kung Fu Monkey", }, - "value": 1513, + "value": 25537, }, { "category": "Pet", "configData": { - "id": "Pajamas Cat", - "sh": true, + "id": "Huge Stacked Dominus", }, - "value": 2374560, + "value": 3012, }, { "category": "Pet", "configData": { - "id": "Bunny", + "id": "Huge Detective Terrier", "pt": 2, - "sh": true, }, - "value": 802000, + "value": 3379, }, { "category": "Pet", "configData": { - "id": "Ladybug", - "sh": true, + "id": "Empyrean Lion", }, - "value": 1632, + "value": 4424615, }, { "category": "Pet", "configData": { - "id": "Huge Mechatronic Robot", - "sh": true, + "id": "Huge Ladybug", + "pt": 1, }, - "value": 84835348, + "value": 4436, }, { "category": "Pet", "configData": { - "id": "Huge UV Kitsune", - "pt": 2, + "id": "Huge Ladybug", "sh": true, }, - "value": 4498000006, + "value": 1840, }, { "category": "Pet", "configData": { - "id": "Owl", + "id": "Pog Shark", "pt": 1, }, - "value": 1158, + "value": 8339, }, { "category": "Pet", "configData": { - "id": "Midnight Axolotl", - "pt": 2, - "sh": true, + "id": "Fancy Axolotl", }, - "value": 10000, + "value": 34166, }, { "category": "Pet", "configData": { - "id": "Huge Koi Fish", + "id": "Camo Axolotl", "pt": 1, + "sh": true, }, - "value": 45675280, + "value": 9852, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Orca", + "id": "Kung Fu Monkey Card", + "pt": 1, + "sh": true, }, - "value": 4623740, + "value": 329, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Pumpkin Scarecrow", + "id": "Pog Monkey Card", "pt": 2, "sh": true, }, - "value": 5000000000, + "value": 965, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Shiba", - "pt": 1, + "id": "Hot Dooooog Card", + "pt": 2, "sh": true, }, - "value": 1, + "value": 58, }, { "category": "Pet", "configData": { - "id": "Sabretooth Tiger", - "sh": true, + "id": "Hippomelon", + "pt": 2, }, - "value": 2628, + "value": 1242, }, { "category": "Pet", "configData": { - "id": "Chimpanzee", + "id": "Huge Detective Terrier", "sh": true, }, - "value": 476, + "value": 3638, }, { "category": "Pet", "configData": { - "id": "Lemur", + "id": "Nature Axolotl", "pt": 2, - "sh": true, }, - "value": 50000, + "value": 17419, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Panther", + "id": "Red Balloon Panda Card", "pt": 1, }, - "value": 19053, + "value": 546750, }, { "category": "Pet", "configData": { - "id": "UV Cat", - "pt": 1, + "id": "Noob", "sh": true, }, - "value": 500, + "value": 993, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Divinus", - "pt": 2, + "id": "Huge Ninja Capybara Card", }, - "value": 321104891, + "value": 181, }, { "category": "Pet", "configData": { - "id": "Huge Exquisite Cat", + "id": "Ninja Otter", "pt": 1, }, - "value": 235430634, + "value": 33370, }, { "category": "Pet", "configData": { - "id": "Chocolate Dog", + "id": "Huge Hell Spider", "pt": 1, + "sh": true, }, - "value": 2178, + "value": 37, }, { "category": "Pet", "configData": { - "id": "Huge Sketch Dragon", - "pt": 2, + "id": "Titanic Pop Cat", }, - "value": 1306782445, + "value": 1819, }, { "category": "Pet", "configData": { - "id": "Hamster", + "id": "Pog Dragon", + "pt": 1, + "sh": true, }, - "value": 35, + "value": 4878, }, { "category": "Pet", "configData": { - "id": "Umbrella Dog", + "id": "Noob", + "pt": 2, }, - "value": 74, + "value": 1438, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Knife Cat", + "id": "Sensei Penguin Card", + "pt": 2, }, - "value": 3933022, + "value": 858, }, { "category": "Pet", "configData": { - "id": "Huge Prickly Panda", - "pt": 2, + "id": "Tech Chest Mimic", }, - "value": 5343805419, + "value": 1637785, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Corgi", + "id": "Huge Hubert Card", + "pt": 2, + "sh": true, }, - "value": 155097150, + "value": 3, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Hellish Axolotl", + "id": "Nature Axolotl Card", "pt": 2, + "sh": true, }, - "value": 2595, + "value": 675, }, { "category": "Pet", "configData": { - "id": "Quokka", + "id": "Camo Axolotl", "sh": true, }, - "value": 1761, + "value": 30544, }, { "category": "Pet", "configData": { - "id": "Corgi", + "id": "Huge Green Cobra", + "pt": 1, + "sh": true, }, - "value": 68842, + "value": 680, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Frost Dragon", - "pt": 1, + "id": "Ninja Otter Card", + "pt": 2, + "sh": true, }, - "value": 165, + "value": 492, }, { "category": "Pet", "configData": { - "id": "Pastel Sock Corgi", + "id": "Hippomelon", + "sh": true, }, - "value": 205, + "value": 1166, }, { "category": "Pet", "configData": { - "id": "Huge Neon Griffin", + "id": "Chill Axolotl", + "sh": true, }, - "value": 159341846, + "value": 11021, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Snow Squirrel", + "id": "Ninja Otter Card", + "pt": 1, "sh": true, }, - "value": 15245, + "value": 2550, }, { "category": "Pet", "configData": { - "id": "Huge Cyborg Dragon", + "id": "Camo Axolotl", "pt": 2, "sh": true, }, - "value": 360000000, + "value": 3960, }, { "category": "Pet", "configData": { - "id": "Cool Cat", + "id": "Pog Monkey", "pt": 2, - "sh": true, }, - "value": 2495432151, + "value": 18560, }, { "category": "Pet", "configData": { - "id": "Inferno Dominus", + "id": "Ninja Snake", "pt": 2, - "sh": true, }, - "value": 146484482, + "value": 32134, }, { "category": "Pet", "configData": { - "id": "Huge Mosaic Griffin", - "sh": true, + "id": "Hot Dooooog", + "pt": 2, }, - "value": 428802737, + "value": 1379, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Inferno Dominus", + "id": "Sensei Penguin Card", "sh": true, }, - "value": 787177429, + "value": 139, }, { "category": "Pet", "configData": { - "id": "Tiedye Griffin", - "pt": 1, + "id": "Huge Spitting Dino", + "pt": 2, }, - "value": 7050652, + "value": 490, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Comet Pony", - "pt": 1, - "sh": true, + "id": "Titanic Pop Cat Card", + "pt": 2, }, - "value": 130789, + "value": 12, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Robber Pug", + "id": "Huge Pog Cat Card", "pt": 1, "sh": true, }, - "value": 325270612, + "value": 3, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Mech Dino", - "sh": true, + "id": "Tech Chest Mimic Card", + "pt": 2, }, - "value": 107166, + "value": 788373, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Chameleon", + "id": "Huge Pog Cat Card", + "sh": true, }, - "value": 112395573, + "value": 24, }, { "category": "Pet", "configData": { - "id": "Rabbit", + "id": "Pog Dog", "pt": 2, + "sh": true, }, - "value": 237, + "value": 4369, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Sage Axolotl", - "pt": 1, + "id": "Huge Storm Axolotl Card", + "sh": true, }, - "value": 86332750, + "value": 10, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Pirate Panda", - "pt": 2, + "id": "Titanic Pop Cat Card", + "sh": true, }, - "value": 291, + "value": 12, }, { "category": "Pet", "configData": { - "id": "Nine Eyed Lion", + "id": "Pog Dragon", + "sh": true, }, - "value": 344, + "value": 16354, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Hacker Corgi", - "pt": 1, + "id": "Tech Chest Mimic Card", + "sh": true, }, - "value": 426, + "value": 168280, }, { "category": "Pet", "configData": { - "id": "Jelly Piggy", + "id": "Hot Dooooog", + "sh": true, }, - "value": 10789175, + "value": 1197, }, { "category": "Pet", "configData": { - "id": "Cyborg Panda", + "id": "Huge Ladybug", + "pt": 2, }, - "value": 444, + "value": 1731, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Lightning Bat", + "id": "Empyrean Lion Card", + "pt": 1, + "sh": true, }, - "value": 8687330, + "value": 117324, }, { "category": "Pet", "configData": { - "id": "Soul Cat", + "id": "Huge Hubert", "pt": 2, }, - "value": 10696421, + "value": 301, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Atomic Forged Shark", + "id": "Red Balloon Panda Card", "pt": 2, }, - "value": 242773950, + "value": 98173, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Pop Cat", + "id": "Huge Ninja Capybara Card", + "pt": 1, }, - "value": 19108924, + "value": 46, }, { "category": "Pet", "configData": { - "id": "Huge Kawaii Cat", + "id": "Fancy Axolotl", + "pt": 2, }, - "value": 583999329, + "value": 1964, }, { "category": "Pet", "configData": { - "id": "Sloth", - "pt": 2, + "id": "Fancy Axolotl", + "pt": 1, }, - "value": 122, + "value": 7311, }, { "category": "Pet", "configData": { - "id": "Titanic Lucki", - "sh": true, + "id": "Huge Pog Cat", }, - "value": 4399200051, + "value": 4094, }, { "category": "Pet", "configData": { - "id": "Wizard Westie", + "id": "Empyrean Lion", "pt": 1, - "sh": true, }, - "value": 143, + "value": 945499, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Parrot", + "id": "Blue BIG Maskot Card", "pt": 2, }, - "value": 17535, + "value": 13586, }, { "category": "Pet", "configData": { - "id": "M-B PROTOTYPE", + "id": "Titanic Owl", }, - "value": 1730, + "value": 1548, }, { "category": "Pet", "configData": { - "id": "Yee-haw Cat", + "id": "Huge Spitting Dino", + "sh": true, }, - "value": 7360986, + "value": 467, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Dino Axolotl", + "id": "Huge Arcane Dominus Card", }, - "value": 329, + "value": 1382, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Purple Cobra", + "id": "Blue BIG Maskot Card", "pt": 1, }, - "value": 213, + "value": 62027, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Angel Pegasus", + "id": "Tech Chest Mimic Card", + "pt": 1, "sh": true, }, - "value": 657, + "value": 35901, }, { "category": "Pet", "configData": { - "id": "Huge Pumpkin Cat", - "pt": 1, - "sh": true, + "id": "Huge Storm Axolotl", }, - "value": 3426660526, + "value": 2838, }, { "category": "Pet", "configData": { - "id": "Titanic Pink Kitsune Fox", - "sh": true, + "id": "Kung Fu Monkey", + "pt": 1, }, - "value": 20500000000, + "value": 4003, }, { "category": "Pet", "configData": { - "id": "Black Hole Immortuus", + "id": "Ninja Snake", + "sh": true, }, - "value": 7773280, + "value": 2569, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Stingray", + "id": "Kung Fu Monkey Card", + "pt": 2, + "sh": true, }, - "value": 685, + "value": 57, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Forged Turtle", + "id": "Huge Ninja Capybara Card", + "pt": 2, }, - "value": 597, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Cyborg Panda", + "id": "Huge Pog Cat", "pt": 1, }, - "value": 570, + "value": 760, }, { "category": "Pet", "configData": { - "id": "Gecko", - "sh": true, + "id": "Ninja Otter", + "pt": 2, }, - "value": 1755, + "value": 8308, }, { "category": "Pet", "configData": { - "id": "Huge Tiedye Cat", - "pt": 1, + "id": "Sensei Penguin", }, - "value": 114758973, + "value": 2951, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Gargoyle Dragon", - "pt": 1, + "id": "Red Balloon Panda Card", + "sh": true, }, - "value": 371000752, + "value": 24012, }, { "category": "Pet", "configData": { - "id": "Three Headed Dragon", + "id": "Huge Green Cobra", + "pt": 2, "sh": true, }, - "value": 1680, + "value": 217, }, { "category": "Pet", "configData": { - "id": "Cow", + "id": "Pog Monkey", "pt": 1, + "sh": true, }, - "value": 22, + "value": 944, }, { "category": "Pet", "configData": { - "id": "Silver Dragon", - "pt": 1, + "id": "Huge Stacked Dominus", + "sh": true, }, - "value": 200000, + "value": 120, }, { "category": "Pet", "configData": { - "id": "Tiedye Dragon", + "id": "Chill Axolotl", + "pt": 2, "sh": true, }, - "value": 10187311, + "value": 1978, }, { "category": "Pet", "configData": { - "id": "Kitsune Fox", + "id": "Huge Pog Cat", + "pt": 2, }, - "value": 241, + "value": 178, }, { "category": "Pet", "configData": { - "id": "Cotton Candy Lamb", + "id": "Huge Detective Terrier", "pt": 1, + "sh": true, }, - "value": 999, + "value": 365, }, { "category": "Pet", "configData": { - "id": "Hedgehog", - "pt": 1, + "id": "Huge Ninja Capybara", }, - "value": 1296, + "value": 303, }, { "category": "Pet", "configData": { - "id": "Enchanted Dragon", + "id": "Pog Dragon", + "pt": 2, "sh": true, }, - "value": 1321, + "value": 1615, }, { "category": "Pet", "configData": { - "id": "Leprechaun Cat", - "pt": 2, + "id": "Huge Hubert", "sh": true, }, - "value": 1032, + "value": 300, }, { "category": "Pet", "configData": { - "id": "Chimpanzee", + "id": "Blue BIG Maskot", }, - "value": 236, + "value": 63276, }, { "category": "Pet", "configData": { - "id": "Jolly Penguin", + "id": "Red Balloon Panda", }, - "value": 10789, + "value": 314900, }, { "category": "Pet", "configData": { - "id": "Huge Error Cat", + "id": "Pog Monkey", "sh": true, }, - "value": 309284822, + "value": 1743, }, { "category": "Pet", "configData": { - "id": "Exquisite Cat", + "id": "Pog Shark", "pt": 2, }, - "value": 38809482, + "value": 1728, }, { "category": "Pet", "configData": { - "id": "Cyborg Cat", - "pt": 1, + "id": "Huge Detective Terrier", + "pt": 2, "sh": true, }, - "value": 5, + "value": 144, }, { "category": "Pet", "configData": { - "id": "Huge Blazing Bat", + "id": "Titanic Owl", + "pt": 2, }, - "value": 125941292, + "value": 64, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Enchanted Deer", + "id": "Sensei Penguin Card", "pt": 1, + "sh": true, }, - "value": 128267, + "value": 37, }, { "category": "Pet", "configData": { - "id": "Huge Pineapple Cat", - "sh": true, + "id": "Tech Chest Mimic", + "pt": 1, }, - "value": 332131611, + "value": 344292, }, { "category": "Pet", "configData": { - "id": "Fish in a Bucket", + "id": "Sensei Penguin", "pt": 1, }, - "value": 344, + "value": 425, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Chick", + "id": "Empyrean Lion Card", "pt": 2, + "sh": true, }, - "value": 7168, + "value": 24505, }, { "category": "Pet", "configData": { - "id": "Huge Safety Cat", + "id": "Huge Storm Axolotl", + "pt": 1, + }, + "value": 528, + }, + { + "category": "Pet", + "configData": { + "id": "Kung Fu Monkey", "pt": 2, }, - "value": 3727121901, + "value": 1186, }, { "category": "Pet", "configData": { - "id": "Hacked Cat", + "id": "Ninja Snake", + "pt": 1, "sh": true, }, - "value": 1312, + "value": 1828, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Hydra", + "id": "Blue BIG Maskot Card", "pt": 1, + "sh": true, }, - "value": 13786, + "value": 822, }, { "category": "Pet", "configData": { - "id": "Rhino", + "id": "Huge Stacked Dominus", "pt": 2, }, - "value": 377, + "value": 119, }, { "category": "Pet", "configData": { - "id": "Encrusted Wolf", - "pt": 1, - "sh": true, + "id": "Tech Chest Mimic", + "pt": 2, }, - "value": 13601, + "value": 250985, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Nuclear Wolf", - "pt": 1, + "id": "Blue BIG Maskot Card", + "sh": true, }, - "value": 42622, + "value": 3332, }, { "category": "Pet", "configData": { - "id": "Huge Sun Agony", + "id": "Fancy Axolotl", + "sh": true, }, - "value": 163269621, + "value": 204, }, { "category": "Pet", "configData": { - "id": "Dolphin", + "id": "Empyrean Lion", "pt": 2, }, - "value": 312, + "value": 514722, }, { "category": "Pet", "configData": { - "id": "Blueberry Cow", - "pt": 2, + "id": "Titanic Pop Cat", + "sh": true, }, - "value": 9129213, + "value": 34, }, { "category": "Pet", "configData": { - "id": "Huge Love Lamb", - "pt": 2, + "id": "Empyrean Lion", + "pt": 1, + "sh": true, }, - "value": 2003926921, + "value": 14491, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "404 Demon", - "pt": 1, + "id": "Huge Pog Cat Card", + "pt": 2, "sh": true, }, - "value": 60710, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Glowy the Ghost", + "id": "Fancy Axolotl", "pt": 2, "sh": true, }, - "value": 6078, + "value": 55, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Happy Rock", + "id": "Red Balloon Panda Card", "pt": 2, "sh": true, }, - "value": 1538050127, + "value": 1366, }, { "category": "Pet", "configData": { - "id": "Stealth Bobcat", + "id": "Huge Stacked Dominus", "pt": 1, }, - "value": 9300957, + "value": 273, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Shuriken Corgi", + "id": "Tech Chest Mimic Card", "pt": 2, "sh": true, }, - "value": 562676762, + "value": 8197, }, { "category": "Pet", "configData": { - "id": "Floppa", + "id": "Pog Monkey", + "pt": 2, + "sh": true, + }, + "value": 341, + }, + { + "category": "Card", + "configData": { + "id": "Fancy Axolotl Card", + "pt": 2, + "sh": true, }, - "value": 6814713, + "value": 76, }, { "category": "Pet", "configData": { - "id": "Nightfall Ram", - "pt": 1, + "id": "Red Balloon Panda", + "pt": 2, }, - "value": 10990021, + "value": 45501, }, { "category": "Pet", "configData": { - "id": "Phoenix", - "pt": 1, + "id": "Ninja Otter", + "sh": true, }, - "value": 112, + "value": 707, }, { "category": "Pet", "configData": { - "id": "Tech Sphinx", - "pt": 1, + "id": "Hippomelon", + "pt": 2, + "sh": true, }, - "value": 2759, + "value": 61, }, { "category": "Pet", "configData": { - "id": "Dino Bear", + "id": "Titanic Pop Cat", "pt": 2, }, - "value": 2836, + "value": 36, }, { "category": "Pet", "configData": { - "id": "Lunar Bat", - "pt": 1, + "id": "Empyrean Lion", "sh": true, }, - "value": 3292, + "value": 43329, }, { "category": "Pet", "configData": { - "id": "Huge Mantis Shrimp", + "id": "Huge Ninja Capybara", "pt": 1, }, - "value": 415658812, + "value": 60, }, { "category": "Pet", "configData": { - "id": "Tiedye Corgi", + "id": "Nature Axolotl", + "pt": 1, + "sh": true, }, - "value": 4060873, + "value": 1349, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Cyborg Bunny", + "id": "Blue BIG Maskot Card", "pt": 2, "sh": true, }, - "value": 4000, + "value": 155, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Dalmatian", + "id": "Red Balloon Panda Card", + "pt": 1, + "sh": true, }, - "value": 3256, + "value": 5819, }, { "category": "Pet", "configData": { - "id": "Jellyfish", + "id": "Red Balloon Panda", "pt": 1, }, - "value": 741, + "value": 70037, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Titanic Banana Cat", - "pt": 2, + "id": "Huge Arcane Dominus Card", + "pt": 1, }, - "value": 11356736125, + "value": 390, }, { "category": "Pet", "configData": { - "id": "Divinus", + "id": "Titanic Owl", + "pt": 1, }, - "value": 4500, + "value": 132, }, { "category": "Pet", "configData": { - "id": "Huge Ducky", + "id": "Pog Shark", + "sh": true, }, - "value": 199064250, + "value": 221, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Pastel Sock Corgi", - "sh": true, + "id": "Titanic Signature BIG Maskot Card", }, - "value": 6348, + "value": 28, }, { "category": "Pet", "configData": { - "id": "Nyan Cat", + "id": "Blue BIG Maskot", + "pt": 1, }, - "value": 229107894, + "value": 12997, }, { "category": "Pet", "configData": { - "id": "Angry Yeti", + "id": "Huge Arcane Dominus", }, - "value": 489, + "value": 6205, }, { "category": "Pet", "configData": { - "id": "Huge Evolved Peacock", - "sh": true, + "id": "Sensei Penguin", + "pt": 2, }, - "value": 596706779, + "value": 229, }, { "category": "Pet", "configData": { - "id": "Glitched Unicorn", + "id": "Ninja Snake", "pt": 2, + "sh": true, }, - "value": 4843, + "value": 564, }, { "category": "Pet", "configData": { - "id": "Sailor Seal", + "id": "Noob", "pt": 2, "sh": true, }, - "value": 87, + "value": 59, }, { "category": "Pet", "configData": { - "id": "Rave Crab", + "id": "Gargantuan Grim Reaper", }, - "value": 4614219, + "value": 152, }, { "category": "Pet", "configData": { - "id": "Emoji Dog", - "pt": 2, + "id": "Kung Fu Monkey", + "pt": 1, + "sh": true, }, - "value": 15120638, + "value": 132, }, { "category": "Pet", "configData": { - "id": "Broomstick Corgi", + "id": "Hot Dooooog", "pt": 2, "sh": true, }, - "value": 128420, + "value": 39, }, { "category": "Pet", "configData": { - "id": "Huge Elf Cat", + "id": "Red Balloon Panda", + "sh": true, }, - "value": 65636697, + "value": 4251, }, { "category": "Pet", "configData": { - "id": "Broomstick Corgi", + "id": "Kung Fu Monkey", + "pt": 2, "sh": true, }, - "value": 2447, + "value": 48, }, { "category": "Pet", "configData": { - "id": "Huge Arcade Cat", + "id": "Tech Chest Mimic", + "pt": 1, "sh": true, }, - "value": 851578473, + "value": 9193, }, { "category": "Pet", "configData": { - "id": "Huge Bejeweled Unicorn", + "id": "Sensei Penguin", "sh": true, }, - "value": 560715402, + "value": 35, }, { "category": "Pet", "configData": { - "id": "Huge Party Penguin", + "id": "Empyrean Lion", + "pt": 2, + "sh": true, }, - "value": 190146662, + "value": 7317, }, { "category": "Pet", "configData": { - "id": "Ninja Cat", + "id": "Huge Pog Cat", + "sh": true, }, - "value": 1000, + "value": 33, }, { "category": "Pet", "configData": { - "id": "Pastel Deer", + "id": "Huge Storm Axolotl", "pt": 2, - "sh": true, }, - "value": 125600, + "value": 115, }, { "category": "Pet", "configData": { - "id": "Fire Dog", - "sh": true, + "id": "Blue BIG Maskot", + "pt": 2, }, - "value": 135472, + "value": 5812, }, { "category": "Pet", "configData": { - "id": "Fairy", - "pt": 1, + "id": "Titanic Owl", + "sh": true, }, - "value": 743, + "value": 30, }, { "category": "Pet", "configData": { - "id": "Electric Griffin", + "id": "Tech Chest Mimic", + "sh": true, }, - "value": 2184, + "value": 20673, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Honey Badger", + "id": "Sensei Penguin Card", + "pt": 2, + "sh": true, }, - "value": 235, + "value": 12, }, { "category": "Pet", "configData": { - "id": "Huge Hydra Dino", + "id": "Nature Axolotl", "sh": true, }, - "value": 581903909, + "value": 1638, }, { "category": "Pet", "configData": { - "id": "Cyber Slime", + "id": "Pog Shark", "pt": 2, "sh": true, }, - "value": 1000, + "value": 43, }, { "category": "Pet", "configData": { - "id": "Storm Dominus", + "id": "Huge Stacked Dominus", + "pt": 1, "sh": true, }, - "value": 9622651, + "value": 16, }, { "category": "Pet", "configData": { - "id": "Atlantean Dolphin", + "id": "Tech Chest Mimic", "pt": 2, "sh": true, }, - "value": 25000000000, + "value": 5991, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Chimpanzee", + "id": "Titanic Signature BIG Maskot Card", "pt": 1, }, - "value": 278, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Demon", + "id": "Kung Fu Monkey", + "sh": true, }, - "value": 1477, + "value": 174, }, { "category": "Pet", "configData": { - "id": "Rave Troll", - "pt": 2, + "id": "Blue BIG Maskot", + "sh": true, }, - "value": 416, + "value": 641, }, { "category": "Pet", "configData": { - "id": "Squirrel", - "pt": 1, + "id": "Nature Axolotl", + "pt": 2, "sh": true, }, - "value": 4091, + "value": 518, }, { "category": "Pet", "configData": { - "id": "Pufferfish", + "id": "Huge Nightmare Dog", + "pt": 2, "sh": true, }, - "value": 1901, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Mosaic Elephant", + "id": "Huge Ladybug", + "pt": 2, + "sh": true, }, - "value": 4146256, + "value": 73, }, { "category": "Pet", "configData": { - "id": "Huge Comet Cyclops", + "id": "Ninja Otter", + "pt": 1, + "sh": true, }, - "value": 122388252, + "value": 598, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Ninja Axolotl", - "pt": 1, + "id": "Huge Arcane Dominus Card", + "pt": 2, }, - "value": 223454744, + "value": 69, }, { "category": "Pet", "configData": { - "id": "Knight Cat", - "pt": 2, + "id": "Red Balloon Panda", + "pt": 1, "sh": true, }, - "value": 260000, + "value": 2954, }, { "category": "Pet", "configData": { - "id": "Huge Evil Imp", - "pt": 2, + "id": "Huge Spitting Dino", + "pt": 1, + "sh": true, + }, + "value": 54, + }, + { + "category": "Card", + "configData": { + "id": "Huge Arcane Dominus Card", + "sh": true, }, - "value": 193849356, + "value": 17, }, { "category": "Pet", "configData": { - "id": "Huge Festive Cat", + "id": "Huge Arcane Dominus", "pt": 1, }, - "value": 115961757, + "value": 1182, }, { "category": "Pet", "configData": { - "id": "Titanic Hologram Cat", + "id": "Titanic Bobcat", + "sh": true, }, - "value": 13338964283, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Huge Leprechaun Cat", + "id": "Gargantuan Grim Reaper", "pt": 1, }, - "value": 60106111, + "value": 12, }, { "category": "Pet", "configData": { - "id": "Frost Axolotl", + "id": "Fancy Axolotl", + "pt": 1, + "sh": true, }, - "value": 112, + "value": 198, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Cheetah", + "id": "Huge Ninja Capybara Card", "pt": 1, + "sh": true, }, - "value": 3184, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Zombie Corgi", + "id": "Red Balloon Panda", + "pt": 2, "sh": true, }, - "value": 3893, + "value": 1414, }, { "category": "Pet", "configData": { - "id": "Huge Kawaii Dragon", - "pt": 1, - "sh": true, + "id": "Huge Arcane Dominus", + "pt": 2, }, - "value": 3704075662, + "value": 239, }, { "category": "Pet", "configData": { - "id": "Angry Yeti", + "id": "Ninja Otter", "pt": 2, + "sh": true, }, - "value": 966, + "value": 201, }, { "category": "Pet", "configData": { - "id": "Relic Raccoon", + "id": "Huge Pog Cat", "pt": 1, + "sh": true, }, - "value": 232, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Huge Snowman", + "id": "Blue BIG Maskot", + "pt": 1, + "sh": true, }, - "value": 177063745, + "value": 497, }, { "category": "Pet", "configData": { - "id": "Huge Husky", + "id": "Pog Shark", + "pt": 1, + "sh": true, }, - "value": 143731990, + "value": 135, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Heavenly Dove", + "id": "Huge Storm Axolotl Card", "pt": 1, "sh": true, }, - "value": 880351, + "value": 2, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Santa Monkey", + "id": "Huge Ninja Capybara Card", + "sh": true, }, - "value": 302757781, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Cyborg Bunny", - "pt": 1, + "id": "Titanic Signature BIG Maskot", }, - "value": 3535, + "value": 330, }, { "category": "Pet", "configData": { - "id": "Chimpanzee", + "id": "Huge Hubert", "pt": 2, "sh": true, }, - "value": 8200, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Huge Pixel Dragon", + "id": "Gargantuan Grim Reaper", "pt": 2, }, - "value": 659364289, + "value": 8, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Gecko", + "id": "Titanic Signature BIG Maskot Card", + "pt": 2, }, - "value": 505, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Goat", + "id": "Titanic Owl", + "pt": 1, "sh": true, }, - "value": 968, + "value": 4, }, { "category": "Pet", "configData": { - "cv": 1, - "id": "Chroma Tiger", - "sh": true, + "id": "Titanic Signature BIG Maskot", + "pt": 1, }, - "value": 24955021, + "value": 62, }, { "category": "Pet", "configData": { - "id": "Steampunk Wolf", + "id": "Blue BIG Maskot", "pt": 2, "sh": true, }, - "value": 11111, + "value": 222, }, { "category": "Pet", "configData": { - "id": "Colorful Wisp", - "pt": 1, + "id": "Huge Jaguar", + "pt": 2, + "sh": true, }, - "value": 604, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Void Alien", - "pt": 1, + "id": "Huge Storm Axolotl", + "sh": true, }, - "value": 125550, + "value": 20, }, { "category": "Pet", "configData": { - "id": "Ninja Maskot", + "id": "Huge Ninja Capybara", + "pt": 2, }, - "value": 1293, + "value": 12, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Pixel Wolf", + "id": "Huge Arcane Dominus Card", "pt": 2, + "sh": true, }, - "value": 3639999998, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Nightmare Kraken", + "id": "Gargantuan Jurassic Dragon", + "pt": 2, }, - "value": 12382987, + "value": 2, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Colorful Dragon", + "id": "Huge Arcane Dominus Card", "pt": 1, + "sh": true, }, - "value": 266, + "value": 8, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Flower Gecko", + "id": "Titanic Signature BIG Maskot Card", "sh": true, }, - "value": 2481, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Kitsune Fox", + "id": "Sensei Penguin", "pt": 1, "sh": true, }, - "value": 1864, + "value": 21, }, { "category": "Pet", "configData": { - "id": "Frostbyte Dragon", + "id": "Huge Arcane Dominus", "sh": true, }, - "value": 4351, + "value": 42, }, { "category": "Pet", "configData": { - "id": "Mining Dog", + "id": "Titanic Signature BIG Maskot", + "pt": 2, }, - "value": 27462, + "value": 12, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Santa Paws", + "id": "Titanic Signature BIG Maskot Card", "pt": 1, + "sh": true, }, - "value": 396233558, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Demon Cyclops", + "id": "Gargantuan Grim Reaper", + "sh": true, }, - "value": 5628, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Train Conductor Dog", - "pt": 1, + "id": "Sensei Penguin", + "pt": 2, "sh": true, }, - "value": 51377, + "value": 11, }, { "category": "Pet", "configData": { - "id": "Crocodile", + "id": "Huge Arcane Dominus", + "pt": 1, "sh": true, }, - "value": 2062, + "value": 8, }, { "category": "Pet", "configData": { - "id": "Night Terror Cat", + "id": "Huge Ninja Capybara", "pt": 1, "sh": true, }, - "value": 1975, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Hell Rock", + "id": "Huge Arcane Dominus", "pt": 2, + "sh": true, }, - "value": 1309, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Rave Axolotl", + "id": "Huge Storm Axolotl", "pt": 1, + "sh": true, }, - "value": 68, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Chick", + "id": "Huge Ninja Capybara", + "sh": true, }, - "value": 904, + "value": 2, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Chef Cat", + "id": "Titanic Pop Cat Card", + "pt": 2, + "sh": true, }, - "value": 50042930, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Stealth Bobcat", + "id": "Titanic Owl", "pt": 2, + "sh": true, }, - "value": 25175506, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Ducky", + "id": "Huge Pog Cat", + "pt": 2, + "sh": true, }, - "value": 46749, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Huge Unicorn Dragon", + "id": "Titanic Signature BIG Maskot", + "sh": true, }, - "value": 90215728, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Huge Knight Beagle", - "pt": 2, + "id": "Titanic Signature BIG Maskot", + "pt": 1, "sh": true, }, - "value": 1115425177, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Flower Panda", - "pt": 2, + "id": "Huge Hell Monkey", }, - "value": 561, + "value": 3334, }, { "category": "Pet", "configData": { - "id": "Giraffe", + "id": "Huge Hell Monkey", "pt": 1, - "sh": true, }, - "value": 66000, + "value": 1249, }, { "category": "Pet", "configData": { - "id": "Stacked Dominus", - "pt": 1, + "id": "Huge Hell Monkey", + "pt": 2, }, - "value": 1428, + "value": 249, + }, + { + "category": "Misc", + "configData": { + "id": "Lucky Raid Orb", + }, + "value": 15175371451, + }, + { + "category": "Consumable", + "configData": { + "id": "Lucky Raid Damage Booster", + "tn": 1, + }, + "value": 25033434, }, { "category": "Pet", "configData": { - "id": "Super Capybara", + "id": "Lucki Cat", }, - "value": 7465367, + "value": 20160537699, }, { "category": "Pet", "configData": { - "id": "Huge Nightfall Wolf", + "id": "Lucki Cat", "pt": 1, }, - "value": 185398404, + "value": 819721776, }, { "category": "Pet", "configData": { - "id": "Hell Chick", - "sh": true, + "id": "Leprechaun Dog", }, - "value": 660, + "value": 25011666698, }, { "category": "Pet", "configData": { - "id": "M-6 PROTOTYPE", + "id": "Lucki Cat", "pt": 2, }, - "value": 98921, + "value": 606476170, }, { "category": "Pet", "configData": { - "id": "Ninja Maskot", + "id": "Leprechaun Dog", "pt": 2, }, - "value": 491, + "value": 1320368292, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Royal Cloud Cat", + "id": "Lucky Raid XP Booster", + "tn": 1, }, - "value": 446, + "value": 27706081, }, { "category": "Pet", "configData": { - "id": "Umbrella Dog", - "pt": 1, - "sh": true, + "id": "Huge Lucki Monkey", }, - "value": 10000, + "value": 4235, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "cv": 4, - "id": "Huge Chroma Phoenix", + "id": "Instant Lucky Raid XP Booster", + "tn": 1, }, - "value": 53849231, + "value": 844562, }, { "category": "Pet", "configData": { - "id": "Huge Giraffe", - "pt": 2, + "id": "Lucki Cat", "sh": true, }, - "value": 771180227, + "value": 43837894, }, { "category": "Pet", "configData": { - "id": "Ender Slime", + "id": "Leprechaun Dog", "pt": 1, }, - "value": 80, + "value": 1488105933, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Squirrel", + "id": "Clover", }, - "value": 41259680, + "value": 1115417786, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Zombie Bull", - "pt": 2, - "sh": true, + "id": "Leprechaun Key", }, - "value": 200000, + "value": 7154873, }, { "category": "Pet", "configData": { - "id": "King Cow", + "id": "Lucki Cat", + "pt": 1, "sh": true, }, - "value": 236, + "value": 2825417, }, { "category": "Pet", "configData": { - "id": "Quantum Fox", + "id": "Lucki Cat", + "pt": 2, + "sh": true, }, - "value": 726, + "value": 2026117, }, { "category": "Pet", "configData": { - "id": "Colorful Rock", - "pt": 2, - "sh": true, + "id": "Dot Matrix Axolotl", }, - "value": 2500, + "value": 15528, }, { "category": "Pet", "configData": { - "id": "Fire Horse", + "id": "Leprechaun Dog", "pt": 2, + "sh": true, }, - "value": 134, + "value": 5752992, }, { "category": "Pet", "configData": { - "id": "Puffin", - "sh": true, + "id": "Dot Matrix Cat", }, - "value": 7211, + "value": 67511, }, { "category": "Pet", "configData": { - "id": "Sage Axolotl", - "pt": 2, + "id": "Huge Dot Matrix Cat", }, - "value": 1282, + "value": 5839, }, { "category": "Pet", "configData": { - "id": "Huge Reindeer Axolotl", - "pt": 1, + "id": "Dot Matrix Cat", + "pt": 2, }, - "value": 1292980458, + "value": 2543, }, { "category": "Pet", "configData": { - "id": "Icemortuus", + "id": "Dot Matrix Snail", + "pt": 2, }, - "value": 1220, + "value": 1598, }, { "category": "Pet", "configData": { - "id": "Holographic Bear", - "sh": true, + "id": "Dot Matrix Snail", }, - "value": 39216, + "value": 38237, }, { "category": "Pet", "configData": { - "id": "Fawn", + "id": "Leprechaun Dog", "pt": 1, + "sh": true, }, - "value": 131, + "value": 5118930, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Cotton Candy Lamb", - "pt": 2, - "sh": true, + "id": "Exclusive Egg 46", }, - "value": 40000, + "value": 430140, }, { "category": "Pet", "configData": { - "id": "Ninja Maskot", - "pt": 1, + "id": "Huge Dot Matrix Cat", + "pt": 2, }, - "value": 136, + "value": 181, }, { "category": "Pet", "configData": { - "id": "Huge Egg Dino", + "id": "Leprechaun Dog", "sh": true, }, - "value": 299683055, + "value": 66147189, }, { "category": "Pet", "configData": { - "id": "Three Headed Dragon", + "id": "Huge Lucki Monkey", "pt": 1, }, - "value": 358, + "value": 2165, }, { "category": "Pet", "configData": { - "id": "Willow Wisp", + "id": "Huge Lucki Monkey", "pt": 2, }, - "value": 4591, + "value": 585, }, { "category": "Pet", "configData": { - "id": "Mosaic Griffin", - "pt": 1, + "id": "Huge Lucki Monkey", "sh": true, }, - "value": 583696527, + "value": 128, }, { "category": "Pet", "configData": { - "id": "Knight Beagle", - "sh": true, + "id": "Gargantuan Dot Matrix Pegasus", }, - "value": 3030, + "value": 37, }, { "category": "Pet", "configData": { - "id": "Hell Bat", + "id": "Dot Matrix Snail", "sh": true, }, - "value": 1314, + "value": 1106, }, { "category": "Pet", "configData": { - "id": "Princess Dragon", - "sh": true, + "id": "Dot Matrix Axolotl", + "pt": 2, }, - "value": 2288, + "value": 946, }, { "category": "Pet", "configData": { - "id": "Huge Bubble Dog", + "id": "Dot Matrix Cat", + "sh": true, }, - "value": 9942581641, + "value": 1519, }, { "category": "Pet", "configData": { - "id": "Huge Orange Balloon Cat", + "id": "Huge Dot Matrix Axolotl", }, - "value": 335676102, + "value": 1464, }, { "category": "Pet", "configData": { - "id": "Bunny", - "pt": 2, + "id": "Lucki Tiger", }, - "value": 338, + "value": 7643126737, }, { "category": "Pet", "configData": { - "id": "Princess Dragon", + "id": "Lucki Tiger", + "pt": 1, }, - "value": 423, + "value": 421461340, }, { "category": "Pet", "configData": { - "id": "Sleipnir", + "id": "Lucki Tiger", + "pt": 2, }, - "value": 10339198, + "value": 402857656, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Gemstone Gargoyle Dragon", - "sh": true, + "id": "Lucky Gift", }, - "value": 674, + "value": 100678041, }, { "category": "Pet", "configData": { - "id": "Green Cobra", - "pt": 2, + "id": "Dot Matrix Axolotl", + "sh": true, }, - "value": 5192, + "value": 440, }, { "category": "Pet", "configData": { - "id": "Turtle in a Bucket", + "id": "Titanic Dot Matrix Kitsune", }, - "value": 846, + "value": 362, }, { "category": "Pet", "configData": { - "id": "Pop Cat", + "id": "Dot Matrix Cat", "pt": 2, "sh": true, }, - "value": 1213760015, + "value": 99, }, { "category": "Pet", "configData": { - "id": "Huge Sapphire Phoenix", + "id": "Huge Dot Matrix Cat", + "sh": true, }, - "value": 112023920, + "value": 258, }, { "category": "Pet", "configData": { - "id": "Titanic Bat Cat", + "id": "Huge Dot Matrix Axolotl", "pt": 2, }, - "value": 1000000000, + "value": 37, }, { "category": "Pet", "configData": { - "id": "Huge Willow Wisp", - "pt": 2, + "id": "Huge Lucki Monkey", + "pt": 1, "sh": true, }, - "value": 2754707725, + "value": 27, }, { "category": "Pet", "configData": { - "id": "Gingerbread Corgi", + "id": "Huge Dot Matrix Axolotl", "sh": true, }, - "value": 1633677, + "value": 69, }, { "category": "Pet", "configData": { - "id": "Shadow Shark", + "id": "Dot Matrix Axolotl", + "pt": 2, "sh": true, }, - "value": 40000, + "value": 31, }, { "category": "Pet", "configData": { - "id": "Super Cat", + "id": "Dot Matrix Snail", "pt": 2, + "sh": true, }, - "value": 16099325, + "value": 66, }, { "category": "Pet", "configData": { - "id": "Frost Rabbit", + "id": "Huge Lucki Cat", }, - "value": 106, + "value": 154778, }, { "category": "Pet", "configData": { - "id": "Titanic Silver Dragon", + "id": "Lucki Tiger", + "pt": 1, "sh": true, }, - "value": 10000000, + "value": 1517100, }, { "category": "Pet", "configData": { - "id": "Huge Pumpkin Cat", + "id": "Lucki Tiger", + "sh": true, }, - "value": 144096546, + "value": 18774761, }, { "category": "Pet", "configData": { - "id": "Empyrean Dragon", - "pt": 2, + "id": "Huge Clover Peacock", }, - "value": 1315, + "value": 65208, }, { "category": "Pet", "configData": { - "id": "Valentines Cat", + "id": "Huge Lucki Cat", "pt": 2, - "sh": true, }, - "value": 2691070858, + "value": 17913, }, { "category": "Pet", "configData": { - "id": "Good vs Evil Dragon", - "pt": 1, + "id": "Lucki Tiger", + "pt": 2, "sh": true, }, - "value": 1550, + "value": 1777846, }, { "category": "Pet", "configData": { - "id": "Pineapple Cat", + "id": "Huge Lucki Tiger", }, - "value": 26960, + "value": 22337, }, { "category": "Pet", "configData": { - "id": "Titanic Blue Balloon Cat", - "pt": 2, + "id": "Huge Lucki Cat", + "pt": 1, }, - "value": 25000, + "value": 17770, }, { "category": "Pet", "configData": { - "id": "Sandcastle Cat", + "id": "Huge Lucki Tiger", "pt": 1, }, - "value": 456, + "value": 4428, }, { "category": "Pet", "configData": { - "id": "Gummy Fox", + "id": "Lucki Monkey", "pt": 1, }, - "value": 829, + "value": 323220006, }, { "category": "Pet", "configData": { - "id": "Poison Turtle", - "pt": 2, + "id": "Lucki Monkey", }, - "value": 121, + "value": 6177585845, }, { "category": "Pet", "configData": { - "id": "Balloon Corgi", + "id": "Huge Lucki Cat", + "sh": true, }, - "value": 5405750, + "value": 3235, }, { "category": "Pet", "configData": { - "id": "Huge Vampire Bat", + "id": "Lucki Monkey", + "pt": 2, }, - "value": 118816205, + "value": 331053001, }, { "category": "Pet", "configData": { - "id": "Electric Corgi", - "pt": 1, - "sh": true, + "id": "Huge Lucki Tiger", + "pt": 2, }, - "value": 100, + "value": 840, }, { "category": "Pet", "configData": { - "id": "Kraken", - "pt": 2, + "id": "Clover Lion", }, - "value": 158, + "value": 3656767695, }, { "category": "Pet", "configData": { - "id": "Ninja Turtle", - "pt": 1, + "id": "Lucki Monkey", + "pt": 2, + "sh": true, }, - "value": 251, + "value": 1409586, }, { "category": "Pet", "configData": { - "id": "Dino Cat", - "pt": 2, + "id": "Lucki Monkey", + "sh": true, }, - "value": 208732, + "value": 14648967, }, { "category": "Pet", "configData": { - "id": "Jellyfish", + "id": "Clover Lion", + "pt": 1, }, - "value": 298, + "value": 193851088, }, { "category": "Pet", "configData": { - "id": "Huge Dominus Darkwing", + "id": "Clover Lion", + "pt": 2, }, - "value": 159393774, + "value": 216672700, }, { "category": "Pet", "configData": { - "id": "Luxe Axolotl", - "pt": 1, + "id": "Clover Lion", + "pt": 2, + "sh": true, }, - "value": 1355, + "value": 909527, }, { "category": "Pet", "configData": { - "id": "Cyborg Bat", + "id": "Clover Lion", + "sh": true, }, - "value": 406, + "value": 8518116, }, { "category": "Pet", "configData": { - "id": "Candycane", - "pt": 1, + "id": "Lucki Wolf", }, - "value": 335038, + "value": 43650762730, }, { "category": "Pet", "configData": { - "id": "Axolotuus", - "pt": 2, + "id": "Lucki Monkey", + "pt": 1, + "sh": true, }, - "value": 721, + "value": 1152153, }, { "category": "Pet", "configData": { - "id": "Husky", - "pt": 1, + "id": "Titanic Dot Matrix Kitsune", + "pt": 2, }, - "value": 476, + "value": 17, }, { "category": "Pet", "configData": { - "id": "Jelly Corgi", + "id": "Lucki Wolf", + "sh": true, }, - "value": 4104500, + "value": 208675658, }, { "category": "Pet", "configData": { - "id": "Tiedye Bear", + "id": "Lucki Wolf", + "pt": 2, }, - "value": 4591240, + "value": 9587642780, }, { "category": "Pet", "configData": { - "id": "Mantis Shrimp", + "id": "Lucki Wolf", "pt": 2, "sh": true, }, - "value": 3560000, + "value": 69769499, }, { "category": "Pet", "configData": { - "id": "Empyrean Stallion", - "pt": 1, + "id": "Clover Peacock", + "pt": 2, }, - "value": 1373, + "value": 1137348637, }, { "category": "Pet", "configData": { - "id": "Holographic Dragon", + "id": "Clover Lion", "pt": 1, + "sh": true, }, - "value": 27804, + "value": 709402, }, { "category": "Pet", "configData": { - "id": "Tabby Cat", + "id": "Lucki Wolf", "pt": 1, }, - "value": 322, + "value": 5792777750, }, { "category": "Pet", "configData": { - "id": "Huge Inferno Cat", - "pt": 2, + "id": "Clover Peacock", }, - "value": 3315950057, + "value": 4165861540, }, { "category": "Pet", "configData": { - "id": "Cheetah", + "id": "Huge Leprechaun Dog", }, - "value": 340, + "value": 1668, }, { "category": "Pet", "configData": { - "id": "Goat", - "pt": 2, + "id": "Lucki Wolf", + "pt": 1, + "sh": true, }, - "value": 912, + "value": 33444247, }, { "category": "Pet", "configData": { - "id": "Stacked Doge Noob", + "id": "Clover Butterfly", + "pt": 2, }, - "value": 35695816, + "value": 71373636, }, { "category": "Pet", "configData": { - "id": "Tiedye Axolotl", - "sh": true, + "id": "Clover Peacock", + "pt": 1, }, - "value": 24164522, + "value": 654070805, }, { "category": "Pet", "configData": { - "id": "Tropical Toucan", + "id": "Clover Peacock", "sh": true, }, - "value": 200000000, + "value": 22092456, }, { "category": "Pet", "configData": { - "id": "Dino Bear", - "pt": 1, + "id": "Clover Butterfly", }, - "value": 7457, + "value": 712447774, }, { "category": "Pet", "configData": { - "id": "Hot Dog", + "id": "Clover Peacock", "pt": 2, - }, - "value": 2179, - }, - { - "category": "Pet", - "configData": { - "id": "Guilded Raven", "sh": true, }, - "value": 235, + "value": 8778631, }, { "category": "Pet", "configData": { - "id": "Valkyrie Dog", + "id": "Clover Peacock", + "pt": 1, "sh": true, }, - "value": 10325370, + "value": 3937419, }, { "category": "Pet", "configData": { - "id": "Huge Nightfall Pegasus", - "pt": 2, + "id": "Clover Butterfly", + "pt": 1, }, - "value": 990875803, + "value": 52445648, }, { "category": "Pet", "configData": { - "id": "Pink Marshmallow Chick", + "id": "Huge Dot Matrix Axolotl", "pt": 2, "sh": true, }, - "value": 229992, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Cyborg Dragon", + "id": "Huge Lucki Tiger", + "sh": true, }, - "value": 1586, + "value": 169, }, { "category": "Pet", "configData": { - "id": "Huge Cat", + "id": "Pot of Gold Cat", "pt": 2, }, - "value": 5490188654, - }, - { - "category": "Pet", - "configData": { - "id": "Inferno Dominus", - "sh": true, - }, - "value": 14741320, + "value": 16746230, }, { "category": "Pet", "configData": { - "id": "Stargazing Wolf", + "id": "Lucki Dominus", "pt": 2, }, - "value": 11686696, + "value": 7319472, }, { "category": "Pet", "configData": { - "id": "Huge Mosaic Griffin", + "id": "Clover Butterfly", + "sh": true, }, - "value": 63620474, + "value": 2109823, }, { "category": "Pet", "configData": { - "id": "Huge Chroma Swan", + "id": "Lucki Dominus", }, - "value": 88884260, + "value": 245454357, }, { "category": "Pet", "configData": { - "id": "Huge Squirrel", + "id": "Huge Lucki Cat", + "pt": 1, "sh": true, }, - "value": 268296113, + "value": 327, }, { "category": "Pet", "configData": { - "id": "Nuclear Axolotl", - "pt": 2, + "id": "Lucki Dominus", + "pt": 1, }, - "value": 2585, + "value": 12292659, }, { "category": "Pet", "configData": { - "id": "Huge Happy Rock", + "id": "Clover Butterfly", + "pt": 2, + "sh": true, }, - "value": 36689457, + "value": 475823, }, { "category": "Pet", "configData": { - "cv": 1, - "id": "Huge Chroma Ink Blob", + "id": "Clover Butterfly", + "pt": 1, + "sh": true, }, - "value": 171435020, + "value": 271731, }, { "category": "Pet", "configData": { - "id": "Storm Dominus", + "id": "Pot of Gold Cat", }, - "value": 4197462, + "value": 388449493, }, { "category": "Pet", "configData": { - "id": "Puffin", + "id": "Pot of Gold Cat", "pt": 1, }, - "value": 493, + "value": 23356392, }, { "category": "Pet", "configData": { - "id": "Glitched Immortuus", - "pt": 1, + "id": "Huge Lucki Cat", + "pt": 2, "sh": true, }, - "value": 561, + "value": 343, }, { "category": "Pet", "configData": { - "id": "Tarantula", + "id": "Huge Dot Matrix Cat", "pt": 2, "sh": true, }, - "value": 450000, + "value": 8, }, { "category": "Pet", "configData": { - "id": "Whale Shark", + "id": "Titanic Dot Matrix Kitsune", + "sh": true, }, - "value": 822, + "value": 8, }, { "category": "Pet", "configData": { - "id": "Huge Sailor Shark", + "id": "Lucki Dominus", + "pt": 1, + "sh": true, }, - "value": 147526321, + "value": 52415, }, { "category": "Pet", "configData": { - "id": "Armadillo", - "pt": 1, + "id": "Huge Lucki Tiger", + "pt": 2, + "sh": true, }, - "value": 10617, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Storm Griffin", + "id": "Huge Clover Peacock", "pt": 1, }, - "value": 325, + "value": 13003, }, { "category": "Pet", "configData": { - "id": "Emoji Monkey", + "id": "Lucki Dominus", "pt": 2, + "sh": true, }, - "value": 27243973, + "value": 23402, }, { "category": "Pet", "configData": { - "id": "Egg Dino", - "pt": 2, + "id": "Lucki Dominus", + "sh": true, }, - "value": 753, + "value": 635564, }, { "category": "Pet", "configData": { - "id": "Cosmic Agony", + "id": "Pot of Gold Cat", + "pt": 1, + "sh": true, }, - "value": 11609925, + "value": 84295, }, { "category": "Pet", "configData": { - "id": "Hell Chick", - "pt": 2, + "id": "Huge Lucki Tiger", + "pt": 1, + "sh": true, }, - "value": 1862, + "value": 39, }, { "category": "Pet", "configData": { - "id": "Cyborg Dominus", + "id": "Huge Clover Peacock", + "pt": 2, }, - "value": 854, + "value": 2656, }, { "category": "Pet", "configData": { - "id": "Midnight Axolotl", - "pt": 2, + "id": "Huge Leprechaun Dog", + "pt": 1, }, - "value": 13241, + "value": 341, }, { "category": "Pet", "configData": { - "id": "Rave Meebo in a Spaceship", - "pt": 1, + "id": "Pot of Gold Cat", + "pt": 2, "sh": true, }, - "value": 70425, + "value": 53381, }, { "category": "Pet", "configData": { - "id": "Huge Pixel Dragon", + "id": "Huge Lucki Monkey", + "pt": 2, + "sh": true, }, - "value": 80229448, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Huge Mosaic Lamb", + "id": "Titanic Leprechaun Dog", + "pt": 1, }, - "value": 53210543, + "value": 457, }, { "category": "Pet", "configData": { - "id": "Huge Redstone Cat", + "id": "Titanic Leprechaun Dog", }, - "value": 89869436, + "value": 2221, }, { "category": "Pet", "configData": { - "id": "Broomstick Corgi", + "id": "Titanic Leprechaun Dog", + "pt": 2, }, - "value": 380, + "value": 95, }, { "category": "Pet", "configData": { - "id": "Pajamas Dog", + "id": "Huge Leprechaun Dog", "pt": 2, - "sh": true, }, - "value": 1663, + "value": 74, }, { "category": "Pet", "configData": { - "id": "Wizard Cat", + "id": "Huge Clover Peacock", "sh": true, }, - "value": 74, + "value": 508, }, { "category": "Pet", "configData": { - "id": "Emerald Carbuncle", + "id": "Pot of Gold Cat", + "sh": true, }, - "value": 259, + "value": 1035800, }, { "category": "Pet", "configData": { - "id": "Jaguar", + "id": "Huge Leprechaun Dog", "sh": true, }, - "value": 235, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Slime", + "id": "Huge Leprechaun Dog", "pt": 1, + "sh": true, }, - "value": 102, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Flex Tiger", + "cv": 2, + "id": "Huge Chroma Doodle Axolotl", "pt": 2, + "sh": true, }, - "value": 19661486, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Frost Dragon", + "id": "Huge Clover Peacock", + "pt": 1, "sh": true, }, - "value": 3358, + "value": 111, }, { "category": "Pet", "configData": { - "id": "Axolotuus", - "sh": true, + "id": "Huge Sphinx", + "pt": 2, }, - "value": 3640, + "value": 75, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Encrusted Wolf", + "id": "Sphinx", }, - "value": 833, + "value": 749, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Rudolf", - "pt": 2, + "id": "Sphinx", }, - "value": 46999999, + "value": 3502, }, { "category": "Pet", "configData": { - "id": "Banana", + "id": "Huge Sphinx", }, - "value": 3908318489, + "value": 524, }, { "category": "Pet", "configData": { - "id": "Huge Mystical Fox", + "id": "Huge Sphinx", + "pt": 1, }, - "value": 7447898543, + "value": 150, }, { "category": "Pet", "configData": { - "id": "Empyrean Dominus", + "id": "Huge Clover Lion", }, - "value": 5653443, + "value": 3495, }, { "category": "Pet", "configData": { - "id": "Corrupt Octopus", - "sh": true, + "id": "Huge Clover Lion", + "pt": 1, }, - "value": 1356, + "value": 1249, }, { "category": "Pet", "configData": { - "id": "Huge Empyrean Agony", - "pt": 1, + "id": "Huge Clover Lion", + "pt": 2, }, - "value": 183207822, + "value": 249, }, { "category": "Pet", "configData": { - "id": "Koi Fish", + "id": "Emerald Owl", + "pt": 1, }, - "value": 516, + "value": 1022343155, }, { "category": "Pet", "configData": { - "id": "Cool Cat", + "id": "Clover Griffin", "pt": 2, }, - "value": 11372263, + "value": 11690729965, }, { "category": "Pet", "configData": { - "id": "Huge Lucky Cat", + "id": "Clover Griffin", "pt": 1, }, - "value": 427884484, + "value": 10398476262, + }, + { + "category": "Enchant", + "configData": { + "id": "Mega Chest Breaker", + "tn": 1, + }, + "value": 7596, }, { "category": "Pet", "configData": { - "id": "Neon Twilight Cat", + "id": "Clover Griffin", }, - "value": 5720327, + "value": 84611201386, }, { "category": "Pet", "configData": { - "id": "Snowflake Dominus", - "pt": 2, + "id": "Clover Griffin", "sh": true, }, - "value": 133434, + "value": 294118358, }, { "category": "Pet", "configData": { - "id": "Tiger", - "pt": 1, + "id": "Emerald Owl", }, - "value": 137, + "value": 8098225297, }, { "category": "Pet", "configData": { - "id": "Desert Cat", + "id": "Emerald Owl", + "pt": 2, }, - "value": 194, + "value": 1433558079, }, { "category": "Pet", "configData": { - "id": "Nightmare Kraken", - "sh": true, + "id": "Clover Bee", + "pt": 1, }, - "value": 17093342, + "value": 27654610, }, { "category": "Pet", "configData": { - "id": "Huge Empyrean Agony", + "id": "Clover Bee", + "pt": 2, }, - "value": 76739038, + "value": 18655417, }, { "category": "Pet", "configData": { - "id": "Shadow Dominus", + "id": "Lucki Agony", "pt": 2, }, - "value": 2582, + "value": 81350462, }, { "category": "Pet", "configData": { - "id": "Huge Pinata Cat", + "id": "Lucki Agony", + "pt": 1, }, - "value": 369308812, + "value": 57894850, }, { "category": "Pet", "configData": { - "id": "Wizard Unicorn", + "id": "Clover Griffin", + "pt": 1, "sh": true, }, - "value": 1, + "value": 45083583, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Turkey", - "pt": 2, - "sh": true, + "id": "Lucky Raid Damage Booster", + "tn": 2, }, - "value": 5000, + "value": 1062597, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Pufferfish", - "pt": 2, + "id": "Lucky Raid Boss Key", }, - "value": 354, + "value": 374826745, }, { "category": "Pet", "configData": { - "id": "Giraffe", - "sh": true, + "id": "Horseshoe Crab", + "pt": 1, }, - "value": 2448, + "value": 35076929, }, { "category": "Pet", "configData": { - "id": "Desert Cat", + "id": "Leprechaun Corgi", "pt": 1, }, - "value": 2042, + "value": 36712439, }, { "category": "Pet", "configData": { - "id": "Huge Party Dog", - "sh": true, + "id": "Leprechaun Corgi", + "pt": 2, }, - "value": 624710865, + "value": 34707163, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Stealth Cat", + "id": "Lucky Raid Boss Key Lower Half", }, - "value": 6753300, + "value": 552940900, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Cosmic Axolotl", - "sh": true, + "id": "Lucky Raid XP Booster", + "tn": 2, }, - "value": 10510843, + "value": 1054819, }, { "category": "Pet", "configData": { - "id": "Huge Easter Dominus", + "id": "Clover Griffin", "pt": 2, + "sh": true, }, - "value": 320344001, + "value": 68640929, }, { "category": "Pet", "configData": { - "id": "Hell Chest Mimic", + "id": "Lucki Agony", }, - "value": 59043564, + "value": 459722092, }, { "category": "Pet", "configData": { - "id": "Cat", - "pt": 1, - "sh": true, + "id": "Clover Bee", }, - "value": 15277, + "value": 466927227, }, { "category": "Pet", "configData": { - "id": "Ninja Cat", - "pt": 1, - "sh": true, + "id": "Horseshoe Crab", }, - "value": 40000, + "value": 487723390, }, { "category": "Pet", "configData": { - "id": "Cheerful Yeti", + "id": "Horseshoe Crab", + "pt": 2, }, - "value": 188, + "value": 37000017, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Mushroom Raccoon", - "pt": 1, + "id": "Lucky Raid Boss Key Upper Half", }, - "value": 296, + "value": 390076313, }, { "category": "Pet", "configData": { - "id": "Pirate Parrot", + "id": "Huge Pot of Gold Cat", + "pt": 1, }, - "value": 665, + "value": 2343, }, { "category": "Pet", "configData": { - "cv": 6, - "id": "Huge Chroma Snail", + "id": "Emerald Owl", + "pt": 1, + "sh": true, }, - "value": 54191988, + "value": 4804877, }, { "category": "Pet", "configData": { - "id": "Huge Easter Dominus", + "id": "Lucki Elephant", "pt": 1, }, - "value": 89416783, + "value": 34753208, }, { "category": "Pet", "configData": { - "id": "Valkyrie Dragon", + "id": "Lucki Elephant", "pt": 2, - "sh": true, }, - "value": 4683038373, + "value": 29377590, }, { "category": "Pet", "configData": { - "id": "Frostbyte Bat", - "pt": 1, - "sh": true, + "id": "Leprechaun Corgi", }, - "value": 70, + "value": 562717924, }, { "category": "Pet", "configData": { - "id": "Lunar Moth", + "id": "Leprechaun Corgi", + "sh": true, }, - "value": 762, + "value": 1541887, }, { "category": "Pet", "configData": { - "id": "Sailor Shark", + "id": "Emerald Owl", "sh": true, }, - "value": 565, + "value": 30019788, }, { "category": "Pet", "configData": { - "id": "Fire Dog", - "pt": 1, - "sh": true, + "id": "Huge Hydra Axolotl", }, - "value": 404, + "value": 15802, }, { "category": "Pet", "configData": { - "id": "Ice Slime", - "pt": 1, + "id": "Huge Pot of Gold Cat", }, - "value": 190, + "value": 4697, }, { "category": "Pet", "configData": { - "id": "Cyber Agony", + "id": "Lucki Bunny", "pt": 1, - "sh": true, }, - "value": 788, + "value": 29028628, }, { "category": "Pet", "configData": { - "id": "Kawaii Tiger", - "pt": 2, + "id": "Lucki Bunny", "sh": true, }, - "value": 3991635, + "value": 1336846, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Ghost", + "id": "Lucki Bunny", }, - "value": 762, + "value": 494713604, }, { "category": "Pet", "configData": { - "id": "Huge Sombrero Chihuahua", - "pt": 1, + "id": "Lucki Elephant", }, - "value": 384980878, + "value": 569746952, }, { "category": "Pet", "configData": { - "id": "Grinch Cat", + "id": "Lucki Elephant", + "sh": true, }, - "value": 6530733, + "value": 1552915, }, { "category": "Pet", "configData": { - "id": "Train Conductor Dog", + "id": "Wishing Dragon", + }, + "value": 3051057, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Bunny", "pt": 2, - "sh": true, }, - "value": 6943, + "value": 22209675, }, { "category": "Pet", "configData": { - "id": "Huge Tech Chest Mimic", + "id": "Wishing Dragon", "pt": 1, }, - "value": 184694663, + "value": 489049, }, { "category": "Pet", "configData": { - "id": "Dino", - "pt": 2, + "id": "Huge Clover Griffin", }, - "value": 254, + "value": 107822, }, { "category": "Pet", "configData": { - "id": "Mosaic Lamb", + "id": "Horseshoe Crab", + "sh": true, }, - "value": 3188655, + "value": 1353605, }, { "category": "Pet", "configData": { - "id": "Ninja Turtle", + "id": "Clover Bee", + "sh": true, }, - "value": 287, + "value": 1268655, }, { "category": "Pet", "configData": { - "id": "Phoenix", - "pt": 2, + "id": "Titanic Hydra Axolotl", }, - "value": 423, + "value": 1432, }, { "category": "Pet", "configData": { - "id": "Ice Slime", + "id": "Emerald Owl", + "pt": 2, "sh": true, }, - "value": 96214, + "value": 8918230, }, { "category": "Pet", "configData": { - "id": "Huge Party Axolotl", + "id": "Huge Hydra Axolotl", "pt": 1, }, - "value": 238821658, + "value": 6956, }, { "category": "Pet", "configData": { - "id": "Ice Slime", + "id": "Wishing Dragon", "pt": 2, }, - "value": 1091, + "value": 481778, }, { "category": "Pet", "configData": { - "id": "Fish in a Bucket", + "id": "Clover Bee", + "pt": 2, + "sh": true, }, - "value": 80, + "value": 58822, }, { "category": "Pet", "configData": { - "id": "Huge Quantum Agony", - "pt": 1, + "id": "Huge Hydra Axolotl", + "pt": 2, }, - "value": 52294488, + "value": 1880, }, { "category": "Pet", "configData": { - "id": "Relic Cyclops", + "id": "Horseshoe Crab", + "pt": 2, "sh": true, }, - "value": 488, + "value": 124316, }, { "category": "Pet", "configData": { - "id": "Anime Monkey", + "id": "Leprechaun Corgi", + "pt": 1, "sh": true, }, - "value": 19461704, - }, - { - "category": "Pet", - "configData": { - "id": "Angel Cat", - }, - "value": 327, + "value": 138428, }, { "category": "Pet", "configData": { - "id": "Sunflower Lion", + "id": "Clover Bee", "pt": 1, + "sh": true, }, - "value": 1536, + "value": 97393, }, { "category": "Pet", "configData": { - "id": "Huge Good vs Evil Dragon", + "id": "Lucki Elephant", + "pt": 1, "sh": true, }, - "value": 6514524562, + "value": 125358, }, { "category": "Pet", "configData": { - "id": "Avenging Griffin", + "id": "Lucki Elephant", + "pt": 2, + "sh": true, }, - "value": 299, + "value": 91286, }, { "category": "Pet", "configData": { - "id": "Fire Horse", + "id": "Leprechaun Corgi", + "pt": 2, "sh": true, }, - "value": 3465, + "value": 112979, }, { "category": "Pet", "configData": { - "id": "Huge Pop Cat", + "id": "Lucki Bunny", + "pt": 2, "sh": true, }, - "value": 2581374808, + "value": 68896, }, { "category": "Pet", "configData": { - "id": "Atlantean Stingray", + "id": "Huge Pot of Gold Cat", + "sh": true, }, - "value": 5356526, + "value": 130, }, { "category": "Pet", "configData": { - "id": "Woodpecker", + "id": "Lucki Bunny", "pt": 1, "sh": true, }, - "value": 16199, + "value": 102249, }, { "category": "Pet", "configData": { - "id": "Soul Bat", + "id": "Horseshoe Crab", + "pt": 1, "sh": true, }, - "value": 15370199, + "value": 139751, }, { "category": "Pet", "configData": { - "id": "Huge Whale Shark", - "pt": 2, + "id": "Lucki Angelus", }, - "value": 81735406, + "value": 303743, }, { "category": "Pet", "configData": { - "id": "Flex Tiger", + "id": "Huge Clover Griffin", "sh": true, }, - "value": 12171612, + "value": 2189, }, { "category": "Pet", "configData": { - "id": "Crystal Deer", - "sh": true, + "id": "Huge Pot of Gold Cat", + "pt": 2, }, - "value": 7790164, + "value": 686, }, { "category": "Pet", "configData": { - "id": "Doge", + "id": "Lucki Agony", + "pt": 1, + "sh": true, }, - "value": 170253886, + "value": 325728, }, { "category": "Pet", "configData": { - "id": "Stegosaurus", + "id": "Huge Clover Griffin", "pt": 2, }, - "value": 584, + "value": 8296, }, { "category": "Pet", "configData": { - "id": "Huge Jelly Corgi", + "id": "Lucki Angelus", "pt": 2, }, - "value": 5640588552, + "value": 39134, }, { "category": "Pet", "configData": { - "id": "Night Terror Dog", + "id": "Titanic Hydra Axolotl", + "pt": 2, + "sh": true, }, - "value": 1282, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Sun Agony", + "id": "Lucki Angelus", + "pt": 1, }, - "value": 35401, + "value": 41277, }, { "category": "Pet", "configData": { - "id": "Starry Owl", + "id": "Lucki Agony", + "sh": true, }, - "value": 1687, + "value": 1664512, }, { "category": "Pet", "configData": { - "id": "Creepy Wolf", + "id": "Titanic Hydra Axolotl", "pt": 1, - "sh": true, }, - "value": 6934, + "value": 673, }, { "category": "Pet", "configData": { - "id": "Bearserker", - "pt": 1, + "id": "Huge Hydra Axolotl", + "sh": true, }, - "value": 1471, + "value": 430, }, { "category": "Pet", "configData": { - "id": "Holographic Dragon", + "id": "Titanic Hydra Axolotl", "pt": 2, - "sh": true, }, - "value": 10000, + "value": 206, }, { "category": "Pet", "configData": { - "id": "Huge Easter Bunny", - "pt": 2, + "id": "Huge Emerald Owl", }, - "value": 733604167, + "value": 68772, }, { "category": "Pet", "configData": { - "id": "Huge Chef Monkey", + "id": "Lucki Agony", "pt": 2, + "sh": true, }, - "value": 174777197, + "value": 495046, }, { "category": "Pet", "configData": { - "id": "Glitched Dragon", - "pt": 1, + "id": "Huge Clover Bee", }, - "value": 1667, + "value": 64984, }, { "category": "Pet", "configData": { - "id": "Scuba Shark", + "id": "Huge Clover Griffin", "pt": 1, }, - "value": 21464, + "value": 11978, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Huge Sandcastle Cat", - "sh": true, + "id": "Instant Lucky Raid XP Booster", + "tn": 2, }, - "value": 2602064408, + "value": 979, }, { "category": "Pet", "configData": { - "id": "Axolotuus", - "pt": 1, + "id": "Huge Clover Bee", + "pt": 2, }, - "value": 1317, + "value": 2645, }, { "category": "Pet", "configData": { - "id": "Mosaic Griffin", - "sh": true, + "id": "Huge Lucki Elephant", }, - "value": 5838539, + "value": 50835, }, { "category": "Pet", "configData": { - "id": "Electric Slime", + "id": "Huge Emerald Owl", + "pt": 1, }, - "value": 87780831, + "value": 13617, }, { "category": "Pet", "configData": { - "id": "Cyber Axolotl", + "id": "Huge Clover Griffin", + "pt": 1, "sh": true, }, - "value": 224, + "value": 253, }, { "category": "Pet", "configData": { - "id": "Huge Peacock", - "sh": true, + "id": "Huge Clover Bee", + "pt": 1, }, - "value": 266610846, + "value": 13153, }, { "category": "Pet", "configData": { - "id": "Ninja Turtle", - "pt": 2, + "id": "Huge Clover Bee", + "sh": true, }, - "value": 4017, + "value": 539, }, { "category": "Pet", "configData": { - "id": "Huge Error Cat", + "id": "Huge Lucki Elephant", + "pt": 1, }, - "value": 55532860, + "value": 10314, }, { "category": "Pet", "configData": { - "id": "Koi Fish", - "pt": 1, + "id": "Huge Pot of Gold Cat", + "pt": 2, + "sh": true, }, - "value": 167, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Bee", - "pt": 2, + "id": "Huge Emerald Owl", + "sh": true, }, - "value": 2432, + "value": 527, }, { "category": "Pet", "configData": { - "id": "Fairy Ladybug", + "id": "Huge Clover Griffin", "pt": 2, "sh": true, }, - "value": 16492, + "value": 147, }, { "category": "Pet", "configData": { - "id": "Vibrant Whale", + "id": "Huge Emerald Owl", "pt": 2, }, - "value": 3733, + "value": 2685, }, { "category": "Pet", "configData": { - "id": "Huge Orange Balloon Cat", - "pt": 2, + "id": "Huge Lucki Angelus", }, - "value": 1511396566, + "value": 57061, }, { "category": "Pet", "configData": { - "id": "Sunflower Lion", + "id": "Huge Pot of Gold Cat", + "pt": 1, + "sh": true, }, - "value": 831, + "value": 31, }, { "category": "Pet", "configData": { - "id": "Sloth", + "id": "Huge Lucki Angelus", + "pt": 1, }, - "value": 556, + "value": 11296, }, { "category": "Pet", "configData": { - "cv": 4, - "id": "Chroma Phoenix", - "pt": 2, + "id": "Lucki Angelus", + "pt": 1, "sh": true, }, - "value": 18957926, + "value": 388, }, { "category": "Pet", "configData": { - "id": "Atlantean Dolphin", + "id": "Huge Lucki Elephant", "pt": 2, }, - "value": 32464101, + "value": 2079, }, { "category": "Pet", "configData": { - "id": "Angry Yeti", + "id": "Wishing Dragon", "pt": 1, + "sh": true, }, - "value": 708, + "value": 9137, }, { "category": "Pet", "configData": { - "id": "Huge Comet Cyclops", - "pt": 1, + "id": "Titanic Lucki Angelus", }, - "value": 296592153, + "value": 1482, }, { "category": "Pet", "configData": { - "id": "Snow Dog", - "pt": 2, + "id": "Titanic Leprechaun Dog", + "sh": true, }, - "value": 1116, + "value": 13, }, { "category": "Pet", "configData": { - "id": "Huge Easter Dominus", + "id": "Huge Emerald Owl", "pt": 2, "sh": true, }, - "value": 1069584016, + "value": 28, }, { "category": "Pet", "configData": { - "id": "Huge Kangaroo", - "pt": 1, + "id": "Huge Lucki Angelus", + "pt": 2, }, - "value": 36928306, + "value": 2382, }, { "category": "Pet", "configData": { - "id": "Santa Paws", + "id": "Lucki Angelus", "pt": 2, + "sh": true, }, - "value": 12000000, + "value": 336, }, { "category": "Pet", "configData": { - "id": "Pineapple Monkey", - "pt": 2, + "id": "Huge Lucki Elephant", + "sh": true, }, - "value": 200, + "value": 421, }, { "category": "Pet", "configData": { - "id": "Huge Holiday Pegasus", - "pt": 2, + "id": "Titanic Leprechaun Dog", + "pt": 1, + "sh": true, }, - "value": 798857994, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Squirrel", + "id": "Wishing Dragon", + "pt": 2, + "sh": true, }, - "value": 51095, + "value": 3307, }, { "category": "Pet", "configData": { - "id": "Corrupt Cat", + "id": "Huge Emerald Owl", "pt": 1, "sh": true, }, - "value": 810478, + "value": 109, }, { "category": "Pet", "configData": { - "id": "Three Headed Dragon", - "pt": 2, + "id": "Titanic Hydra Axolotl", + "pt": 1, "sh": true, }, - "value": 8300, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Huge Ancient Dragon", - "pt": 2, + "id": "Huge Clover Bee", + "pt": 1, + "sh": true, }, - "value": 4631623979, + "value": 113, }, { "category": "Pet", "configData": { - "id": "Huge Party Penguin", + "id": "Titanic Lucki Angelus", "pt": 1, - "sh": true, }, - "value": 11443520121, + "value": 280, }, { "category": "Pet", "configData": { - "id": "Jelly Shiba", + "id": "Huge Lucki Angelus", "sh": true, }, - "value": 15085980, + "value": 427, }, { "category": "Pet", "configData": { - "id": "Titanic Hubert", + "id": "Wishing Dragon", + "sh": true, }, - "value": 14768764601, + "value": 5091, }, { "category": "Pet", "configData": { - "id": "Huge Snowman", + "id": "Huge Hydra Axolotl", "pt": 1, + "sh": true, }, - "value": 306999693, + "value": 78, }, { "category": "Pet", "configData": { - "id": "Avenging Griffin", + "id": "Huge Lucki Angelus", "pt": 1, + "sh": true, }, - "value": 1389, + "value": 100, }, { "category": "Pet", "configData": { - "id": "Mosaic Corgi", + "id": "Titanic Lucki Angelus", "pt": 2, }, - "value": 15763764, + "value": 66, }, { "category": "Pet", "configData": { - "id": "Huge Colorful Wisp", - "pt": 1, + "id": "Huge Lucki Angelus", + "pt": 2, + "sh": true, }, - "value": 3601047117, + "value": 17, }, { "category": "Pet", "configData": { - "id": "Gleebo The Alien", + "id": "Huge Clover Peacock", + "pt": 2, + "sh": true, }, - "value": 62, + "value": 16, }, { "category": "Pet", "configData": { - "id": "Titanic Atlantean Jellyfish", + "id": "Titanic Hydra Axolotl", + "sh": true, }, - "value": 23613379387, + "value": 47, }, { "category": "Pet", "configData": { - "id": "Lemur", + "id": "Lucki Angelus", + "sh": true, }, - "value": 20, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Titanic Nightmare Corgi", + "id": "Huge Lucki Elephant", + "pt": 1, + "sh": true, }, - "value": 16234048010, + "value": 59, }, { "category": "Pet", "configData": { - "id": "Huge Tiedye Corgi", - "pt": 1, + "id": "Titanic Lucki Angelus", + "sh": true, }, - "value": 528863933, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Goldfish", + "id": "Huge Lucki Elephant", + "pt": 2, "sh": true, }, - "value": 1883, + "value": 14, }, { "category": "Pet", "configData": { - "id": "Frost Dragon", + "id": "Huge Clover Bee", + "pt": 2, + "sh": true, }, - "value": 217, + "value": 29, }, { "category": "Pet", "configData": { - "id": "Elemental Phoenix", + "id": "Titanic Lucki Angelus", + "pt": 1, + "sh": true, }, - "value": 16702, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Sandcastle Dog", + "id": "Huge Rudolf", }, - "value": 28, + "value": 150883, }, { "category": "Pet", "configData": { - "id": "Brain", - "pt": 1, + "id": "Huge Rudolf", + "sh": true, }, - "value": 8413, + "value": 1204, }, { "category": "Pet", "configData": { - "id": "Cool Corgi", + "id": "Huge Rudolf", "pt": 1, "sh": true, }, - "value": 75622987, + "value": 220, }, { "category": "Pet", "configData": { - "id": "Purple Cobra", - "pt": 2, + "id": "Huge Rudolf", + "pt": 1, }, - "value": 192, + "value": 30487, }, { "category": "Pet", "configData": { - "id": "Shadow Panther", - "pt": 1, + "id": "Huge Rudolf", + "pt": 2, + "sh": true, }, - "value": 1773, + "value": 51, }, { "category": "Pet", "configData": { - "id": "Ice Slime", + "id": "Huge Rudolf", "pt": 2, - "sh": true, }, - "value": 1, + "value": 6155, }, { "category": "Pet", "configData": { - "id": "Huge Cupcake", + "id": "Titanic Lucki Angelus", + "pt": 2, "sh": true, }, - "value": 349188468, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Phoenix", - "sh": true, + "id": "Huge Clover Butterfly", }, - "value": 4992, + "value": 9285, }, { "category": "Pet", "configData": { - "id": "Pufferfish", - "pt": 2, + "id": "Huge Clover Butterfly", "sh": true, }, - "value": 150000, + "value": 150, }, { "category": "Pet", "configData": { - "id": "Huge Hacked Cat", + "id": "Titanic Clover Butterfly", }, - "value": 87237567, + "value": 954, }, { "category": "Pet", "configData": { - "id": "Huge Zebra", - "pt": 1, - "sh": true, + "id": "Huge Clover Butterfly", + "pt": 2, }, - "value": 345862173, + "value": 500, }, { "category": "Pet", "configData": { - "id": "Melted Slime", + "id": "Huge Clover Butterfly", + "pt": 2, + "sh": true, }, - "value": 176, + "value": 50, }, { "category": "Pet", "configData": { - "id": "Seal", + "id": "Titanic Clover Butterfly", + "pt": 2, }, - "value": 336, + "value": 29, }, { "category": "Pet", "configData": { - "id": "Fairy Queen", + "id": "Titanic Clover Butterfly", + "sh": true, }, - "value": 9692977, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Huge Santa Paws", + "id": "Titanic Clover Butterfly", "pt": 2, + "sh": true, }, - "value": 997218688, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Lamb", - "pt": 1, + "id": "Huge Hydra Axolotl", + "pt": 2, "sh": true, }, - "value": 1, + "value": 16, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Diamond Cat", + "id": "Tie Dye", }, - "value": 9382907, + "value": 3444, }, { "category": "Pet", "configData": { - "id": "Armadillo", - "sh": true, + "id": "Huge Tiedye Dog", + "pt": 1, }, - "value": 1102, + "value": 148, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Luxe Axolotl", + "id": "Tie Dye", }, - "value": 425279, + "value": 746, }, { "category": "Pet", "configData": { - "id": "Huge Hell Rock", - "sh": true, + "id": "Huge Tiedye Dog", + "pt": 2, }, - "value": 2610208025, + "value": 75, }, { "category": "Pet", "configData": { - "id": "Puma", - "pt": 1, + "id": "Huge Tiedye Dog", }, - "value": 2510, + "value": 523, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Bull", - "pt": 1, + "id": "Mystery Lucky Raid Key", }, - "value": 115, + "value": 171918, }, { "category": "Pet", "configData": { - "id": "Colorful Dragon", - "pt": 1, + "id": "Huge Spitting Dino", + "pt": 2, "sh": true, }, - "value": 23567, + "value": 21, }, { "category": "Pet", "configData": { - "id": "Huge Nightmare Spirit", - "sh": true, + "id": "Huge Leprechaun Corgi", + "pt": 1, }, - "value": 717432228, + "value": 1245, }, { "category": "Pet", "configData": { - "id": "Huge Grinch Cat", + "id": "Huge Leprechaun Corgi", }, - "value": 116015069, + "value": 3495, }, { "category": "Pet", "configData": { - "id": "Phoenix", + "id": "Huge Leprechaun Corgi", + "pt": 2, }, - "value": 706, + "value": 248, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Cold Ladybug", - "pt": 1, + "id": "Mining Bomb", + "tn": 1, }, - "value": 226, + "value": 131307351, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Huge Error Cat", - "pt": 1, + "id": "Mining Bejeweled TNT Crate", + "tn": 1, }, - "value": 79152172, + "value": 249724, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Owl", - "sh": true, + "id": "Mining Damage Booster", + "tn": 1, }, - "value": 121, + "value": 11771470033, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Pirate Cat", - "pt": 1, + "id": "Mining Coins Booster", + "tn": 1, }, - "value": 552, + "value": 10044803540, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Stealth Dragon", - "pt": 2, + "id": "Mining Speed Booster", + "tn": 1, }, - "value": 25540714, + "value": 26352385631, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Walrus", - "pt": 1, - "sh": true, + "id": "Mining TNT", + "tn": 1, }, - "value": 4000, + "value": 131256935, }, { - "category": "Pet", + "category": "Pickaxe", "configData": { - "id": "Honey Badger", - "pt": 2, + "id": "Wooden Pickaxe", }, - "value": 469, + "value": 2310780, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Balloon Dragon", + "id": "Sapphire Gem", }, - "value": 3843233, + "value": 22723662473, }, { "category": "Pet", "configData": { - "id": "Huge Old Wizard Corgi", - "sh": true, + "id": "Mining Raccoon", }, - "value": 6043551960, + "value": 44030036, }, { "category": "Pet", "configData": { - "id": "Guard Corgi", - "pt": 2, + "id": "Mining Penguin", }, - "value": 2241, + "value": 115183007, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Mantis Shrimp", - "sh": true, + "id": "Mining TNT Crate", + "tn": 1, }, - "value": 161444, + "value": 57780986, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Pristine Poodle", - "pt": 2, + "id": "Mining Nuclear TNT Crate", + "tn": 1, }, - "value": 129, + "value": 323988, }, { "category": "Pet", "configData": { - "id": "Hacked Cat", + "id": "Mining Penguin", + "pt": 1, }, - "value": 1272, + "value": 10482258, }, { "category": "Pet", "configData": { - "id": "Cyclops", + "id": "Mining Raccoon", + "pt": 2, }, - "value": 268, + "value": 3133321, }, { "category": "Pet", "configData": { - "id": "Melted Slime", + "id": "Mining Raccoon", "pt": 1, }, - "value": 17696, + "value": 4113234, }, { "category": "Pet", "configData": { - "id": "African Wild Dog", + "id": "Minecart Hamster", }, - "value": 167, + "value": 141219516, }, { "category": "Pet", "configData": { - "id": "Huge Machete Dog", - "sh": true, + "id": "Mining Penguin", + "pt": 2, }, - "value": 1667403466, + "value": 10939895, }, { - "category": "Pet", + "category": "Pickaxe", "configData": { - "id": "Crystal Dog", - "pt": 1, - "sh": true, + "id": "Stone Pickaxe", }, - "value": 47664069, + "value": 1876361, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Tiedye Axolotl", - "pt": 2, - "sh": true, + "id": "Exclusive Egg 47", }, - "value": 1398000001, + "value": 499144, }, { - "category": "Pet", + "category": "Pickaxe", "configData": { - "id": "Wyvern of Hades", - "pt": 2, - "sh": true, + "id": "Obsidian Pickaxe", }, - "value": 15351962, + "value": 29909, }, { "category": "Pet", "configData": { - "id": "Guard Corgi", - "pt": 1, + "id": "Huge Abstract Dominus", }, - "value": 1807, + "value": 6089, }, { "category": "Pet", "configData": { - "id": "Huge Firefighter Dalmation", - "pt": 1, + "id": "Kaiju Sea Dragon", }, - "value": 392027385, + "value": 76371, }, { "category": "Pet", "configData": { - "id": "Fire Bat", - "sh": true, + "id": "Kaiju Volcano", }, - "value": 114, + "value": 45206, }, { "category": "Pet", "configData": { - "id": "Golden Retriever", - "pt": 1, + "id": "Huge Abstract Dominus", + "pt": 2, }, - "value": 127, + "value": 925, }, { "category": "Pet", "configData": { - "id": "Huge Good vs Evil Cat", - "pt": 1, + "id": "Minecart Hamster", + "pt": 2, }, - "value": 169609033, + "value": 13507271, }, { "category": "Pet", "configData": { - "id": "Guest Noob", + "id": "Minecart Hamster", + "pt": 1, }, - "value": 93808007, + "value": 12808423, }, { "category": "Pet", "configData": { - "id": "Koala", + "id": "Crystal Spider", + "pt": 2, }, - "value": 3853972, + "value": 39898798, }, { "category": "Pet", "configData": { - "id": "Pirate Cat", + "id": "Huge Kaiju Sea Dragon", }, - "value": 572, + "value": 6671, }, { "category": "Pet", "configData": { - "id": "Huge Matrix Monkey", - "pt": 2, + "id": "Kaiju Volcano", "sh": true, }, - "value": 25000000000, + "value": 1389, }, { "category": "Pet", "configData": { - "id": "Giraffe", - "pt": 1, + "id": "Kaiju Volcano", + "pt": 2, }, - "value": 433, + "value": 2200, }, { "category": "Pet", "configData": { - "id": "Huge Techno Cat", + "id": "Huge Abstract Dominus", "pt": 1, - "sh": true, }, - "value": 906466856, + "value": 2903, }, { "category": "Pet", "configData": { - "id": "Huge Pastel Elephant", - "pt": 2, + "id": "Kaiju Hydra", }, - "value": 408689522, + "value": 19206, }, { "category": "Pet", "configData": { - "id": "Huge Sleipnir", - "pt": 1, + "id": "Kaiju Sea Dragon", + "sh": true, }, - "value": 442380250, + "value": 2046, }, { "category": "Pet", "configData": { - "id": "Capybara", + "id": "Huge Kaiju Hydra", }, - "value": 7497790, + "value": 1759, }, { "category": "Pet", "configData": { - "id": "Huge Unicorn Dragon", + "id": "Kaiju Sea Dragon", "pt": 2, }, - "value": 898430945, + "value": 3266, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Mechanical Spider", - "pt": 1, + "id": "Ruby Gem", }, - "value": 5478, + "value": 25420206700, }, { "category": "Pet", "configData": { - "id": "Quokka", + "id": "Mining Raccoon", + "pt": 1, + "sh": true, }, - "value": 11968, + "value": 25284, }, { "category": "Pet", "configData": { - "id": "Color Ruins Parrot", + "id": "Crystal Spider", }, - "value": 226, + "value": 263792383, }, { "category": "Pet", "configData": { - "id": "Huge Hologram Axolotl", - "pt": 2, + "id": "Crystal Spider", + "pt": 1, }, - "value": 1609149006, + "value": 19361526, }, { - "category": "Pet", + "category": "Pickaxe", "configData": { - "id": "Hell Fox", - "pt": 2, + "id": "Molten Pickaxe", }, - "value": 222, + "value": 10779, }, { "category": "Pet", "configData": { - "id": "Stealth Dragon", + "id": "Huge Kaiju Sea Dragon", + "sh": true, }, - "value": 10211224, + "value": 279, }, { "category": "Pet", "configData": { - "id": "Hot Cocoa Cat", - "sh": true, + "id": "Kaiju Hydra", + "pt": 2, }, - "value": 3145, + "value": 1064, }, { "category": "Pet", "configData": { - "id": "Huge Lucky Cat", - "pt": 2, + "id": "Kaiju Hydra", + "sh": true, }, - "value": 1633407131, + "value": 593, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Monkey", - "pt": 1, + "id": "Kaiju Sea Dragon", + "pt": 2, + "sh": true, }, - "value": 1747, + "value": 130, }, { "category": "Pet", "configData": { - "id": "Sandcastle Cat", + "id": "Mining Raccoon", "sh": true, }, - "value": 884, + "value": 209510, }, { "category": "Pet", "configData": { - "id": "Glitched Phoenix", - "pt": 2, + "id": "Mining Penguin", + "sh": true, }, - "value": 1164, + "value": 961824, }, { "category": "Pet", "configData": { - "id": "Cool Cat", + "id": "Titanic Kaiju Moth", }, - "value": 3721579, + "value": 446, }, { "category": "Pet", "configData": { - "id": "Kitsune Fox", + "id": "Mining Penguin", "pt": 2, + "sh": true, }, - "value": 1132, + "value": 31191, }, { "category": "Pet", "configData": { - "id": "Mosaic Dove", + "id": "Minecart Hamster", + "pt": 1, "sh": true, }, - "value": 8884564, + "value": 66245, }, { "category": "Pet", "configData": { - "id": "Guilded Raven", + "id": "Huge Abstract Dominus", "pt": 2, + "sh": true, }, - "value": 665, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Huge Exquisite Parrot", + "id": "Mining Penguin", + "pt": 1, "sh": true, }, - "value": 401249817, + "value": 45471, }, { "category": "Pet", "configData": { - "id": "Neon Dog", + "id": "Minecart Hamster", + "sh": true, }, - "value": 5155760, + "value": 1209340, }, { - "category": "Pet", + "category": "Pickaxe", "configData": { - "id": "Huge Festive Cat", - "pt": 2, + "id": "Bronze Pickaxe", }, - "value": 407939692, + "value": 1373243, }, { "category": "Pet", "configData": { - "id": "Dragon", - "pt": 1, + "id": "Huge Abstract Dominus", "sh": true, }, - "value": 153000, + "value": 202, }, { "category": "Pet", "configData": { - "id": "Snowflake Dominus", - "pt": 1, - "sh": true, + "id": "Crystal Bat", }, - "value": 38312, + "value": 14599836057, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Balloon Cat", - "pt": 1, + "id": "Emerald Gem", }, - "value": 246202938, + "value": 15857910732, }, { "category": "Pet", "configData": { - "id": "Desert Cat", + "id": "Kaiju Volcano", "pt": 2, + "sh": true, }, - "value": 302, + "value": 94, }, { "category": "Pet", "configData": { - "id": "Red Woofy", + "id": "Huge Abstract Dominus", + "pt": 1, + "sh": true, }, - "value": 610, + "value": 42, }, { "category": "Pet", "configData": { - "id": "Flamortuus", + "id": "Huge Kaiju Hydra", "sh": true, }, - "value": 126, + "value": 70, }, { "category": "Pet", "configData": { - "id": "Alien Arachnid", + "id": "Crystal Bat", + "pt": 1, }, - "value": 281, + "value": 1516961802, }, { "category": "Pet", "configData": { - "id": "Tulip Hedgehog", - "pt": 1, + "id": "Crystal Bat", + "pt": 2, }, - "value": 282, + "value": 2267766029, }, { "category": "Pet", "configData": { - "id": "Huge Dragon", - "pt": 2, + "id": "Crystal Spider", + "pt": 1, + "sh": true, }, - "value": 992407630, + "value": 321310, }, { "category": "Pet", "configData": { - "id": "White Tiger", - "sh": true, + "id": "Huge Kaiju Sea Dragon", + "pt": 2, }, - "value": 213, + "value": 208, }, { "category": "Pet", "configData": { - "id": "Owl", - "pt": 1, - "sh": true, + "id": "Jungle Golem", }, - "value": 1160, + "value": 477373237, }, { "category": "Pet", "configData": { - "id": "Scary Corgi", - "pt": 1, + "id": "Crystal Spider", + "sh": true, }, - "value": 348, + "value": 2870352, }, { "category": "Pet", "configData": { - "id": "Royal Peacock", - "pt": 1, + "id": "Minecart Hamster", + "pt": 2, + "sh": true, }, - "value": 265, + "value": 43548, }, { "category": "Pet", "configData": { - "cv": 5, - "id": "Chroma Tiger", + "id": "Mining Raccoon", + "pt": 2, + "sh": true, }, - "value": 28741, + "value": 12936, }, { "category": "Pet", "configData": { - "id": "Fire Horse", + "id": "Jungle Golem", + "pt": 2, }, - "value": 136, + "value": 88232107, }, { "category": "Pet", "configData": { - "id": "Huge Shuriken Corgi", + "id": "Crystal Spider", + "pt": 2, + "sh": true, }, - "value": 37735297, + "value": 92935, }, { "category": "Pet", "configData": { - "id": "Wyvern of Hades", - "pt": 1, + "id": "Gargantuan Kaiju King", }, - "value": 9911, + "value": 43, }, { "category": "Pet", "configData": { - "id": "Huge Pirate Parrot", + "id": "Jungle Golem", "pt": 1, }, - "value": 315123735, + "value": 61442169, }, { - "category": "Pet", + "category": "Pickaxe", "configData": { - "id": "Titanic Dolphin", + "id": "Iron Pickaxe", }, - "value": 12852684134, + "value": 1030290, }, { "category": "Pet", "configData": { - "id": "Luchador Axolotl", - "pt": 2, + "id": "Crystal Bat", "sh": true, }, - "value": 1793016906, + "value": 57541666, }, { "category": "Pet", "configData": { - "id": "Huge Nightmare Kraken", + "id": "Crystal Bat", "pt": 2, + "sh": true, }, - "value": 1898547600, + "value": 14759571, }, { "category": "Pet", "configData": { - "id": "Quokka", - "pt": 2, + "id": "Crystal Bat", + "pt": 1, + "sh": true, }, - "value": 20378, + "value": 9480841, }, { "category": "Pet", "configData": { - "id": "Gingerbread Cat", + "id": "Fragmented Golem", }, - "value": 11738, + "value": 13106073, }, { "category": "Pet", "configData": { - "id": "White Bunny", + "id": "Fragmented Golem", + "pt": 1, }, - "value": 20, + "value": 1678667, }, { "category": "Pet", "configData": { - "id": "Frost Dragon", + "id": "Fragmented Golem", "pt": 2, }, - "value": 323, + "value": 2245956, }, { "category": "Pet", "configData": { - "id": "Sun Parrot", + "id": "Huge Kaiju Hydra", "pt": 2, - "sh": true, }, - "value": 1266, + "value": 45, }, { "category": "Pet", "configData": { - "id": "Wicked Empyrean Dominus", + "id": "Jungle Golem", "pt": 1, "sh": true, }, - "value": 5, + "value": 366076, }, { "category": "Pet", "configData": { - "id": "Walrus", + "id": "Huge Kaiju Sea Dragon", "pt": 2, + "sh": true, }, - "value": 3775, + "value": 10, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Dark Lord", - "sh": true, + "id": "Amethyst Gem", }, - "value": 2189, + "value": 5664043671, }, { "category": "Pet", "configData": { - "id": "404 Demon", + "id": "Titanic Kaiju Moth", "pt": 2, }, - "value": 526, + "value": 16, }, { "category": "Pet", "configData": { - "id": "Turkey", + "id": "Jungle Golem", "sh": true, }, - "value": 13930, + "value": 2019489, }, { "category": "Pet", "configData": { - "id": "Huge Safari Cat", - "pt": 1, + "id": "Jungle Golem", + "pt": 2, + "sh": true, }, - "value": 236973779, + "value": 585708, }, { - "category": "Pet", + "category": "Pickaxe", "configData": { - "id": "Huge Jolly Penguin", + "id": "Gold Pickaxe", }, - "value": 44216789, + "value": 796911, }, { "category": "Pet", "configData": { - "id": "Rhino", + "id": "Abstract Dominus", }, - "value": 4078, + "value": 142983, }, { "category": "Pet", "configData": { - "id": "Empyrean Fox", - "sh": true, + "id": "Huge Mining Raccoon", }, - "value": 13076, + "value": 190593, }, { "category": "Pet", "configData": { - "id": "Huge Peacock", + "id": "Abstract Dominus", "pt": 2, }, - "value": 329901303, + "value": 14264, }, { "category": "Pet", "configData": { - "id": "Hellish Axolotl", + "id": "Abstract Dominus", "pt": 1, }, - "value": 1656, + "value": 15670, }, { "category": "Pet", "configData": { - "id": "Huge Reversed Cat", + "id": "Kaiju Hydra", + "pt": 2, + "sh": true, }, - "value": 983356783, + "value": 32, }, { "category": "Pet", "configData": { - "id": "Pastel Deer", + "id": "Abyss Carbuncle", "pt": 2, }, - "value": 456, + "value": 31816920, }, { "category": "Pet", "configData": { - "id": "Relic Squirrel", - "pt": 1, + "id": "Abyss Carbuncle", }, - "value": 6422, + "value": 891191824, }, { "category": "Pet", "configData": { - "id": "Sailor Shark", - "pt": 1, + "id": "Huge Mining Raccoon", + "pt": 2, }, - "value": 274, + "value": 10466, }, { "category": "Pet", "configData": { - "id": "Jaguar", - "pt": 2, + "id": "Fragmented Golem", + "pt": 1, + "sh": true, }, - "value": 394, + "value": 22226, }, { "category": "Pet", "configData": { - "id": "Hellish Axolotl", - "sh": true, + "id": "Huge Mining Raccoon", + "pt": 1, }, - "value": 15534, + "value": 12368, }, { "category": "Pet", "configData": { - "id": "Huge Cosmic Agony", + "id": "Fragmented Golem", "pt": 2, + "sh": true, }, - "value": 1756717028, + "value": 19767, }, { "category": "Pet", "configData": { - "id": "Abyssal Kraken", + "id": "Abyss Carbuncle", "pt": 1, }, - "value": 360, + "value": 37406996, }, { "category": "Pet", "configData": { - "id": "Cosmic Dragon", + "id": "Huge Mining Raccoon", + "sh": true, }, - "value": 6429302, + "value": 3963, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Dark Dragon", - "pt": 1, + "id": "Rainbow Gem", }, - "value": 3027, + "value": 4194295564, }, { - "category": "Pet", + "category": "Pickaxe", "configData": { - "id": "Hooded Bobcat", - "pt": 2, + "id": "Emerald Pickaxe", }, - "value": 27, + "value": 631036, }, { "category": "Pet", "configData": { - "id": "Exquisite Parrot", + "id": "Fragmented Golem", "sh": true, }, - "value": 57998142, + "value": 47092, }, { "category": "Pet", "configData": { - "id": "Circuit Corgi", - "pt": 1, + "id": "Titanic Kaiju Moth", + "sh": true, }, - "value": 3257, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Huge Anime Agony", + "id": "Huge Mining Raccoon", "pt": 2, + "sh": true, }, - "value": 4585208587, + "value": 215, }, { "category": "Pet", "configData": { - "id": "Pirate Cat", - "pt": 2, + "id": "Huge Mining Raccoon", + "pt": 1, + "sh": true, }, - "value": 353, + "value": 251, + }, + { + "category": "Pickaxe", + "configData": { + "id": "Diamond Pickaxe", + }, + "value": 78949, }, { "category": "Pet", "configData": { - "id": "Zebra", - "sh": true, + "id": "Huge Mining Penguin", + "pt": 1, }, - "value": 2338, + "value": 294661, }, { "category": "Pet", "configData": { - "id": "Cloud Cat", + "id": "Huge Mining Penguin", }, - "value": 16817997, + "value": 1293605, }, { "category": "Pet", "configData": { - "id": "Zebra", + "id": "Abstract Dominus", + "pt": 2, + "sh": true, }, - "value": 716, + "value": 51, }, { "category": "Pet", "configData": { - "id": "Rave Troll", - "pt": 1, + "id": "Huge Mining Penguin", + "sh": true, }, - "value": 84, + "value": 10216, }, { "category": "Pet", "configData": { - "id": "Melted Rock", - "pt": 1, + "id": "Huge Mining Penguin", + "pt": 2, }, - "value": 104314, + "value": 69759, }, { "category": "Pet", "configData": { - "id": "Huge Shiba", + "id": "Huge Crystal Spider", }, - "value": 7000000000, + "value": 7358, }, { "category": "Pet", "configData": { - "id": "Huge Forest Wyvern", + "id": "Huge Crystal Spider", "pt": 1, }, - "value": 405041904, + "value": 2625, }, { "category": "Pet", "configData": { - "id": "Wyvern of Hades", + "id": "Huge Mining Penguin", + "pt": 1, + "sh": true, }, - "value": 1038, + "value": 2715, }, { "category": "Pet", "configData": { - "id": "Unicorn Dragon", - "pt": 2, + "id": "Huge Fragmented Golem", }, - "value": 14077795, + "value": 1694, }, { "category": "Pet", "configData": { - "id": "Mining Cat", - "pt": 1, + "id": "Huge Mining Penguin", + "pt": 2, + "sh": true, }, - "value": 298, + "value": 594, }, { "category": "Pet", "configData": { - "id": "Cyborg Dominus", - "pt": 1, + "id": "Huge Crystal Spider", + "pt": 2, }, - "value": 1414, + "value": 363, }, { "category": "Pet", "configData": { - "id": "Huge Sleipnir", + "id": "Gargantuan Kaiju King", "pt": 2, }, - "value": 1136807042, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Ice Bunny", - "sh": true, + "id": "Huge Fragmented Golem", + "pt": 1, }, - "value": 470, + "value": 548, }, { "category": "Pet", "configData": { - "id": "Huge Atlantean Dolphin", - "sh": true, + "id": "Titanic Abyss Carbuncle", + "pt": 1, }, - "value": 716051986, + "value": 619, }, { "category": "Pet", "configData": { - "id": "Sun Angelus", + "id": "Huge Crystal Spider", "sh": true, }, - "value": 197110, + "value": 23, }, { "category": "Pet", "configData": { - "id": "Calico Cat", - "pt": 1, + "id": "Titanic Abyss Carbuncle", }, - "value": 336, + "value": 1055, }, { "category": "Pet", "configData": { - "id": "Holographic Monkey", + "id": "Huge Fragmented Golem", "pt": 2, - "sh": true, }, - "value": 115800, + "value": 102, }, { "category": "Pet", "configData": { - "id": "Hell Fox", + "id": "Titanic Abyss Carbuncle", + "pt": 2, }, - "value": 677, + "value": 227, }, { "category": "Pet", "configData": { - "id": "Rock Cat", - "pt": 2, - "sh": true, + "id": "Gargantuan Hellish Axolotl", }, - "value": 3287, + "value": 47, }, { "category": "Pet", "configData": { - "id": "Cosmic Axolotl", + "id": "Abstract Dominus", + "pt": 1, + "sh": true, }, - "value": 3886103, + "value": 139, }, { "category": "Pet", "configData": { - "id": "Hot Air Balloon Dog", + "id": "Huge Fragmented Golem", + "pt": 1, + "sh": true, }, - "value": 356, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Surfboard Axolotl", + "id": "Gargantuan Hellish Axolotl", "pt": 2, }, - "value": 112, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Electric Penguin", - "pt": 2, + "id": "Abstract Dominus", + "sh": true, }, - "value": 1795, + "value": 58, }, { "category": "Pet", "configData": { - "id": "Scorpion", + "id": "Huge Crystal Spider", + "pt": 1, + "sh": true, }, - "value": 231, + "value": 18, }, { "category": "Pet", "configData": { - "id": "Unicorn Dragon", + "id": "Gargantuan Hellish Axolotl", + "pt": 1, }, - "value": 3695420, + "value": 11, }, { "category": "Pet", "configData": { - "cv": 2, - "id": "Huge Chroma Unicorn", + "id": "Huge Fragmented Golem", "sh": true, }, - "value": 1426800116, + "value": 18, }, { "category": "Pet", "configData": { - "id": "Balloon Corgi", + "id": "Huge Crystal Spider", "pt": 2, + "sh": true, }, - "value": 15460553, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Blue Slime", - "pt": 2, + "id": "Titanic Abyss Carbuncle", + "pt": 1, "sh": true, }, - "value": 95200, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Huge Rainbow Slime", - "pt": 2, + "id": "Titanic Abyss Carbuncle", + "sh": true, }, - "value": 246276092, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Haxolotl", + "id": "Huge Fragmented Golem", "pt": 2, + "sh": true, }, - "value": 282, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Quantum Dominus", + "id": "Titanic Abyss Carbuncle", + "pt": 2, + "sh": true, }, - "value": 1066, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Huge Gamer Shiba", - "pt": 2, + "id": "Gargantuan Kaiju King", + "sh": true, }, - "value": 1394684179, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Atlantean Stingray", + "id": "Abyss Carbuncle", + "pt": 1, "sh": true, }, - "value": 9895829, + "value": 181518, }, { "category": "Pet", "configData": { - "id": "Hydra", + "id": "Abyss Carbuncle", + "pt": 2, + "sh": true, }, - "value": 300, + "value": 81856, }, { "category": "Pet", "configData": { - "id": "Fairy Bee", - "pt": 1, + "id": "Abyss Carbuncle", "sh": true, }, - "value": 1000, + "value": 2591150, }, { "category": "Pet", "configData": { - "id": "Clout Cat", + "id": "Titanic Ghostface Cat", + "sh": true, }, - "value": 4618463, + "value": 1, }, { - "category": "Pet", + "category": "Currency", "configData": { - "id": "Hacked Skeleton", + "id": "Coins", }, - "value": 594, + "value": 6.97739355889979e+46, }, { - "category": "Pet", + "category": "Currency", "configData": { - "id": "Stingray", - "pt": 2, + "id": "MiningCoins", }, - "value": 1648, + "value": 2581462078708259300, }, { - "category": "Pet", + "category": "Currency", "configData": { - "id": "Stunt Unicorn", + "id": "Diamonds", }, - "value": 1393232363, + "value": 1071655666849685, }, { - "category": "Pet", + "category": "Currency", "configData": { - "id": "Atlantean Orca", + "id": "VoidCoins", }, - "value": 5029746, + "value": 1.7406090180620853e+27, }, { - "category": "Pet", + "category": "Currency", "configData": { - "id": "Frostbyte Narwhal", + "id": "TechCoins", }, - "value": 662, + "value": 1.1776951741888417e+47, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Blimp Dragon", - "sh": true, + "id": "Mining Coins Booster", + "tn": 2, }, - "value": 9521, + "value": 26902000, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Turtle", + "id": "Mining Damage Booster", + "tn": 2, }, - "value": 41108, + "value": 15914432, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Huge Atomic Forged Shark", - "sh": true, + "id": "Mining Speed Booster", + "tn": 2, }, - "value": 433097518, + "value": 20112751, }, { "category": "Pet", "configData": { - "id": "Camel", - "pt": 1, + "id": "Minecart Piggy", }, - "value": 1561, + "value": 19695592876, }, { "category": "Pet", "configData": { - "id": "Fairy Ladybug", + "id": "Minecart Piggy", "pt": 2, }, - "value": 177, + "value": 3343004417, }, { "category": "Pet", "configData": { - "id": "Mech Dino", - "pt": 2, - "sh": true, + "id": "Mining Monkey", }, - "value": 15272869, + "value": 9907834190, }, { "category": "Pet", "configData": { - "id": "Sun Angelus", - "pt": 2, + "id": "Minecart Piggy", + "pt": 1, }, - "value": 16853, + "value": 2277868786, }, { "category": "Pet", "configData": { - "id": "Camel", + "id": "Huge Minecart Piggy", "sh": true, }, - "value": 6459, + "value": 143, }, { "category": "Pet", "configData": { - "id": "Kraken", + "id": "Mining Monkey", + "pt": 1, }, - "value": 301, + "value": 1199427865, }, { "category": "Pet", "configData": { - "id": "Huge Matrix Monkey", - "sh": true, + "id": "Huge Minecart Piggy", }, - "value": 2167874002, + "value": 4308, }, { "category": "Pet", "configData": { - "id": "Huge Present Chest Mimic", - "sh": true, + "id": "Mining Monkey", + "pt": 2, }, - "value": 881525423, + "value": 1750538312, }, { - "category": "Pet", + "category": "Pickaxe", "configData": { - "id": "Vampire Bat", - "pt": 1, + "id": "Comet Pickaxe", }, - "value": 257, + "value": 4082, }, { "category": "Pet", "configData": { - "id": "Queen Piggy", + "id": "Huge Minecart Piggy", + "pt": 1, }, - "value": 201, + "value": 2286, }, { "category": "Pet", "configData": { - "id": "Cool Corgi", + "id": "Minecart Piggy", "pt": 2, + "sh": true, }, - "value": 16423057, + "value": 26490493, }, { "category": "Pet", "configData": { - "id": "Galaxy Fox", - "pt": 2, + "id": "Minecart Piggy", "sh": true, }, - "value": 188646, + "value": 89911015, }, { "category": "Pet", "configData": { - "id": "Evil Gorilla", + "id": "Minecart Piggy", + "pt": 1, + "sh": true, }, - "value": 1193, + "value": 13874890, }, { "category": "Pet", "configData": { - "id": "Huge Strawberry Cow", - "pt": 2, - "sh": true, + "id": "Gem Mole", }, - "value": 3886144020, + "value": 500615469, }, { "category": "Pet", "configData": { - "id": "Penguin", + "id": "Gem Mole", + "pt": 2, }, - "value": 84, + "value": 102058936, }, { - "category": "Pet", + "category": "Currency", "configData": { - "id": "Pentangelus", + "id": "Digsite", }, - "value": 2366, + "value": 2392516648736, }, { - "category": "Pet", + "category": "Currency", "configData": { - "id": "Huge Pixel Cat", - "pt": 1, + "id": "Fishing", }, - "value": 67662594, + "value": 969855602407, }, { "category": "Pet", "configData": { - "id": "Huge Techno Cat", - "pt": 1, + "id": "Huge Minecart Piggy", + "pt": 2, }, - "value": 653676727, + "value": 636, }, { "category": "Pet", "configData": { - "id": "Huge Chroma Phoenix", + "id": "Gem Mole", + "pt": 1, }, - "value": 46725304, + "value": 67802971, }, { "category": "Pet", "configData": { - "id": "Nightfall Wolf", + "id": "Mining Monkey", + "pt": 2, "sh": true, }, - "value": 21399545, + "value": 13708159, }, { "category": "Pet", "configData": { - "id": "Cat Magician", + "id": "Mining Monkey", "pt": 1, + "sh": true, }, - "value": 1162, + "value": 6949749, }, { "category": "Pet", "configData": { - "id": "Anime Corgi", + "id": "Mining Monkey", + "sh": true, }, - "value": 6538572, + "value": 43938956, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Rabbit", + "id": "Quartz Gem", }, - "value": 940, + "value": 1386113016, }, { "category": "Pet", "configData": { - "id": "Tiedye Cat", + "id": "Huge Minecart Piggy", "pt": 1, + "sh": true, }, - "value": 5654078, + "value": 27, }, { - "category": "Pet", + "category": "Currency", "configData": { - "id": "Huge Meebo in a Spaceship", - "pt": 2, + "id": "Woodcutting", }, - "value": 999698059, + "value": 2456584079, }, { "category": "Pet", "configData": { - "id": "Chick", - "pt": 1, + "id": "Mining Robot", }, - "value": 869, + "value": 1521866, }, { - "category": "Pet", + "category": "Pickaxe", "configData": { - "id": "Seal", - "sh": true, + "id": "Sapphire Pickaxe", }, - "value": 326, + "value": 401761, }, { "category": "Pet", "configData": { - "id": "Mosaic Corgi", + "id": "Mining Robot", "pt": 1, - "sh": true, }, - "value": 47117084, + "value": 234094, }, { "category": "Pet", "configData": { - "id": "Huge Axolotl", - "pt": 1, + "id": "Obsidian Dragon", }, - "value": 425282638, + "value": 156884, }, { "category": "Pet", "configData": { - "id": "Frost Bear", + "id": "Gem Mole", "sh": true, }, - "value": 979, + "value": 2125926, }, { "category": "Pet", "configData": { - "id": "Kangaroo", + "id": "Gem Mole", + "pt": 1, "sh": true, }, - "value": 11088, + "value": 403957, }, { "category": "Pet", "configData": { - "id": "Fire Cat", + "id": "Gem Mole", + "pt": 2, "sh": true, }, - "value": 65, + "value": 762813, }, { "category": "Pet", "configData": { - "id": "Hacked Computer", + "id": "Huge Minecart Hamster", "pt": 2, - "sh": true, }, - "value": 521, + "value": 18454, }, { "category": "Pet", "configData": { - "id": "Poseidon Dog", + "id": "Mining Robot", + "pt": 2, }, - "value": 803, + "value": 309111, }, { "category": "Pet", "configData": { - "id": "Silver Stag", + "id": "Huge Minecart Piggy", + "pt": 2, + "sh": true, }, - "value": 14867, + "value": 11, }, { - "category": "Pet", + "category": "Pickaxe", "configData": { - "id": "Huge Rich Cat", + "id": "Ruby Pickaxe", }, - "value": 48060500, + "value": 290295, }, { "category": "Pet", "configData": { - "id": "Stunt Chick", + "id": "Huge Minecart Hamster", }, - "value": 369939132, + "value": 187037, + }, + { + "category": "Misc", + "configData": { + "id": "Topaz Gem", + }, + "value": 257091345, }, { "category": "Pet", "configData": { - "id": "Research Cat", - "pt": 1, + "id": "Obsidian Dragon", + "pt": 2, }, - "value": 124, + "value": 25143, }, { "category": "Pet", "configData": { - "id": "Huge Pterodactyl", + "id": "Huge Minecart Hamster", "pt": 1, }, - "value": 345773775, + "value": 19550, }, { "category": "Pet", "configData": { - "id": "Relic Bat", + "id": "Obsidian Dragon", "pt": 1, }, - "value": 44, + "value": 24088, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Pirate Parrot", + "id": "Onyx Gem", }, - "value": 104825422, + "value": 34788524, }, { "category": "Pet", "configData": { - "id": "Huge Emoji Cat", + "id": "Huge Minecart Hamster", "pt": 2, + "sh": true, }, - "value": 825090031, + "value": 401, }, { "category": "Pet", "configData": { - "id": "Huge Cupid Corgi", - "pt": 1, + "id": "Huge Minecart Hamster", "sh": true, }, - "value": 566062409, + "value": 3776, }, { "category": "Pet", "configData": { - "id": "Huge Cheerful Yeti", + "id": "Huge Minecart Hamster", "pt": 1, + "sh": true, }, - "value": 700519692, + "value": 394, }, { "category": "Pet", "configData": { - "id": "Huge Comet Agony", - "pt": 2, + "id": "Huge Mining Robot", }, - "value": 4821059425, + "value": 40518, }, { "category": "Pet", "configData": { - "id": "Goat", + "id": "Mining Robot", "pt": 1, + "sh": true, }, - "value": 9449, + "value": 5213, }, { "category": "Pet", "configData": { - "id": "Huge Goblin", - "pt": 2, - "sh": true, + "id": "Huge Mining Monkey", }, - "value": 4930149340, + "value": 1624335, }, { - "category": "Pet", + "category": "Pickaxe", "configData": { - "id": "Huge Tiedye Axolotl", + "id": "Amethyst Pickaxe", }, - "value": 93077737, + "value": 45111, }, { - "category": "Pet", + "category": "Pickaxe", "configData": { - "id": "Storm Dominus", - "pt": 2, + "id": "Solar Pickaxe", }, - "value": 11493591, + "value": 107447, }, { "category": "Pet", "configData": { - "id": "Huge Neon Cat", + "id": "Mining Robot", "sh": true, }, - "value": 605239971, + "value": 3144, }, { "category": "Pet", "configData": { - "id": "Snow Dog", - "pt": 1, + "id": "Mining Robot", + "pt": 2, "sh": true, }, - "value": 9000, + "value": 2520, }, { "category": "Pet", "configData": { - "id": "Atlantean Orca", - "pt": 2, + "id": "Obsidian Dragon", + "pt": 1, "sh": true, }, - "value": 43334504, + "value": 288, }, { "category": "Pet", "configData": { - "id": "Abyssal Kraken", + "id": "Huge Mining Monkey", + "pt": 2, }, - "value": 164, + "value": 86467, }, { "category": "Pet", "configData": { - "id": "Abyssal Parrot", - "pt": 2, + "id": "Huge Mining Robot", + "pt": 1, }, - "value": 401, + "value": 8007, }, { "category": "Pet", "configData": { - "id": "Reaper Cat", - "pt": 1, + "id": "Huge Mining Monkey", "sh": true, }, - "value": 7946, + "value": 14481, }, { "category": "Pet", "configData": { - "id": "Huge Hell Rock", + "id": "Huge Mining Monkey", "pt": 1, }, - "value": 44169589, + "value": 378666, }, { "category": "Pet", "configData": { - "id": "Hologram Tiger", - "pt": 2, + "id": "Huge Wishing Dragon", }, - "value": 16745857, + "value": 9265, }, { "category": "Pet", "configData": { - "id": "Happy Rock", - "pt": 1, + "id": "Titanic Wishing Dragon", }, - "value": 5371, + "value": 947, }, { "category": "Pet", "configData": { - "id": "Cold Ladybug", - "sh": true, + "id": "Huge Wishing Dragon", + "pt": 2, }, - "value": 469, + "value": 493, }, { "category": "Pet", "configData": { - "id": "Broomstick Cat", + "id": "Huge Wishing Dragon", "pt": 2, + "sh": true, }, - "value": 247, + "value": 50, }, { "category": "Pet", "configData": { - "id": "Bull", + "id": "Titanic Wishing Dragon", "pt": 2, }, - "value": 584, + "value": 30, }, { "category": "Pet", "configData": { - "id": "Demolition Cat", + "id": "Huge Wishing Dragon", "sh": true, }, - "value": 8340, + "value": 150, }, { "category": "Pet", "configData": { - "id": "Huge Storm Dominus", + "id": "Titanic Wishing Dragon", + "sh": true, }, - "value": 105728131, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Huge Lucki", + "id": "Titanic Wishing Dragon", + "pt": 2, + "sh": true, }, - "value": 171593622, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Silver Bison", + "id": "Huge Mining Monkey", + "pt": 1, + "sh": true, }, - "value": 933, + "value": 3416, }, { "category": "Pet", "configData": { - "id": "Humble Hen", + "id": "Huge Crystal Bat", }, - "value": 390, + "value": 7846, }, { "category": "Pet", "configData": { - "id": "Jolly Cat", + "id": "Huge Mining Robot", "pt": 2, }, - "value": 1043, + "value": 1576, }, { "category": "Pet", "configData": { - "id": "Penguin", + "id": "Obsidian Dragon", + "pt": 2, "sh": true, }, - "value": 602, + "value": 80, }, { "category": "Pet", "configData": { - "id": "Turtle in a Bucket", - "pt": 2, + "id": "Huge Jungle Golem", }, - "value": 121, + "value": 2659, }, { "category": "Pet", "configData": { - "id": "Frostbyte Husky", + "id": "Huge Mining Robot", + "pt": 1, + "sh": true, }, - "value": 364, + "value": 58, }, { "category": "Pet", "configData": { - "id": "Colorful Firefly", - "pt": 2, + "id": "Huge Mining Robot", + "sh": true, }, - "value": 214, + "value": 311, }, { "category": "Pet", "configData": { - "id": "Melted Rock", - "sh": true, + "id": "Huge Crystal Bat", + "pt": 1, }, - "value": 2, + "value": 3230, }, { "category": "Pet", "configData": { - "id": "King Cow", - "pt": 1, + "id": "Huge Crystal Bat", + "pt": 2, }, - "value": 236, + "value": 724, }, { "category": "Pet", "configData": { - "id": "Alien Parasite", + "id": "Huge Mining Monkey", + "pt": 2, "sh": true, }, - "value": 511, + "value": 776, }, { "category": "Pet", "configData": { - "id": "Blue Fish", - "pt": 1, + "id": "Titanic Obsidian Dragon", }, - "value": 227, + "value": 986, }, { "category": "Pet", "configData": { - "id": "Quokka", + "id": "Huge Jungle Golem", "pt": 1, }, - "value": 13425, + "value": 985, }, { "category": "Pet", "configData": { - "id": "Enchanted Cat", - "sh": true, + "id": "Huge Jungle Golem", + "pt": 2, }, - "value": 235, + "value": 159, }, { "category": "Pet", "configData": { - "id": "Hell Rock", + "id": "Titanic Obsidian Dragon", + "pt": 1, }, - "value": 13524, + "value": 448, }, { "category": "Pet", "configData": { - "id": "Cosmic Axolotl", - "pt": 2, + "id": "Obsidian Dragon", + "sh": true, }, - "value": 12434041, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Titanic Nightmare Cat", + "id": "Huge Crystal Bat", + "pt": 1, + "sh": true, }, - "value": 21967309887, + "value": 21, }, { "category": "Pet", "configData": { - "id": "Crystal Deer", + "id": "Titanic Obsidian Dragon", + "pt": 2, }, - "value": 5063420, + "value": 204, }, { "category": "Pet", "configData": { - "id": "Huge Pufferfish", - "pt": 2, + "id": "Huge Crystal Bat", + "sh": true, }, - "value": 10790000003, + "value": 87, }, { "category": "Pet", "configData": { - "id": "Cheerful Yeti", + "id": "Huge Jungle Golem", "sh": true, }, - "value": 3793, + "value": 19, }, { "category": "Pet", "configData": { - "id": "African Wild Dog", - "pt": 1, + "id": "Huge Mining Robot", + "pt": 2, + "sh": true, }, - "value": 160540, + "value": 16, }, { "category": "Pet", "configData": { - "id": "Masked Owl", + "id": "Titanic Obsidian Dragon", "pt": 1, + "sh": true, }, - "value": 747, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Tiki Dominus", + "id": "Titanic Obsidian Dragon", + "sh": true, }, - "value": 1130, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Skeleton", + "id": "Huge Jungle Golem", + "pt": 1, "sh": true, }, - "value": 204215, + "value": 14, }, { "category": "Pet", "configData": { - "id": "Flower Gecko", - "pt": 1, + "id": "Huge Jungle Golem", + "pt": 2, + "sh": true, }, - "value": 936, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Butterfly", + "id": "Huge Crystal Bat", + "pt": 2, + "sh": true, }, - "value": 232, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Goldfish", + "id": "Gargantuan Dot Matrix Pegasus", "pt": 2, - "sh": true, }, - "value": 2500000, + "value": 1, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Huge Safari Cat", + "id": "Clan Gift 2", }, - "value": 158988577, + "value": 348374, }, { "category": "Pet", "configData": { - "id": "Huge Mrs. Claws", + "id": "Huge Athena Owl", "pt": 1, }, - "value": 106106619, + "value": 363, }, { "category": "Pet", "configData": { - "id": "Shimmering Octopus", - "pt": 1, - "sh": true, + "id": "Huge Athena Owl", + "pt": 2, }, - "value": 3240, + "value": 150, }, { "category": "Pet", "configData": { - "id": "Huge Pony", - "pt": 2, + "id": "Huge Athena Owl", }, - "value": 779422464, + "value": 866, }, { "category": "Pet", "configData": { - "id": "Treasure Turtle", + "id": "Titanic Mosaic Cat", "pt": 1, }, - "value": 6744, + "value": 42, }, { "category": "Pet", "configData": { - "id": "Crystal Dog", + "id": "Titanic Mosaic Cat", }, - "value": 4740616, + "value": 388, }, { "category": "Pet", "configData": { - "id": "Hell Bat", + "id": "Huge Lightning Bat", }, - "value": 82, + "value": 25507, }, { "category": "Pet", "configData": { - "id": "Holiday Balloon Cat", + "id": "Huge Lightning Bat", "pt": 2, }, - "value": 15245873, + "value": 995, }, { "category": "Pet", "configData": { - "id": "Huge Storm Agony", - "pt": 1, + "id": "Titanic Mosaic Cat", + "pt": 2, }, - "value": 1076859214, + "value": 18, }, { "category": "Pet", "configData": { - "id": "Sapphire Carbuncle", + "id": "Huge Lightning Bat", "pt": 1, }, - "value": 179, + "value": 5305, }, { "category": "Pet", "configData": { - "id": "Mining Dog", - "pt": 1, + "id": "Huge Lightning Bat", + "pt": 2, + "sh": true, }, - "value": 1450, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Giraffe", + "id": "Huge Lightning Bat", + "sh": true, }, - "value": 464, + "value": 195, }, { "category": "Pet", "configData": { - "id": "Huge Diamond Cat", + "id": "Gargantuan Hypnotic Kitsune", "pt": 2, }, - "value": 6689333311, + "value": 1, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Huge Hoverboard Cat", + "id": "Factory Damage Booster", + "tn": 1, }, - "value": 285300326, + "value": 45867815, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Cowboy Dog", - "pt": 1, + "id": "Factory Coins Booster", + "tn": 1, }, - "value": 677, + "value": 18797762, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Lamb", - "pt": 2, + "id": "Factory Speed Booster", + "tn": 1, }, - "value": 1041, + "value": 45624623, }, { - "category": "Pet", + "category": "Currency", "configData": { - "id": "Rave Corgi", - "pt": 2, - "sh": true, + "id": "FactoryCoins", }, - "value": 50000, + "value": 317645036434638600, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Guilded Raven", - "pt": 2, - "sh": true, + "id": "Factory Damage Booster", + "tn": 2, }, - "value": 28000, + "value": 4799743, }, { "category": "Pet", "configData": { - "id": "Griffin", - "pt": 2, + "id": "Spotted Elephant", }, - "value": 25462, + "value": 1528406841, }, { "category": "Pet", "configData": { - "id": "Super Corgi", + "id": "Ooze Axolotl", + "pt": 1, }, - "value": 3464176, + "value": 58365274, }, { "category": "Pet", "configData": { - "id": "Blurred Monkey", - "pt": 1, - "sh": true, + "id": "Ooze Axolotl", }, - "value": 2588, + "value": 592719978, }, { "category": "Pet", "configData": { - "id": "Alien Arachnid", + "id": "Spotted Elephant", "pt": 2, - "sh": true, }, - "value": 20612, + "value": 137746170, }, { "category": "Pet", "configData": { - "id": "Huge Jolly Penguin", + "id": "Spotted Elephant", "pt": 1, }, - "value": 79619531, + "value": 130632420, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Camel", + "id": "Factory Speed Booster", + "tn": 2, }, - "value": 36, + "value": 4780114, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Hippo", - "pt": 2, + "id": "Factory Coins Booster", + "tn": 3, }, - "value": 16947, + "value": 82480, }, { "category": "Pet", "configData": { - "id": "Nightfall Tiger", - "sh": true, + "id": "Ooze Axolotl", + "pt": 2, }, - "value": 33484631, + "value": 55640021, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Gorilla", - "sh": true, + "id": "Factory Coins Booster", + "tn": 2, }, - "value": 3103, + "value": 1375065, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Hi-Tech Parrot", - "pt": 2, + "id": "Exclusive Egg 48", }, - "value": 340, + "value": 393189, }, { "category": "Pet", "configData": { - "id": "Goldfish", + "id": "Ooze Corgi", }, - "value": 1051, + "value": 163743620, }, { "category": "Pet", "configData": { - "id": "Huge Mosaic Lamb", + "id": "Ooze Corgi", "pt": 2, }, - "value": 413466651, + "value": 16566644, }, { "category": "Pet", "configData": { - "id": "Unicorn Kitten", - "sh": true, + "id": "Huge Jelly Hydra", }, - "value": 814, + "value": 5103, }, { "category": "Pet", "configData": { - "id": "Mantis Shrimp", + "id": "Huge Jelly Hydra", + "pt": 1, }, - "value": 881, + "value": 2610, }, { "category": "Pet", "configData": { - "id": "Huge Poseidon Corgi", + "id": "Feral Beast", }, - "value": 37772535, + "value": 36137, }, { "category": "Pet", "configData": { - "id": "Dalmatian", - "sh": true, + "id": "Snuggle Beast", }, - "value": 4119, + "value": 62511, }, { "category": "Pet", "configData": { - "id": "Nightfall Tiger", + "id": "Spotted Elephant", + "sh": true, }, - "value": 8836586, + "value": 4132777, }, { "category": "Pet", "configData": { - "id": "Bleebo The Alien", + "id": "Ooze Corgi", "pt": 1, }, - "value": 168, + "value": 14283895, }, { "category": "Pet", "configData": { - "id": "Huge Hell Rock", + "id": "Spotted Elephant", + "pt": 1, + "sh": true, }, - "value": 38582264, + "value": 512238, }, { "category": "Pet", "configData": { - "id": "Fire Dog", - "pt": 2, + "id": "Claw Beast", }, - "value": 302, + "value": 14936, }, { "category": "Pet", "configData": { - "id": "Red Dragon", - "pt": 2, + "id": "Snuggle Beast", "sh": true, }, - "value": 84160, + "value": 1763, }, { "category": "Pet", "configData": { - "id": "Anime Monkey", + "id": "Huge Claw Beast", }, - "value": 5958218, + "value": 1401, }, { "category": "Pet", "configData": { - "id": "Anime Agony", + "id": "Feral Beast", + "pt": 2, }, - "value": 13006506, + "value": 2173, }, { "category": "Pet", "configData": { - "id": "Spitting Dino", - "sh": true, + "id": "Claw Beast", + "pt": 2, }, - "value": 12303, + "value": 855, }, { "category": "Pet", "configData": { - "id": "Leprechaun Cat", + "id": "Huge Snuggle Beast", }, - "value": 199, + "value": 5341, }, { "category": "Pet", "configData": { - "id": "Bison", + "id": "Snuggle Beast", "pt": 2, }, - "value": 324, + "value": 2966, }, { "category": "Pet", "configData": { - "id": "Mermaid Cat", + "id": "Feral Beast", + "sh": true, }, - "value": 651, + "value": 1152, }, { "category": "Pet", "configData": { - "id": "Huge Safari Cat", - "sh": true, + "id": "Titanic Warrior Beast", + "pt": 2, }, - "value": 1032282285, + "value": 14, }, { "category": "Pet", "configData": { - "id": "Demon", - "pt": 1, + "id": "Huge Snuggle Beast", + "sh": true, }, - "value": 79, + "value": 213, }, { "category": "Pet", "configData": { - "id": "Neon Dog", - "pt": 2, + "id": "Titanic Warrior Beast", }, - "value": 15594467, + "value": 343, }, { "category": "Pet", "configData": { - "id": "Horse", + "id": "Claw Beast", + "sh": true, }, - "value": 46, + "value": 633, }, { "category": "Pet", "configData": { - "id": "Mrs. Claws", + "id": "Spotted Elephant", + "pt": 2, + "sh": true, }, - "value": 167658, + "value": 582873, }, { "category": "Pet", "configData": { - "id": "Orange Axolotl", + "id": "Ooze Axolotl", + "pt": 1, "sh": true, }, - "value": 12354543, + "value": 209784, }, { "category": "Pet", "configData": { - "id": "Luau Cat", + "id": "Ooze Axolotl", + "sh": true, }, - "value": 788, + "value": 1635594, }, { "category": "Pet", "configData": { - "id": "Hologram Axolotl", + "id": "Snuggle Beast", "pt": 2, + "sh": true, }, - "value": 27361050, + "value": 118, }, { "category": "Pet", "configData": { - "id": "Narwhal", + "id": "Knight Slime", }, - "value": 725, + "value": 115186644, }, { "category": "Pet", "configData": { - "id": "Cheerful Yeti", + "id": "Ooze Axolotl", "pt": 2, + "sh": true, }, - "value": 83, + "value": 234500, }, { "category": "Pet", "configData": { - "id": "Hound of Hades", - "pt": 1, + "id": "Huge Jelly Hydra", + "sh": true, }, - "value": 614, + "value": 146, }, { "category": "Pet", "configData": { - "id": "Capybara", + "id": "Huge Jelly Hydra", "pt": 2, }, - "value": 30318103, + "value": 705, }, { "category": "Pet", "configData": { - "id": "Huge Pink Marshmallow Chick", + "id": "Knight Slime", "pt": 2, }, - "value": 5838899276, + "value": 15718611, }, { "category": "Pet", "configData": { - "id": "Mantis Shrimp", + "id": "Knight Slime", "pt": 1, }, - "value": 427, + "value": 10419495, }, { "category": "Pet", "configData": { - "id": "Atomic Axolotl", - "sh": true, + "id": "Huge Snuggle Beast", + "pt": 2, }, - "value": 480, + "value": 161, }, { "category": "Pet", "configData": { - "id": "Huge Electric Penguin", + "id": "Ooze Corgi", "pt": 1, "sh": true, }, - "value": 1421942795, + "value": 72216, }, { "category": "Pet", "configData": { - "id": "Cold Butterfly", - "pt": 2, + "id": "Bubble Cat", }, - "value": 1418, + "value": 5305597359, }, { "category": "Pet", "configData": { - "id": "Arctic Fox", - "sh": true, + "id": "Bubble Cat", + "pt": 2, }, - "value": 289, + "value": 2275232709, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Huge Shark", - "pt": 1, - "sh": true, + "id": "Factory Speed Booster", + "tn": 3, }, - "value": 1600000000, + "value": 71976, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Candycane", + "id": "Factory Damage Booster", + "tn": 3, }, - "value": 73489, + "value": 115282, }, { "category": "Pet", "configData": { - "id": "Cyber Bear", + "id": "Huge Jelly Hydra", "pt": 1, "sh": true, }, - "value": 7000, + "value": 24, }, { "category": "Pet", "configData": { - "id": "Astronaut Dog", + "id": "Feral Beast", "pt": 2, "sh": true, }, - "value": 500000, + "value": 71, }, { "category": "Pet", "configData": { - "id": "Spitting Dino", + "id": "Ooze Corgi", + "pt": 2, + "sh": true, }, - "value": 1119, + "value": 91427, }, { "category": "Pet", "configData": { - "id": "Fossil Dragon", + "id": "Jelly Butterfly", "pt": 2, }, - "value": 2038, + "value": 35516458, }, { "category": "Pet", "configData": { - "id": "Huge Tiedye Axolotl", + "id": "Knight Slime", "pt": 1, + "sh": true, }, - "value": 294472660, + "value": 53447, }, { "category": "Pet", "configData": { - "id": "Hooded Bobcat", + "id": "Huge Ooze Axolotl", }, - "value": 181, + "value": 269388, }, { "category": "Pet", "configData": { - "id": "Demon Serpents", + "id": "Bubble Cat", "pt": 1, }, - "value": 398, + "value": 803788340, }, { "category": "Pet", "configData": { - "id": "Huge Husky", + "id": "Ooze Corgi", "sh": true, }, - "value": 1085400074, + "value": 480546, }, { "category": "Pet", "configData": { - "id": "Circuit Griffin", + "id": "Huge Ooze Axolotl", "pt": 1, - "sh": true, }, - "value": 30, + "value": 54080, }, { "category": "Pet", "configData": { - "id": "Hyena", + "id": "Jelly Butterfly", }, - "value": 132, + "value": 85739722, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Bunny", - "pt": 1, + "id": "Gargantuan Royal Beast", }, - "value": 2698, + "value": 29, }, { "category": "Pet", "configData": { - "id": "Prince Donkey", + "id": "Jelly Butterfly", + "pt": 1, }, - "value": 624, + "value": 14185514, }, { "category": "Pet", "configData": { - "id": "Huge Nightfall Wolf", + "id": "Huge Claw Beast", + "sh": true, }, - "value": 119140281, + "value": 64, }, { "category": "Pet", "configData": { - "id": "Mermaid Cat", - "pt": 2, + "id": "Huge Jelly Butterfly", }, - "value": 782, + "value": 6736, }, { "category": "Pet", "configData": { - "id": "Huge Enchanted Deer", + "id": "Huge Ooze Axolotl", + "pt": 2, + "sh": true, }, - "value": 47050991, + "value": 91, }, { "category": "Pet", "configData": { - "id": "Luau Cat", - "pt": 1, + "id": "Knight Slime", + "pt": 2, + "sh": true, }, - "value": 262, + "value": 65851, }, { "category": "Pet", "configData": { - "id": "Huge Doodle Fairy", + "id": "Claw Beast", "pt": 2, + "sh": true, }, - "value": 478494713, + "value": 23, }, { "category": "Pet", "configData": { - "cv": 1, - "id": "Chroma Phoenix", - "pt": 2, + "id": "Jelly Hydra", }, - "value": 176881, + "value": 556576503, }, { "category": "Pet", "configData": { - "id": "Tiger", + "id": "Jelly Hydra", "pt": 2, }, - "value": 876, + "value": 1015721218, }, { "category": "Pet", "configData": { - "id": "Huge Chroma Lucki", + "id": "Knight Slime", "sh": true, }, - "value": 926351216, + "value": 365413, }, { "category": "Pet", "configData": { - "id": "Peppermint Angelus", - "pt": 2, + "id": "Bubble Cat", "sh": true, }, - "value": 201564195, + "value": 21265828, }, { "category": "Pet", "configData": { - "id": "Sketch Dragon", - "pt": 2, + "id": "Bubble Cat", + "pt": 1, "sh": true, }, - "value": 514843565, + "value": 4155659, }, { "category": "Pet", "configData": { - "id": "Huge Jolly Penguin", - "sh": true, + "id": "Huge Ooze Axolotl", + "pt": 2, }, - "value": 322696613, + "value": 10785, }, { "category": "Pet", "configData": { - "id": "Samurai Dragon", - "pt": 2, + "id": "Jelly Hydra", + "pt": 1, }, - "value": 406, + "value": 88934545, }, { "category": "Pet", "configData": { - "id": "Cosmic Dragon", + "id": "Bubble Cat", "pt": 2, + "sh": true, }, - "value": 14300803, + "value": 13431685, }, { "category": "Pet", "configData": { - "id": "Colorful Firefly", + "id": "Firegel Dragon", }, - "value": 2244, + "value": 25216333, }, { "category": "Pet", "configData": { - "id": "Huge Doodle Fairy", + "id": "Huge Knight Slime", }, - "value": 68416126, + "value": 6628, }, { "category": "Pet", "configData": { - "id": "Blimp Dragon", + "id": "Jelly Hydra", "pt": 1, + "sh": true, }, - "value": 4519, + "value": 486312, }, { "category": "Pet", "configData": { - "id": "Holiday Pegasus", - "pt": 2, + "id": "Jelly Butterfly", + "pt": 1, + "sh": true, }, - "value": 12710894, + "value": 176987, }, { "category": "Pet", "configData": { - "id": "Valkyrie Dog", - "pt": 2, + "id": "Jelly Wizard", }, - "value": 10064532, + "value": 18819910, }, { "category": "Pet", "configData": { - "id": "Jolly Cat", + "id": "Firegel Dragon", "pt": 1, }, - "value": 4080, + "value": 3309440, }, { "category": "Pet", "configData": { - "id": "Huge Robber Pug", + "id": "Jelly Wizard", "pt": 1, }, - "value": 40846502, + "value": 1414013, }, { "category": "Pet", "configData": { - "id": "Shadow Dominus", - "pt": 1, - "sh": true, + "id": "Firegel Dragon", + "pt": 2, }, - "value": 15000, + "value": 16824723, }, { "category": "Pet", "configData": { - "id": "Hacked Cat", - "pt": 1, + "id": "Huge Ooze Axolotl", "sh": true, }, - "value": 2000, + "value": 2124, }, { "category": "Pet", "configData": { - "id": "Hologram Tiger", + "id": "Jelly Wizard", "pt": 2, - "sh": true, }, - "value": 261900268, + "value": 1701777, }, { "category": "Pet", "configData": { - "id": "Comet Pony", + "id": "Jelly Butterfly", "pt": 2, + "sh": true, }, - "value": 47956, + "value": 438023, }, { "category": "Pet", "configData": { - "id": "Sailor Seal", + "id": "Jelly Butterfly", + "sh": true, }, - "value": 31, + "value": 423585, }, { "category": "Pet", "configData": { - "id": "Hell Spider", + "id": "Huge Claw Beast", "pt": 2, }, - "value": 505, + "value": 33, }, { "category": "Pet", "configData": { - "id": "Gorilla", + "id": "Huge Snuggle Beast", "pt": 2, + "sh": true, }, - "value": 1226, + "value": 11, }, { "category": "Pet", "configData": { - "id": "Dolphin", - "pt": 1, - "sh": true, + "id": "Huge Ooze Corgi", }, - "value": 1000, + "value": 3846, }, { "category": "Pet", "configData": { - "id": "Husky", + "id": "Jelly Hydra", "sh": true, }, - "value": 4041, + "value": 2003613, }, { "category": "Pet", "configData": { - "id": "Gazelle", + "id": "Jelly Hydra", "pt": 2, + "sh": true, }, - "value": 2671, + "value": 4306467, }, { "category": "Pet", "configData": { - "id": "Huge Squirrel", - "pt": 2, + "id": "Huge Ooze Axolotl", + "pt": 1, "sh": true, }, - "value": 1511800012, + "value": 439, }, { "category": "Pet", "configData": { - "id": "Huge Floppa", + "id": "Gargantuan Royal Beast", + "pt": 2, }, - "value": 128753282, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Basketball Retriever", + "id": "Huge Knight Slime", "pt": 1, }, - "value": 923, + "value": 1351, }, { "category": "Pet", "configData": { - "id": "Scuba Dog", - "sh": true, + "id": "Huge Ooze Corgi", + "pt": 1, }, - "value": 481, + "value": 448, }, { "category": "Pet", "configData": { - "id": "Huge Fancy Axolotl", + "id": "Huge Knight Slime", "pt": 2, }, - "value": 68702078, + "value": 272, }, { "category": "Pet", "configData": { - "id": "Snow Cat", - "pt": 2, + "id": "Huge Jelly Butterfly", + "pt": 1, }, - "value": 657, + "value": 1334, }, { "category": "Pet", "configData": { - "id": "Scorpion", - "pt": 2, + "id": "Huge Knight Slime", + "sh": true, }, - "value": 737, + "value": 41, }, { "category": "Pet", "configData": { - "id": "Samurai Bull", + "id": "Huge Ooze Corgi", + "pt": 2, }, - "value": 3242, + "value": 436, }, { "category": "Pet", "configData": { - "id": "Rave Cat", + "id": "Firegel Dragon", "pt": 1, "sh": true, }, - "value": 548, + "value": 48004, }, { "category": "Pet", "configData": { - "id": "Huge Sailor Shark", - "sh": true, + "id": "Huge Jelly Butterfly", + "pt": 2, }, - "value": 3183265292, + "value": 267, }, { "category": "Pet", "configData": { - "id": "Huge Leprechaun Cat", + "id": "Huge Ooze Corgi", "pt": 2, + "sh": true, }, - "value": 299966130, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Present Dragon", - "pt": 1, + "id": "Huge Jelly Butterfly", + "sh": true, }, - "value": 3174182, + "value": 57, }, { "category": "Pet", "configData": { - "id": "Nightmare Kraken", + "id": "Huge Jelly Hydra", "pt": 2, + "sh": true, }, - "value": 31346929, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Valkyrie Dragon", - "sh": true, + "id": "Titanic Firegel Dragon", }, - "value": 12201076, + "value": 335, }, { "category": "Pet", "configData": { - "id": "Huge Vampire Bat", + "id": "Titanic Warrior Beast", "sh": true, }, - "value": 612237598, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Blue Fish", + "id": "Huge Ooze Corgi", + "sh": true, }, - "value": 2401, + "value": 78, }, { "category": "Pet", "configData": { - "id": "Hell Monkey", + "id": "Huge Jelly Butterfly", "pt": 2, "sh": true, }, - "value": 1137, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Snow Ram", + "id": "Titanic Firegel Dragon", "pt": 1, }, - "value": 76, + "value": 64, }, { "category": "Pet", "configData": { - "id": "Huge Sun Angelus", - "pt": 1, + "id": "Titanic Firegel Dragon", + "pt": 2, }, - "value": 352407371, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Potion Poodle", + "id": "Firegel Dragon", "pt": 2, + "sh": true, }, - "value": 205, + "value": 658437, }, { "category": "Pet", "configData": { - "id": "Huge Reindeer Axolotl", + "id": "Huge Jelly Butterfly", + "pt": 1, + "sh": true, }, - "value": 279507889, + "value": 11, }, { "category": "Pet", "configData": { - "id": "Huge Emoji Cat", + "id": "Huge Knight Slime", + "pt": 1, "sh": true, }, - "value": 488038240, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Angel Lamb", - "pt": 2, + "id": "Firegel Dragon", "sh": true, }, - "value": 149999, + "value": 115027, }, { "category": "Pet", "configData": { - "id": "Platypus", - "pt": 2, + "id": "Huge Ooze Corgi", + "pt": 1, + "sh": true, }, - "value": 41897, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Fox", + "id": "Titanic Firegel Dragon", "pt": 1, + "sh": true, }, - "value": 229, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Fairy", + "id": "Jelly Wizard", + "pt": 1, "sh": true, }, - "value": 633, + "value": 9998, }, { "category": "Pet", "configData": { - "id": "Huge Sun Angelus", - "pt": 2, + "id": "Huge Bobcat", + "pt": 1, + "sh": true, }, - "value": 1486280982, + "value": 16, }, { "category": "Pet", "configData": { - "id": "Snowman", - "pt": 2, + "id": "Huge Lightning Bat", + "pt": 1, + "sh": true, }, - "value": 361, + "value": 55, }, { "category": "Pet", "configData": { - "id": "Crystal Dog", + "id": "Titanic Firegel Dragon", "sh": true, }, - "value": 5269109, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Rave Troll", - "pt": 1, + "id": "Jelly Wizard", + "pt": 2, "sh": true, }, - "value": 720, + "value": 8718, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Huge Knight Beagle", - "pt": 2, + "id": "Jelly", }, - "value": 85191821, + "value": 28302, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Pop Cat", - "pt": 2, + "id": "Slime Token", }, - "value": 77782280, + "value": 10982150449, }, { "category": "Pet", "configData": { - "id": "Silver Bison", - "pt": 1, + "id": "Jelly Kitsune", }, - "value": 522, + "value": 10717740, }, { "category": "Pet", "configData": { - "id": "Huge Exquisite Parrot", + "id": "Sticky Lamb", + "pt": 2, }, - "value": 65034144, + "value": 8464089, }, { "category": "Pet", "configData": { - "id": "Huge Turtle", - "pt": 2, + "id": "Bubble Hydra", }, - "value": 1066353763, + "value": 1441778049, }, { "category": "Pet", "configData": { - "id": "Huge Cupid Corgi", + "id": "Bubble Hydra", + "pt": 2, }, - "value": 62363461, + "value": 477028353, }, { "category": "Pet", "configData": { - "id": "Hydra", - "sh": true, + "id": "Bubble Hydra", + "pt": 1, }, - "value": 3205, + "value": 197207162, }, { "category": "Pet", "configData": { - "id": "Keyboard Cat", + "id": "Bubble Hydra", + "pt": 2, + "sh": true, }, - "value": 3914904, + "value": 5553667, }, { "category": "Pet", "configData": { - "id": "Frost Bear", - "pt": 2, + "id": "Sticky Lamb", }, - "value": 766, + "value": 26762079, }, { "category": "Pet", "configData": { - "id": "Glitched Phoenix", + "id": "Sticky Lamb", "pt": 1, }, - "value": 6857, + "value": 4381935, }, { "category": "Pet", "configData": { - "id": "Colorful Wisp", - "pt": 2, + "id": "Jelly Kitsune", + "pt": 1, }, - "value": 564, + "value": 2038090, }, { "category": "Pet", "configData": { - "id": "Shadow Griffin", + "id": "Jelly Kitsune", + "pt": 2, }, - "value": 4354, + "value": 4293075, }, { "category": "Pet", "configData": { - "id": "Cloud Penguin", + "id": "Bubble Hydra", "sh": true, }, - "value": 4140, + "value": 6324846, }, { "category": "Pet", "configData": { - "id": "Brain", - "pt": 1, - "sh": true, + "id": "Ooze Cat", }, - "value": 2000, + "value": 9486137, }, { "category": "Pet", "configData": { - "id": "Nightmare Spirit", - "sh": true, + "id": "Nightmare Sludge", }, - "value": 7363063, + "value": 220320, }, { "category": "Pet", "configData": { - "id": "Huge Elf Dog", - "sh": true, + "id": "Huge Bubble Hydra", }, - "value": 355663226, + "value": 3237, }, { "category": "Pet", "configData": { - "id": "Huge Bee", - "sh": true, + "id": "Rave Slime", }, - "value": 192605809, + "value": 6050106, }, { "category": "Pet", "configData": { - "id": "Tech Goat", - "pt": 2, + "id": "Bubble Hydra", + "pt": 1, + "sh": true, }, - "value": 2531, + "value": 1407626, }, { "category": "Pet", "configData": { - "id": "Fire Cat", + "id": "Huge Bubble Hydra", + "pt": 1, }, - "value": 868, + "value": 1722, }, { "category": "Pet", "configData": { - "id": "Huge Corrupt Butterfly", - "pt": 1, - "sh": true, + "id": "Ooze Cat", + "pt": 2, }, - "value": 192866677, + "value": 3495303, }, { "category": "Pet", "configData": { - "id": "Huge Exquisite Parrot", + "id": "Rave Slime", "pt": 2, }, - "value": 668582867, + "value": 1412851, }, { "category": "Pet", "configData": { - "id": "Narwhal", + "id": "Ooze Cat", "pt": 1, }, - "value": 984294, + "value": 1294686, }, { "category": "Pet", "configData": { - "id": "Coin", + "id": "Ooze Cat", + "sh": true, }, - "value": 5520555222, + "value": 25045, }, { "category": "Pet", "configData": { - "id": "Rift Dragon", - "sh": true, + "id": "Huge Slimezilla", }, - "value": 7174415, + "value": 28981, }, { "category": "Pet", "configData": { - "id": "Huge Jolly Penguin", + "id": "Rave Slime", "pt": 1, - "sh": true, }, - "value": 893258318, + "value": 773338, }, { "category": "Pet", "configData": { - "id": "Mosaic Elephant", - "sh": true, + "id": "Huge Jelly Kitsune", }, - "value": 11695201, + "value": 28566, }, { "category": "Pet", "configData": { - "id": "Celestial Dragon", + "id": "Huge Bubble Hydra", + "sh": true, }, - "value": 11332477, + "value": 93, }, { "category": "Pet", "configData": { - "id": "Turtle", + "id": "Huge Jelly Kitsune", + "pt": 2, "sh": true, }, - "value": 6517, + "value": 15, }, { "category": "Pet", "configData": { - "id": "Huge Goblin", + "id": "Huge Bubble Hydra", "pt": 2, }, - "value": 234678971, + "value": 483, }, { "category": "Pet", "configData": { - "id": "Hedgehog", + "id": "Ooze Cat", "pt": 1, "sh": true, }, - "value": 75000, + "value": 7956, }, { "category": "Pet", "configData": { - "id": "Hamster", + "id": "Nightmare Sludge", "pt": 1, }, - "value": 267, + "value": 38839, }, { "category": "Pet", "configData": { - "id": "Sailor Dolphin", + "id": "Sticky Lamb", + "pt": 2, + "sh": true, }, - "value": 303, + "value": 59514, }, { "category": "Pet", "configData": { - "id": "Huge Festive Cat", + "id": "Sticky Lamb", + "sh": true, }, - "value": 75618475, + "value": 150471, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Rock Dragon", - "pt": 2, + "id": "Slime Gift", }, - "value": 1031, + "value": 1316258035, }, { "category": "Pet", "configData": { - "id": "Huge Skeleton", - "pt": 1, + "id": "Jelly Wizard", + "sh": true, }, - "value": 99087159, + "value": 55844, }, { "category": "Pet", "configData": { - "id": "Huge Knife Cat", + "id": "Rave Slime", + "pt": 2, "sh": true, }, - "value": 456692460, + "value": 50093, }, { "category": "Pet", "configData": { - "id": "Huge Emoji Cat", + "id": "Nightmare Sludge", + "pt": 2, }, - "value": 106451625, + "value": 39890, }, { "category": "Pet", "configData": { - "id": "Relic Dragon", - "pt": 2, - "sh": true, + "id": "Huge Slimezilla", + "pt": 1, }, - "value": 79000, + "value": 5876, }, { "category": "Pet", "configData": { - "id": "Alien Parasite", + "id": "Huge Sticky Lamb", "pt": 1, }, - "value": 1024, + "value": 28797, }, { "category": "Pet", "configData": { - "id": "Sketch Cow", - "pt": 2, + "id": "Sticky Lamb", + "pt": 1, "sh": true, }, - "value": 429022691, + "value": 48144, }, { "category": "Pet", "configData": { - "id": "Kangaroo", - "pt": 2, + "id": "Jelly Kitsune", + "pt": 1, + "sh": true, }, - "value": 1206, + "value": 34754, }, { "category": "Pet", "configData": { - "id": "Jellyfish", + "id": "Rave Slime", "sh": true, }, - "value": 71613, + "value": 25026, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Ladybug", + "id": "Huge Jelly Kitsune", "pt": 1, }, - "value": 822, + "value": 5782, }, { "category": "Pet", "configData": { - "id": "Flamingo", + "id": "Jelly Kitsune", "sh": true, }, - "value": 74393, + "value": 71494, }, { "category": "Pet", "configData": { - "id": "Ronin Panda", - "pt": 2, + "id": "Slimezilla", }, - "value": 424, + "value": 30150, }, { "category": "Pet", "configData": { - "id": "Dino", - "pt": 1, - "sh": true, + "id": "Huge Jelly Kitsune", + "pt": 2, }, - "value": 8599, + "value": 1149, }, { "category": "Pet", "configData": { - "id": "Hell Spider", + "id": "Jelly Kitsune", + "pt": 2, + "sh": true, }, - "value": 117, + "value": 35295, }, { "category": "Pet", "configData": { - "id": "Snowman", + "id": "Ooze Cat", + "pt": 2, "sh": true, }, - "value": 282, + "value": 15439, }, { "category": "Pet", "configData": { - "id": "Mosaic Griffin", + "id": "Huge Ooze Cat", + "pt": 1, }, - "value": 5880443, + "value": 40602, }, { "category": "Pet", "configData": { - "id": "Shadow Kraken", + "id": "Huge Spotted Elephant", }, - "value": 1427, + "value": 274191, }, { "category": "Pet", "configData": { - "id": "Cyborg Bunny", - "pt": 1, - "sh": true, + "id": "Huge Sticky Lamb", }, - "value": 20000, + "value": 142853, }, { "category": "Pet", "configData": { - "id": "Ninja Turtle", - "pt": 1, - "sh": true, + "id": "Huge Slimezilla", + "pt": 2, }, - "value": 446, + "value": 1207, }, { "category": "Pet", "configData": { - "id": "Gummy Raccoon", + "id": "Rave Slime", "pt": 1, + "sh": true, }, - "value": 716, + "value": 12305, }, { "category": "Pet", "configData": { - "id": "Froggy", + "id": "Slimezilla", + "pt": 1, }, - "value": 185, + "value": 3656, }, { "category": "Pet", "configData": { - "id": "Snowflake Dominus", - "sh": true, + "id": "Slimezilla", + "pt": 2, }, - "value": 896, + "value": 4027, }, { "category": "Pet", "configData": { - "id": "Ice Cream Cone", + "id": "Huge Rave Slime", }, - "value": 6710803, + "value": 12410, }, { "category": "Pet", "configData": { - "id": "Cyber Raccoon", + "id": "Huge Bubble Hydra", + "pt": 2, + "sh": true, }, - "value": 17252, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Flamortuus", + "id": "Huge Ooze Cat", }, - "value": 366, + "value": 202603, }, { "category": "Pet", "configData": { - "id": "Ender Bunny", + "id": "Huge Spotted Elephant", "pt": 1, - "sh": true, }, - "value": 1655, + "value": 55476, }, { "category": "Pet", "configData": { - "id": "Unicorn Dragon", - "pt": 2, + "id": "Huge Bubble Hydra", + "pt": 1, "sh": true, }, - "value": 975480332, + "value": 29, }, { "category": "Pet", "configData": { - "id": "Poseidon Corgi", - "pt": 1, + "id": "Huge Slimezilla", + "sh": true, }, - "value": 232, + "value": 212, }, { "category": "Pet", "configData": { - "id": "Chicken", + "id": "Huge Spotted Elephant", + "pt": 2, }, - "value": 150, + "value": 11029, }, { "category": "Pet", "configData": { - "id": "Runic Wolf", + "id": "Huge Ooze Cat", "sh": true, }, - "value": 10553, + "value": 1682, }, { "category": "Pet", "configData": { - "id": "Hot Air Balloon Dog", + "id": "Huge Rave Slime", "pt": 1, }, - "value": 171, + "value": 810, }, { "category": "Pet", "configData": { - "id": "Sleipnir", + "id": "Huge Ooze Cat", "pt": 2, }, - "value": 52785951, + "value": 8028, }, { "category": "Pet", "configData": { - "id": "Cyborg Dog", - "pt": 2, + "id": "Huge Ooze Cat", + "pt": 1, + "sh": true, }, - "value": 1768, + "value": 333, }, { "category": "Pet", "configData": { - "id": "Pirate Parrot", - "pt": 1, - "sh": true, + "id": "Huge Sticky Lamb", + "pt": 2, }, - "value": 667, + "value": 5777, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Spider", - "pt": 2, - "sh": true, + "id": "Titanic Ooze Cat", }, - "value": 235800, + "value": 1407, }, { "category": "Pet", "configData": { - "id": "Bee", - "pt": 2, + "id": "Huge Spotted Elephant", + "sh": true, }, - "value": 155, + "value": 2164, }, { "category": "Pet", "configData": { - "id": "Prison Dog", - "pt": 2, + "id": "Huge Rave Slime", + "sh": true, }, - "value": 280, + "value": 256, }, { "category": "Pet", "configData": { - "id": "Dino", + "id": "Huge Jelly Kitsune", + "sh": true, }, - "value": 181, + "value": 239, }, { "category": "Pet", "configData": { - "id": "Huge Party Dog", - "pt": 1, + "id": "Huge Sticky Lamb", + "sh": true, }, - "value": 206054468, + "value": 1118, }, { "category": "Pet", "configData": { - "id": "Huge Evolved Hell Rock", + "id": "Huge Rave Slime", "pt": 2, }, - "value": 373241553, + "value": 485, }, { "category": "Pet", "configData": { - "id": "Lunar Deer", - "sh": true, + "id": "Titanic Jelly Kitsune", }, - "value": 3000, + "value": 751, }, { "category": "Pet", "configData": { - "id": "Bat", - "pt": 2, + "id": "Titanic Jelly Kitsune", + "pt": 1, + "sh": true, }, - "value": 519, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Huge Mushroom Raccoon", + "id": "Titanic Ooze Cat", + "pt": 1, }, - "value": 36780838, + "value": 279, }, { "category": "Pet", "configData": { - "id": "Huge Green Balloon Cat", + "id": "Titanic Ooze Cat", "pt": 2, }, - "value": 982447986, + "value": 67, }, { "category": "Pet", "configData": { - "id": "Cowboy Dog", + "id": "Huge Spotted Elephant", + "pt": 1, + "sh": true, }, - "value": 283, + "value": 465, }, { "category": "Pet", "configData": { - "id": "Blossom Squirrel", + "id": "Huge Sticky Lamb", "pt": 1, + "sh": true, }, - "value": 320, + "value": 221, }, { "category": "Pet", "configData": { - "id": "Nightfall Ram", + "id": "Titanic Ooze Cat", + "sh": true, }, - "value": 9738130, + "value": 13, }, { "category": "Pet", "configData": { - "id": "Jaguar", + "id": "Huge Slimezilla", "pt": 1, + "sh": true, }, - "value": 415, + "value": 50, }, { "category": "Pet", "configData": { - "id": "Atomic Monkey", + "id": "Huge Ooze Cat", "pt": 2, "sh": true, }, - "value": 5823604, + "value": 73, }, { "category": "Pet", "configData": { - "id": "Electric Penguin", + "id": "Huge Jelly Kitsune", "pt": 1, "sh": true, }, - "value": 14673, + "value": 46, }, { "category": "Pet", "configData": { - "id": "Ugly Duckling", + "id": "Titanic Parrot", + "pt": 2, }, - "value": 127, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Hydra Axolotl", + "id": "Titanic Jelly Kitsune", + "pt": 1, }, - "value": 475, + "value": 155, }, { "category": "Pet", "configData": { - "id": "Hooded Dragon", + "id": "Titanic Jelly Kitsune", "pt": 2, }, - "value": 1285378, + "value": 33, }, { "category": "Pet", "configData": { - "id": "Rose Butterfly", + "id": "Huge Sticky Lamb", "pt": 2, + "sh": true, }, - "value": 1040, + "value": 56, }, { "category": "Pet", "configData": { - "id": "Penguin", - "pt": 2, + "id": "Titanic Jelly Kitsune", + "sh": true, }, - "value": 605, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Hacker Cat", + "id": "Huge Rave Slime", + "pt": 1, "sh": true, }, - "value": 17239, + "value": 15, }, { "category": "Pet", "configData": { - "id": "Hydra Dino", + "id": "Nightmare Sludge", "pt": 1, + "sh": true, }, - "value": 30050, + "value": 483, }, { "category": "Pet", "configData": { - "id": "Huge Chroma Lucki", + "id": "Huge Jelly Wizard", }, - "value": 75526720, + "value": 9220, }, { "category": "Pet", "configData": { - "id": "Angel Seal", + "id": "Titanic Jelly Wizard", }, - "value": 832, + "value": 957, }, { "category": "Pet", "configData": { - "id": "Tech Griffin", - "pt": 1, + "id": "Huge Jelly Wizard", + "pt": 2, }, - "value": 335, + "value": 496, }, { "category": "Pet", "configData": { - "id": "Celestial Dragon", + "id": "Huge Spotted Elephant", + "pt": 2, "sh": true, }, - "value": 32593693, + "value": 104, }, { "category": "Pet", "configData": { - "id": "Poseidon Corgi", - "pt": 2, + "id": "Huge Jelly Wizard", + "sh": true, }, - "value": 2441, + "value": 150, }, { "category": "Pet", "configData": { - "id": "Huge Ghost", + "id": "Titanic Jelly Wizard", + "pt": 2, }, - "value": 40837473, + "value": 30, }, { "category": "Pet", "configData": { - "id": "Atomic Axolotl", - "pt": 1, + "id": "Titanic Jelly Wizard", + "pt": 2, + "sh": true, }, - "value": 2126, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Bison", - "pt": 1, + "id": "Huge Jelly Wizard", + "pt": 2, + "sh": true, }, - "value": 355, + "value": 50, }, { "category": "Pet", "configData": { - "id": "Fossil Dragon", - "pt": 1, + "id": "Titanic Jelly Wizard", + "sh": true, }, - "value": 774, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Lucky Cat", + "id": "Huge Slimezilla", + "pt": 2, + "sh": true, }, - "value": 14881897, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Huge Ghost", + "id": "Huge Rave Slime", "pt": 2, + "sh": true, }, - "value": 284167164, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Seal", - "pt": 1, + "id": "Nightmare Sludge", + "pt": 2, + "sh": true, }, - "value": 335, + "value": 53, }, { "category": "Pet", "configData": { - "id": "Soul Dragon", + "id": "Nightmare Sludge", "sh": true, }, - "value": 23042757, + "value": 18, }, { "category": "Pet", "configData": { - "id": "Nightfall Pegasus", - "pt": 2, + "id": "Titanic Ooze Cat", + "pt": 1, + "sh": true, }, - "value": 45068445, + "value": 2, }, { - "category": "Pet", + "category": "Currency", "configData": { - "id": "Relic Cyclops", - "pt": 2, + "id": "EasterCoins", }, - "value": 395, + "value": 11601430536792388, }, { "category": "Pet", "configData": { - "id": "Bison", + "id": "Easter Cat", }, - "value": 2022, + "value": 104065478, }, { "category": "Pet", "configData": { - "id": "Frost Dragon", - "pt": 2, - "sh": true, + "id": "Easter Fox", }, - "value": 62000, + "value": 60124958, }, { "category": "Pet", "configData": { - "id": "Three Headed Dragon", + "id": "Easter Cat", + "pt": 1, }, - "value": 287, + "value": 9273415, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Chocolate Bunny", - "pt": 2, + "id": "Lucky Easter Egg", }, - "value": 703, + "value": 2562170649, }, { "category": "Pet", "configData": { - "id": "Rhino", - "pt": 1, + "id": "Easter Fox", + "pt": 2, }, - "value": 1362, + "value": 4710815, }, { "category": "Pet", "configData": { - "id": "Huge Old Wizard Corgi", + "id": "Easter Fox", "pt": 1, }, - "value": 922274553, + "value": 6321948, }, { "category": "Pet", "configData": { - "id": "Huge Atlantean Dolphin", + "id": "Easter Cat", "pt": 2, }, - "value": 1787124682, + "value": 6543872, }, { "category": "Pet", "configData": { - "id": "Huge Tiedye Corgi", - "pt": 1, - "sh": true, + "id": "Easter Lamb", }, - "value": 6724977635, + "value": 47401005, }, { "category": "Pet", "configData": { - "id": "Blueberry Cow", - "sh": true, + "id": "Easter Lamb", + "pt": 2, }, - "value": 9527027, + "value": 3528623, }, { "category": "Pet", "configData": { - "id": "Rock Dragon", + "id": "Easter Lamb", + "pt": 1, }, - "value": 3211, + "value": 4375767, }, { "category": "Pet", "configData": { - "id": "Alien Octopus", + "id": "Huge Easter Agony", + "pt": 1, }, - "value": 158, + "value": 3546, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Fragmented Dominus", - "sh": true, + "id": "Easter Diamond Egg Booster", + "tn": 1, }, - "value": 81, + "value": 775412, }, { "category": "Pet", "configData": { - "id": "Soul Bat", - "pt": 2, - "sh": true, + "id": "Basket Bunny", }, - "value": 1824911225, + "value": 84531116, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Titanic Cosmic Pegasus", + "id": "Exclusive Egg 49", }, - "value": 15019766396, + "value": 1209383, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Old Wizard Corgi", - "pt": 2, + "id": "Exclusive Raffle Ticket", }, - "value": 662400001, + "value": 52748447, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Agony", + "id": "MVP Key Upper Half", }, - "value": 200, + "value": 240792810, }, { "category": "Pet", "configData": { - "id": "Huge Anime Unicorn", + "id": "Huge Sea Dragon", + "pt": 1, }, - "value": 152583372, + "value": 10963, }, { "category": "Pet", "configData": { - "id": "Guilded Raven", - "pt": 1, + "id": "Huge Sea Dragon", }, - "value": 116, + "value": 35089, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Hi-Tech Parrot", + "id": "MVP Key Lower Half", }, - "value": 678, + "value": 397993174, }, { "category": "Pet", "configData": { - "id": "Super Cat", + "id": "Easter Cat", "sh": true, }, - "value": 20000000000, + "value": 270284, }, { "category": "Pet", "configData": { - "id": "Huge Pastel Sock Dragon", - "pt": 1, + "id": "Easter Cat", + "pt": 2, + "sh": true, }, - "value": 579232751, + "value": 41745, }, { "category": "Pet", "configData": { - "id": "Cyber Slime", + "id": "Easter Lamb", + "pt": 1, + "sh": true, }, - "value": 329, + "value": 30427, }, { "category": "Pet", "configData": { - "id": "Huge Super Corgi", + "id": "Huge Easter Agony", }, - "value": 112187834, + "value": 7246, }, { "category": "Pet", "configData": { - "id": "Squirrel", + "id": "Easter Cat", + "pt": 1, "sh": true, }, - "value": 1493, + "value": 48187, }, { "category": "Pet", "configData": { - "id": "Fire Horse", - "pt": 1, + "id": "Basket Bunny", + "pt": 2, }, - "value": 46, + "value": 6353799, }, { "category": "Pet", "configData": { - "id": "Huge Rave Jaguar", + "id": "Basket Bunny", "pt": 1, }, - "value": 45051274, + "value": 6906052, }, { "category": "Pet", "configData": { - "id": "Huge Shark", - "pt": 1, + "id": "Easter Fox", + "pt": 2, + "sh": true, }, - "value": 368535359, + "value": 27790, }, { "category": "Pet", "configData": { - "id": "UV Kitsune", + "id": "Easter Fox", + "sh": true, }, - "value": 588, + "value": 141314, }, { "category": "Pet", "configData": { - "id": "Alien Arachnid", + "id": "Marshmallow Kitsune", "pt": 1, }, - "value": 3634, + "value": 25483266416, }, { "category": "Pet", "configData": { - "id": "Playful Seal", + "id": "Easter Lamb", "sh": true, }, - "value": 658944, + "value": 122689, }, { "category": "Pet", "configData": { - "id": "Deer", + "id": "Marshmallow Kitsune", + "pt": 2, + }, + "value": 46077048953, + }, + { + "category": "Pet", + "configData": { + "id": "Marshmallow Kitsune", + }, + "value": 256905051601, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Fox", "pt": 1, + "sh": true, }, - "value": 427, + "value": 44053, }, { "category": "Pet", "configData": { - "id": "Fawn", + "id": "Patchwork Yeti", }, - "value": 1297, + "value": 77300, }, { "category": "Pet", "configData": { - "id": "Armadillo", - "pt": 2, + "id": "Patchwork Bunny", }, - "value": 137, + "value": 125280, }, { "category": "Pet", "configData": { - "id": "Good vs Evil Cat", + "id": "Patchwork Bunny", "pt": 2, - "sh": true, }, - "value": 540000, + "value": 5839, }, { "category": "Pet", "configData": { - "id": "Huge Bison", + "id": "Easter Lamb", + "pt": 2, "sh": true, }, - "value": 79579309, + "value": 19794, }, { "category": "Pet", "configData": { - "id": "Lion", - "pt": 2, + "id": "Huge Patchwork Bunny", }, - "value": 219, + "value": 16400, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Sad Doge", + "id": "MVP Key", }, - "value": 124371467, + "value": 209349562, }, { "category": "Pet", "configData": { - "id": "Lamb", + "id": "Easter Agony", "pt": 1, }, - "value": 2034, + "value": 902830081, }, { "category": "Pet", "configData": { - "id": "A-36", + "id": "Huge Easter Agony", + "pt": 2, }, - "value": 2060, + "value": 938, }, { "category": "Pet", "configData": { - "id": "Shadow Panther", - "sh": true, + "id": "Patchwork Teddy Bear", }, - "value": 80, + "value": 31499, }, { "category": "Pet", "configData": { - "id": "Scarecrow Cat", - "pt": 1, + "id": "Patchwork Bunny", + "sh": true, }, - "value": 43, + "value": 3559, }, { "category": "Pet", "configData": { - "id": "Tiedye Griffin", + "id": "Patchwork Yeti", + "pt": 2, }, - "value": 4489161, + "value": 4068, }, { "category": "Pet", "configData": { - "id": "Huge Jelly Corgi", - "sh": true, + "id": "Easter Agony", }, - "value": 900997461, + "value": 7555992956, }, { "category": "Pet", "configData": { - "id": "Atlantean Dolphin", + "id": "Diamond Bunny", + "pt": 1, }, - "value": 9573948, + "value": 145900136, }, { "category": "Pet", "configData": { - "id": "Pirate Panda", - "pt": 1, + "id": "Diamond Bunny", }, - "value": 87, + "value": 2838007840, }, { "category": "Pet", "configData": { - "id": "Sapphire Carbuncle", - "pt": 2, + "id": "Basket Bunny", + "sh": true, }, - "value": 796, + "value": 283805, }, { "category": "Pet", "configData": { - "id": "Detective Terrier", - "pt": 2, + "id": "Patchwork Yeti", + "sh": true, }, - "value": 6399, + "value": 2648, }, { "category": "Pet", "configData": { - "id": "Cyborg Cat", + "id": "Basket Bunny", + "pt": 2, + "sh": true, }, - "value": 138, + "value": 31846, }, { "category": "Pet", "configData": { - "id": "Nightfall Tiger", + "id": "Basket Bunny", "pt": 1, + "sh": true, }, - "value": 10365372, + "value": 50138, }, { "category": "Pet", "configData": { - "id": "Classic Dog", + "id": "Marshmallow Kitsune", "pt": 2, "sh": true, }, - "value": 87011869, + "value": 281938498, }, { "category": "Pet", "configData": { - "id": "Huge Evolved Cupcake", + "id": "The Easter Bunny", }, - "value": 184041540, + "value": 1910761041, }, { "category": "Pet", "configData": { - "id": "Huge Tiki Dominus", + "id": "Easter Agony", + "pt": 2, }, - "value": 516731369, + "value": 1563235995, }, { "category": "Pet", "configData": { - "id": "Abyssal Dolphin", - "pt": 1, - "sh": true, + "id": "The Easter Bunny", + "pt": 2, }, - "value": 1000, + "value": 400179963, }, { "category": "Pet", "configData": { - "id": "Huge Hacker Axolotl", + "id": "The Easter Bunny", + "pt": 1, }, - "value": 45985786, + "value": 227191570, }, { "category": "Pet", "configData": { - "id": "Tiedye Dragon", - "pt": 1, - "sh": true, + "id": "Diamond Bunny", + "pt": 2, }, - "value": 182935066, + "value": 85804198, }, { "category": "Pet", "configData": { - "id": "Snow Leopard", - "pt": 2, + "id": "Patchwork Teddy Bear", + "sh": true, }, - "value": 818, + "value": 1279, }, { "category": "Pet", "configData": { - "id": "Huge Hacked Cat", - "pt": 1, + "id": "Diamond Bunny", + "sh": true, }, - "value": 91688007, + "value": 4278168, }, { "category": "Pet", "configData": { - "id": "Exquisite Cat", + "id": "Diamond Bunny", "pt": 1, "sh": true, }, - "value": 145918177, + "value": 272030, }, { "category": "Pet", "configData": { - "id": "Huge Cupid Corgi", - "pt": 1, + "id": "Diamond Bunny", + "pt": 2, + "sh": true, }, - "value": 66451960, + "value": 168237, }, { "category": "Pet", "configData": { - "id": "Stealth Dragon", + "id": "Marshmallow Kitsune", "sh": true, }, - "value": 18330910, + "value": 1017280346, }, { "category": "Pet", "configData": { - "id": "Huge Evolved Pixel Cat", + "id": "Marshmallow Kitsune", + "pt": 1, "sh": true, }, - "value": 17044298671, + "value": 121364624, }, { "category": "Pet", "configData": { - "id": "Huge Stealth Dragon", + "id": "Patchwork Teddy Bear", "pt": 2, }, - "value": 577628831, + "value": 1822, }, { "category": "Pet", "configData": { - "id": "Frostbyte Snow Ram", - "pt": 2, + "id": "Huge Patchwork Bunny", + "sh": true, }, - "value": 521, + "value": 667, }, { "category": "Pet", "configData": { - "id": "Frostbyte Walrus", - "pt": 1, + "id": "Huge Patchwork Teddy Bear", }, - "value": 1392, + "value": 4209, }, { "category": "Pet", "configData": { - "id": "Quantum Bunny", - "pt": 2, + "id": "Huge Easter Agony", "sh": true, }, - "value": 80000, + "value": 217, }, { "category": "Pet", "configData": { - "id": "Sabretooth Tiger", - "pt": 2, + "id": "Titanic Patchwork Capybara", }, - "value": 341, + "value": 1064, }, { "category": "Pet", "configData": { - "id": "Enchanted Elephant", - "pt": 1, + "id": "Huge Sea Dragon", + "pt": 2, }, - "value": 244, + "value": 2722, }, { "category": "Pet", "configData": { - "id": "Painted King Crab", + "id": "Titanic Sea Dragon", "pt": 1, "sh": true, }, - "value": 13400, + "value": 13, }, { "category": "Pet", "configData": { - "id": "Walrus", - "sh": true, + "id": "Titanic Sea Dragon", }, - "value": 2489, + "value": 3344, }, { "category": "Pet", "configData": { - "id": "Huge Goblin", + "id": "Easter Agony", "pt": 1, + "sh": true, }, - "value": 506530100, + "value": 4461170, }, { "category": "Pet", "configData": { - "id": "Huge Error Cat", + "id": "Patchwork Yeti", "pt": 2, + "sh": true, }, - "value": 315413252, + "value": 221, }, { "category": "Pet", "configData": { - "id": "Huge Rainbow Slime", - "sh": true, + "id": "Easter Dominus", + "pt": 1, }, - "value": 308243157, + "value": 1687321975, }, { "category": "Pet", "configData": { - "id": "Nightmare Bear", + "id": "Huge Diamond Bunny", }, - "value": 5142294, + "value": 178078, }, { "category": "Pet", "configData": { - "id": "Huge Balloon Axolotl", + "id": "Easter Dominus", + "pt": 2, }, - "value": 167318889, + "value": 3212099595, }, { "category": "Pet", "configData": { - "id": "Peacock", + "id": "Huge Easter Agony", + "pt": 2, + "sh": true, }, - "value": 1265, + "value": 14, }, { "category": "Pet", "configData": { - "id": "Titanic Shadow Griffin", + "id": "Huge Sea Dragon", + "sh": true, }, - "value": 13614758048, + "value": 511, }, { "category": "Pet", "configData": { - "id": "Nine Eyed Lion", - "pt": 2, + "id": "Easter Dominus", }, - "value": 493, + "value": 18857714645, }, { "category": "Pet", "configData": { - "id": "Police Cat", - "pt": 1, + "id": "Easter Agony", "sh": true, }, - "value": 64000001, + "value": 29780692, }, { "category": "Pet", "configData": { - "id": "Koi Fish", + "id": "Huge Patchwork Bunny", "pt": 2, }, - "value": 3287, + "value": 549, }, { "category": "Pet", "configData": { - "id": "Knight Beagle", + "id": "Titanic Sea Dragon", + "pt": 1, + }, + "value": 1204, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Agony", "pt": 2, + "sh": true, }, - "value": 1041, + "value": 11342035, }, { "category": "Pet", "configData": { - "id": "Punkey", + "id": "Huge Diamond Bunny", + "pt": 2, }, - "value": 7836846, + "value": 3098, }, { "category": "Pet", "configData": { - "id": "Inferno Cat", + "id": "Huge Diamond Bunny", + "sh": true, }, - "value": 20074982, + "value": 4010, }, { "category": "Pet", "configData": { - "id": "Witch Cat", - "pt": 1, + "id": "Titanic Sea Dragon", + "pt": 2, }, - "value": 383, + "value": 329, }, { "category": "Pet", "configData": { - "id": "Comet Agony", - "pt": 1, + "id": "Easter Angelus", }, - "value": 920, + "value": 7025516582, }, { "category": "Pet", "configData": { - "id": "Dragonfruit Dragon", - "sh": true, + "id": "Huge Diamond Bunny", + "pt": 1, }, - "value": 18523490, + "value": 8319, }, { "category": "Pet", "configData": { - "id": "Neon Twilight Wolf", + "id": "Patchwork Bunny", + "pt": 2, + "sh": true, }, - "value": 4095266, + "value": 283, }, { "category": "Pet", "configData": { - "id": "Huge Balloon Axolotl", + "id": "Huge Easter Agony", + "pt": 1, "sh": true, }, - "value": 609693906, + "value": 48, }, { "category": "Pet", "configData": { - "id": "Enchanted Dragon", + "id": "Easter Angelus", "pt": 1, }, - "value": 504, + "value": 526026780, }, { "category": "Pet", "configData": { - "id": "Huge Grim Reaper", + "id": "Huge Exquisite Elephant", "pt": 1, }, - "value": 457526278, + "value": 17316, }, { "category": "Pet", "configData": { - "id": "Mosaic Lamb", + "id": "The Easter Bunny", "sh": true, }, - "value": 10800649, + "value": 7405371, }, { "category": "Pet", "configData": { - "id": "Meebo in a Spaceship", - "pt": 1, + "id": "Easter Angelus", + "pt": 2, }, - "value": 6410, + "value": 1458464142, }, { "category": "Pet", "configData": { - "id": "Vampire Dragon", + "id": "The Easter Bunny", "pt": 1, "sh": true, }, - "value": 800000, + "value": 1330581, }, { "category": "Pet", "configData": { - "id": "Ugly Duckling", - "pt": 1, + "id": "Titanic Diamond Bunny", }, - "value": 197, + "value": 1749, }, { "category": "Pet", "configData": { - "id": "Frostbyte Fox", + "id": "Huge Sea Dragon", + "pt": 1, + "sh": true, }, - "value": 301, + "value": 84, }, { "category": "Pet", "configData": { - "id": "Snowman", + "id": "The Easter Bunny", + "pt": 2, + "sh": true, }, - "value": 143, + "value": 3740090, }, { "category": "Pet", "configData": { - "id": "Queen Piggy", + "id": "Huge Patchwork Teddy Bear", "pt": 2, - "sh": true, }, - "value": 70336, + "value": 131, }, { "category": "Pet", "configData": { - "id": "Huge Evolved Hacked Cat", - "pt": 2, + "id": "Titanic Diamond Bunny", + "pt": 1, }, - "value": 993734248, + "value": 88, }, { "category": "Pet", "configData": { - "id": "Huge Puurple Cat", + "id": "Huge Diamond Bunny", "pt": 1, "sh": true, }, - "value": 9423040044, + "value": 193, }, { "category": "Pet", "configData": { - "id": "Tiedye Dog", - "pt": 2, + "id": "Titanic Luxe Axolotl", }, - "value": 20183433, + "value": 40, }, { "category": "Pet", "configData": { - "id": "Huge Scary Corgi", + "id": "Huge Easter Lamb", }, - "value": 53077783, + "value": 860137, }, { "category": "Pet", "configData": { - "id": "Huge Chroma Phoenix", + "id": "Huge Easter Angelus", "pt": 2, - "sh": true, }, - "value": 16662223105, + "value": 765, }, { "category": "Pet", "configData": { - "id": "Huge Easter Bunny", + "id": "Huge Easter Angelus", }, - "value": 50746891, + "value": 17684, }, { "category": "Pet", "configData": { - "id": "Stegosaurus", + "id": "Huge Easter Angelus", "pt": 1, - "sh": true, }, - "value": 611, + "value": 3477, }, { "category": "Pet", "configData": { - "id": "Huge Crocodile", - "pt": 1, - "sh": true, + "id": "Huge Exquisite Elephant", }, - "value": 375926445, + "value": 87029, }, { "category": "Pet", "configData": { - "id": "Moray Eel", + "id": "Huge Diamond Bunny", "pt": 2, + "sh": true, }, - "value": 335, + "value": 66, }, { "category": "Pet", "configData": { - "id": "Neon Cat", + "id": "Huge Easter Angelus", + "sh": true, }, - "value": 3901781, + "value": 170, }, { "category": "Pet", "configData": { - "id": "Huge Red Panda", + "id": "Huge Easter Angelus", "pt": 1, "sh": true, }, - "value": 570637006, + "value": 23, }, { "category": "Pet", "configData": { - "id": "Psychic Seal", + "id": "Patchwork Teddy Bear", "pt": 2, + "sh": true, }, - "value": 331, + "value": 78, }, { "category": "Pet", "configData": { - "id": "Fairy Bee", + "id": "Huge Marshmallow Kitsune", }, - "value": 175, + "value": 160886, }, { "category": "Pet", "configData": { - "id": "Robot Bee", + "id": "Huge Easter Angelus", + "pt": 2, "sh": true, }, - "value": 1775, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Walrus", - "pt": 1, + "id": "Huge Patchwork Teddy Bear", + "sh": true, }, - "value": 21812, + "value": 171, }, { "category": "Pet", "configData": { - "id": "Forged Hedgehog", + "id": "Gargantuan Patchwork Agony", }, - "value": 961, + "value": 101, }, { "category": "Pet", "configData": { - "id": "Huge Cheerful Yeti", + "id": "Huge Patchwork Teddy Bear", + "pt": 2, "sh": true, }, - "value": 720131714, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Sun Agony", + "id": "Huge Patchwork Bunny", "pt": 2, + "sh": true, }, - "value": 19264, + "value": 26, }, { "category": "Pet", "configData": { - "id": "Polar Bear", - "pt": 2, + "id": "Huge Marshmallow Kitsune", + "pt": 1, }, - "value": 428, + "value": 13122, }, { "category": "Pet", "configData": { - "id": "Puffin", + "id": "Huge Marshmallow Kitsune", "pt": 2, }, - "value": 1490, + "value": 10598, }, { "category": "Pet", "configData": { - "id": "White Bunny", - "pt": 2, + "id": "Titanic Diamond Bunny", + "sh": true, }, - "value": 148, + "value": 3, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Pixie Fox", - "pt": 2, - "sh": true, + "id": "Easter Secret Key", }, - "value": 500, + "value": 150262031, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Clover Unicorn", - "pt": 2, - "sh": true, + "id": "Hunt Easter Egg", }, - "value": 4288800049, + "value": 3020513480, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Hologram Axolotl", + "id": "Secret Easter Egg", }, - "value": 116305490, + "value": 1746506660, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Gorilla", + "id": "Easter", }, - "value": 168, + "value": 147797, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Snow Squirrel", + "id": "Easter Bunny", }, - "value": 388, + "value": 147710, }, { "category": "Pet", "configData": { - "id": "Stealth Cat", - "sh": true, + "id": "Huge Spring Griffin", }, - "value": 16340586, + "value": 273805, }, { "category": "Pet", "configData": { - "id": "Tech Cowboy Dog", + "id": "Huge Basket Bunny", }, - "value": 81, + "value": 594983, }, { "category": "Pet", "configData": { - "id": "Zombie Bull", - "pt": 1, + "id": "Titanic Patchwork Capybara", + "sh": true, }, - "value": 1179, + "value": 20, }, { "category": "Pet", "configData": { - "id": "Umbrella Dog", - "pt": 1, + "id": "Titanic Starfall Dragon", }, - "value": 611, + "value": 700, }, { "category": "Pet", "configData": { - "id": "Floatie Flamingo", - "pt": 1, + "id": "Huge Exquisite Elephant", "sh": true, }, - "value": 2, + "value": 748, }, { "category": "Pet", "configData": { - "id": "Huge Fairy", - "pt": 2, + "id": "Easter Dominus", + "sh": true, }, - "value": 1219855507, + "value": 60290827, }, { "category": "Pet", "configData": { - "id": "Huge Mosaic Corgi", - "sh": true, + "id": "Huge Basket Bunny", + "pt": 1, }, - "value": 485144202, + "value": 131982, }, { "category": "Pet", "configData": { - "id": "Cool Corgi", + "id": "Easter Dominus", "pt": 1, + "sh": true, }, - "value": 6693319, + "value": 5957556, }, { "category": "Pet", "configData": { - "id": "Blueberry Cow", + "id": "Titanic Patchwork Capybara", "pt": 2, - "sh": true, }, - "value": 426814770, + "value": 37, }, { "category": "Pet", "configData": { - "id": "Masked Fox", + "id": "Titanic Exquisite Elephant", + "pt": 1, }, - "value": 572, + "value": 622, }, { "category": "Pet", "configData": { - "id": "Rose Butterfly", + "id": "Titanic Diamond Bunny", + "pt": 2, }, - "value": 422, + "value": 28, }, { "category": "Pet", "configData": { - "id": "Snowman", - "pt": 1, + "id": "Titanic Exquisite Elephant", }, - "value": 713, + "value": 3050, }, { "category": "Pet", "configData": { - "id": "Huge Party Monkey", + "id": "Huge Spring Griffin", + "pt": 1, }, - "value": 441597241, + "value": 55108, }, { "category": "Pet", "configData": { - "id": "Huge UV Kitsune", - "pt": 2, + "id": "Slimezilla", + "pt": 1, + "sh": true, }, - "value": 341067076, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Huge Devil Agony", + "id": "Titanic Starfall Dragon", "pt": 1, }, - "value": 89951458, + "value": 80, }, { "category": "Pet", "configData": { - "id": "Huge Cosmic Axolotl", + "id": "Huge Sea Dragon", + "pt": 2, + "sh": true, }, - "value": 100632033, + "value": 27, }, { "category": "Pet", "configData": { - "id": "Lemur", + "id": "Easter Angelus", "pt": 1, "sh": true, }, - "value": 50000, + "value": 2074071, }, { "category": "Pet", "configData": { - "id": "Pegasus", + "id": "Huge Exquisite Elephant", "pt": 2, }, - "value": 660, + "value": 3595, }, { "category": "Pet", "configData": { - "id": "Cow", - "sh": true, + "id": "Huge Spring Griffin", + "pt": 2, }, - "value": 3658, + "value": 10827, }, { "category": "Pet", "configData": { - "id": "Huge Rave Troll", + "id": "Huge Marshmallow Kitsune", + "sh": true, }, - "value": 45102752, + "value": 3275, }, { "category": "Pet", "configData": { - "id": "Fire Cat", - "pt": 1, + "id": "Huge Spring Griffin", "sh": true, }, - "value": 5000, + "value": 2157, }, { "category": "Pet", "configData": { - "id": "Popcorn Cat", - "sh": true, + "id": "Huge Basket Bunny", + "pt": 2, }, - "value": 3516, + "value": 25900, }, { "category": "Pet", "configData": { - "id": "Snow Squirrel", + "id": "Easter Dominus", "pt": 2, + "sh": true, }, - "value": 1162, + "value": 11233247, }, { "category": "Pet", "configData": { - "id": "Dog", - "pt": 1, + "id": "Huge Marshmallow Kitsune", + "pt": 2, "sh": true, }, - "value": 35489, + "value": 221, }, { "category": "Pet", "configData": { - "id": "Mortuus", + "id": "Huge Spring Griffin", + "pt": 1, "sh": true, }, - "value": 1241, + "value": 442, }, { "category": "Pet", "configData": { - "id": "Clover Fairy", - "pt": 2, + "id": "Easter Angelus", + "sh": true, }, - "value": 2879, + "value": 21629139, }, { "category": "Pet", "configData": { - "id": "Whale Shark", - "pt": 2, + "id": "Titanic Sea Dragon", + "sh": true, }, - "value": 253, + "value": 70, }, { "category": "Pet", "configData": { - "id": "Huge Nightfall Wolf", - "pt": 2, - "sh": true, + "id": "Titanic Easter Cat", }, - "value": 600000000, + "value": 1100, }, { "category": "Pet", "configData": { - "id": "Silver Stag", + "id": "Huge Basket Bunny", "sh": true, }, - "value": 7694304, + "value": 4070, }, { "category": "Pet", "configData": { - "id": "Huge Samurai Dragon", + "id": "Slimezilla", + "pt": 2, + "sh": true, }, - "value": 170952521, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Titanic Bejeweled Griffin", + "id": "Titanic Easter Cat", + "pt": 1, }, - "value": 14384364625, + "value": 79, }, { "category": "Pet", "configData": { - "id": "Huge Easter Yeti", + "id": "Gargantuan Starfall Dragon", }, - "value": 171331246, + "value": 28, }, { "category": "Pet", "configData": { - "id": "Huge Grinch Cat", - "pt": 1, + "id": "Titanic Starfall Dragon", + "sh": true, }, - "value": 999900000, + "value": 18, }, { "category": "Pet", "configData": { - "id": "Frostbyte Penguin", + "id": "Huge Marshmallow Kitsune", "pt": 1, + "sh": true, }, - "value": 1268, + "value": 252, }, { "category": "Pet", "configData": { - "id": "Quantum Tiger", + "id": "Huge Basket Bunny", "pt": 1, + "sh": true, }, - "value": 1490, + "value": 1103, }, { "category": "Pet", "configData": { - "id": "Rock Dog", + "id": "Titanic Easter Cat", + "pt": 2, }, - "value": 140, + "value": 79, }, { "category": "Pet", "configData": { - "id": "Bee", + "id": "Easter Angelus", + "pt": 2, + "sh": true, }, - "value": 111, + "value": 5112541, }, { "category": "Pet", "configData": { - "id": "Cyborg Panda", + "id": "Huge Basket Bunny", "pt": 2, + "sh": true, }, - "value": 1971, + "value": 212, }, { "category": "Pet", "configData": { - "id": "Huge Easter Cat", + "id": "Huge Spring Griffin", "pt": 2, + "sh": true, }, - "value": 1113792039, + "value": 97, }, { "category": "Pet", "configData": { - "id": "Galaxy Pegasus", + "id": "Titanic Starfall Dragon", + "pt": 1, + "sh": true, }, - "value": 97245011, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Cyber Ducky", + "id": "Titanic Starfall Dragon", "pt": 2, }, - "value": 282, + "value": 14, }, { "category": "Pet", "configData": { - "id": "Stealth Cat", - "pt": 1, + "id": "Titanic Exquisite Elephant", + "sh": true, }, - "value": 10183731, + "value": 20, }, { "category": "Pet", "configData": { - "id": "Titanic Reindeer", - "sh": true, + "id": "Titanic Exquisite Elephant", + "pt": 2, }, - "value": 6000000060, + "value": 132, }, { "category": "Pet", "configData": { - "id": "Huge Green Balloon Cat", - }, - "value": 186435256, + "id": "Huge Exquisite Elephant", + "pt": 1, + "sh": true, + }, + "value": 116, }, { "category": "Pet", "configData": { - "id": "Sailor Dolphin", - "pt": 1, + "id": "Gargantuan Patchwork Agony", + "sh": true, }, - "value": 55, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Huge Stealth Bobcat", - "pt": 1, + "id": "Huge Nightmare Sludge", }, - "value": 185298220, + "value": 9183, }, { "category": "Pet", "configData": { - "id": "Huge Bloo Cat", - "pt": 2, + "id": "Titanic Nightmare Sludge", }, - "value": 945591269, + "value": 957, }, { "category": "Pet", "configData": { - "id": "Clover Axolotl", + "id": "Huge Nightmare Sludge", "pt": 2, }, - "value": 11317, + "value": 500, }, { "category": "Pet", "configData": { - "id": "Lava Slime", - "pt": 2, + "id": "Huge Nightmare Sludge", "sh": true, }, - "value": 30000, + "value": 148, }, { "category": "Pet", "configData": { - "id": "Midnight Axolotl", + "id": "Huge Nightmare Sludge", + "pt": 2, + "sh": true, }, - "value": 1112, + "value": 50, }, { "category": "Pet", "configData": { - "id": "Surfboard Axolotl", + "id": "Titanic Nightmare Sludge", + "pt": 2, }, - "value": 377, + "value": 30, }, { "category": "Pet", "configData": { - "id": "Relic Agony", + "id": "Titanic Nightmare Sludge", + "sh": true, }, - "value": 846, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Huge Kraken", - "pt": 1, + "id": "Titanic Nightmare Sludge", + "pt": 2, + "sh": true, }, - "value": 1918260886, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Sandcastle Dog", - "pt": 1, + "id": "Huge Exquisite Elephant", + "pt": 2, + "sh": true, }, - "value": 3679, + "value": 34, }, { "category": "Pet", "configData": { - "id": "Huge Pinata Cat", + "id": "Titanic Sea Dragon", + "pt": 2, "sh": true, }, - "value": 3028662953, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Nuclear Mining Dog", - "pt": 2, + "id": "Huge Pixel Chick", }, - "value": 30028, + "value": 896, }, { "category": "Pet", "configData": { - "id": "Plasma Bull", - "sh": true, + "id": "Huge Pixel Chick", + "pt": 1, }, - "value": 2471, + "value": 374, }, { "category": "Pet", "configData": { - "id": "Storm Wolf", + "id": "Huge Pixel Chick", + "pt": 2, }, - "value": 95779994, + "value": 150, }, { "category": "Pet", "configData": { - "id": "Basketball Retriever", + "id": "Huge Evolved Basket Bunny", }, - "value": 1050, + "value": 27771, }, { "category": "Pet", "configData": { - "id": "Mortuus", - "pt": 1, + "id": "Huge Evolved Mining Monkey", }, - "value": 799, + "value": 61015, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Glitched Cat", - "pt": 2, + "id": "Easter Chest Tokens Booster", + "tn": 2, }, - "value": 798, + "value": 997451, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Huge Dark Lord", - "pt": 2, + "id": "Easter Chest Points Booster", + "tn": 1, }, - "value": 234410593, + "value": 3640151, }, { "category": "Pet", "configData": { - "id": "Cyborg Bunny", - "pt": 2, + "id": "Huge Evolved Mining Penguin", }, - "value": 683, + "value": 39043, }, { "category": "Pet", "configData": { - "id": "Gingerbread Cat", + "id": "Huge Evolved Basket Bunny", "sh": true, }, - "value": 1589891, + "value": 661, }, { "category": "Pet", "configData": { - "id": "Huge Comet Agony", + "id": "Huge Evolved Basket Bunny", + "pt": 2, }, - "value": 521871171, + "value": 838, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Emoji Dog", - "sh": true, + "id": "Easter Chest Tokens Booster", + "tn": 1, }, - "value": 12528477, + "value": 6230783, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Meerkat", + "id": "Huge Evolved Player Fox", }, - "value": 52994, + "value": 10935, }, { "category": "Pet", "configData": { - "id": "Huge Clover Unicorn", - "pt": 1, + "id": "Huge Evolved Icy Phoenix", }, - "value": 98131724, + "value": 7159, }, { "category": "Pet", "configData": { - "id": "Huge Fluffy Cat", + "id": "Huge Evolved Mining Penguin", + "sh": true, }, - "value": 37749930, + "value": 943, }, { "category": "Pet", "configData": { - "id": "Unicorn Kitten", - "pt": 2, + "id": "Huge Evolved Easter Lamb", }, - "value": 1246, + "value": 13305, }, { "category": "Pet", "configData": { - "id": "Electric Dino", + "id": "Huge Evolved Icy Phoenix", "sh": true, }, - "value": 2543, + "value": 185, }, { "category": "Pet", "configData": { - "id": "Crocodile", + "id": "Huge Evolved Mining Monkey", "pt": 2, - "sh": true, }, - "value": 150000, + "value": 1962, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Monkey", - "pt": 2, + "id": "Anime Pack", }, - "value": 199859, + "value": 3657468, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Huge Axolotl", - "sh": true, + "id": "Easter Chest Points Booster", + "tn": 2, }, - "value": 21339999948, + "value": 926516, }, { "category": "Pet", "configData": { - "id": "Tiedye Griffin", - "sh": true, + "id": "Huge Evolved Mining Penguin", + "pt": 2, }, - "value": 21043968, + "value": 1355, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Ninja Maskot", - "pt": 2, - "sh": true, + "id": "Easter Token", }, - "value": 934, + "value": 41934434206303, }, { "category": "Pet", "configData": { - "id": "Huge Unicorn", - "pt": 2, + "id": "Egg Chick", }, - "value": 1444103317, + "value": 9050893238, }, { "category": "Pet", "configData": { - "id": "Huge Orca", + "id": "Egg Chick", + "pt": 1, }, - "value": 86646115, + "value": 810415751, }, { "category": "Pet", "configData": { - "id": "Huge Dragon", + "id": "Huge Evolved Mining Monkey", + "sh": true, }, - "value": 96588747, + "value": 1388, }, { "category": "Pet", "configData": { - "id": "Huge Lunar Moth", - "sh": true, + "id": "Huge Evolved Player Fox", + "pt": 2, }, - "value": 373729621, + "value": 649, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Pumpkin Cat", + "id": "Easter Heroic Chest", + "tn": 1, }, - "value": 99, + "value": 89631, }, { "category": "Pet", "configData": { - "id": "Quantum Goat", + "id": "Egg Chick", "pt": 2, }, - "value": 12948, + "value": 2038914757, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Bejeweled Unicorn", - "pt": 2, + "id": "Anime Wolf Card", }, - "value": 9546615, + "value": 553340, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Cool Corgi", + "id": "Anime Lemur Card", "sh": true, }, - "value": 9186171, + "value": 50097, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Color Ruins Parrot", - "pt": 1, - "sh": true, + "id": "Anime Lemur Card", }, - "value": 1543860, + "value": 643550, }, { "category": "Pet", "configData": { - "id": "Enchanted Elephant", + "id": "Huge Egg Chick", }, - "value": 9813, + "value": 4099, }, { "category": "Pet", "configData": { - "id": "M-2 PROTOTYPE", + "id": "Huge Evolved Icy Phoenix", + "pt": 2, }, - "value": 2411, + "value": 270, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Bat", + "id": "Anime Tanuki Card", }, - "value": 82, + "value": 372620, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Pufferfish", - "pt": 1, + "id": "Huge Anime Scorpion Card", }, - "value": 179, + "value": 85804, }, { "category": "Pet", "configData": { - "id": "Albino Bat", - "pt": 2, + "id": "Spring Griffin", }, - "value": 1454, + "value": 2985638937, }, { "category": "Pet", "configData": { - "id": "Huge Scary Corgi", - "pt": 1, + "id": "Huge Evolved Easter Lamb", + "sh": true, }, - "value": 279625707, + "value": 270, }, { "category": "Pet", "configData": { - "id": "Jelly Piggy", + "id": "Huge Evolved Easter Lamb", "pt": 2, }, - "value": 33868479, + "value": 325, }, { "category": "Pet", "configData": { - "id": "Narwhal", + "id": "Spring Griffin", "pt": 2, }, - "value": 1124, + "value": 601895418, }, { "category": "Pet", "configData": { - "id": "Titanic Dragonfruit Dragon", + "id": "Huge Evolved Mining Monkey", "pt": 2, + "sh": true, }, - "value": 10500000000, + "value": 70, }, { "category": "Pet", "configData": { - "id": "Painted Balloon", - "pt": 1, + "id": "Huge Evolved Player Fox", "sh": true, }, - "value": 3004, + "value": 306, }, { "category": "Pet", "configData": { - "id": "Huge Goblin", + "id": "Spring Griffin", "pt": 1, - "sh": true, }, - "value": 713640413, + "value": 298648617, }, { "category": "Pet", "configData": { - "id": "Huge Water Zebra", + "id": "Huge Evolved Mining Penguin", "pt": 2, + "sh": true, }, - "value": 802564774, + "value": 48, }, { "category": "Pet", "configData": { - "id": "Huge Sombrero Chihuahua", + "id": "Huge Evolved Easter Lamb", + "pt": 2, + "sh": true, }, - "value": 1183395980, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Huge Atlantean Orca", + "id": "Anime Wolf", }, - "value": 187301849, + "value": 67188, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Zombie Deer", + "id": "Anime Tanuki Card", "pt": 2, }, - "value": 548, + "value": 34553, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Capybara", - "pt": 1, + "id": "Anime Lemur Card", + "pt": 2, }, - "value": 1926862986, + "value": 51752, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Ghost", + "id": "Anime Lemur Card", "pt": 2, + "sh": true, }, - "value": 669, + "value": 1608, }, { "category": "Pet", "configData": { - "id": "Runic Agony", - "pt": 2, + "id": "Egg Chick", + "sh": true, }, - "value": 2577, + "value": 27527150, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Nightfall Pegasus", - "pt": 1, + "id": "Huge Sea Dragon Card", }, - "value": 11638404, + "value": 121017, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Peacock", + "id": "Huge Sea Dragon Card", "pt": 1, }, - "value": 59, + "value": 53609, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Koi Fish", + "id": "Huge Sea Dragon Card", "sh": true, }, - "value": 272760729, + "value": 3828, }, { "category": "Pet", "configData": { - "id": "Empyrean Snake", + "id": "Egg Chick", + "pt": 2, + "sh": true, }, - "value": 1415, + "value": 8030911, }, { "category": "Pet", "configData": { - "id": "Umbrella Cat", + "id": "Huge Egg Chick", "pt": 1, }, - "value": 76, + "value": 1829, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Comet Cyclops", + "id": "Anime Wolf Card", "pt": 2, }, - "value": 1623789018, + "value": 46693, }, { "category": "Pet", "configData": { - "id": "Prison Bunny", + "id": "Egg Chick", "pt": 1, + "sh": true, }, - "value": 286, + "value": 3382052, }, { "category": "Pet", "configData": { - "id": "Relic Dragon", + "id": "Huge Egg Chick", "pt": 2, }, - "value": 14222, + "value": 544, }, { "category": "Pet", "configData": { - "id": "Robber Cat", - "pt": 1, + "id": "Huge Egg Chick", "sh": true, }, - "value": 11292, + "value": 127, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Colorful Fish", - "pt": 1, + "id": "Corrupt", }, - "value": 77, + "value": 4494, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Huge Rainbow Slime", + "id": "Astra", + "sh": true, }, - "value": 39914841, + "value": 2378, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Luau Cat", + "id": "Anime Wolf Card", + "sh": true, }, - "value": 78898003, + "value": 48728, }, { "category": "Pet", "configData": { - "id": "Huge Sombrero Chihuahua", - "pt": 1, - "sh": true, + "id": "Easter Axolotl", }, - "value": 561856008, + "value": 902053299, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Hologram Shark", - "sh": true, + "id": "Huge Sea Dragon Card", + "pt": 2, }, - "value": 9492714, + "value": 15632, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Fragmented Dominus", - "pt": 2, - "sh": true, + "id": "Astra", }, - "value": 55200, + "value": 21175, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Huge Divinus", - "pt": 1, + "id": "Kitsune", }, - "value": 72887954, + "value": 2544, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Axolotl", - "pt": 2, - "sh": true, + "id": "Titanic Anime Cat Card", }, - "value": 221519, + "value": 7974, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Graffiti Raccoon", + "id": "Titanic Sea Dragon Card", }, - "value": 129141496, + "value": 7942, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Hell Rock", - "pt": 2, + "id": "Titanic Sea Dragon Card", + "sh": true, }, - "value": 105121706, + "value": 270, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Corgi", - "pt": 1, + "id": "Huge Anime Scorpion Card", "sh": true, }, - "value": 1330, + "value": 4309, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Tulip Hedgehog", - "pt": 2, + "id": "Kitsune", + "sh": true, }, - "value": 999, + "value": 265, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Cotton Candy Lamb", - "pt": 2, + "id": "Anime Tanuki Card", + "sh": true, }, - "value": 12623, + "value": 32522, }, { "category": "Pet", "configData": { - "id": "Mosaic Dove", + "id": "Easter Axolotl", "pt": 2, }, - "value": 16156014, + "value": 170947963, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Jolly Cat", + "id": "Titanic Sea Dragon Card", "pt": 1, - "sh": true, }, - "value": 544278, + "value": 3695, }, { "category": "Pet", "configData": { - "id": "Snowflake Pegasus", + "id": "Spring Griffin", + "sh": true, }, - "value": 1208, + "value": 9090676, }, { "category": "Pet", "configData": { - "id": "Comet Cyclops", + "id": "Easter Axolotl", + "pt": 1, }, - "value": 289, + "value": 104951542, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Nightmare Kraken", + "id": "Huge Anime Scorpion Card", + "pt": 2, }, - "value": 295712731, + "value": 4287, }, { "category": "Pet", "configData": { - "id": "Titanic Neon Agony", + "id": "Huge Evolved Basket Bunny", + "pt": 2, "sh": true, }, - "value": 69, + "value": 28, }, { "category": "Pet", "configData": { - "id": "Turtle in a Bucket", - "pt": 1, + "id": "Anime Tanuki", }, - "value": 236, + "value": 42064, }, { "category": "Pet", "configData": { - "id": "Soul Cat", - "sh": true, + "id": "Anime Lemur", }, - "value": 10200309, + "value": 102005, }, { "category": "Pet", "configData": { - "id": "Fairy Ladybug", + "id": "Spring Griffin", "pt": 1, + "sh": true, }, - "value": 469, + "value": 1244630, }, { "category": "Pet", "configData": { - "id": "Titanic Sock Monkey", + "id": "Spring Griffin", + "pt": 2, "sh": true, }, - "value": 23799999997, + "value": 2539512, }, { "category": "Pet", "configData": { - "id": "Huge Crystal Dog", + "id": "Huge Pastel Sock Bunny", }, - "value": 62460512, + "value": 55457, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Slime", + "id": "Huge Easter Gift", }, - "value": 5126, + "value": 40423294, }, { "category": "Pet", "configData": { - "id": "Gazelle", + "id": "Huge Pastel Sock Bunny", + "pt": 1, }, - "value": 369, + "value": 11119, }, { "category": "Pet", "configData": { - "id": "Agony", - "pt": 1, + "id": "Spring Bee", }, - "value": 928, + "value": 292337089, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Police Dog", + "id": "Anime Wolf Card", "pt": 2, "sh": true, }, - "value": 1185257, + "value": 1356, }, { "category": "Pet", "configData": { - "id": "Mystical Fox", - "sh": true, + "id": "Huge Pastel Sock Bunny", + "pt": 2, }, - "value": 6412, + "value": 2121, }, { "category": "Pet", "configData": { - "id": "Frost Bear", + "id": "Huge Spring Bee", + }, + "value": 13788, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Bee", "pt": 1, - "sh": true, }, - "value": 208, + "value": 34763530, }, { "category": "Pet", "configData": { - "id": "Cloud Bat", + "id": "Spring Bee", + "pt": 2, + }, + "value": 51576441, + }, + { + "category": "Card", + "configData": { + "id": "Anime Tanuki Card", "pt": 2, "sh": true, }, - "value": 25000, + "value": 900, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Ladybug", + "id": "Titanic Easter Gift", }, - "value": 118, + "value": 460227, }, { "category": "Pet", "configData": { - "id": "Classic Bunny", + "id": "Huge Easter Axolotl", }, - "value": 4011231, + "value": 26550, }, { "category": "Pet", "configData": { - "id": "Huge Nightfall Pegasus", - "pt": 1, + "id": "Huge Anime Scorpion", }, - "value": 231629077, + "value": 44249, }, { "category": "Pet", "configData": { - "id": "Huge Marshmallow Agony", + "id": "Huge Easter Axolotl", + "pt": 1, }, - "value": 52750338, + "value": 5345, }, { "category": "Pet", "configData": { - "id": "Huge Anime Agony", + "id": "Titanic Easter Axolotl", }, - "value": 587112877, + "value": 1074, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Easter Dominus", + "id": "Titanic Sea Dragon Card", + "pt": 2, }, - "value": 54584654, + "value": 1021, }, { "category": "Pet", "configData": { - "id": "Sailor Dolphin", - "pt": 2, + "id": "Easter Axolotl", + "pt": 1, "sh": true, }, - "value": 30000, + "value": 495753, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Horse", - "pt": 2, + "id": "Titanic Anime Cat Card", + "sh": true, }, - "value": 205, + "value": 225, }, { "category": "Pet", "configData": { - "id": "Electric Cat", - "pt": 1, + "id": "Easter Axolotl", + "pt": 2, "sh": true, }, - "value": 75000, + "value": 847011, }, { "category": "Pet", "configData": { - "id": "Titanic Cheerful Yeti", + "id": "Easter Axolotl", + "sh": true, }, - "value": 12573893875, + "value": 2810599, }, { "category": "Pet", "configData": { - "id": "Ender Slime", + "id": "Huge Easter Fox", }, - "value": 813, + "value": 135504, }, { "category": "Pet", "configData": { - "id": "Huge Pixel Dragon", + "id": "Huge Easter Fox", "pt": 1, - "sh": true, }, - "value": 6200000018, + "value": 26806, }, { "category": "Pet", "configData": { - "id": "Huge Three Headed Dragon", - "pt": 1, + "id": "Huge Easter Fox", + "pt": 2, }, - "value": 25000000000, + "value": 5435, }, { "category": "Pet", "configData": { - "id": "Huge Hacker Axolotl", + "id": "Huge Easter Fox", "sh": true, }, - "value": 515588694, + "value": 1047, }, { "category": "Pet", "configData": { - "id": "Cat", + "id": "Huge Spring Bee", "pt": 2, - "sh": true, }, - "value": 494284, + "value": 722, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Mr Krabs", + "id": "Huge Sea Dragon Card", + "pt": 2, + "sh": true, }, - "value": 203979762, + "value": 147, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Hell Rock", - "pt": 1, + "id": "Corrupt", + "sh": true, }, - "value": 2871, + "value": 529, }, { "category": "Pet", "configData": { - "id": "Cold Butterfly", + "id": "Huge Easter Fox", "pt": 1, + "sh": true, }, - "value": 315, + "value": 219, }, { "category": "Pet", "configData": { - "id": "Huge Amethyst Dragon", - "pt": 2, + "id": "Huge Easter Axolotl", "sh": true, }, - "value": 835000000, + "value": 208, }, { "category": "Pet", "configData": { - "id": "Zebra", - "pt": 1, + "id": "Anime Lemur", + "sh": true, }, - "value": 2324, + "value": 1951, }, { "category": "Pet", "configData": { - "id": "Tech Camel", + "id": "Huge Easter Fox", + "pt": 2, + "sh": true, }, - "value": 641, + "value": 40, }, { "category": "Pet", "configData": { - "id": "Shimmering Octopus", + "id": "Painted Cat", }, - "value": 65, + "value": 394647758, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "M-2 PROTOTYPE", - "pt": 1, + "id": "Titanic Anime Cat Card", + "pt": 2, }, - "value": 1547, + "value": 240, }, { "category": "Pet", "configData": { - "id": "Huge Painted Cat", - "pt": 1, + "id": "Huge Pastel Sock Bunny", + "sh": true, }, - "value": 51593526, + "value": 457, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Cyborg Panda", + "id": "Huge Sea Dragon Card", + "pt": 1, "sh": true, }, - "value": 1836, + "value": 882, }, { "category": "Pet", "configData": { - "cv": 6, - "id": "Chroma Phoenix", - "sh": true, + "id": "Painted Cat", + "pt": 2, }, - "value": 12531694, + "value": 109108788, }, { "category": "Pet", "configData": { - "id": "Luxe Axolotl", + "id": "Spring Bee", "pt": 1, "sh": true, }, - "value": 181057, + "value": 191338, }, { "category": "Pet", "configData": { - "id": "Huge M-10 PROTOTYPE", + "id": "Spring Bee", + "sh": true, }, - "value": 203700318, + "value": 897866, }, { "category": "Pet", "configData": { - "id": "Void Alien", + "id": "Spring Bee", + "pt": 2, "sh": true, }, - "value": 7222, + "value": 262424, }, { "category": "Pet", "configData": { - "id": "Luau Cat", - "sh": true, + "id": "Huge Spring Bee", + "pt": 1, }, - "value": 830, + "value": 1041, }, { "category": "Pet", "configData": { - "id": "Graffiti Raccoon", + "id": "Painted Cat", "pt": 1, }, - "value": 56, + "value": 60482511, }, { "category": "Pet", "configData": { - "id": "Clover Axolotl", + "id": "Huge Egg Chick", + "pt": 1, "sh": true, }, - "value": 29537, + "value": 14, }, { "category": "Pet", "configData": { - "id": "Corrupt Skeleton", - "pt": 2, - "sh": true, + "id": "Titanic Anime Cat", }, - "value": 248, + "value": 4510, }, { "category": "Pet", "configData": { - "id": "Mantis Shrimp", + "id": "Huge Easter Axolotl", "pt": 2, }, - "value": 46712, + "value": 1063, }, { "category": "Pet", "configData": { - "id": "Tiedye Corgi", - "sh": true, + "id": "Easter Yeti", + "pt": 2, }, - "value": 15024006, + "value": 19234212, }, { "category": "Pet", "configData": { - "id": "Lava Slime", - "sh": true, + "id": "Anime Lemur", + "pt": 2, }, - "value": 625, + "value": 2300, }, { "category": "Pet", "configData": { - "id": "Jelly Corgi", - "sh": true, + "id": "Easter Yeti", }, - "value": 10051563, + "value": 55509753, }, { "category": "Pet", "configData": { - "id": "Clown Cat", - "sh": true, + "id": "Anime Wolf", + "pt": 2, }, - "value": 1901, + "value": 3042, }, { "category": "Pet", "configData": { - "id": "Tech Griffin", + "id": "Painted Cat", "sh": true, }, - "value": 3700, + "value": 1984137, }, { "category": "Pet", "configData": { - "id": "Nightfall Pegasus", + "id": "Easter Yeti", + "pt": 1, }, - "value": 11142449, + "value": 9317694, }, { "category": "Pet", "configData": { - "id": "Bloo Cat", + "id": "Painted Cat", "pt": 2, "sh": true, }, - "value": 270682453, + "value": 842314, }, { "category": "Pet", "configData": { - "id": "North Pole Bunny", + "id": "Painted Cat", "pt": 1, + "sh": true, }, - "value": 518, + "value": 372724, }, { "category": "Pet", "configData": { - "id": "Diamond Dragon", - "pt": 1, + "id": "Anime Wolf", + "sh": true, }, - "value": 81, + "value": 1864, }, { "category": "Pet", "configData": { - "id": "Deer", + "id": "Anime Tanuki", + "sh": true, }, - "value": 60, + "value": 1460, }, { "category": "Pet", "configData": { - "id": "Blue Fish", + "id": "Easter Yeti", "sh": true, }, - "value": 529, + "value": 303712, }, { "category": "Pet", "configData": { - "id": "Huge Gamer Shiba", + "id": "Anime Tanuki", + "pt": 2, }, - "value": 755376658, + "value": 2630, }, { "category": "Pet", "configData": { - "id": "Relic Raccoon", - "pt": 2, + "id": "Marshmallow Agony", }, - "value": 10482, + "value": 180619, }, { "category": "Pet", "configData": { - "id": "Huge Glowy the Ghost", + "id": "Easter Yeti", + "pt": 2, "sh": true, }, - "value": 278419650, + "value": 163878, }, { "category": "Pet", "configData": { - "id": "Anime Unicorn", - "pt": 2, + "id": "Easter Yeti", + "pt": 1, + "sh": true, }, - "value": 15987729, + "value": 70555, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Rift Dragon", + "id": "Huge Anime Scorpion Card", "pt": 2, "sh": true, }, - "value": 2116000, + "value": 106, }, { "category": "Pet", "configData": { - "id": "Huge Evolved Hell Rock", + "id": "Huge Spring Bee", + "sh": true, }, - "value": 58709638, + "value": 294, }, { "category": "Pet", "configData": { - "id": "Huge Machete Dog", - "pt": 2, + "id": "Marshmallow Agony", + "pt": 1, }, - "value": 1694239998, + "value": 42718, }, { "category": "Pet", "configData": { - "id": "Sage Axolotl", + "id": "Marshmallow Agony", + "pt": 2, }, - "value": 988, + "value": 115330, }, { "category": "Pet", "configData": { - "id": "Mosaic Corgi", - "pt": 1, + "id": "Titanic Starfall Dragon", + "pt": 2, + "sh": true, }, - "value": 8615876, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Huge Bat", + "id": "Titanic Easter Axolotl", + "pt": 1, }, - "value": 51763449, + "value": 237, }, { "category": "Pet", "configData": { - "id": "Huge Inferno Stealth Bobcat", - "pt": 1, + "id": "Huge Anime Scorpion", + "sh": true, }, - "value": 19269999946, + "value": 616, }, { "category": "Pet", "configData": { - "id": "Huge Atlantean Dolphin", + "id": "Anime Lemur", + "pt": 2, + "sh": true, }, - "value": 204626119, + "value": 118, }, { "category": "Pet", "configData": { - "id": "Cyborg Dog", - "pt": 1, - "sh": true, + "id": "Easter Golem", + "pt": 2, }, - "value": 12, + "value": 1150, }, { "category": "Pet", "configData": { - "id": "Huge Propeller Cat", - "pt": 2, + "id": "Easter Golem", + "pt": 1, }, - "value": 343114133, + "value": 670, }, { "category": "Pet", "configData": { - "id": "Rock Monkey", + "id": "Huge Spring Bee", + "pt": 1, "sh": true, }, - "value": 340648, + "value": 17, }, { "category": "Pet", "configData": { - "id": "Huge Marshmallow Agony", - "pt": 2, + "id": "Marshmallow Agony", + "pt": 1, + "sh": true, }, - "value": 376607052, + "value": 2150, }, { "category": "Pet", "configData": { - "id": "Neon Twilight Cat", - "pt": 2, + "id": "Easter Golem", }, - "value": 23546961, + "value": 4772, }, { "category": "Pet", "configData": { - "id": "Dolphin", - "sh": true, + "id": "Gargantuan Patchwork Agony", + "pt": 2, }, - "value": 465, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Gecko", + "id": "Huge Pastel Sock Bunny", "pt": 1, + "sh": true, }, - "value": 167, + "value": 97, }, { "category": "Pet", "configData": { - "id": "Rave Butterfly", + "id": "Marshmallow Agony", + "pt": 2, + "sh": true, }, - "value": 170, + "value": 1528, }, { "category": "Pet", "configData": { - "id": "Moray Eel", + "id": "Marshmallow Agony", "sh": true, }, - "value": 415, + "value": 698, }, { "category": "Pet", "configData": { - "id": "Dominus Darkwing", + "id": "Titanic Easter Axolotl", + "pt": 2, }, - "value": 155675075, + "value": 46, }, { "category": "Pet", "configData": { - "id": "Electric Griffin", - "sh": true, + "id": "Huge Anime Scorpion", + "pt": 2, }, - "value": 50, + "value": 644, }, { "category": "Pet", "configData": { - "id": "Mining Dog", + "id": "Titanic Anime Cat", "sh": true, }, - "value": 1136, + "value": 84, }, { "category": "Pet", "configData": { - "id": "Festive Cardinal", + "id": "Huge Evolved Icy Phoenix", + "pt": 2, + "sh": true, }, - "value": 130, + "value": 15, }, { "category": "Pet", "configData": { - "id": "Ender Bunny", + "id": "Huge Easter Axolotl", + "pt": 1, + "sh": true, }, - "value": 814, + "value": 43, }, { "category": "Pet", "configData": { - "id": "Luau Seal", + "id": "Anime Wolf", "pt": 2, + "sh": true, }, - "value": 835, + "value": 102, }, { "category": "Pet", "configData": { - "cv": 5, - "id": "Huge Chroma Ink Blob", + "id": "Huge Pastel Sock Bunny", "pt": 2, + "sh": true, }, - "value": 1950811216, + "value": 17, }, { "category": "Pet", "configData": { - "id": "Pixie Squirrel", + "id": "Huge Evolved Player Fox", + "pt": 2, "sh": true, }, - "value": 1004, + "value": 27, }, { "category": "Pet", "configData": { - "id": "Titanic Orange Axolotl", + "id": "Anime Tanuki", + "pt": 2, "sh": true, }, - "value": 1000000000, + "value": 64, }, { "category": "Pet", "configData": { - "id": "Cloud Cat", + "id": "Titanic Anime Cat", "pt": 2, }, - "value": 1398, + "value": 80, }, { "category": "Pet", "configData": { - "id": "Black Hole Immortuus", + "id": "Huge Egg Chick", "pt": 2, + "sh": true, }, - "value": 15441744, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Circuit Griffin", + "id": "Easter Golem", + "pt": 2, "sh": true, }, - "value": 1, + "value": 13, }, { "category": "Pet", "configData": { - "id": "Griffin", + "id": "Easter Golem", "pt": 1, + "sh": true, }, - "value": 198, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Reaper", + "id": "Huge Spring Bee", "pt": 2, + "sh": true, }, - "value": 1221, - }, - { - "category": "Pet", - "configData": { - "id": "Huge Corrupt Butterfly", - }, - "value": 41393913, + "value": 8, }, { "category": "Pet", "configData": { - "id": "Huge Party Monkey", - "pt": 2, + "id": "Titanic Easter Axolotl", + "sh": true, }, - "value": 268475234, + "value": 10, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Glitched Dog", + "id": "Titanic Sea Dragon Card", + "pt": 1, + "sh": true, }, - "value": 4779, + "value": 67, }, { "category": "Pet", "configData": { - "id": "Luau Seal", + "id": "Gargantuan Starfall Dragon", "pt": 1, }, - "value": 5062, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Huge Enchanted Deer", + "id": "Huge Easter Axolotl", + "pt": 2, "sh": true, }, - "value": 324245544, + "value": 7, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Llama", + "id": "Titanic Anime Cat Card", "pt": 2, + "sh": true, }, - "value": 752, + "value": 6, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Huge Hologram Shark", + "id": "Unicorn", }, - "value": 94694271, + "value": 2278, }, { "category": "Pet", "configData": { - "id": "Lion", + "id": "Titanic Easter Axolotl", "pt": 2, "sh": true, }, - "value": 30000, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Mummy Bunny", + "id": "Huge Anime Scorpion", "pt": 2, "sh": true, }, - "value": 65342, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Nine Eyed Lion", - "pt": 2, - "sh": true, + "id": "Huge Pastel Sock Bear", }, - "value": 300000, + "value": 3498, }, { "category": "Pet", "configData": { - "id": "Storm Dragon", + "id": "Huge Pastel Sock Bear", + "pt": 2, }, - "value": 41715058, + "value": 250, }, { "category": "Pet", "configData": { - "id": "Ronin Panda", - "sh": true, + "id": "Huge Pastel Sock Bear", + "pt": 1, }, - "value": 863, + "value": 1249, }, { - "category": "Pet", + "category": "Tool", "configData": { - "id": "Cannibal Meerkat", - "sh": true, + "id": "Event Basic Fishing Rod", }, - "value": 12276873, + "value": 2895217, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Huge Avenging Griffin", + "id": "Deep Sea Treasure Chest", }, - "value": 53472128, + "value": 4065735, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Huge Cat", + "id": "Fishing XP Scroll", + "tn": 1, }, - "value": 2620349969, + "value": 114778286, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Firefly", + "id": "Bucket O' Chum", + "tn": 1, }, - "value": 61507, + "value": 38479469, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Huge Vibrant Toucan", + "id": "Fishing Speed Scroll", + "tn": 1, }, - "value": 35293427, + "value": 228879993, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Fossil Dragon", - "pt": 1, - "sh": true, + "id": "Fishing Luck Scroll", + "tn": 1, }, - "value": 156473, + "value": 57795807, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "King Cow", - "pt": 2, - "sh": true, + "id": "Kraken", }, - "value": 56669, + "value": 22582, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Bearserker", - "sh": true, + "id": "Exclusive Egg 50", }, - "value": 21967, + "value": 1276773, }, { - "category": "Pet", + "category": "Tool", "configData": { - "id": "Huge Easter Dominus", - "sh": true, + "id": "Event Sapphire Fishing Rod", }, - "value": 273746275, + "value": 164404, }, { "category": "Pet", "configData": { - "id": "Balloon Axolotl", - "sh": true, + "id": "Huge Mystical Whale", }, - "value": 11351460, + "value": 6912, }, { "category": "Pet", "configData": { - "id": "Colorful Firefly", + "id": "Huge Mystical Whale", "pt": 2, - "sh": true, }, - "value": 50200, + "value": 717, }, { "category": "Pet", "configData": { - "id": "Holographic Dragon", + "id": "Aura Dominus", + "pt": 2, }, - "value": 1531, + "value": 2275, }, { "category": "Pet", "configData": { - "id": "Huge Balloon Axolotl", - "pt": 2, + "id": "Aura Fox", }, - "value": 1688083150, + "value": 122589, }, { "category": "Pet", "configData": { - "id": "Sock Cat", + "id": "Huge Aura Fox", }, - "value": 12650889, + "value": 18173, }, { "category": "Pet", "configData": { - "id": "Valkyrie Dog", + "id": "Aura Dominus", }, - "value": 3692475, + "value": 34456, }, { "category": "Pet", "configData": { - "id": "Cloud Dog", - "pt": 1, - "sh": true, + "id": "Aura Bull", + "pt": 2, }, - "value": 150000, + "value": 4779, }, { "category": "Pet", "configData": { - "id": "Present Chest Mimic", - "sh": true, + "id": "Aura Fox", + "pt": 2, }, - "value": 17984154, + "value": 6199, }, { "category": "Pet", "configData": { - "id": "Dominus Mushrooms", + "id": "Aura Bull", }, - "value": 1986, + "value": 76123, }, { - "category": "Pet", + "category": "Currency", "configData": { - "id": "Fish in a Bucket", - "pt": 2, + "id": "FishingEvent", }, - "value": 436, + "value": 43314693342176, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Snow Cat", - "sh": true, + "id": "Seal", }, - "value": 1281, + "value": 39344081, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Seedling Squirrel", - "pt": 1, + "id": "Boat 1", }, - "value": 1399, + "value": 1820304, }, { "category": "Pet", "configData": { - "id": "Silver Dragon", + "id": "Captain Octopus", "pt": 1, - "sh": true, }, - "value": 920000000, + "value": 744404, }, { "category": "Pet", "configData": { - "id": "Evil Bat", - "sh": true, + "id": "Pirate Dog", + "pt": 2, }, - "value": 2189, + "value": 1130355, }, { "category": "Pet", "configData": { - "id": "Huge Wild Fire Agony", + "id": "Pirate Dog", + "pt": 1, }, - "value": 199085643, + "value": 1055347, }, { "category": "Pet", "configData": { - "id": "Pirate Panda", - "pt": 2, - "sh": true, + "id": "Pirate Dog", }, - "value": 86000, + "value": 14788102, }, { "category": "Pet", "configData": { - "id": "Cool Cat", - "pt": 1, + "id": "Captain Octopus", }, - "value": 6343952, + "value": 9136950, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Circuit Griffin", + "id": "Pufferfish", }, - "value": 5162, + "value": 17554074, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Agony", - "pt": 2, + "id": "Green Fish", }, - "value": 704, + "value": 15464204, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Flamingo", + "id": "Blue Fish", "pt": 2, - "sh": true, }, - "value": 16000, + "value": 1234082, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Hologram Shark", - "pt": 2, + "id": "Camo Axolotl", }, - "value": 756233297, + "value": 7106785, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Dino", + "id": "Blue Fish", "pt": 1, }, - "value": 452, + "value": 12414371, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Shimmering Fish", - "pt": 1, - "sh": true, + "id": "Abyssal Pufferfish", }, - "value": 202, + "value": 11047781, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Blue Marshmallow Chick", - "pt": 1, + "id": "Tiedye Axolotl", }, - "value": 371, + "value": 511675, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Titanic Stargazing Bull", + "id": "Moray Eel", + "pt": 1, }, - "value": 13642510944, + "value": 388505, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Nightmare Spirit", - "pt": 2, - "sh": true, + "id": "Axolotl", }, - "value": 291181506, + "value": 76685013, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Frostbyte Deer", - "pt": 2, - "sh": true, + "id": "Goldfish", + "pt": 1, }, - "value": 299, + "value": 12076903, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Mosaic Lamb", - "sh": true, + "id": "Goldfish", }, - "value": 296769753, + "value": 108756958, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Gary the Snail", - "pt": 2, + "id": "Blue Fish", }, - "value": 14281898, + "value": 111723392, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Penguin", + "id": "Axolotl", "pt": 1, - "sh": true, }, - "value": 3312, + "value": 8517993, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Old Wizard Dragon", + "id": "Dolphin", "pt": 1, }, - "value": 57945920, + "value": 653366, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Hologram Shark", - "pt": 2, + "id": "Axolotl", + "sh": true, }, - "value": 12842558, + "value": 768080, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Horse", - "pt": 2, - "sh": true, + "id": "Moray Eel", }, - "value": 100000, + "value": 3503072, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Fox", + "id": "Green Fish", + "pt": 1, }, - "value": 72, + "value": 1716509, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Floppa", - "pt": 2, + "id": "Seal", + "pt": 1, }, - "value": 751181264, + "value": 4372682, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Hologram Axolotl", - "pt": 2, - "sh": true, + "id": "Dolphin", }, - "value": 192355841, + "value": 5889827, }, { - "category": "Pet", + "category": "Tool", "configData": { - "id": "Evil Imp", - "pt": 2, - "sh": true, + "id": "Event Kraken Fishing Rod", }, - "value": 406, + "value": 28040, }, { "category": "Pet", "configData": { - "id": "Blue Marshmallow Chick", - "pt": 2, + "id": "Aura Bull", "sh": true, }, - "value": 100000, + "value": 2651, }, { "category": "Pet", "configData": { - "id": "Emoji Cat", + "id": "Captain Octopus", + "pt": 2, }, - "value": 3526810, + "value": 812848, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Lunar Moth", - "pt": 2, + "id": "Goldfish", + "sh": true, }, - "value": 1114, + "value": 1088528, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Rhino", - "pt": 2, - "sh": true, + "id": "Abyssal Kraken", }, - "value": 249000, + "value": 1539736, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Nightmare Bear", + "id": "Green Fish", "pt": 2, }, - "value": 16780401, + "value": 167753, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Penguin", - "pt": 1, + "id": "Banana Peel", }, - "value": 81, + "value": 29141426, }, { "category": "Pet", "configData": { - "id": "Abyssal Dolphin", - "sh": true, + "id": "Huge Mystical Whale", + "pt": 1, }, - "value": 2668, + "value": 2735, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Peacock", - "pt": 2, + "id": "Abyssal Pufferfish", + "pt": 1, }, - "value": 2408, + "value": 1225906, }, { "category": "Pet", "configData": { - "id": "African Wild Dog", + "id": "Skeleton Shark", "pt": 1, - "sh": true, }, - "value": 10000, + "value": 399015, }, { "category": "Pet", "configData": { - "id": "Heart Balloon Cat", + "id": "Aura Dominus", "sh": true, }, - "value": 19950496, + "value": 1364, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Bobcat", - "pt": 2, + "id": "Abyssal Fish", }, - "value": 2317, + "value": 11918382, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Wireframe Dog", + "id": "Blue Fish", "sh": true, }, - "value": 48, + "value": 1109618, }, { "category": "Pet", "configData": { - "id": "Crocodile", - "pt": 2, + "id": "Aura Fox", + "sh": true, }, - "value": 11617, + "value": 4247, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Flower Gecko", + "id": "Goldfish", "pt": 2, }, - "value": 331, + "value": 1209003, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Angelus", - "sh": true, + "id": "Pufferfish", + "pt": 1, }, - "value": 3480, + "value": 1952704, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Chroma Phoenix", - "pt": 2, + "id": "Ghost Axolotl", }, - "value": 15824, + "value": 1469099, }, { "category": "Pet", "configData": { - "id": "Huge Lumi Axolotl", + "id": "Huge Aura Fox", + "pt": 2, }, - "value": 80004138, + "value": 706, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Cosmic Dragon", - "sh": true, + "id": "Jellyfish", }, - "value": 13914616, + "value": 62322, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Hippo", - "pt": 1, + "id": "Pufferfish", + "sh": true, }, - "value": 143, + "value": 176607, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Disco Ball Dragon", - "pt": 1, - "sh": true, + "id": "Koi Fish", }, - "value": 5396957, + "value": 1228720, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Easter Cat", + "id": "Camo Axolotl", + "pt": 1, }, - "value": 580123920, + "value": 788909, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Cyberpunk Husky", - "pt": 1, + "id": "Seal", + "pt": 2, }, - "value": 425, + "value": 439335, }, { "category": "Pet", "configData": { - "id": "Turtle", - "pt": 1, + "id": "Skeleton Shark", }, - "value": 76, + "value": 6926586, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge White Balloon Cat", + "id": "Abyssal Pufferfish", "pt": 2, }, - "value": 2354336029, + "value": 120846, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Skeleton", + "id": "Green Fish", "sh": true, }, - "value": 484561122, + "value": 151614, }, { "category": "Pet", "configData": { - "id": "Huge Sage Axolotl", - "pt": 2, + "id": "Huge Aura Dominus", }, - "value": 452101967, + "value": 4556, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Pixel Shark", + "id": "Alien Octopus", }, - "value": 2112689702, + "value": 106544, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Ninja Raccoon", - "pt": 2, + "id": "Blue Fish", + "pt": 1, + "sh": true, }, - "value": 518, + "value": 123887, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Hacked Skeleton", + "id": "Axolotl", "pt": 2, }, - "value": 652, - }, - { - "category": "Pet", - "configData": { - "id": "Huge Crowned Cat", - }, - "value": 8358709243, + "value": 853396, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Sailor Shark", - "pt": 2, + "id": "Cosmic Axolotl", }, - "value": 1001, + "value": 20485725, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Cyclops", - "pt": 2, + "id": "Abyssal Kraken", + "pt": 1, }, - "value": 242, + "value": 170181, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Exquisite Elephant", + "id": "Seal", + "sh": true, }, - "value": 8046410, + "value": 394011, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Monkey", + "id": "Camo Axolotl", "sh": true, }, - "value": 634622, + "value": 70094, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Elephant", + "id": "Abyssal Pufferfish", "sh": true, }, - "value": 582, + "value": 108387, }, { "category": "Pet", "configData": { - "id": "Desert Ram", + "id": "Skeleton Shark", "pt": 2, }, - "value": 12727, + "value": 302306, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Prison Axolotl", + "id": "Camo Axolotl", "pt": 2, "sh": true, }, - "value": 1680, + "value": 796, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Witch Cat", - "pt": 1, - "sh": true, + "id": "Stingray", }, - "value": 966, + "value": 6619161, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Sock Corgi", + "id": "Stargazing Axolotl", }, - "value": 11957666, + "value": 3321523, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Frost Fox", - "sh": true, + "id": "Camo Axolotl", + "pt": 2, }, - "value": 2188, + "value": 77976, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Nightfall Pegasus", + "id": "Shark", }, - "value": 143248904, + "value": 249531, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Evolved Pterodactyl", + "id": "Blurred Axolotl", }, - "value": 155576228, + "value": 9862222, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Umbrella Cat", + "id": "Koi Fish", + "pt": 1, }, - "value": 73, + "value": 135968, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Bee", + "id": "Goldfish", "pt": 1, + "sh": true, }, - "value": 26, + "value": 121128, }, { "category": "Pet", "configData": { - "id": "Blue Slime", + "id": "Huge Mystical Whale", + "sh": true, }, - "value": 49, + "value": 154, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Kawaii Dragon", + "id": "Axolotl", + "pt": 1, + "sh": true, }, - "value": 95134548, + "value": 85555, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Pink Marshmallow Chick", - "pt": 1, + "id": "Abyssal Axolotl", }, - "value": 393737181, + "value": 33367335, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Wicked Angelus", + "id": "Seal", + "pt": 1, + "sh": true, }, - "value": 77257495, + "value": 43778, }, { "category": "Pet", "configData": { - "id": "Demolition Cat", - "pt": 2, + "id": "Huge Mystical Whale", + "pt": 1, + "sh": true, }, - "value": 3080, + "value": 30, }, { - "category": "Pet", + "category": "Catch", "configData": { - "cv": 1, - "id": "Huge Chroma Butterfly", + "id": "Blurred Axolotl", + "pt": 1, }, - "value": 63579763, + "value": 1093832, }, { - "category": "Pet", + "category": "Tool", "configData": { - "id": "Prison Cow", + "id": "Event Deep Sea Fishing Rod", + }, + "value": 10079, + }, + { + "category": "Catch", + "configData": { + "id": "Tiedye Axolotl", "pt": 1, }, - "value": 27, + "value": 56871, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Tiedye Bunny", + "id": "Pufferfish", "pt": 2, - "sh": true, }, - "value": 1250507786, + "value": 195752, }, { - "category": "Pet", + "category": "Catch", "configData": { - "cv": 3, - "id": "Huge Chroma Phoenix", - "pt": 2, + "id": "Atlantean Stingray", }, - "value": 707644952, + "value": 1000226550, }, { "category": "Pet", "configData": { - "id": "Huge Gecko", - "pt": 1, + "id": "Titanic Aura Kitsune", }, - "value": 650051369, + "value": 1174, }, { - "category": "Pet", + "category": "Catch", "configData": { - "cv": 1, - "id": "Huge Chroma Swan", + "id": "Moray Eel", + "pt": 2, }, - "value": 169835998, + "value": 38153, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Reindeer Cat", - "pt": 1, + "id": "Abyssal Dolphin", }, - "value": 511423, + "value": 12087995, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Happy Rock", - "pt": 1, + "id": "Koi Fish", + "pt": 2, }, - "value": 2420114728, + "value": 13525, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Super Tiger", + "id": "Dolphin", + "sh": true, }, - "value": 8483990, + "value": 58800, }, { "category": "Pet", "configData": { - "id": "Tiedye Axolotl", + "id": "Captain Octopus", + "sh": true, }, - "value": 3664924, + "value": 17067, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Cow", + "id": "Dolphin", + "pt": 2, }, - "value": 33, + "value": 65478, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Unicorn", + "id": "Abyssal Kraken", + "sh": true, }, - "value": 120106711, + "value": 15095, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Disco Ball Dragon", - "pt": 2, + "id": "Stargazing Axolotl", + "pt": 1, }, - "value": 42454, + "value": 369423, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Abyssal Shark", - "sh": true, + "id": "Sea Dragon", }, - "value": 7399, + "value": 718144594, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Goblin", + "id": "Blue Fish", + "pt": 2, + "sh": true, }, - "value": 37940684, + "value": 12397, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Red Dragon", - "pt": 1, + "id": "Moray Eel", "sh": true, }, - "value": 85980, + "value": 34773, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Jolly Penguin", + "id": "Abyssal Kraken", "pt": 2, - "sh": true, }, - "value": 2920000000, + "value": 16980, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Ghoul Horse", + "id": "Abyssal Axolotl", "pt": 1, }, - "value": 105076884, + "value": 3703269, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Ninja Cat", + "id": "Koi Fish", "sh": true, }, - "value": 1433, + "value": 12378, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Gummy Bear", + "id": "Shark", + "pt": 1, }, - "value": 1014, + "value": 27696, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Mosaic Dove", - "pt": 1, - "sh": true, + "id": "Astral Axolotl", }, - "value": 70678619, + "value": 435648807, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Bobcat", - "sh": true, + "id": "Whale Shark", }, - "value": 214, + "value": 491523, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Divinus", - "pt": 2, + "id": "Blurred Axolotl", "sh": true, }, - "value": 4342569739, + "value": 97859, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Alien Arachnid", + "id": "Pufferfish", "pt": 1, "sh": true, }, - "value": 1988, + "value": 19627, }, { "category": "Pet", "configData": { - "id": "Huge Holographic Cat", + "id": "Huge Aura Fox", + "sh": true, + }, + "value": 776, + }, + { + "category": "Catch", + "configData": { + "id": "Abyssal Fish", "pt": 1, }, - "value": 40213242, + "value": 1322219, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Triceratops", + "id": "Goldfish", "pt": 2, "sh": true, }, - "value": 1400, + "value": 12155, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Safari Dog", + "id": "Green Fish", "pt": 2, + "sh": true, }, - "value": 471, + "value": 1589, }, { "category": "Pet", "configData": { - "id": "Huge Propeller Cat", + "id": "Leafy Seahorse", + "pt": 2, }, - "value": 42965775, + "value": 274617, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Demolition Cat", + "id": "Stingray", + "pt": 1, }, - "value": 3386, + "value": 735006, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Scuba Dog", - "pt": 1, + "id": "Alien Octopus", + "pt": 2, }, - "value": 1453, + "value": 1161, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Nightmare Spirit", + "id": "Abyssal Pufferfish", + "pt": 2, + "sh": true, }, - "value": 3308942, + "value": 1170, }, { "category": "Pet", "configData": { - "id": "Ice Penguin", + "id": "Leafy Seahorse", }, - "value": 163, + "value": 5074816, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Jaguar", + "id": "Sea Dragon", + "pt": 2, }, - "value": 751, + "value": 8016175, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Cold Butterfly", - "sh": true, + "id": "Astral Axolotl", + "pt": 1, }, - "value": 3976, + "value": 48405580, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Reindeer Corgi", + "id": "Alien Octopus", "sh": true, }, - "value": 20293479, + "value": 1044, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Tiedye Cat", + "id": "Green Fish", "pt": 1, "sh": true, }, - "value": 1171572491, + "value": 16933, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Party Dog", - "pt": 1, + "id": "Stargazing Axolotl", "sh": true, }, - "value": 7122560074, + "value": 33190, }, { "category": "Pet", "configData": { - "id": "Hacker Cat", - "pt": 1, + "id": "Huge Aura Dominus", + "sh": true, }, - "value": 1521, + "value": 200, }, { "category": "Pet", "configData": { - "id": "Huge Pixel Corgi", + "id": "Huge Anglerfish", }, - "value": 44840558, + "value": 109043, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Electric Dino", + "id": "Ghost Axolotl", "pt": 1, }, - "value": 55673202, + "value": 162565, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Corgi", - "pt": 2, + "id": "Alien Octopus", + "pt": 1, }, - "value": 3046413122, + "value": 11686, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Squirrel", + "id": "Atlantean Stingray", "pt": 1, }, - "value": 69171680, + "value": 111119315, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Titanic Classic Cat", + "id": "Mystical Whale", }, - "value": 12623613533, + "value": 188820300, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Electric Fox", + "id": "Abyssal Fish", "pt": 2, }, - "value": 30682, + "value": 131087, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge White Balloon Cat", + "id": "Rave Axolotl", }, - "value": 1155376411, + "value": 21032, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Turtle", - "pt": 2, + "id": "Abyssal Dolphin", + "pt": 1, + }, + "value": 1342177, + }, + { + "category": "Catch", + "configData": { + "id": "Abyssal Fish", "sh": true, }, - "value": 1, + "value": 118376, }, { "category": "Pet", "configData": { - "id": "Colorful Slime", + "id": "Aura Fox", + "pt": 2, "sh": true, }, - "value": 2528, + "value": 304, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Masked Owl", + "id": "Camo Axolotl", "pt": 1, "sh": true, }, - "value": 5184000, + "value": 7865, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Piggy", + "id": "Abyssal Pufferfish", + "pt": 1, "sh": true, }, - "value": 55530, + "value": 12174, }, { "category": "Pet", "configData": { - "id": "Fairy Ladybug", + "id": "Pirate Dog", + "sh": true, }, - "value": 153, + "value": 28952, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Shadow Griffin", - "pt": 2, + "id": "Alien Axolotl", }, - "value": 2341874622, + "value": 5340, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Cyborg Capybara", + "id": "Sea Dragon", + "pt": 1, }, - "value": 485740744, + "value": 79798133, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Matrix Monkey", + "id": "Tiedye Axolotl", + "sh": true, }, - "value": 10544, + "value": 5012, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Cyborg Capybara", + "id": "Tiedye Axolotl", "pt": 2, }, - "value": 56201051, + "value": 5646, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Present Cat", + "id": "Cosmic Axolotl", "pt": 1, }, - "value": 485546, + "value": 2274649, }, { "category": "Pet", "configData": { - "id": "Huge Rave Troll", + "id": "Aura Bull", + "pt": 2, "sh": true, }, - "value": 906558253, + "value": 231, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Firefighter Dalmation", + "id": "Rave Axolotl", + "pt": 1, }, - "value": 147342577, + "value": 2348, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Prince Donkey", - "pt": 2, + "id": "Dolphin", + "pt": 1, + "sh": true, }, - "value": 804, + "value": 6500, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Jelly Monkey", + "id": "Blurred Axolotl", + "pt": 2, }, - "value": 207868196, + "value": 109141, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Red Panda", - "sh": true, + "id": "Hydra Axolotl", + "pt": 1, }, - "value": 1198, + "value": 98269, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Arctic Fox", - "pt": 1, + "id": "Atlantean Stingray", + "pt": 2, }, - "value": 651, + "value": 11166232, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Storm Agony", - "pt": 2, + "id": "Whale Shark", + "pt": 1, }, - "value": 1947360494, + "value": 54379, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Firefighter Dalmation", - "sh": true, + "id": "Steampunk Fish", }, - "value": 720912224, + "value": 5179250, }, { "category": "Pet", "configData": { - "id": "Prince Donkey", + "id": "Huge Aura Dominus", "pt": 2, - "sh": true, }, - "value": 346, + "value": 145, }, { "category": "Pet", "configData": { - "id": "Grim Reaper", + "id": "Huge Anglerfish", "pt": 1, - "sh": true, }, - "value": 862176, + "value": 21915, }, { "category": "Pet", "configData": { - "id": "Enchanted Cat", + "id": "Aura Dominus", "pt": 2, + "sh": true, }, - "value": 9774, + "value": 100, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Dog", - "pt": 1, + "id": "Shadow Dolphin", }, - "value": 739699813, + "value": 102323, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Cat", + "id": "Stingray", "sh": true, }, - "value": 88185, + "value": 66081, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Empyrean Stallion", + "id": "Mystical Whale", + "pt": 1, }, - "value": 299, + "value": 20975393, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Electric Penguin", + "id": "Atlantean Dolphin", + }, + "value": 32280832, + }, + { + "category": "Catch", + "configData": { + "id": "Pufferfish", "pt": 2, + "sh": true, }, - "value": 79456541, + "value": 1949, }, { - "category": "Pet", + "category": "Tool", "configData": { - "id": "Police Cat", - "pt": 1, + "id": "Event Sturdy Fishing Rod", }, - "value": 101072, + "value": 913831, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Hologram Tiger", - "sh": true, + "id": "Hydra Axolotl", }, - "value": 10386346, + "value": 881456, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Stealth Bobcat", - "pt": 2, + "id": "Abyssal Kraken", + "pt": 1, "sh": true, }, - "value": 2336601660, + "value": 1607, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Skateboard Bulldog", + "id": "Mystical Whale", "pt": 2, }, - "value": 79484738, + "value": 2107700, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Lucky Cat", + "id": "Atlantean Stingray", + "sh": true, }, - "value": 290277467, + "value": 10050766, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Chest Mimic", + "id": "Moray Eel", + "pt": 1, + "sh": true, }, - "value": 71911152, + "value": 3912, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Dominus Astra", + "id": "Abyssal Axolotl", + "sh": true, }, - "value": 67757320, + "value": 333133, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Enchanted Cat", + "id": "Steampunk Fish", "pt": 1, }, - "value": 2899, + "value": 576283, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Empyrean Dragon", + "id": "Axolotl", + "pt": 2, + "sh": true, }, - "value": 552, + "value": 8677, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Graffiti Dino", - "pt": 1, + "id": "Cosmic Axolotl", "sh": true, }, - "value": 168, + "value": 205500, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Empyrean Dragon", - "pt": 2, - "sh": true, + "id": "Orca", }, - "value": 54197, + "value": 6214, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Crystal Dog", - "pt": 2, + "id": "Atlantean Dolphin", + "pt": 1, }, - "value": 17350970, + "value": 3587089, }, { "category": "Pet", "configData": { - "id": "Chroma Tiger", + "id": "Seamine Pufferfish", "pt": 2, }, - "value": 7133, + "value": 153054071, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Black Hole Axolotl", - "pt": 2, + "id": "Sea Dragon", "sh": true, }, - "value": 4368000006, + "value": 7211759, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Clout Cat", - "sh": true, + "id": "Ghost Axolotl", + "pt": 2, }, - "value": 7631947, + "value": 15982, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Cyberpunk Dog", + "id": "Midnight Axolotl", }, - "value": 140, + "value": 9732622, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Knife Cat", - "sh": true, + "id": "Shadow Kraken", }, - "value": 7547366, + "value": 5058, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Panther", - "pt": 2, + "id": "Jellyfish", + "pt": 1, }, - "value": 91, + "value": 6757, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Piggy", + "id": "Abyssal Axolotl", "pt": 2, - "sh": true, }, - "value": 800, + "value": 371697, }, { "category": "Pet", "configData": { - "id": "Huge Kawaii Dragon", - "pt": 2, + "id": "Leafy Seahorse", + "pt": 1, }, - "value": 623153630, + "value": 392698, }, { - "category": "Pet", + "category": "Catch", "configData": { - "cv": 6, - "id": "Huge Chroma Unicorn", + "id": "Atlantean Stingray", + "pt": 2, + "sh": true, }, - "value": 64048225, + "value": 112599, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Titanic Blazing Dragon", + "id": "Alien Axolotl", + "sh": true, }, - "value": 16892134887, + "value": 53, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Tabby Cat", + "id": "Astral Axolotl", + "pt": 2, }, - "value": 5890, + "value": 4863049, }, { "category": "Pet", "configData": { - "id": "Huge Amethyst Dragon", + "id": "Seamine Pufferfish", }, - "value": 180833492, + "value": 577892020, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Snowflake Pegasus", - "pt": 1, - "sh": true, + "id": "Shark", + "pt": 2, }, - "value": 142400000, + "value": 2803, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Scary Corgi", + "id": "Cosmic Axolotl", "pt": 2, }, - "value": 333735268, + "value": 227993, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Mystical Fox", - "pt": 2, + "id": "Abyssal Jellyfish", + "pt": 1, }, - "value": 215, + "value": 2262, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Pineapple Cat", - "pt": 2, + "id": "Abyssal Shark", }, - "value": 8124, + "value": 265687, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Sun Agony", + "id": "Abyssal Dolphin", "pt": 2, }, - "value": 2094802169, + "value": 134756, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Black Widow", + "id": "Seal", + "pt": 2, + "sh": true, }, - "value": 978, + "value": 4354, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Enchanted Elephant", + "id": "Astral Axolotl", "sh": true, }, - "value": 4791, + "value": 4379360, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Lava Scorpion", + "id": "Abyssal Dolphin", + "sh": true, }, - "value": 9759394, + "value": 120998, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Evolved Peacock", + "id": "Stingray", "pt": 2, }, - "value": 882769143, + "value": 73785, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Pastel Goat", + "id": "Ghost Axolotl", "sh": true, }, - "value": 928, + "value": 14659, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Green Cobra", + "id": "Abyssal Axolotl", + "pt": 1, "sh": true, }, - "value": 175, + "value": 37210, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Abyssal Shark", + "id": "Blurred Axolotl", "pt": 1, + "sh": true, }, - "value": 9015799, + "value": 11053, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Nightmare Spirit", + "id": "Whale Shark", + "sh": true, }, - "value": 113405152, + "value": 4862, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Woodpecker", + "id": "Steampunk Fish", "pt": 2, - "sh": true, }, - "value": 45016, + "value": 57723, }, { "category": "Pet", "configData": { - "id": "Emerald Monkey", - "sh": true, + "id": "Seamine Pufferfish", + "pt": 1, }, - "value": 9326766, + "value": 46503761, }, { - "category": "Pet", + "category": "Catch", "configData": { - "cv": 5, - "id": "Huge Chroma Tiger", - "pt": 2, + "id": "Sea Dragon", + "pt": 1, "sh": true, }, - "value": 7000000030, + "value": 801478, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Dino", + "id": "Moray Eel", "pt": 2, "sh": true, }, - "value": 36088, - }, - { - "category": "Pet", - "configData": { - "id": "Titanic Blue Balloon Cat", - }, - "value": 13539085337, + "value": 356, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Unicorn", + "id": "Shark", "pt": 1, + "sh": true, }, - "value": 623608344, + "value": 254, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Easter Bunny", + "id": "Stingray", + "pt": 1, "sh": true, }, - "value": 312486046, + "value": 7300, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Hacker Corgi", + "id": "Tiedye Axolotl", "pt": 2, "sh": true, }, - "value": 5169, + "value": 56, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Flex Bear", - "pt": 2, + "id": "Steampunk Fish", "sh": true, }, - "value": 193728066, + "value": 51958, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Kangaroo", + "id": "Dolphin", + "pt": 2, + "sh": true, }, - "value": 861, + "value": 653, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge BIG Maskot", + "id": "Stargazing Axolotl", + "pt": 2, }, - "value": 84058725, + "value": 36596, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Hacker Bear", + "id": "Atlantean Stingray", + "pt": 1, "sh": true, }, - "value": 740, + "value": 1116383, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Enchanted Cat", + "id": "Alien Axolotl", + "pt": 1, }, - "value": 192, + "value": 577, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Enchanted Dragon", + "id": "Rave Axolotl", + "pt": 2, }, - "value": 216, + "value": 237, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Rave Butterfly", + "id": "Abyssal Fish", "pt": 1, "sh": true, }, - "value": 1388979609, + "value": 13126, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Agony", - "sh": true, + "id": "Abyssal Jellyfish", }, - "value": 8360, + "value": 20824, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Pineapple Cat", - "pt": 1, + "id": "Storm Axolotl", }, - "value": 194, + "value": 968479, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Evil Deer", + "id": "Whale Shark", "pt": 2, }, - "value": 264, + "value": 5316, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Sad Doge", + "id": "Orca", + "pt": 1, }, - "value": 4637945, + "value": 707, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Starfall Dragon", + "id": "Tiedye Axolotl", + "pt": 1, + "sh": true, }, - "value": 9058862, + "value": 552, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Jelly Panda", - "pt": 2, + "id": "Astral Axolotl", + "pt": 1, + "sh": true, }, - "value": 18246662, + "value": 486162, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Diamond Cat", - "pt": 2, + "id": "Mystical Whale", + "sh": true, }, - "value": 37621818, + "value": 1897571, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Shark", + "id": "Midnight Axolotl", "pt": 1, }, - "value": 543, + "value": 1080372, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Pastel Sock Dragon", + "id": "Shadow Dolphin", + "sh": true, }, - "value": 294592065, + "value": 986, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Butterfly", - "pt": 2, + "id": "Stargazing Axolotl", + "pt": 1, + "sh": true, }, - "value": 10064, + "value": 3735, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Ducky Magician", + "id": "Titanic Sea Dragon Card", "pt": 2, + "sh": true, }, - "value": 2144, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Flex Fluffy Cat", - "pt": 2, + "id": "Gargantuan Aura Cat", }, - "value": 10185527, + "value": 93, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Holographic Cat", + "id": "Shark", "sh": true, }, - "value": 4945, + "value": 2486, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Jelly Piggy", - "sh": true, + "id": "Shadow Dolphin", + "pt": 1, }, - "value": 15538548, + "value": 11483, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Atlantean Orca", + "id": "Blurred Axolotl", + "pt": 2, "sh": true, }, - "value": 10859117, + "value": 1082, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Fawn", + "id": "Kraken", + "pt": 1, + }, + "value": 60, + }, + { + "category": "Catch", + "configData": { + "id": "Orca", "pt": 1, "sh": true, }, - "value": 500000, + "value": 6, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Clown Cat", + "id": "Koi Fish", + "pt": 1, + "sh": true, }, - "value": 143, + "value": 1356, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Mining Cat", + "id": "Koi Fish", "pt": 2, + "sh": true, }, - "value": 139, + "value": 120, }, { "category": "Pet", "configData": { - "id": "Huge Dove", - "pt": 2, + "id": "Mystical Whale", }, - "value": 2923034039, + "value": 57592313, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Skeleton Cat", + "id": "Abyssal Shark", "pt": 1, - "sh": true, }, - "value": 2880932, + "value": 29439, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Desert Ram", - "sh": true, + "id": "Axolotuus", }, - "value": 1906, + "value": 26205, }, { "category": "Pet", "configData": { - "id": "Floatie Flamingo", + "id": "Huge Anglerfish", "pt": 2, }, - "value": 37, + "value": 4191, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Enchanted Fox", + "id": "Jellyfish", + "sh": true, }, - "value": 598, + "value": 595, }, { "category": "Pet", "configData": { - "id": "Huge Kawaii Dragon", - "pt": 1, + "id": "Mystical Whale", + "pt": 2, }, - "value": 330216253, + "value": 8541218, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Dove", - "pt": 2, - "sh": true, + "id": "Storm Axolotl", + "pt": 1, }, - "value": 3250, + "value": 107388, }, { "category": "Pet", "configData": { - "id": "Frostbyte Fox", + "id": "Pirate Dog", + "pt": 1, "sh": true, }, - "value": 1837, + "value": 5138, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Dragon", + "id": "Alien Axolotl", "pt": 2, }, - "value": 16586, + "value": 58, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Relic Agony", - "sh": true, + "id": "Kraken", }, - "value": 2329, + "value": 528, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Elf Dog", + "id": "Cosmic Axolotl", "pt": 1, "sh": true, }, - "value": 820557321, + "value": 22712, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "M-2 PROTOTYPE", - "pt": 1, + "id": "Abyssal Kraken", + "pt": 2, "sh": true, }, - "value": 9228, + "value": 199, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Cyberpunk Lemur", - "pt": 1, + "id": "Abyssal Axolotl", + "pt": 2, + "sh": true, }, - "value": 4078, + "value": 3635, }, { - "category": "Pet", + "category": "Tool", "configData": { - "id": "Huge Bloo Cat", + "id": "Event Stone Fishing Rod", }, - "value": 218456259, + "value": 587489, }, { "category": "Pet", "configData": { - "id": "Witch Cat", + "id": "Rogue Squid", + }, + "value": 9199187, + }, + { + "category": "Catch", + "configData": { + "id": "Hellish Axolotl", + }, + "value": 5406, + }, + { + "category": "Catch", + "configData": { + "id": "Abyssal Dolphin", + "pt": 1, "sh": true, }, - "value": 72538, + "value": 13582, }, { "category": "Pet", "configData": { - "id": "Frostbyte Yeti", - "pt": 2, + "id": "Mystical Whale", + "pt": 1, }, - "value": 2843, + "value": 5647609, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Calico Cat", + "id": "Sea Dragon", + "pt": 2, "sh": true, }, - "value": 6840, + "value": 80945, }, { "category": "Pet", "configData": { - "id": "Neon Twilight Tiger", + "id": "Rogue Squid", "pt": 2, }, - "value": 16513948, + "value": 1732138, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Scarecrow Cat", + "id": "Midnight Axolotl", "sh": true, }, - "value": 3603, + "value": 97774, }, { "category": "Pet", "configData": { - "id": "Gemstone Gargoyle Dragon", - "pt": 1, + "id": "Skeleton Shark", "sh": true, }, - "value": 143622, + "value": 11526, }, { "category": "Pet", "configData": { - "id": "Rave Bunny", + "id": "Skeleton Shark", "pt": 1, + "sh": true, }, - "value": 2421, + "value": 2707, }, { "category": "Pet", "configData": { - "id": "Ronin Panda", + "id": "Captain Octopus", "pt": 1, "sh": true, }, - "value": 1, + "value": 4756, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Glitched Phoenix", + "id": "Rave Axolotl", "sh": true, }, - "value": 50, + "value": 205, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Lemur", + "id": "Storm Axolotl", "sh": true, }, - "value": 581, + "value": 9721, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Rock Cat", + "id": "Boat 2", }, - "value": 153, + "value": 209828, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Chroma Lucky Block Mimic", + "id": "Hydra Axolotl", + "pt": 2, }, - "value": 184013359, + "value": 9689, }, { "category": "Pet", "configData": { - "id": "Huge Mosaic Corgi", + "id": "Rogue Squid", "pt": 1, }, - "value": 66540943, + "value": 1245347, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Titanic Arcane Cat", + "id": "Mystical Whale", "pt": 2, + "sh": true, }, - "value": 22936320009, + "value": 21313, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Anime Unicorn", - "pt": 1, + "id": "Atlantean Jellyfish", }, - "value": 1, + "value": 194366, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Poseidon Dog", - "sh": true, + "id": "Kaiju Sea Dragon", }, - "value": 652, + "value": 48407, }, { "category": "Pet", "configData": { - "id": "Huge Snowman", - "pt": 1, + "id": "Huge Rogue Squid", "sh": true, }, - "value": 6250000000, + "value": 5755, }, { "category": "Pet", "configData": { - "id": "Hedgehog", + "id": "Huge Rogue Squid", + "pt": 1, }, - "value": 269, + "value": 127888, }, { "category": "Pet", "configData": { - "id": "Triceratops", - "pt": 1, + "id": "Huge Rogue Squid", + "pt": 2, }, - "value": 715, + "value": 25385, }, { "category": "Pet", "configData": { - "id": "Angel Seal", - "pt": 1, + "id": "Huge Rogue Squid", }, - "value": 693, + "value": 621260, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Tiedye Axolotl", + "id": "Shadow Kraken", "pt": 1, - "sh": true, }, - "value": 4101981889, + "value": 566, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Mining Cat", + "id": "Atlantean Dolphin", "sh": true, }, - "value": 1783, + "value": 324279, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Emerald Monkey", - "pt": 2, + "id": "Frontman Jellyfish", }, - "value": 16679677, + "value": 1361, }, { "category": "Pet", "configData": { - "id": "Cat", - "pt": 2, + "id": "Titanic Captain Octopus", + "pt": 1, + "sh": true, }, - "value": 24755, + "value": 15, }, { "category": "Pet", "configData": { - "id": "Peacock", + "id": "Huge Rogue Squid", "pt": 1, "sh": true, }, - "value": 500, + "value": 972, }, { "category": "Pet", "configData": { - "id": "Research Dog", + "id": "Huge Rogue Squid", "pt": 2, + "sh": true, }, - "value": 516, + "value": 160, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Tiedye Cat", - "pt": 2, + "id": "Corrupt Octopus", }, - "value": 23783645, + "value": 528, }, { "category": "Pet", "configData": { - "id": "Melted Rock", + "id": "Huge Anglerfish", + "pt": 2, + "sh": true, }, - "value": 1130, + "value": 34, }, { "category": "Pet", "configData": { - "id": "Green Fish", + "id": "Titanic Captain Octopus", "sh": true, }, - "value": 2912, + "value": 13, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Tropical Flamingo", + "id": "Axolotuus", "pt": 2, }, - "value": 1343871992, + "value": 302, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Valkyrie Wolf", - "pt": 2, + "id": "Alien Octopus", + "pt": 1, "sh": true, }, - "value": 12000000000, + "value": 134, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Frostbyte Bat", + "id": "Atlantean Dolphin", + "pt": 2, }, - "value": 122, + "value": 360143, }, { "category": "Pet", "configData": { - "id": "Axolotl", + "id": "Titanic Captain Octopus", "pt": 1, - "sh": true, }, - "value": 1277, + "value": 19, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Evil Imp", + "id": "Mystical Whale", + "pt": 1, + "sh": true, }, - "value": 48477294, + "value": 210335, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Snow Dog", + "id": "Steampunk Fish", + "pt": 1, "sh": true, }, - "value": 13794, + "value": 5806, }, { "category": "Pet", "configData": { - "id": "Huge Ninja Axolotl", + "id": "Seamine Pufferfish", + "pt": 2, + "sh": true, }, - "value": 132761098, + "value": 830670, }, { "category": "Pet", "configData": { - "id": "Prison Bunny", + "id": "Seamine Pufferfish", + "pt": 1, + "sh": true, }, - "value": 44, + "value": 616865, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Plague Dragon", + "id": "Hydra Axolotl", + "sh": true, }, - "value": 48118386, + "value": 8919, }, { - "category": "Pet", + "category": "Tool", "configData": { - "id": "Huge Cow", - "pt": 1, - "sh": true, + "id": "Event Iron Fishing Rod", }, - "value": 14500000000, + "value": 455085, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Mermaid Cat", - "sh": true, + "id": "Jellyfish", + "pt": 2, }, - "value": 2691, + "value": 702, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Sandcastle Dog", + "id": "Stingray", + "pt": 2, "sh": true, }, - "value": 1130, + "value": 718, }, { - "category": "Pet", + "category": "Tool", "configData": { - "id": "Pirate Parrot", - "pt": 2, + "id": "Event Golden Fishing Rod", }, - "value": 582, + "value": 427671, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Wireframe Cat", + "id": "Axolotuus", "pt": 1, }, - "value": 551, + "value": 2920, }, { "category": "Pet", "configData": { - "id": "Hot Air Balloon Dog", + "id": "Titanic Aura Kitsune", "pt": 2, - "sh": true, }, - "value": 43024, + "value": 45, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Cosmic Agony", - "sh": true, + "id": "Boat 3", }, - "value": 22829935, + "value": 209608, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Blue Marshmallow Chick", - "sh": true, + "id": "Corrupt Octopus", + "pt": 1, }, - "value": 24397, + "value": 41, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Glitched Dominus", - "pt": 1, + "id": "Abyssal Fish", + "pt": 2, + "sh": true, }, - "value": 164, + "value": 1285, }, { - "category": "Pet", + "category": "Tool", "configData": { - "id": "Huge Pony", + "id": "Event Platinum Fishing Rod", }, - "value": 158202938, + "value": 377037, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Emerald Carbuncle", + "id": "Shadow Dolphin", "pt": 2, }, - "value": 163, + "value": 1111, }, { "category": "Pet", "configData": { - "id": "Black Hole Angelus", + "id": "Seamine Pufferfish", "sh": true, }, - "value": 16024502, + "value": 2331649, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Cow", + "id": "Atlantean Dolphin", "pt": 1, "sh": true, }, - "value": 2500, + "value": 36521, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Fluffy Cat", - "pt": 1, + "id": "Abyssal Jellyfish", "sh": true, }, - "value": 277852423, + "value": 201, }, { "category": "Pet", "configData": { - "id": "Cool Dragon", + "id": "Captain Octopus", + "pt": 2, + "sh": true, }, - "value": 6713453, + "value": 7089, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Cyber Slime", - "pt": 2, + "id": "Whale Shark", + "pt": 1, + "sh": true, }, - "value": 315, + "value": 536, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Atlantean Stingray", - "pt": 2, + "id": "Ghost Axolotl", + "pt": 1, + "sh": true, }, - "value": 20113611, + "value": 1672, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Tiedye Griffin", - "pt": 1, - "sh": true, + "id": "Abyssal Jellyfish", + "pt": 2, }, - "value": 137442629, + "value": 237, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Pixie Fox", + "id": "Shadow Kraken", + "pt": 2, }, - "value": 242, + "value": 56, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Rave Cat", + "id": "Rave Axolotl", "pt": 1, + "sh": true, }, - "value": 308, + "value": 22, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Exquisite Elephant", + "id": "Shadow Dolphin", "pt": 1, + "sh": true, }, - "value": 12089731, + "value": 109, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Owl", + "id": "Kraken", "pt": 2, }, - "value": 713, + "value": 6, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Knife Cat", + "id": "Ghost Axolotl", + "pt": 2, + "sh": true, }, - "value": 93031135, + "value": 159, }, { "category": "Pet", "configData": { - "id": "Pixie Fox", - "pt": 1, - "sh": true, + "id": "Krakling Kraken", }, - "value": 1890, + "value": 14734, }, { "category": "Pet", "configData": { - "id": "Thunder Bear", + "id": "Pirate Dog", + "pt": 2, "sh": true, }, - "value": 12278791, + "value": 10115, }, { "category": "Pet", "configData": { - "id": "Black Widow", - "pt": 2, + "id": "Leafy Seahorse", + "pt": 1, + "sh": true, }, - "value": 218, + "value": 3170, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Skeleton", + "id": "Stargazing Axolotl", "pt": 2, "sh": true, }, - "value": 200000, + "value": 382, }, { - "category": "Pet", + "category": "Tool", "configData": { - "id": "Huge M-10 PROTOTYPE", - "pt": 2, + "id": "Event Emerald Fishing Rod", }, - "value": 1596438448, + "value": 339063, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Silver Moose", + "id": "Hydra Axolotl", + "pt": 1, + "sh": true, }, - "value": 195, + "value": 977, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Cyber Agony", + "id": "Kaiju Sea Dragon", + "sh": true, }, - "value": 40239904, + "value": 505, }, { "category": "Pet", "configData": { - "id": "Present Chest Mimic", - "pt": 2, + "id": "Leafy Seahorse", + "sh": true, }, - "value": 33041820, + "value": 8052, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Flamingo", + "id": "Abyssal Dolphin", + "pt": 2, + "sh": true, }, - "value": 11, + "value": 1402, }, { "category": "Pet", "configData": { - "id": "Huge Rainbow Slime", + "id": "Anglerfish", "pt": 1, - "sh": true, }, - "value": 1687665811, + "value": 18983, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Fluffy Cat", + "id": "Abyssal Shark", "pt": 2, - "sh": true, }, - "value": 140000, + "value": 2900, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Titanic Banana Cat", + "id": "Midnight Axolotl", + "pt": 2, }, - "value": 13083768417, + "value": 109168, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Storm Agony", + "id": "Astral Axolotl", + "pt": 2, + "sh": true, + }, + "value": 49178, + }, + { + "category": "Catch", + "configData": { + "id": "Nightmare Kraken", }, - "value": 889907251, + "value": 327, }, { "category": "Pet", "configData": { - "id": "Huge Skateboard Bulldog", + "id": "Leafy Seahorse", + "pt": 2, "sh": true, }, - "value": 325670258, + "value": 1651, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Mermaid Cat", - "pt": 1, + "id": "Abyssal Shark", + "sh": true, }, - "value": 518, + "value": 2715, }, { "category": "Pet", "configData": { - "id": "Hound of Hades", + "id": "Skeleton Shark", + "pt": 2, "sh": true, }, - "value": 38408, + "value": 1560, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Rave Jaguar", + "id": "Cosmic Axolotl", + "pt": 2, "sh": true, }, - "value": 2018, + "value": 2321, }, { "category": "Pet", "configData": { - "id": "Huge Party Dog", + "id": "Anglerfish", }, - "value": 92918491, + "value": 202266, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Water Zebra", - "pt": 1, + "id": "Shadow Kraken", "sh": true, }, - "value": 800200, + "value": 41, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Tiedye Corgi", + "id": "Atlantean Dolphin", "pt": 2, + "sh": true, }, - "value": 15506189, + "value": 3584, }, { "category": "Pet", "configData": { - "id": "Carnival Panda", + "id": "Anglerfish", "pt": 2, - "sh": true, }, - "value": 100000, + "value": 15604, }, { "category": "Pet", "configData": { - "id": "Pirate Panda", + "id": "Mystical Whale", + "pt": 1, "sh": true, }, - "value": 420, + "value": 92292, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Red Fluffy", + "id": "Whale Shark", "pt": 2, "sh": true, }, - "value": 16500000000, + "value": 45, }, { "category": "Pet", "configData": { - "id": "Huge Mrs. Claws", + "id": "Titanic Captain Octopus", + "pt": 2, }, - "value": 67151895, + "value": 30, }, { "category": "Pet", "configData": { - "id": "Huge Hot Dog", - "sh": true, + "id": "Titanic Super Corgi", }, - "value": 1512117967, + "value": 402, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "A-36", - "pt": 1, + "id": "Steampunk Fish", + "pt": 2, "sh": true, }, - "value": 4671, + "value": 581, }, { "category": "Pet", "configData": { - "id": "Turkey", - "pt": 2, + "id": "Titanic Captain Octopus", }, - "value": 144, + "value": 720, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Nuclear Wild Dog", - "pt": 1, - "sh": true, + "id": "Boat 4", }, - "value": 163241080, + "value": 179193, }, { "category": "Pet", "configData": { - "id": "Parrot", - "sh": true, + "id": "Gargantuan Aura Cat", + "pt": 2, }, - "value": 18089, + "value": 5, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Fluffy Cat", - "pt": 1, + "id": "Storm Axolotl", + "pt": 2, }, - "value": 41119621, + "value": 10893, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Tiedye Cat", + "id": "Kaiju Sea Dragon", + "pt": 1, }, - "value": 86398229, + "value": 5479, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Pixie Fox", + "id": "Abyssal Shark", + "pt": 1, "sh": true, }, - "value": 871107449, + "value": 276, }, { "category": "Pet", "configData": { - "id": "Orange Parrot", - "sh": true, + "id": "Titanic Leafy Seahorse", }, - "value": 1457, + "value": 461, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Dragon", - "pt": 1, + "id": "Atlantean Orca", }, - "value": 327423345, + "value": 12004, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Heavenly Peacock", + "id": "Atlantean Orca", "pt": 1, - "sh": true, }, - "value": 100800, + "value": 1341, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Horse", + "id": "Hellish Axolotl", "pt": 1, }, - "value": 1624, + "value": 577, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Ender Bunny", - "pt": 1, + "id": "Frontman Jellyfish", + "pt": 2, }, - "value": 84, + "value": 19, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Raccoon", + "id": "Hellish Axolotl", "pt": 2, }, - "value": 116, + "value": 52, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Vibrant Toucan", + "id": "Hydra Axolotl", + "pt": 2, "sh": true, }, - "value": 160037262, - }, - { - "category": "Pet", - "configData": { - "id": "Hellish Axolotl", - }, - "value": 342, + "value": 105, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Shadow Kraken", + "id": "Axolotuus", "sh": true, }, - "value": 5595, + "value": 262, }, { "category": "Pet", "configData": { - "id": "Scorpion", - "pt": 1, + "id": "Krakling Kraken", + "pt": 2, }, - "value": 1183, + "value": 1112, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Fire Horse", + "id": "Atlantean Jellyfish", + "pt": 1, }, - "value": 109516201, + "value": 21607, }, { "category": "Pet", "configData": { - "id": "Neon Twilight Wolf", + "id": "Huge Kawaii Tiger", "pt": 2, + "sh": true, }, - "value": 19707340, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Huge Capybara", + "id": "Huge Pirate Dog", }, - "value": 417899798, + "value": 7406, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Celestial Dragon", - "pt": 2, + "id": "Midnight Axolotl", + "pt": 1, + "sh": true, }, - "value": 32628839, + "value": 10742, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Tiedye Bunny", + "id": "Storm Axolotl", + "pt": 1, + "sh": true, }, - "value": 75881343, + "value": 1134, }, { "category": "Pet", "configData": { - "id": "Rave Troll", - "pt": 2, + "id": "Rogue Squid", + "pt": 1, "sh": true, }, - "value": 258, + "value": 44966, }, { "category": "Pet", "configData": { - "id": "Ancient Dragon", + "id": "Huge Pirate Dog", "pt": 1, }, - "value": 4835, + "value": 487, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Hi-Tech Tiger", + "id": "Atlantean Jellyfish", + "pt": 2, }, - "value": 96840688, + "value": 2213, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Doodle Cat", + "id": "Abyssal Jellyfish", "pt": 1, + "sh": true, }, - "value": 108311393, + "value": 28, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Tropical Parrot", - "pt": 1, + "id": "Hellish Axolotl", + "sh": true, }, - "value": 274059172, + "value": 51, }, { "category": "Pet", "configData": { - "id": "Huge Turtle", + "id": "Mystical Whale", + "sh": true, }, - "value": 90133682, + "value": 254938, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Shadow Griffin", - "pt": 2, + "id": "Frontman Jellyfish", + "pt": 1, }, - "value": 12490, + "value": 133, }, { "category": "Pet", "configData": { - "id": "Huge Evolved Pixel Cat", + "id": "Titanic Captain Octopus", + "pt": 2, + "sh": true, }, - "value": 281191289, + "value": 18, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Color Ruins Parrot", + "id": "Corrupt Octopus", "sh": true, }, - "value": 619581, + "value": 6, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Fortress Dog", + "id": "Nightmare Kraken", "pt": 1, }, - "value": 68, + "value": 38, }, { "category": "Pet", "configData": { - "id": "Void Alien", + "id": "Mystical Whale", "pt": 2, + "sh": true, }, - "value": 72286, + "value": 73239, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Lunar Moth", - "pt": 2, + "id": "Alien Axolotl", + "pt": 1, "sh": true, }, - "value": 13340351921, + "value": 5, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "King Cow", + "id": "Shadow Dolphin", "pt": 2, + "sh": true, }, - "value": 664, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Cool Corgi", + "id": "Huge Anglerfish", + "sh": true, }, - "value": 4779794, + "value": 851, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Gargoyle Dragon", + "id": "Corrupt Octopus", + "pt": 2, }, - "value": 161463426, + "value": 5, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Gecko", + "id": "Rave Axolotl", "pt": 2, + "sh": true, }, - "value": 288258, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Huge Wicked Empyrean Dragon", - "pt": 2, + "id": "Krakling Kraken", + "pt": 1, }, - "value": 5501604447, + "value": 1260, }, { "category": "Pet", "configData": { - "id": "Huge Axolotl", + "id": "Huge Aura Dominus", "pt": 2, + "sh": true, }, - "value": 7229599984, + "value": 13, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Lemur", - "pt": 1, + "id": "Atlantean Orca", + "pt": 2, }, - "value": 1131, + "value": 160, }, { "category": "Pet", "configData": { - "id": "Frostbyte Snow Ram", + "id": "Huge Anglerfish", "pt": 1, "sh": true, }, - "value": 1000, + "value": 161, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Tarantula", + "id": "Orca", + "sh": true, }, - "value": 92817916, + "value": 63, }, { "category": "Pet", "configData": { - "id": "Red Panda", + "id": "Rogue Squid", "pt": 2, + "sh": true, }, - "value": 1215, + "value": 19757, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Black Hole Axolotl", + "id": "Axolotuus", + "pt": 1, + "sh": true, }, - "value": 90567391, + "value": 25, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Stealth Bobcat", + "id": "Midnight Axolotl", + "pt": 2, + "sh": true, }, - "value": 61880224, + "value": 1145, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Gecko", + "id": "Atlantean Jellyfish", "sh": true, }, - "value": 456750205, + "value": 1899, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Crystal Deer", + "id": "Storm Axolotl", "pt": 2, + "sh": true, }, - "value": 14371535, + "value": 104, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Monkey", + "id": "Kaiju Sea Dragon", "pt": 2, - "sh": true, }, - "value": 11657965, + "value": 555, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Disco Ball Dragon", + "id": "Hellish Axolotl", "pt": 1, + "sh": true, }, - "value": 68697500, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Unicorn Dragon", + "id": "Huge Pirate Dog", "sh": true, }, - "value": 5990883, + "value": 147, }, { "category": "Pet", "configData": { - "id": "Demolition Husky", - "pt": 1, + "id": "Rogue Squid", "sh": true, }, - "value": 76352, + "value": 42500, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Gummy Bear", + "id": "Alien Octopus", "pt": 2, "sh": true, }, - "value": 82053, + "value": 8, }, { "category": "Pet", "configData": { - "id": "Ancient Dragon", + "id": "Huge Pirate Dog", + "pt": 2, }, - "value": 1740, + "value": 329, }, { "category": "Pet", "configData": { - "id": "Huge Pop Cat", + "id": "Huge Aura Fox", + "pt": 2, + "sh": true, }, - "value": 681327905, + "value": 54, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Rave Axolotl", + "id": "Orca", + "pt": 2, }, - "value": 92, + "value": 69, }, { "category": "Pet", "configData": { - "id": "Meebo The Alien", + "id": "Titanic Leafy Seahorse", + "pt": 1, }, - "value": 1940, + "value": 96, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Cloud Hedgehog", + "id": "Atlantean Jellyfish", + "pt": 1, + "sh": true, }, - "value": 146, + "value": 198, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Safari Dog", + "id": "Kaiju Sea Dragon", + "pt": 1, + "sh": true, }, - "value": 338305251, + "value": 51, }, { "category": "Pet", "configData": { - "cv": 3, - "id": "Huge Chroma Unicorn", - "pt": 2, + "id": "Titanic Leafy Seahorse", + "pt": 1, + "sh": true, }, - "value": 3573713452, + "value": 1, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Vibrant Toucan", - "pt": 2, + "id": "Boat 5", }, - "value": 1052, + "value": 86461, }, { "category": "Pet", "configData": { - "id": "Hot Cocoa Cat", + "id": "Gargantuan Starfall Dragon", "pt": 2, + "sh": true, }, - "value": 2766, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Colorful Rock", + "id": "Titanic Aura Kitsune", + "sh": true, }, - "value": 280, + "value": 14, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Blurred Monkey", + "id": "Shark", "pt": 2, + "sh": true, }, - "value": 8811, + "value": 24, }, { "category": "Pet", "configData": { - "id": "Platypus", - "pt": 1, + "id": "Floppa", + "sh": true, }, - "value": 185, + "value": 1, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Umbrella Cat", - "pt": 2, + "id": "Atlantean Orca", + "sh": true, }, - "value": 1481, + "value": 116, }, { "category": "Pet", "configData": { - "id": "Huge Monkey", + "id": "Titanic Aura Kitsune", + "pt": 2, + "sh": true, }, - "value": 499340057, + "value": 2, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Nuclear Wolf", + "id": "Shadow Kraken", + "pt": 1, "sh": true, }, - "value": 612480, + "value": 5, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Cyborg Dominus", + "id": "Abyssal Shark", "pt": 2, + "sh": true, }, - "value": 806, + "value": 25, }, { "category": "Pet", "configData": { - "id": "Empyrean Agony", + "id": "Titanic Super Corgi", + "pt": 1, }, - "value": 157793884, + "value": 46, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Frostbyte Husky", - "pt": 1, + "id": "Frontman Jellyfish", + "sh": true, }, - "value": 436, + "value": 14, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Tiedye Dragon", + "id": "Atlantean Jellyfish", "pt": 2, + "sh": true, }, - "value": 23372570, + "value": 19, }, { "category": "Pet", "configData": { - "id": "Relic Bat", + "id": "Huge Pirate Dog", "pt": 2, + "sh": true, }, - "value": 171, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Demolition Cat", - "pt": 1, + "id": "Titanic Super Corgi", + "pt": 2, }, - "value": 229, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Huge Dog", + "id": "Titanic Leafy Seahorse", + "pt": 2, }, - "value": 124833808, + "value": 16, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Flower Cat", - "pt": 2, + "id": "Jellyfish", + "pt": 1, + "sh": true, }, - "value": 77, + "value": 40, }, { "category": "Pet", "configData": { - "id": "Huge Marshmallow Agony", + "id": "Titanic Leafy Seahorse", "sh": true, }, - "value": 318850566, + "value": 4, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Hologram Axolotl", + "id": "Kraken", + "sh": true, }, - "value": 8490105, + "value": 3, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Empyrean Dominus", + "id": "Jellyfish", "pt": 2, "sh": true, }, - "value": 61191448, + "value": 4, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Elf Cat", + "id": "Atlantean Orca", "pt": 1, + "sh": true, }, - "value": 322644843, + "value": 22, }, { "category": "Pet", "configData": { - "id": "Plague Dragon", - "sh": true, + "id": "Titanic Kraken", }, - "value": 9969, + "value": 723, }, { "category": "Pet", "configData": { - "id": "Fire Bat", + "id": "Titanic Kraken", "pt": 1, }, - "value": 85, + "value": 146, }, { "category": "Pet", "configData": { - "cv": 2, - "id": "Huge Chroma Unicorn", + "id": "Titanic Kraken", + "pt": 2, }, - "value": 82844829, + "value": 26, }, { "category": "Pet", "configData": { - "id": "Huge Tiedye Corgi", - "pt": 2, + "id": "Titanic Kraken", + "sh": true, }, - "value": 603875212, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Cupid Corgi", - "pt": 2, + "id": "Titanic Super Corgi", + "sh": true, }, - "value": 17870053, + "value": 9, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Angel Pony", - "pt": 2, + "id": "Nightmare Kraken", "sh": true, }, - "value": 1468, + "value": 4, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Clover Axolotl", - "pt": 1, + "id": "Kaiju Sea Dragon", + "pt": 2, + "sh": true, }, - "value": 1921, + "value": 4, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Froggy", - "pt": 1, + "id": "Fantasy Fragment", }, - "value": 1892, + "value": 207770, }, { "category": "Pet", "configData": { - "id": "Snow Cat", + "id": "Huge Easter Golem", }, - "value": 425, + "value": 9207, }, { "category": "Pet", "configData": { - "id": "Green Cobra", + "id": "Titanic Easter Golem", }, - "value": 60, + "value": 957, }, { "category": "Pet", "configData": { - "id": "Hyena", + "id": "Huge Easter Golem", + "pt": 2, "sh": true, }, - "value": 602, + "value": 50, }, { "category": "Pet", "configData": { - "id": "Huge Pixel Dragon", - "pt": 1, + "id": "Huge Easter Golem", + "pt": 2, }, - "value": 142384758, + "value": 497, }, { "category": "Pet", "configData": { - "id": "Kraken", - "pt": 2, + "id": "Titanic Easter Golem", "sh": true, }, - "value": 20240, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Turtle in a Bucket", + "id": "Huge Easter Golem", "sh": true, }, - "value": 3572, + "value": 150, }, { "category": "Pet", "configData": { - "id": "Huge Cheerful Yeti", + "id": "Titanic Easter Golem", + "pt": 2, }, - "value": 118649183, + "value": 30, }, { "category": "Pet", "configData": { - "id": "Bat", + "id": "Titanic Easter Golem", + "pt": 2, "sh": true, }, - "value": 330, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Cyclops", + "id": "Huge Pirate Dog", "pt": 1, + "sh": true, }, - "value": 1210, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Nightfall Ram", + "id": "Gargantuan Aura Cat", "sh": true, }, - "value": 11274380, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Cotton Candy Unicorn", + "id": "Titanic Kraken", + "pt": 1, "sh": true, }, - "value": 44963, + "value": 1, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Cupid Corgi", + "id": "Axolotuus", "pt": 2, + "sh": true, }, - "value": 330734761, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Thunder Bear", + "id": "Huge Mystical Whale", "pt": 2, + "sh": true, }, - "value": 14425856, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Atomic Axolotl", - "pt": 2, + "id": "Anglerfish", + "pt": 1, + "sh": true, }, - "value": 2418, + "value": 42, }, { "category": "Pet", "configData": { - "id": "Axolotl", - "pt": 2, + "id": "Anglerfish", + "sh": true, }, - "value": 28, + "value": 9, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Rave Butterfly", + "id": "Abyssal Jellyfish", + "pt": 2, + "sh": true, }, - "value": 49127640, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Cool Cat", - "sh": true, + "id": "Huge Poison Turtle", }, - "value": 9182834, + "value": 895, }, { "category": "Pet", "configData": { - "id": "Bejeweled Lion", - "sh": true, + "id": "Huge Poison Turtle", + "pt": 1, }, - "value": 18384943, + "value": 374, }, { "category": "Pet", "configData": { - "id": "Nightfall Tiger", + "id": "Huge Poison Turtle", "pt": 2, }, - "value": 29347942, + "value": 150, }, { "category": "Pet", "configData": { - "id": "Huge Red Fluffy", - "pt": 2, + "id": "Mushroom Snail", }, - "value": 1632729184, + "value": 74568837, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Masked Owl", - "pt": 2, - "sh": true, + "id": "Fantasy Key", }, - "value": 906586, + "value": 279166605, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Mrs. Claws", - "pt": 2, + "id": "Fantasy Spinny Wheel Ticket", }, - "value": 379058242, + "value": 167216690, }, { "category": "Pet", "configData": { - "id": "Huge Floppa", - "pt": 1, + "id": "Mossy Lamb", }, - "value": 232614154, + "value": 74724183, }, { "category": "Pet", "configData": { - "id": "Nightfall Ram", - "pt": 2, + "id": "Beegle Dog", }, - "value": 27701259, + "value": 592251255, }, { "category": "Pet", "configData": { - "id": "Three Headed Dragon", - "pt": 2, + "id": "Mushroom Corgi", }, - "value": 646, + "value": 22676831, }, { "category": "Pet", "configData": { - "id": "Valentines Cat", - "sh": true, + "id": "Honey Golem", }, - "value": 9604969, + "value": 87147912, }, { "category": "Pet", "configData": { - "id": "Huge Stealth Dragon", + "id": "Beegle Dog", "pt": 1, }, - "value": 1173546599, + "value": 43040867, + }, + { + "category": "Currency", + "configData": { + "id": "FantasyCoins", + }, + "value": 8.801089585769434e+27, }, { "category": "Pet", "configData": { - "id": "Relic Cyclops", - "pt": 2, - "sh": true, + "id": "Enchanted Bunny", }, - "value": 32000, + "value": 820938171, }, { "category": "Pet", "configData": { - "id": "Sapphire Phoenix", + "id": "Enchanted Dog", }, - "value": 36729824, + "value": 362251339, }, { "category": "Pet", "configData": { - "id": "Frostbyte Cat", + "id": "Enchanted Dog", "pt": 1, }, - "value": 2138, + "value": 39631328, }, { "category": "Pet", "configData": { - "id": "Royal Peacock", + "id": "Enchanted Bunny", + "pt": 1, }, - "value": 1476, + "value": 71347830, }, { "category": "Pet", "configData": { - "id": "Tech Horse", + "id": "Enchanted Dog", + "pt": 2, }, - "value": 683, + "value": 27779378, }, { "category": "Pet", "configData": { - "id": "Lightning Bat", + "id": "Enchanted Bunny", "pt": 2, }, - "value": 78787096, + "value": 47860321, }, { "category": "Pet", "configData": { - "id": "Griffin", - "sh": true, + "id": "Huge Angel Dragon", }, - "value": 1463, + "value": 19638, }, { "category": "Pet", "configData": { - "id": "Popcorn Cat", - "pt": 2, + "id": "Huge Angel Dragon", + "pt": 1, }, - "value": 11089, + "value": 3886, }, { "category": "Pet", "configData": { - "id": "Huge UV Kitsune", - "pt": 1, + "id": "Lilypad Cat", + "pt": 2, }, - "value": 61586314, + "value": 12746662, }, { "category": "Pet", "configData": { - "id": "Lion", + "id": "Lilypad Cat", }, - "value": 190, + "value": 123360602, }, { "category": "Pet", "configData": { - "id": "Tiger", + "id": "Lilypad Cat", "pt": 1, - "sh": true, }, - "value": 2000, + "value": 16917409, }, { "category": "Pet", "configData": { - "id": "Llama", + "id": "Wisp Deer", + "pt": 1, }, - "value": 45, + "value": 222785345, }, { "category": "Pet", "configData": { - "id": "Hydra Axolotl", - "pt": 1, + "id": "Wisp Deer", }, - "value": 400135, + "value": 4817391029, + }, + { + "category": "Misc", + "configData": { + "id": "Fantasy Key Lower Half", + }, + "value": 462054443, }, { "category": "Pet", "configData": { - "id": "Ninja Cat", + "id": "Huge Wicked Angelus", "pt": 2, }, - "value": 1497, + "value": 1111, }, { "category": "Pet", "configData": { - "id": "Hell Chick", - "pt": 1, + "id": "Pixie Bee", }, - "value": 240, + "value": 1377728588, }, { "category": "Pet", "configData": { - "id": "Huge Nuclear Wild Dog", + "id": "Pixie Bee", "pt": 1, }, - "value": 40365422, + "value": 93043170, }, { "category": "Pet", "configData": { - "id": "Luau Seal", - "sh": true, + "id": "Beegle Dog", + "pt": 2, }, - "value": 9375, + "value": 18257872, }, { "category": "Pet", "configData": { - "id": "Huge Grim Reaper", + "id": "Wisp Deer", + "pt": 2, }, - "value": 403062540, + "value": 107693032, }, { "category": "Pet", "configData": { - "id": "Puffin", + "id": "Pixie Bee", + "pt": 2, }, - "value": 462, + "value": 36315692, }, { "category": "Pet", "configData": { - "id": "Huge Jelly Axolotl", + "id": "Huge Angel Dragon", "pt": 2, }, - "value": 1120116345, + "value": 798, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Dog", - "sh": true, + "id": "Ice Snake", }, - "value": 515, + "value": 611240066, }, { "category": "Pet", "configData": { - "id": "Stingray", + "id": "Relic Cat", "pt": 1, }, - "value": 1061, + "value": 15976439, }, { "category": "Pet", "configData": { - "id": "Huge Evolved King Cobra", + "id": "Honey Golem", + "pt": 1, }, - "value": 189261859, + "value": 11147210, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Shark", - "pt": 2, + "id": "Fantasy Key Upper Half", }, - "value": 1312382355, + "value": 223528248, }, { "category": "Pet", "configData": { - "id": "Seal", - "pt": 2, + "id": "Huge Angel Dragon", + "sh": true, }, - "value": 4762, + "value": 144, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Sandcastle Dog", - "pt": 2, + "id": "Ice Slime", }, - "value": 344, + "value": 491950239, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Hippo", - "sh": true, + "id": "Willow Wisp", }, - "value": 188, + "value": 308656128, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Balloon Axolotl", - "pt": 2, - "sh": true, + "id": "Ice Snake", + "pt": 1, }, - "value": 1476102778, + "value": 67888278, }, { "category": "Pet", "configData": { - "id": "Huge Skateboard Bulldog", - "pt": 1, - "sh": true, + "id": "Huge Honey Golem", }, - "value": 973817903, + "value": 4687, }, { "category": "Pet", "configData": { - "id": "Willow Wisp", - "pt": 2, - "sh": true, + "id": "Huge Wicked Angelus", }, - "value": 19200, + "value": 13539, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Mining Dog", - "pt": 2, + "id": "Boat 6", }, - "value": 249, + "value": 40757, }, { "category": "Pet", "configData": { - "id": "Huge Fox", + "id": "Snow Crab", + "pt": 1, }, - "value": 163683951, + "value": 60222994, }, { "category": "Pet", "configData": { - "id": "Cyborg Cat", + "id": "Snow Crab", "pt": 2, }, - "value": 23, + "value": 51513543, }, { "category": "Pet", "configData": { - "id": "Warrior Wolf", - "pt": 1, + "id": "Snow Crab", }, - "value": 11455, + "value": 961028500, }, { "category": "Pet", "configData": { - "id": "Huge Shadow Griffin", + "id": "Mushroom Snail", + "pt": 1, }, - "value": 225100406, + "value": 17011822, }, { "category": "Pet", "configData": { - "id": "Cheetah", - "pt": 2, + "id": "Flying Piggy", }, - "value": 350, + "value": 21552728, }, { "category": "Pet", "configData": { - "id": "Huge Koi Fish", - "pt": 1, - "sh": true, + "id": "Relic Cat", }, - "value": 371912414, + "value": 109284330, }, { "category": "Pet", "configData": { - "id": "Huge Clover Dragon", + "id": "Mushroom Corgi", + "pt": 1, }, - "value": 223983331, + "value": 5160500, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Sleipnir", + "id": "Frostbyte Snow Leopard", + "pt": 1, }, - "value": 250617073, + "value": 15072689, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Night Terror Cat", + "id": "Frostbyte Snow Leopard", "pt": 2, }, - "value": 247856723, + "value": 1512240, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Hologram Shark", + "id": "Ice Slime", + "pt": 1, }, - "value": 3630024, + "value": 54655270, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Sensei Penguin", + "id": "Frostbyte Narwhal", }, - "value": 4162150726, + "value": 23288192, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Colorful Slime", - "pt": 1, - "sh": true, + "id": "Frostbyte Snow Leopard", }, - "value": 5000, + "value": 135656797, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Turtle", + "id": "Frostbyte Narwhal", "pt": 2, }, - "value": 14190, + "value": 260373, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Electric Unicorn", + "id": "Willow Wisp", + "sh": true, + }, + "value": 3096403, + }, + { + "category": "Catch", + "configData": { + "id": "Frostbyte Narwhal", "pt": 1, }, - "value": 862, + "value": 2587665, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Polar Bear", + "id": "Willow Wisp", + "pt": 1, }, - "value": 535, + "value": 34296252, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Arcade Dragon", + "id": "Frostbyte Snow Leopard", + "sh": true, }, - "value": 71797785, + "value": 1359288, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Stargazing Bear", + "id": "Ice Snake", "pt": 2, }, - "value": 14375546, + "value": 6807546, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Husky", + "id": "Ice Slime", + "pt": 2, }, - "value": 448, + "value": 5482882, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Kawaii Dragon", + "id": "Melted Slime", + }, + "value": 7021433, + }, + { + "category": "Catch", + "configData": { + "id": "Ice Snake", "sh": true, }, - "value": 470666124, + "value": 6128996, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Agony", - "pt": 2, + "id": "Ice Slime", "sh": true, }, - "value": 116000, + "value": 4931306, + }, + { + "category": "Tool", + "configData": { + "id": "Event Frozen Fishing Rod", + }, + "value": 240217, }, { "category": "Pet", "configData": { - "id": "Basketball Retriever", - "pt": 2, + "id": "Snow Crab", "sh": true, }, - "value": 80800, + "value": 2810696, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Firefly", + "id": "Frostbyte Walrus", "pt": 1, }, - "value": 3298, + "value": 78006, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Nightfall Wolf", + "id": "Ice Snake", + "pt": 1, "sh": true, }, - "value": 600975908, + "value": 682035, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Scarecrow Cat", - "pt": 2, + "id": "Frostbyte Walrus", }, - "value": 115, + "value": 699055, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Chest Mimic", + "id": "Frostbyte Penguin", }, - "value": 392815634, + "value": 139798, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Hamster", + "id": "Ice Slime", "pt": 1, "sh": true, }, - "value": 5000, + "value": 548403, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Prison Bunny", + "id": "Willow Wisp", "pt": 2, - "sh": true, }, - "value": 9418, + "value": 3438232, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Tiedye Dog", + "id": "Melted Slime", + "pt": 1, }, - "value": 3175989, + "value": 779753, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Hell Chick", + "id": "Arcade", }, - "value": 887, + "value": 141981, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Huge Clover Fairy", + "id": "Cow", }, - "value": 102599458, + "value": 313914, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Huge Vibrant Toucan", - "pt": 2, + "id": "Pizza", }, - "value": 201596356, + "value": 267379, }, { "category": "Pet", "configData": { - "id": "Desert Cat", + "id": "Snow Crab", + "pt": 1, "sh": true, }, - "value": 563, + "value": 245442, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Lunar Moth", - "pt": 1, + "id": "Melted Slime", + "pt": 2, }, - "value": 1559, + "value": 78104, + }, + { + "category": "Catch", + "configData": { + "id": "Ice Snake", + "pt": 2, + "sh": true, + }, + "value": 68958, }, { "category": "Pet", "configData": { - "id": "Huge Party Crown Ducky", + "id": "Mossy Lamb", "pt": 1, }, - "value": 226829279, + "value": 12409297, }, { "category": "Pet", "configData": { - "id": "Jelly Corgi", + "id": "Snow Crab", "pt": 2, + "sh": true, }, - "value": 16828343, + "value": 270091, }, { "category": "Pet", "configData": { - "id": "Sophisticated Fox", - "pt": 1, + "id": "Beluga Whale", }, - "value": 13893, + "value": 7317, }, { "category": "Pet", "configData": { - "id": "Puma", + "id": "Relic Cat", "pt": 2, }, - "value": 396, + "value": 13066726, }, { "category": "Pet", "configData": { - "id": "Night Terror Cat", + "id": "Honey Golem", "pt": 2, }, - "value": 641, + "value": 4043037, }, { "category": "Pet", "configData": { - "id": "Snow Ram", + "id": "Mossy Lamb", "pt": 2, }, - "value": 210, + "value": 6225770, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Quantum Fox", + "id": "Willow Wisp", + "pt": 1, + "sh": true, + }, + "value": 343770, + }, + { + "category": "Catch", + "configData": { + "id": "Frostbyte Snow Leopard", "pt": 1, "sh": true, }, - "value": 9000, + "value": 151008, + }, + { + "category": "Catch", + "configData": { + "id": "Melted Slime", + "sh": true, + }, + "value": 70990, + }, + { + "category": "Catch", + "configData": { + "id": "Luxe Axolotl", + }, + "value": 34925, }, { "category": "Pet", "configData": { - "id": "Dove", + "id": "Flying Piggy", "pt": 2, }, - "value": 2218216, + "value": 2935915, }, { "category": "Pet", "configData": { - "id": "Cat", + "id": "Flying Piggy", "pt": 1, }, - "value": 12987, + "value": 3744316, }, { "category": "Pet", "configData": { - "id": "Tiedye Cat", + "id": "Huge Snow Crab", "pt": 2, - "sh": true, }, - "value": 768000000, + "value": 1021, }, { "category": "Pet", "configData": { - "id": "Snow Ram", + "id": "Huge Angel Dragon", + "pt": 1, "sh": true, }, - "value": 696, + "value": 42, }, { "category": "Pet", "configData": { - "id": "Fossil Dragon", - "sh": true, + "id": "Huge Honey Golem", + "pt": 1, }, - "value": 13591, + "value": 2106, }, { "category": "Pet", "configData": { - "id": "Stealth Cat", - "pt": 2, + "id": "Huge Wicked Angelus", + "pt": 1, }, - "value": 25104413, + "value": 4358, }, { "category": "Pet", "configData": { - "id": "Frostbyte Walrus", - "sh": true, + "id": "Huge Snow Crab", }, - "value": 1, + "value": 26046, }, { "category": "Pet", "configData": { - "id": "Frost Rabbit", + "id": "Huge Angel Dragon", "pt": 2, + "sh": true, }, - "value": 577, + "value": 10, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Mushroom Raccoon", + "id": "Frostbyte Narwhal", "sh": true, }, - "value": 189, + "value": 233291, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Silver Dragon", + "id": "Frostbyte Narwhal", + "pt": 1, "sh": true, }, - "value": 25212509, + "value": 26116, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Colorful Wisp", + "id": "Sage Axolotl", + "pt": 1, }, - "value": 47018964, + "value": 1006, }, { "category": "Pet", "configData": { - "id": "Cyber Fox", + "id": "Mushroom Snail", "pt": 2, - "sh": true, }, - "value": 25000000, + "value": 5248375, }, { "category": "Pet", "configData": { - "id": "Sailor Dolphin", - "sh": true, + "id": "Huge Aura Fox", + "pt": 1, }, - "value": 2579, + "value": 108, }, { "category": "Pet", "configData": { - "id": "Huge Cupcake", + "id": "Huge Honey Golem", "pt": 2, }, - "value": 356497187, + "value": 542, }, { "category": "Pet", "configData": { - "id": "Huge Santa Paws", + "id": "Huge Skeleton Shark", + }, + "value": 3475, + }, + { + "category": "Catch", + "configData": { + "id": "Ice Slime", + "pt": 2, + "sh": true, }, - "value": 285023771, + "value": 55087, }, { "category": "Pet", "configData": { - "id": "M-B PROTOTYPE", + "id": "Enchanted Bunny", "pt": 1, + "sh": true, }, - "value": 1436, + "value": 298137, + }, + { + "category": "Catch", + "configData": { + "id": "Willow Wisp", + "pt": 2, + "sh": true, + }, + "value": 34823, }, { "category": "Pet", "configData": { - "id": "Red Panda", - "pt": 1, + "id": "Titanic Chest Mimic", }, - "value": 1554, + "value": 1170, }, { "category": "Pet", "configData": { - "id": "Ducky", - "pt": 1, + "id": "Relic Deer", }, - "value": 219, + "value": 40115685, }, { "category": "Pet", "configData": { - "id": "Lunar Deer", + "id": "Mushroom Corgi", + "pt": 2, }, - "value": 1101, + "value": 2213063, }, { "category": "Pet", "configData": { - "id": "Huge Valentines Cat", + "id": "Glade Griffin", "pt": 2, }, - "value": 1201980315, + "value": 13514482481, }, { "category": "Pet", "configData": { - "id": "Goldfish", - "pt": 1, + "id": "Relic Deer", + "pt": 2, }, - "value": 1098, + "value": 6325795, }, { "category": "Pet", "configData": { - "id": "Surfboard Corgi", + "id": "Glade Griffin", "pt": 1, }, - "value": 1559, + "value": 9878916820, }, { "category": "Pet", "configData": { - "id": "Exquisite Cat", + "id": "Relic Deer", "pt": 1, }, - "value": 14757654, + "value": 6306184, }, { "category": "Pet", "configData": { - "id": "Circuit Corgi", + "id": "Angel Dragon", }, - "value": 955, + "value": 30959872799, }, { "category": "Pet", "configData": { - "id": "Colorful Slime", - "pt": 2, - "sh": true, + "id": "Glade Griffin", }, - "value": 250000, + "value": 76615572745, }, { "category": "Pet", "configData": { - "id": "Huge King Cobra", - "pt": 2, + "id": "Enchanted Dog", + "pt": 1, + "sh": true, }, - "value": 312827535, + "value": 149105, }, { "category": "Pet", "configData": { - "id": "Sock Monkey", + "id": "Enchanted Bunny", + "sh": true, }, - "value": 27443948, + "value": 2543784, }, { "category": "Pet", "configData": { - "id": "Poseidon Corgi", + "id": "Enchanted Bunny", + "pt": 2, "sh": true, }, - "value": 1481, + "value": 185828, }, { "category": "Pet", "configData": { - "id": "Dominus Infernus", + "id": "Enchanted Dog", + "sh": true, }, - "value": 2596, + "value": 1028555, }, { "category": "Pet", "configData": { - "id": "Bee", - "sh": true, + "id": "Huge Glade Griffin", }, - "value": 13262, + "value": 42574, }, { "category": "Pet", "configData": { - "id": "Vampire Bat", - "sh": true, + "id": "Angel Dragon", + "pt": 2, }, - "value": 697, + "value": 6351479670, }, { "category": "Pet", "configData": { - "id": "Bobcat", + "id": "Angel Dragon", "pt": 1, }, - "value": 8222, + "value": 4148988599, }, { "category": "Pet", "configData": { - "id": "Hippokin", - "pt": 1, + "id": "Wisp Deer", "sh": true, }, - "value": 43760, + "value": 22687343, }, { "category": "Pet", "configData": { - "id": "Steampunk Bat", + "id": "Huge Glade Griffin", "pt": 1, - "sh": true, }, - "value": 5, + "value": 8408, }, { "category": "Pet", "configData": { - "id": "Huge King Cobra", + "id": "Huge Honey Golem", + "pt": 1, "sh": true, }, - "value": 651977416, + "value": 29, }, { "category": "Pet", "configData": { - "id": "Neon Griffin", + "id": "Huge Aura Fox", + "pt": 1, "sh": true, }, - "value": 8049767, + "value": 42, }, { "category": "Pet", "configData": { - "id": "Huge Evolved Hacked Cat", + "id": "Wisp Deer", + "pt": 1, + "sh": true, }, - "value": 256573409, + "value": 1241938, }, { "category": "Pet", "configData": { - "id": "Pony", + "id": "Enchanted Dog", + "pt": 2, + "sh": true, }, - "value": 5305494, + "value": 114331, }, { "category": "Pet", "configData": { - "id": "Queen Slime", + "id": "Lilypad Cat", "pt": 2, "sh": true, }, - "value": 190000, + "value": 67067, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Blue Balloon Cat", + "id": "Frostbyte Snow Leopard", + "pt": 2, + "sh": true, }, - "value": 1974968462, + "value": 15133, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Steampunk Octopus", + "id": "Melted Slime", + "pt": 1, "sh": true, }, - "value": 10000, + "value": 7851, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Cheetah", - "pt": 2, + "id": "Frostbyte Walrus", "sh": true, }, - "value": 200000, + "value": 7159, }, { "category": "Pet", "configData": { - "id": "Huge Basketball Retriever", + "id": "Huge Skeleton Shark", + "pt": 1, }, - "value": 825789915, + "value": 724, }, { "category": "Pet", "configData": { - "id": "Quantum Goat", - "pt": 1, + "id": "Huge Honey Golem", + "sh": true, }, - "value": 683, + "value": 102, }, { "category": "Pet", "configData": { - "id": "Huge Shuriken Corgi", - "pt": 1, + "id": "Huge Honey Golem", + "pt": 2, "sh": true, }, - "value": 163530261, + "value": 3, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Pony", + "id": "Frostbyte Penguin", "pt": 1, }, - "value": 312854619, + "value": 15458, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Glitched Cat", + "id": "Frostbyte Walrus", "pt": 2, }, - "value": 5539033531, + "value": 7768, }, { "category": "Pet", "configData": { - "id": "Wireframe Cat", - "pt": 2, + "id": "Titanic Chest Mimic", + "pt": 1, }, - "value": 126, + "value": 367, }, { "category": "Pet", "configData": { - "id": "Dragon", + "id": "Lilypad Cat", "pt": 1, + "sh": true, }, - "value": 2017, + "value": 73103, }, { "category": "Pet", "configData": { - "id": "Electric Cat", + "id": "Glade Griffin", + "pt": 2, + "sh": true, }, - "value": 404, + "value": 74371266, }, { "category": "Pet", "configData": { - "id": "Arctic Fox", + "id": "Glade Griffin", + "sh": true, }, - "value": 1258, + "value": 318466683, }, { "category": "Pet", "configData": { - "id": "Hippo", + "id": "Angel Dragon", "pt": 2, "sh": true, }, - "value": 40000, + "value": 37200080, }, { "category": "Pet", "configData": { - "id": "Queen Piggy", - "pt": 1, + "id": "Huge Wicked Angelus", "sh": true, }, - "value": 25000, + "value": 221, }, { "category": "Pet", "configData": { - "id": "Frostbyte Snowman", - "pt": 1, + "id": "Angel Dragon", "sh": true, }, - "value": 94558, + "value": 124321123, }, { "category": "Pet", "configData": { - "id": "Empyrean Dominus", + "id": "Glade Griffin", + "pt": 1, "sh": true, }, - "value": 11106927, + "value": 44361153, }, { "category": "Pet", "configData": { - "id": "Titanic Bat Cat", + "id": "Angel Dragon", + "pt": 1, + "sh": true, }, - "value": 17229844452, + "value": 19105811, }, { "category": "Pet", "configData": { - "id": "Crystal Dog", + "id": "Wisp Deer", "pt": 2, "sh": true, }, - "value": 81866752, + "value": 425229, }, { "category": "Pet", "configData": { - "id": "Huge Masked Owl", + "id": "Pixie Bee", "pt": 1, "sh": true, }, - "value": 25000000000, + "value": 344569, }, { "category": "Pet", "configData": { - "id": "Huge Knight Beagle", + "id": "Beegle Dog", + "pt": 2, "sh": true, }, - "value": 115517818, + "value": 65509, }, { "category": "Pet", "configData": { - "id": "Mining Axolotl", + "id": "Lilypad Cat", + "sh": true, }, - "value": 858, + "value": 312266, }, { "category": "Pet", "configData": { - "id": "Meebo in a Spaceship", + "id": "Empyrean Owl", "pt": 1, - "sh": true, }, - "value": 20618560, + "value": 124670, }, { "category": "Pet", "configData": { - "id": "Prison Bunny", - "pt": 1, + "id": "Relic Cat", + "pt": 2, "sh": true, }, - "value": 216, + "value": 64839, }, { "category": "Pet", "configData": { - "id": "Huge Happy Rock", - "pt": 2, + "id": "Relic Cat", + "pt": 1, + "sh": true, }, - "value": 114623563, + "value": 59528, }, { "category": "Pet", "configData": { - "id": "Huge Mosaic Lamb", - "pt": 1, + "id": "Pixie Bee", "sh": true, }, - "value": 4058284850, + "value": 7257275, }, { "category": "Pet", "configData": { - "id": "Huge Painted Cat", + "id": "Huge Glade Griffin", "pt": 2, }, - "value": 322656987, + "value": 1583, }, { "category": "Pet", "configData": { - "id": "Cyborg Corgi", + "id": "Empyrean Corgi", "pt": 1, - "sh": true, }, - "value": 49, + "value": 1347038, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Titanic Hippomelon", + "id": "Time Trial Gift", + }, + "value": 19184087, + }, + { + "category": "Booth", + "configData": { + "id": "Nightfall", }, - "value": 4759200057, + "value": 1657, }, { "category": "Pet", "configData": { - "id": "Jellyfish", - "pt": 2, - "sh": true, + "id": "Empyrean Corgi", }, - "value": 14000, + "value": 9788885, }, { "category": "Pet", "configData": { - "id": "Huge Otter", + "id": "Huge Pixie Bee", }, - "value": 242907768, + "value": 2088, }, { "category": "Pet", "configData": { - "id": "Huge Mrs. Claws", + "id": "Mushroom Snail", "pt": 2, "sh": true, }, - "value": 1152585611, + "value": 30667, }, { "category": "Pet", "configData": { - "id": "Fragmented Dominus", + "id": "Mushroom Snail", "pt": 1, "sh": true, }, - "value": 33800, + "value": 48558, }, { "category": "Pet", "configData": { - "id": "Puffin", + "id": "Empyrean Corgi", "pt": 2, - "sh": true, }, - "value": 165000, + "value": 2327570, }, { "category": "Pet", "configData": { - "id": "Huge Pixel Corgi", - "pt": 2, + "id": "Mossy Lamb", "sh": true, }, - "value": 1396928011, + "value": 246107, }, { "category": "Pet", "configData": { - "id": "Encrusted Dragon", + "id": "Beegle Dog", + "sh": true, }, - "value": 772, + "value": 2026695, }, { "category": "Pet", "configData": { - "id": "Huge Robber Pug", + "id": "Beegle Dog", + "pt": 1, "sh": true, }, - "value": 136444831, + "value": 157526, }, { "category": "Pet", "configData": { - "id": "North Pole Bunny", + "id": "Honey Golem", "pt": 1, "sh": true, }, - "value": 2500, + "value": 43782, }, { "category": "Pet", "configData": { - "id": "M-2 PROTOTYPE", + "id": "Mossy Lamb", "pt": 2, "sh": true, }, - "value": 107496, + "value": 32020, }, { "category": "Pet", "configData": { - "id": "Robber Cat", + "id": "Flying Piggy", + "sh": true, }, - "value": 656, + "value": 81094, }, { "category": "Pet", "configData": { - "id": "Huge Sombrero Chihuahua", + "id": "Flying Piggy", "pt": 2, + "sh": true, }, - "value": 4517929886, + "value": 17414, }, { "category": "Pet", "configData": { - "id": "Tabby Cat", - "pt": 2, + "id": "Relic Cat", "sh": true, }, - "value": 600, + "value": 404775, }, { "category": "Pet", "configData": { - "id": "Huge Elf Cat", - "pt": 2, + "id": "Mushroom Corgi", + "pt": 1, "sh": true, }, - "value": 470000000, + "value": 20018, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Tech Puma", + "id": "UFO", }, - "value": 266, + "value": 2567, }, { "category": "Pet", "configData": { - "id": "Huge Stealth Dragon", - "pt": 1, + "id": "Relic Deer", "sh": true, }, - "value": 747164067, + "value": 145580, }, { "category": "Pet", "configData": { - "id": "Cyber Bear", + "id": "Flying Piggy", "pt": 1, + "sh": true, }, - "value": 5524, + "value": 16736, }, { "category": "Pet", "configData": { - "id": "Icemortuus", - "pt": 2, + "id": "Empyrean Owl", }, - "value": 578, + "value": 781945, }, { "category": "Pet", "configData": { - "id": "Candycane Unicorn", - "pt": 1, + "id": "Mushroom Snail", + "sh": true, }, - "value": 1684282, + "value": 224640, }, { "category": "Pet", "configData": { - "id": "Huge Inferno Cat", - "pt": 1, + "id": "Mushroom Corgi", + "sh": true, }, - "value": 1362218489, + "value": 70447, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Pastel Elephant", + "id": "Sage Axolotl", }, - "value": 1102, + "value": 8653, }, { "category": "Pet", "configData": { - "id": "Imp", - "pt": 1, - "sh": true, + "id": "Empyrean Owl", + "pt": 2, }, - "value": 567632, + "value": 171721, }, { "category": "Pet", "configData": { - "id": "Huge Pixel Corgi", - "pt": 1, + "id": "Pixie Bee", + "pt": 2, "sh": true, }, - "value": 928660070, + "value": 130946, }, { "category": "Pet", "configData": { - "id": "Candycane", - "pt": 2, + "id": "Huge Snow Crab", + "pt": 1, }, - "value": 18603723, + "value": 5295, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Inferno Dominus", - "pt": 2, + "id": "Luxe Axolotl", + "pt": 1, }, - "value": 33988077, + "value": 4034, }, { "category": "Pet", "configData": { - "id": "Enchanted Raccoon", - "pt": 2, + "id": "Mossy Lamb", + "pt": 1, "sh": true, }, - "value": 108, + "value": 33429, }, { "category": "Pet", "configData": { - "id": "Vibrant Toucan", - "pt": 1, + "id": "Honey Golem", + "sh": true, }, - "value": 309, + "value": 241435, }, { "category": "Pet", "configData": { - "id": "Huge Zebra", + "id": "Relic Deer", + "pt": 2, "sh": true, }, - "value": 161501598, + "value": 33438, }, { "category": "Pet", "configData": { - "id": "Huge Stealth Bobcat", - "pt": 2, + "id": "Relic Deer", + "pt": 1, "sh": true, }, - "value": 300000000, + "value": 29664, }, { "category": "Pet", "configData": { - "id": "Gecko", + "id": "Honey Golem", "pt": 2, "sh": true, }, - "value": 1, + "value": 21000, }, { "category": "Pet", "configData": { - "id": "Reaper", - "pt": 1, + "id": "Huge Enchanted Dog", }, - "value": 81, + "value": 2413, }, { "category": "Pet", "configData": { - "id": "Tulip Hedgehog", + "id": "Mushroom Corgi", "pt": 2, "sh": true, }, - "value": 5200, + "value": 14619, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Fluffy Cat", + "id": "Frostbyte Penguin", "pt": 2, - "sh": true, }, - "value": 856550395, + "value": 1553, }, { "category": "Pet", "configData": { - "id": "Huge Zebra", + "id": "Beluga Whale", "pt": 2, - "sh": true, }, - "value": 1405439758, + "value": 448, }, { "category": "Pet", "configData": { - "id": "Empyrean Stallion", - "sh": true, + "id": "Huge Royal Peacock", + "pt": 1, }, - "value": 1622, + "value": 11418, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Huge Monkey", - "pt": 2, + "id": "Police", }, - "value": 4549885824, + "value": 1646, }, { "category": "Pet", "configData": { - "id": "Royal Cloud Cat", - "sh": true, + "id": "Huge Royal Peacock", }, - "value": 2656, + "value": 55619, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Skeleton", - "pt": 2, + "id": "Frostbyte Walrus", + "pt": 1, "sh": true, }, - "value": 160000000, - }, - { - "category": "Pet", - "configData": { - "id": "Cyber Ducky", - }, - "value": 100, + "value": 795, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Steampunk Fish", + "id": "Frostbyte Narwhal", "pt": 2, + "sh": true, }, - "value": 92064, + "value": 2557, }, { "category": "Pet", "configData": { - "id": "Titanic Monkey", - "pt": 2, + "id": "Beluga Whale", + "pt": 1, }, - "value": 69, + "value": 561, }, { "category": "Pet", "configData": { - "id": "Tiedye Griffin", + "id": "Titanic Chest Mimic", "pt": 2, - "sh": true, }, - "value": 120240002, + "value": 99, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Safari Dog", - "pt": 2, + "id": "Frostbyte Penguin", + "pt": 1, + "sh": true, }, - "value": 140000000, + "value": 156, }, { "category": "Pet", "configData": { - "id": "Nuclear Agony", - "pt": 2, + "id": "Huge Pixie Bee", + "pt": 1, }, - "value": 7153, + "value": 385, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Cyber Axolotl", - "pt": 2, + "id": "Frostbyte Penguin", "sh": true, }, - "value": 4400, + "value": 1387, }, { "category": "Pet", "configData": { - "id": "Santa Paws", - "pt": 1, + "id": "Huge Royal Peacock", + "pt": 2, }, - "value": 2577409, + "value": 2289, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Mechanical Spider", - "pt": 2, + "id": "Luxe Axolotl", + "sh": true, }, - "value": 10511, + "value": 320, }, { "category": "Pet", "configData": { - "id": "Chroma Tiger", + "id": "Titanic Keyboard Cat", }, - "value": 77, + "value": 973, }, { "category": "Pet", "configData": { - "id": "Alien Arachnid", - "pt": 2, + "id": "Gargantuan Nyan Cat", }, - "value": 374, + "value": 42, }, { "category": "Pet", "configData": { - "id": "Bunny", - "pt": 1, + "id": "Huge Snow Crab", "sh": true, }, - "value": 180, + "value": 230, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Orange Parrot", + "id": "Melted Slime", + "pt": 2, + "sh": true, }, - "value": 22, + "value": 772, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Party Cat", + "id": "Sage Axolotl", + "pt": 2, }, - "value": 182800579, + "value": 112, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Mosaic Lamb", + "id": "Frostbyte Walrus", "pt": 2, "sh": true, }, - "value": 2220059796, + "value": 96, }, { "category": "Pet", "configData": { - "id": "Demon Serpents", + "id": "Empyrean Corgi", + "pt": 1, + "sh": true, }, - "value": 1079, + "value": 29330, }, { "category": "Pet", "configData": { - "id": "Huge Poseidon Corgi", - "pt": 1, + "id": "Huge Royal Peacock", + "sh": true, }, - "value": 49332273, + "value": 474, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Bunny", + "id": "Huge Skeleton Shark", "pt": 2, }, - "value": 3200, + "value": 128, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Chest Mimic", + "id": "Luxe Axolotl", "pt": 2, }, - "value": 1848586739, + "value": 379, }, { "category": "Pet", "configData": { - "id": "Nightfall Wolf", + "id": "Huge Royal Peacock", "pt": 1, "sh": true, }, - "value": 323476817, + "value": 91, }, { "category": "Pet", "configData": { - "id": "Huge Gleebo The Alien", - "sh": true, + "id": "Titanic Keyboard Cat", + "pt": 1, }, - "value": 4085937013, + "value": 110, }, { "category": "Pet", "configData": { - "id": "Huge Cyborg Cat", + "id": "Huge Enchanted Dog", "pt": 2, }, - "value": 1290907627, - }, - { - "category": "Pet", - "configData": { - "id": "Huge Wild Fire Agony", - "sh": true, - }, - "value": 3587559644, + "value": 214, }, { "category": "Pet", "configData": { - "id": "Shadow Dragon", + "id": "Empyrean Corgi", "pt": 2, - }, - "value": 1959, - }, - { - "category": "Pet", - "configData": { - "id": "Huge Party Axolotl", - "pt": 1, "sh": true, }, - "value": 1183872016, + "value": 21530, }, { "category": "Pet", "configData": { - "id": "Police Dog", + "id": "Huge Skeleton Shark", "sh": true, }, - "value": 130593, + "value": 38, }, { "category": "Pet", "configData": { - "id": "Huge Tech Chest Mimic", + "id": "Empyrean Owl", "pt": 1, "sh": true, }, - "value": 1384548257, + "value": 3196, }, { "category": "Pet", "configData": { - "id": "Huge Chameleon", + "id": "Empyrean Owl", + "pt": 2, "sh": true, }, - "value": 2404841462, + "value": 1291, }, { "category": "Pet", "configData": { - "id": "Sandcastle Cat", + "id": "Huge Snow Crab", "pt": 1, "sh": true, }, - "value": 80, - }, - { - "category": "Pet", - "configData": { - "id": "Hacker Cat", - }, - "value": 1119, + "value": 44, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Easter Bunny", + "id": "Luxe Axolotl", "pt": 1, "sh": true, }, - "value": 2239742235, + "value": 47, }, { "category": "Pet", "configData": { - "id": "Plague Dragon", + "id": "Titanic Keyboard Cat", "pt": 2, }, - "value": 1244, + "value": 26, }, { "category": "Pet", "configData": { - "id": "Llama", - "pt": 2, + "id": "Titanic Keyboard Cat", + "pt": 1, "sh": true, }, - "value": 10000, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Huge Cyborg Cat", + "id": "Empyrean Corgi", "sh": true, }, - "value": 2432782922, + "value": 33390, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Shadow Dragon", + "id": "Sage Axolotl", "sh": true, }, - "value": 1000, + "value": 97, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Matrix Monkey", + "id": "Frostbyte Penguin", "pt": 2, "sh": true, }, - "value": 21278048, + "value": 16, }, { "category": "Pet", "configData": { - "id": "Cowboy Dog", + "id": "Huge Wicked Angelus", + "pt": 1, "sh": true, }, - "value": 10000, + "value": 44, }, { "category": "Pet", "configData": { - "id": "Huge Cow", + "id": "Huge Enchanted Dog", "pt": 1, }, - "value": 749232781, + "value": 250, }, { "category": "Pet", "configData": { - "id": "Huge Tiedye Bunny", + "id": "Titanic Super Corgi", + "pt": 2, "sh": true, }, - "value": 1499044706, + "value": 2, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Abyssal Fish", + "id": "Sage Axolotl", "pt": 1, + "sh": true, }, - "value": 775, + "value": 10, + }, + { + "category": "Catch", + "configData": { + "id": "Sage Axolotl", + "pt": 2, + "sh": true, + }, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Alien Axolotl", + "id": "Huge Stingray", }, - "value": 348, + "value": 1001330, }, { "category": "Pet", "configData": { - "id": "Huge Helicopter Cat", + "id": "Huge Stingray", "pt": 1, }, - "value": 38344520, + "value": 223487, }, { "category": "Pet", "configData": { - "id": "Huge Apple Capybara", + "id": "Huge Stingray", "pt": 2, }, - "value": 1907339913, + "value": 45129, }, { "category": "Pet", "configData": { - "id": "Nuclear Mining Cat", - "pt": 1, + "id": "Huge Stingray", "sh": true, }, - "value": 50000, + "value": 10067, }, { "category": "Pet", "configData": { - "id": "Huge Neon Twilight Dragon", - "pt": 2, + "id": "Huge Stingray", + "pt": 1, + "sh": true, }, - "value": 4876602913, + "value": 1714, }, { "category": "Pet", "configData": { - "id": "Festive Cardinal", - "pt": 2, + "id": "Titanic Narwhal", }, - "value": 13962560, + "value": 1439, }, { "category": "Pet", "configData": { - "id": "Huge Pirate Parrot", - "pt": 1, + "id": "Huge Stingray", + "pt": 2, "sh": true, }, - "value": 150000, + "value": 283, }, { "category": "Pet", "configData": { - "id": "Princess Dragon", - "pt": 1, + "id": "Huge Royal Peacock", + "pt": 2, "sh": true, }, - "value": 893, + "value": 18, }, { "category": "Pet", "configData": { - "id": "Huge Tiedye Axolotl", - "pt": 2, + "id": "Huge Enchanted Dog", + "sh": true, }, - "value": 1102712774, + "value": 51, }, { "category": "Pet", "configData": { - "id": "Huge Tiedye Bunny", + "id": "Huge Skeleton Shark", "pt": 2, "sh": true, }, - "value": 3490000037, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Jelly Corgi", - "pt": 2, - "sh": true, + "id": "Huge Walrus", }, - "value": 206031362, + "value": 27326, }, { "category": "Pet", "configData": { - "id": "King Cobra", + "id": "Huge Walrus", "pt": 1, }, - "value": 7600, + "value": 4625, }, { "category": "Pet", "configData": { - "id": "Corrupt Cat", + "id": "Huge Walrus", "pt": 2, }, - "value": 1409, + "value": 4679, }, { "category": "Pet", "configData": { - "id": "Huge Tiki Dominus", + "id": "Huge Walrus", "sh": true, }, - "value": 3448930596, + "value": 617, }, { "category": "Pet", "configData": { - "id": "Froggy", + "id": "Huge Walrus", "pt": 1, "sh": true, }, - "value": 134, + "value": 93, + }, + { + "category": "Catch", + "configData": { + "id": "Luxe Axolotl", + "pt": 2, + "sh": true, + }, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Huge Sun Angelus", + "id": "Huge Walrus", + "pt": 2, "sh": true, }, - "value": 609950608, + "value": 98, }, { "category": "Pet", "configData": { - "id": "Huge Nightfall Wolf", + "id": "Huge Skeleton Shark", "pt": 1, "sh": true, }, - "value": 819136004, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Huge Fairy", + "id": "Titanic Keyboard Cat", "sh": true, }, - "value": 1511634063, + "value": 19, }, { "category": "Pet", "configData": { - "id": "Huge Anime Agony", + "id": "Empyrean Owl", "sh": true, }, - "value": 2132400498, + "value": 604, }, { "category": "Pet", "configData": { - "id": "Samurai Bull", - "pt": 1, + "id": "Huge Wicked Angelus", + "pt": 2, + "sh": true, }, - "value": 309, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Huge Basketball Retriever", + "id": "Huge Enchanted Dog", "pt": 2, + "sh": true, }, - "value": 3159656477, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Floatie Ducky", + "id": "Huge Enchanted Dog", "pt": 1, "sh": true, }, - "value": 1610, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Frostbyte Bear", - "pt": 2, + "id": "Titanic Chest Mimic", "sh": true, }, - "value": 12610, + "value": 25, }, { "category": "Pet", "configData": { - "id": "Playful Seal", - "pt": 1, - "sh": true, + "id": "Huge Relic Deer", }, - "value": 8701, + "value": 8993, }, { "category": "Pet", "configData": { - "id": "Fragmented Dominus", + "id": "Huge Relic Deer", "pt": 2, }, - "value": 1582, + "value": 1549, }, { "category": "Pet", "configData": { - "id": "Astral Axolotl", - "pt": 2, + "id": "Huge Relic Deer", + "pt": 1, }, - "value": 933, + "value": 2000, }, { "category": "Pet", "configData": { - "id": "Huge Present Chest Mimic", - "pt": 1, + "id": "Titanic Empyrean Owl", }, - "value": 999000000, + "value": 229, }, { "category": "Pet", "configData": { - "id": "Titanic Strawberry Cow", + "id": "Huge Relic Deer", + "sh": true, }, - "value": 13564065947, + "value": 160, }, { "category": "Pet", "configData": { - "id": "Tiedye Bear", + "id": "Huge Relic Deer", "pt": 2, "sh": true, }, - "value": 7000000, + "value": 20, }, { "category": "Pet", "configData": { - "id": "Huge Punksky", + "id": "Huge Relic Deer", "pt": 1, + "sh": true, }, - "value": 39915525, + "value": 20, }, { "category": "Pet", "configData": { - "id": "Hyena", + "id": "Titanic Empyrean Owl", "pt": 2, - "sh": true, }, - "value": 906912, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Angel Cow", + "id": "Titanic Empyrean Owl", "pt": 1, - "sh": true, }, - "value": 1480, + "value": 16, }, { "category": "Pet", "configData": { - "id": "Wizard Cat", + "id": "Gargantuan Nyan Cat", "pt": 2, + "sh": true, }, - "value": 304, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Huge Fairy", - "pt": 1, - "sh": true, + "id": "Huge Wisp Deer", }, - "value": 397920000, + "value": 62, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Bee", + "id": "Nightmare Kraken", "pt": 1, "sh": true, }, - "value": 343337273, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Bleebo The Alien", + "id": "Huge Wisp Deer", + "pt": 1, }, - "value": 454, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Huge White Tiger", + "id": "Huge Snow Crab", + "pt": 2, "sh": true, }, - "value": 1514163066, + "value": 7, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Guilded Raven", + "id": "Corrupt Octopus", "pt": 1, "sh": true, }, - "value": 0, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Golden Retriever", - "pt": 2, + "id": "Huge Pixel Cat", + "pt": 1, "sh": true, }, - "value": 14001, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Pastel Sock Corgi", + "id": "Huge Wisp Deer", "pt": 2, }, - "value": 1159, + "value": 2, }, { - "category": "Pet", + "category": "EggFarm", "configData": { - "id": "Huge Peacock", - "pt": 2, - "sh": true, + "id": "Pixel Agony", }, - "value": 2887520004, + "value": 4812968, }, { - "category": "Pet", + "category": "EggFarm", "configData": { - "id": "Huge White Tiger", + "id": "Pixel Angelus", }, - "value": 187855487, + "value": 4069769, }, { - "category": "Pet", + "category": "EggFarm", "configData": { - "id": "Corrupt Cat", + "id": "Pixel Chick", }, - "value": 261, + "value": 999020575, }, { - "category": "Pet", + "category": "EggFarm", "configData": { - "id": "Meebo in a Spaceship", - "pt": 2, - "sh": true, + "id": "Pixel Demon", }, - "value": 31977946, + "value": 6498788, }, { - "category": "Pet", + "category": "Currency", "configData": { - "id": "Titanic Dominus Astra", - "pt": 2, + "id": "FarmingCoins", }, - "value": 999000000, + "value": 1795338873729297, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Titanic Red Panda", + "id": "Pixel Carrot", }, - "value": 12559051625, + "value": 335780842, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Huge Fox", - "pt": 1, + "id": "Pixel Chick", }, - "value": 234865622, + "value": 900586716, }, { - "category": "Pet", + "category": "EggFarm", "configData": { - "id": "Ice Penguin", - "sh": true, + "id": "Pixel Cat", }, - "value": 461, + "value": 645528743, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Bear", - "pt": 2, + "id": "Pixel Upgrade Token", }, - "value": 1163729215, + "value": 10373690100, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Mystical Fox", - "pt": 1, + "id": "Pixel Cat", }, - "value": 362, + "value": 582916627, }, { - "category": "Pet", + "category": "EggFarm", "configData": { - "id": "Tech Ninja Panda", - "sh": true, + "id": "Pixel Monkey", }, - "value": 404, + "value": 30149752, }, { "category": "Pet", "configData": { - "id": "Holographic Axolotl", - "pt": 1, - "sh": true, + "id": "Wave Spirit", }, - "value": 20400, + "value": 23996, }, { "category": "Pet", "configData": { - "id": "Sandcastle Dog", - "pt": 1, - "sh": true, + "id": "Wave Spirit", + "pt": 2, }, - "value": 1, + "value": 1732, }, { "category": "Pet", "configData": { - "id": "Silver Bison", - "sh": true, + "id": "Blossom Spirit", }, - "value": 43855, + "value": 98093, }, { "category": "Pet", "configData": { - "id": "Mosaic Lamb", - "pt": 2, - "sh": true, + "id": "Light Spirit", }, - "value": 236380511, + "value": 61097, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Huge Luau Cat", - "pt": 1, - "sh": true, + "id": "Exclusive Egg 51", }, - "value": 1445766026, + "value": 867146, }, { - "category": "Pet", + "category": "EggFarm", "configData": { - "id": "Cupcake Unicorn", - "pt": 2, - "sh": true, + "id": "Pixel Tiger", }, - "value": 754, + "value": 16349615, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Dominus Hippomelon", - "pt": 1, + "id": "Pixel Potato", }, - "value": 616, + "value": 77322786, }, { - "category": "Pet", + "category": "EggFarm", "configData": { - "id": "Huge Stealth Dragon", - "pt": 2, - "sh": true, + "id": "Pixel Corgi", }, - "value": 1956846101, + "value": 246489176, }, { - "category": "Pet", + "category": "EggFarm", "configData": { - "id": "Hell Rock", - "pt": 1, - "sh": true, + "id": "Pixel Piggy", }, - "value": 2000, + "value": 445303496, }, { "category": "Pet", "configData": { - "id": "Jelly Alien", - "pt": 1, - "sh": true, + "id": "Huge Pixel Monkey", }, - "value": 45435, + "value": 4599, }, { - "category": "Pet", + "category": "EggFarm", "configData": { - "id": "Huge Firefly", - "sh": true, + "id": "Pixel Griffin", }, - "value": 25000000000, + "value": 13789243, }, { - "category": "Pet", + "category": "EggFarm", "configData": { - "id": "King Cow", - "pt": 1, - "sh": true, + "id": "Pixel Yeti", }, - "value": 13464, + "value": 7208495, }, { - "category": "Pet", + "category": "EggFarm", "configData": { - "id": "Froggy", - "pt": 2, - "sh": true, + "id": "Pixel Wolf", }, - "value": 10000, + "value": 23449709, }, { "category": "Pet", "configData": { - "id": "Dominus Serpents", + "id": "Light Spirit", "pt": 2, }, - "value": 3005, + "value": 3311, }, { "category": "Pet", "configData": { - "id": "Huge Otter", - "sh": true, + "id": "Huge Blossom Spirit", }, - "value": 1025897248, + "value": 11674, }, { "category": "Pet", "configData": { - "id": "Vibrant Whale", - "pt": 1, + "id": "Huge Wave Spirit", }, - "value": 8844, + "value": 4394, }, { "category": "Pet", "configData": { - "id": "Cyborg Bat", + "id": "Huge Wave Spirit", "pt": 2, }, - "value": 292, + "value": 279, }, { - "category": "Pet", + "category": "EggFarm", "configData": { - "id": "Huge Dog", - "pt": 2, + "id": "Pixel Goblin", }, - "value": 1121505785, + "value": 97616892, }, { "category": "Pet", "configData": { - "id": "Huge Fox", - "sh": true, + "id": "Huge Pixel Monkey", + "pt": 1, }, - "value": 1777779191, + "value": 1989, }, { "category": "Pet", "configData": { - "id": "Huge Owl", + "id": "Blossom Spirit", + "pt": 2, }, - "value": 402239366, + "value": 4683, }, { - "category": "Pet", + "category": "EggFarm", "configData": { - "id": "Frostbyte Bear", - "pt": 2, + "id": "Pixel Bunny", }, - "value": 577, + "value": 298768592, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Huge Blue Balloon Cat", - "pt": 2, + "id": "Pixel Corgi", }, - "value": 6020748287, + "value": 223564615, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Knight Beagle", - "pt": 1, - "sh": true, + "id": "Pixel Corn", }, - "value": 413684661, + "value": 7797832, }, { - "category": "Pet", + "category": "EggFarm", "configData": { - "id": "Huge Party Dragon", + "id": "Pixel Bee", }, - "value": 39937242, + "value": 42546412, }, { "category": "Pet", "configData": { - "id": "Zombie Corgi", - "pt": 2, + "id": "Titanic Wood Spirit", }, - "value": 1016, + "value": 833, + }, + { + "category": "Worker", + "configData": { + "id": "Pixel Piggy", + }, + "value": 402727957, }, { "category": "Pet", "configData": { - "id": "Titanic Emoji Corgi", + "id": "Huge Pixel Monkey", "pt": 2, }, - "value": 50000000, + "value": 548, }, { "category": "Pet", "configData": { - "id": "Emoji Monkey", + "id": "Blossom Spirit", + "sh": true, }, - "value": 9192552, + "value": 3138, }, { "category": "Pet", "configData": { - "id": "Reaper", + "id": "Wave Spirit", + "pt": 2, + "sh": true, }, - "value": 134, + "value": 59, }, { "category": "Pet", "configData": { - "id": "Huge Kawaii Tiger", + "id": "Blossom Spirit", "pt": 2, + "sh": true, }, - "value": 6839999971, + "value": 239, }, { "category": "Pet", "configData": { - "id": "Vampire Bat", + "id": "Huge Blossom Spirit", + "sh": true, }, - "value": 574, + "value": 469, }, { "category": "Pet", "configData": { - "id": "Huge Jelly Corgi", + "id": "Light Spirit", + "sh": true, }, - "value": 189229157, + "value": 2314, }, { "category": "Pet", "configData": { - "id": "Tiki Dominus", + "id": "Huge Wave Spirit", "pt": 2, + "sh": true, }, - "value": 2220, + "value": 60, }, { "category": "Pet", "configData": { - "id": "Queen Slime", - "pt": 1, + "id": "Wave Spirit", + "sh": true, }, - "value": 645, + "value": 837, }, { "category": "Pet", "configData": { - "id": "Huge Good vs Evil Dragon", + "id": "Huge Blossom Spirit", + "pt": 2, }, - "value": 262420470, + "value": 407, }, { "category": "Pet", "configData": { - "id": "Skeleton", + "id": "Huge Pixel Monkey", + "sh": true, }, - "value": 922, + "value": 125, + }, + { + "category": "Worker", + "configData": { + "id": "Pixel Bunny", + }, + "value": 270568565, }, { "category": "Pet", "configData": { - "id": "Jelly Shiba", + "id": "Huge Pixel Monkey", "pt": 2, "sh": true, }, - "value": 159937785, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Detective Terrier", - "pt": 1, + "id": "Huge Wave Spirit", + "sh": true, }, - "value": 2803, + "value": 261, + }, + { + "category": "Worker", + "configData": { + "id": "Pixel Goblin", + }, + "value": 88087958, }, { "category": "Pet", "configData": { - "id": "Police Cat", + "id": "Titanic Wood Spirit", + "sh": true, }, - "value": 10647, + "value": 13, }, { "category": "Pet", "configData": { - "id": "Blazing Bat", + "id": "Gargantuan Magma Spirit", }, - "value": 8626215, + "value": 65, }, { "category": "Pet", "configData": { - "id": "Arctic Fox", + "id": "Huge Pixel Monkey", "pt": 1, "sh": true, }, - "value": 79999, + "value": 27, }, { "category": "Pet", "configData": { - "id": "Zombie Bull", + "id": "Light Spirit", "pt": 2, + "sh": true, }, - "value": 1657, + "value": 179, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Grim Reaper", - "pt": 2, + "id": "Pixel Bee", }, - "value": 930, + "value": 38192708, }, { "category": "Pet", "configData": { - "id": "Fossil Dragon", + "id": "Huge Blossom Spirit", "pt": 2, "sh": true, }, - "value": 310828, + "value": 12, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Knight Cat", - "pt": 1, + "id": "Pixel Monkey", }, - "value": 174, + "value": 26866883, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Vampire Bat", - "pt": 2, + "id": "Pixel Wolf", }, - "value": 701, + "value": 20828390, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Robber Goblin", - "pt": 2, + "id": "Pixel Griffin", }, - "value": 1747, + "value": 12085073, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Neon Griffin", - "pt": 2, + "id": "Pixel Tiger", }, - "value": 36610647, + "value": 14387499, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Creepy Wolf", - "sh": true, + "id": "Pixel Agony", }, - "value": 1617, + "value": 3997290, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Skeleton", - "pt": 2, + "id": "Pixel Yeti", }, - "value": 611, + "value": 6195226, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Zombie Corgi", + "id": "Pixel Demon", }, - "value": 1185, + "value": 5540169, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Old Wizard Owl", - "sh": true, + "id": "Pixel Angelus", }, - "value": 490990338, + "value": 3366336, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Frostbyte Snow Leopard", - "pt": 1, - "sh": true, + "id": "Pixel Rainbow Dust", }, - "value": 1, + "value": 208429010, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Wizard Cat", - "pt": 1, + "id": "Pixel Rainbow Shard", }, - "value": 565, + "value": 51803425, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Hi-Tech Flamingo", + "id": "Pixel Rainbow Gem", }, - "value": 64, + "value": 14614145, }, { "category": "Pet", "configData": { - "id": "Floatie Ducky", + "id": "Titanic Wood Spirit", "pt": 2, - "sh": true, }, - "value": 448600, + "value": 23, }, { "category": "Pet", "configData": { - "id": "Huge Pineapple Monkey", - "sh": true, + "id": "Huge Pixel Goblin", }, - "value": 386317309, + "value": 52018, }, { "category": "Pet", "configData": { - "id": "Graffiti Raccoon", + "id": "Gargantuan Magma Spirit", "pt": 2, }, - "value": 75, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Queen Slime", - "pt": 2, + "id": "Huge Pixel Goblin", + "pt": 1, }, - "value": 596, + "value": 16930, }, { "category": "Pet", "configData": { - "id": "Huge Dove", + "id": "Huge Pixie Bee", + "pt": 2, }, - "value": 187337161, + "value": 72, }, { "category": "Pet", "configData": { - "id": "Ghost Cat", + "id": "Huge Pixel Goblin", + "pt": 2, }, - "value": 166, + "value": 3761, }, { "category": "Pet", "configData": { - "id": "Grim Reaper", + "id": "Huge Pixel Yeti", }, - "value": 1641, + "value": 5656, }, { "category": "Pet", "configData": { - "id": "Blue Fluffy", + "id": "Huge Pixel Goblin", + "pt": 2, "sh": true, }, - "value": 229, + "value": 45, }, { "category": "Pet", "configData": { - "id": "Slime", + "id": "Huge Pixel Goblin", "sh": true, }, - "value": 216, + "value": 891, }, { "category": "Pet", "configData": { - "id": "Empyrean Snake", - "pt": 2, + "id": "Huge Pixel Goblin", + "pt": 1, + "sh": true, }, - "value": 1681, + "value": 274, }, { "category": "Pet", "configData": { - "id": "Werewolf", + "id": "Huge Pixel Agony", }, - "value": 934, + "value": 1044, }, { "category": "Pet", "configData": { - "id": "Crystal Deer", - "pt": 2, - "sh": true, + "id": "Huge Pixel Yeti", + "pt": 1, }, - "value": 140348034, + "value": 848, }, { "category": "Pet", "configData": { - "id": "Knight Cat", - "pt": 2, + "id": "Beluga Whale", + "sh": true, }, - "value": 1474, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Heavenly Peacock", - "sh": true, + "id": "Titanic Pixel Angelus", }, - "value": 10200, + "value": 1685, }, { "category": "Pet", "configData": { - "id": "Stacked King Slime", + "id": "Titanic Wood Spirit", "pt": 2, + "sh": true, }, - "value": 5097, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Hyena", + "id": "Huge Pixel Agony", "pt": 1, }, - "value": 1686, + "value": 146, }, { "category": "Pet", "configData": { - "id": "Hacked Raccoon", - "pt": 1, + "id": "Huge Pixel Yeti", + "pt": 2, }, - "value": 1986, + "value": 136, }, { "category": "Pet", "configData": { - "id": "Angel Dog", - "pt": 1, + "id": "Huge Pixel Yeti", "sh": true, }, - "value": 65691, + "value": 61, }, { "category": "Pet", "configData": { - "id": "Huge Masked Fox", + "id": "Huge Pixel Yeti", + "pt": 1, "sh": true, }, - "value": 1696484594, + "value": 15, }, { "category": "Pet", "configData": { - "id": "Pristine Poodle", + "id": "Titanic Pixel Angelus", "pt": 1, }, - "value": 138, + "value": 332, }, { "category": "Pet", "configData": { - "id": "Robber Goblin", + "id": "Huge Pixel Agony", + "pt": 2, }, - "value": 461, + "value": 29, }, { "category": "Pet", "configData": { - "id": "Huge Mushroom Raccoon", + "id": "Titanic Pixel Angelus", "pt": 2, - "sh": true, }, - "value": 2002375928, + "value": 70, }, { "category": "Pet", "configData": { - "id": "Hooded Bobcat", + "id": "Huge Pixel Agony", "sh": true, }, - "value": 24562, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Huge Pixel Wolf", + "id": "Titanic Pixel Angelus", "sh": true, }, - "value": 9557580855, + "value": 11, }, { "category": "Pet", "configData": { - "id": "Empyrean Stallion", + "id": "Huge Pixel Yeti", "pt": 2, + "sh": true, }, - "value": 1003, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Huge Chroma Swan", - "pt": 2, + "id": "Huge Pixel Agony", + "pt": 1, + "sh": true, }, - "value": 1283411267, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Galaxy Fox", + "id": "Titanic Pixel Angelus", + "pt": 1, + "sh": true, }, - "value": 1810, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Chocolate Frog", + "id": "Titanic Exquisite Elephant", "pt": 2, + "sh": true, }, - "value": 3887, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Hyena", - "pt": 2, + "id": "Titanic Chest Mimic", + "pt": 1, + "sh": true, }, - "value": 109, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Emoji Dog", + "id": "Huge Pixel Agony", + "pt": 2, + "sh": true, }, - "value": 4955107, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Raptor", - "pt": 2, + "id": "Huge Balloon Corgi", }, - "value": 517, + "value": 895, }, { "category": "Pet", "configData": { - "id": "Cyber Bear", - "sh": true, + "id": "Huge Balloon Corgi", + "pt": 1, }, - "value": 2269, + "value": 372, }, { "category": "Pet", "configData": { - "id": "Robot", + "id": "Huge Balloon Corgi", + "pt": 2, }, - "value": 717, + "value": 150, }, { "category": "Pet", "configData": { - "id": "Ghost Cat", - "pt": 2, + "id": "Meteor Mole", + "pt": 1, }, - "value": 464, + "value": 11466372, }, { "category": "Pet", "configData": { - "id": "Evil Ram", + "id": "Sprout Pegasus", "pt": 2, }, - "value": 198, + "value": 4074925, }, { "category": "Pet", "configData": { - "cv": 5, - "id": "Huge Chroma Ink Blob", - "sh": true, + "id": "Rootkin Fox", }, - "value": 2583199980, + "value": 101180034, }, { "category": "Pet", "configData": { - "id": "Gingerbread Corgi", - "pt": 2, - "sh": true, + "id": "Sprout Pegasus", }, - "value": 159999999, + "value": 37073439, }, { "category": "Pet", "configData": { - "id": "Scary Corgi", + "id": "Meteor Mole", }, - "value": 88, + "value": 93651973, }, { "category": "Pet", "configData": { - "cv": 6, - "id": "Huge Chroma Phoenix", + "id": "Meteor Mole", "pt": 2, }, - "value": 541067488, + "value": 5868044, }, { "category": "Pet", "configData": { - "id": "Huge Happy Computer", + "id": "Rootkin Fox", "pt": 2, }, - "value": 121146552, + "value": 8910748, }, { "category": "Pet", "configData": { - "id": "Empyrean Fox", - "pt": 2, + "id": "Sprout Pegasus", + "pt": 1, }, - "value": 539, + "value": 5822043, }, { "category": "Pet", "configData": { - "id": "Huge Bison", - "pt": 2, + "id": "Glimmercap Turtle", + "pt": 1, }, - "value": 79130310, + "value": 4561219, }, { "category": "Pet", "configData": { - "id": "Grim Reaper", - "sh": true, + "id": "Glimmercap Turtle", + "pt": 2, }, - "value": 103504, + "value": 3421910, }, { "category": "Pet", "configData": { - "id": "Sad Hamster", - "pt": 2, + "id": "Glimmercap Turtle", }, - "value": 16966064, + "value": 33972645, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Detective Terrier", + "id": "Farming Sprinkler 3", }, - "value": 268, + "value": 659250, }, { "category": "Pet", "configData": { - "id": "Safari Cat", + "id": "Wisp Wolf", "pt": 1, - "sh": true, }, - "value": 298, + "value": 2606711868, }, { "category": "Pet", "configData": { - "id": "Ender Goat", - "pt": 1, + "id": "Scroll Dragon", + "pt": 2, + "sh": true, }, - "value": 577, + "value": 46971877, }, { "category": "Pet", "configData": { - "id": "Ghost", + "id": "Scroll Dragon", "pt": 1, }, - "value": 526, + "value": 6441798603, }, { "category": "Pet", "configData": { - "id": "Psychic Seal", + "id": "Wisp Wolf", "pt": 2, - "sh": true, }, - "value": 562, + "value": 4073692428, }, { "category": "Pet", "configData": { - "id": "Comet Agony", + "id": "Scroll Dragon", "sh": true, }, - "value": 20684, - }, - { - "category": "Pet", - "configData": { - "id": "Cupcake", - }, - "value": 495, + "value": 244965256, }, { "category": "Pet", "configData": { - "id": "Huge Puurple Cat", + "id": "Scroll Dragon", "pt": 2, }, - "value": 1353608056, + "value": 8499437542, }, { "category": "Pet", "configData": { - "id": "Blue Slime", - "pt": 2, + "id": "Scroll Dragon", }, - "value": 1067, + "value": 63300115221, }, { "category": "Pet", "configData": { - "id": "Grim Reaper", - "pt": 1, + "id": "Wisp Wolf", + "sh": true, }, - "value": 419, + "value": 86993234, }, { "category": "Pet", "configData": { - "id": "Ice Bunny", - "pt": 1, - "sh": true, + "id": "Wisp Wolf", }, - "value": 361, + "value": 22753932677, }, { - "category": "Pet", + "category": "EggFarm", "configData": { - "id": "Sailor Shark", + "id": "Pixel Dominus Astra", }, - "value": 251, + "value": 3728249, }, { "category": "Pet", "configData": { - "id": "Skeleton", + "id": "Rootkin Fox", "pt": 1, }, - "value": 134, + "value": 15035539, }, { "category": "Pet", "configData": { - "id": "Rave Cat", + "id": "Starry Eye Bunny", "pt": 2, }, - "value": 206, + "value": 3981504, }, { "category": "Pet", "configData": { - "id": "Werewolf", + "id": "Starry Eye Bunny", "pt": 1, }, - "value": 417, + "value": 6585735, }, { "category": "Pet", "configData": { - "id": "Cyber Fox", - "sh": true, + "id": "Starry Eye Bunny", }, - "value": 77700, + "value": 31117036, }, { "category": "Pet", "configData": { - "id": "Tech Sphinx", + "id": "Wisp Wolf", "pt": 2, + "sh": true, }, - "value": 3190, + "value": 23991601, }, { "category": "Pet", "configData": { - "id": "Demon Cyclops", - "pt": 1, - "sh": true, + "id": "Telescope Owl", }, - "value": 10429, + "value": 7120791, }, { "category": "Pet", "configData": { - "id": "Queen Slime", + "id": "Telescope Owl", + "pt": 1, }, - "value": 249, + "value": 872822, }, { "category": "Pet", "configData": { - "id": "Huge Party Dragon", + "id": "Scroll Dragon", "pt": 1, + "sh": true, }, - "value": 50813658, + "value": 29547326, }, { "category": "Pet", "configData": { - "id": "Chocolate Hippo", - "pt": 2, + "id": "Glimmercap Turtle", + "sh": true, }, - "value": 7967, + "value": 147010, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Scary Corgi", - "sh": true, + "id": "Farming Sprinkler 1", }, - "value": 319, + "value": 8606568, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Royal Peacock", - "sh": true, + "id": "Pixel Cookie", }, - "value": 3185, + "value": 31691746, }, { "category": "Pet", "configData": { - "id": "Pixie Fox", - "sh": true, + "id": "Telescope Owl", + "pt": 2, }, - "value": 2723, + "value": 1494375, }, { "category": "Pet", "configData": { - "id": "Dominus Infernus", - "pt": 2, + "id": "Wisp Wolf", + "pt": 1, "sh": true, }, - "value": 915, + "value": 12344339, }, { "category": "Pet", "configData": { - "id": "Robber Goblin", - "pt": 1, + "id": "Rootkin Fox", + "sh": true, }, - "value": 259, + "value": 317607, }, { "category": "Pet", "configData": { - "id": "Ghost Cat", + "id": "Sprout Pegasus", "pt": 1, + "sh": true, }, - "value": 747, + "value": 36032, }, { "category": "Pet", "configData": { - "id": "Knight Cat", + "id": "Huge Pixel Sad Cat", }, - "value": 566, + "value": 2322, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Huge Cool Cat", + "id": "Pixel Piggy", "sh": true, }, - "value": 3002580362, + "value": 2690472, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Empyrean Fox", - "pt": 1, + "id": "Pixel Piggy", + "pt": 2, }, - "value": 387, + "value": 3070113, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Cloud Penguin", - "pt": 2, + "id": "Pixel Corgi", + "pt": 1, }, - "value": 425, + "value": 16488676, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Blurred Monkey", - "pt": 2, + "id": "Pixel Corgi", "sh": true, }, - "value": 1231, + "value": 1464158, }, { "category": "Pet", "configData": { - "id": "Huge Pixel Dragon", + "id": "Sprout Pegasus", "pt": 2, "sh": true, }, - "value": 18039999981, + "value": 26659, }, { "category": "Pet", "configData": { - "id": "Huge Evolved Hell Rock", + "id": "Meteor Mole", "sh": true, }, - "value": 1596799998, + "value": 300419, }, { "category": "Pet", "configData": { - "id": "Huge Blazing Bat", + "id": "Sprout Pegasus", "sh": true, }, - "value": 864427926, + "value": 145468, }, { "category": "Pet", "configData": { - "id": "Chocolate Bunny", + "id": "Glimmercap Turtle", "pt": 2, "sh": true, }, - "value": 73170, + "value": 23350, }, { "category": "Pet", "configData": { - "id": "Disco Ball Dragon", - "pt": 2, + "id": "Glimmercap Turtle", + "pt": 1, "sh": true, }, - "value": 38426461, + "value": 29521, }, { "category": "Pet", "configData": { - "id": "Alien Axolotl", - "pt": 1, + "id": "Diamond Dog", }, - "value": 906, + "value": 5209, }, { "category": "Pet", "configData": { - "id": "Cotton Candy Unicorn", + "id": "Starry Eye Bunny", "pt": 1, + "sh": true, }, - "value": 1338, + "value": 33641, }, { "category": "Pet", "configData": { - "id": "Empyrean Fox", + "id": "Rootkin Fox", + "pt": 1, + "sh": true, }, - "value": 1062, + "value": 73421, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Chocolate Bunny", + "id": "Pixel Cat", + "sh": true, + }, + "value": 3928337, + }, + { + "category": "Worker", + "configData": { + "id": "Pixel Chick", "pt": 1, }, - "value": 234, + "value": 68394629, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Blossom Squirrel", - "pt": 2, + "id": "Pixel Sprout", }, - "value": 159, + "value": 123852901, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Flower Panda", + "id": "Pixel Piggy", "pt": 1, }, - "value": 227, + "value": 30334241, }, { "category": "Pet", "configData": { - "id": "Huge Treasure Turtle", + "id": "Huge Pixel Sad Cat", "pt": 1, }, - "value": 757665316, + "value": 1219, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Lamb", - "pt": 2, - "sh": true, + "id": "Farming Sprinkler 2", }, - "value": 78600, + "value": 1227833, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Huge Emoji Monkey", + "id": "Pixel Cat", + "pt": 2, }, - "value": 141972976, + "value": 4480771, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Gummy Raccoon", + "id": "Pixel Cat", + "pt": 1, }, - "value": 763, + "value": 44264468, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Cyber Bunny", - "pt": 2, + "id": "Pixel Bunny", + "pt": 1, }, - "value": 80003000, + "value": 20446872, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Pastel Deer", + "id": "Pixel Bloom", }, - "value": 253, + "value": 42895930, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Ducky", - "pt": 2, + "id": "Pixel Prism", }, - "value": 347, + "value": 7491502, }, { "category": "Pet", "configData": { - "id": "Clown Cat", + "id": "Meteor Mole", "pt": 1, + "sh": true, }, - "value": 787, + "value": 62335, }, { "category": "Pet", "configData": { - "id": "Pastel Goat", + "id": "Huge Pixel Sad Cat", "pt": 2, "sh": true, }, - "value": 3646, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Spider", + "id": "Starry Eye Bunny", "pt": 2, + "sh": true, }, - "value": 2571, + "value": 23091, }, { "category": "Pet", "configData": { - "id": "Huge Sketch Corgi", + "id": "Rootkin Fox", + "pt": 2, "sh": true, }, - "value": 451148132, + "value": 46676, + }, + { + "category": "EggFarm", + "configData": { + "id": "Pixel M-2 PROTOTYPE", + }, + "value": 17092, }, { "category": "Pet", "configData": { - "id": "Relic Agony", - "pt": 1, + "id": "Huge Diamond Dog", }, - "value": 2416, + "value": 3659, }, { "category": "Pet", "configData": { - "id": "Jolly Penguin", + "id": "Meteor Mole", "pt": 2, "sh": true, }, - "value": 1330, + "value": 34231, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Reaper", + "id": "Pixel Chick", "sh": true, }, - "value": 10800, + "value": 6068684, }, { "category": "Pet", "configData": { - "id": "Chocolate Hippo", + "id": "Starry Eye Bunny", + "sh": true, }, - "value": 934, + "value": 99345, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Vibrant Cobra", - "pt": 2, + "id": "Pixel Chick", + "pt": 1, + "sh": true, }, - "value": 259, + "value": 844706, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Mosaic Griffin", + "id": "Pixel Chick", "pt": 2, }, - "value": 10878820, + "value": 6919454, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Pastel Sock Dragon", - "pt": 2, + "id": "Pixel Bunny", + "sh": true, }, - "value": 1530, + "value": 1814871, }, { "category": "Pet", "configData": { - "id": "Huge Patrick Star", + "id": "Huge Pixel Sad Cat", "sh": true, }, - "value": 2324367364, + "value": 70, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Dominus Infernus", - "pt": 1, + "id": "Pixel Burger", }, - "value": 1476, + "value": 8508447, }, { "category": "Pet", "configData": { - "id": "Red Dragon", + "id": "Huge Diamond Dog", "pt": 2, }, - "value": 3654, + "value": 114, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Steampunk Wolf", + "id": "Pixel Corgi", "pt": 2, }, - "value": 25224, + "value": 1669733, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Cotton Candy Cow", + "id": "Pixel Bunny", "pt": 2, }, - "value": 505, + "value": 2068012, }, { "category": "Pet", "configData": { - "id": "Titanic Jelly Dragon", + "id": "Huge Pixel Sad Cat", + "pt": 2, }, - "value": 20809805889, + "value": 384, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Hi-Tech Bee", - "sh": true, + "id": "Pixel Goblin", + "pt": 2, }, - "value": 4919, + "value": 675203, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Pink Marshmallow Chick", + "id": "Pixel Piggy", "pt": 2, + "sh": true, }, - "value": 485, + "value": 37816, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Stacked King Slime", + "id": "Pixel Cat", "pt": 1, + "sh": true, }, - "value": 446, + "value": 547196, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Mining Mole", + "id": "Pixel Corgi", + "pt": 1, + "sh": true, }, - "value": 168, + "value": 203592, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Cotton Candy Cow", + "id": "Pixel Bunny", "pt": 1, + "sh": true, }, - "value": 273, + "value": 254146, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Blazing Shark", - "pt": 2, + "id": "Pixel Goblin", + "pt": 1, }, - "value": 11352783, + "value": 6675170, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Rudolf", + "id": "Pixel Piggy", "pt": 1, "sh": true, }, - "value": 110193920, + "value": 374453, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Blue Marshmallow Chick", + "id": "Pixel Chick", "pt": 2, + "sh": true, }, - "value": 15249, + "value": 84885, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Electric Bunny", + "id": "Pixel Corgi", "pt": 2, + "sh": true, }, - "value": 7554, + "value": 20856, }, { "category": "Pet", "configData": { - "id": "Dominus Infernus", - "sh": true, + "id": "Huge Pixel Otter", }, - "value": 351, + "value": 153966, }, { "category": "Pet", "configData": { - "id": "Huge Apple Capybara", - "sh": true, + "id": "Diamond Dog", + "pt": 1, }, - "value": 1098182639, + "value": 544, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Goat", + "id": "Pixel Cat", + "pt": 2, + "sh": true, }, - "value": 411, + "value": 55615, }, { "category": "Pet", "configData": { - "id": "Pastel Sock Bunny", - "pt": 2, + "id": "Starlight Pony", }, - "value": 1846, + "value": 203963, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Huge Cheerful Yeti", - "pt": 2, + "id": "Pixel Goblin", "sh": true, }, - "value": 2007040019, + "value": 593221, }, { "category": "Pet", "configData": { - "id": "Cotton Candy Lamb", + "id": "Huge Diamond Dog", + "pt": 1, }, - "value": 340, + "value": 300, }, { "category": "Pet", "configData": { - "id": "Vibrant Toucan", + "id": "Titanic Diamond Dog", }, - "value": 286, + "value": 192, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Cloud Bat", + "id": "Pixel Goblin", + "pt": 1, + "sh": true, }, - "value": 567, + "value": 82783, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Flex Fluffy Cat", + "id": "Pixel Bunny", + "pt": 2, + "sh": true, }, - "value": 3664286, + "value": 25915, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Huge Arcade Dragon", - "pt": 2, + "id": "Pixel Bee", + "pt": 1, }, - "value": 3696160006, + "value": 2988480, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Hi-Tech Sloth", + "id": "Pixel Bee", + "pt": 2, }, - "value": 114, + "value": 301280, }, { "category": "Pet", "configData": { - "id": "Heavenly Peacock", + "id": "Huge Pixel Otter", + "pt": 1, }, - "value": 710, + "value": 21543, }, { "category": "Pet", "configData": { - "id": "Huge Electric Dino", - "pt": 2, + "id": "Huge Diamond Dog", "sh": true, }, - "value": 25000000000, + "value": 137, }, { "category": "Pet", "configData": { - "id": "Clown Cat", + "id": "Starlight Pony", "pt": 2, }, - "value": 2144, + "value": 35611, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Red Dragon", - "pt": 1, + "id": "Pixel Bee", + "sh": true, }, - "value": 1020, + "value": 265004, }, { "category": "Pet", "configData": { - "id": "Balloon Axolotl", - "pt": 2, + "id": "Starlight Pony", + "pt": 1, }, - "value": 26375078, + "value": 32045, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Pastel Sock Dragon", + "id": "Pixel Bee", "pt": 1, "sh": true, }, - "value": 17400, + "value": 36738, }, { "category": "Pet", "configData": { - "id": "Huge Kangaroo", + "id": "Diamond Dog", "pt": 2, + "sh": true, }, - "value": 78433567, + "value": 4, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Huge Cheerful Yeti", - "pt": 2, + "id": "Pixel Monkey", + "pt": 1, }, - "value": 841114552, + "value": 2217611, }, { "category": "Pet", "configData": { - "id": "Cupcake", + "id": "Diamond Dog", "pt": 2, }, - "value": 538, + "value": 240, }, { "category": "Pet", "configData": { - "id": "Titanic Capybara", + "id": "Huge Rootkin Fox", }, - "value": 13127706181, + "value": 4831, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Royal Cloud Corgi", + "id": "Pixel Monkey", "pt": 2, }, - "value": 105758, + "value": 224117, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Hot Air Balloon Dog", - "pt": 2, + "id": "Pixel Monkey", + "sh": true, }, - "value": 620, + "value": 196296, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Titanic Emoji Corgi", + "id": "Pixel M-2 PROTOTYPE", }, - "value": 14209565206, + "value": 32374, }, { "category": "Pet", "configData": { - "id": "Cloud Dog", - "pt": 2, + "id": "Huge Pixel Sad Cat", + "pt": 1, + "sh": true, }, - "value": 4455, + "value": 15, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Cloud Bat", + "id": "Pixel Goblin", "pt": 2, + "sh": true, }, - "value": 403, + "value": 8264, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Happy Computer", - "sh": true, + "id": "Pixel Wolf", + "pt": 1, }, - "value": 1248, + "value": 1716937, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Huge Party Axolotl", + "id": "Pixel Bee", + "pt": 2, "sh": true, }, - "value": 405482819, + "value": 3863, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Pastel Goat", + "id": "Pixel M-2 PROTOTYPE", + "pt": 1, }, - "value": 161, + "value": 4245, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Zombie Squirrel", + "id": "Pixel M-2 PROTOTYPE", "sh": true, }, - "value": 93563, + "value": 381, }, { "category": "Pet", "configData": { - "id": "Angel Cat", - "pt": 2, + "id": "Huge Pixel M-2 PROTOTYPE", + "pt": 1, }, - "value": 2726, + "value": 867, }, { "category": "Pet", "configData": { - "id": "Pastel Griffin", - "pt": 2, - "sh": true, + "id": "Huge Pixel M-2 PROTOTYPE", }, - "value": 1489, + "value": 6411, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Chocolate Dog", - "pt": 2, + "id": "Pixel Monkey", + "pt": 1, + "sh": true, }, - "value": 13908, + "value": 27325, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Huge Helicopter Cat", - "pt": 2, + "id": "Pixel Tiger", + "sh": true, }, - "value": 76942958, + "value": 114100, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Huge Basketball Retriever", + "id": "Pixel Tiger", "pt": 1, }, - "value": 939949383, + "value": 1282993, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Huge Mushroom Raccoon", + "id": "Pixel Wolf", "sh": true, }, - "value": 142903173, + "value": 152810, }, { "category": "Pet", "configData": { - "id": "Blue Slime", + "id": "Huge Rootkin Fox", "pt": 1, }, - "value": 1611, + "value": 463, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Encrusted Dragon", + "id": "Pixel M-2 PROTOTYPE", "pt": 2, }, - "value": 2446, + "value": 447, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Husky", - "pt": 2, + "id": "Pixel Griffin", + "pt": 1, }, - "value": 657, + "value": 1116997, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Hacked Raccoon", - "pt": 2, + "id": "Pixel Griffin", "sh": true, }, - "value": 13000, + "value": 99207, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Storm Griffin", + "id": "Pixel Wolf", "pt": 2, }, - "value": 1833, + "value": 174242, }, { "category": "Pet", "configData": { - "id": "Cloud Penguin", + "id": "Diamond Dog", + "sh": true, + }, + "value": 155, + }, + { + "category": "Worker", + "configData": { + "id": "Pixel Wolf", "pt": 1, + "sh": true, }, - "value": 1439, + "value": 20949, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Snow Cat", + "id": "Pixel Demon", "pt": 1, }, - "value": 2997, + "value": 619730, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Huge Elf Dog", + "id": "Pixel Tiger", + "pt": 2, }, - "value": 64731456, + "value": 130029, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Cotton Candy Cow", + "id": "Pixel Monkey", + "pt": 2, + "sh": true, }, - "value": 235, + "value": 2807, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Huge Pineapple Monkey", - "pt": 1, + "id": "Pixel Yeti", + "pt": 2, }, - "value": 60242800, + "value": 66555, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Chocolate Hippo", + "id": "Pixel Griffin", "pt": 1, + "sh": true, }, - "value": 627, + "value": 13828, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Vampire Dragon", + "id": "Pixel Griffin", "pt": 2, }, - "value": 20320, + "value": 113308, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Frostbyte Snow Leopard", + "id": "Pixel Tiger", "pt": 1, + "sh": true, }, - "value": 173066, + "value": 16191, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Angel Dog", - "pt": 2, + "id": "Pixel Agony", + "pt": 1, }, - "value": 1126, + "value": 497630, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Albino Bat", - "sh": true, + "id": "Pixel Yeti", + "pt": 1, }, - "value": 1133, + "value": 657125, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Pastel Griffin", + "id": "Pixel Angelus", + "pt": 1, }, - "value": 164, + "value": 439560, }, { "category": "Pet", "configData": { - "id": "Cloud Monkey", + "id": "Huge Pixel M-2 PROTOTYPE", "pt": 2, }, - "value": 540, - }, - { - "category": "Pet", - "configData": { - "id": "Chocolate Bunny", - }, - "value": 244, + "value": 92, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Encrusted Wolf", - "pt": 1, + "id": "Pixel Demon", + "sh": true, }, - "value": 245, + "value": 55188, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Royal Cloud Cat", + "id": "Pixel Demon", "pt": 2, }, - "value": 1083, + "value": 62983, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Angelus", - "pt": 2, + "id": "Pixel Dominus Astra", }, - "value": 2498, + "value": 3079653, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Huge Reindeer Dog", + "id": "Pixel Wolf", "pt": 2, + "sh": true, }, - "value": 1859303032, + "value": 2071, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Huge Mech Dino", - "pt": 2, + "id": "Pixel Demon", + "pt": 1, + "sh": true, }, - "value": 275449719, + "value": 7610, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Cloud Monkey", + "id": "Pixel Yeti", + "sh": true, }, - "value": 217, + "value": 58418, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Shadow Kraken", + "id": "Pixel Angelus", "pt": 2, }, - "value": 2548, + "value": 44678, }, { "category": "Pet", "configData": { - "id": "Paintbot Spider", + "id": "Huge Pixel M-2 PROTOTYPE", + "pt": 1, "sh": true, }, - "value": 918, + "value": 13, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Pastel Griffin", + "id": "Pixel M-2 PROTOTYPE", "pt": 1, + "sh": true, }, - "value": 924, + "value": 53, }, { "category": "Pet", "configData": { - "id": "Blossom Koi Fish", - "pt": 1, + "id": "Titanic Exquisite Cat", }, - "value": 1097, + "value": 2774, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Pastel Sock Dragon", + "id": "Pixel Dominus Astra", + "pt": 1, }, - "value": 2620, + "value": 431260, }, { "category": "Pet", "configData": { - "id": "Huge Phantom Wolf", + "id": "Telescope Owl", + "pt": 1, "sh": true, }, - "value": 385000000, + "value": 16103, }, { "category": "Pet", "configData": { - "id": "404 Demon", + "id": "Huge Pixel Bee", }, - "value": 1333, + "value": 139962, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Encrusted Dragon", - "pt": 1, + "id": "Pixel Angelus", + "sh": true, }, - "value": 2161, + "value": 39070, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Water Zebra", + "id": "Pixel Agony", "pt": 2, }, - "value": 2199, + "value": 50416, }, { "category": "Pet", "configData": { - "id": "Carnival Elephant", - "pt": 2, + "id": "Titanic Diamond Dog", + "pt": 1, }, - "value": 2301, + "value": 16, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Empyrean Snake", + "id": "Pixel Yeti", + "pt": 2, "sh": true, }, - "value": 20571, + "value": 857, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Empyrean Axolotl", - "pt": 1, + "id": "Pixel Griffin", + "pt": 2, + "sh": true, }, - "value": 1036, + "value": 1388, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Carnival Panda", - "pt": 2, + "id": "Pixel Yeti", + "pt": 1, + "sh": true, }, - "value": 4508, + "value": 8238, }, { "category": "Pet", "configData": { - "id": "Glowy the Ghost", + "id": "Huge Rootkin Fox", "pt": 2, }, - "value": 494, + "value": 437, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Ducky Magician", + "id": "Pixel Agony", "pt": 1, + "sh": true, }, - "value": 1983, + "value": 6143, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Royal Cloud Corgi", + "id": "Pixel Agony", + "sh": true, }, - "value": 182, + "value": 44290, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Kangaroo", - "pt": 1, + "id": "Pixel Dominus Astra", + "pt": 2, }, - "value": 573631, + "value": 44191, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Huge Easter Yeti", + "id": "Pixel Dominus Astra", "sh": true, }, - "value": 2270207597, + "value": 38558, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Emoji Cat", + "id": "Pixel Tiger", + "pt": 2, "sh": true, }, - "value": 10068580, + "value": 1600, }, { "category": "Pet", "configData": { - "id": "Prince Donkey", - "pt": 1, + "id": "Huge Pixel M-2 PROTOTYPE", "sh": true, }, - "value": 299, + "value": 71, }, { "category": "Pet", "configData": { - "id": "Vibrant Cobra", + "id": "Huge Pixel Griffin", + "pt": 1, }, - "value": 1075, + "value": 224588, }, { "category": "Pet", "configData": { - "id": "Cyborg Dominus", - "pt": 1, - "sh": true, + "id": "Huge Pixel Griffin", }, - "value": 300000, + "value": 892213, }, { "category": "Pet", "configData": { - "id": "Chocolate Hippo", - "sh": true, + "id": "Huge Pixel Griffin", + "pt": 2, }, - "value": 20938, + "value": 45199, }, { "category": "Pet", "configData": { - "id": "Carnival Panda", + "id": "Titanic Pixel Dominus Astra", }, - "value": 2058, + "value": 2772, }, { "category": "Pet", "configData": { - "id": "Huge Skeleton", + "id": "Huge Pixel Griffin", + "sh": true, }, - "value": 62363342, + "value": 10251, }, { "category": "Pet", "configData": { - "id": "Titanic Cosmic Pegasus", - "sh": true, + "id": "Titanic Pixel Dominus Astra", + "pt": 2, }, - "value": 999000000, + "value": 171, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Huge Luau Cat", + "id": "Pixel Angelus", "pt": 1, + "sh": true, }, - "value": 229452930, + "value": 5385, }, { "category": "Pet", "configData": { - "id": "Vibrant Cobra", - "pt": 2, + "id": "Huge Rootkin Fox", + "pt": 1, "sh": true, }, - "value": 740, + "value": 6, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Hot Dog", + "id": "Pixel Angelus", + "pt": 2, "sh": true, }, - "value": 65625, + "value": 547, }, { - "category": "Pet", + "category": "Worker", "configData": { - "cv": 4, - "id": "Huge Chroma Unicorn", + "id": "Pixel Demon", "pt": 2, + "sh": true, }, - "value": 286318916, + "value": 765, }, { "category": "Pet", "configData": { - "id": "Cyborg Dog", + "id": "Telescope Owl", "pt": 2, "sh": true, }, - "value": 25476, + "value": 14513, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Dove", + "id": "Pixel Dominus Astra", + "pt": 1, + "sh": true, }, - "value": 81, + "value": 5302, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Mining Axolotl", + "id": "Pixel Agony", "pt": 2, "sh": true, }, - "value": 12500, + "value": 685, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Cloud Hedgehog", + "id": "Pixel Dominus Astra", "pt": 2, + "sh": true, }, - "value": 311, + "value": 520, }, { "category": "Pet", "configData": { - "id": "Cotton Candy Unicorn", + "id": "Huge Pixel Bee", + "pt": 2, }, - "value": 653, + "value": 7883, }, { "category": "Pet", "configData": { - "id": "Empyrean Axolotl", + "id": "Huge Pixel Bee", + "pt": 1, }, - "value": 4295, + "value": 35935, }, { "category": "Pet", "configData": { - "id": "Angel Dog", + "id": "Telescope Owl", + "sh": true, }, - "value": 855, + "value": 22977, }, { "category": "Pet", "configData": { - "id": "Blossom Koi Fish", - "pt": 2, + "id": "Huge Pixel Shadow Griffin", }, - "value": 2431, + "value": 10111, }, { "category": "Pet", "configData": { - "id": "Huge Super Tiger", - "pt": 2, + "id": "Huge Pixel Shadow Griffin", + "pt": 1, }, - "value": 1093824628, + "value": 2424, }, { "category": "Pet", "configData": { - "id": "Huge Puurple Cat", + "id": "Huge Pixel Bee", + "sh": true, }, - "value": 399136170, + "value": 1865, }, { "category": "Pet", "configData": { - "id": "Ice Penguin", + "id": "Huge Pixel Otter", "pt": 2, }, - "value": 206, + "value": 2283, }, { "category": "Pet", "configData": { - "id": "Sun Angelus", + "id": "Huge Pixel Capybara", }, - "value": 4471, + "value": 4737, }, { "category": "Pet", "configData": { - "cv": 5, - "id": "Huge Chroma Butterfly", + "id": "Huge Diamond Dog", "pt": 2, + "sh": true, }, - "value": 3524319981, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Hot Dog", + "id": "Huge Pixel Otter", + "sh": true, }, - "value": 1116, + "value": 1904, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Cat", + "id": "Huge Pixel Bee", "pt": 1, + "sh": true, }, - "value": 515, + "value": 386, }, { "category": "Pet", "configData": { - "id": "Dragon", + "id": "Huge Pixel Shadow Griffin", + "pt": 2, }, - "value": 32, + "value": 453, }, { "category": "Pet", "configData": { - "id": "Detective Terrier", - "sh": true, + "id": "Titanic Pixel Agony", }, - "value": 8558, + "value": 1633, }, { "category": "Pet", "configData": { - "id": "Empyrean Stallion", + "id": "Huge Pixel Capybara", "pt": 1, - "sh": true, }, - "value": 84000, + "value": 702, }, { "category": "Pet", "configData": { - "id": "Gummy Bear", + "id": "Starlight Pony", + "pt": 2, "sh": true, }, - "value": 2565, + "value": 184, }, { "category": "Pet", "configData": { - "id": "Pastel Elephant", - "pt": 2, + "id": "Starlight Pony", + "pt": 1, + "sh": true, }, - "value": 1707, + "value": 432, }, { "category": "Pet", "configData": { - "id": "Blossom Koi Fish", + "id": "Huge Rootkin Fox", + "sh": true, }, - "value": 24645, + "value": 103, }, { "category": "Pet", "configData": { - "id": "Crocodile", - "pt": 1, + "id": "Huge Pixel Bee", + "pt": 2, + "sh": true, }, - "value": 38, + "value": 71, }, { - "category": "Pet", + "category": "Worker", "configData": { - "id": "Huge Present Chest Mimic", + "id": "Pixel M-2 PROTOTYPE", + "pt": 2, + "sh": true, }, - "value": 170529915, + "value": 8, }, { "category": "Pet", "configData": { - "id": "Hot Dog", - "pt": 1, + "id": "Huge Pixel M-2 PROTOTYPE", + "pt": 2, + "sh": true, }, - "value": 221, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Humble Hen", - "pt": 2, + "id": "Huge Pixel Otter", + "pt": 1, + "sh": true, }, - "value": 269, + "value": 277, }, { "category": "Pet", "configData": { - "id": "Pastel Sock Dragon", + "id": "Titanic Exquisite Cat", "pt": 1, }, - "value": 388, + "value": 327, }, { "category": "Pet", "configData": { - "id": "Huge Masked Owl", + "id": "Huge Rootkin Fox", "pt": 2, + "sh": true, }, - "value": 1557922860, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Cloud Bat", + "id": "Gargantuan Nyan Cat", "pt": 1, }, - "value": 493, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Tech Horse", + "id": "Titanic Keyboard Cat", "pt": 2, - }, - "value": 247, - }, - { - "category": "Pet", - "configData": { - "id": "Vibrant Cobra", "sh": true, }, - "value": 125, - }, - { - "category": "Pet", - "configData": { - "id": "Runic Wolf", - }, - "value": 192, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Beach Ball Dolphin", + "id": "Titanic Pixel Agony", "pt": 1, }, - "value": 642, + "value": 311, }, { "category": "Pet", "configData": { - "id": "Vibrant Toucan", - "pt": 2, + "id": "Huge Pixel Shadow Griffin", "sh": true, }, - "value": 206604, + "value": 82, }, { "category": "Pet", "configData": { - "id": "Empyrean Axolotl", + "id": "Huge Pixel Capybara", "pt": 2, }, - "value": 339, + "value": 118, }, { "category": "Pet", "configData": { - "id": "Relic Dragon", + "id": "Huge Starry Eye Bunny", }, - "value": 2734, + "value": 992106, }, { "category": "Pet", "configData": { - "id": "Pastel Griffin", - "pt": 1, - "sh": true, + "id": "Huge Telescope Owl", }, - "value": 789, + "value": 203544, }, { "category": "Pet", "configData": { - "id": "Huge Happy Computer", - "pt": 1, + "id": "Gargantuan Dark Dragon", }, - "value": 53292265, + "value": 52, }, { "category": "Pet", "configData": { - "id": "Huge Reindeer Dog", - "pt": 1, - "sh": true, + "id": "Titanic Pixel Agony", + "pt": 2, }, - "value": 717039997, + "value": 66, }, { "category": "Pet", "configData": { - "id": "Huge Pixie Fox", + "id": "Huge Pixel Shadow Griffin", "pt": 1, + "sh": true, }, - "value": 254284131, + "value": 17, }, { "category": "Pet", "configData": { - "id": "Pastel Elephant", + "id": "Huge Starry Eye Bunny", "pt": 1, }, - "value": 357, + "value": 202395, }, { "category": "Pet", "configData": { - "id": "Angel Dog", + "id": "Titanic Pixel Monkey", "pt": 1, + "sh": true, }, - "value": 1480, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Huge Exquisite Cat", + "id": "Titanic Diamond Dog", "pt": 2, }, - "value": 882606097, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Vibrant Whale", + "id": "Huge Diamond Dog", + "pt": 1, + "sh": true, }, - "value": 765, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Royal Cloud Cat", + "id": "Diamond Dog", "pt": 1, + "sh": true, }, - "value": 1354, + "value": 12, }, { "category": "Pet", "configData": { - "id": "Chocolate Frog", - "pt": 1, + "id": "Titanic Exquisite Cat", + "sh": true, }, - "value": 1057416, + "value": 63, }, { "category": "Pet", "configData": { - "id": "Cupcake", - "pt": 1, + "id": "Huge Pixel Capybara", + "sh": true, }, - "value": 142, + "value": 20, }, { "category": "Pet", "configData": { - "id": "Ice Snake", + "id": "Gargantuan Dark Dragon", "pt": 1, }, - "value": 507, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Cotton Candy Cow", + "id": "Huge Pixel Capybara", + "pt": 1, "sh": true, }, - "value": 510812, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Stacked King Slime", - "sh": true, + "id": "Titanic Pixel Monkey", }, - "value": 38908, + "value": 753, }, { "category": "Pet", "configData": { - "id": "Chocolate Dog", + "id": "Huge Pixel Shadow Griffin", + "pt": 2, "sh": true, }, - "value": 1723, + "value": 12, }, { "category": "Pet", "configData": { - "id": "M-6 PROTOTYPE", - "sh": true, + "id": "Huge Starry Eye Bunny", + "pt": 2, }, - "value": 443376, + "value": 40192, }, { "category": "Pet", "configData": { - "id": "Wyvern of Hades", - "sh": true, + "id": "Huge Telescope Owl", + "pt": 1, }, - "value": 216664, + "value": 40690, }, { "category": "Pet", "configData": { - "id": "Junkyard Bat", - "pt": 2, + "id": "Titanic Pixel Agony", + "sh": true, }, - "value": 3565, + "value": 12, }, { "category": "Pet", "configData": { - "id": "Sun Angelus", + "id": "Titanic Pixel Monkey", "pt": 1, }, - "value": 6401, - }, - { - "category": "Pet", - "configData": { - "id": "Huge Emoji Monkey", - "sh": true, - }, - "value": 630738975, + "value": 105, }, { "category": "Pet", "configData": { - "id": "Emoji Cat", + "id": "Titanic Pixel Monkey", "pt": 2, }, - "value": 10707937, + "value": 16, }, { "category": "Pet", "configData": { - "id": "Huge Samurai Dragon", - "pt": 1, + "id": "Titanic Pixel Monkey", + "sh": true, }, - "value": 275750292, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Heavenly Peacock", + "id": "Titanic Pixel Agony", "pt": 1, + "sh": true, }, - "value": 145, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Hell Chick", + "id": "Huge Pixel Otter", "pt": 2, "sh": true, }, - "value": 200000, + "value": 28, }, { "category": "Pet", "configData": { - "id": "Wireframe Cat", - "sh": true, + "id": "Gargantuan Exquisite Parrot", }, - "value": 12, + "value": 28, }, { - "category": "Pet", + "category": "EggFarm", "configData": { - "id": "Blue Marshmallow Chick", + "id": "Titanic Pixel M-2 PROTOTYPE", }, - "value": 3507, + "value": 19798, }, { "category": "Pet", "configData": { - "id": "Nuclear Mortuus", - "pt": 1, + "id": "Titanic Pixel M-2 PROTOTYPE", }, - "value": 605, + "value": 159, }, { "category": "Pet", "configData": { - "id": "Huge Scarecrow Cat", - "pt": 1, + "id": "Huge Telescope Owl", + "pt": 2, }, - "value": 82367640, + "value": 8108, }, { "category": "Pet", "configData": { - "id": "Vibrant Toucan", - "sh": true, + "id": "Titanic Pixel M-2 PROTOTYPE", + "pt": 1, }, - "value": 4036, + "value": 17, }, { "category": "Pet", "configData": { - "id": "Huge Cheerful Yeti", - "pt": 1, + "id": "Titanic Pixel M-2 PROTOTYPE", "sh": true, }, - "value": 5200000066, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Huge Knife Cat", + "id": "Huge Pixel Capybara", "pt": 2, "sh": true, }, - "value": 6319600058, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Circuit Slime", + "id": "Titanic Exquisite Cat", "pt": 2, }, - "value": 26427, + "value": 60, }, { "category": "Pet", "configData": { - "id": "Royal Cloud Corgi", + "id": "Huge Starry Eye Bunny", "pt": 1, "sh": true, }, - "value": 82320, + "value": 1585, }, { "category": "Pet", "configData": { - "id": "Pastel Sock Bunny", + "id": "Gargantuan Exquisite Parrot", "pt": 1, }, - "value": 1357, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Tiedye Bunny", - "pt": 1, + "id": "Titanic Diamond Dog", "sh": true, }, - "value": 108802943, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Huge Nuclear Wild Dog", - "pt": 2, + "id": "Huge Starry Eye Bunny", "sh": true, }, - "value": 581198566, + "value": 8036, }, { "category": "Pet", "configData": { - "id": "Neon Cat", + "id": "Gargantuan Exquisite Parrot", "pt": 2, - "sh": true, }, - "value": 72850368, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Hacker Axolotl", + "id": "Huge Stacked Dominus", "pt": 2, + "sh": true, }, - "value": 515, + "value": 3, }, { - "category": "Pet", + "category": "Currency", "configData": { - "id": "Carnival Elephant", - "pt": 1, + "id": "BasketballCoins", }, - "value": 22618, + "value": 3129631471886798, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Black Hole Angelus", - "pt": 2, - "sh": true, + "id": "Springy Shoes", + "tn": 1, }, - "value": 5076630, + "value": 6587395, }, { "category": "Pet", "configData": { - "id": "Cloud Hedgehog", - "pt": 2, - "sh": true, + "id": "Basketball Cat", }, - "value": 36168, + "value": 23812193, }, { "category": "Pet", "configData": { - "id": "Angel Cat", - "pt": 1, + "id": "Basketball Corgi", }, - "value": 8731, + "value": 11214310, }, { "category": "Pet", "configData": { - "id": "Huge Devil Agony", - "pt": 1, - "sh": true, + "id": "Comet Cyclops Ball", }, - "value": 5628799954, + "value": 1072544, }, { "category": "Pet", "configData": { - "id": "A-36", - "pt": 2, - "sh": true, + "id": "Blurred Bear Ball", }, - "value": 121117, + "value": 1162397162, }, { "category": "Pet", "configData": { - "id": "Zombie Squirrel", - "pt": 1, + "id": "Comet Cyclops Ball", + "sh": true, }, - "value": 1153, + "value": 8883, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Pastel Sock Corgi", - "pt": 1, + "id": "Basketball Egg", }, - "value": 38, + "value": 1289318, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Chocolate Bunny", - "pt": 1, - "sh": true, + "id": "Exclusive Egg 52", }, - "value": 32400, + "value": 615701, }, { - "category": "Pet", + "category": "Enchant", "configData": { - "id": "Titanic Pineapple Cat", + "id": "Superior Wisdom", + "tn": 1, }, - "value": 12663900657, + "value": 11361, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Night Terror Dog", - "pt": 1, - "sh": true, + "id": "Super Springy Shoes", + "tn": 1, }, - "value": 3115, + "value": 153440, }, { - "category": "Pet", + "category": "Currency", "configData": { - "id": "North Pole Bunny", - "sh": true, + "id": "YeetOrbs", }, - "value": 9190, + "value": 27800081670, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Cat", + "id": "Basketball Cat", "pt": 2, }, - "value": 2855, + "value": 2561264, }, { "category": "Pet", "configData": { - "id": "Huge Red Panda", - "sh": true, + "id": "Strawberry Cow Ball", }, - "value": 369909961, + "value": 13050654, }, { "category": "Pet", "configData": { - "id": "Pegasus", + "id": "UV Kitsune Ball", "pt": 1, }, - "value": 191, + "value": 79227783, }, { "category": "Pet", "configData": { - "id": "Enchanted Elephant", - "pt": 2, + "id": "Kawaii Dragon Ball", }, - "value": 1768, + "value": 286956615, }, { "category": "Pet", "configData": { - "id": "Astronaut Cat", - "sh": true, + "id": "UV Kitsune Ball", }, - "value": 9602, + "value": 1241267739, }, { "category": "Pet", "configData": { - "id": "Scary Cat", + "id": "Basketball Corgi", "pt": 1, }, - "value": 823, + "value": 1452021, }, { "category": "Pet", "configData": { - "id": "Titanic Bat Cat", - "sh": true, + "id": "Storm Axolotl Ball", }, - "value": 400000002, + "value": 11526805070, }, { "category": "Pet", "configData": { - "id": "Ninja Axolotl", - "sh": true, + "id": "Basketball Cat", + "pt": 1, }, - "value": 335435, + "value": 2256626, }, { "category": "Pet", "configData": { - "id": "Empyrean Dragon", - "sh": true, + "id": "Electric Bunny Ball", }, - "value": 4229, + "value": 5797019553, }, { "category": "Pet", "configData": { - "id": "Frost Axolotl", + "id": "Kawaii Dragon Ball", "pt": 1, }, - "value": 508, + "value": 16198880, }, { "category": "Pet", "configData": { - "id": "Stacked King Slime", + "id": "Kawaii Dragon Ball", "pt": 2, - "sh": true, }, - "value": 546140, + "value": 9990387, }, { "category": "Pet", "configData": { - "id": "Glitched Unicorn", + "id": "Storm Axolotl Ball", + "pt": 1, }, - "value": 1523, + "value": 1272297759, }, { "category": "Pet", "configData": { - "id": "Spitting Dino", - "pt": 1, + "id": "UV Kitsune Ball", + "pt": 2, }, - "value": 324, + "value": 81783403, }, { "category": "Pet", "configData": { - "id": "Vibrant Toucan", - "pt": 1, - "sh": true, + "id": "Storm Axolotl Ball", + "pt": 2, }, - "value": 11963, + "value": 5094531831, }, { "category": "Pet", "configData": { - "id": "Vibrant Cobra", - "pt": 1, + "id": "Kawaii Dragon Ball", "sh": true, }, - "value": 570, + "value": 739724, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Elephant", + "id": "Strawberry Cow Ball", "pt": 1, - "sh": true, }, - "value": 500, + "value": 1153800, }, { "category": "Pet", "configData": { - "id": "Angel Fawn", + "id": "Huge Electric Bunny Ball", }, - "value": 646, + "value": 34364, }, { "category": "Pet", "configData": { - "id": "Dino Cat", - "sh": true, + "id": "Electric Bunny Ball", + "pt": 1, }, - "value": 8175888, + "value": 709098653, }, { "category": "Pet", "configData": { - "id": "Carnival Panda", + "id": "Kawaii Dragon Ball", + "pt": 1, "sh": true, }, - "value": 3257, + "value": 67411, }, { "category": "Pet", "configData": { - "id": "Bloo Cat", - "pt": 1, + "id": "Basketball Corgi", + "pt": 2, }, - "value": 10091543, + "value": 1540254, }, { "category": "Pet", "configData": { - "id": "Huge Blurred Dominus", + "id": "Blurred Bear Ball", "pt": 2, }, - "value": 23399999976, + "value": 446933335, }, { "category": "Pet", "configData": { - "id": "Emoji Dog", - "pt": 2, + "id": "Huge Electric Bunny Ball", "sh": true, }, - "value": 116917876, + "value": 1331, }, { "category": "Pet", "configData": { - "id": "Good vs Evil Cat", - "pt": 2, + "id": "Yin-Yang Bunny", }, - "value": 1432, + "value": 19819, }, { "category": "Pet", "configData": { - "id": "Cotton Candy Lamb", - "sh": true, + "id": "Electric Bunny Ball", + "pt": 2, }, - "value": 2564, + "value": 2402278551, }, { "category": "Pet", "configData": { - "id": "Huge Willow Wisp", + "id": "Glitched Cat Ball", }, - "value": 55315685, + "value": 205964, }, { "category": "Pet", "configData": { - "id": "Pastel Sock Bear", - "sh": true, + "id": "Yin-Yang Griffin", }, - "value": 5725, + "value": 46047, }, { "category": "Pet", "configData": { - "id": "Sun Angelus", - "pt": 2, - "sh": true, + "id": "Yin-Yang Dragon", }, - "value": 11459129, + "value": 78631, }, { "category": "Pet", "configData": { - "id": "Huge Rave Jaguar", + "id": "Huge Yin-Yang Dragon", }, - "value": 38255671, + "value": 8290, }, { "category": "Pet", "configData": { - "id": "Alien Parasite", + "id": "Titanic Yin-Yang Grim Reaper", }, - "value": 504, + "value": 631, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Sloth", + "id": "Huge Storm Axolotl Ball", "pt": 1, - "sh": true, }, - "value": 4, + "value": 1399, }, { "category": "Pet", "configData": { - "id": "Electric Corgi", + "id": "Comet Cyclops Ball", "pt": 2, }, - "value": 2926, + "value": 99871, }, { "category": "Pet", "configData": { - "id": "Hot Dog", + "id": "Strawberry Cow Ball", "pt": 2, - "sh": true, }, - "value": 322536, + "value": 1011140, }, { "category": "Pet", "configData": { - "cv": 2, - "id": "Huge Chroma Ink Blob", - "sh": true, + "id": "Meebo The Alien Ball", }, - "value": 1635999996, + "value": 4555570421, }, { "category": "Pet", "configData": { - "id": "Nebula Dragon", + "id": "UV Kitsune Ball", + "sh": true, }, - "value": 205021517, + "value": 3724222, }, { "category": "Pet", "configData": { - "id": "Cloud Bat", + "id": "Kawaii Dragon Ball", + "pt": 2, "sh": true, }, - "value": 1304, + "value": 41842, }, { "category": "Pet", "configData": { - "id": "Cyborg Cow", + "id": "Storm Axolotl Ball", "pt": 1, + "sh": true, }, - "value": 3226, + "value": 9126132, }, { "category": "Pet", "configData": { - "id": "Royal Cloud Corgi", - "pt": 1, + "id": "Meebo The Alien Ball", + "pt": 2, }, - "value": 2786, + "value": 1874552653, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Haxolotl", - "sh": true, + "id": "Basketball Gift", }, - "value": 20232, + "value": 102946645, }, { "category": "Pet", "configData": { - "id": "Hacker Axolotl", + "id": "Blurred Bear Ball", + "sh": true, }, - "value": 7876, + "value": 6177799, }, { "category": "Pet", "configData": { - "id": "Pegasus", - "pt": 2, - "sh": true, + "id": "Titanic Comet Cyclops Ball", }, - "value": 44267, + "value": 1901, }, { "category": "Pet", "configData": { - "id": "Nuclear Mortuus", + "id": "Meebo The Alien Ball", + "pt": 1, }, - "value": 1847, + "value": 576967264, }, { "category": "Pet", "configData": { - "id": "Huge Bejeweled Lion", + "id": "Glitched Cat Ball", + "sh": true, }, - "value": 97560918, + "value": 1166, }, { "category": "Pet", "configData": { - "id": "Blue Slime", + "id": "Blurred Bear Ball", + "pt": 2, "sh": true, }, - "value": 2996, + "value": 5043944, }, { "category": "Pet", "configData": { - "id": "Ender Hades", - "pt": 1, - "sh": true, + "id": "Huge Storm Axolotl Ball", }, - "value": 4014378, + "value": 2953, }, { "category": "Pet", "configData": { - "id": "Chocolate Bunny", - "sh": true, + "id": "Glitched Cat Ball", + "pt": 2, }, - "value": 154984, + "value": 10840, }, { "category": "Pet", "configData": { - "id": "Robber Goblin", - "pt": 1, + "id": "Storm Axolotl Ball", "sh": true, }, - "value": 15000, + "value": 57341447, }, { "category": "Pet", "configData": { - "id": "Angel Cat", - "pt": 2, + "id": "UV Kitsune Ball", + "pt": 1, "sh": true, }, - "value": 191200, + "value": 584780, }, { "category": "Pet", "configData": { - "id": "Strawberry Cow", - "pt": 1, + "id": "Basketball Cat", + "sh": true, }, - "value": 531570, + "value": 138606, }, { "category": "Pet", "configData": { - "id": "Pastel Elephant", + "id": "Storm Axolotl Ball", "pt": 2, "sh": true, }, - "value": 971172, + "value": 32549098, }, { "category": "Pet", "configData": { - "id": "Flower Panda", + "id": "UV Kitsune Ball", + "pt": 2, + "sh": true, }, - "value": 2655, + "value": 361728, }, { "category": "Pet", "configData": { - "id": "Emoji Monkey", + "id": "Yin-Yang Dragon", "sh": true, }, - "value": 16977958, + "value": 2373, }, { "category": "Pet", "configData": { - "id": "Huge Cyber Agony", - "pt": 2, + "id": "Huge Yin-Yang Bunny", }, - "value": 136314570, + "value": 3508, }, { "category": "Pet", "configData": { - "id": "Blossom Squirrel", + "id": "Titanic Comet Cyclops Ball", "sh": true, }, - "value": 3742, + "value": 39, }, { "category": "Pet", "configData": { - "id": "Huge Disco Ball Dragon", + "id": "Yin-Yang Bunny", "sh": true, }, - "value": 492994676, + "value": 738, }, { "category": "Pet", "configData": { - "id": "Quantum Griffin", + "id": "Yin-Yang Griffin", + "pt": 2, }, - "value": 10556, + "value": 2901, }, { "category": "Pet", "configData": { - "id": "Pegasus", + "id": "Yin-Yang Griffin", "sh": true, }, - "value": 4645, + "value": 1528, }, { "category": "Pet", "configData": { - "id": "Angelus", - "pt": 1, - "sh": true, + "id": "Yin-Yang Dragon", + "pt": 2, }, - "value": 34116, + "value": 4031, }, { "category": "Pet", "configData": { - "id": "Cyber Slime", - "sh": true, + "id": "Yin-Yang Bunny", + "pt": 2, }, - "value": 2308, + "value": 1123, }, { "category": "Pet", "configData": { - "id": "Frostbyte Narwhal", + "id": "Yin-Yang Dragon", "pt": 2, + "sh": true, }, - "value": 267030, + "value": 164, }, { "category": "Pet", "configData": { - "id": "Relic Dragon", - "pt": 1, + "id": "Comet Cyclops Ball", + "pt": 2, + "sh": true, }, - "value": 91, + "value": 419, }, { "category": "Pet", "configData": { - "id": "Vibrant Whale", - "sh": true, + "id": "Huge Storm Axolotl Ball", + "pt": 2, }, - "value": 142440, + "value": 394, }, { "category": "Pet", "configData": { - "id": "Tech Ninja Cow", + "id": "Blurred Bear Ball", + "pt": 1, }, - "value": 1631, + "value": 144745358, }, { "category": "Pet", "configData": { - "id": "Carnival Elephant", + "id": "Huge Yin-Yang Bunny", + "pt": 2, "sh": true, }, - "value": 163996, + "value": 63, }, { "category": "Pet", "configData": { - "id": "Chocolate Frog", - "sh": true, + "id": "Huge Electric Bunny Ball", + "pt": 2, }, - "value": 1400, + "value": 1153, }, { "category": "Pet", "configData": { - "id": "Cloud Dog", - "pt": 1, + "id": "Basketball Corgi", + "sh": true, }, - "value": 179, + "value": 75225, }, { "category": "Pet", "configData": { - "id": "Demon", + "id": "Huge Yin-Yang Dragon", "sh": true, }, - "value": 2180, + "value": 381, }, { "category": "Pet", "configData": { - "id": "Pastel Sock Bear", + "id": "Basketball Cat", "pt": 1, + "sh": true, }, - "value": 1175, + "value": 24784, }, { "category": "Pet", "configData": { - "id": "Huge Clover Dragon", + "id": "Strawberry Cow Ball", "sh": true, }, - "value": 1093760919, + "value": 52384, }, { "category": "Pet", "configData": { - "id": "Mushroom Raccoon", - "pt": 2, + "id": "Huge Yin-Yang Bunny", + "sh": true, }, - "value": 581, + "value": 231, }, { "category": "Pet", "configData": { - "id": "Meebo The Alien", - "pt": 1, + "id": "Titanic Pixel Monkey", + "pt": 2, + "sh": true, }, - "value": 545, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Relic Fox", - "pt": 2, + "id": "Huge Storm Axolotl Ball", + "sh": true, }, - "value": 1216, + "value": 87, }, { "category": "Pet", "configData": { - "id": "Robber Cat", + "id": "Strawberry Cow Ball", "pt": 1, + "sh": true, }, - "value": 2004, + "value": 9180, }, { "category": "Pet", "configData": { - "id": "Desert Ram", + "id": "Comet Cyclops Ball", + "pt": 1, }, - "value": 630, + "value": 219650, }, { "category": "Pet", "configData": { - "id": "Festive Cardinal", + "id": "Electric Bunny Ball", "pt": 1, + "sh": true, }, - "value": 652326, + "value": 5344057, }, { "category": "Pet", "configData": { - "id": "Ghost Cat", - "pt": 2, - "sh": true, + "id": "Huge Basketball Corgi", }, - "value": 6400, + "value": 244238, }, { "category": "Pet", "configData": { - "id": "Camel", + "id": "Titanic Yin-Yang Grim Reaper", "pt": 2, }, - "value": 1148, + "value": 13, }, { "category": "Pet", "configData": { - "id": "Sea Dragon", + "id": "Electric Bunny Ball", + "sh": true, }, - "value": 5975287, + "value": 29961376, }, { "category": "Pet", "configData": { - "id": "Cowboy Dog", + "id": "Electric Bunny Ball", "pt": 2, "sh": true, }, - "value": 346800, + "value": 18680464, }, { "category": "Pet", "configData": { - "id": "Pink Marshmallow Chick", + "id": "Basketball Corgi", + "pt": 1, "sh": true, }, - "value": 2415, + "value": 17101, }, { "category": "Pet", "configData": { - "id": "Cyber Agony", + "id": "Meebo The Alien Ball", "pt": 1, + "sh": true, }, - "value": 1667, + "value": 4588859, }, { "category": "Pet", "configData": { - "id": "Present Cat", + "id": "Huge Yin-Yang Dragon", + "pt": 2, }, - "value": 31163, + "value": 295, }, { "category": "Pet", "configData": { - "id": "Cloud Monkey", + "id": "Glitched Cat Ball", "pt": 1, }, - "value": 1167, + "value": 13190, }, { "category": "Pet", "configData": { - "id": "Huge Pixel Corgi", - "pt": 1, + "id": "Basketball Corgi", + "pt": 2, + "sh": true, }, - "value": 81936616, + "value": 21240, }, { "category": "Pet", "configData": { - "id": "Steampunk Bat", + "id": "Gargantuan Yin-Yang Kitsune", }, - "value": 178, + "value": 49, }, { "category": "Pet", "configData": { - "id": "Huge Peppermint Angelus", + "id": "Huge Yin-Yang Bunny", "pt": 2, - "sh": true, }, - "value": 600000000, + "value": 241, }, { "category": "Pet", "configData": { - "id": "Knight Cat", + "id": "Strawberry Cow Ball", + "pt": 2, "sh": true, }, - "value": 481323, + "value": 9343, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Axolotl", + "id": "Titanic Comet Cyclops Ball", "pt": 2, }, - "value": 5242, + "value": 60, }, { "category": "Pet", "configData": { - "id": "Masked Fox", + "id": "Basketball Cat", + "pt": 2, "sh": true, }, - "value": 254485, + "value": 35434, }, { "category": "Pet", "configData": { - "id": "Angelus", - "pt": 2, + "id": "Blurred Bear Ball", + "pt": 1, "sh": true, }, - "value": 255560, + "value": 1339538, }, { "category": "Pet", "configData": { - "id": "Huge Nightmare Spirit", - "pt": 2, + "id": "Meebo The Alien Ball", + "sh": true, }, - "value": 935805307, + "value": 24973498, }, { "category": "Pet", "configData": { - "id": "Pastel Elephant", + "id": "Huge Electric Bunny Ball", + "pt": 2, "sh": true, }, - "value": 25589, + "value": 55, }, { "category": "Pet", "configData": { - "id": "Emoji Monkey", + "id": "Huge Basketball Corgi", "pt": 2, - "sh": true, }, - "value": 105793081, + "value": 6074, }, { "category": "Pet", "configData": { - "id": "Kraken", - "pt": 1, + "id": "Titanic Comet Cyclops Ball", + "pt": 2, "sh": true, }, - "value": 1111, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Cyborg Piggy", + "id": "Comet Cyclops Ball", + "pt": 1, + "sh": true, }, - "value": 801, + "value": 2591, }, { "category": "Pet", "configData": { - "id": "Blossom Koi Fish", + "id": "Glitched Cat Ball", + "pt": 1, "sh": true, }, - "value": 14315, + "value": 133, }, { "category": "Pet", "configData": { - "id": "Red Dragon", + "id": "Meebo The Alien Ball", + "pt": 2, "sh": true, }, - "value": 17831, + "value": 15057495, }, { "category": "Pet", "configData": { - "id": "Encrusted Dragon", + "id": "Yin-Yang Griffin", "pt": 2, "sh": true, }, - "value": 90000, + "value": 110, }, { "category": "Pet", "configData": { - "id": "Empyrean Dragon", - "pt": 1, - "sh": true, + "id": "Titanic Basketball Cat", }, - "value": 61464, + "value": 1579, }, { "category": "Pet", "configData": { - "id": "Angry Dino", + "id": "Glitched Cat Ball", "pt": 2, "sh": true, }, - "value": 250, + "value": 88, }, { "category": "Pet", "configData": { - "id": "Ghost Cat", + "id": "Huge Basketball Corgi", "pt": 1, - "sh": true, }, - "value": 10000, + "value": 30474, }, { "category": "Pet", "configData": { - "id": "Huge Ninja Axolotl", + "id": "Huge Storm Axolotl Ball", "pt": 1, "sh": true, }, - "value": 3329222697, + "value": 15, }, { "category": "Pet", "configData": { - "id": "Huge Night Terror Cat", - "pt": 2, + "id": "Huge Basketball Corgi", + "pt": 1, "sh": true, }, - "value": 2853943455, + "value": 240, }, { "category": "Pet", "configData": { - "id": "Electric Cat", - "pt": 1, + "id": "Huge Basketball Corgi", + "sh": true, }, - "value": 1155, + "value": 1116, }, { "category": "Pet", "configData": { - "id": "Cloud Monkey", + "id": "Huge Yin-Yang Dragon", + "pt": 2, "sh": true, }, - "value": 3134, + "value": 8, }, { "category": "Pet", "configData": { - "id": "Scary Cat", + "id": "Yin-Yang Bunny", "pt": 2, + "sh": true, }, - "value": 237, + "value": 50, }, { "category": "Pet", "configData": { - "id": "Royal Cloud Cat", + "id": "Titanic Basketball Cat", "pt": 1, - "sh": true, }, - "value": 10000, + "value": 194, }, { "category": "Pet", "configData": { - "id": "Huge Shark", + "id": "Hippomelon Ball", }, - "value": 149799048, + "value": 32218, }, { "category": "Pet", "configData": { - "id": "Anime Unicorn", - "pt": 2, - "sh": true, + "id": "Hippomelon Ball", + "pt": 1, }, - "value": 682889594, + "value": 2180, }, { "category": "Pet", "configData": { - "id": "Flowers Hedgehog", - "pt": 1, + "id": "Hippomelon Ball", + "pt": 2, }, - "value": 957, + "value": 3747, }, { "category": "Pet", "configData": { - "id": "Encrusted Dragon", + "id": "Titanic Yin-Yang Grim Reaper", "sh": true, }, - "value": 4503, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Huge Exquisite Cat", - "pt": 1, - "sh": true, + "id": "Titanic Basketball Cat", + "pt": 2, }, - "value": 4272093402, + "value": 33, }, { "category": "Pet", "configData": { - "id": "Huge Easter Yeti", + "id": "Huge Basketball Corgi", "pt": 2, "sh": true, }, - "value": 1636000009, + "value": 44, }, { "category": "Pet", "configData": { - "id": "Bear", + "id": "Hippomelon Ball", "pt": 2, "sh": true, }, - "value": 46, + "value": 170, }, { "category": "Pet", "configData": { - "id": "Dove", + "id": "Hippomelon Ball", + "pt": 1, "sh": true, }, - "value": 18186, + "value": 41, }, { "category": "Pet", "configData": { - "id": "Zebra", + "id": "Gargantuan Nyan Cat", "pt": 2, }, - "value": 1359, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Gleebo The Alien", - "pt": 2, + "id": "Hippomelon Ball", + "sh": true, }, - "value": 267, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Cupcake", + "id": "Gargantuan Yin-Yang Kitsune", "sh": true, }, - "value": 8952, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Huge Hippomelon", + "id": "Huge Storm Axolotl Ball", + "pt": 2, "sh": true, }, - "value": 705302575, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Shadow Griffin", - "pt": 2, + "id": "Titanic Basketball Cat", "sh": true, }, - "value": 60000, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Huge Red Fluffy", - "pt": 1, + "id": "Starlight Pony", + "sh": true, }, - "value": 474493659, + "value": 11, }, { "category": "Pet", "configData": { - "id": "Huge Tiedye Corgi", + "id": "Titanic Starlight Pony", + "pt": 1, }, - "value": 79947151, + "value": 775, }, { "category": "Pet", "configData": { - "id": "Sun Angelus", + "id": "Titanic Basketball Cat", "pt": 1, "sh": true, }, - "value": 2565024, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Bearserker", - "pt": 2, - "sh": true, + "id": "Huge Junkyard Hound", }, - "value": 76320, + "value": 889, }, { "category": "Pet", "configData": { - "id": "Koi Fish", + "id": "Huge Junkyard Hound", "pt": 1, - "sh": true, }, - "value": 100, + "value": 375, }, { "category": "Pet", "configData": { - "id": "Pajamas Dog", + "id": "Huge Junkyard Hound", "pt": 2, }, - "value": 815, + "value": 150, }, { "category": "Pet", "configData": { - "id": "Luau Cat", + "id": "Titanic Exquisite Cat", "pt": 1, "sh": true, }, - "value": 100000, + "value": 8, }, { "category": "Pet", "configData": { - "id": "Abyssal Kraken", - "pt": 1, - "sh": true, + "id": "Titanic Starlight Pony", }, - "value": 1, + "value": 3930, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Empyrean Stallion", - "pt": 2, - "sh": true, + "id": "Basketball Hoop", + "tn": 1, }, - "value": 88200, + "value": 706584, }, { "category": "Pet", "configData": { - "id": "Kraken", - "pt": 1, + "id": "Astronaut Cat Ball", + "pt": 2, }, - "value": 237, + "value": 2586779775, }, { "category": "Pet", "configData": { - "id": "Huge Safari Dog", - "pt": 1, + "id": "Robot Ball", }, - "value": 4210435213, + "value": 269792845, }, { "category": "Pet", "configData": { - "id": "Huge Pixel Cat", + "id": "Robot Ball", + "pt": 1, }, - "value": 60378958, + "value": 16017875, }, { "category": "Pet", "configData": { - "id": "Parrot", - "pt": 1, - "sh": true, + "id": "Astronaut Cat Ball", }, - "value": 100799, + "value": 10754142509, }, { "category": "Pet", "configData": { - "id": "Huge Easter Cat", - "pt": 1, + "id": "Junkyard Hound Ball", }, - "value": 682829395, + "value": 1027767510, }, { "category": "Pet", "configData": { - "id": "Huge Matrix Monkey", - "pt": 1, + "id": "Junkyard Hound Ball", + "pt": 2, }, - "value": 363715443, + "value": 195341636, }, { "category": "Pet", "configData": { - "id": "North Pole Wolf", + "id": "Astronaut Cat Ball", "pt": 1, }, - "value": 2007040, + "value": 1185361973, }, { "category": "Pet", "configData": { - "id": "Huge Skeleton", + "id": "Junkyard Hound Ball", "pt": 1, - "sh": true, }, - "value": 3455593900, + "value": 62813806, }, { "category": "Pet", "configData": { - "id": "Hell Scorpion", + "id": "Brain Ball", "pt": 2, }, - "value": 579, + "value": 1333471434, }, { "category": "Pet", "configData": { - "id": "Huge Mosaic Griffin", + "id": "Robot Ball", "pt": 2, - "sh": true, }, - "value": 1477280010, + "value": 21365214, }, { "category": "Pet", "configData": { - "id": "Cyborg Cat", - "pt": 2, - "sh": true, + "id": "Brain Ball", }, - "value": 839, + "value": 5396362149, }, { "category": "Pet", "configData": { - "id": "Husky", - "pt": 2, - "sh": true, + "id": "Brain Ball", + "pt": 1, }, - "value": 72000, + "value": 659894796, }, { "category": "Pet", "configData": { - "id": "Galaxy Dragon", + "id": "Starry Tail Anteater", }, - "value": 83685647, + "value": 46041625, }, { "category": "Pet", "configData": { - "id": "Garden Cat", + "id": "Totem Cub", + "pt": 1, }, - "value": 650, + "value": 11138594, }, { "category": "Pet", "configData": { - "id": "Goat", - "pt": 2, - "sh": true, + "id": "Sprout Wyrmling", }, - "value": 37500, + "value": 21051148, }, { "category": "Pet", "configData": { - "id": "Basketball Retriever", - "sh": true, + "id": "Totem Cub", + "pt": 2, }, - "value": 3472, + "value": 7125099, }, { "category": "Pet", "configData": { - "id": "Huge Classic Dragon", - "sh": true, + "id": "Starry Tail Anteater", + "pt": 2, }, - "value": 1169661131, + "value": 5194484, }, { "category": "Pet", "configData": { - "id": "Huge Chameleon", + "id": "Starry Tail Anteater", "pt": 1, }, - "value": 377255835, + "value": 9429523, }, { "category": "Pet", "configData": { - "id": "King Cobra", - "pt": 2, - "sh": true, + "id": "Totem Cub", }, - "value": 1520000, + "value": 59923427, }, { "category": "Pet", "configData": { - "id": "Shadow Panther", + "id": "Robot Ball", + "sh": true, }, - "value": 6927, + "value": 835639, }, { "category": "Pet", "configData": { - "id": "Astral Axolotl", + "id": "Junkyard Hound Ball", + "pt": 2, + "sh": true, }, - "value": 2037, + "value": 801718, }, { "category": "Pet", "configData": { - "id": "Huge Masked Fox", - "pt": 1, + "id": "Junkyard Hound Ball", + "sh": true, }, - "value": 178861603, + "value": 2828494, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Dalmatian", - "pt": 1, - "sh": true, + "id": "Basketball Orb Frenzy", + "tn": 1, }, - "value": 2000, + "value": 323241, }, { "category": "Pet", "configData": { - "id": "Huge Happy Computer", - "sh": true, + "id": "Runebound Bobcat", + "pt": 1, }, - "value": 106702074, + "value": 2859870434, }, { "category": "Pet", "configData": { - "id": "Huge Shark", - "sh": true, + "id": "Runebound Bobcat", + "pt": 2, }, - "value": 1043421000, + "value": 3674731719, }, { "category": "Pet", "configData": { - "id": "Relic Raccoon", - "sh": true, + "id": "Happy Cyclops", }, - "value": 1, + "value": 50204572440, }, { "category": "Pet", "configData": { - "id": "Titanic Cosmic Pegasus", - "pt": 2, + "id": "Sprout Wyrmling", + "pt": 1, }, - "value": 999000000, + "value": 5018118, }, { "category": "Pet", "configData": { - "id": "Huge Emoji Monkey", - "pt": 2, - "sh": true, + "id": "Happy Cyclops", + "pt": 1, }, - "value": 400000000, + "value": 6433922597, }, { "category": "Pet", "configData": { - "id": "Star Surfer", + "id": "Happy Cyclops", + "pt": 2, }, - "value": 3469, + "value": 7388015783, }, { "category": "Pet", "configData": { - "id": "Stargazing Bear", + "id": "Runebound Bobcat", }, - "value": 3089926, + "value": 20058591148, }, { "category": "Pet", "configData": { - "id": "Umbrella Cat", - "pt": 1, - "sh": true, + "id": "Glow Worm", }, - "value": 60180, + "value": 38177274, }, { "category": "Pet", "configData": { - "id": "Cloud Monkey", + "id": "Glow Worm", "pt": 1, - "sh": true, - }, - "value": 39000, - }, - { - "category": "Pet", - "configData": { - "id": "Clover Axolotl", }, - "value": 2337, + "value": 8905264, }, { "category": "Pet", "configData": { - "id": "Huge Enchanted Deer", + "id": "Glow Worm", "pt": 2, }, - "value": 298988841, + "value": 4690927, }, { "category": "Pet", "configData": { - "id": "Huge Plague Dragon", + "id": "Sprout Wyrmling", "pt": 2, - "sh": true, }, - "value": 2622978742, + "value": 3104961, }, { "category": "Pet", "configData": { - "id": "Huge Emoji Monkey", - "pt": 2, + "id": "Boulder Boar", + "pt": 1, }, - "value": 1808037293, + "value": 5763078, }, { "category": "Pet", "configData": { - "id": "Titanic Soul Owl", + "id": "Boulder Boar", + "pt": 2, }, - "value": 18349928666, + "value": 3257289, }, { "category": "Pet", "configData": { - "id": "Cheerful Yeti", - "pt": 2, - "sh": true, + "id": "Boulder Boar", }, - "value": 37500, + "value": 32142973, }, { "category": "Pet", "configData": { - "id": "Glitched Immortuus", + "id": "Runebound Bobcat", "sh": true, }, - "value": 7014, + "value": 80240063, }, { "category": "Pet", "configData": { - "id": "Bull", + "id": "Runebound Bobcat", "pt": 2, "sh": true, }, - "value": 37500, + "value": 21498759, }, { "category": "Pet", "configData": { - "id": "Bejeweled Lion", - "pt": 2, + "id": "Happy Cyclops", "sh": true, }, - "value": 455471490, + "value": 202254393, }, { "category": "Pet", "configData": { - "id": "Samurai Dragon", - "pt": 2, + "id": "Totem Cub", "sh": true, }, - "value": 80000, + "value": 194358, }, { "category": "Pet", "configData": { - "id": "Huge Sun Angelus", - "pt": 1, + "id": "Starry Tail Anteater", "sh": true, }, - "value": 4697798175, + "value": 155837, }, { "category": "Pet", "configData": { - "id": "Elephant", - "pt": 2, + "id": "Runebound Bobcat", + "pt": 1, "sh": true, }, - "value": 4000, + "value": 12926537, }, { "category": "Pet", "configData": { - "id": "Pastel Elephant", + "id": "Happy Cyclops", "pt": 1, "sh": true, }, - "value": 131360, + "value": 29273419, }, { "category": "Pet", "configData": { - "id": "Huge Green Balloon Cat", + "id": "Happy Cyclops", "pt": 2, "sh": true, }, - "value": 360000000, + "value": 41476868, }, { "category": "Pet", "configData": { - "id": "Huge Robber Pug", + "id": "Totem Cub", "pt": 2, "sh": true, }, - "value": 903429618, + "value": 38437, }, { "category": "Pet", "configData": { - "id": "Huge Elegant Eagle", - "pt": 2, + "id": "Glitched Unicorn Ball", }, - "value": 397183736, + "value": 3882341224, }, { "category": "Pet", "configData": { - "id": "Fluffy Cat", - "pt": 1, - "sh": true, + "id": "Glimmer Goat", }, - "value": 17999, + "value": 6575228, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Armadillo", - "pt": 2, - "sh": true, + "id": "Ghostly Pack", }, - "value": 30000, + "value": 2910866, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Jester Dog", + "id": "Cosmic Basketball Egg", }, - "value": 3746321, + "value": 1103116, }, { "category": "Pet", "configData": { - "id": "Huge Rave Butterfly", - "pt": 2, - "sh": true, + "id": "Holographic Axolotl Ball", }, - "value": 5263718384, + "value": 614540, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Cat", - "sh": true, + "id": "Atomic Monkey Ball", }, - "value": 2992, + "value": 917120304, }, { "category": "Pet", "configData": { - "id": "Huge Easter Yeti", + "id": "Glitched Unicorn Ball", "pt": 1, }, - "value": 78595459, + "value": 520741234, }, { "category": "Pet", "configData": { - "id": "Huge Shadow Dominus", + "id": "Holographic Axolotl Ball", "pt": 2, - "sh": true, }, - "value": 933055742, + "value": 63282, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Sad Doge", - "pt": 2, - "sh": true, + "id": "Cosmic Basketball Gift", }, - "value": 306359999, + "value": 28093979, }, { "category": "Pet", "configData": { - "id": "Tiedye Dog", - "pt": 2, + "id": "Atomic Monkey Ball", "sh": true, }, - "value": 340976004, + "value": 4891844, }, { "category": "Pet", "configData": { - "id": "Titanic Axolotl", + "id": "Holographic Axolotl Ball", + "sh": true, }, - "value": 12910369726, + "value": 7114, }, { "category": "Pet", "configData": { - "id": "Pegasus", - "pt": 1, - "sh": true, + "id": "Huge Fragmented Dominus Ball", }, - "value": 100000, + "value": 29061, }, { "category": "Pet", "configData": { - "id": "Huge Mosaic Griffin", - "pt": 1, - "sh": true, + "id": "Fragmented Dominus Ball", }, - "value": 812864008, + "value": 98665, }, { "category": "Pet", "configData": { - "id": "Holographic Monkey", - "pt": 2, + "id": "Huge Fragmented Dominus Ball", + "sh": true, }, - "value": 670, + "value": 1267, }, { "category": "Pet", "configData": { - "id": "Willow Wisp", + "id": "Junkyard Hound Ball", + "pt": 1, "sh": true, }, - "value": 1601, + "value": 389698, }, { "category": "Pet", "configData": { - "id": "Huge Jester Dog", - "pt": 2, + "id": "Robot Ball", + "pt": 1, + "sh": true, }, - "value": 669766880, + "value": 130508, }, { "category": "Pet", "configData": { - "id": "Cloud Dog", - "pt": 2, + "id": "Astronaut Cat Ball", "sh": true, }, - "value": 250000, + "value": 53574647, }, { "category": "Pet", "configData": { - "id": "Huge Doodle Fairy", + "id": "Huge Meebo The Alien Ball", "pt": 1, }, - "value": 147213100, + "value": 1090, }, { "category": "Pet", "configData": { - "id": "Dalmatian", - "pt": 2, - "sh": true, + "id": "Huge Meebo The Alien Ball", }, - "value": 57200, + "value": 2269, }, { "category": "Pet", "configData": { - "id": "Flamortuus", - "pt": 2, + "id": "Glow Worm", "sh": true, }, - "value": 17031, + "value": 153013, }, { "category": "Pet", "configData": { - "id": "Alien Octopus", - "sh": true, + "id": "Glitched Unicorn Ball", + "pt": 2, }, - "value": 3048, + "value": 1053278137, }, { "category": "Pet", "configData": { - "id": "Fire Cat", + "id": "Robot Ball", "pt": 2, "sh": true, }, - "value": 70666, + "value": 86341, }, { "category": "Pet", "configData": { - "id": "Huge Emoji Cat", - "pt": 2, + "id": "Glow Worm", + "pt": 1, "sh": true, }, - "value": 250400000, + "value": 48550, }, { "category": "Pet", "configData": { - "id": "Huge Chest Mimic", + "id": "Starry Tail Anteater", "pt": 2, "sh": true, }, - "value": 741000000, + "value": 28845, }, { "category": "Pet", "configData": { - "id": "Tiki Dominus", + "id": "Starry Tail Anteater", + "pt": 1, "sh": true, }, - "value": 644298, + "value": 47119, }, { "category": "Pet", "configData": { - "id": "Huge Reindeer Axolotl", + "id": "Glow Worm", + "pt": 2, "sh": true, }, - "value": 370200964, + "value": 28152, }, { "category": "Pet", "configData": { - "id": "Camel", - "pt": 1, - "sh": true, + "id": "Atomic Monkey Ball", + "pt": 2, }, - "value": 56000, + "value": 254237817, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Huge Cow", - "pt": 2, + "id": "Super Basketball Hoop", + "tn": 1, }, - "value": 1347905432, + "value": 70673, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Ghost", - "pt": 1, - "sh": true, + "id": "Ghostly Fox Card", }, - "value": 110000, + "value": 594185, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Empyrean Snake", - "pt": 2, - "sh": true, + "id": "Ghostly Bunny Card", }, - "value": 60000, + "value": 349350, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Blossom Squirrel", - "pt": 2, - "sh": true, + "id": "Ghostly Cat Card", }, - "value": 10000, + "value": 513988, }, { "category": "Pet", "configData": { - "id": "Detective Terrier", + "id": "Boulder Boar", "pt": 1, "sh": true, }, - "value": 143, + "value": 31501, }, { "category": "Pet", "configData": { - "id": "Cloud Bat", + "id": "Astronaut Cat Ball", "pt": 1, "sh": true, }, - "value": 1, + "value": 7922970, }, { "category": "Pet", "configData": { - "id": "Evil Wolverine", + "id": "Fragmented Dominus Ball", "pt": 2, - "sh": true, }, - "value": 240518, + "value": 6548, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Hound of Hades", + "id": "Huge Ghostly Dragon Card", }, - "value": 394, + "value": 67516, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Shadow Bull", + "id": "Ghostly Fox Card", + "sh": true, }, - "value": 407, + "value": 38138, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Tiedye Bunny", - "pt": 1, - "sh": true, + "id": "Ghostly Bunny Card", + "pt": 2, }, - "value": 1425520899, + "value": 23816, }, { "category": "Pet", "configData": { - "id": "Evil Imp", - "sh": true, + "id": "Huge LeGoat Ball", }, - "value": 3418, + "value": 10304, }, { "category": "Pet", "configData": { - "id": "Wireframe Dog", - "pt": 2, + "id": "Brain Ball", "sh": true, }, - "value": 396, + "value": 28135319, }, { "category": "Pet", "configData": { - "id": "Bison", - "pt": 2, + "id": "Atomic Monkey Ball", + "pt": 1, "sh": true, }, - "value": 350000, + "value": 922488, }, { "category": "Pet", "configData": { - "id": "Whale Shark", - "sh": true, + "id": "Atomic Monkey Ball", + "pt": 1, }, - "value": 1837, + "value": 123905167, }, { "category": "Pet", "configData": { - "id": "Huge Easter Bunny", + "id": "Holographic Axolotl Ball", "pt": 1, }, - "value": 96026513, + "value": 87385, }, { "category": "Pet", "configData": { - "id": "Good vs Evil Cat", + "id": "Holographic Axolotl Ball", + "pt": 1, "sh": true, }, - "value": 670, + "value": 835, }, { "category": "Pet", "configData": { - "id": "Cotton Candy Cow", + "id": "Astronaut Cat Ball", "pt": 2, "sh": true, }, - "value": 268000, + "value": 18169646, }, { "category": "Pet", "configData": { - "id": "Elephant", + "id": "Glimmer Goat", "pt": 2, }, - "value": 1134, + "value": 1350332, }, { "category": "Pet", "configData": { - "id": "Huge Fox", - "pt": 2, + "id": "Totem Cub", + "pt": 1, + "sh": true, }, - "value": 1083951616, + "value": 64840, }, { "category": "Pet", "configData": { - "id": "Huge Angelus", + "id": "Glimmer Goat", "pt": 1, }, - "value": 5705040058, + "value": 965521, }, { "category": "Pet", "configData": { - "id": "Snow Leopard", + "id": "Boulder Boar", + "sh": true, }, - "value": 204, + "value": 131051, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Party Monkey", - "sh": true, + "id": "Ghostly Cat Card", + "pt": 2, }, - "value": 286000001, + "value": 33206, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Neon Cat", - "pt": 2, + "id": "Titanic Ghostly Wolf Card", }, - "value": 14870463, + "value": 6514, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Cow", - "pt": 2, + "id": "Ghostly Cat Card", "sh": true, }, - "value": 1601, + "value": 34382, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Cloud Penguin", - "pt": 1, - "sh": true, + "id": "Ghostly Fox Card", + "pt": 2, }, - "value": 8216, + "value": 38482, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge King Cobra", - "pt": 2, + "id": "Ghostly Bunny Card", "sh": true, }, - "value": 1458000020, + "value": 23570, }, { "category": "Pet", "configData": { - "id": "Hydra", + "id": "Atomic Monkey Ball", "pt": 2, "sh": true, }, - "value": 250000, + "value": 2534947, }, { "category": "Pet", "configData": { - "id": "Prison Dog", + "id": "Titanic Black Hole Angelus Ball", }, - "value": 3466, + "value": 1568, }, { "category": "Pet", "configData": { - "id": "Frostbyte Cat", + "id": "Boulder Boar", + "pt": 2, "sh": true, }, - "value": 1001, + "value": 23305, }, { "category": "Pet", "configData": { - "id": "Pumpkin Scarecrow", - "pt": 1, + "id": "Sprout Wyrmling", + "pt": 2, + "sh": true, }, - "value": 6245, + "value": 18641, }, { "category": "Pet", "configData": { - "id": "Stargazing Wolf", + "id": "Sprout Wyrmling", + "sh": true, }, - "value": 4152457, + "value": 66325, }, { "category": "Pet", "configData": { - "id": "Scary Corgi", + "id": "Ancestor Eagle", "pt": 2, - "sh": true, }, - "value": 170000, + "value": 34235, }, { "category": "Pet", "configData": { - "id": "Huge Kawaii Cat", - "sh": true, + "id": "Ghostly Fox", }, - "value": 2146448821, + "value": 367517, }, { "category": "Pet", "configData": { - "id": "Reaper", - "pt": 1, - "sh": true, + "id": "Ghostly Bunny", }, - "value": 2000, + "value": 164412, }, { "category": "Pet", "configData": { - "id": "Prison Cow", - "pt": 2, + "id": "Brain Ball", + "pt": 1, + "sh": true, }, - "value": 136, + "value": 4530983, }, { "category": "Pet", "configData": { - "id": "Titanic Corgi", + "id": "Huge Meebo The Alien Ball", + "pt": 2, }, - "value": 12833219091, + "value": 341, }, { "category": "Pet", "configData": { - "id": "Luau Cat", + "id": "Huge LeGoat Ball", "pt": 2, }, - "value": 645, + "value": 334, }, { "category": "Pet", "configData": { - "id": "Comet Cyclops", - "pt": 1, + "id": "Fragmented Dominus Ball", + "sh": true, }, - "value": 935, + "value": 953, }, { "category": "Pet", "configData": { - "id": "Sphinx", + "id": "Holographic Axolotl Ball", "pt": 2, "sh": true, }, - "value": 4407203, + "value": 322, }, { "category": "Pet", "configData": { - "id": "Titanic Jolly Cat", + "id": "Huge Fragmented Dominus Ball", + "pt": 2, }, - "value": 14716366521, + "value": 957, }, { "category": "Pet", "configData": { - "id": "Spitting Dino", - "pt": 2, + "id": "Titanic Black Hole Angelus Ball", "sh": true, }, - "value": 53568, + "value": 30, }, { "category": "Pet", "configData": { - "id": "Hacked Cat", - "pt": 1, + "id": "Ghostly Cat", }, - "value": 1788, + "value": 272859, }, { "category": "Pet", "configData": { - "id": "Chocolate Frog", - "pt": 2, - "sh": true, + "id": "Ancestor Eagle", }, - "value": 31849, + "value": 166933, }, { "category": "Pet", "configData": { - "id": "Hydra Axolotl", + "id": "Sprout Wyrmling", "pt": 1, "sh": true, }, - "value": 236000, + "value": 30293, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Tiedye Griffin", + "id": "Huge Ghostly Dragon Card", "pt": 2, }, - "value": 30654678, + "value": 3120, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Polar Bear", - "pt": 2, + "id": "Huge Ghostly Dragon Card", "sh": true, }, - "value": 1360000, + "value": 3765, }, { "category": "Pet", "configData": { - "id": "Zombie Squirrel", - "pt": 1, + "id": "Brain Ball", + "pt": 2, "sh": true, }, - "value": 100000, + "value": 10425567, }, { "category": "Pet", "configData": { - "id": "Ice Slime", + "id": "Glitched Unicorn Ball", + "pt": 1, + "sh": true, }, - "value": 914, + "value": 3770085, }, { "category": "Pet", "configData": { - "id": "Huge Atlantean Orca", - "pt": 2, + "id": "Huge LeGoat Ball", "sh": true, }, - "value": 3700000039, + "value": 454, }, { "category": "Pet", "configData": { - "id": "Gazelle", - "pt": 2, - "sh": true, + "id": "Fragmented Dominus Ball", + "pt": 1, }, - "value": 30000, + "value": 6118, }, { "category": "Pet", "configData": { - "id": "Bison", + "id": "Huge Meebo The Alien Ball", "sh": true, }, - "value": 10166, + "value": 74, }, { "category": "Pet", "configData": { - "id": "Cotton Candy Lamb", - "pt": 1, + "id": "Ghostly Fox", "sh": true, }, - "value": 102000, + "value": 5516, }, { "category": "Pet", "configData": { - "id": "Titanic Pumpkin Cat", + "id": "Huge Ghostly Dragon", }, - "value": 16199999943, + "value": 104913, }, { "category": "Pet", "configData": { - "id": "Huge Rave Crab", - "pt": 1, + "id": "Ghostly Cat", + "pt": 2, }, - "value": 1764589061, + "value": 6216, }, { "category": "Pet", "configData": { - "id": "Zombie Squirrel", + "id": "Titanic Black Hole Angelus Ball", "pt": 2, - "sh": true, }, - "value": 180000, + "value": 41, }, { "category": "Pet", "configData": { - "id": "Cyborg Ducky", + "id": "Glitched Unicorn Ball", + "sh": true, }, - "value": 111, + "value": 21849630, }, { "category": "Pet", "configData": { - "id": "Walrus", + "id": "Glitched Unicorn Ball", "pt": 2, "sh": true, }, - "value": 37500, + "value": 8779428, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Huge Bee", - "pt": 2, + "id": "Cosmic Basketball", }, - "value": 88746017, + "value": 46545, }, { "category": "Pet", "configData": { - "id": "Huge Neon Twilight Dragon", + "id": "Ancestor Eagle", "pt": 1, }, - "value": 1677041244, + "value": 28405, }, { "category": "Pet", "configData": { - "id": "Cloud Hedgehog", - "pt": 1, + "id": "Fragmented Dominus Ball", + "pt": 2, "sh": true, }, - "value": 120200, + "value": 45, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Sloth", - "pt": 2, + "id": "Huge Runebound Bobcat", }, - "value": 18462, + "value": 5910, }, { "category": "Pet", "configData": { - "id": "Mortuus", - "pt": 2, + "id": "Titanic Ghostly Wolf", + }, + "value": 10537, + }, + { + "category": "Pet", + "configData": { + "id": "Ghostly Cat", "sh": true, }, - "value": 40000, + "value": 4810, }, { "category": "Pet", "configData": { - "id": "Piggy", + "id": "Ghostly Fox", "pt": 2, }, - "value": 90, + "value": 7141, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "White Bunny", + "id": "Ghostly Bunny Card", "pt": 2, "sh": true, }, - "value": 30000, + "value": 793, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Fire Cat", + "id": "Ghostly Cat Card", "pt": 2, + "sh": true, }, - "value": 1204, + "value": 1249, }, { "category": "Pet", "configData": { - "id": "Corrupt Octopus", + "id": "Ghostly Bunny", + "sh": true, }, - "value": 674, + "value": 2718, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Pastel Goat", - "pt": 1, + "id": "Ghostly Fox Card", + "pt": 2, + "sh": true, }, - "value": 563, + "value": 1459, }, { "category": "Pet", "configData": { - "id": "Huge Bread Shiba", - "pt": 2, + "id": "Huge Robot Ball", }, - "value": 3716800042, + "value": 51627, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Hooded Dragon", - "sh": true, + "id": "Titanic Ghostly Wolf Card", + "pt": 2, }, - "value": 8000, + "value": 211, }, { "category": "Pet", "configData": { - "cv": 1, - "id": "Huge Chroma Tiger", + "id": "Huge LeGoat Ball", "pt": 2, "sh": true, }, - "value": 3000000000, + "value": 14, }, { "category": "Pet", "configData": { - "id": "Huge Santa Dragon", + "id": "Huge Runebound Bobcat", "pt": 2, }, - "value": 3212392607, + "value": 667, }, { "category": "Pet", "configData": { - "id": "Huge Pastel Sock Dragon", - "pt": 2, + "id": "Huge Atomic Monkey Ball", }, - "value": 3885034107, + "value": 86210, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Tiki Dominus", - "pt": 1, + "id": "Titanic Ghostly Wolf Card", "sh": true, }, - "value": 1200000000, + "value": 256, }, { "category": "Pet", "configData": { - "id": "Cupcake", - "pt": 2, - "sh": true, + "id": "Huge Runebound Bobcat", + "pt": 1, }, - "value": 152860, + "value": 678, }, { "category": "Pet", "configData": { - "id": "Huge Meebo in a Spaceship", + "id": "Huge Meebo The Alien Ball", + "pt": 1, "sh": true, }, - "value": 8222083795, + "value": 18, }, { "category": "Pet", "configData": { - "id": "Huge Stealth Bobcat", + "id": "Fragmented Dominus Ball", "pt": 1, "sh": true, }, - "value": 1598853362, + "value": 60, }, { "category": "Pet", "configData": { - "id": "Tech Scorpion", - "pt": 2, - "sh": true, + "id": "Huge Glitched Unicorn Ball", }, - "value": 6660, + "value": 94850, }, { "category": "Pet", "configData": { - "id": "Huge Chest Mimic", - "sh": true, + "id": "Titanic Brain Ball", }, - "value": 2190829632, + "value": 745, }, { "category": "Pet", "configData": { - "id": "Cow", + "id": "Ghostly Bunny", "pt": 2, }, - "value": 54736, + "value": 3381, }, { "category": "Pet", "configData": { - "id": "Vampire Bat", - "pt": 1, - "sh": true, + "id": "Titanic Holographic Axolotl Ball", }, - "value": 65440, + "value": 513, }, { "category": "Pet", "configData": { - "id": "Huge Cyborg Dragon", - "pt": 1, + "id": "Huge Fragmented Dominus Ball", + "pt": 2, "sh": true, }, - "value": 7194398060, + "value": 36, }, { "category": "Pet", "configData": { - "id": "Silver Stag", + "id": "Huge Robot Ball", "pt": 1, }, - "value": 1099200, + "value": 12957, }, { "category": "Pet", "configData": { - "id": "Fawn", + "id": "Huge Ghostly Dragon", "pt": 2, - "sh": true, }, - "value": 5012000, + "value": 1527, }, { "category": "Pet", "configData": { - "id": "Cyborg Dragon", - "pt": 1, + "id": "Huge Ghostly Dragon", "sh": true, }, - "value": 10000, + "value": 1353, }, { "category": "Pet", "configData": { - "id": "Huge Chroma Phoenix", + "id": "Glimmer Goat", + "pt": 1, "sh": true, }, - "value": 1221977781, + "value": 9025, }, { "category": "Pet", "configData": { - "id": "Huge Evil Imp", - "pt": 2, - "sh": true, + "id": "Huge Glitched Unicorn Ball", + "pt": 1, }, - "value": 8143034916, + "value": 25487, }, { "category": "Pet", "configData": { - "id": "Hydra Dino", - "pt": 2, - "sh": true, + "id": "Huge Atomic Monkey Ball", + "pt": 1, }, - "value": 11327781, + "value": 22932, }, { "category": "Pet", "configData": { - "id": "Deer", + "id": "Huge Robot Ball", "pt": 2, - "sh": true, }, - "value": 83600, + "value": 3515, }, { "category": "Pet", "configData": { - "id": "Angel Dog", + "id": "Huge Atomic Monkey Ball", "pt": 2, - "sh": true, }, - "value": 101432, + "value": 6388, }, { "category": "Pet", "configData": { - "id": "Frost Axolotl", - "sh": true, + "id": "Huge Glitched Unicorn Ball", + "pt": 2, }, - "value": 742, + "value": 7109, }, { "category": "Pet", "configData": { - "id": "Huge Jelly Monkey", + "id": "Glimmer Goat", + "pt": 2, "sh": true, }, - "value": 1046558054, + "value": 10825, }, { "category": "Pet", "configData": { - "id": "Huge Angel Cat", + "id": "Huge Atomic Monkey Ball", "pt": 1, + "sh": true, }, - "value": 1844877042, + "value": 506, }, { "category": "Pet", "configData": { - "id": "Hot Cocoa Cat", - "pt": 2, + "id": "Huge Glitched Unicorn Ball", "sh": true, }, - "value": 2000, + "value": 1951, }, { "category": "Pet", "configData": { - "id": "Agony", - "pt": 1, + "id": "Huge Atomic Monkey Ball", "sh": true, }, - "value": 50000, + "value": 1822, }, { "category": "Pet", "configData": { - "id": "Mr Krabs", + "id": "Huge Robot Ball", "sh": true, }, - "value": 8632075, + "value": 923, }, { "category": "Pet", "configData": { - "id": "Huge Pineapple Cat", + "id": "Titanic Brain Ball", "pt": 2, - "sh": true, }, - "value": 1371840013, + "value": 60, }, { "category": "Pet", "configData": { - "id": "Huge Crystal Dog", - "sh": true, + "id": "Titanic Brain Ball", + "pt": 1, }, - "value": 308203035, + "value": 205, }, { "category": "Pet", "configData": { - "id": "Huge Zebra", - "pt": 2, + "id": "Titanic Holographic Axolotl Ball", + "pt": 1, }, - "value": 103923797, + "value": 130, }, { "category": "Pet", "configData": { - "id": "Hacked Skeleton", + "id": "Huge Robot Ball", "pt": 2, "sh": true, }, - "value": 114050, + "value": 69, }, { "category": "Pet", "configData": { - "id": "North Pole Wolf", + "id": "Titanic Holographic Axolotl Ball", "pt": 2, }, - "value": 19335000, + "value": 29, }, { "category": "Pet", "configData": { - "id": "Huge Scary Cat", + "id": "Huge Glitched Unicorn Ball", + "pt": 1, + "sh": true, }, - "value": 55174384, + "value": 526, }, { "category": "Pet", "configData": { - "id": "Cyborg Cow", + "id": "Huge Robot Ball", + "pt": 1, + "sh": true, }, - "value": 17791, + "value": 242, }, { "category": "Pet", "configData": { - "id": "Holiday Balloon Cat", + "id": "Huge Atomic Monkey Ball", + "pt": 2, "sh": true, }, - "value": 12359150, + "value": 123, }, { "category": "Pet", "configData": { - "id": "Clown Cat", - "pt": 2, + "id": "Titanic Holographic Axolotl Ball", "sh": true, }, - "value": 53600, + "value": 11, }, { "category": "Pet", "configData": { - "id": "Dino Cat", + "id": "Huge Glitched Unicorn Ball", "pt": 2, "sh": true, }, - "value": 48770733, + "value": 150, }, { "category": "Pet", "configData": { - "id": "Huge Monkey", - "pt": 1, + "id": "Black Hole Angelus Ball", }, - "value": 6621926921, + "value": 15047, }, { "category": "Pet", "configData": { - "id": "Huge Firefighter Dalmation", - "pt": 1, + "id": "Titanic Yin-Yang Grim Reaper", + "pt": 2, + "sh": true, + }, + "value": 1, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Ghostly Wolf Card", + "pt": 2, "sh": true, }, - "value": 398320001, + "value": 8, }, { "category": "Pet", "configData": { - "id": "Cheetah", - "pt": 1, + "id": "Glimmer Goat", "sh": true, }, - "value": 75000, + "value": 18946, }, { "category": "Pet", "configData": { - "id": "Dolphin", - "pt": 1, + "id": "Black Hole Angelus Ball", + "pt": 2, }, - "value": 329, + "value": 1942, }, { "category": "Pet", "configData": { - "id": "Huge Enchanted Deer", + "id": "Black Hole Angelus Ball", "pt": 1, }, - "value": 82157599, + "value": 1291, }, { "category": "Pet", "configData": { - "id": "Demolition Cat", + "id": "Ghostly Fox", "pt": 2, "sh": true, }, - "value": 24000, + "value": 223, }, { "category": "Pet", "configData": { - "id": "Huge Samurai Dragon", - "pt": 1, - "sh": true, + "id": "Titanic Ghostly Wolf", + "pt": 2, }, - "value": 292000002, + "value": 160, }, { "category": "Pet", "configData": { - "id": "Abyssal Pufferfish", + "id": "Titanic Brain Ball", "sh": true, }, - "value": 13756, + "value": 10, }, { - "category": "Pet", + "category": "Card", "configData": { - "id": "Huge Shadow Dominus", - "pt": 1, + "id": "Huge Ghostly Dragon Card", + "pt": 2, "sh": true, }, - "value": 452425207, + "value": 56, }, { "category": "Pet", "configData": { - "id": "Nuclear Mining Cat", - "pt": 2, + "id": "Titanic Ghostly Wolf", + "sh": true, }, - "value": 3774, + "value": 197, }, { "category": "Pet", "configData": { - "id": "Bat", - "pt": 2, + "id": "Huge Runebound Bobcat", "sh": true, }, - "value": 1, + "value": 122, }, { "category": "Pet", "configData": { - "id": "Huge Cupcake", + "id": "Titanic Brain Ball", "pt": 1, + "sh": true, }, - "value": 94944897, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Axolotl", + "id": "Huge Meebo The Alien Ball", + "pt": 2, + "sh": true, }, - "value": 1040, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Huge Evolved Pixel Cat", + "id": "Ghostly Cat", "pt": 2, + "sh": true, }, - "value": 928867994, + "value": 198, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Gecko", + "id": "Ancestor Eagle", "pt": 2, + "sh": true, }, - "value": 784, + "value": 214, }, { "category": "Pet", "configData": { - "id": "Pastel Sock Bear", - "pt": 2, + "id": "Huge Telescope Owl", "sh": true, }, - "value": 180000, + "value": 1602, }, { "category": "Pet", "configData": { - "id": "Candycane Unicorn", - "pt": 2, + "id": "Ancestor Eagle", + "pt": 1, + "sh": true, }, - "value": 8700000, + "value": 428, }, { "category": "Pet", "configData": { - "id": "Popcorn Cat", + "id": "Ghostly Bunny", "pt": 2, "sh": true, }, - "value": 160000, + "value": 141, }, { "category": "Pet", "configData": { - "id": "Purple Cobra", + "id": "Huge Runebound Bobcat", "pt": 1, "sh": true, }, - "value": 100, + "value": 12, }, { "category": "Pet", "configData": { - "id": "Queen Piggy", + "id": "Huge Runebound Bobcat", "pt": 2, + "sh": true, }, - "value": 654, + "value": 17, }, { "category": "Pet", "configData": { - "id": "Gummy Fox", + "id": "Huge Telescope Owl", "pt": 1, "sh": true, }, - "value": 30400, + "value": 347, }, { "category": "Pet", "configData": { - "id": "Ugly Duckling", + "id": "Titanic Holographic Axolotl Ball", + "pt": 2, "sh": true, }, - "value": 180, + "value": 1, + }, + { + "category": "Booth", + "configData": { + "id": "Basketball", + }, + "value": 57686, }, { "category": "Pet", "configData": { - "id": "Abyssal Pufferfish", - "pt": 1, + "id": "Huge Starry Eye Bunny", + "pt": 2, + "sh": true, }, - "value": 4948, + "value": 322, }, { "category": "Pet", "configData": { - "id": "Huge Elephant", + "id": "Black Hole Angelus Ball", + "pt": 1, "sh": true, }, - "value": 77879052, + "value": 31, }, { "category": "Pet", "configData": { - "id": "Huge Hydra Dino", - "pt": 2, + "id": "Titanic Holographic Axolotl Ball", + "pt": 1, "sh": true, }, - "value": 3667028507, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Huge Party Dragon", + "id": "Black Hole Angelus Ball", "pt": 2, "sh": true, }, - "value": 14343999938, + "value": 39, }, { "category": "Pet", "configData": { - "id": "Chimera", + "id": "Titanic Brain Ball", + "pt": 2, "sh": true, }, - "value": 900, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Huge Apple Capybara", - "pt": 1, + "id": "Huge Kawaii Dragon Ball", }, - "value": 3990496022, + "value": 58970, }, { "category": "Pet", "configData": { - "id": "Snow Leopard", - "pt": 1, - "sh": true, + "id": "Huge Kawaii Dragon Ball", + "pt": 2, }, - "value": 100000, + "value": 1972, }, { "category": "Pet", "configData": { - "id": "Safari Cat", + "id": "Titanic Glitched Cat Ball", "pt": 2, - "sh": true, }, - "value": 604, + "value": 15, }, { "category": "Pet", "configData": { - "id": "Crystal Deer", + "id": "Huge Kawaii Dragon Ball", "pt": 1, }, - "value": 8137005, + "value": 4639, }, { "category": "Pet", "configData": { - "id": "Panda", - "pt": 2, - "sh": true, + "id": "Huge UV Kitsune Ball", }, - "value": 5000, + "value": 985, }, { "category": "Pet", "configData": { - "id": "Scary Cat", - "pt": 2, - "sh": true, + "id": "Titanic Glitched Cat Ball", }, - "value": 158640, + "value": 1490, }, { "category": "Pet", "configData": { - "id": "Rose Butterfly", - "pt": 2, - "sh": true, + "id": "Titanic Glitched Cat Ball", + "pt": 1, }, - "value": 25000, + "value": 400, }, { "category": "Pet", "configData": { - "id": "Egg Spitting Dino", - "pt": 1, + "id": "Titanic Glitched Cat Ball", "sh": true, }, - "value": 68182, + "value": 75, }, { "category": "Pet", "configData": { - "id": "Nightfall Pegasus", + "id": "Titanic Glitched Cat Ball", "pt": 2, "sh": true, }, - "value": 250000000, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Nutcracker Cat", + "id": "Titanic Glitched Cat Ball", "pt": 1, + "sh": true, }, - "value": 6000000, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Glitched Cat", - "pt": 1, + "id": "Huge Pixel Griffin", + "pt": 2, + "sh": true, }, - "value": 16791, + "value": 243, }, { "category": "Pet", "configData": { - "id": "Pixie Squirrel", + "id": "Huge Pixel Griffin", "pt": 1, "sh": true, }, - "value": 200000, + "value": 1470, }, { "category": "Pet", "configData": { - "id": "Present Dragon", + "id": "Huge Telescope Owl", "pt": 2, + "sh": true, }, - "value": 14000000, + "value": 69, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Rudolf", - "pt": 1, + "id": "Basketball", }, - "value": 3000000, + "value": 11990, }, { "category": "Pet", "configData": { - "id": "Deer", - "pt": 1, + "id": "Ancestor Eagle", "sh": true, }, - "value": 0, + "value": 31, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Huge Slasher Sloth", + "id": "Exclusive Egg 53", }, - "value": 114125539, + "value": 457540, }, { - "category": "Pet", + "category": "XPPotion", "configData": { - "id": "Sabretooth Tiger", + "id": "Tower Defense I", }, - "value": 143, + "value": 154155128, }, { - "category": "Pet", + "category": "Currency", "configData": { - "id": "Frostbyte Snow Ram", - "pt": 1, + "id": "TowerDefenseRubies", }, - "value": 901, + "value": 13607572929, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Jaguar", - "pt": 1, - "sh": true, + "id": "Dark Unit Egg", }, - "value": 20000, + "value": 865767, }, { - "category": "Pet", + "category": "XPPotion", "configData": { - "id": "Sphinx", - "pt": 1, - "sh": true, + "id": "Tower Defense III", }, - "value": 1930577, + "value": 874876, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Sunflower Lion", - "pt": 2, - "sh": true, + "id": "Tech Samurai Axolotl", }, - "value": 90000, + "value": 1988520, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Huge Pastel Sock Dragon", - "sh": true, + "id": "TNT Capybara", }, - "value": 2412082733, + "value": 5879, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Shadow Griffin", - "sh": true, + "id": "Demolition Panda", }, - "value": 462413, + "value": 17100799, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Robot", - "pt": 1, + "id": "Electric Eel", }, - "value": 469, + "value": 583439, }, { - "category": "Pet", + "category": "XPPotion", "configData": { - "id": "Red Fluffy", - "sh": true, + "id": "Tower Defense II", }, - "value": 2871, + "value": 1894462, }, { "category": "Pet", "configData": { - "id": "Huge Giraffe", + "id": "Huge Flamethrower Spider", "pt": 1, - "sh": true, }, - "value": 252778004, + "value": 908, + }, + { + "category": "Tower", + "configData": { + "id": "Safari Monkey", + }, + "value": 114733533, }, { "category": "Pet", "configData": { - "id": "Huge Soul Dragon", + "id": "Totem Bear", "pt": 2, + "sh": true, }, - "value": 15425599740, + "value": 100, }, { "category": "Pet", "configData": { - "id": "Werewolf", - "sh": true, + "id": "Huge Totem Wolf", }, - "value": 3081, + "value": 6532, }, { "category": "Pet", "configData": { - "id": "Fire Horse", - "pt": 2, + "id": "Totem Wolf", "sh": true, }, - "value": 55064, + "value": 1786, }, { "category": "Pet", "configData": { - "cv": 3, - "id": "Huge Chroma Swan", - "pt": 2, + "id": "Titanic Totem Owl", }, - "value": 437609531, + "value": 463, }, { "category": "Pet", "configData": { - "id": "Gingerbread Cat", - "pt": 1, - "sh": true, + "id": "Totem Wolf", }, - "value": 15245994, + "value": 51792, }, { "category": "Pet", "configData": { - "id": "M-2 PROTOTYPE", + "id": "Totem Bear", "sh": true, }, - "value": 14944, + "value": 1121, }, { "category": "Pet", "configData": { - "id": "Ice Snake", - "pt": 2, + "id": "Totem Bear", }, - "value": 1533267, + "value": 32470, }, { "category": "Pet", "configData": { - "id": "Balloon Dragon", - "sh": true, + "id": "Totem Cat", }, - "value": 6930576, + "value": 13583, }, { "category": "Pet", "configData": { - "id": "Ice Snowman", + "id": "Totem Wolf", "pt": 2, - "sh": true, }, - "value": 72400, + "value": 2840, }, { "category": "Pet", "configData": { - "id": "Hooded Monkey", - "sh": true, + "id": "Huge Flamethrower Spider", }, - "value": 936472, + "value": 1793, }, { "category": "Pet", "configData": { - "id": "Grim Reaper", - "pt": 2, - "sh": true, + "id": "Huge Zeus Bear", }, - "value": 82000, + "value": 2069, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Titanic Red Balloon Cat", + "id": "Zeus Bear", }, - "value": 13150856357, + "value": 2106, }, { "category": "Pet", "configData": { - "id": "Relic Goblin", - "pt": 2, + "id": "Titanic Mechanical Griffin", }, - "value": 25912, + "value": 844, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Relic Goblin", - "pt": 1, + "id": "Mechanical Griffin", }, - "value": 5878, + "value": 844, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Quantum Bunny", - "sh": true, + "id": "Ninja Dalmatian", }, - "value": 1279, + "value": 150591570, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Hell Spider", - "pt": 2, - "sh": true, + "id": "Shadow Pegasus", }, - "value": 30000, + "value": 1311238, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Rock Monkey", - "pt": 1, + "id": "Cyborg Kitsune", }, - "value": 490, + "value": 19068571, + }, + { + "category": "Tower", + "configData": { + "id": "Flamethrower Spider", + }, + "value": 10755474, + }, + { + "category": "Tower", + "configData": { + "id": "Comet Dragon", + }, + "value": 819973, }, { "category": "Pet", "configData": { - "id": "Stealth Dragon", - "pt": 2, - "sh": true, + "id": "Huge Totem Cat", }, - "value": 276461876, + "value": 2302, }, { "category": "Pet", "configData": { - "id": "Turtle in a Bucket", + "id": "Totem Bear", "pt": 2, - "sh": true, }, - "value": 100000, + "value": 2109, }, { "category": "Pet", "configData": { - "id": "Fire Horse", - "pt": 1, - "sh": true, + "id": "Huge Flamethrower Spider", + "pt": 2, }, - "value": 600, + "value": 288, }, { "category": "Pet", "configData": { - "id": "Polar Bear", - "pt": 1, - "sh": true, + "id": "Totem Cat", + "pt": 2, }, - "value": 4000000, + "value": 898, }, { "category": "Pet", "configData": { - "id": "Skeleton Cat", + "id": "Totem Cat", "sh": true, }, - "value": 1773, + "value": 517, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Huge Jelly Piggy", + "id": "Frostbyte Griffin", }, - "value": 330419219, + "value": 2614813, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Moose", - "pt": 1, - "sh": true, + "id": "Arcade Angelus", }, - "value": 100000, + "value": 106406, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Sabretooth Tiger", - "pt": 2, - "sh": true, + "id": "Torpedo Cat", }, - "value": 250000, + "value": 653812, }, { "category": "Pet", "configData": { - "id": "Moray Eel", + "id": "Huge Flamethrower Spider", "pt": 1, + "sh": true, }, - "value": 327, + "value": 16, }, { "category": "Pet", "configData": { - "id": "Steampunk Octopus", + "id": "Huge Totem Wolf", + "sh": true, }, - "value": 2255, + "value": 269, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Gummy Bear", - "pt": 2, + "id": "Nightmare Cyclops", }, - "value": 1953, + "value": 35819, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Huge Party Axolotl", + "id": "Nuclear Dominus", }, - "value": 87389443, + "value": 86931, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Chocolate Dog", - "pt": 2, - "sh": true, + "id": "Forged Armadillo", }, - "value": 70000, + "value": 378441, }, { "category": "Pet", "configData": { - "id": "Bejeweled Unicorn", + "id": "Huge Flamethrower Spider", "sh": true, }, - "value": 10776157, + "value": 75, }, { "category": "Pet", "configData": { - "id": "Robber Goblin", + "id": "Totem Wolf", "pt": 2, "sh": true, }, - "value": 30000, + "value": 122, }, { "category": "Pet", "configData": { - "id": "Ancient Dragon", + "id": "Huge Totem Cat", "pt": 2, - "sh": true, }, - "value": 100000, + "value": 128, }, { "category": "Pet", "configData": { - "id": "Cloud Penguin", + "id": "Huge Flamethrower Spider", + "pt": 2, + "sh": true, }, - "value": 589, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Detective Terrier", + "id": "Totem Cat", "pt": 2, "sh": true, }, - "value": 8060, + "value": 28, }, { "category": "Pet", "configData": { - "id": "Reindeer Corgi", - "pt": 1, + "id": "Titanic Totem Owl", + "sh": true, }, - "value": 628000, + "value": 17, }, { "category": "Pet", "configData": { - "id": "Bleebo The Alien", - "sh": true, + "id": "Gargantuan Totem Monkey", }, - "value": 74, + "value": 45, }, { "category": "Pet", "configData": { - "id": "Plague Dragon", - "pt": 1, + "id": "Huge Totem Cat", + "sh": true, }, - "value": 187, + "value": 138, }, { "category": "Pet", "configData": { - "id": "Cotton Candy Unicorn", - "pt": 2, + "id": "Huge Zeus Bear", "sh": true, }, - "value": 87000, + "value": 37, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Hacked Computer", - "sh": true, + "id": "Tower Defense Gift", }, - "value": 72, + "value": 12511197, }, { "category": "Pet", "configData": { - "id": "Huge Exquisite Parrot", - "pt": 1, - "sh": true, + "id": "Huge Ninja Dalmatian", }, - "value": 3289069629, + "value": 297249, }, { "category": "Pet", "configData": { - "id": "Icemortuus", + "id": "Huge Ninja Dalmatian", "pt": 1, - "sh": true, }, - "value": 900000, + "value": 59625, }, { "category": "Pet", "configData": { - "id": "Huge Crystal Dog", + "id": "Huge Ninja Dalmatian", "pt": 2, - "sh": true, }, - "value": 6515991230, + "value": 11777, }, { "category": "Pet", "configData": { - "id": "Huge Jolly Penguin", + "id": "Huge Totem Wolf", "pt": 2, }, - "value": 258632021, + "value": 233, }, { "category": "Pet", "configData": { - "id": "Cyber Raccoon", - "pt": 2, + "id": "Titanic Nuclear Dominus", }, - "value": 63405, + "value": 3377, }, { "category": "Pet", "configData": { - "cv": 6, - "id": "Chroma Phoenix", + "id": "Huge Ninja Dalmatian", + "sh": true, }, - "value": 26037, + "value": 2389, }, { "category": "Pet", "configData": { - "id": "Valentines Cat", + "id": "Titanic Nuclear Dominus", + "pt": 2, }, - "value": 4532026, + "value": 152, }, { "category": "Pet", "configData": { - "id": "Zombie Corgi", + "id": "Titanic Nuclear Dominus", "pt": 1, }, - "value": 762, + "value": 663, }, { "category": "Pet", "configData": { - "id": "Cupid Corgi", + "id": "Huge Safari Monkey", }, - "value": 5665908, + "value": 67127, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Heart Balloon Cat", + "id": "Rich Corgi", }, - "value": 10795708, + "value": 149805, }, { "category": "Pet", "configData": { - "id": "Valentines Cat", - "pt": 2, + "id": "Huge Arcade Angelus", + "pt": 1, }, - "value": 12145444, + "value": 4557, }, { "category": "Pet", "configData": { - "id": "Pink Marshmallow Chick", + "id": "Huge Ninja Dalmatian", "pt": 1, "sh": true, }, - "value": 20000, + "value": 483, }, { "category": "Pet", "configData": { - "id": "Lava Slime", - "pt": 1, - "sh": true, + "id": "Huge Arcade Angelus", }, - "value": 200000, + "value": 22733, }, { "category": "Pet", "configData": { - "id": "Heart Balloon Cat", + "id": "Huge Arcade Angelus", "pt": 2, }, - "value": 33901641, + "value": 919, }, { "category": "Pet", "configData": { - "id": "Circuit Slime", + "id": "Huge Ninja Dalmatian", + "pt": 2, "sh": true, }, "value": 100, @@ -103781,3759 +110134,3723 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get RAP 1`] = ` { "category": "Pet", "configData": { - "id": "Huge Raptor", + "id": "Huge Safari Monkey", + "pt": 1, }, - "value": 105224106, + "value": 13431, }, { "category": "Pet", "configData": { - "id": "Cupid Corgi", + "id": "Huge Ghostly Dragon", + "pt": 2, "sh": true, }, - "value": 12861199, + "value": 29, }, { "category": "Pet", "configData": { - "id": "Huge Evolved Cupcake", + "id": "Gargantuan Totem Monkey", "pt": 2, - "sh": true, }, - "value": 7349360081, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Rave Meebo in a Spaceship", - "pt": 2, + "id": "Titanic Nuclear Dominus", + "sh": true, }, - "value": 9548, + "value": 35, }, { "category": "Pet", "configData": { - "id": "Nuclear Mortuus", + "id": "Huge Safari Monkey", "sh": true, }, - "value": 3501, + "value": 539, }, { "category": "Pet", "configData": { - "id": "Huge Clover Fairy", - "pt": 1, - "sh": true, + "id": "Titanic Totem Owl", + "pt": 2, }, - "value": 4339999969, + "value": 12, }, { "category": "Pet", "configData": { - "id": "Neon Twilight Wolf", + "id": "Titanic Nuclear Dominus", + "pt": 1, "sh": true, }, - "value": 1007843854, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Snow Ram", + "id": "Huge Safari Monkey", "pt": 2, - "sh": true, }, - "value": 18000, + "value": 2658, }, { "category": "Pet", "configData": { - "id": "Domortuus", + "id": "Huge Arcade Angelus", + "sh": true, }, - "value": 789, + "value": 174, }, { "category": "Pet", "configData": { - "id": "Huge Santa Monkey", - "pt": 2, + "id": "Gargantuan Totem Monkey", + "sh": true, }, - "value": 2542099338, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Neon Twilight Tiger", - "pt": 2, + "id": "Huge Safari Monkey", + "pt": 1, "sh": true, }, - "value": 730000000, + "value": 119, }, { "category": "Pet", "configData": { - "id": "Devil Dominus", + "id": "Huge Arcade Angelus", + "pt": 1, + "sh": true, }, - "value": 5148, + "value": 25, }, { "category": "Pet", "configData": { - "id": "Detective Cat", + "id": "Huge Arcade Angelus", + "pt": 2, + "sh": true, }, - "value": 80, + "value": 14, }, { "category": "Pet", "configData": { - "id": "Dino Cat", - "pt": 1, + "id": "Huge Totem Cat", + "pt": 2, "sh": true, }, - "value": 7325280, + "value": 27, }, { "category": "Pet", "configData": { - "id": "Sandcastle Dog", + "id": "Huge Safari Monkey", "pt": 2, "sh": true, }, - "value": 24000, + "value": 30, }, { "category": "Pet", "configData": { - "id": "Cupid Corgi", + "id": "Anglerfish", "pt": 2, "sh": true, }, - "value": 1090390740, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Snow Dog", + "id": "Huge Totem Wolf", + "pt": 2, + "sh": true, }, - "value": 375, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Prison Axolotl", + "id": "Huge Nightmare Cyclops", }, - "value": 73, + "value": 884, }, { "category": "Pet", "configData": { - "id": "Jelly Panda", + "id": "Huge Nightmare Cyclops", + "pt": 1, }, - "value": 6261681, + "value": 373, }, { "category": "Pet", "configData": { - "id": "Pastel Sock Dragon", - "sh": true, + "id": "Huge Nightmare Cyclops", + "pt": 2, }, - "value": 10388, + "value": 150, }, { "category": "Pet", "configData": { - "id": "Hot Air Balloon Dog", - "pt": 1, - "sh": true, + "id": "Huge Blurred Bear Ball", }, - "value": 1, + "value": 54510, }, { "category": "Pet", "configData": { - "id": "Scarecrow Cat", - "pt": 2, - "sh": true, + "id": "Titanic Storm Axolotl Ball", }, - "value": 58960, + "value": 1994, }, { "category": "Pet", "configData": { - "id": "Huge Samurai Dragon", - "sh": true, + "id": "Huge Blurred Bear Ball", + "pt": 1, }, - "value": 1417863314, + "value": 12352, }, { "category": "Pet", "configData": { - "id": "Prince Donkey", + "id": "Huge Blurred Bear Ball", + "pt": 1, "sh": true, }, - "value": 196, + "value": 96, }, { "category": "Pet", "configData": { - "id": "Kraken", + "id": "Huge Blurred Bear Ball", "sh": true, }, - "value": 1184, + "value": 2516, }, { "category": "Pet", "configData": { - "id": "Black Hole Axolotl", + "id": "Huge Blurred Bear Ball", "pt": 2, }, - "value": 11811575, + "value": 501, }, { "category": "Pet", "configData": { - "id": "Ghost", + "id": "Huge Blurred Bear Ball", "pt": 2, "sh": true, }, - "value": 15000, + "value": 16, }, { "category": "Pet", "configData": { - "id": "White Tiger", + "id": "Titanic Starlight Pony", "pt": 2, "sh": true, }, - "value": 197920, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Empyrean Snake", - "pt": 1, - "sh": true, + "id": "Poseidon Axolotl", }, - "value": 249000, + "value": 18853, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Puurple Cat", + "id": "Poseidon Axolotl", + }, + "value": 56173, + }, + { + "category": "Egg", + "configData": { + "id": "Magma Unit Egg", }, - "value": 7779813, + "value": 1085358, }, { "category": "Pet", "configData": { - "id": "Huge Heart Balloon Cat", - "pt": 2, + "id": "Charred Dragon", + "pt": 1, }, - "value": 2601396055, + "value": 8860966, }, { "category": "Pet", "configData": { - "id": "Rave Meebo in a Spaceship", - "sh": true, + "id": "Charred Dragon", }, - "value": 3657, + "value": 42252398, }, { "category": "Pet", "configData": { - "id": "Neon Twilight Dragon", - "sh": true, + "id": "Molten Werelynx", }, - "value": 287520002, + "value": 95985446, }, { "category": "Pet", "configData": { - "id": "Deer", - "pt": 2, + "id": "Charred Bat", }, - "value": 1102, + "value": 28419306, }, { "category": "Pet", "configData": { - "id": "Anime Agony", - "pt": 2, - "sh": true, + "id": "Molten Wisp", }, - "value": 462336004, + "value": 59739750, }, { "category": "Pet", "configData": { - "id": "Huge Bison", + "id": "Charred Bat", "pt": 1, }, - "value": 38887321, + "value": 5567930, }, { "category": "Pet", "configData": { - "id": "Masked Fox", + "id": "Molten Wisp", "pt": 2, }, - "value": 1536, + "value": 6109643, }, { "category": "Pet", "configData": { - "id": "Huge Pirate Parrot", - "pt": 2, - "sh": true, + "id": "Molten Wisp", + "pt": 1, }, - "value": 900000000, + "value": 10071839, }, { "category": "Pet", "configData": { - "id": "Enchanted Elephant", - "pt": 2, - "sh": true, + "id": "Obsidian Griffin", }, - "value": 50000, + "value": 50994635046, }, { "category": "Pet", "configData": { - "id": "Titanic Silver Dragon", + "id": "Ember Vulture", }, - "value": 17887492687, + "value": 163603289061, }, { "category": "Pet", "configData": { - "id": "Titanic Hubert", - "sh": true, + "id": "Molten Gecko", }, - "value": 5299200064, + "value": 32910110, }, { "category": "Pet", "configData": { - "id": "M-10 PROTOTYPE", + "id": "Molten Gecko", + "pt": 1, }, - "value": 1279, + "value": 5815620, }, { "category": "Pet", "configData": { - "id": "Empyrean Axolotl", - "pt": 1, - "sh": true, + "id": "Obsidian Griffin", + "pt": 2, }, - "value": 128040, + "value": 5397557491, }, { "category": "Pet", "configData": { - "id": "Blossom Bunny", + "id": "Molten Werelynx", "pt": 1, - "sh": true, }, - "value": 2000, + "value": 15215358, }, { "category": "Pet", "configData": { - "id": "Beach Ball Monkey", + "id": "Ember Vulture", "pt": 1, }, - "value": 181, + "value": 11022594093, }, { "category": "Pet", "configData": { - "id": "Huge Poseidon Corgi", + "id": "Molten Werelynx", "pt": 2, }, - "value": 140739929, + "value": 9701037, }, { "category": "Pet", "configData": { - "id": "Mosaic Corgi", + "id": "Charred Dragon", "pt": 2, - "sh": true, }, - "value": 435415984, + "value": 5076662, }, { "category": "Pet", "configData": { - "id": "Shadow Bull", - "sh": true, + "id": "Obsidian Griffin", + "pt": 1, }, - "value": 3637, + "value": 3844453349, }, { "category": "Pet", "configData": { - "id": "Mining Dog", + "id": "Ember Vulture", "pt": 2, - "sh": true, }, - "value": 31400, + "value": 12640609393, }, { "category": "Pet", "configData": { - "id": "Sandcastle Cat", + "id": "Molten Gecko", "pt": 2, - "sh": true, }, - "value": 6400, + "value": 4155184, }, { "category": "Pet", "configData": { - "id": "Heart Balloon Cat", - "pt": 2, - "sh": true, + "id": "Dino Corgi", }, - "value": 680474087, + "value": 128179, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Huge Angelus", - "sh": true, + "id": "Dino Corgi", }, - "value": 20999999970, + "value": 607944, }, { "category": "Pet", "configData": { - "id": "Unicorn Kitten", + "id": "Ember Vulture", "pt": 1, "sh": true, }, - "value": 120260, + "value": 44990916, }, { "category": "Pet", "configData": { - "id": "Bearserker", - "pt": 1, - "sh": true, + "id": "Pinata Dragon", }, - "value": 10, + "value": 80157, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Angry Dino", - "pt": 1, + "id": "Pinata Dragon", }, - "value": 1121, + "value": 397669, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Forged Hedgehog", - "sh": true, + "id": "Helicopter Corgi", }, - "value": 11034, + "value": 1691, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Ducky", - "pt": 2, - "sh": true, + "id": "Arcade Meebo in a Spaceship", }, - "value": 30800, + "value": 27840, }, { "category": "Pet", "configData": { - "id": "Nutcracker Cat", - "pt": 2, + "id": "Huge Arcade Meebo in a Spaceship", }, - "value": 139920000, + "value": 27325, }, { "category": "Pet", "configData": { - "id": "Huge Kawaii Cat", - "pt": 1, - "sh": true, + "id": "Titanic Helicopter Corgi", }, - "value": 1599200009, + "value": 1691, }, { "category": "Pet", "configData": { - "id": "Frostbyte Bear", + "id": "Obsidian Griffin", + "pt": 2, + "sh": true, }, - "value": 141, + "value": 27493309, }, { "category": "Pet", "configData": { - "id": "Huge Orca", + "id": "Ember Vulture", "pt": 2, "sh": true, }, - "value": 450000000, + "value": 59755776, }, { "category": "Pet", "configData": { - "id": "Reindeer Cat", - "pt": 2, + "id": "Ember Vulture", + "sh": true, }, - "value": 7945746, + "value": 593521902, }, { "category": "Pet", "configData": { - "id": "Banana", - "pt": 2, + "id": "Obsidian Griffin", + "sh": true, }, - "value": 18199999988, + "value": 178085966, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Titanic Love Lamb", + "id": "Knight Chicken", }, - "value": 15018248968, + "value": 4869371, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Honey Badger", - "sh": true, + "id": "Ronin Piggy", }, - "value": 3, + "value": 74867950, }, { "category": "Pet", "configData": { - "id": "Titanic Nightfall Wolf", + "id": "Charred Bat", + "pt": 2, }, - "value": 13810289834, + "value": 4019865, }, { "category": "Pet", "configData": { - "id": "Frostbyte Bat", - "pt": 2, + "id": "Huge Poseidon Axolotl", }, - "value": 666, + "value": 546, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Monkey", + "id": "Firefossil Wolf", }, - "value": 2230, + "value": 16265626, }, { "category": "Pet", "configData": { - "id": "Melted Rock", - "pt": 2, + "id": "Obsidian Griffin", + "pt": 1, + "sh": true, }, - "value": 30175, + "value": 16142717, }, { "category": "Pet", "configData": { - "id": "Frostbyte Husky", - "pt": 2, + "id": "Charred Dragon", + "sh": true, }, - "value": 483, + "value": 142487, }, { "category": "Pet", "configData": { - "id": "Snowflake Pegasus", - "pt": 2, + "id": "Molten Wisp", + "pt": 1, + "sh": true, }, - "value": 9200000, + "value": 50377, }, { "category": "Pet", "configData": { - "id": "Frostbyte Bear", - "pt": 1, + "id": "Firefossil Wolf", + "pt": 2, }, - "value": 309, + "value": 1928292, }, { "category": "Pet", "configData": { - "id": "Axolotuus", - "pt": 2, + "id": "Molten Gecko", "sh": true, }, - "value": 30958080, + "value": 131768, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Hi-Tech Flamingo", - "pt": 2, + "id": "Old Wizard Cat", }, - "value": 8000, + "value": 911595, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Cyber Agony", + "id": "Detective Bunny", }, - "value": 1109, + "value": 2432307, + }, + { + "category": "Tower", + "configData": { + "id": "DJ Shark", + }, + "value": 12152944, }, { "category": "Pet", "configData": { - "id": "Huge Leprechaun Cat", + "id": "Huge Rich Corgi", "pt": 1, "sh": true, }, - "value": 509911617, + "value": 14, }, { "category": "Pet", "configData": { - "id": "Cyborg Squirrel", - "pt": 1, + "id": "Huge Rich Corgi", }, - "value": 6847, + "value": 1188, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Corrupt Cat", - "sh": true, + "id": "Tower Defense Gift 2", }, - "value": 40176, + "value": 20559524, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Cyborg Corgi", + "id": "Ooze Dragon", }, - "value": 597, + "value": 607572, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Blazing Bat", - "sh": true, + "id": "Umbrella Elephant", }, - "value": 12730580, + "value": 910400, }, { "category": "Pet", "configData": { - "id": "Cyber Dragon", + "id": "Firefossil Wolf", + "pt": 1, }, - "value": 83, + "value": 1302344, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Jelly Monkey", + "id": "Potion Penguin", }, - "value": 9599084, + "value": 730217, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Hi-Tech Tiger", - "pt": 1, - "sh": true, + "id": "Disco Ball Agony", }, - "value": 1500, + "value": 183285, }, { "category": "Pet", "configData": { - "id": "Huge Cool Cat", + "id": "Charred Bat", + "sh": true, }, - "value": 131719173, + "value": 105221, }, { "category": "Pet", "configData": { - "id": "Cyber Slime", + "id": "Charred Dragon", "pt": 1, + "sh": true, }, - "value": 106, + "value": 49345, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Huge Bloo Cat", - "pt": 2, - "sh": true, + "id": "Abyssal Turtle", }, - "value": 6900000000, + "value": 97610, }, { "category": "Pet", "configData": { - "id": "Cyber Axolotl", + "id": "Molten Wisp", + "pt": 2, + "sh": true, }, - "value": 1538, + "value": 32620, }, { "category": "Pet", "configData": { - "id": "Huge Bat", + "id": "Molten Wisp", "sh": true, }, - "value": 278665026, + "value": 220343, }, { "category": "Pet", "configData": { - "id": "Angel Moth", - "pt": 2, + "id": "Fire Kitsune", }, - "value": 331, + "value": 451895, }, { "category": "Pet", "configData": { - "id": "Reindeer Corgi", - "pt": 2, + "id": "(TD) Blurred Owl", }, - "value": 34589596, + "value": 488, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Cyborg Dog", + "id": "Jetpack Cat", }, - "value": 6050, + "value": 48943, }, { "category": "Pet", "configData": { - "id": "Emoji Cat", - "pt": 2, - "sh": true, + "id": "Huge Rich Corgi", + "pt": 1, }, - "value": 181234953, + "value": 606, }, { "category": "Pet", "configData": { - "id": "Huge Plague Dragon", + "id": "Charred Bat", "pt": 2, + "sh": true, }, - "value": 205614659, + "value": 42274, }, { "category": "Pet", "configData": { - "id": "Huge Rich Cat", - "pt": 2, + "id": "Charred Bat", + "pt": 1, "sh": true, }, - "value": 4912799998, + "value": 30456, }, { "category": "Pet", "configData": { - "id": "Cyborg Squirrel", + "id": "(TD) Crystal Giraffe", }, - "value": 142, + "value": 247, }, { "category": "Pet", "configData": { - "id": "Abyssal Fish", - "pt": 2, + "id": "Molten Werelynx", + "sh": true, }, - "value": 413, + "value": 378927, }, { "category": "Pet", "configData": { - "id": "Cyber Bear", + "id": "Molten Werelynx", + "pt": 1, + "sh": true, }, - "value": 179, + "value": 85873, }, { "category": "Pet", "configData": { - "id": "Flower Panda", + "id": "Molten Werelynx", + "pt": 2, "sh": true, }, - "value": 1, + "value": 52877, }, { "category": "Pet", "configData": { - "id": "Frostbyte Deer", - "pt": 2, + "id": "Huge Blurred Owl", }, - "value": 277, + "value": 240897, }, { "category": "Pet", "configData": { - "id": "Melted Slime", - "sh": true, + "id": "Poseidon Axolotl", + "pt": 2, }, - "value": 6500, + "value": 44, }, { "category": "Pet", "configData": { - "id": "Jelly Axolotl", + "id": "Poseidon Axolotl", + "sh": true, }, - "value": 3481574, + "value": 30, }, { "category": "Pet", "configData": { - "id": "Frostbyte Bat", - "pt": 1, + "id": "Huge Arcade Meebo in a Spaceship", + "sh": true, }, - "value": 297, + "value": 515, }, { "category": "Pet", "configData": { - "id": "Tech Cowboy Cat", + "id": "Molten Gecko", + "pt": 2, + "sh": true, }, - "value": 919, + "value": 23558, }, { "category": "Pet", "configData": { - "id": "Frostbyte Bear", + "id": "Molten Gecko", + "pt": 1, "sh": true, }, - "value": 97, + "value": 39424, }, { "category": "Pet", "configData": { - "id": "Cyber Agony", - "pt": 2, + "id": "Titanic Poseidon Axolotl", }, - "value": 275, + "value": 47, }, { "category": "Pet", "configData": { - "id": "Frostbyte Bat", + "id": "Charred Dragon", "pt": 2, "sh": true, }, - "value": 557, + "value": 39336, }, { "category": "Pet", "configData": { - "id": "Jelly Alien", - "pt": 1, + "id": "Huge Poseidon Axolotl", + "sh": true, }, - "value": 1410, + "value": 22, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Monkey", + "id": "Huge Rich Corgi", "pt": 2, }, - "value": 689, + "value": 197, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Elephant", - "pt": 2, + "id": "Huge Frostbyte Griffin", }, - "value": 7430, + "value": 68300, }, { "category": "Pet", "configData": { - "id": "Stargazing Axolotl", + "id": "Huge Poseidon Axolotl", "pt": 2, }, - "value": 22474739, + "value": 21, }, { "category": "Pet", "configData": { - "id": "Fish in a Bucket", + "id": "Fire Kitsune", "pt": 1, - "sh": true, }, - "value": 20000, + "value": 45800, }, { "category": "Pet", "configData": { - "id": "Abyssal Seal", + "id": "Poseidon Axolotl", + "pt": 2, + "sh": true, }, - "value": 1062, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Abyssal Pufferfish", + "id": "Huge Blurred Owl", + "pt": 1, }, - "value": 1813, + "value": 48461, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Cyber Dragon", - "pt": 2, + "id": "Tower Defense Gift 3", }, - "value": 317, + "value": 3448411, }, { "category": "Pet", "configData": { - "id": "Abyssal Seal", + "id": "Fire Kitsune", "pt": 2, }, - "value": 13264, + "value": 46443, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Sloth", + "id": "Huge Frostbyte Griffin", "pt": 1, }, - "value": 10473, + "value": 13594, }, { "category": "Pet", "configData": { - "id": "Frostbyte Snowman", + "id": "Huge Blurred Owl", "pt": 2, }, - "value": 630, + "value": 9524, }, { "category": "Pet", "configData": { - "id": "Tech Griffin", + "id": "Huge Poseidon Axolotl", + "pt": 2, + "sh": true, }, - "value": 1448, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Huge Old Wizard Owl", + "id": "Huge Rich Corgi", + "sh": true, }, - "value": 506523747, + "value": 37, }, { "category": "Pet", "configData": { - "id": "Huge Butterfly", - "pt": 1, + "id": "Huge Obsidian Griffin", }, - "value": 5042407666, + "value": 17768, }, { "category": "Pet", "configData": { - "id": "Cat Magician", + "id": "Huge Frostbyte Griffin", "pt": 2, }, - "value": 4145, + "value": 2686, }, { "category": "Pet", "configData": { - "id": "Pink Marshmallow Chick", - "pt": 1, + "id": "Huge Frostbyte Griffin", + "sh": true, }, - "value": 299, + "value": 524, }, { "category": "Pet", "configData": { - "id": "Tech Camel", - "pt": 2, + "id": "Huge Blurred Owl", + "sh": true, }, - "value": 2623, + "value": 1901, }, { "category": "Pet", "configData": { - "id": "Frostbyte Husky", - "pt": 2, + "id": "Titanic Party Panda", + "pt": 1, "sh": true, }, - "value": 334, + "value": 1, }, { "category": "Pet", "configData": { - "cv": 5, - "id": "Huge Chroma Unicorn", - "pt": 2, + "id": "Titanic Disco Ball Agony", }, - "value": 310098464, + "value": 1970, }, { "category": "Pet", "configData": { - "id": "Abyssal Shark", + "id": "Huge Obsidian Griffin", + "pt": 1, }, - "value": 1356, + "value": 1354, }, { "category": "Pet", "configData": { - "id": "Steampunk Octopus", + "id": "Huge Obsidian Griffin", "pt": 2, }, - "value": 15631, + "value": 1012, }, { "category": "Pet", "configData": { - "id": "Frostbyte Snow Leopard", - "pt": 2, + "id": "Firefossil Wolf", + "pt": 1, + "sh": true, }, - "value": 575, + "value": 24994, }, { "category": "Pet", "configData": { - "id": "Garden Cat", - "pt": 1, + "id": "Titanic Poseidon Axolotl", + "pt": 2, }, - "value": 662, + "value": 2, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Bloo Cat", + "id": "Blurred Owl", }, - "value": 9972465, + "value": 32200, }, { - "category": "Pet", + "category": "Tower", "configData": { - "id": "Huge Warrior Wolf", - "sh": true, + "id": "Crystal Giraffe", }, - "value": 408841310, + "value": 16300, }, { "category": "Pet", "configData": { - "id": "Dragonfruit Dragon", + "id": "Firefossil Wolf", + "pt": 2, + "sh": true, }, - "value": 8370357, + "value": 19001, }, { "category": "Pet", "configData": { - "id": "Tech Goat", + "id": "Huge Jetpack Cat", }, - "value": 239, + "value": 6795, }, { "category": "Pet", "configData": { - "id": "Koi Fish", - "pt": 2, - "sh": true, + "id": "Titanic Disco Ball Agony", + "pt": 1, }, - "value": 29999, + "value": 432, }, { "category": "Pet", "configData": { - "id": "Frostbyte Snowman", + "id": "Huge Frostbyte Griffin", + "pt": 1, + "sh": true, }, - "value": 567, + "value": 116, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Lemur", - "pt": 2, + "id": "Huge Blurred Owl", + "pt": 1, + "sh": true, }, - "value": 659, + "value": 361, }, { "category": "Pet", "configData": { - "id": "Frostbyte Husky", + "id": "Firefossil Wolf", "sh": true, }, - "value": 101, + "value": 45042, }, { "category": "Pet", "configData": { - "id": "Jelly Alien", + "id": "Titanic DJ Shark", }, - "value": 1761, + "value": 441, }, { "category": "Pet", "configData": { - "id": "Ghost Axolotl", - "pt": 2, - "sh": true, + "id": "Huge Jetpack Cat", + "pt": 1, }, - "value": 493031, + "value": 1374, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Flamingo", - "pt": 1, + "id": "Huge Obsidian Griffin", + "sh": true, }, - "value": 1690, + "value": 377, }, { "category": "Pet", "configData": { - "id": "Huge Strawberry Corgi", + "id": "Huge Frostbyte Griffin", "pt": 2, "sh": true, }, - "value": 1498009619, + "value": 24, }, { "category": "Pet", "configData": { - "id": "Frostbyte Fox", + "id": "Huge Jetpack Cat", "pt": 2, }, - "value": 183, + "value": 262, }, { "category": "Pet", "configData": { - "id": "Nuclear Mining Cat", + "id": "Fire Kitsune", "pt": 1, + "sh": true, }, - "value": 10872, + "value": 418, }, { "category": "Pet", "configData": { - "id": "Huge Scary Cat", - "pt": 2, + "id": "Huge Obsidian Griffin", + "pt": 1, + "sh": true, }, - "value": 500114357, + "value": 31, }, { "category": "Pet", "configData": { - "id": "Cyber Bear", + "id": "Fire Kitsune", "pt": 2, "sh": true, }, - "value": 1, + "value": 173, }, { "category": "Pet", "configData": { - "id": "Evil Bat", + "id": "Huge Blurred Owl", "pt": 2, "sh": true, }, - "value": 20194, + "value": 83, }, { "category": "Pet", "configData": { - "id": "Frostbyte Dragon", + "id": "Titanic Disco Ball Agony", + "pt": 2, }, - "value": 1558, + "value": 79, }, { "category": "Pet", "configData": { - "id": "Hellish Axolotl", - "pt": 1, - "sh": true, + "id": "Huge Shadow Pegasus", }, - "value": 2000000, + "value": 39217, }, { "category": "Pet", "configData": { - "id": "Puurple Cat", - "sh": true, + "id": "Huge Shadow Pegasus", + "pt": 1, }, - "value": 20104750, + "value": 3278, }, { "category": "Pet", "configData": { - "id": "Frostbyte Yeti", - "pt": 1, + "id": "Huge Shadow Pegasus", + "pt": 2, }, - "value": 4124, + "value": 658, }, { "category": "Pet", "configData": { - "id": "Mushroom Raccoon", + "id": "Huge Jetpack Cat", + "pt": 2, + "sh": true, }, - "value": 153, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Frostbyte Bat", + "id": "Huge Jetpack Cat", "sh": true, }, - "value": 141, + "value": 55, }, { "category": "Pet", "configData": { - "id": "Ice Bunny", - "pt": 1, + "id": "Titanic Disco Ball Agony", + "sh": true, }, - "value": 23, + "value": 19, }, { "category": "Pet", "configData": { - "id": "Abyssal Dolphin", + "id": "Titanic Disco Ball Agony", + "pt": 1, + "sh": true, }, - "value": 959, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Huge Cupcake Unicorn", + "id": "Titanic Exquisite Elephant", + "pt": 1, + "sh": true, }, - "value": 1196678240, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Abyssal Pufferfish", - "pt": 2, + "id": "Huge Jetpack Cat", + "pt": 1, + "sh": true, }, - "value": 5429, + "value": 11, }, { "category": "Pet", "configData": { - "id": "M-6 PROTOTYPE", + "id": "Huge Obsidian Griffin", + "pt": 2, + "sh": true, }, - "value": 67959, + "value": 15, }, { "category": "Pet", "configData": { - "id": "Huge Orca", - "pt": 1, + "id": "Titanic Poseidon Axolotl", "sh": true, }, - "value": 4019999993, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Frostbyte Yeti", - "pt": 2, - "sh": true, + "id": "Huge Demon", }, - "value": 673, + "value": 39, }, { - "category": "Pet", + "category": "Currency", "configData": { - "id": "Jelly Shiba", + "id": "GymCoins", }, - "value": 5937192, + "value": 4657821020474510, }, { "category": "Pet", "configData": { - "id": "Midnight Axolotl", - "pt": 1, + "id": "Huge Runic Wolf", }, - "value": 567, + "value": 33, }, { "category": "Pet", "configData": { - "id": "Abyssal Fish", + "id": "Huge Hoverboard Dog", }, - "value": 643, + "value": 87, }, { "category": "Pet", "configData": { - "id": "Fluffy Cat", - "pt": 1, + "id": "Huge Holographic Corgi", }, - "value": 363, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Guard Corgi", - "pt": 1, + "id": "Fire Kitsune", "sh": true, }, - "value": 9897238, + "value": 88, }, { "category": "Pet", "configData": { - "id": "Sapphire Carbuncle", - "sh": true, + "id": "Football Tiger", + "pt": 1, }, - "value": 1847, + "value": 17411062, }, { "category": "Pet", "configData": { - "id": "Walrus", + "id": "Boxing Elephant", + "pt": 1, }, - "value": 32, + "value": 7959392, }, { "category": "Pet", "configData": { - "id": "Polar Bear", - "pt": 1, + "id": "Football Tiger", }, - "value": 146, + "value": 272850958, }, { "category": "Pet", "configData": { - "id": "Abyssal Kraken", - "sh": true, + "id": "Boxing Elephant", }, - "value": 10110, + "value": 86433938, }, { "category": "Pet", "configData": { - "id": "Gargoyle Dragon", + "id": "Football Tiger", + "pt": 2, }, - "value": 6125917, + "value": 19818090, }, { "category": "Pet", "configData": { - "id": "Abyssal Fish", - "sh": true, + "id": "Basketball Monkey", }, - "value": 3202, + "value": 68282952, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Elephant", + "id": "Boxing Elephant", + "pt": 2, }, - "value": 4688, + "value": 71728885, }, { "category": "Pet", "configData": { - "id": "Fortress Dog", - "pt": 1, - "sh": true, + "id": "Gym Piggy", }, - "value": 30000, + "value": 805299, }, { "category": "Pet", "configData": { - "id": "Huge Red Fluffy", - "pt": 1, - "sh": true, + "id": "Gym Piggy", + "pt": 2, }, - "value": 9080000009, + "value": 138721, }, { "category": "Pet", "configData": { - "id": "Poison Turtle", + "id": "Gym Shark", }, - "value": 45, + "value": 1492731328, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Happy Rock", - "pt": 2, + "id": "Gym Egg", }, - "value": 962, + "value": 657263, }, { "category": "Pet", "configData": { - "id": "Huge Bee", + "id": "Basketball Monkey", "pt": 2, - "sh": true, }, - "value": 894278190, + "value": 37147491, }, { "category": "Pet", "configData": { - "id": "Frostbyte Deer", + "id": "Basketball Monkey", "pt": 1, }, - "value": 127, + "value": 6766064, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Huge Wizard Westie", + "id": "Exclusive Egg 54", }, - "value": 35094350, + "value": 413952, }, { "category": "Pet", "configData": { - "id": "Huge Happy Computer", + "id": "Super Coral Hydra", }, - "value": 38971880, + "value": 11637, }, { "category": "Pet", "configData": { - "id": "Scary Cat", - "sh": true, + "id": "Huge Super Coral Hydra", }, - "value": 6248, + "value": 2167, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Meerkat", - "pt": 1, + "id": "Super Coral Hydra", + "pt": 2, }, - "value": 3909, + "value": 883, }, { "category": "Pet", "configData": { - "id": "Mining Cat", + "id": "Super Coral Whale", }, - "value": 42914, + "value": 27402, }, { "category": "Pet", "configData": { - "id": "Abyssal Dolphin", - "pt": 2, + "id": "Super Coral Axolotl", }, - "value": 70, + "value": 44246, }, { "category": "Pet", "configData": { - "id": "Camel", + "id": "Huge Super Coral Hydra", "pt": 2, - "sh": true, }, - "value": 10000, + "value": 137, }, { "category": "Pet", "configData": { - "id": "Tech Horse", - "pt": 1, + "id": "Baseball Dolphin", }, - "value": 58988, + "value": 225834611, }, { "category": "Pet", "configData": { - "id": "Cyborg Cat", - "sh": true, + "id": "Huge Gym Corgi", }, - "value": 1363, + "value": 17245, }, { "category": "Pet", "configData": { - "id": "Pink Marshmallow Chick", + "id": "Football Tiger", + "sh": true, }, - "value": 201, + "value": 784380, }, { "category": "Pet", "configData": { - "id": "Sun Agony", - "pt": 1, + "id": "Gym Corgi", }, - "value": 107245, + "value": 160530, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Research Cat", + "id": "Dumbbell", }, - "value": 49, + "value": 131729228753, }, { "category": "Pet", "configData": { - "id": "Cyborg Piggy", - "pt": 1, + "id": "Gym Anteater", }, - "value": 5135, + "value": 7816825236, }, { "category": "Pet", "configData": { - "id": "Cyborg Dog", - "sh": true, + "id": "Soccer Terrier", + "pt": 2, }, - "value": 1472, + "value": 7113451141, }, { "category": "Pet", "configData": { - "id": "Huge Diamond Cat", + "id": "Baseball Dolphin", "pt": 1, }, - "value": 1706183937, + "value": 15439426, }, { "category": "Pet", "configData": { - "id": "Huge Willow Wisp", - "pt": 1, - "sh": true, + "id": "Soccer Terrier", }, - "value": 753035619, + "value": 15049505575, }, { "category": "Pet", "configData": { - "id": "Dalmatian", + "id": "Gym Panda", "pt": 1, }, - "value": 119, + "value": 27057419, }, { "category": "Pet", "configData": { - "id": "Sabretooth Tiger", + "id": "Soccer Terrier", "pt": 1, }, - "value": 48, + "value": 1765813048, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Husky", - "pt": 1, - "sh": true, + "id": "Baseball Dolphin", + "pt": 2, }, - "value": 1, + "value": 18072528, }, { "category": "Pet", "configData": { - "id": "Pineapple Monkey", + "id": "Gym Panda", }, - "value": 81, + "value": 435205141, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Tiger", + "id": "Gym Panda", + "pt": 2, }, - "value": 274, + "value": 42958370, }, { "category": "Pet", "configData": { - "id": "Cyborg Bat", - "pt": 1, + "id": "Gym Anteater", + "pt": 2, }, - "value": 2462, + "value": 3338915934, }, { "category": "Pet", "configData": { - "id": "Tech Camel", - "pt": 1, + "id": "Gym Shark", + "pt": 2, }, - "value": 1286, + "value": 648108589, }, { "category": "Pet", "configData": { - "id": "Stegosaurus", - "pt": 2, + "id": "Huge Gym Corgi", "sh": true, }, - "value": 503, + "value": 724, }, { "category": "Pet", "configData": { - "id": "Quantum Fox", - "pt": 1, + "id": "Huge Boxing Elephant", }, - "value": 6960, + "value": 1603, }, { "category": "Pet", "configData": { - "id": "Cyber Bear", - "pt": 2, + "id": "Gym Shark", + "sh": true, }, - "value": 474, + "value": 8188691, }, { "category": "Pet", "configData": { - "id": "Frostbyte Snowman", + "id": "Gym Shark", + "pt": 2, "sh": true, }, - "value": 5974, + "value": 6208556, }, { "category": "Pet", "configData": { - "id": "Irish Corgi", + "id": "Boxing Elephant", "pt": 1, + "sh": true, }, - "value": 318, + "value": 77270, }, { "category": "Pet", "configData": { - "id": "Fairy Bee", + "id": "Gym Piggy", "sh": true, }, - "value": 635, + "value": 5521, }, { "category": "Pet", "configData": { - "id": "Huge Clover Fairy", + "id": "Gym Corgi", "pt": 2, }, - "value": 542899816, + "value": 13236, }, { "category": "Pet", "configData": { - "id": "Fairy Bee", + "id": "Huge Super Coral Axolotl", "pt": 2, }, - "value": 210, - }, - { - "category": "Pet", - "configData": { - "id": "Evil Computer", - }, - "value": 318, + "value": 176, }, { "category": "Pet", "configData": { - "id": "Holographic Bear", + "id": "Super Coral Axolotl", "pt": 2, }, - "value": 71121, + "value": 2623, }, { "category": "Pet", "configData": { - "id": "Mortuus", + "id": "Super Coral Whale", + "sh": true, }, - "value": 511, + "value": 1167, }, { "category": "Pet", "configData": { - "id": "Anime Corgi", - "pt": 2, + "id": "Huge Super Coral Axolotl", }, - "value": 23389427, + "value": 5413, }, { "category": "Pet", "configData": { - "id": "Tech Scorpion", + "id": "Super Coral Whale", + "pt": 2, }, - "value": 178, + "value": 2068, }, { "category": "Pet", "configData": { - "id": "Huge Clover Unicorn", + "id": "Super Coral Axolotl", + "sh": true, }, - "value": 105119440, + "value": 1383, }, { "category": "Pet", "configData": { - "id": "Tech Cowboy Dog", - "pt": 2, + "id": "Titanic Gym Dragon", }, - "value": 3461, + "value": 960, }, { "category": "Pet", "configData": { - "id": "Giraffe", + "id": "Huge Gym Corgi", "pt": 2, }, - "value": 1519, + "value": 617, }, { "category": "Pet", "configData": { - "id": "Tech Scorpion", + "id": "Football Tiger", + "pt": 1, "sh": true, }, - "value": 679, + "value": 75232, }, { "category": "Pet", "configData": { - "id": "Cyborg Dog", + "id": "Gym Anteater", "pt": 1, }, - "value": 223, + "value": 1007256340, }, { "category": "Pet", "configData": { - "id": "Cyber Axolotl", + "id": "Baseball Dolphin", "pt": 1, + "sh": true, }, - "value": 457, + "value": 97635, }, { "category": "Pet", "configData": { - "id": "Cyber Agony", + "id": "Gym Corgi", "sh": true, }, - "value": 5547, + "value": 601, }, { "category": "Pet", "configData": { - "id": "Cyber Bunny", + "id": "Football Tiger", + "pt": 2, + "sh": true, }, - "value": 48908, + "value": 154148, }, { "category": "Pet", "configData": { - "id": "Huge Pastel Elephant", + "id": "Boxing Elephant", + "pt": 2, + "sh": true, }, - "value": 63232520, + "value": 295858, }, { "category": "Pet", "configData": { - "id": "Hydra Dino", - "pt": 2, + "id": "Boxing Elephant", + "sh": true, }, - "value": 47563, + "value": 304726, }, { "category": "Pet", "configData": { - "id": "Jelly Monkey", + "id": "Basketball Monkey", + "pt": 1, "sh": true, }, - "value": 20266258, + "value": 76421, }, { "category": "Pet", "configData": { - "id": "Tech Scorpion", + "id": "Huge Boxing Elephant", "pt": 1, }, - "value": 618, + "value": 824, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Ender Goat", - "pt": 2, + "id": "Gym Gift", }, - "value": 192, + "value": 27688522, }, { "category": "Pet", "configData": { - "id": "Pastel Sock Bear", + "id": "Huge Super Coral Hydra", + "pt": 2, + "sh": true, }, - "value": 1617, + "value": 33, }, { "category": "Pet", "configData": { - "id": "Huge Blurred Dominus", - "pt": 1, + "id": "Baseball Dolphin", "sh": true, }, - "value": 24700000000, + "value": 706043, }, { "category": "Pet", "configData": { - "id": "Frostbyte Snow Ram", + "id": "Titanic Super Coral Stingray", }, - "value": 627, + "value": 406, }, { "category": "Pet", "configData": { - "id": "Electric Fox", + "id": "Huge Super Coral Hydra", + "sh": true, }, - "value": 561, + "value": 130, }, { "category": "Pet", "configData": { - "id": "Cyber Fox", + "id": "Huge Boxing Elephant", + "pt": 2, }, - "value": 12794, + "value": 210, }, { "category": "Pet", "configData": { - "id": "Tech Puma", - "pt": 2, + "id": "Basketball Monkey", + "sh": true, }, - "value": 4039, + "value": 279750, }, { "category": "Pet", "configData": { - "id": "Tech Cowboy Cat", - "pt": 2, + "id": "Huge Super Coral Axolotl", + "sh": true, }, - "value": 392, + "value": 272, }, { "category": "Pet", "configData": { - "id": "Huge Happy Computer", + "id": "Huge Super Coral Axolotl", "pt": 2, "sh": true, }, - "value": 1190990343, + "value": 11, }, { "category": "Pet", "configData": { - "id": "Cold Firefly", - "pt": 1, + "id": "Gym Piggy", + "pt": 2, + "sh": true, }, - "value": 108, + "value": 412, }, { "category": "Pet", "configData": { - "id": "Inferno Dominus", + "id": "Super Coral Hydra", + "sh": true, }, - "value": 9677276, + "value": 623, }, { "category": "Pet", "configData": { - "id": "Tech Sphinx", + "id": "Gym Scorpion", }, - "value": 674, + "value": 6507362288, }, { "category": "Pet", "configData": { - "id": "Cyber Axolotl", - "pt": 2, + "id": "Soccer Terrier", + "sh": true, }, - "value": 186, + "value": 79269626, }, { "category": "Pet", "configData": { - "id": "Red Woofy", - "pt": 1, + "id": "Baseball Dolphin", + "pt": 2, + "sh": true, }, - "value": 2451, + "value": 121293, }, { "category": "Pet", "configData": { - "id": "King Cobra", - "pt": 2, + "id": "Gym Panda", + "sh": true, }, - "value": 2374, + "value": 1391837, }, { "category": "Pet", "configData": { - "id": "Huge Vibrant Toucan", - "pt": 1, + "id": "Gym Panda", + "pt": 2, + "sh": true, }, - "value": 74944158, + "value": 182898, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Ladybug", + "id": "Gym Scorpion", + "pt": 1, }, - "value": 220, + "value": 875940560, }, { "category": "Pet", "configData": { - "id": "Huge Bat", + "id": "Gym Anteater", "pt": 1, + "sh": true, }, - "value": 291859844, + "value": 7480122, }, { "category": "Pet", "configData": { - "id": "Huge Painted Cat", - "pt": 2, + "id": "Gym Panda", + "pt": 1, "sh": true, }, - "value": 2960000004, + "value": 324797, }, { "category": "Pet", "configData": { - "id": "Titanic Dino Cat", + "id": "Gym Scorpion", "pt": 2, }, - "value": 3216199976, + "value": 2740247449, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Sloth", + "id": "Basketball Monkey", + "pt": 2, "sh": true, }, - "value": 202765, + "value": 186272, }, { "category": "Pet", "configData": { - "id": "Huge Pastel Elephant", + "id": "Gym Anteater", "pt": 2, "sh": true, }, - "value": 8999999785, + "value": 22038466, }, { "category": "Pet", "configData": { - "id": "Kawaii Mushroom Fox", + "id": "Soccer Terrier", + "pt": 1, "sh": true, }, - "value": 2500, + "value": 12349547, }, { "category": "Pet", "configData": { - "id": "Bejeweled Unicorn", + "id": "Soccer Terrier", + "pt": 2, + "sh": true, }, - "value": 3781771, + "value": 39681553, }, { "category": "Pet", "configData": { - "id": "Huge Elephant", + "id": "Gym Anteater", + "sh": true, }, - "value": 32478278, + "value": 44030126, }, { "category": "Pet", "configData": { - "id": "Jelly Monkey", - "pt": 2, + "id": "Gym Shark", + "pt": 1, }, - "value": 30134351, + "value": 208986767, }, { "category": "Pet", "configData": { - "id": "Enchanted Fox", - "pt": 2, + "id": "Gym Shark", + "pt": 1, + "sh": true, }, - "value": 1189, + "value": 1602474, }, { "category": "Pet", "configData": { - "id": "Huge Hi-Tech Tiger", - "pt": 1, + "id": "Huge Gym Shark", }, - "value": 243229477, + "value": 171414, }, { "category": "Pet", "configData": { - "id": "Prison Bunny", + "id": "Super Coral Whale", "pt": 2, + "sh": true, }, - "value": 85, + "value": 78, }, { "category": "Pet", "configData": { - "id": "Huge Abyssal Axolotl", + "id": "Gym Scorpion", + "sh": true, }, - "value": 68829352, + "value": 37416304, }, { "category": "Pet", "configData": { - "id": "Frostbyte Yeti", - "sh": true, + "id": "Gym Corgi", + "pt": 1, }, - "value": 1705, + "value": 15894, }, { "category": "Pet", "configData": { - "id": "Huge Happy Computer", + "id": "Gym Piggy", "pt": 1, - "sh": true, }, - "value": 330651493, + "value": 164325, }, { "category": "Pet", "configData": { - "id": "Frostbyte Deer", + "id": "Gym Scorpion", + "pt": 1, "sh": true, }, - "value": 256, + "value": 6601001, }, { "category": "Pet", "configData": { - "id": "Huge Dino Dog", - "pt": 1, + "id": "Huge Boxing Elephant", + "sh": true, }, - "value": 54550963, + "value": 49, }, { "category": "Pet", "configData": { - "id": "Frostbyte Yeti", - "pt": 1, + "id": "Gym Scorpion", + "pt": 2, "sh": true, }, - "value": 232, + "value": 19363244, }, { "category": "Pet", "configData": { - "id": "Huge Bejeweled Lion", + "id": "Huge Gym Corgi", "pt": 2, + "sh": true, }, - "value": 1467053467, + "value": 28, }, { "category": "Pet", "configData": { - "id": "Huge Disco Ball Dragon", + "id": "Gym Piggy", + "pt": 1, + "sh": true, }, - "value": 67252524, + "value": 1097, }, { "category": "Pet", "configData": { - "id": "Jelly Shiba", - "pt": 2, + "id": "Titanic Gym Dragon", + "sh": true, }, - "value": 17055610, + "value": 23, }, { "category": "Pet", "configData": { - "id": "Wizard Westie", + "id": "Super Coral Hydra", "pt": 2, + "sh": true, }, - "value": 1569, + "value": 24, }, { "category": "Pet", "configData": { - "id": "Haxigator", - "sh": true, + "id": "Huge Gym Panda", }, - "value": 589, + "value": 13424, }, { "category": "Pet", "configData": { - "id": "Frostbyte Deer", - "pt": 1, + "id": "Super Coral Axolotl", + "pt": 2, "sh": true, }, - "value": 18000, + "value": 114, }, { "category": "Pet", "configData": { - "id": "Frostbyte Dragon", - "pt": 1, + "id": "Huge Boxing Elephant", + "pt": 2, + "sh": true, }, - "value": 13831, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Playful Seal", + "id": "Titanic Gym Dragon", "pt": 2, - "sh": true, }, - "value": 3746, + "value": 30, }, { "category": "Pet", "configData": { - "id": "Astronaut Dog", + "id": "Huge Gym Shark", "pt": 1, }, - "value": 44050, + "value": 34340, }, { "category": "Pet", "configData": { - "id": "Amethyst Dragon", + "id": "Huge Gym Shark", + "pt": 2, }, - "value": 9874835, + "value": 6728, }, { "category": "Pet", "configData": { - "id": "Huge Koi Fish", + "id": "Gym Corgi", "pt": 2, + "sh": true, }, - "value": 95337870, + "value": 96, }, { "category": "Pet", "configData": { - "id": "Huge Stargazing Wolf", - "pt": 2, - "sh": true, + "id": "Huge Gym Panda", + "pt": 1, }, - "value": 7800000000, + "value": 927, }, { "category": "Pet", "configData": { - "id": "Frostbyte Dragon", - "pt": 2, + "id": "Huge Gym Shark", + "sh": true, }, - "value": 2313182, + "value": 1395, }, { "category": "Pet", "configData": { - "id": "Huge Glitched Cat", + "id": "Gym Corgi", + "pt": 1, + "sh": true, }, - "value": 822313364, + "value": 166, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Parrot", - "sh": true, + "id": "Titanic Gym Piggy", }, - "value": 17358, + "value": 917, }, { "category": "Pet", "configData": { - "id": "Elegant Eagle", + "id": "Titanic Ghost Axolotl", "pt": 1, }, - "value": 102, + "value": 553, }, { "category": "Pet", "configData": { - "id": "Huge Neon Twilight Wolf", - "pt": 1, + "id": "Gym Dragon", }, - "value": 1600000000, + "value": 61741, }, { "category": "Pet", "configData": { - "id": "Huge Clover Dragon", - "pt": 1, - "sh": true, + "id": "Gargantuan Super Coral Kraken", }, - "value": 14981624217, + "value": 29, }, { "category": "Pet", "configData": { - "id": "Abyssal Parrot", + "id": "Huge Gym Shark", "pt": 1, + "sh": true, }, - "value": 599, + "value": 287, }, { "category": "Pet", "configData": { - "id": "Abyssal Parrot", - "sh": true, + "id": "Huge Gym Panda", + "pt": 2, }, - "value": 622, + "value": 667, }, { "category": "Pet", "configData": { - "id": "Huge Clover Fairy", + "id": "Titanic Gym Piggy", "pt": 1, }, - "value": 324321215, + "value": 176, }, { "category": "Pet", "configData": { - "id": "Huge Elephant", + "id": "Gym Dragon", "pt": 1, }, - "value": 37132249, + "value": 5133, }, { "category": "Pet", "configData": { - "id": "Huge Rave Meebo in a Spaceship", - "pt": 1, + "id": "Gym Dragon", + "pt": 2, }, - "value": 46682086, + "value": 4845, }, { "category": "Pet", "configData": { - "id": "Huge Willow Wisp", - "pt": 1, + "id": "Titanic Ghost Axolotl", }, - "value": 188389311, + "value": 4845, }, { "category": "Pet", "configData": { - "id": "Abyssal Axolotl", - "pt": 1, + "id": "Titanic Super Coral Stingray", + "sh": true, }, - "value": 692, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Cyborg Piggy", + "id": "Titanic Gym Piggy", "pt": 2, }, - "value": 20, + "value": 38, }, { "category": "Pet", "configData": { - "id": "Tech Goat", - "pt": 1, + "id": "Huge Gym Panda", + "sh": true, }, - "value": 3542, + "value": 262, }, { "category": "Pet", "configData": { - "id": "Quantum Dominus", + "id": "Huge Gym Shark", + "pt": 2, "sh": true, }, - "value": 7771, + "value": 53, }, { "category": "Pet", "configData": { - "id": "M-6 PROTOTYPE", - "pt": 2, - "sh": true, + "id": "Gargantuan Forest Wyvern", }, - "value": 28164689, + "value": 80, }, { "category": "Pet", "configData": { - "id": "Cyber Dragon", - "sh": true, + "id": "Titanic Super Coral Stingray", + "pt": 2, }, - "value": 19467, + "value": 14, }, { "category": "Pet", "configData": { - "id": "Tech Horse", - "pt": 1, + "id": "Huge Gym Panda", + "pt": 2, "sh": true, }, - "value": 10000, + "value": 13, }, { "category": "Pet", "configData": { - "id": "Enchanted Deer", + "id": "Huge Boxing Elephant", "pt": 1, "sh": true, }, - "value": 1, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Huge UV Cat", - "pt": 2, + "id": "Titanic Gym Piggy", "sh": true, }, - "value": 4889556930, + "value": 8, }, { "category": "Pet", "configData": { - "id": "Fairy", - "pt": 2, + "id": "Huge Gym Panda", + "pt": 1, + "sh": true, }, - "value": 8510, + "value": 16, }, { "category": "Pet", "configData": { - "id": "Tech Camel", + "id": "Titanic Ghost Axolotl", "sh": true, }, - "value": 1552, + "value": 111, }, { "category": "Pet", "configData": { - "id": "Tech Horse", + "id": "Gym Dragon", "sh": true, }, - "value": 528, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Huge Abyssal Jellyfish", - "pt": 2, + "id": "Huge Pixie Bee", + "sh": true, }, - "value": 95561188, + "value": 14, }, { "category": "Pet", "configData": { - "id": "Titanic Sketch Cat", + "id": "Titanic Ghost Axolotl", "pt": 2, }, - "value": 400000000, + "value": 109, }, { "category": "Pet", "configData": { - "id": "Huge Jelly Axolotl", - "sh": true, + "id": "Huge Scuba Dog", + "pt": 1, }, - "value": 611930056, + "value": 286, }, { "category": "Pet", "configData": { - "id": "Abyssal Axolotl", - "sh": true, + "id": "Huge Scuba Dog", }, - "value": 19134, + "value": 659, }, { "category": "Pet", "configData": { - "id": "Nightmare Bear", - "sh": true, + "id": "Titanic Sun Angelus", }, - "value": 7042579, + "value": 87, }, { "category": "Pet", "configData": { - "id": "Kitsune Fox", - "sh": true, + "id": "Huge Scuba Dog", + "pt": 2, }, - "value": 603, + "value": 103, }, { "category": "Pet", "configData": { - "id": "Abyssal Shark", + "id": "Titanic Sun Angelus", "pt": 2, }, - "value": 531, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Huge Bat", - "pt": 2, + "id": "Titanic Sun Angelus", + "pt": 1, }, - "value": 318817789, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Cyborg Ducky", + "id": "Titanic Ghost Axolotl", + "pt": 1, "sh": true, }, - "value": 33, + "value": 13, }, { "category": "Pet", "configData": { - "id": "Lava Slime", + "id": "Titanic Gym Shark", "pt": 1, }, - "value": 1887, + "value": 400, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Tech Cowboy Dog", - "sh": true, + "id": "Gym Gloves", + "tn": 1, }, - "value": 500, + "value": 604767, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Frost Bear", - "pt": 2, - "sh": true, + "id": "Gym Shake", + "tn": 1, }, - "value": 6627, + "value": 336092, }, { "category": "Pet", "configData": { - "id": "Jelly Axolotl", - "pt": 2, - "sh": true, + "id": "Titanic Gym Shark", }, - "value": 90859026, + "value": 1500, }, { "category": "Pet", "configData": { - "id": "Super Tiger", + "id": "Huge Gym Anteater", "pt": 2, }, - "value": 25929741, + "value": 990, }, { "category": "Pet", "configData": { - "id": "Huge Blurred Dominus", + "id": "Huge Gym Anteater", }, - "value": 2116956096, + "value": 8630, }, { "category": "Pet", "configData": { - "id": "Cyborg Squirrel", + "id": "Titanic Gym Shark", "pt": 2, }, - "value": 627, + "value": 100, }, { "category": "Pet", "configData": { - "id": "Huge Hacker Axolotl", - "pt": 2, + "id": "Huge Gym Anteater", + "pt": 1, }, - "value": 193959929, + "value": 2983, }, { "category": "Pet", "configData": { - "id": "Dolphin", + "id": "Tome Owl", + "pt": 1, }, - "value": 145, + "value": 6372512, }, { "category": "Pet", "configData": { - "id": "Angel Pegasus", + "id": "Scribe Squirrel", "pt": 1, }, - "value": 310, + "value": 10976158, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Ladybug", - "pt": 2, + "id": "Inkwell Wisp", + "pt": 1, }, - "value": 455, + "value": 15454634507, }, { "category": "Pet", "configData": { - "id": "Electric Dino", - "pt": 2, - "sh": true, + "id": "Crystal Jackalope", + "pt": 1, }, - "value": 658039, + "value": 15549318, }, { "category": "Pet", "configData": { - "id": "Corrupt Skeleton", + "id": "Tome Owl", }, - "value": 408, + "value": 60698119, }, { "category": "Pet", "configData": { - "id": "Beach Ball Dolphin", + "id": "Tome Owl", "pt": 2, - "sh": true, }, - "value": 40720, + "value": 4507483, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Tiger", - "sh": true, + "id": "Inkwell Wisp", }, - "value": 23218, + "value": 231384892676, }, { "category": "Pet", "configData": { - "id": "Huge Unicorn", - "sh": true, + "id": "Inkwell Wisp", + "pt": 2, }, - "value": 911088607, + "value": 16646273681, }, { "category": "Pet", "configData": { - "id": "Titanic Love Lamb", - "sh": true, + "id": "Sentry Drake", + "pt": 1, }, - "value": 7520000077, + "value": 16766990, }, { "category": "Pet", "configData": { - "id": "Cyborg Cow", + "id": "Sentry Drake", "pt": 2, }, - "value": 105, + "value": 11175905, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Parrot", - "pt": 1, + "id": "Crystal Jackalope", }, - "value": 1242, + "value": 126057420, }, { "category": "Pet", "configData": { - "id": "Surfboard Axolotl", - "sh": true, + "id": "Scribe Squirrel", + "pt": 2, }, - "value": 75, + "value": 6241990, }, { "category": "Pet", "configData": { - "id": "Blue Fluffy", + "id": "Crystal Jackalope", + "pt": 2, }, - "value": 668, + "value": 9802724, }, { "category": "Pet", "configData": { - "id": "Huge Angel Cat", + "id": "Sentry Drake", }, - "value": 731130220, + "value": 184322668, }, { "category": "Pet", "configData": { - "id": "Tech Cowboy Cat", - "sh": true, + "id": "Scribe Squirrel", }, - "value": 1903, + "value": 60315856, }, { "category": "Pet", "configData": { - "id": "Hooded Monkey", - "pt": 1, - "sh": true, + "id": "Tennis Squirrel", + "pt": 2, }, - "value": 80040, + "value": 73295428, }, { "category": "Pet", "configData": { - "id": "Cyborg Bat", - "sh": true, + "id": "Gym Axolotl", }, - "value": 2513, + "value": 6425012627, }, { "category": "Pet", "configData": { - "id": "Cyber Slime", + "id": "Golf Griffin", "pt": 1, - "sh": true, }, - "value": 1602, + "value": 16867158, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Ghost", - "pt": 2, + "id": "Coach Hippo", + "pt": 1, }, - "value": 51475, + "value": 1514161073, }, { "category": "Pet", "configData": { - "id": "Huge Rainbow Unicorn", + "id": "Golf Griffin", }, - "value": 200068498, + "value": 204019492, }, { "category": "Pet", "configData": { - "id": "Frostbyte Fox", - "pt": 1, - "sh": true, + "id": "Coach Hippo", + "pt": 2, }, - "value": 11, + "value": 6797164305, }, { "category": "Pet", "configData": { - "id": "Huge Gleebo The Alien", - "pt": 1, + "id": "Tennis Squirrel", }, - "value": 3058972143, + "value": 246216032, }, { "category": "Pet", "configData": { - "id": "Mosaic Dove", - "pt": 2, - "sh": true, + "id": "Coach Hippo", }, - "value": 297699202, + "value": 12658248655, }, { "category": "Pet", "configData": { - "id": "Quantum Tiger", + "id": "Golf Griffin", + "pt": 2, }, - "value": 2428, + "value": 156893103, }, { "category": "Pet", "configData": { - "id": "Tech Puma", + "id": "Tennis Squirrel", "pt": 1, }, - "value": 278, + "value": 17351473, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Bread Shiba", - "pt": 2, - "sh": true, + "id": "Buff Gym Egg", }, - "value": 116417, + "value": 432432, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Huge Exquisite Parrot", - "pt": 2, - "sh": true, + "id": "Super Gym Shake", + "tn": 1, }, - "value": 2613600022, + "value": 81526, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Huge Dragon", - "pt": 1, - "sh": true, + "id": "Super Gym Gloves", + "tn": 1, }, - "value": 762880006, + "value": 86131, }, { "category": "Pet", "configData": { - "id": "Lava Slime", + "id": "Gym Axolotl", + "pt": 1, }, - "value": 267, + "value": 854101640, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Cat Magician", - "pt": 1, - "sh": true, + "id": "Weight Plate", }, - "value": 1, + "value": 238606259971, }, { "category": "Pet", "configData": { - "id": "Enchanted Fox", - "sh": true, + "id": "Gym Axolotl", + "pt": 2, }, - "value": 929, + "value": 3252111347, }, { "category": "Pet", "configData": { - "id": "Tech Bull", + "id": "Golf Griffin", + "pt": 1, "sh": true, }, - "value": 1, + "value": 207061, }, { "category": "Pet", "configData": { - "id": "Tech Bull", + "id": "Golf Griffin", "pt": 2, + "sh": true, }, - "value": 1636, + "value": 610493, }, { "category": "Pet", "configData": { - "id": "Huge Bee", + "id": "Tennis Squirrel", + "pt": 1, + "sh": true, }, - "value": 34473064, + "value": 201520, }, { "category": "Pet", "configData": { - "id": "Forged Cyclops", + "id": "Coach Hippo", "pt": 1, + "sh": true, }, - "value": 1438, + "value": 10579398, }, { "category": "Pet", "configData": { - "id": "Tech Cowboy Dog", + "id": "Gym Cow", "pt": 1, }, - "value": 302, + "value": 740909096, }, { "category": "Pet", "configData": { - "id": "Abyssal Fish", + "id": "Gym Beaver", "pt": 1, - "sh": true, }, - "value": 180000, + "value": 176592527, }, { "category": "Pet", "configData": { - "id": "Cyber Agony", + "id": "Gym Cow", "pt": 2, - "sh": true, }, - "value": 32485, + "value": 2718317122, }, { "category": "Pet", "configData": { - "id": "Tiki Dominus", - "pt": 1, + "id": "Gym Cow", }, - "value": 26933, + "value": 5472523048, }, { "category": "Pet", "configData": { - "id": "Tech Sphinx", - "sh": true, + "id": "Gym Beaver", }, - "value": 6642, + "value": 1277052925, }, { "category": "Pet", "configData": { - "cv": 1, - "id": "Huge Chroma Unicorn", + "id": "Gym Beaver", + "pt": 2, }, - "value": 97340942, + "value": 642809024, }, { "category": "Pet", "configData": { - "id": "Ender Bunny", - "pt": 2, + "id": "Golf Griffin", + "sh": true, }, - "value": 229, + "value": 795809, }, { "category": "Pet", "configData": { - "id": "M-10 PROTOTYPE", - "sh": true, + "id": "Gym Cat", }, - "value": 4255, + "value": 653661, }, { "category": "Pet", "configData": { - "id": "Mining Axolotl", - "pt": 1, + "id": "Tennis Squirrel", + "pt": 2, "sh": true, }, - "value": 1, + "value": 334997, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Angelus", - "pt": 1, + "id": "Buff Gym Gift", }, - "value": 967, + "value": 18234351, }, { "category": "Pet", "configData": { - "id": "Huge Elephant", - "pt": 2, + "id": "Archivist Ferret", }, - "value": 76543441, + "value": 32428323, }, { "category": "Pet", "configData": { - "id": "Titanic Kitsune Fox", + "id": "Archivist Ferret", "pt": 2, }, - "value": 13100000032, + "value": 3788467, }, { "category": "Pet", "configData": { - "id": "Mining Dog", + "id": "Archivist Ferret", "pt": 1, - "sh": true, }, - "value": 1, + "value": 6375288, }, { "category": "Pet", "configData": { - "id": "Robot Bee", - "pt": 2, - "sh": true, + "id": "Grimoire Agony", + "pt": 1, }, - "value": 2440, + "value": 4805025729, }, { "category": "Pet", "configData": { - "id": "Abyssal Dolphin", - "pt": 1, + "id": "Grimoire Agony", }, - "value": 62839, + "value": 66553520705, }, { "category": "Pet", "configData": { - "id": "Huge Lumi Axolotl", - "pt": 1, + "id": "Grimoire Agony", + "pt": 2, }, - "value": 311609288, + "value": 5889863152, }, { "category": "Pet", "configData": { - "id": "Chocolate Dog", + "id": "Gym Cat", + "pt": 2, }, - "value": 139, + "value": 128990, }, { "category": "Pet", "configData": { - "id": "Huge Mantis Shrimp", + "id": "Huge Gym Cow", }, - "value": 45431469, + "value": 11282, }, { "category": "Pet", "configData": { - "id": "Huge Willow Wisp", - "pt": 2, + "id": "Gym Beaver", + "sh": true, }, - "value": 347771558, + "value": 7013020, }, { "category": "Pet", "configData": { - "id": "Cyborg Corgi", + "id": "Gym Cat", "sh": true, }, - "value": 245771, + "value": 3956, }, { "category": "Pet", "configData": { - "id": "Abyssal Seal", - "sh": true, + "id": "Gym Unicorn", }, - "value": 400, + "value": 134770, }, { "category": "Pet", "configData": { - "id": "Pristine Snake", - "pt": 1, + "id": "Archivist Ferret", "sh": true, }, - "value": 100000, + "value": 253618, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Bunny", + "id": "Scribe Squirrel", "sh": true, }, - "value": 66, + "value": 450711, }, { "category": "Pet", "configData": { - "id": "Cyber Dragon", - "pt": 1, + "id": "Scribe Squirrel", + "pt": 2, + "sh": true, }, - "value": 1212, + "value": 38605, }, { "category": "Pet", "configData": { - "id": "Huge Jelly Monkey", - "pt": 2, + "id": "Coach Hippo", + "sh": true, }, - "value": 1724492015, + "value": 68704427, }, { "category": "Pet", "configData": { - "id": "M-6 PROTOTYPE", - "pt": 1, + "id": "Gym Axolotl", "sh": true, }, - "value": 7684723, + "value": 36847810, }, { "category": "Pet", "configData": { - "id": "Cyber Fox", - "pt": 1, + "id": "Wise Cat", + "pt": 2, }, - "value": 99, + "value": 1973179, }, { "category": "Pet", "configData": { - "id": "Huge Abyssal Axolotl", - "pt": 1, - }, - "value": 275938880, - }, - { - "category": "Pet", - "configData": { - "id": "Abyssal Pufferfish", - "pt": 1, + "id": "Crystal Jackalope", + "pt": 2, "sh": true, }, - "value": 50, + "value": 62233, }, { "category": "Pet", "configData": { - "id": "Spitting Dino", - "pt": 2, + "id": "Tennis Squirrel", + "sh": true, }, - "value": 22, + "value": 931784, }, { "category": "Pet", "configData": { - "id": "Huge Celestial Dragon", + "id": "Inkwell Wisp", + "sh": true, }, - "value": 158453926, + "value": 801248494, }, { "category": "Pet", "configData": { - "id": "Encrusted Wolf", + "id": "Inkwell Wisp", "pt": 2, + "sh": true, }, - "value": 431, + "value": 63611504, }, { "category": "Pet", "configData": { - "id": "Frostbyte Snow Ram", - "sh": true, + "id": "Quartz Fox", }, - "value": 5334, + "value": 613696, }, { "category": "Pet", "configData": { - "id": "Hell Monkey", + "id": "Wise Cat", "pt": 1, }, - "value": 2112, + "value": 1696524, }, { "category": "Pet", "configData": { - "id": "Huge Love Lamb", + "id": "Grimoire Agony", + "sh": true, }, - "value": 283890049, + "value": 217192259, }, { "category": "Pet", "configData": { - "id": "Hacked Skeleton", - "pt": 1, - "sh": true, + "id": "Wise Cat", }, - "value": 199299, + "value": 21088539, }, { "category": "Pet", "configData": { - "id": "Abyssal Kraken", + "id": "Coach Hippo", "pt": 2, "sh": true, }, - "value": 207125, + "value": 35331841, }, { "category": "Pet", "configData": { - "id": "Evil Gorilla", + "id": "Scribe Squirrel", "pt": 1, - }, - "value": 2078, - }, - { - "category": "Pet", - "configData": { - "id": "Cheetah", "sh": true, }, - "value": 500, + "value": 72083, }, { "category": "Pet", "configData": { - "id": "Cyborg Ducky", - "pt": 1, + "id": "Huge Soccer Terrier", + "pt": 2, }, - "value": 626, + "value": 306, }, { "category": "Pet", "configData": { - "id": "Huge Arcade Cat", + "id": "Grimoire Agony", "pt": 1, + "sh": true, }, - "value": 313324146, + "value": 16773168, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Monkey", + "id": "Grimoire Agony", + "pt": 2, "sh": true, }, - "value": 1421, + "value": 22815442, }, { "category": "Pet", "configData": { - "id": "Mosaic Corgi", + "id": "Huge Tennis Squirrel", + "pt": 2, }, - "value": 5516487, + "value": 1956, }, { "category": "Pet", "configData": { - "id": "Huge Balloon Cat", + "id": "Sentry Drake", "pt": 1, "sh": true, }, - "value": 8284568542, + "value": 92049, }, { "category": "Pet", "configData": { - "cv": 6, - "id": "Huge Chroma Tiger", + "id": "Sentry Drake", "sh": true, }, - "value": 1047778956, + "value": 822670, }, { "category": "Pet", "configData": { - "id": "Tech Cowboy Dog", - "pt": 2, + "id": "Crystal Jackalope", "sh": true, }, - "value": 999, + "value": 682296, }, { "category": "Pet", "configData": { - "id": "Atomic Monkey", - "pt": 2, + "id": "Gym Unicorn", + "sh": true, }, - "value": 8243, + "value": 410, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Tiger", + "id": "Gym Unicorn", "pt": 2, }, - "value": 22805, + "value": 12365, }, { "category": "Pet", "configData": { - "id": "Butterfly Llama", + "id": "Huge Gym Cow", + "sh": true, }, - "value": 957, + "value": 478, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Tiger", - "pt": 2, + "id": "Inkwell Wisp", + "pt": 1, "sh": true, }, - "value": 41400, + "value": 55064437, }, { "category": "Pet", "configData": { - "id": "Huge Tiedye Bunny", - "pt": 2, + "id": "Huge Soccer Terrier", }, - "value": 793888909, + "value": 1869, }, { "category": "Pet", "configData": { - "id": "Tech Scorpion", - "pt": 1, - "sh": true, + "id": "Huge Tennis Squirrel", }, - "value": 21, + "value": 47522, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Blimp Dragon", + "id": "Muscle Helix", }, - "value": 887, + "value": 35242100, }, { "category": "Pet", "configData": { - "id": "Tech Goat", + "id": "Sentry Drake", + "pt": 2, "sh": true, }, - "value": 492, - }, - { - "category": "Pet", - "configData": { - "cv": 2, - "id": "Huge Chroma Tiger", - }, - "value": 63342590, + "value": 75470, }, { "category": "Pet", "configData": { - "id": "Huge Plague Dragon", + "id": "Crystal Jackalope", "pt": 1, + "sh": true, }, - "value": 66538833, + "value": 100201, }, { "category": "Pet", "configData": { - "id": "Abyssal Fish", + "id": "Gym Axolotl", "pt": 2, "sh": true, }, - "value": 8000, + "value": 19267704, }, { "category": "Pet", "configData": { - "id": "Abyssal Shark", + "id": "Gym Cat", "pt": 1, - "sh": true, }, - "value": 1000, + "value": 146661, }, { "category": "Pet", "configData": { - "id": "Huge Mosaic Griffin", - "pt": 1, + "id": "Titanic Gym Cat", }, - "value": 518096237, + "value": 632, }, { "category": "Pet", "configData": { - "id": "Police Cat", - "sh": true, + "id": "Huge Gym Cow", + "pt": 2, }, - "value": 12762304, + "value": 369, }, { "category": "Pet", "configData": { - "id": "Titanic Bread Shiba", + "id": "Huge Soccer Terrier", + "pt": 1, }, - "value": 12855321770, + "value": 965, }, { "category": "Pet", "configData": { - "id": "Abyssal Parrot", + "id": "Gym Beaver", "pt": 1, "sh": true, }, - "value": 18500, + "value": 1346695, }, { "category": "Pet", "configData": { - "id": "Frostbyte Snow Leopard", + "id": "Gym Axolotl", + "pt": 1, "sh": true, }, - "value": 344, + "value": 6138373, }, { "category": "Pet", "configData": { - "id": "Cyber Raccoon", + "id": "Gym Cow", "pt": 1, + "sh": true, }, - "value": 23602, + "value": 5502429, }, { "category": "Pet", "configData": { - "cv": 6, - "id": "Chroma Tiger", - "sh": true, + "id": "Quartz Fox", + "pt": 2, }, - "value": 9185600, + "value": 47023, }, { "category": "Pet", "configData": { - "id": "Astronaut Dog", + "id": "Gym Beaver", + "pt": 2, + "sh": true, }, - "value": 1152, + "value": 5304687, }, { "category": "Pet", "configData": { - "id": "Huge Cupcake Unicorn", + "id": "Tome Owl", "pt": 1, + "sh": true, }, - "value": 2983433633, + "value": 32422, }, { "category": "Pet", "configData": { - "id": "Huge Shadow Dominus", + "id": "Gym Cow", + "sh": true, }, - "value": 42747882, + "value": 31866650, }, { "category": "Pet", "configData": { - "id": "Huge Gamer Shiba", - "pt": 1, + "id": "Gym Cow", + "pt": 2, "sh": true, }, - "value": 1800000, + "value": 16884427, }, { "category": "Pet", "configData": { - "id": "Cyborg Bat", - "pt": 1, + "id": "Gym Cat", + "pt": 2, "sh": true, }, - "value": 1, + "value": 410, }, { "category": "Pet", "configData": { - "id": "Goblin", - "pt": 2, + "id": "Tome Owl", "sh": true, }, - "value": 128540, + "value": 241331, }, { "category": "Pet", "configData": { - "id": "Silver Moose", - "pt": 2, + "id": "Huge Soccer Terrier", "sh": true, }, - "value": 42784, + "value": 70, }, { "category": "Pet", "configData": { - "id": "Cyborg Squirrel", + "id": "Archivist Ferret", "pt": 1, "sh": true, }, - "value": 188, + "value": 33773, }, { "category": "Pet", "configData": { - "id": "Pegasus", + "id": "Archivist Ferret", + "pt": 2, + "sh": true, }, - "value": 739, + "value": 23755, }, { "category": "Pet", "configData": { - "id": "Huge Evolved Hacked Cat", + "id": "Titanic Gym Cat", + "pt": 2, + }, + "value": 28, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gym Cat", "sh": true, }, - "value": 840000003, + "value": 15, }, { "category": "Pet", "configData": { - "id": "Frostbyte Snow Ram", + "id": "Tome Owl", "pt": 2, "sh": true, }, - "value": 10, + "value": 34978, }, { "category": "Pet", "configData": { - "id": "M-6 PROTOTYPE", + "id": "Huge Tennis Squirrel", "pt": 1, }, - "value": 11076, + "value": 9476, }, { "category": "Pet", "configData": { - "id": "Flamingo", + "id": "Gym Unicorn", "pt": 1, - "sh": true, }, - "value": 15003, + "value": 13890, }, { "category": "Pet", "configData": { - "id": "Tech Puma", - "pt": 2, + "id": "Gym Cat", + "pt": 1, "sh": true, }, - "value": 15, + "value": 1970, }, { "category": "Pet", "configData": { - "id": "Cosmic Axolotl", - "pt": 2, - "sh": true, + "id": "Huge Gym Scorpion", }, - "value": 126459465, + "value": 4609, }, { "category": "Pet", "configData": { - "id": "Junkyard Bat", + "id": "Quartz Fox", "pt": 1, }, - "value": 398, + "value": 65587, }, { "category": "Pet", "configData": { - "id": "Cyborg Piggy", - "pt": 2, - "sh": true, + "id": "Huge Coach Hippo", }, - "value": 10001, + "value": 11026, }, { "category": "Pet", "configData": { - "id": "Huge Quantum Agony", + "id": "Huge Soccer Terrier", + "pt": 2, "sh": true, }, - "value": 373236645, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Huge Colorful Wisp", - "pt": 2, + "id": "Huge Soccer Terrier", + "pt": 1, + "sh": true, }, - "value": 393562084, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Huge Atomic Forged Shark", + "id": "Buff Tiger", + "pt": 2, }, - "value": 63394678, + "value": 4490, }, { "category": "Pet", "configData": { - "id": "Frostbyte Snow Leopard", - "pt": 2, + "id": "Huge Tennis Squirrel", "sh": true, }, - "value": 300, + "value": 395, }, { "category": "Pet", "configData": { - "cv": 6, - "id": "Huge Chroma Tiger", + "id": "Huge Scribe Squirrel", }, - "value": 59753439, + "value": 27944, }, { "category": "Pet", "configData": { - "id": "Huge Ghost", - "pt": 2, - "sh": true, + "id": "Titanic Gym Axolotl", }, - "value": 2333071637, + "value": 502, }, { "category": "Pet", "configData": { - "id": "Ender Hades", - "sh": true, + "id": "Buff Tiger", + "pt": 1, }, - "value": 421760, + "value": 5252, }, { "category": "Pet", "configData": { - "id": "Gleebo The Alien", + "id": "Huge Gym Scorpion", "pt": 1, - "sh": true, }, - "value": 2810, + "value": 95, }, { "category": "Pet", "configData": { - "id": "Titanic Kawaii Cat", + "id": "Huge Scribe Squirrel", + "pt": 1, }, - "value": 16483318500, + "value": 1930, }, { "category": "Pet", "configData": { - "id": "Huge Gecko", + "id": "Huge Coach Hippo", "pt": 1, - "sh": true, }, - "value": 3345516820, + "value": 954, }, { "category": "Pet", "configData": { - "id": "Glitched Phoenix", + "id": "Titanic Gym Axolotl", + "pt": 1, }, - "value": 2277, + "value": 91, }, { "category": "Pet", "configData": { - "id": "Strawberry Cow", - "pt": 2, + "id": "Buff Tiger", }, - "value": 4896, + "value": 58783, }, { "category": "Pet", "configData": { - "id": "Huge Blazing Shark", - "pt": 2, + "id": "Huge Coach Hippo", "sh": true, }, - "value": 25000000000, + "value": 203, }, { "category": "Pet", "configData": { - "id": "Huge Bat", - "pt": 1, + "id": "Huge Gym Cow", + "pt": 2, "sh": true, }, - "value": 889630450, + "value": 16, }, { "category": "Pet", "configData": { - "id": "Mosaic Elephant", + "id": "Huge Coach Hippo", "pt": 2, }, - "value": 15463853, + "value": 674, }, { "category": "Pet", "configData": { - "id": "Wicked Empyrean Dominus", - "sh": true, + "id": "Titanic Buff Tiger", }, - "value": 14356, + "value": 76, }, { "category": "Pet", "configData": { - "id": "Huge Robber Cat", - "pt": 1, + "id": "Huge Scribe Squirrel", + "sh": true, }, - "value": 206923942, + "value": 574, }, { "category": "Pet", "configData": { - "id": "Ice Snowman", + "id": "Gym Unicorn", "pt": 1, + "sh": true, }, - "value": 89, + "value": 175, }, { "category": "Pet", "configData": { - "id": "Gingerbread Cat", + "id": "Huge Tennis Squirrel", "pt": 2, + "sh": true, }, - "value": 6925486, + "value": 12, }, { "category": "Pet", "configData": { - "id": "Huge Leprechaun Cat", - "pt": 2, + "id": "Gym Dragon", + "pt": 1, "sh": true, }, - "value": 2935994902, + "value": 28, }, { "category": "Pet", "configData": { - "id": "Surfboard Corgi", + "id": "Wise Cat", + "pt": 1, "sh": true, }, - "value": 4976, + "value": 40220, }, { "category": "Pet", "configData": { - "id": "Huge Mosaic Corgi", + "id": "Gym Dragon", "pt": 2, "sh": true, }, - "value": 1400000000, - }, - { - "category": "Pet", - "configData": { - "id": "Huge Glitched Cat", - "pt": 1, - }, - "value": 943063279, + "value": 32, }, { "category": "Pet", "configData": { - "id": "Prison Monkey", + "id": "Gym Unicorn", + "pt": 2, "sh": true, }, - "value": 88682, + "value": 110, }, { "category": "Pet", "configData": { - "id": "Huge Virus Griffin", + "id": "Huge Scribe Squirrel", + "pt": 2, }, - "value": 91007887, + "value": 1156, }, { "category": "Pet", "configData": { - "id": "Cyber Dragon", - "pt": 1, + "id": "Wise Cat", + "pt": 2, "sh": true, }, - "value": 4512, + "value": 21673, }, { "category": "Pet", "configData": { - "id": "Dog", - "pt": 2, + "id": "Wise Cat", + "sh": true, }, - "value": 3103, + "value": 58197, }, { "category": "Pet", "configData": { - "id": "Scarecrow Cat", + "id": "Huge Tennis Squirrel", "pt": 1, "sh": true, }, - "value": 80000, + "value": 68, }, { "category": "Pet", "configData": { - "id": "Huge Elephant", + "id": "Huge Coach Hippo", "pt": 1, "sh": true, }, - "value": 189985606, + "value": 19, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Cat", + "id": "Huge Scribe Squirrel", + "pt": 2, + "sh": true, }, - "value": 668, + "value": 22, }, { "category": "Pet", "configData": { - "id": "Cyber Axolotl", - "pt": 1, - "sh": true, + "id": "Gargantuan Super Coral Kraken", + "pt": 2, }, - "value": 908, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Evil Minotaur", + "id": "Buff Tiger", "sh": true, }, - "value": 1307, + "value": 18, }, { "category": "Pet", "configData": { - "id": "Huge Party Dragon", + "id": "Huge Gym Scorpion", "pt": 1, "sh": true, }, - "value": 2968945885, + "value": 37, }, { "category": "Pet", "configData": { - "id": "Huge Hi-Tech Tiger", + "id": "Huge Coach Hippo", "pt": 2, + "sh": true, }, - "value": 764207389, + "value": 13, }, { "category": "Pet", "configData": { - "id": "Huge Party Crown Ducky", + "id": "Quartz Fox", "pt": 1, "sh": true, }, - "value": 960000004, + "value": 280, }, { "category": "Pet", "configData": { - "id": "Huge Blurred Dominus", + "id": "Huge Scribe Squirrel", "pt": 1, + "sh": true, }, - "value": 5420379743, + "value": 35, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Elephant", + "id": "Titanic Super Coral Stingray", + "pt": 2, "sh": true, }, "value": 1, @@ -107541,8326 +113858,8510 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get RAP 1`] = ` { "category": "Pet", "configData": { - "id": "Huge Vampire Bat", - "pt": 1, + "id": "Huge Gym Scorpion", + "pt": 2, }, - "value": 181586885, + "value": 29, }, { "category": "Pet", "configData": { - "id": "Glitched Immortuus", + "id": "Quartz Fox", "pt": 2, "sh": true, }, - "value": 25277, + "value": 213, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Ladybug", - "pt": 2, + "id": "Titanic Gym Axolotl", "sh": true, }, - "value": 50000, + "value": 8, }, { "category": "Pet", "configData": { - "id": "Huge Apple Capybara", + "id": "Titanic Gym Axolotl", + "pt": 2, }, - "value": 341518655, + "value": 22, }, { "category": "Pet", "configData": { - "id": "Cool Dragon", - "pt": 2, + "id": "Huge Gym Scorpion", "sh": true, }, - "value": 72000000, + "value": 40, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Desert Cat", - "pt": 2, - "sh": true, + "id": "Barbell", }, - "value": 25000, + "value": 10223, }, { "category": "Pet", "configData": { - "id": "Huge Koi Fish", + "id": "Gargantuan Forest Wyvern", "pt": 2, - "sh": true, }, - "value": 931021625, + "value": 2, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "M-B PROTOTYPE", + "id": "Kraken", "pt": 1, "sh": true, }, - "value": 26152, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Huge Holiday Pegasus", - "pt": 2, + "id": "Quartz Fox", "sh": true, }, - "value": 2000000000, + "value": 133, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Huge Fragmented Dominus", - "pt": 1, + "id": "Barbell", }, - "value": 1376984491, + "value": 1539, }, { "category": "Pet", "configData": { - "id": "Huge Guest Noob", - "pt": 1, + "id": "Huge Gym Scorpion", + "pt": 2, "sh": true, }, - "value": 17000000000, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Starry Owl", + "id": "Buff Tiger", "pt": 1, "sh": true, }, - "value": 29999, + "value": 12, }, { "category": "Pet", "configData": { - "id": "Turtle in a Bucket", - "pt": 1, - "sh": true, + "id": "Titanic Gym Unicorn", }, - "value": 27500, + "value": 1499, }, { "category": "Pet", "configData": { - "id": "Tech Cowboy Dog", - "pt": 1, - "sh": true, + "id": "Huge Gym Beaver", }, - "value": 38903, + "value": 8714, }, { "category": "Pet", "configData": { - "id": "Hamster", - "sh": true, + "id": "Huge Gym Beaver", + "pt": 2, }, - "value": 2589, + "value": 996, }, { "category": "Pet", "configData": { - "id": "Huge Wild Fire Agony", + "id": "Huge Gym Beaver", "pt": 1, - "sh": true, }, - "value": 1859200016, + "value": 2979, }, { "category": "Pet", "configData": { - "id": "Huge Police Cat", + "id": "Titanic Gym Unicorn", "pt": 1, - "sh": true, }, - "value": 5418924845, + "value": 400, + }, + { + "category": "Currency", + "configData": { + "id": "BlockPartyCoins", + }, + "value": 196271637015331, }, { "category": "Pet", "configData": { - "id": "Huge Bearserker", + "id": "Titanic Gym Unicorn", "pt": 2, }, - "value": 561102320, + "value": 100, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Frostbyte Walrus", + "id": "Exclusive Egg 55", }, - "value": 192, + "value": 2064043, }, { "category": "Pet", "configData": { - "id": "Titanic Shadow Griffin", - "sh": true, + "id": "Huge Chill Sloth", }, - "value": 25000000000, + "value": 4033, }, { "category": "Pet", "configData": { - "id": "Circuit Cat", - "pt": 2, + "id": "Chill Bunny", }, - "value": 972, + "value": 8669530472, }, { "category": "Pet", "configData": { - "id": "Frostbyte Penguin", + "id": "Chill Cat", + "pt": 2, }, - "value": 129, + "value": 265331351, }, { "category": "Pet", "configData": { - "id": "Ducky", + "id": "Chill Bunny", "pt": 1, - "sh": true, }, - "value": 0, + "value": 528454407, }, { "category": "Pet", "configData": { - "id": "Happy Computer", + "id": "Chill Sloth", + "pt": 1, }, - "value": 397, + "value": 505717723, }, { "category": "Pet", "configData": { - "id": "Ninja Axolotl", + "id": "Chill Cat", }, - "value": 345, + "value": 6685906731, }, { "category": "Pet", "configData": { - "id": "Cold Ladybug", + "id": "Chill Cat", + "pt": 1, }, - "value": 61, + "value": 397305502, }, { "category": "Pet", "configData": { - "id": "Frostbyte Penguin", - "pt": 2, + "id": "Chill Polar Bear", }, - "value": 18228, + "value": 2375769943, }, { "category": "Pet", "configData": { - "id": "Tropical Flamingo", - "pt": 1, + "id": "Chill Sloth", }, - "value": 641287833, + "value": 8285190360, }, { "category": "Pet", "configData": { - "id": "Huge Night Terror Cat", - "pt": 1, + "id": "Chill Bunny", + "pt": 2, }, - "value": 78413373, + "value": 378463045, }, { "category": "Pet", "configData": { - "id": "Happy Computer", - "pt": 1, + "id": "Chill Sloth", + "pt": 2, }, - "value": 348, + "value": 368134364, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Junkyard Hound", - "pt": 2, - "sh": true, + "id": "Tropical Flower", }, - "value": 40000, + "value": 1402675225, }, { "category": "Pet", "configData": { - "id": "Nuclear Axolotl", + "id": "Huge Chill Sloth", + "pt": 2, }, - "value": 3594, + "value": 583, }, { "category": "Pet", "configData": { - "id": "Evil Computer", - "pt": 2, + "id": "Treasure Golem", }, - "value": 1772, + "value": 53028, }, { "category": "Pet", "configData": { - "id": "Alien Axolotl", + "id": "Treasure Unicorn", "pt": 2, }, - "value": 609, + "value": 6458, }, { "category": "Pet", "configData": { - "id": "Nuclear Squirrel", - "pt": 2, + "id": "Treasure Unicorn", }, - "value": 6201, + "value": 131254, }, { "category": "Pet", "configData": { - "id": "Tech Ninja Giraffe", - "pt": 1, + "id": "Treasure Scorpion", }, - "value": 42, + "value": 200916, }, { "category": "Pet", "configData": { - "id": "Lunar Fox", + "id": "Chill Polar Bear", "pt": 2, }, - "value": 2222, + "value": 130737788, }, { "category": "Pet", "configData": { - "id": "Astronaut Cat", + "id": "Chill Polar Bear", + "pt": 1, }, - "value": 1915, + "value": 162819194, }, { "category": "Pet", "configData": { - "id": "Frostbyte Walrus", - "pt": 2, + "id": "Chill Bunny", + "sh": true, }, - "value": 12479, + "value": 26808546, }, { "category": "Pet", "configData": { - "id": "Nuclear Mortuus", - "pt": 2, + "id": "Coconut Corgi", + "pt": 1, }, - "value": 2305, + "value": 24032915, }, { "category": "Pet", "configData": { - "id": "Sketch Corgi", - "pt": 2, + "id": "Lifeguard Shark", }, - "value": 12311331, + "value": 1405772368, }, { "category": "Pet", "configData": { - "id": "Empyrean Snake", + "id": "Sun Griffin", "pt": 1, }, - "value": 2250, + "value": 13302004, }, { "category": "Pet", "configData": { - "id": "Nuclear Mining Cat", + "id": "Sandcastle Kraken", }, - "value": 29, + "value": 12985141563, }, { "category": "Pet", "configData": { - "id": "Nuclear Axolotl", - "pt": 1, + "id": "Coconut Corgi", }, - "value": 1146, + "value": 328903386, }, { "category": "Pet", "configData": { - "id": "Huge Elephant", - "pt": 2, - "sh": true, + "id": "Sun Griffin", }, - "value": 554959224, + "value": 140886458, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Titanic Banana Cat", - "sh": true, + "id": "Tropical Gift", }, - "value": 23538928296, + "value": 75020250, }, { "category": "Pet", "configData": { - "id": "Evil Computer", + "id": "Huge Chill Sloth", "pt": 1, }, - "value": 289, + "value": 2085, }, { "category": "Pet", "configData": { - "id": "Nuclear Squirrel", - "pt": 1, + "id": "Huge Treasure Golem", }, - "value": 2156, + "value": 8905, }, { "category": "Pet", "configData": { - "id": "Alien Parasite", + "id": "Treasure Scorpion", "pt": 2, }, - "value": 1133, + "value": 9181, }, { "category": "Pet", "configData": { - "id": "Red Fluffy", - "pt": 2, + "id": "Chill Cat", + "sh": true, }, - "value": 7942, + "value": 20539862, }, { "category": "Pet", "configData": { - "id": "Carnival Elephant", - "pt": 2, - "sh": true, + "id": "Splash Angelus", + "pt": 1, }, - "value": 118800, + "value": 4834172, }, { "category": "Pet", "configData": { - "id": "Nuclear Dragon", + "id": "Chill Cat", + "pt": 2, + "sh": true, }, - "value": 1829, + "value": 1269925, }, { "category": "Pet", "configData": { - "id": "Prison Axolotl", - "pt": 1, + "id": "Treasure Unicorn", "sh": true, }, - "value": 2726, + "value": 4124, }, { "category": "Pet", "configData": { - "id": "Meebo The Alien", - "pt": 2, + "id": "Treasure Scorpion", + "sh": true, }, - "value": 179098, + "value": 5967, }, { "category": "Pet", "configData": { - "id": "Evil Ram", + "id": "Huge Treasure Scorpion", + "sh": true, }, - "value": 224, + "value": 1113, }, { "category": "Pet", "configData": { - "id": "Nuclear Agony", + "id": "Huge Treasure Scorpion", }, - "value": 5636, + "value": 27443, }, { "category": "Pet", "configData": { - "id": "Happy Computer", - "pt": 2, + "id": "Lifeguard Shark", + "pt": 1, }, - "value": 372, + "value": 131127751, }, { "category": "Pet", "configData": { - "id": "Thunder Bear", + "id": "Coconut Corgi", + "pt": 2, }, - "value": 6568699, + "value": 19655447, }, { "category": "Pet", "configData": { - "id": "Hot Dog", - "pt": 1, + "id": "Huge Chill Sloth", + "pt": 2, "sh": true, }, - "value": 174065, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Prison Dog", + "id": "Chill Cat", "pt": 1, + "sh": true, }, - "value": 187, + "value": 1465989, }, { "category": "Pet", "configData": { - "id": "Frostbyte Cat", + "id": "Chill Bunny", "pt": 2, + "sh": true, }, - "value": 1567, + "value": 1955637, }, { "category": "Pet", "configData": { - "id": "Huge Kangaroo", - "pt": 2, + "id": "Treasure Golem", "sh": true, }, - "value": 545990738, + "value": 1777, }, { "category": "Pet", "configData": { - "id": "Steampunk Crocodile", + "id": "Huge Chill Sloth", + "sh": true, }, - "value": 1485, + "value": 119, }, { "category": "Pet", "configData": { - "id": "Alien Axolotl", - "pt": 2, + "id": "Chill Bunny", + "pt": 1, "sh": true, }, - "value": 1832, + "value": 2052675, }, { "category": "Pet", "configData": { - "id": "Nuclear Agony", - "pt": 1, + "id": "Lifeguard Shark", + "pt": 2, }, - "value": 210429, + "value": 136506778, }, { "category": "Pet", "configData": { - "id": "Huge Sad Doge", - "pt": 2, + "id": "Sandcastle Kraken", + "pt": 1, }, - "value": 1826723186, + "value": 1208072088, }, { "category": "Pet", "configData": { - "id": "Huge Scary Corgi", - "sh": true, + "id": "Huge Floatie Cat", }, - "value": 235000001, + "value": 18366, }, { "category": "Pet", "configData": { - "id": "Alien Parasite", + "id": "Huge Treasure Golem", "pt": 2, - "sh": true, }, - "value": 768, + "value": 472, }, { "category": "Pet", "configData": { - "id": "Titanic Nightfall Pegasus", + "id": "Huge Chill Bunny", }, - "value": 15801394595, + "value": 8326, }, { "category": "Pet", "configData": { - "id": "Astronaut Cat", - "pt": 2, + "id": "Splash Angelus", }, - "value": 349, + "value": 53359485, }, { "category": "Pet", "configData": { - "id": "Candycane", + "id": "Chill Sloth", "pt": 2, "sh": true, }, - "value": 400000000, + "value": 2013096, }, { "category": "Pet", "configData": { - "id": "M-10 PROTOTYPE", - "pt": 2, + "id": "Sun Griffin", + "sh": true, }, - "value": 4248, + "value": 463766, }, { "category": "Pet", "configData": { - "id": "Comet Cyclops", - "pt": 2, + "id": "Chill Sloth", + "pt": 1, + "sh": true, }, - "value": 11278, + "value": 2053553, }, { "category": "Pet", "configData": { - "id": "Robot Bee", + "id": "Treasure Golem", + "pt": 2, }, - "value": 267, + "value": 3008, }, { "category": "Pet", "configData": { - "id": "Elephant", + "id": "Chill Sloth", + "sh": true, }, - "value": 214, + "value": 25619400, }, { "category": "Pet", "configData": { - "id": "Nuclear Wolf", - "pt": 2, + "id": "Huge Treasure Golem", + "sh": true, }, - "value": 84, + "value": 526, }, { "category": "Pet", "configData": { - "id": "Electric Unicorn", + "id": "Sandcastle Kraken", + "sh": true, }, - "value": 1151, + "value": 56275039, }, { "category": "Pet", "configData": { - "id": "Electric Bear", + "id": "Sandcastle Kraken", "pt": 1, + "sh": true, }, - "value": 17371, + "value": 6684085, }, { "category": "Pet", "configData": { - "id": "Hacker Bear", - "pt": 1, + "id": "Titanic Treasure Mimic", }, - "value": 390, + "value": 1993, }, { "category": "Pet", "configData": { - "id": "Colorful Slime", + "id": "Splash Angelus", "pt": 2, }, - "value": 235, + "value": 5640632, }, { "category": "Pet", "configData": { - "id": "Alien Axolotl", + "id": "Treasure Unicorn", + "pt": 2, "sh": true, }, - "value": 664, + "value": 368, }, { "category": "Pet", "configData": { - "id": "Huge Rave Meebo in a Spaceship", - "sh": true, + "id": "Huge Treasure Scorpion", + "pt": 2, }, - "value": 290449032, + "value": 937, }, { "category": "Pet", "configData": { - "id": "Jelly Alien", - "pt": 2, + "id": "Huge Lifeguard Shark", }, - "value": 592, + "value": 22914, }, { "category": "Pet", "configData": { - "id": "Redstone Cat", + "id": "Huge Floatie Cat", + "pt": 1, }, - "value": 3896026, + "value": 3728, }, { "category": "Pet", "configData": { - "id": "Electric Dragon", + "id": "Sandcastle Kraken", + "pt": 2, }, - "value": 891, + "value": 1285214915, }, { "category": "Pet", "configData": { - "id": "Hydra", - "pt": 2, + "id": "Huge Chill Sloth", + "pt": 1, + "sh": true, }, - "value": 1139, + "value": 30, }, { "category": "Pet", "configData": { - "id": "Huge Fox", - "pt": 1, + "id": "Chill Polar Bear", "sh": true, }, - "value": 7395600046, + "value": 7432875, }, { "category": "Pet", "configData": { - "id": "Pastel Deer", - "pt": 1, - "sh": true, + "id": "Coconut Crab", }, - "value": 42992, + "value": 5714792790, }, { "category": "Pet", "configData": { - "id": "Frostbyte Narwhal", - "pt": 1, + "id": "Sun Griffin", + "pt": 2, }, - "value": 117, + "value": 13803102, }, { "category": "Pet", "configData": { - "id": "Huge Balloon Dragon", + "id": "Treasure Golem", "pt": 2, + "sh": true, }, - "value": 798025917, + "value": 155, }, { "category": "Pet", "configData": { - "id": "Robot Bee", + "id": "Chill Polar Bear", "pt": 1, + "sh": true, }, - "value": 294, + "value": 678403, }, { "category": "Pet", "configData": { - "id": "Astronaut Dog", - "pt": 2, + "id": "Huge Lifeguard Shark", + "pt": 1, }, - "value": 17596, + "value": 4531, }, { "category": "Pet", "configData": { - "id": "A-36", - "pt": 1, + "id": "Lifeguard Shark", + "sh": true, }, - "value": 2570, + "value": 5368720, }, { "category": "Pet", "configData": { - "id": "Blossom Bunny", + "id": "Huge Chill Bunny", "pt": 2, }, - "value": 394, + "value": 350, }, { "category": "Pet", "configData": { - "id": "Matrix Monkey", + "id": "Lifeguard Shark", "pt": 2, + "sh": true, }, - "value": 42491, + "value": 876403, }, { "category": "Pet", "configData": { - "id": "Steampunk Wolf", + "id": "Coconut Crab", + "pt": 1, }, - "value": 702, + "value": 353733951, }, { "category": "Pet", "configData": { - "id": "Meebo The Alien", + "id": "Chill Polar Bear", + "pt": 2, "sh": true, }, - "value": 2, + "value": 741388, }, { "category": "Pet", "configData": { - "id": "Kitsune Fox", + "id": "Huge Chill Bunny", "pt": 1, }, - "value": 1232, + "value": 1623, }, { "category": "Pet", "configData": { - "id": "Meebo in a Spaceship", + "id": "Huge Treasure Golem", "pt": 2, + "sh": true, }, - "value": 47339, + "value": 100, }, { "category": "Pet", "configData": { - "id": "Red Fluffy", + "id": "Huge Floatie Cat", + "pt": 2, }, - "value": 1353, + "value": 727, }, { "category": "Pet", "configData": { - "id": "Amethyst Dragon", + "id": "Coconut Crab", "pt": 2, - "sh": true, }, - "value": 835904008, + "value": 235186602, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Hacker Cat", - "pt": 2, + "id": "Sandcastle", }, - "value": 840, + "value": 100823, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Sandcastle", + }, + "value": 49879, }, { "category": "Pet", "configData": { - "id": "Titanic Neon Agony", + "id": "Huge Chill Cat", + "pt": 1, }, - "value": 22062036734, + "value": 6212, }, { "category": "Pet", "configData": { - "id": "Titanic Fawn", + "id": "Coconut Corgi", + "pt": 1, + "sh": true, }, - "value": 12349327451, + "value": 96585, }, { "category": "Pet", "configData": { - "id": "Electric Bear", - "pt": 2, + "id": "Huge Chill Cat", }, - "value": 18402, + "value": 32102, }, { "category": "Pet", "configData": { - "id": "M-2 PROTOTYPE", + "id": "Huge Lifeguard Shark", "pt": 2, }, - "value": 10273, + "value": 913, }, { "category": "Pet", "configData": { - "id": "Huge Shuriken Corgi", + "id": "Coconut Corgi", "pt": 2, + "sh": true, }, - "value": 87216423, + "value": 105772, }, { "category": "Pet", "configData": { - "id": "Gleebo The Alien", - "pt": 1, + "id": "Titanic Treasure Mimic", + "sh": true, }, - "value": 338, + "value": 37, }, { "category": "Pet", "configData": { - "id": "Silver Stag", + "id": "Treasure Scorpion", "pt": 2, + "sh": true, }, - "value": 40320000, + "value": 476, }, { "category": "Pet", "configData": { - "id": "Alien Parasite", - "pt": 1, + "id": "Coconut Corgi", "sh": true, }, - "value": 327, + "value": 966477, }, { "category": "Pet", "configData": { - "id": "A-36", - "pt": 2, + "id": "Floatie Penguin", }, - "value": 1273, + "value": 71625419620, }, { "category": "Pet", "configData": { - "id": "Huge Patrick Star", + "id": "Floatie Penguin", + "pt": 2, }, - "value": 364032412, + "value": 6275717174, }, { "category": "Pet", "configData": { - "id": "Huge Firefly", + "id": "Floatie Cat", + "pt": 1, }, - "value": 659373473, + "value": 16845021863, }, { "category": "Pet", "configData": { - "id": "Nuclear Mining Dog", + "id": "Floatie Penguin", + "pt": 1, }, - "value": 3707, + "value": 6200614856, }, { "category": "Pet", "configData": { - "id": "Star Surfer", - "pt": 1, + "id": "Floatie Cat", }, - "value": 32777, + "value": 223718092671, }, { "category": "Pet", "configData": { - "id": "Bleebo The Alien", - "pt": 1, - "sh": true, + "id": "Floatie Cat", + "pt": 2, }, - "value": 34655, + "value": 14429359639, }, { "category": "Pet", "configData": { - "id": "Electric Griffin", + "id": "Coconut Crab", "pt": 1, + "sh": true, }, - "value": 28510, + "value": 1436839, }, { "category": "Pet", "configData": { - "id": "M-10 PROTOTYPE", - "pt": 1, + "id": "Floatie Penguin", + "pt": 2, + "sh": true, }, - "value": 4170, + "value": 48234424, }, { "category": "Pet", "configData": { - "id": "Huge Rave Butterfly", + "id": "Coconut Crab", + "pt": 2, "sh": true, }, - "value": 434294586, + "value": 1313767, }, { "category": "Pet", "configData": { - "id": "Nature Dragon", + "id": "Floatie Cat", + "sh": true, }, - "value": 6671508, + "value": 974898773, }, { "category": "Pet", "configData": { - "id": "Colorful Dragon", - "pt": 2, + "id": "Coconut Crab", + "sh": true, }, - "value": 3263, + "value": 18462967, }, { "category": "Pet", "configData": { - "id": "Huge Super Tiger", + "id": "Floatie Penguin", + "pt": 1, + "sh": true, }, - "value": 142945310, + "value": 34768522, }, { "category": "Pet", "configData": { - "id": "Comet Cyclops", + "id": "Lifeguard Shark", + "pt": 1, "sh": true, }, - "value": 3894, + "value": 645741, }, { "category": "Pet", "configData": { - "id": "Huge Fancy Axolotl", - "pt": 1, + "id": "Sandcastle Kraken", + "pt": 2, + "sh": true, }, - "value": 39067744, + "value": 9320153, }, { "category": "Pet", "configData": { - "id": "Gorilla", - "pt": 1, + "id": "Floatie Penguin", "sh": true, }, - "value": 100000, + "value": 322867815, }, { "category": "Pet", "configData": { - "id": "Huge Rich Cat", + "id": "Floatie Cat", "pt": 1, "sh": true, }, - "value": 5446100897, + "value": 87178082, }, { "category": "Pet", "configData": { - "id": "Phoenix", + "id": "Floatie Cat", "pt": 2, "sh": true, }, - "value": 41000, + "value": 102748182, }, { "category": "Pet", "configData": { - "id": "Electric Bear", + "id": "Sun Griffin", + "pt": 2, + "sh": true, }, - "value": 513, + "value": 79319, }, { "category": "Pet", "configData": { - "id": "Electric Unicorn", + "id": "Huge Chill Cat", "pt": 2, }, - "value": 830, + "value": 1313, }, { "category": "Pet", "configData": { - "id": "Astral Axolotl", + "id": "Huge Floatie Penguin", "pt": 1, }, - "value": 374, + "value": 443, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Ladybug", + "id": "Splash Angelus", + "pt": 1, "sh": true, }, - "value": 12800, + "value": 30009, }, { "category": "Pet", "configData": { - "id": "Ender Bunny", - "pt": 2, + "id": "Huge Floatie Penguin", + }, + "value": 2095, + }, + { + "category": "Pet", + "configData": { + "id": "Splash Angelus", "sh": true, }, - "value": 714, + "value": 168334, }, { "category": "Pet", "configData": { - "id": "Galaxy Fox", + "id": "Sun Griffin", "pt": 1, + "sh": true, }, - "value": 661, + "value": 62587, }, { "category": "Pet", "configData": { - "id": "Nine Eyed Lion", - "pt": 1, + "id": "Huge Chill Polar Bear", + "pt": 2, }, - "value": 1292, + "value": 15599, }, { "category": "Pet", "configData": { - "id": "Huge Peppermint Angelus", - "sh": true, + "id": "Huge Floatie Penguin", + "pt": 2, }, - "value": 678920425, + "value": 101, }, { "category": "Pet", "configData": { - "id": "Huge Jester Dog", + "id": "Gargantuan Treasure Angelus", }, - "value": 74801606, + "value": 190, }, { "category": "Pet", "configData": { - "id": "Irish Corgi", + "id": "Huge Chill Polar Bear", }, - "value": 1041, + "value": 95116, }, { "category": "Pet", "configData": { - "id": "Clover Fairy", + "id": "Huge Chill Polar Bear", + "pt": 1, }, - "value": 3314, + "value": 12683, }, { "category": "Pet", "configData": { - "id": "Color Ruins Monkey", + "id": "Splash Angelus", "pt": 2, "sh": true, }, - "value": 5526084, + "value": 38403, }, { "category": "Pet", "configData": { - "id": "Huge Mrs. Claws", - "pt": 1, + "id": "Huge Chill Cat", "sh": true, }, - "value": 1117312977, + "value": 260, }, { "category": "Pet", "configData": { - "id": "Huge Virus Griffin", - "pt": 2, + "id": "Titanic Sun Griffin", }, - "value": 613337387, + "value": 630, }, { "category": "Pet", "configData": { - "id": "Irish Corgi", + "id": "Huge Floatie Penguin", "sh": true, }, - "value": 378, + "value": 15, }, { "category": "Pet", "configData": { - "id": "Star Surfer", - "pt": 2, + "id": "Titanic Sun Griffin", + "pt": 1, }, - "value": 41878, + "value": 75, }, { "category": "Pet", "configData": { - "id": "Huge Tiedye Corgi", - "pt": 2, + "id": "Huge Chill Polar Bear", "sh": true, }, - "value": 999000000, + "value": 1921, }, { "category": "Pet", "configData": { - "id": "Electric Corgi", + "id": "Huge Chill Polar Bear", "pt": 2, "sh": true, }, - "value": 30000, + "value": 347, }, { "category": "Pet", "configData": { - "id": "Humble Rabbit", + "id": "Huge Chill Polar Bear", + "pt": 1, + "sh": true, }, - "value": 1204, + "value": 241, }, { "category": "Pet", "configData": { - "id": "Huge Hot Dog", + "id": "Titanic Sun Griffin", + "pt": 2, }, - "value": 159374551, + "value": 64, }, { "category": "Pet", "configData": { - "id": "Irish Corgi", + "id": "Huge Treasure Scorpion", "pt": 2, "sh": true, }, - "value": 93, + "value": 36, }, { "category": "Pet", "configData": { - "id": "Huge White Balloon Cat", - "sh": true, + "id": "Gargantuan Treasure Angelus", + "pt": 2, }, - "value": 2219223310, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Irish Corgi", + "id": "Huge Chill Cat", "pt": 1, "sh": true, }, - "value": 560, + "value": 59, }, { "category": "Pet", "configData": { - "id": "Haxolotl", + "id": "Titanic Treasure Mimic", + "pt": 2, }, - "value": 1033, + "value": 52, }, { "category": "Pet", "configData": { - "id": "Stargazing Wolf", - "sh": true, + "id": "Titanic Sandcastle Kraken", }, - "value": 9551924, + "value": 1547, }, { "category": "Pet", "configData": { - "id": "Jester Dog", - "sh": true, + "id": "Titanic Starlight Pony", + "pt": 2, }, - "value": 9634159, + "value": 145, }, { "category": "Pet", "configData": { - "id": "Clover Fairy", + "id": "Titanic Sandcastle Kraken", "pt": 1, - "sh": true, }, - "value": 525, + "value": 408, }, { "category": "Pet", "configData": { - "id": "Black Widow", - "pt": 1, + "id": "Titanic Sandcastle Kraken", + "pt": 2, }, - "value": 594, + "value": 105, }, { "category": "Pet", "configData": { - "id": "Dominus Hippomelon", + "id": "Huge Floatie Penguin", "pt": 1, "sh": true, }, - "value": 275, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Huge Anime Unicorn", - "sh": true, + "id": "Huge Splash Angelus", }, - "value": 1962478185, + "value": 191, }, { "category": "Pet", "configData": { - "id": "Shadow Kraken", + "id": "Huge Splash Angelus", "pt": 1, }, - "value": 10581, + "value": 27, }, { "category": "Pet", "configData": { - "id": "Puurple Cat", + "id": "Huge Splash Angelus", "pt": 2, - "sh": true, }, - "value": 661781865, + "value": 15, }, { "category": "Pet", "configData": { - "id": "Super Tiger", + "id": "Huge Splash Angelus", "sh": true, }, - "value": 15379094, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Sketch Cow", - "pt": 2, + "id": "Titanic Sandcastle Kraken", + "pt": 1, + "sh": true, }, - "value": 14795631, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Jelly Alien", + "id": "Huge Floatie Penguin", "pt": 2, "sh": true, }, - "value": 331792, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Egg Spitting Dino", - "pt": 2, + "id": "Huge Panda", }, - "value": 722, + "value": 730, }, { "category": "Pet", "configData": { - "id": "Huge Divinus", - "sh": true, + "id": "Huge Sun Griffin", }, - "value": 347829130, + "value": 611, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Red Woofy", - "pt": 2, + "id": "Sun Angelus", }, - "value": 346728, + "value": 1563, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Huge Rich Cat", - "pt": 2, + "id": "Sun Angelus", }, - "value": 255662850, + "value": 2616, }, { "category": "Pet", "configData": { - "id": "Leprechaun Cat", + "id": "Huge Sun Griffin", "pt": 1, - "sh": true, }, - "value": 87, + "value": 248, }, { "category": "Pet", "configData": { - "id": "Huge Skeleton Cat", + "id": "Huge Sun Griffin", "pt": 2, }, - "value": 262302459, + "value": 96, }, { "category": "Pet", "configData": { - "id": "Gummy Fox", + "id": "Fiddlefern Cat", }, - "value": 754, + "value": 60518246, }, { "category": "Pet", "configData": { - "id": "Huge Jester Dog", - "sh": true, + "id": "Mushroom Frog", + "pt": 1, }, - "value": 405560731, + "value": 12024738, }, { "category": "Pet", "configData": { - "id": "Clover Axolotl", - "pt": 2, - "sh": true, + "id": "Fairy Grasshopper", }, - "value": 10262233, + "value": 309349723, }, { "category": "Pet", "configData": { - "id": "Electric Dragon", - "pt": 2, + "id": "Fiddlefern Cat", + "pt": 1, }, - "value": 2749, + "value": 9425471, }, { "category": "Pet", "configData": { - "id": "Electric Dragon", - "pt": 1, + "id": "Mushroom Frog", }, - "value": 9766, + "value": 78543362, }, { "category": "Pet", "configData": { - "id": "A-36", - "sh": true, + "id": "Fiddlefern Cat", + "pt": 2, }, - "value": 12398, + "value": 6544015, + }, + { + "category": "Misc", + "configData": { + "id": "Summer Block Party Ticket", + }, + "value": 143899886, + }, + { + "category": "Lootbox", + "configData": { + "id": "Sun Angelus Gift", + }, + "value": 977941, }, { "category": "Pet", "configData": { - "id": "Super Tiger", - "pt": 2, - "sh": true, + "id": "Mushroom Dragon", }, - "value": 278625999, + "value": 92771572, }, { "category": "Pet", "configData": { - "id": "Relic Squirrel", + "id": "Fairy Grasshopper", + "pt": 1, }, - "value": 133, + "value": 35565077, }, { "category": "Pet", "configData": { - "id": "Electric Fox", - "sh": true, + "id": "Mushroom Frog", + "pt": 2, }, - "value": 877, + "value": 8524587, }, { "category": "Pet", "configData": { - "id": "Nine Eyed Lion", - "sh": true, + "id": "Blooming Axolotl", }, - "value": 1000, + "value": 888480328994, }, { "category": "Pet", "configData": { - "id": "Robot Bee", + "id": "Blooming Axolotl", "pt": 1, - "sh": true, }, - "value": 2, + "value": 56465190953, }, { "category": "Pet", "configData": { - "id": "Thunder Bear", + "id": "Fairy Grasshopper", "pt": 2, - "sh": true, }, - "value": 115231515, + "value": 21649876, }, { "category": "Pet", "configData": { - "id": "Titanic Lovemelon", + "id": "Mushroom Dragon", "pt": 2, }, - "value": 340000001, + "value": 11764104, }, { "category": "Pet", "configData": { - "id": "Robot", + "id": "Blooming Axolotl", "pt": 2, }, - "value": 855, + "value": 68882726225, }, { "category": "Pet", "configData": { - "id": "Frost Bear", + "id": "Petal Pixie", + "pt": 2, }, - "value": 84, + "value": 166910016229, }, { "category": "Pet", "configData": { - "id": "Mystical Fox", - "pt": 2, - "sh": true, + "id": "Petal Pixie", }, - "value": 25000, + "value": 2426314735293, }, { "category": "Pet", "configData": { - "id": "Galaxy Fox", - "sh": true, + "id": "Petal Pixie", + "pt": 1, }, - "value": 1029, + "value": 146413513806, }, { "category": "Pet", "configData": { - "id": "Huge Angelus", + "id": "Mushroom Dragon", + "pt": 1, }, - "value": 2241328813, + "value": 12442442, }, { "category": "Pet", "configData": { - "id": "Huge Pterodactyl", - "pt": 2, - "sh": true, + "id": "Huge Surfboard Axolotl", }, - "value": 2400000009, + "value": 17667, }, { "category": "Pet", "configData": { - "id": "Ninja Maskot", + "id": "Petal Pixie", "sh": true, }, - "value": 852, + "value": 9228291964, }, { "category": "Pet", "configData": { - "id": "Huge Bearserker", - "sh": true, + "id": "Poofy Pixie", }, - "value": 902022694, + "value": 34541736, }, { "category": "Pet", "configData": { - "id": "Happy Computer", - "pt": 2, - "sh": true, + "id": "Poofy Pixie", + "pt": 1, }, - "value": 6803, + "value": 5783808, }, { "category": "Pet", "configData": { - "id": "M-B PROTOTYPE", + "id": "Poofy Pixie", "pt": 2, - "sh": true, }, - "value": 46198, + "value": 4188757, }, { "category": "Pet", "configData": { - "id": "Huge Whale Shark", + "id": "Huge Chill Turtle", }, - "value": 35833921, + "value": 150793, }, { "category": "Pet", "configData": { - "id": "Elemental Phoenix", - "pt": 2, - "sh": true, + "id": "Flamingo Cat", }, - "value": 10250737, + "value": 74217499952, }, { "category": "Pet", "configData": { - "id": "Mr Krabs", - "pt": 2, + "id": "Coconut Flamingo", }, - "value": 10864436, + "value": 209660001916, }, { "category": "Pet", "configData": { - "id": "Masked Fox", - "pt": 1, - "sh": true, + "id": "Chill Ducky", }, - "value": 680609, + "value": 37177388002, }, { "category": "Pet", "configData": { - "id": "Huge Bearserker", - "pt": 2, - "sh": true, + "id": "Chill Parrot", }, - "value": 100000000, + "value": 129858166083, }, { "category": "Pet", "configData": { - "id": "Huge Super Tiger", - "sh": true, + "id": "Flamingo Hippo", }, - "value": 575411299, + "value": 12378145700, }, { "category": "Pet", "configData": { - "id": "Huge Red Fluffy", - "sh": true, + "id": "Chill Parrot", + "pt": 1, }, - "value": 766356932, + "value": 8029756273, }, { "category": "Pet", "configData": { - "id": "Huge Rich Cat", - "sh": true, + "id": "Chill Parrot", + "pt": 2, }, - "value": 385612231, + "value": 4807449115, }, { "category": "Pet", "configData": { - "id": "Blue Fluffy", - "pt": 2, - "sh": true, + "id": "Chill Turtle", }, - "value": 35280, + "value": 33527141548, }, { "category": "Pet", "configData": { - "id": "Circuit Cat", - "sh": true, + "id": "Chill Turtle", + "pt": 1, }, - "value": 442, + "value": 2321902403, }, { "category": "Pet", "configData": { - "id": "Nuclear Mortuus", + "id": "Chill Ducky", "pt": 1, - "sh": true, }, - "value": 78506, + "value": 2421630935, }, { "category": "Pet", "configData": { - "id": "Huge Whale Shark", - "pt": 1, + "id": "Huge Watermelon Golem", }, - "value": 38833020, + "value": 13249, }, { "category": "Pet", "configData": { - "id": "Huge Clover Fairy", - "sh": true, + "id": "Huge Old Wizard Cat", }, - "value": 609518395, + "value": 64704, }, { "category": "Pet", "configData": { - "id": "Cool Dragon", + "id": "Mushroom Frog", "pt": 1, + "sh": true, }, - "value": 10379940, + "value": 58074, }, { "category": "Pet", "configData": { - "id": "Nightfall Tiger", - "pt": 2, + "id": "Fairy Grasshopper", + "pt": 1, "sh": true, }, - "value": 308000002, + "value": 106922, }, { "category": "Pet", "configData": { - "id": "Hot Cocoa Cat", + "id": "Blooming Axolotl", + "sh": true, }, - "value": 1540, + "value": 3357957040, }, { "category": "Pet", "configData": { - "id": "Robot", + "id": "Poofy Pixie", "sh": true, }, - "value": 104, + "value": 358130, }, { "category": "Pet", "configData": { - "id": "Astronaut Cat", + "id": "Petal Pixie", "pt": 1, + "sh": true, }, - "value": 2498, + "value": 586825495, }, { "category": "Pet", "configData": { - "id": "M-10 PROTOTYPE", - "pt": 1, - "sh": true, + "id": "Rose Pooka", + "pt": 2, }, - "value": 15926, + "value": 26569827, }, { "category": "Pet", "configData": { - "id": "Astral Axolotl", + "id": "Petal Pixie", + "pt": 2, "sh": true, }, - "value": 9996, + "value": 801589725, }, { "category": "Pet", "configData": { - "id": "Cloud Hedgehog", - "pt": 1, + "id": "Blooming Axolotl", + "pt": 2, + "sh": true, }, - "value": 2441, + "value": 356438950, }, { "category": "Pet", "configData": { - "id": "Huge Prison Cat", - "pt": 1, + "id": "Rose Pooka", }, - "value": 46920618, + "value": 179032048, }, { "category": "Pet", "configData": { - "id": "Neon Dog", - "pt": 2, + "id": "Mushroom Frog", "sh": true, }, - "value": 170283200, + "value": 437897, }, { "category": "Pet", "configData": { - "id": "Evil Computer", + "id": "Blooming Axolotl", "pt": 1, "sh": true, }, - "value": 24177, + "value": 231131412, }, { "category": "Pet", "configData": { - "id": "Stargazing Axolotl", + "id": "Huge Watermelon Golem", + "pt": 2, }, - "value": 8933936, + "value": 550, }, { "category": "Pet", "configData": { - "id": "Huge Santa Monkey", + "id": "Rose Pooka", "pt": 1, - "sh": true, }, - "value": 1059200001, + "value": 13494866, }, { "category": "Pet", "configData": { - "id": "Happy Computer", - "pt": 1, - "sh": true, + "id": "Huge Flamingo Cat", }, - "value": 2152, + "value": 113549, }, { "category": "Pet", "configData": { - "id": "Police Dog", + "id": "Fairy Grasshopper", + "sh": true, }, - "value": 439, + "value": 1363329, }, { "category": "Pet", "configData": { - "id": "Classic Bunny", - "pt": 2, - "sh": true, + "id": "Flamingo Cat", + "pt": 1, }, - "value": 124278704, + "value": 5990263657, }, { "category": "Pet", "configData": { - "id": "Quantum Bunny", + "id": "Huge Surfboard Axolotl", + "pt": 1, }, - "value": 339, + "value": 8686, }, { "category": "Pet", "configData": { - "id": "White Tiger", + "id": "Poofy Pixie", "pt": 1, "sh": true, }, - "value": 900, + "value": 36211, }, { "category": "Pet", "configData": { - "id": "Pumpkin Scarecrow", - "sh": true, + "id": "Huge Chill Ducky", + "pt": 2, }, - "value": 3481501, + "value": 9777, }, { "category": "Pet", "configData": { - "id": "Alien Arachnid", + "id": "Huge Surfboard Axolotl", + "pt": 1, "sh": true, }, - "value": 802865, + "value": 131, }, { "category": "Pet", "configData": { - "id": "Stargazing Axolotl", + "id": "Chill Turtle", "pt": 2, - "sh": true, }, - "value": 1833128063, + "value": 1605219811, }, { "category": "Pet", "configData": { - "id": "Cloud Dog", + "id": "Pineapple Dog", }, - "value": 445, + "value": 1338701644, }, { "category": "Pet", "configData": { - "id": "Melted Slime", - "pt": 2, - "sh": true, + "id": "Coconut Flamingo", + "pt": 1, }, - "value": 21360, + "value": 15280121479, }, { "category": "Pet", "configData": { - "id": "Dominus Serpents", + "id": "Coconut Flamingo", "pt": 2, - "sh": true, }, - "value": 7355, + "value": 13813671216, }, { "category": "Pet", "configData": { - "id": "Orange Axolotl", + "id": "Chill Ducky", "pt": 2, - "sh": true, }, - "value": 70091933, + "value": 1533329859, }, { "category": "Pet", "configData": { - "id": "Huge Chroma Lucki", + "id": "Fairy Grasshopper", "pt": 2, "sh": true, }, - "value": 1900000000, + "value": 84625, }, { "category": "Pet", "configData": { - "id": "Gleebo The Alien", + "id": "Fiddlefern Cat", "sh": true, }, - "value": 79, + "value": 455036, }, { "category": "Pet", "configData": { - "id": "Holiday Balloon Cat", + "id": "Fiddlefern Cat", + "pt": 1, + "sh": true, }, - "value": 5374873, + "value": 52238, }, { "category": "Pet", "configData": { - "id": "Evil Computer", + "id": "Chill Parrot", + "pt": 1, "sh": true, }, - "value": 9612, + "value": 36188953, }, { "category": "Pet", "configData": { - "id": "Exquisite Cat", + "id": "Flamingo Cat", "pt": 2, - "sh": true, }, - "value": 3188545571, + "value": 6530693242, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Spider", + "id": "Poofy Pixie", + "pt": 2, "sh": true, }, - "value": 1086408, + "value": 29935, }, { "category": "Pet", "configData": { - "id": "Electric Dragon", + "id": "Huge Old Wizard Cat", "pt": 1, - "sh": true, }, - "value": 20000, + "value": 13030, }, { "category": "Pet", "configData": { - "id": "Werewolf", - "pt": 2, + "id": "Titanic Old Wizard Cat", }, - "value": 2948, + "value": 2154, }, { "category": "Pet", "configData": { - "id": "Dove", - "pt": 1, - "sh": true, + "id": "Beach Ball Capybara", }, - "value": 160000, + "value": 135051539, }, { "category": "Pet", "configData": { - "id": "Butterfly Llama", - "pt": 2, + "id": "Mushroom Dragon", "sh": true, }, - "value": 2947, + "value": 355794, }, { "category": "Pet", "configData": { - "id": "Matrix Monkey", - "pt": 1, + "id": "Chill Ducky", + "sh": true, }, - "value": 16653, + "value": 145098781, }, { "category": "Pet", "configData": { - "id": "Huge Mermaid Cat", - "pt": 2, - "sh": true, + "id": "Huge Chill Ducky", }, - "value": 1119620837, + "value": 244591, }, { "category": "Pet", "configData": { - "id": "Sapphire Carbuncle", + "id": "Huge Surfboard Axolotl", + "sh": true, }, - "value": 1916, + "value": 542, }, { "category": "Pet", "configData": { - "id": "Dog", - "pt": 1, + "id": "Mushroom Dragon", + "pt": 2, + "sh": true, }, - "value": 6074, + "value": 37860, }, { "category": "Pet", "configData": { - "id": "Electric Unicorn", + "id": "Fiddlefern Cat", + "pt": 2, "sh": true, }, - "value": 2480, + "value": 40792, }, { "category": "Pet", "configData": { - "id": "Panther", + "id": "Mushroom Frog", + "pt": 2, + "sh": true, }, - "value": 37, + "value": 42989, }, { "category": "Pet", "configData": { - "id": "Fire Dog", + "id": "Mushroom Dragon", "pt": 1, + "sh": true, }, - "value": 2635, + "value": 43031, }, { "category": "Pet", "configData": { - "id": "Huge Puurple Cat", - "sh": true, + "id": "Huge Old Wizard Cat", + "pt": 2, }, - "value": 3247049615, + "value": 2569, }, { "category": "Pet", "configData": { - "id": "Floatie Ducky", + "id": "Chill Turtle", + "sh": true, }, - "value": 41, + "value": 135067951, }, { "category": "Pet", "configData": { - "id": "Knight Beagle", + "id": "Flamingo Hippo", "pt": 1, }, - "value": 541, + "value": 1098396454, }, { "category": "Pet", "configData": { - "id": "Electric Corgi", - "sh": true, + "id": "Huge Chill Parrot", }, - "value": 176, + "value": 189953, }, { "category": "Pet", "configData": { - "id": "Melted Rock", - "pt": 1, - "sh": true, + "id": "Pineapple Dog", + "pt": 2, }, - "value": 99999, + "value": 138982848, }, { "category": "Pet", "configData": { - "id": "Huge Mermaid Cat", + "id": "Huge Chill Ducky", "pt": 1, - "sh": true, }, - "value": 554390368, + "value": 48993, }, { "category": "Pet", "configData": { - "id": "Huge Pterodactyl", - "pt": 1, + "id": "Huge Old Wizard Cat", "sh": true, }, - "value": 1796000001, + "value": 517, }, { "category": "Pet", "configData": { - "id": "Hippo", + "id": "Coconut Flamingo", + "pt": 2, + "sh": true, }, - "value": 165, + "value": 124054281, }, { "category": "Pet", "configData": { - "id": "Neon Twilight Tiger", + "id": "Chill Parrot", "sh": true, }, - "value": 2698203415, + "value": 570229682, }, { "category": "Pet", "configData": { - "id": "Huge Empyrean Agony", - "pt": 2, + "id": "Coconut Flamingo", "sh": true, }, - "value": 2000000000, + "value": 1041523633, }, { "category": "Pet", "configData": { - "id": "Huge Santa Dragon", + "id": "Chill Ducky", + "pt": 1, "sh": true, }, - "value": 890400009, + "value": 9801488, }, { "category": "Pet", "configData": { - "id": "Evil Deer", - "pt": 1, + "id": "Chill Ducky", + "pt": 2, "sh": true, }, - "value": 375, + "value": 7756614, }, { "category": "Pet", "configData": { - "id": "Huge Kawaii Tiger", + "id": "Chill Turtle", "pt": 1, + "sh": true, }, - "value": 2520164124, + "value": 9756340, }, { "category": "Pet", "configData": { - "id": "Poseidon Dog", + "id": "Huge Surfboard Axolotl", "pt": 2, - "sh": true, }, - "value": 37200, + "value": 2524, }, { "category": "Pet", "configData": { - "id": "Mining Mole", + "id": "Flamingo Hippo", "pt": 2, }, - "value": 11427, + "value": 1300471500, }, { "category": "Pet", "configData": { - "id": "Huge Fire Horse", - "pt": 2, + "id": "Flamingo Cat", + "sh": true, }, - "value": 1955777976, + "value": 380745644, }, { "category": "Pet", "configData": { - "id": "Nuclear Axolotl", - "sh": true, + "id": "Huge Chill Parrot", + "pt": 1, }, - "value": 1032, + "value": 13445, }, { "category": "Pet", "configData": { - "id": "Ice Snowman", + "id": "Huge Watermelon Golem", + "pt": 1, }, - "value": 324, + "value": 2709, }, { "category": "Pet", "configData": { - "id": "Monkey", + "id": "Beach Ball Capybara", "pt": 1, "sh": true, }, - "value": 675999, + "value": 64896, }, { "category": "Pet", "configData": { - "id": "Huge Graffiti Raccoon", - "pt": 2, + "id": "Palace Pooka", }, - "value": 1075402255, + "value": 5213171, }, { "category": "Pet", "configData": { - "id": "Huge Firefly", + "id": "Huge Flamingo Hippo", + }, + "value": 11169, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Old Wizard Cat", "pt": 1, }, - "value": 1059815072, + "value": 467, }, { "category": "Pet", "configData": { - "id": "Titanic Sock Monkey", + "id": "Huge Chill Turtle", + "pt": 1, }, - "value": 12672862815, + "value": 30257, }, { "category": "Pet", "configData": { - "id": "Good vs Evil Dragon", + "id": "Beach Ball Capybara", + "pt": 1, + }, + "value": 12017725, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Parrot", "pt": 2, }, - "value": 925, + "value": 10083, }, { "category": "Pet", "configData": { - "id": "Gummy Fox", - "sh": true, + "id": "Pineapple Dog", + "pt": 1, }, - "value": 6358, + "value": 118101393, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Husky", + "id": "Titanic Old Wizard Cat", "pt": 2, - "sh": true, }, - "value": 9118, + "value": 89, }, { "category": "Pet", "configData": { - "id": "Blue Fish", + "id": "Huge Chill Turtle", "pt": 2, }, - "value": 184, + "value": 6011, }, { "category": "Pet", "configData": { - "id": "Meebo in a Spaceship", + "id": "Chill Parrot", + "pt": 2, "sh": true, }, - "value": 1151693, + "value": 27701475, }, { "category": "Pet", "configData": { - "id": "Stealth Cat", + "id": "Titanic Surfboard Corgi", + }, + "value": 2130, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Turtle", "pt": 2, "sh": true, }, - "value": 450260479, + "value": 9202722, }, { "category": "Pet", "configData": { - "id": "Puma", + "id": "Huge Old Wizard Cat", + "pt": 1, + "sh": true, }, - "value": 265, + "value": 105, }, { "category": "Pet", "configData": { - "id": "Huge Lunar Moth", + "id": "Coconut Flamingo", "pt": 1, "sh": true, }, - "value": 1187183384, + "value": 93216812, }, { "category": "Pet", "configData": { - "id": "Huge Jester Dog", + "id": "Huge Flamingo Cat", "pt": 2, - "sh": true, }, - "value": 8256775394, + "value": 4540, }, { "category": "Pet", "configData": { - "id": "Lunar Deer", + "id": "Huge Flamingo Hippo", "pt": 1, }, - "value": 2619045, + "value": 2151, }, { "category": "Pet", "configData": { - "id": "Storm Griffin", + "id": "Palace Pooka", + "pt": 1, }, - "value": 532, + "value": 660815, }, { "category": "Pet", "configData": { - "id": "Titanic Dominus Astra", - "sh": true, + "id": "Huge Mushroom Dragon", + "pt": 1, }, - "value": 2000000000, + "value": 4484, }, { "category": "Pet", "configData": { - "id": "Forged Hedgehog", + "id": "Palace Pooka", "pt": 2, }, - "value": 1235, + "value": 625150, }, { "category": "Pet", "configData": { - "id": "Forged Cyclops", + "id": "Huge Flamingo Hippo", "pt": 2, }, - "value": 1193, + "value": 437, }, { "category": "Pet", "configData": { - "id": "Forged Robot", - "pt": 1, + "id": "Beach Ball Capybara", + "pt": 2, }, - "value": 3484, + "value": 13912704, }, { "category": "Pet", "configData": { - "id": "Rose Butterfly", - "pt": 1, + "id": "Huge Flamingo Hippo", + "sh": true, }, - "value": 4726, + "value": 88, }, { "category": "Pet", "configData": { - "id": "Poseidon Dog", + "id": "Flamingo Cat", "pt": 1, + "sh": true, }, - "value": 666, + "value": 39874924, }, { "category": "Pet", "configData": { - "id": "Forged Robot", + "id": "Titanic Surfboard Corgi", + "pt": 2, }, - "value": 1733, + "value": 52, }, { "category": "Pet", "configData": { - "id": "Forged Cyclops", + "id": "Titanic Pineapple Dog", }, - "value": 455, + "value": 3052, }, { "category": "Pet", "configData": { - "id": "Huge Slasher Sloth", - "sh": true, + "id": "Huge Mushroom Dragon", }, - "value": 4395891746, + "value": 56210, }, { "category": "Pet", "configData": { - "id": "Huge Exquisite Cat", + "id": "Huge Watermelon Golem", "sh": true, }, - "value": 525992820, - }, - { - "category": "Pet", - "configData": { - "id": "Huge Bejeweled Unicorn", - "pt": 2, - }, - "value": 681555739, + "value": 99, }, { "category": "Pet", "configData": { - "id": "Happy Rock", - "pt": 1, + "id": "Flamingo Hippo", "sh": true, }, - "value": 458, + "value": 62517968, }, { "category": "Pet", "configData": { - "id": "Sketch Corgi", + "id": "Huge Flamingo Cat", + "pt": 1, }, - "value": 4261804, + "value": 22670, }, { "category": "Pet", "configData": { - "id": "Dominus Infernus", + "id": "Huge Mushroom Dragon", "pt": 2, }, - "value": 1493, + "value": 3463, }, { "category": "Pet", "configData": { - "id": "Pastel Sock Bunny", + "id": "Flamingo Hippo", + "pt": 1, "sh": true, }, - "value": 3817, + "value": 7280337, }, { "category": "Pet", "configData": { - "id": "Alien Octopus", + "id": "Flamingo Cat", "pt": 2, + "sh": true, }, - "value": 893, + "value": 61960748, }, { "category": "Pet", "configData": { - "id": "Ender Bunny", + "id": "Flamingo Hippo", + "pt": 2, "sh": true, }, - "value": 344, + "value": 11884387, }, { "category": "Pet", "configData": { - "id": "Sketch Cow", + "id": "Beach Ball Capybara", + "sh": true, }, - "value": 3399932, + "value": 521597, }, { "category": "Pet", "configData": { - "id": "Titanic Fawn", + "id": "Titanic Surfboard Corgi", "sh": true, }, - "value": 5960000072, + "value": 43, }, { "category": "Pet", "configData": { - "id": "Forged Hedgehog", - "pt": 1, + "id": "Pineapple Dog", + "sh": true, }, - "value": 146, + "value": 5931700, }, { "category": "Pet", "configData": { - "id": "Stacked Dominus", - "pt": 2, + "id": "Pineapple Dog", + "pt": 1, + "sh": true, }, - "value": 1123, + "value": 700943, }, { "category": "Pet", "configData": { - "id": "Huge Bear", + "id": "Huge Mushroom Dragon", "pt": 1, + "sh": true, }, - "value": 200936077, + "value": 80, }, { "category": "Pet", "configData": { - "id": "Circuit Slime", + "id": "Watermelon Golem", }, - "value": 1564, + "value": 52871609, }, { "category": "Pet", "configData": { - "id": "Snowflake Pegasus", + "id": "Titanic Pineapple Dog", "pt": 1, }, - "value": 1319449, + "value": 307, }, { "category": "Pet", "configData": { - "id": "Wicked Empyrean Dominus", + "id": "Rose Pooka", + "pt": 1, + "sh": true, }, - "value": 15349, + "value": 181512, }, { "category": "Pet", "configData": { - "id": "Circuit Corgi", + "id": "Watermelon Golem", "pt": 2, }, - "value": 4189, + "value": 5689985, }, { "category": "Pet", "configData": { - "id": "Cat Magician", + "id": "Huge Chill Parrot", + "sh": true, }, - "value": 849, + "value": 3984, }, { "category": "Pet", "configData": { - "id": "Huge Reindeer Dog", + "id": "Watermelon Golem", "pt": 1, }, - "value": 419623819, + "value": 4530068, }, { "category": "Pet", "configData": { - "id": "Relic Bear", + "id": "Pineapple Dog", "pt": 2, - }, - "value": 4179, - }, - { - "category": "Pet", - "configData": { - "id": "Relic Fox", "sh": true, }, - "value": 64715, + "value": 1118526, }, { "category": "Pet", "configData": { - "id": "Steampunk Crocodile", - "pt": 2, + "id": "Titanic Old Wizard Cat", + "sh": true, }, - "value": 5498, + "value": 13, }, { "category": "Pet", "configData": { - "id": "Huge Dark Lord", + "id": "Watermelon Golem", "pt": 1, "sh": true, }, - "value": 982556967, + "value": 26882, }, { "category": "Pet", "configData": { - "id": "Stacked Dominus", + "id": "Titanic Surfboard Corgi", + "pt": 1, }, - "value": 247, + "value": 245, }, { "category": "Pet", "configData": { - "id": "Ice Snowman", + "id": "Buff Tiger", + "pt": 2, "sh": true, }, - "value": 233, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Steampunk Bat", + "id": "Titanic Pineapple Dog", "pt": 2, }, - "value": 3387, + "value": 150, }, { "category": "Pet", "configData": { - "id": "Toy Mouse", + "id": "Huge Mushroom Dragon", + "sh": true, }, - "value": 3014, + "value": 1144, }, { "category": "Pet", "configData": { - "id": "Stacked Dominus", + "id": "Beach Ball Capybara", "pt": 2, "sh": true, }, - "value": 298, + "value": 98990, }, { "category": "Pet", "configData": { - "id": "Dominus Hippomelon", + "id": "Watermelon Golem", + "pt": 2, + "sh": true, }, - "value": 1771, + "value": 43177, }, { "category": "Pet", "configData": { - "id": "Relic Bat", + "id": "Huge Chill Parrot", "pt": 2, "sh": true, }, - "value": 94805, + "value": 223, }, { "category": "Pet", "configData": { - "id": "Runic Agony", + "id": "Rose Pooka", + "pt": 2, + "sh": true, }, - "value": 2556, + "value": 1094839, }, { "category": "Pet", "configData": { - "id": "Brain", - "pt": 2, + "id": "Rose Pooka", + "sh": true, }, - "value": 7208, + "value": 691686, }, { "category": "Pet", "configData": { - "id": "Cyborg Dragon", - "pt": 1, + "id": "Watermelon Golem", + "sh": true, }, - "value": 673, + "value": 192368, }, { "category": "Pet", "configData": { - "id": "Forged Turtle", - "pt": 2, + "id": "Huge Watermelon Golem", + "pt": 1, + "sh": true, }, - "value": 18089, + "value": 28, }, { "category": "Pet", "configData": { - "id": "Garden Cat", - "pt": 2, + "id": "Palace Pooka", + "pt": 1, + "sh": true, }, - "value": 982, + "value": 20807, }, { "category": "Pet", "configData": { - "id": "Runic Wolf", + "id": "Palace Pooka", "pt": 2, + "sh": true, }, - "value": 923, + "value": 21390, }, { "category": "Pet", "configData": { - "id": "Tech Ninja Panda", + "id": "Huge Chill Parrot", + "pt": 1, + "sh": true, }, - "value": 1829, + "value": 303, }, { "category": "Pet", "configData": { - "id": "Huge Bison", + "id": "Huge Mushroom Dragon", "pt": 2, "sh": true, }, - "value": 539243101, + "value": 66, }, { "category": "Pet", "configData": { - "id": "Huge Sketch Corgi", + "id": "Titanic Pineapple Dog", + "sh": true, }, - "value": 98175173, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Zombie Deer", + "id": "Gargantuan Dark Dragon", "pt": 2, - "sh": true, }, - "value": 9834, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Blimp Dragon", + "id": "Huge Flamingo Hippo", "pt": 2, + "sh": true, }, - "value": 5408, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Stargazing Wolf", + "id": "Huge Old Wizard Cat", "pt": 2, "sh": true, }, - "value": 164988280, + "value": 24, }, { "category": "Pet", "configData": { - "id": "Domortuus", + "id": "Huge Surfboard Axolotl", "pt": 2, + "sh": true, }, - "value": 2900, + "value": 17, }, { "category": "Pet", "configData": { - "id": "Sphinx", + "id": "Titanic Surfboard Corgi", + "pt": 1, + "sh": true, }, - "value": 203, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Husky", - "pt": 2, + "id": "Huge Flamingo Hippo", + "pt": 1, + "sh": true, }, - "value": 369, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Tech Samurai Cat", + "id": "Huge Coconut Corgi", "pt": 2, }, - "value": 499, + "value": 992, }, { "category": "Pet", "configData": { - "id": "Dominus Hippomelon", - "pt": 2, - "sh": true, + "id": "Huge Coconut Corgi", }, - "value": 5990, + "value": 8195, }, { "category": "Pet", "configData": { - "id": "Neon Twilight Dragon", + "id": "Huge Coconut Corgi", + "pt": 1, }, - "value": 9824262, + "value": 2895, }, { "category": "Pet", "configData": { - "id": "Gummy Raccoon", + "id": "Huge Chill Cat", "pt": 2, "sh": true, }, - "value": 296000, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Sketch Dragon", + "id": "Titanic Starlight Pony", + "sh": true, }, - "value": 8590027, + "value": 41, }, { "category": "Pet", "configData": { - "id": "Huge Robber Cat", - "pt": 1, + "id": "Palace Pooka", "sh": true, }, - "value": 8070400070, + "value": 17388, }, { "category": "Pet", "configData": { - "id": "Demon Serpents", - "pt": 2, + "id": "Titanic Old Wizard Cat", + "pt": 1, + "sh": true, }, - "value": 1145, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Sophisticated Fox", + "id": "Titanic Wicked Angelus", }, - "value": 394, + "value": 297, }, { "category": "Pet", "configData": { - "id": "Junkyard Hound", - "pt": 1, + "id": "Titanic Treasure Mimic", + "pt": 2, + "sh": true, }, - "value": 2954, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Dominus Mushrooms", - "pt": 2, + "id": "Titanic Electric Werewolf", }, - "value": 1330, + "value": 222, }, { "category": "Pet", "configData": { - "id": "Toy Mouse", - "pt": 1, + "id": "Titanic Inferno Dominus", }, - "value": 37050, + "value": 272, }, { "category": "Pet", "configData": { - "id": "Runic Agony", - "pt": 1, + "id": "Titanic Gamer Shiba", }, - "value": 53335, + "value": 268, }, { "category": "Pet", "configData": { - "id": "Beach Ball Monkey", - "pt": 1, - "sh": true, + "id": "Titanic Wild Fire Agony", }, - "value": 270, + "value": 395, }, { "category": "Pet", "configData": { - "id": "Butterfly", - "pt": 1, + "id": "Titanic Ancient Dragon", }, - "value": 1178, + "value": 165, }, { "category": "Pet", "configData": { - "id": "Steampunk Crocodile", - "pt": 1, + "id": "Titanic Surfboard Corgi", + "pt": 2, + "sh": true, }, - "value": 1681, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Little Melty", + "id": "Gargantuan Forest Wyvern", + "pt": 1, }, - "value": 195, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Hound of Hades", + "id": "Inferno Stealth Dragon", "pt": 1, - "sh": true, }, - "value": 2600000, + "value": 167, }, { "category": "Pet", "configData": { - "id": "Steampunk Bat", - "pt": 1, + "id": "Huge Hedgehog", }, - "value": 360, + "value": 243, }, { "category": "Pet", "configData": { - "id": "Ducky Magician", + "id": "Inferno Stealth Bobcat", + "pt": 1, }, - "value": 2037, + "value": 210, }, { "category": "Pet", "configData": { - "id": "Potion Poodle", - "pt": 1, - "sh": true, + "id": "Inferno Stealth Bobcat", + "pt": 2, }, - "value": 4967, + "value": 36, }, { "category": "Pet", "configData": { - "id": "Huge Stargazing Wolf", + "id": "Inferno Stealth Bobcat", "sh": true, }, - "value": 523019847, + "value": 31, }, { "category": "Pet", "configData": { - "id": "Relic Raccoon", + "id": "Inferno Stealth Cat", + "pt": 2, }, - "value": 3628, + "value": 42, }, { "category": "Pet", "configData": { - "id": "Relic Fox", + "id": "Inferno Stealth Dragon", + "sh": true, }, - "value": 922, + "value": 40, }, { "category": "Pet", "configData": { - "id": "Sloth", + "id": "Titanic Ghost Axolotl", + "pt": 2, "sh": true, }, - "value": 4141, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Meebo in a Spaceship", + "id": "Huge Hedgehog", + "pt": 1, }, - "value": 7736, + "value": 23, }, { "category": "Pet", "configData": { - "id": "Relic Bear", + "id": "Gargantuan Treasure Angelus", + "sh": true, }, - "value": 169, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Huge Forest Wyvern", + "id": "Huge Coconut Flamingo", + "pt": 1, }, - "value": 269438368, + "value": 2462, }, { "category": "Pet", "configData": { - "id": "Tech Ninja Cow", - "pt": 1, + "id": "Huge Coconut Flamingo", + "pt": 2, }, - "value": 15216, + "value": 944, }, { "category": "Pet", "configData": { - "id": "Holographic Monkey", - "sh": true, + "id": "Titanic Beach Ball Capybara", }, - "value": 2118, + "value": 1474, }, { "category": "Pet", "configData": { - "id": "Pirate Cat", - "sh": true, + "id": "Huge Coconut Flamingo", }, - "value": 6332, + "value": 5539, }, { "category": "Pet", "configData": { - "id": "Dominus Alienus", + "id": "Titanic Beach Ball Capybara", "pt": 1, }, - "value": 6058, + "value": 391, }, { "category": "Pet", "configData": { - "id": "Mechanical Spider", + "id": "Titanic Beach Ball Capybara", + "pt": 2, }, - "value": 3580, + "value": 99, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Bunny", + "id": "Gargantuan Forest Wyvern", + "pt": 2, + "sh": true, }, - "value": 1371, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Huge Triceratops", + "id": "Inferno Stealth Dragon", + "pt": 2, }, - "value": 143432246, + "value": 35, }, { "category": "Pet", "configData": { - "id": "Panda", + "id": "Huge Hedgehog", "pt": 2, }, - "value": 404, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Dominus Alienus", - "pt": 2, + "id": "Inferno Stealth Dragon", + "pt": 1, + "sh": true, }, - "value": 2919, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Huge Police Cat", - "pt": 2, + "id": "Inferno Stealth Cat", + "pt": 1, "sh": true, }, - "value": 5400000006, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Forged Hedgehog", + "id": "Huge Atomic Axolotl", "pt": 2, "sh": true, }, - "value": 100000, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Huge Comet Agony", - "pt": 1, + "id": "Huge Watermelon Golem", + "pt": 2, + "sh": true, }, - "value": 2064571018, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Dominus Hippomelon", + "id": "Titanic Ghostly Wolf", + "pt": 2, "sh": true, }, - "value": 63065, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Prison Monkey", + "id": "Titanic Exquisite Cat", + "pt": 2, + "sh": true, }, - "value": 137, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Dominus Mushrooms", - "pt": 1, + "id": "Gargantuan Forest Wyvern", + "sh": true, }, - "value": 1943, + "value": 2, }, { - "category": "Pet", + "category": "Catch", "configData": { - "id": "Huge Sketch Corgi", + "id": "Hellish Axolotl", "pt": 2, + "sh": true, }, - "value": 774551581, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Tech Ninja Red Panda", - "pt": 2, + "id": "Inferno Stealth Bobcat", + "pt": 1, + "sh": true, }, - "value": 48468, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Glitched Dragon", - "pt": 2, + "id": "Huge Hedgehog", "sh": true, }, - "value": 25999, + "value": 3, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Tech Samurai Cat", - "pt": 1, + "id": "Spider Gift", }, - "value": 943, + "value": 960578, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Tech Samurai Cat", + "id": "Halloween Trick or Treat Luck", + "tn": 1, }, - "value": 4409, + "value": 171181623, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Tech Samurai Dragon", + "id": "Halloween Lucky Egg", + "tn": 1, + }, + "value": 171358252, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 56", }, - "value": 2234, + "value": 1374418, }, { "category": "Pet", "configData": { - "id": "Pastel Sock Dragon", - "pt": 2, - "sh": true, + "id": "Candycorn Unicorn", }, - "value": 200000, + "value": 93206, }, { "category": "Pet", "configData": { - "id": "Evil Minotaur", + "id": "Huge Pumpkin Dog", "pt": 1, - "sh": true, }, - "value": 377, + "value": 13908, }, { "category": "Pet", "configData": { - "id": "Frostbyte Snow Leopard", + "id": "Huge Pumpkin Dog", }, - "value": 318, + "value": 28270, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Gecko", + "id": "Cappuccina Brainrot", }, - "value": 1768, + "value": 122960, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Circuit Griffin", - "pt": 2, + "id": "Witch Hat", }, - "value": 8447, + "value": 9146925698731, }, { - "category": "Pet", + "category": "Currency", "configData": { - "id": "Cyberpunk Ghost", - "pt": 1, + "id": "HalloweenCoins", }, - "value": 6776, + "value": 34999303030094720, }, { - "category": "Pet", + "category": "EggHalloween", "configData": { - "id": "Cotton Candy Unicorn", - "pt": 2, + "id": "Grave Egg", }, - "value": 75940, + "value": 160417622906, }, { - "category": "Pet", + "category": "EggHalloween", "configData": { - "id": "Hooded Monkey", - "pt": 2, - "sh": true, + "id": "Bat Egg", }, - "value": 9000, + "value": 134543458833, }, { - "category": "Pet", + "category": "EggHalloween", "configData": { - "id": "Huge Warrior Wolf", - "pt": 2, - "sh": true, + "id": "Pumpkin Egg", }, - "value": 21199999943, + "value": 92773150670, }, { "category": "Pet", "configData": { - "id": "Steampunk Fish", - "pt": 1, + "id": "Huge Skelemelon", }, - "value": 1717, + "value": 22214, }, { "category": "Pet", "configData": { - "id": "Wizard Unicorn", - "pt": 2, + "id": "Patapim Brainrot", }, - "value": 2279, + "value": 76758, }, { "category": "Pet", "configData": { - "id": "Frostbyte Bear", + "id": "Candycorn Unicorn", "pt": 1, - "sh": true, }, - "value": 546, + "value": 23815, }, { "category": "Pet", "configData": { - "id": "Tech Ninja Panda", - "pt": 2, + "id": "Tralala Brainrot", }, - "value": 1071, + "value": 33786, }, { "category": "Pet", "configData": { - "id": "Grinch Cat", - "sh": true, + "id": "Cappuccina Brainrot", + "pt": 2, }, - "value": 14190440, + "value": 6907, }, { "category": "Pet", "configData": { - "id": "Huge Hoverboard Cat", - "pt": 2, + "id": "Cappuccina Brainrot", "sh": true, }, - "value": 405000000, + "value": 4106, }, { "category": "Pet", "configData": { - "id": "Encrusted Wolf", - "sh": true, + "id": "Huge Witch Wolf", + "pt": 1, }, - "value": 13054, + "value": 3107, }, { "category": "Pet", "configData": { - "id": "Stacked Dominus", - "sh": true, + "id": "Huge Devil Tasmanian", }, - "value": 1550, + "value": 22095, }, { "category": "Pet", "configData": { - "id": "Junkyard Hound", - "sh": true, + "id": "Candycorn Unicorn", + "pt": 2, }, - "value": 71216, + "value": 6305, }, { "category": "Pet", "configData": { - "id": "Devil Agony", - "pt": 1, + "id": "Tralala Brainrot", "sh": true, }, - "value": 14483, + "value": 1196, }, { "category": "Pet", "configData": { - "id": "Prison Cow", - "pt": 2, + "id": "Huge Cappuccina Brainrot", "sh": true, }, - "value": 172, + "value": 893, }, { "category": "Pet", "configData": { - "id": "Pastel Sock Bear", - "pt": 2, + "id": "Huge Cappuccina Brainrot", }, - "value": 1633, + "value": 22752, }, { "category": "Pet", "configData": { - "id": "Sketch Corgi", - "pt": 2, - "sh": true, + "id": "Huge Witch Wolf", }, - "value": 93183525, + "value": 8589, }, { "category": "Pet", "configData": { - "id": "Huge Umbrella Cat", + "id": "Huge Pumpkin Dog", "pt": 2, }, - "value": 5880799986, + "value": 4058, }, { "category": "Pet", "configData": { - "id": "Huge Elf Dog", - "pt": 1, + "id": "Patapim Brainrot", + "sh": true, }, - "value": 8978552620, + "value": 2835, }, { - "category": "Pet", + "category": "EggHalloween", "configData": { - "id": "Sun Agony", - "pt": 2, - "sh": true, + "id": "Ghost Egg", }, - "value": 114176754, + "value": 84153077942, }, { "category": "Pet", "configData": { - "id": "Hell Monkey", + "id": "Huge Witch Wolf", "pt": 1, "sh": true, }, - "value": 102, + "value": 39, }, { "category": "Pet", "configData": { - "id": "Tech Ninja Giraffe", - "pt": 2, + "id": "Titanic Blobenstein", }, - "value": 1519, + "value": 757, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Spider", - "pt": 1, + "id": "Patapim Brainrot", + "pt": 2, }, - "value": 3245, + "value": 4868, }, { "category": "Pet", "configData": { - "id": "Balloon Dragon", - "pt": 2, + "id": "Huge Cupcake Pegasus", }, - "value": 12265094, + "value": 240891, }, { "category": "Pet", "configData": { - "id": "Relic Squirrel", - "sh": true, + "id": "Huge Cupcake Pegasus", + "pt": 1, }, - "value": 10160, + "value": 48486, }, { "category": "Pet", "configData": { - "id": "Huge Dark Dragon", - "sh": true, + "id": "Huge Tralala Brainrot", + "pt": 2, }, - "value": 1891896570, + "value": 370, }, { "category": "Pet", "configData": { - "id": "Relic Cyclops", + "id": "Huge Tralala Brainrot", }, - "value": 151, + "value": 7131, }, { "category": "Pet", "configData": { - "id": "Corrupt Octopus", + "id": "Titanic Blobenstein", "pt": 1, }, - "value": 2152, + "value": 291, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Lemur", + "id": "Huge Devil Tasmanian", + "pt": 2, }, - "value": 193, + "value": 842, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Tiger", - "pt": 1, + "id": "Tralala Brainrot", + "pt": 2, }, - "value": 2752, + "value": 2065, }, { "category": "Pet", "configData": { - "id": "Relic Bear", - "pt": 1, + "id": "Huge African Wild Dog", }, - "value": 5298, + "value": 12587, }, { "category": "Pet", "configData": { - "id": "Titanic Sketch Cat", + "id": "Huge Pumpkin Dog", + "sh": true, }, - "value": 14262438646, + "value": 865, }, { "category": "Pet", "configData": { - "id": "Dominus Mushrooms", - "pt": 2, - "sh": true, + "id": "Huge Devil Tasmanian", + "pt": 1, }, - "value": 39554, + "value": 4521, }, { "category": "Pet", "configData": { - "id": "Mystical Fox", + "id": "Huge Witch Wolf", + "pt": 2, }, - "value": 282, + "value": 844, }, { "category": "Pet", "configData": { - "id": "Tech Ninja Giraffe", + "id": "Candycorn Unicorn", + "sh": true, }, - "value": 649, + "value": 1485, }, { "category": "Pet", "configData": { - "id": "Detective Cat", - "pt": 1, - "sh": true, + "id": "Huge Gorilla", }, - "value": 203, + "value": 14486, }, { "category": "Pet", "configData": { - "id": "Sun Parrot", - "sh": true, + "id": "Huge Skelemelon", + "pt": 1, }, - "value": 4006, + "value": 4511, }, { "category": "Pet", "configData": { - "id": "Sophisticated Fox", - "sh": true, + "id": "Titanic Crocodilo Brainrot", }, - "value": 9000, + "value": 1625, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Gecko", - "pt": 1, + "id": "Huge Sloth", }, - "value": 767, + "value": 4002, }, { "category": "Pet", "configData": { - "id": "Huge Pineapple Monkey", + "id": "Huge Cupcake Pegasus", "pt": 2, }, - "value": 221314556, + "value": 9537, }, { "category": "Pet", "configData": { - "id": "Tech Ninja Red Panda", - "pt": 1, + "id": "Huge Witch Wolf", + "sh": true, }, - "value": 1552, + "value": 175, }, { "category": "Pet", "configData": { - "id": "Steampunk Octopus", - "pt": 1, + "id": "Huge Fiddlefern Cat", }, - "value": 24, + "value": 325617, }, { "category": "Pet", "configData": { - "id": "Zombie Squirrel", + "id": "Candycorn Unicorn", + "pt": 1, + "sh": true, }, - "value": 161, + "value": 684, }, { "category": "Pet", "configData": { - "id": "Wizard Unicorn", + "id": "Titanic Blobenstein", + "pt": 2, }, - "value": 21419, + "value": 79, }, { "category": "Pet", "configData": { - "id": "Sketch Dragon", + "id": "Candycorn Unicorn", + "pt": 2, "sh": true, }, - "value": 17421029, + "value": 198, }, { "category": "Pet", "configData": { - "id": "Plague Cow", + "id": "Cappuccina Brainrot", + "pt": 2, "sh": true, }, - "value": 63879999, + "value": 385, }, { "category": "Pet", "configData": { - "id": "Circuit Griffin", - "pt": 1, + "id": "Huge Rhino", }, - "value": 1032, + "value": 20838, }, { "category": "Pet", "configData": { - "id": "Huge Kawaii Cat", - "pt": 2, + "id": "Huge Devil Tasmanian", + "sh": true, }, - "value": 5538786801, + "value": 175, }, { "category": "Pet", "configData": { - "id": "Huge Electric Cat", + "id": "Huge Skelemelon", "pt": 2, }, - "value": 587346057, - }, - { - "category": "Pet", - "configData": { - "id": "Domortuus", - "pt": 1, - }, - "value": 147, + "value": 958, }, { "category": "Pet", "configData": { - "id": "Huge Hacker Axolotl", - "pt": 1, + "id": "Huge Skelemelon", + "pt": 2, "sh": true, }, - "value": 3451820749, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Relic Squirrel", + "id": "Huge Pumpkin Dog", "pt": 2, "sh": true, }, - "value": 1, + "value": 34, }, { "category": "Pet", "configData": { - "id": "Pastel Griffin", + "id": "Patapim Brainrot", + "pt": 2, "sh": true, }, - "value": 218, + "value": 309, }, { "category": "Pet", "configData": { - "id": "Cyborg Squirrel", + "id": "Huge Tralala Brainrot", "sh": true, }, - "value": 2107, + "value": 350, }, { "category": "Pet", "configData": { - "id": "Dominus Mushrooms", + "id": "Huge Pumpkin Dog", "pt": 1, "sh": true, }, - "value": 43615, + "value": 172, }, { "category": "Pet", "configData": { - "id": "Huge Reindeer Dog", + "id": "Huge Cappuccina Brainrot", + "pt": 2, }, - "value": 253953973, + "value": 751, }, { "category": "Pet", "configData": { - "id": "Relic Squirrel", - "pt": 2, + "id": "Huge Skelemelon", + "sh": true, }, - "value": 73643, + "value": 190, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Dog", - "pt": 2, + "id": "Huge Gorilla", + "pt": 1, }, - "value": 1138, + "value": 1495, }, { "category": "Pet", "configData": { - "id": "Huge Safari Cat", + "id": "Huge Gorilla", "pt": 2, }, - "value": 3551743304, + "value": 1286, }, { "category": "Pet", "configData": { - "id": "Heavenly Dove", - "sh": true, + "id": "Titanic Quokka", }, - "value": 1405, + "value": 7783, }, { "category": "Pet", "configData": { - "id": "Mosaic Elephant", - "pt": 1, + "id": "Gargantuan Cappuccino Brainrot", }, - "value": 6281965, + "value": 174, }, { - "category": "Pet", + "category": "EggHalloween", "configData": { - "id": "Huge Sketch Dragon", - "sh": true, + "id": "Cauldron Egg", }, - "value": 1578343361, + "value": 32522458639, }, { - "category": "Pet", + "category": "EggHalloween", "configData": { - "id": "Umbrella Bear", - "pt": 2, - "sh": true, + "id": "Spider Egg", }, - "value": 897, + "value": 21407333942, }, { "category": "Pet", "configData": { - "id": "Dominus Hippomelon", + "id": "Huge African Wild Dog", "pt": 2, }, - "value": 525, + "value": 1387, }, { "category": "Pet", "configData": { - "id": "Huge Kangaroo", + "id": "Tralala Brainrot", + "pt": 2, "sh": true, }, - "value": 95552503, + "value": 133, }, { "category": "Pet", "configData": { - "id": "Huge Sandcastle Cat", - "pt": 2, + "id": "Huge Cupcake Pegasus", + "sh": true, }, - "value": 2925183439, + "value": 1949, }, { "category": "Pet", "configData": { - "id": "Domortuus", - "sh": true, + "id": "Huge African Wild Dog", + "pt": 1, }, - "value": 2223, + "value": 1490, }, { "category": "Pet", "configData": { - "id": "Steampunk Wolf", + "id": "Huge Rhino", "pt": 1, }, - "value": 3861, + "value": 2131, }, { "category": "Pet", "configData": { - "id": "Dominus Alienus", - "pt": 2, + "id": "Titanic Blobenstein", + "pt": 1, "sh": true, }, - "value": 15897407, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Tulip Hedgehog", - "pt": 1, - "sh": true, + "id": "Huge Sloth", + "pt": 2, }, - "value": 41600, + "value": 521, }, { "category": "Pet", "configData": { - "id": "Bloo Cat", + "id": "Huge Sloth", "pt": 1, - "sh": true, }, - "value": 88037081, + "value": 573, }, { "category": "Pet", "configData": { - "id": "Toy Mouse", + "id": "Huge Rhino", "pt": 2, }, - "value": 3952, + "value": 1866, }, { - "category": "Pet", + "category": "EggHalloween", "configData": { - "id": "Tech Samurai Dragon", - "pt": 1, + "id": "Reaper Egg", }, - "value": 11270, + "value": 2427850437, }, { "category": "Pet", "configData": { - "id": "Runic Wolf", + "id": "Huge Blue Lucky Block", "pt": 1, }, - "value": 596, + "value": 1333, }, { "category": "Pet", "configData": { - "id": "Flower Gecko", + "id": "Huge Blue Lucky Block", + "pt": 2, }, - "value": 1519, + "value": 285, }, { "category": "Pet", "configData": { - "id": "Tech Samurai Cat", - "sh": true, + "id": "Huge Blue Lucky Block", }, - "value": 1464, + "value": 6623, }, { "category": "Pet", "configData": { - "id": "Jelly Axolotl", - "pt": 2, + "id": "Titanic Noob", }, - "value": 12590481, + "value": 116, }, { - "category": "Pet", + "category": "HPillar", "configData": { - "id": "Tech Ninja Panda", + "id": "Shark Cat", "pt": 1, }, - "value": 518, + "value": 2793794, }, { "category": "Pet", "configData": { - "id": "Orange Parrot", + "id": "Titanic Noob", "pt": 1, - "sh": true, }, - "value": 100, + "value": 27, }, { "category": "Pet", "configData": { - "id": "Huge Dino Dog", + "id": "Huge Blue Lucky Block", "sh": true, }, - "value": 201730330, + "value": 46, }, { "category": "Pet", "configData": { - "id": "Icemortuus", + "id": "Huge Blue Lucky Block", + "pt": 2, "sh": true, }, - "value": 21507, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Sabretooth Tiger", + "id": "Huge Blue Lucky Block", "pt": 1, "sh": true, }, - "value": 80000, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Lemur", - "pt": 2, - "sh": true, + "id": "Huge Hacked Reaper", }, - "value": 3117, + "value": 59613, }, { - "category": "Pet", + "category": "HPillar", "configData": { - "id": "Nightfall Ram", - "pt": 2, - "sh": true, + "id": "Skelemelon", + "pt": 1, }, - "value": 450000000, + "value": 1569248, }, { "category": "Pet", "configData": { - "id": "Blazing Corgi", + "id": "Titanic Crocodilo Brainrot", "pt": 2, }, - "value": 13385823, + "value": 45, }, { "category": "Pet", "configData": { - "id": "Relic Fox", + "id": "Huge Skelemelon", "pt": 1, + "sh": true, }, - "value": 4882, + "value": 42, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Dog", + "id": "Huge Tralala Brainrot", + "pt": 2, "sh": true, }, - "value": 80, + "value": 57, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Husky", + "id": "Titanic Crocodilo Brainrot", "sh": true, }, - "value": 1055, + "value": 29, }, { "category": "Pet", "configData": { - "id": "Tech Samurai Dragon", + "id": "Huge Cupcake Pegasus", + "pt": 1, "sh": true, }, - "value": 911, + "value": 379, }, { "category": "Pet", "configData": { - "id": "Dominus Alienus", - "sh": true, + "id": "Titanic Quokka", + "pt": 1, }, - "value": 3629644, + "value": 1647, }, { - "category": "Pet", + "category": "HPillar", "configData": { - "id": "Steampunk Octopus", + "id": "Spectral Deer", "pt": 2, - "sh": true, }, - "value": 1, + "value": 2231983, }, { "category": "Pet", "configData": { - "id": "Dragon", + "id": "Huge Fiddlefern Cat", "sh": true, }, - "value": 73, + "value": 6678, }, { "category": "Pet", "configData": { - "id": "Samurai Bull", + "id": "Huge Fiddlefern Cat", "pt": 1, - "sh": true, }, - "value": 33, + "value": 17372, }, { "category": "Pet", "configData": { - "id": "Steampunk Fish", - "pt": 2, - "sh": true, + "id": "Gargantuan Doge", }, - "value": 10000, + "value": 59, }, { "category": "Pet", "configData": { - "id": "Honey Badger", + "id": "Huge Hacked Reaper", "pt": 1, }, - "value": 66, + "value": 6667, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Wizard Unicorn", - "pt": 1, + "id": "Glowy", }, - "value": 36, + "value": 893615, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Meerkat", - "sh": true, + "id": "Huge Fiddlefern Cat", + "pt": 2, }, - "value": 60, + "value": 8637, }, { - "category": "Pet", + "category": "EggHalloween", "configData": { - "id": "Huge Purple Dragon", + "id": "Coffin Egg", + }, + "value": 376391311, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Broomstick", + }, + "value": 871130, + }, + { + "category": "HPillar", + "configData": { + "id": "Devil Tasmanian", }, - "value": 81036220, + "value": 1380689, }, { "category": "Pet", "configData": { - "id": "Snowman", - "pt": 2, + "id": "Huge Rhino", "sh": true, }, - "value": 87000, + "value": 436, }, { - "category": "Pet", + "category": "HPillar", "configData": { - "id": "Wireframe Dog", + "id": "Evil Kitsune", }, - "value": 643, + "value": 1077457, }, { "category": "Pet", "configData": { - "id": "Huge Orca", + "id": "Huge Devil Tasmanian", "pt": 1, + "sh": true, }, - "value": 164142327, + "value": 27, }, { "category": "Pet", "configData": { - "id": "Tech Samurai Dragon", + "id": "Huge Spectral Deer", "pt": 1, - "sh": true, }, - "value": 50, + "value": 1684, }, { - "category": "Pet", + "category": "HPillar", "configData": { - "id": "Huge Sorcerer Bear", + "id": "Skelemelon", "pt": 2, - "sh": true, }, - "value": 700239970, + "value": 2098484, }, { "category": "Pet", "configData": { - "id": "Titanic Party Cat", + "id": "Huge Gorilla", + "sh": true, }, - "value": 13379918383, + "value": 329, }, { - "category": "Pet", + "category": "HPillar", "configData": { - "id": "Glitched Dog", + "id": "Devil Tasmanian", "pt": 1, }, - "value": 701, + "value": 1569196, }, { - "category": "Pet", + "category": "HPillar", "configData": { - "id": "Runic Wolf", + "id": "Vampire Agony", "pt": 1, - "sh": true, }, - "value": 2000, + "value": 1606628, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Lemur", - "pt": 1, - "sh": true, + "id": "Huge Spectral Deer", }, - "value": 10240, + "value": 15188, }, { "category": "Pet", "configData": { - "id": "Forged Turtle", - "pt": 1, - "sh": true, + "id": "Huge Hacked Reaper", + "pt": 2, }, - "value": 10000, + "value": 1234, }, { "category": "Pet", "configData": { - "id": "Shark", + "id": "Huge Horse", }, - "value": 45, + "value": 22978, }, { "category": "Pet", "configData": { - "id": "Hydra Axolotl", - "sh": true, + "id": "Huge Lemur", }, - "value": 80384, + "value": 20097, }, { - "category": "Pet", + "category": "HPillar", "configData": { - "id": "Steampunk Fish", - "sh": true, + "id": "Devil Tasmanian", + "pt": 2, }, - "value": 1, + "value": 1010018, }, { "category": "Pet", "configData": { - "id": "Tiki Dominus", + "id": "Huge Lemur", "pt": 2, - "sh": true, }, - "value": 1202860, + "value": 2103, }, { "category": "Pet", "configData": { - "id": "Plague Cow", - "pt": 1, + "id": "Titanic Vampire Agony", }, - "value": 22109, + "value": 300, }, { "category": "Pet", "configData": { - "id": "Wireframe Dog", + "id": "Huge Cappuccina Brainrot", "pt": 2, + "sh": true, }, - "value": 700, + "value": 29, }, { "category": "Pet", "configData": { - "id": "Black Widow", + "id": "Huge Gorilla", + "pt": 1, "sh": true, }, - "value": 863, + "value": 33, }, { "category": "Pet", "configData": { - "id": "Phoenix", + "id": "Huge Lemur", "pt": 1, - "sh": true, }, - "value": 190, + "value": 2247, }, { "category": "Pet", "configData": { - "id": "Rift Dragon", + "id": "Titanic Quokka", "pt": 2, }, - "value": 17076964, + "value": 336, }, { "category": "Pet", "configData": { - "id": "Cosmic Agony", - "pt": 2, - "sh": true, + "id": "Huge Horse", + "pt": 1, }, - "value": 503070485, + "value": 2505, }, { "category": "Pet", "configData": { - "id": "Brain", - "sh": true, + "id": "Huge Vampire Agony", }, - "value": 1000, + "value": 1598, }, { - "category": "Pet", + "category": "HPillar", "configData": { - "id": "Cyber Dragon", + "id": "Specter Owl", + "pt": 1, + }, + "value": 2059680, + }, + { + "category": "HPillar", + "configData": { + "id": "Hacked Reaper", "pt": 2, - "sh": true, }, - "value": 3240, + "value": 958932, }, { "category": "Pet", "configData": { - "id": "Huge Shadow Griffin", + "id": "Titanic Quokka", "sh": true, }, - "value": 2225822717, + "value": 74, }, { "category": "Pet", "configData": { - "id": "Huge Hot Dog", - "pt": 2, + "id": "Huge Horse", + "sh": true, }, - "value": 1203335736, + "value": 512, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Cat", - "pt": 1, - "sh": true, + "id": "Huge Evil Kitsune", }, - "value": 1, + "value": 128529, }, { "category": "Pet", "configData": { - "id": "Huge Fairy", + "id": "Titanic Guilded Raven", }, - "value": 128244779, + "value": 2759, }, { "category": "Pet", "configData": { - "id": "Huge Tech Samurai Cat", + "id": "Huge Horse", + "pt": 2, }, - "value": 287062874, + "value": 2197, }, { - "category": "Pet", + "category": "HPillar", "configData": { - "id": "Glowy the Ghost", - "pt": 1, + "id": "Specter Owl", + "pt": 2, }, - "value": 295, + "value": 1705541, + }, + { + "category": "HPillar", + "configData": { + "id": "Shark Cat", + }, + "value": 2547426, }, { "category": "Pet", "configData": { - "id": "Huge Love Lamb", - "pt": 1, + "id": "Huge Hacked Reaper", "sh": true, }, - "value": 2616000014, + "value": 598, + }, + { + "category": "HPillar", + "configData": { + "id": "Hacked Reaper", + }, + "value": 294101, }, { "category": "Pet", "configData": { - "id": "Sun Agony", - "pt": 1, + "id": "Huge Lemur", "sh": true, }, - "value": 15447078, + "value": 452, }, { "category": "Pet", "configData": { - "id": "M-10 PROTOTYPE", + "id": "Huge Fiddlefern Cat", "pt": 2, "sh": true, }, - "value": 149972, + "value": 181, }, { "category": "Pet", "configData": { - "id": "Comet Agony", + "id": "Huge Fiddlefern Cat", "pt": 1, "sh": true, }, - "value": 9800, + "value": 340, }, { "category": "Pet", "configData": { - "id": "Train Conductor Cat", + "id": "Titanic Guilded Raven", "pt": 1, }, - "value": 10058, + "value": 320, }, { - "category": "Pet", + "category": "HPillar", "configData": { - "id": "Huge Tech Chest Mimic", + "id": "Mummy Cow", + "pt": 1, }, - "value": 100280241, + "value": 1480804, }, { - "category": "Pet", + "category": "HPillar", "configData": { - "id": "Empyrean Dominus", + "id": "Evil Kitsune", "pt": 2, }, - "value": 13528460, + "value": 1329176, }, { "category": "Pet", "configData": { - "id": "Atomic Axolotl", + "id": "Huge Devil Tasmanian", + "pt": 2, + "sh": true, }, - "value": 3908, + "value": 8, }, { "category": "Pet", "configData": { - "id": "Nightfall Wolf", - "pt": 1, + "id": "Huge Horse", + "pt": 2, + "sh": true, }, - "value": 10424676, + "value": 49, }, { - "category": "Pet", + "category": "HPillar", "configData": { - "id": "Shadow Shark", + "id": "Spectral Deer", }, - "value": 5736, + "value": 605470, }, { "category": "Pet", "configData": { - "id": "Huge Pixel Wolf", + "id": "Titanic Specter Owl", }, - "value": 200483326, + "value": 9147, }, { - "category": "Pet", + "category": "HPillar", "configData": { - "id": "Titanic Sketch Cat", - "sh": true, + "id": "Frankenpup Dog", }, - "value": 500000000, + "value": 1312133, }, { - "category": "Pet", + "category": "HPillar", "configData": { - "id": "Huge Disco Ball Dragon", - "pt": 1, - "sh": true, + "id": "Skelemelon", }, - "value": 941543658, + "value": 1163985, }, { "category": "Pet", "configData": { - "id": "Huge Techno Cat", + "id": "Huge Cupcake Pegasus", "pt": 2, "sh": true, }, - "value": 5000000000, + "value": 58, }, { "category": "Pet", "configData": { - "id": "Jelly Monkey", - "pt": 2, + "id": "Titanic Vampire Agony", "sh": true, }, - "value": 128574030, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Zombie Corgi", + "id": "Huge Witch Wolf", "pt": 2, "sh": true, }, - "value": 57000, + "value": 8, }, { - "category": "Pet", + "category": "HPillar", "configData": { - "id": "Hi-Tech Elephant", - "pt": 1, + "id": "Shark Cat", + "pt": 2, }, - "value": 16009, + "value": 2660678, }, { - "category": "Pet", + "category": "HPillar", "configData": { - "id": "Brain", - "pt": 2, - "sh": true, + "id": "Vampire Agony", }, - "value": 5090, + "value": 699271, }, { "category": "Pet", "configData": { - "id": "Huge Pixel Wolf", - "pt": 1, + "id": "Huge Spectral Deer", + "sh": true, }, - "value": 2993210197, + "value": 153, }, { "category": "Pet", "configData": { - "id": "Huge Crocodile", - "pt": 1, + "id": "Huge Vampire Agony", + "pt": 2, }, - "value": 40349465, + "value": 31, }, { "category": "Pet", "configData": { - "id": "Runic Agony", + "id": "Huge Spectral Deer", "pt": 2, - "sh": true, }, - "value": 2, + "value": 308, }, { "category": "Pet", "configData": { - "id": "Goblin", - "pt": 2, + "id": "Gargantuan Skelemelon", + "pt": 1, }, - "value": 1002, + "value": 10, }, { - "category": "Pet", + "category": "HPillar", "configData": { - "id": "Exquisite Cat", + "id": "Vampire Agony", + "pt": 2, }, - "value": 10534919, + "value": 2473366, }, { "category": "Pet", "configData": { - "id": "Huge Masked Fox", + "id": "Huge Lemur", + "pt": 1, + "sh": true, }, - "value": 80461362, + "value": 51, }, { "category": "Pet", "configData": { - "id": "Holographic Corgi", + "id": "Huge Vampire Agony", + "pt": 1, }, - "value": 3952, + "value": 170, }, { "category": "Pet", "configData": { - "id": "Holographic Bear", + "id": "Titanic Vampire Agony", + "pt": 1, }, - "value": 3713, + "value": 36, }, { "category": "Pet", "configData": { - "cv": 1, - "id": "Huge Chroma Ink Blob", + "id": "Titanic Blobenstein", "sh": true, }, - "value": 3536000023, + "value": 19, }, { - "category": "Pet", + "category": "HPillar", "configData": { - "id": "Huge Stealth Dragon", + "id": "Frankenpup Dog", + "pt": 2, }, - "value": 57510737, + "value": 1427288, }, { "category": "Pet", "configData": { - "id": "Beach Ball Dolphin", + "id": "Huge Frankenpup Dog", }, - "value": 49, + "value": 863740, }, { "category": "Pet", "configData": { - "id": "Dino Axolotl", - "pt": 1, + "id": "Huge Moray Eel", }, - "value": 2833, + "value": 9477, }, { - "category": "Pet", + "category": "HPillar", "configData": { - "id": "Pterodactyl", + "id": "Specter Owl", }, - "value": 22901598, + "value": 1858244, }, { "category": "Pet", "configData": { - "id": "Holographic Cat", - "pt": 2, + "id": "Huge Moray Eel", + "pt": 1, }, - "value": 1232, + "value": 998, }, { "category": "Pet", "configData": { - "id": "Holographic Cat", + "id": "Huge Hacked Reaper", + "pt": 1, + "sh": true, }, - "value": 1264, + "value": 64, }, { "category": "Pet", "configData": { - "id": "Holographic Bear", + "id": "Huge Rhino", "pt": 1, + "sh": true, }, - "value": 969, + "value": 45, }, { "category": "Pet", "configData": { - "id": "Huge Party Penguin", - "pt": 1, + "id": "Huge Moray Eel", + "pt": 2, }, - "value": 224763596, + "value": 939, }, { - "category": "Pet", + "category": "HPillar", "configData": { - "id": "Sophisticated Fox", + "id": "Mummy Cow", "pt": 2, }, - "value": 6978, + "value": 786118, }, { - "category": "Pet", + "category": "HPillar", "configData": { - "id": "Blue Fluffy", + "id": "Hacked Reaper", "pt": 1, - "sh": true, }, - "value": 10800, + "value": 446577, }, { - "category": "Pet", + "category": "HPillar", "configData": { - "id": "Shimmering Fish", - "sh": true, + "id": "Mummy Cow", }, - "value": 457, + "value": 944598, }, { "category": "Pet", "configData": { - "id": "Snow Squirrel", + "id": "Huge Spectral Deer", "pt": 1, + "sh": true, }, - "value": 140, + "value": 20, }, { "category": "Pet", "configData": { - "id": "Evil Ram", - "sh": true, + "id": "Titanic Devil Tasmanian", }, - "value": 2497, + "value": 6675, }, { "category": "Pet", "configData": { - "id": "Huge Avenging Griffin", + "id": "Titanic Vampire Agony", "pt": 2, }, - "value": 213492454, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Holographic Axolotl", - "pt": 1, + "id": "Huge Vampire Agony", + "sh": true, }, - "value": 1216, + "value": 12, }, { "category": "Pet", "configData": { - "id": "Holographic Cat", - "pt": 1, + "id": "Gargantuan Cappuccino Brainrot", + "pt": 2, }, - "value": 3450, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Holographic Axolotl", + "id": "Gargantuan Cappuccino Brainrot", + "sh": true, }, - "value": 700, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Plague Cow", - "pt": 1, + "id": "Huge Moray Eel", "sh": true, }, - "value": 4952000, + "value": 227, }, { "category": "Pet", "configData": { - "id": "Dominus Serpents", + "id": "Huge Vampire Agony", + "pt": 1, + "sh": true, + }, + "value": 3, + }, + { + "category": "HPillar", + "configData": { + "id": "Evil Kitsune", + "pt": 1, }, - "value": 2358, + "value": 881141, }, { "category": "Pet", "configData": { - "id": "Ender Slime", + "id": "Huge Horse", + "pt": 1, "sh": true, }, - "value": 1957, + "value": 52, }, { "category": "Pet", "configData": { - "id": "Holographic Monkey", + "id": "Gargantuan Skelemelon", }, - "value": 466, + "value": 112, }, { "category": "Pet", "configData": { - "id": "Glitched Immortuus", + "id": "Titanic Guilded Raven", + "sh": true, + }, + "value": 63, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rhino", "pt": 2, + "sh": true, }, - "value": 2547, + "value": 45, }, { "category": "Pet", "configData": { - "id": "Quantum Bunny", + "id": "Titanic Noob", "pt": 2, }, - "value": 7905, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Black Hole Kitsune", + "id": "Huge Gazelle", }, - "value": 12186981, + "value": 15254, }, { "category": "Pet", "configData": { - "id": "Holographic Monkey", + "id": "Huge Gazelle", "pt": 1, }, - "value": 8563, + "value": 1822, }, { - "category": "Pet", + "category": "HPillar", "configData": { - "id": "Mortuus", + "id": "Spectral Deer", "pt": 1, - "sh": true, }, - "value": 35000, + "value": 686949, }, { "category": "Pet", "configData": { - "id": "Shadow Dolphin", + "id": "Huge Gazelle", + "pt": 2, }, - "value": 1349, + "value": 1584, }, { "category": "Pet", "configData": { - "id": "Holographic Dragon", + "id": "Huge Lemur", "pt": 2, + "sh": true, }, - "value": 1120, + "value": 43, }, { "category": "Pet", "configData": { - "id": "Stealth Cat", - "pt": 1, + "id": "Titanic Guilded Raven", + "pt": 2, "sh": true, }, - "value": 41338109, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Candycane Unicorn", + "id": "Huge Gazelle", + "sh": true, }, - "value": 17386, + "value": 362, }, { - "category": "Pet", + "category": "HPillar", "configData": { - "id": "Goblin", + "id": "Frankenpup Dog", "pt": 1, }, - "value": 1387, + "value": 1072351, }, { "category": "Pet", "configData": { - "id": "Hacker Cat", - "pt": 2, - "sh": true, + "id": "Gargantuan Doge", + "pt": 1, }, - "value": 25409, + "value": 13, }, { "category": "Pet", "configData": { - "id": "Wicked Empyrean Dominus", + "id": "Titanic Guilded Raven", "pt": 2, }, - "value": 5162, + "value": 66, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Monkey", - "pt": 1, + "id": "Reaper", }, - "value": 36681, + "value": 3348, }, { "category": "Pet", "configData": { - "id": "Huge Empyrean Axolotl", + "id": "Titanic Spectral Deer", }, - "value": 11087414740, + "value": 126, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Holographic Axolotl", - "pt": 2, + "id": "Patchwork", }, - "value": 17748, + "value": 2088, }, { "category": "Pet", "configData": { - "id": "Pastel Sock Bunny", + "id": "Huge Mummy Cow", }, - "value": 508, + "value": 856, }, { "category": "Pet", "configData": { - "id": "Huge Atomic Axolotl", - "pt": 2, + "id": "Huge Mummy Cow", + "pt": 1, }, - "value": 5793264810, + "value": 350, }, { "category": "Pet", "configData": { - "id": "Empyrean Axolotl", - "sh": true, + "id": "Huge Mummy Cow", + "pt": 2, }, - "value": 9695, + "value": 137, }, { "category": "Pet", "configData": { - "id": "Wireframe Cat", + "id": "Titanic Spectral Deer", + "pt": 1, }, - "value": 122, + "value": 14, }, { "category": "Pet", "configData": { - "id": "Heavenly Peacock", + "id": "Titanic Spectral Deer", "pt": 2, - "sh": true, }, - "value": 64000, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Shadow Shark", - "pt": 2, + "id": "Huge African Wild Dog", + "pt": 1, + "sh": true, }, - "value": 8339, + "value": 38, }, { "category": "Pet", "configData": { - "id": "Shadow Dragon", - "pt": 1, + "id": "Huge African Wild Dog", + "pt": 2, + "sh": true, }, - "value": 32519, + "value": 32, }, { "category": "Pet", "configData": { - "id": "Color Ruins Monkey", + "id": "Huge African Wild Dog", + "sh": true, }, - "value": 493, + "value": 257, }, { "category": "Pet", "configData": { - "id": "Wireframe Cat", + "id": "Huge Gorilla", "pt": 2, "sh": true, }, - "value": 348, + "value": 30, }, { "category": "Pet", "configData": { - "id": "Void Alien", + "id": "Huge Evil Raven", }, - "value": 2381, + "value": 1617028, }, { "category": "Pet", "configData": { - "id": "Haxigator", + "id": "Titanic Pumpkin Dog", }, - "value": 2503, + "value": 7312, }, { "category": "Pet", "configData": { - "id": "Tiger", + "id": "Huge Spectral Deer", "pt": 2, "sh": true, }, - "value": 3480, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Wireframe Cat", - "pt": 1, + "id": "Gargantuan Skelemelon", "sh": true, }, - "value": 21, - }, - { - "category": "Pet", - "configData": { - "id": "Wicked Empyrean Dominus", - "pt": 1, - }, - "value": 3743, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Wireframe Dog", - "pt": 1, + "id": "Huge Sloth", + "sh": true, }, - "value": 723, + "value": 89, }, { "category": "Pet", "configData": { - "id": "Ender Goat", + "id": "Huge Sloth", "pt": 2, "sh": true, }, - "value": 1279, + "value": 13, }, { "category": "Pet", "configData": { - "id": "Huge Monkey", + "id": "Huge Sloth", + "pt": 1, "sh": true, }, - "value": 15000000000, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Quantum Fox", + "id": "Huge Moray Eel", "pt": 2, + "sh": true, }, - "value": 4995, + "value": 19, }, { - "category": "Pet", + "category": "EggHalloween", "configData": { - "id": "Black Hole Angelus", + "id": "Clown Egg", }, - "value": 11208, + "value": 16003812, }, { "category": "Pet", "configData": { - "id": "Heavenly Dove", + "id": "Huge Zombie Pig", }, - "value": 453, + "value": 26051, }, { "category": "Pet", "configData": { - "id": "Wizard Westie", - "sh": true, + "id": "Huge Specter Owl", }, - "value": 392, + "value": 1072, }, { "category": "Pet", "configData": { - "id": "Holographic Corgi", + "id": "Huge Zombie Pig", "pt": 2, }, - "value": 5960, + "value": 3913, }, { "category": "Pet", "configData": { - "id": "Huge Atomic Forged Shark", - "pt": 2, - "sh": true, + "id": "Huge Shark Cat", }, - "value": 4620000007, + "value": 678, }, { "category": "Pet", "configData": { - "id": "Black Hole Angelus", + "id": "Huge Zombie Pig", "pt": 1, }, - "value": 971371, + "value": 12981, }, { "category": "Pet", "configData": { - "id": "Enchanted Raccoon", - "sh": true, + "id": "Huge Specter Owl", + "pt": 1, }, - "value": 736, + "value": 319, }, { "category": "Pet", "configData": { - "id": "Atomic Monkey", + "id": "Huge Shark Cat", + "pt": 1, }, - "value": 212, + "value": 143, }, { "category": "Pet", "configData": { - "id": "Shadow Bull", - "pt": 1, + "id": "Huge Specter Owl", + "sh": true, }, - "value": 826, + "value": 21, }, { "category": "Pet", "configData": { - "id": "Shadow Shark", - "pt": 1, + "id": "Huge Zombie Pig", + "sh": true, }, - "value": 7316, + "value": 767, }, { "category": "Pet", "configData": { - "id": "Huge Black Hole Axolotl", + "id": "Huge Shark Cat", "sh": true, }, - "value": 473120340, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Shadow Dominus", + "id": "Huge Specter Owl", + "pt": 2, }, - "value": 923, + "value": 60, }, { "category": "Pet", "configData": { - "id": "Rock Dragon", + "id": "Huge Shark Cat", "pt": 2, + }, + "value": 21, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Zombie Pig", + "pt": 1, "sh": true, }, - "value": 240000, + "value": 177, }, { "category": "Pet", "configData": { - "id": "Glitched Immortuus", + "id": "Huge Skeleton Snake", }, - "value": 3001, + "value": 541923, }, { "category": "Pet", "configData": { - "id": "Hacked Cat", - "pt": 2, + "id": "Huge Skeleton Snake", + "pt": 1, }, - "value": 1036, + "value": 69, }, { "category": "Pet", "configData": { - "id": "Wireframe Dog", + "id": "Huge Skeleton Snake", "pt": 1, "sh": true, }, - "value": 46, + "value": 51, }, { "category": "Pet", "configData": { - "id": "Exquisite Parrot", + "id": "Huge Skeleton Snake", "pt": 2, - "sh": true, }, - "value": 1379999997, + "value": 44, }, { "category": "Pet", "configData": { - "id": "Glitched Dog", - "pt": 2, + "id": "Huge Skeleton Snake", + "sh": true, }, - "value": 1753, + "value": 39, }, { "category": "Pet", "configData": { - "id": "Huge Skateboard Bulldog", + "id": "Huge Skeleton Snake", + "pt": 2, + "sh": true, }, - "value": 36528567, + "value": 44, }, { "category": "Pet", "configData": { - "id": "Huge Elegant Eagle", - "pt": 1, + "id": "Huge Zombie Pig", + "pt": 2, + "sh": true, }, - "value": 69275172, + "value": 34, }, { "category": "Pet", "configData": { - "id": "Huge Black Hole Kitsune", + "id": "Huge Gazelle", + "pt": 1, + "sh": true, }, - "value": 226791912, + "value": 37, }, { "category": "Pet", "configData": { - "id": "Shadow Dolphin", + "id": "Huge Hacked Reaper", + "pt": 2, "sh": true, }, - "value": 13060, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Tropical Toucan", + "id": "Titanic Witch Wolf", }, - "value": 33683040, + "value": 129, }, { "category": "Pet", "configData": { - "id": "Glitched Dragon", + "id": "Gargantuan Frankenpup Dog", }, - "value": 1197, + "value": 33, }, { "category": "Pet", "configData": { - "id": "Pixie Fox", + "id": "Huge Specter Owl", "pt": 1, + "sh": true, }, - "value": 427, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Glitched Cat", + "id": "Huge Moray Eel", + "pt": 1, + "sh": true, }, - "value": 825, + "value": 32, }, { "category": "Pet", "configData": { - "id": "Huge Inferno Stealth Cat", + "id": "Titanic Crocodilo Brainrot", + "pt": 2, "sh": true, }, - "value": 24939000000, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Reindeer Corgi", + "id": "Gargantuan Skelemelon", "pt": 2, - "sh": true, }, - "value": 350000000, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Popcorn Cat", + "id": "Huge Gazelle", + "pt": 2, + "sh": true, }, - "value": 634, + "value": 37, }, { "category": "Pet", "configData": { - "id": "Virus Griffin", - "pt": 1, + "id": "Titanic Blobenstein", + "pt": 2, "sh": true, }, - "value": 71744000, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Haxolotl", - "pt": 1, + "id": "Huge Panda", + "pt": 2, }, - "value": 1144, + "value": 8, }, { "category": "Pet", "configData": { - "id": "Leprechaun Cat", + "id": "Titanic Guilded Raven", + "pt": 1, "sh": true, }, - "value": 702, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Hacked Computer", + "id": "Persimmony Cricket", "pt": 2, }, - "value": 207, + "value": 91402529, }, { "category": "Pet", "configData": { - "id": "Ninja Raccoon", + "id": "Persimmony Cricket", + "pt": 1, }, - "value": 465, + "value": 177441304, }, { "category": "Pet", "configData": { - "id": "Shadow Wolf", + "id": "Persimmony Cricket", + "sh": true, }, - "value": 1542, + "value": 5456842, }, { "category": "Pet", "configData": { - "id": "Shadow Bull", - "pt": 2, + "id": "Strawhat Tanuki", }, - "value": 5779, + "value": 2690044661, }, { "category": "Pet", "configData": { - "id": "Huge Party Dragon", - "pt": 2, + "id": "Persimmony Cricket", }, - "value": 226665458, + "value": 3412806705, }, { "category": "Pet", "configData": { - "id": "Black Hole Kitsune", - "sh": true, + "id": "Strawhat Tanuki", + "pt": 1, }, - "value": 12121050, + "value": 154937505, }, { "category": "Pet", "configData": { - "id": "Quantum Dominus", + "id": "Persimmony Cricket", "pt": 2, + "sh": true, }, - "value": 34528, + "value": 148042, }, { "category": "Pet", "configData": { - "id": "Corrupt Octopus", - "pt": 1, - "sh": true, + "id": "Strawhat Tanuki", + "pt": 2, }, - "value": 3598, + "value": 81142935, }, { "category": "Pet", "configData": { - "id": "Fragmented Dominus", - "pt": 1, + "id": "Chesnut Chipmunk", + "pt": 2, }, - "value": 935, + "value": 26978171, }, { "category": "Pet", "configData": { - "id": "Glitched Unicorn", - "pt": 1, + "id": "Chesnut Chipmunk", }, - "value": 2871, + "value": 940164273, }, { "category": "Pet", "configData": { - "id": "Prison Monkey", + "id": "Chesnut Chipmunk", "pt": 1, }, - "value": 28, + "value": 50261350, }, { "category": "Pet", "configData": { - "id": "Huge Dark Lord", + "id": "Chesnut Chipmunk", "sh": true, }, - "value": 356256833, + "value": 1585842, }, { "category": "Pet", "configData": { - "id": "Pop Cat", + "id": "Persimmony Cricket", + "pt": 1, "sh": true, }, - "value": 39129486, + "value": 298105, }, { "category": "Pet", "configData": { - "id": "Huge 404 Demon", + "id": "Cinnamon Bunny", }, - "value": 97231762, + "value": 54414637, }, { "category": "Pet", "configData": { - "id": "Void Alien", - "pt": 2, - "sh": true, + "id": "Huge Chesnut Chipmunk", }, - "value": 21781, + "value": 36760, }, { "category": "Pet", "configData": { - "id": "Zombie Squirrel", - "pt": 2, + "id": "Huge Leafy Deer", + "pt": 1, }, - "value": 628, + "value": 2248, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Black Hole Axolotl", - "sh": true, + "id": "Exclusive Egg 57", }, - "value": 9816480, + "value": 963575, }, { "category": "Pet", "configData": { - "id": "Frostbyte Snowman", + "id": "Strawhat Tanuki", "pt": 1, + "sh": true, }, - "value": 42790, + "value": 236996, }, { "category": "Pet", "configData": { - "id": "Fragmented Pterodactyl", - "pt": 2, + "id": "Chesnut Chipmunk", + "pt": 1, + "sh": true, }, - "value": 1551, + "value": 90347, }, { "category": "Pet", "configData": { - "id": "Raccoon", - "pt": 1, + "id": "Strawhat Tanuki", + "sh": true, }, - "value": 82322, + "value": 4264070, }, { "category": "Pet", "configData": { - "id": "Shadow Wolf", - "pt": 2, + "id": "Honey Bear", }, - "value": 4257, + "value": 128925, }, { "category": "Pet", "configData": { - "id": "Black Hole Kitsune", - "pt": 2, + "id": "Huge Chesnut Chipmunk", + "pt": 1, }, - "value": 27372785, + "value": 18009, }, { "category": "Pet", "configData": { - "id": "Glitched Dominus", + "id": "Huge Chesnut Chipmunk", + "pt": 2, }, - "value": 3787, + "value": 5187, }, { "category": "Pet", "configData": { - "id": "Glitched Unicorn", - "sh": true, + "id": "Huge Leafy Deer", }, - "value": 3110, + "value": 6222, }, { "category": "Pet", "configData": { - "id": "Cheerful Yeti", + "id": "Cinnamon Bunny", "pt": 1, }, - "value": 490, + "value": 2848995, }, { "category": "Pet", "configData": { - "id": "Hell Fox", - "pt": 1, + "id": "Huge Cinnamon Bunny", }, - "value": 117, + "value": 21713, }, { "category": "Pet", "configData": { - "id": "Quantum Griffin", - "pt": 2, - "sh": true, + "id": "Molten Pumpkin Cat", }, - "value": 1292000, + "value": 77368, }, { "category": "Pet", "configData": { - "id": "Black Hole Immortuus", + "id": "Chesnut Chipmunk", "pt": 2, "sh": true, }, - "value": 131090089, + "value": 40922, }, { "category": "Pet", "configData": { - "id": "Fragmented Pterodactyl", - "pt": 1, + "id": "Cinnamon Bunny", + "pt": 2, }, - "value": 34615, + "value": 1592618, }, { "category": "Pet", "configData": { - "id": "Shadow Dominus", - "pt": 1, + "id": "Molten Pumpkin Cat", + "pt": 2, }, - "value": 1987, + "value": 4031, }, { "category": "Pet", "configData": { - "id": "Hacked Raccoon", - "pt": 2, + "id": "Leafstorm Wolf", }, - "value": 2440, + "value": 30904, }, { "category": "Pet", "configData": { - "id": "Atomic Monkey", - "pt": 1, + "id": "Honey Bear", + "sh": true, }, - "value": 271, + "value": 3759, }, { "category": "Pet", "configData": { - "id": "Chroma Tiger", + "id": "Leafstorm Wolf", "pt": 2, - "sh": true, }, - "value": 151441, + "value": 1774, }, { "category": "Pet", "configData": { - "id": "Bloo Cat", + "id": "Molten Pumpkin Cat", "sh": true, }, - "value": 17739824, + "value": 2741, }, { "category": "Pet", "configData": { - "id": "Titanic Pink Balloon", + "id": "Huge Leafstorm Wolf", }, - "value": 21000000015, + "value": 5632, }, { "category": "Pet", "configData": { - "id": "Atomic Axolotl", + "id": "Honey Bear", "pt": 2, - "sh": true, }, - "value": 41233, + "value": 6664, }, { "category": "Pet", "configData": { - "id": "Rave Unicorn", + "id": "Huge Honey Bear", }, - "value": 150, + "value": 18002, }, { "category": "Pet", "configData": { - "id": "Quantum Goat", + "id": "Leafstorm Wolf", + "sh": true, }, - "value": 6730, + "value": 1127, }, { "category": "Pet", "configData": { - "id": "Amethyst Dragon", - "pt": 2, + "id": "Huge Honey Bear", + "sh": true, }, - "value": 35695052, + "value": 748, }, { "category": "Pet", "configData": { - "id": "Void Alien", - "pt": 1, - "sh": true, + "id": "Huge Leafy Deer", + "pt": 2, }, - "value": 14530, + "value": 612, }, { "category": "Pet", "configData": { - "id": "Basketball Retriever", - "pt": 2, + "id": "Titanic Dark Fox", }, - "value": 3930, + "value": 553, }, { "category": "Pet", "configData": { - "id": "Shadow Wolf", - "pt": 2, + "id": "Cinnamon Bunny", "sh": true, }, - "value": 60009, + "value": 88461, }, { "category": "Pet", "configData": { - "id": "Dominus Serpents", - "sh": true, + "id": "Titanic Spirit Mushroom", }, - "value": 4479, + "value": 1334, }, { "category": "Pet", "configData": { - "id": "Haxigator", - "pt": 2, + "id": "Huge Chesnut Chipmunk", + "sh": true, }, - "value": 1602, + "value": 1085, }, { "category": "Pet", "configData": { - "id": "404 Demon", + "id": "Titanic Dark Fox", "pt": 1, }, - "value": 1839, + "value": 192, }, { "category": "Pet", "configData": { - "id": "Black Bear", + "id": "Strawhat Tanuki", "pt": 2, + "sh": true, }, - "value": 14, + "value": 129957, }, { "category": "Pet", "configData": { - "id": "Atomic Monkey", + "id": "Huge Chesnut Chipmunk", + "pt": 1, "sh": true, }, - "value": 2451, + "value": 250, }, { "category": "Pet", "configData": { - "id": "Relic Bear", - "sh": true, + "id": "Huge Leafstorm Wolf", + "pt": 2, }, - "value": 82356, + "value": 249, }, { "category": "Pet", "configData": { - "id": "Huge Black Hole Kitsune", + "id": "Huge Cinnamon Bunny", "sh": true, }, - "value": 771150290, + "value": 499, }, { "category": "Pet", "configData": { - "id": "Titanic Black Hole Angelus", + "id": "Huge Honey Bear", + "pt": 2, }, - "value": 24216671410, + "value": 600, }, { "category": "Pet", "configData": { - "id": "Glitched Phoenix", + "id": "Huge Cinnamon Bunny", "pt": 1, - "sh": true, }, - "value": 500000, + "value": 965, }, { "category": "Pet", "configData": { - "id": "Fire Bat", - "pt": 1, + "id": "Huge Leafy Deer", "sh": true, }, - "value": 183, + "value": 131, }, { "category": "Pet", "configData": { - "id": "Titanic Party Cat", + "id": "Titanic Dark Fox", "pt": 2, }, - "value": 1000000000, + "value": 47, }, { "category": "Pet", "configData": { - "id": "Atomic Monkey", - "pt": 1, + "id": "Huge Leafstorm Wolf", "sh": true, }, - "value": 18197, + "value": 279, }, { "category": "Pet", "configData": { - "id": "Dominus Serpents", + "id": "Cinnamon Bunny", "pt": 1, "sh": true, }, - "value": 230, + "value": 7085, }, { "category": "Pet", "configData": { - "id": "Quantum Goat", + "id": "Huge Cinnamon Bunny", "pt": 2, - "sh": true, }, - "value": 55000, + "value": 347, }, { "category": "Pet", "configData": { - "id": "Gingerbread Cat", + "id": "Molten Pumpkin Cat", "pt": 2, "sh": true, }, - "value": 36832000, + "value": 242, }, { "category": "Pet", "configData": { - "id": "Police Dog", - "pt": 1, + "id": "Honey Bear", + "pt": 2, + "sh": true, }, - "value": 5916, + "value": 329, }, { "category": "Pet", "configData": { - "id": "Huge Black Hole Kitsune", - "pt": 2, + "id": "Titanic Chesnut Chipmunk", }, - "value": 1544458073, + "value": 1384, }, { "category": "Pet", "configData": { - "id": "Huge Tiki Dominus", - "pt": 1, + "id": "Titanic Spirit Mushroom", + "pt": 2, }, - "value": 487047823, + "value": 43, }, { "category": "Pet", "configData": { - "id": "404 Demon", + "id": "Huge Cinnamon Bunny", "pt": 2, "sh": true, }, - "value": 226523, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Fragmented Pterodactyl", - "sh": true, + "id": "Maple Owl", }, - "value": 949, + "value": 2737379, }, { "category": "Pet", "configData": { - "id": "Star Surfer", + "id": "Leafstorm Wolf", + "pt": 2, "sh": true, }, - "value": 7000, + "value": 85, }, { "category": "Pet", "configData": { - "id": "Glitched Cat", - "sh": true, + "id": "Huge Maple Owl", }, - "value": 23863, + "value": 256644, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Parrot", - "pt": 1, - "sh": true, + "id": "Leafy Deer", }, - "value": 10000, + "value": 236576, }, { "category": "Pet", "configData": { - "id": "Huge Kangaroo", + "id": "Huge Maple Owl", + "pt": 1, }, - "value": 34829645, + "value": 12713, }, { "category": "Pet", "configData": { - "id": "Black Hole Kitsune", - "pt": 2, - "sh": true, + "id": "Maple Owl", + "pt": 1, }, - "value": 237353599, + "value": 153535, }, { "category": "Pet", "configData": { - "id": "404 Demon", + "id": "Huge Cinnamon Bunny", + "pt": 1, "sh": true, }, - "value": 4701, + "value": 19, }, { "category": "Pet", "configData": { - "id": "Huge Lunar Moth", + "id": "Maple Owl", + "pt": 2, }, - "value": 39585046, + "value": 78536, }, { "category": "Pet", "configData": { - "id": "Huge Party Penguin", - "pt": 2, + "id": "Leafy Deer", + "pt": 1, }, - "value": 2331410871, + "value": 16223, }, { "category": "Pet", "configData": { - "id": "Jelly Piggy", - "pt": 2, + "id": "Huge Leafy Deer", + "pt": 1, "sh": true, }, - "value": 592799998, + "value": 31, }, { "category": "Pet", "configData": { - "id": "Huge Elemental Phoenix", + "id": "Maple Owl", "pt": 1, "sh": true, }, - "value": 6152851097, + "value": 1191, }, { "category": "Pet", "configData": { - "id": "Huge Arcade Dragon", - "pt": 1, + "id": "Huge Maple Owl", + "sh": true, }, - "value": 514465807, + "value": 5776, }, { "category": "Pet", "configData": { - "id": "Glitched Cat", - "pt": 1, + "id": "Titanic Spirit Mushroom", "sh": true, }, - "value": 1000, + "value": 34, }, { "category": "Pet", "configData": { - "id": "Chick", + "id": "Maple Owl", "sh": true, }, - "value": 2292, + "value": 5296, }, { "category": "Pet", "configData": { - "id": "Panda", + "id": "Huge Maple Owl", + "pt": 1, + "sh": true, }, - "value": 78, + "value": 281, }, { "category": "Pet", "configData": { - "id": "Hell Spider", - "pt": 1, + "id": "Leafy Deer", + "pt": 2, }, - "value": 1775, + "value": 8305, }, { "category": "Pet", "configData": { - "id": "Huge Kangaroo", - "pt": 1, + "id": "Huge Honey Bear", + "pt": 2, "sh": true, }, - "value": 238535977, + "value": 17, }, { "category": "Pet", "configData": { - "id": "Shadow Wolf", + "id": "Leafy Deer", "sh": true, }, - "value": 12312, + "value": 619, }, { "category": "Pet", "configData": { - "id": "Huge Neon Twilight Wolf", + "id": "Gargantuan Evil Scarecrow Pumpkin", }, - "value": 215879391, + "value": 128, }, { "category": "Pet", "configData": { - "id": "Huge Purple Dragon", + "id": "Titanic Chesnut Chipmunk", "pt": 2, }, - "value": 1034354774, + "value": 30, }, { "category": "Pet", "configData": { - "id": "Ender Goat", + "id": "Huge Maple Owl", + "pt": 2, }, - "value": 1017, + "value": 4716, }, { "category": "Pet", "configData": { - "id": "Police Dog", + "id": "Cinnamon Bunny", "pt": 2, + "sh": true, }, - "value": 1335, + "value": 3489, }, { "category": "Pet", "configData": { - "id": "Huge Bearserker", + "id": "Titanic Chesnut Chipmunk", + "pt": 1, }, - "value": 158564341, + "value": 70, }, { "category": "Pet", "configData": { - "id": "Creepy Yeti", + "id": "Huge Maple Owl", + "pt": 2, + "sh": true, }, - "value": 265, + "value": 94, }, { "category": "Pet", "configData": { - "id": "Night Terror Cat", - "pt": 1, + "id": "Maple Owl", + "pt": 2, + "sh": true, }, - "value": 992, + "value": 571, }, { "category": "Pet", "configData": { - "id": "Floatie Ducky", + "id": "Leafy Deer", + "pt": 1, "sh": true, }, - "value": 2605, + "value": 595, }, { "category": "Pet", "configData": { - "id": "Creepy Yeti", - "pt": 2, + "id": "Gargantuan Leafy Deer", }, - "value": 509, + "value": 72, }, { "category": "Pet", "configData": { - "id": "Ender Slime", + "id": "Huge Chesnut Chipmunk", "pt": 2, + "sh": true, }, - "value": 410, + "value": 46, }, { "category": "Pet", "configData": { - "id": "Creepy Yeti", - "pt": 1, + "id": "Titanic Chesnut Chipmunk", + "sh": true, }, - "value": 251, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Night Terror Cat", + "id": "Leafy Deer", + "pt": 2, "sh": true, }, - "value": 1902, + "value": 174, }, { "category": "Pet", "configData": { - "id": "Ducky", + "id": "Huge Leafstorm Wolf", + "pt": 2, "sh": true, }, - "value": 1929, + "value": 37, }, { "category": "Pet", "configData": { - "id": "Ender Goat", + "id": "Titanic Dark Fox", "sh": true, }, - "value": 1825, + "value": 17, }, { "category": "Pet", "configData": { - "id": "Train Conductor Dog", + "id": "Gargantuan Leafy Deer", "sh": true, }, - "value": 205, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Plague Dragon", + "id": "Gargantuan Doge", + "pt": 2, }, - "value": 5009, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Creepy Wolf", + "id": "Huge Leafy Deer", + "pt": 2, + "sh": true, }, - "value": 2572, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Night Terror Cat", + "id": "Gargantuan Leafy Deer", "pt": 2, - "sh": true, }, - "value": 1491, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Blazing Shark", + "id": "Titanic Dark Fox", + "pt": 2, "sh": true, }, - "value": 11175675, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Knight Beagle", + "id": "Titanic Dark Fox", + "pt": 1, + "sh": true, }, - "value": 310, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Creepy Wolf", - "pt": 2, + "id": "Huge Strawhat Tanuki", }, - "value": 1049, + "value": 12436, }, { "category": "Pet", "configData": { - "id": "Ender Hades", - "pt": 2, + "id": "Huge Strawhat Tanuki", + "sh": true, }, - "value": 87591, + "value": 277, }, { "category": "Pet", "configData": { - "id": "Creepy Wolf", - "pt": 1, + "id": "Huge Strawhat Tanuki", + "pt": 2, }, - "value": 3521, + "value": 191, }, { "category": "Pet", "configData": { - "id": "Huge Bloo Cat", - "pt": 1, + "id": "Titanic Persimmony Cricket", }, - "value": 272347454, + "value": 1606, }, { "category": "Pet", "configData": { - "id": "Huge Neon Griffin", - "pt": 2, + "id": "Huge Strawhat Tanuki", + "pt": 1, }, - "value": 1986560054, + "value": 555, }, { "category": "Pet", "configData": { - "id": "Huge Pixie Fox", + "id": "Titanic Persimmony Cricket", + "pt": 1, }, - "value": 81358099, + "value": 81, }, { "category": "Pet", "configData": { - "id": "Huge Arcade Cat", + "id": "Titanic Persimmony Cricket", "pt": 2, }, - "value": 1428707476, + "value": 27, }, { "category": "Pet", "configData": { - "id": "Ender Hades", + "id": "Huge Strawhat Tanuki", "pt": 1, + "sh": true, }, - "value": 20737, + "value": 14, }, { "category": "Pet", "configData": { - "id": "Ender Slime", + "id": "Huge Strawhat Tanuki", "pt": 2, "sh": true, }, - "value": 214, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Creepy Yeti", + "id": "Gargantuan Evil Scarecrow Pumpkin", "pt": 2, - "sh": true, }, - "value": 172, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Mosaic Dove", + "id": "Gargantuan Doge", + "sh": true, }, - "value": 4159743, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Colorful Rock", - "sh": true, + "id": "Gargantuan Leafy Deer", + "pt": 1, }, - "value": 329, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Creepy Wolf", - "pt": 2, + "id": "Titanic Persimmony Cricket", "sh": true, }, - "value": 18837, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Gummy Fox", - "pt": 2, - "sh": true, + "id": "Huge Forged Cyclops", }, - "value": 66520, + "value": 3017, }, { "category": "Pet", "configData": { - "id": "Electric Bunny", + "id": "Huge Forged Robot", "pt": 1, }, - "value": 11802, + "value": 329, }, { "category": "Pet", "configData": { - "id": "Huge Plague Dragon", - "sh": true, + "id": "Huge Forged Robot", + "pt": 2, }, - "value": 349978034, + "value": 142, }, { "category": "Pet", "configData": { - "id": "Cyber Ducky", - "sh": true, + "id": "Huge Forged Robot", }, - "value": 110, + "value": 725, }, { "category": "Pet", "configData": { - "id": "Huge Bloo Cat", + "id": "Huge Panda", "sh": true, }, - "value": 1027969554, + "value": 8, }, { "category": "Pet", "configData": { - "id": "Evil Imp", + "id": "Titanic Quokka", "pt": 1, + "sh": true, }, - "value": 512, + "value": 12, + }, + { + "category": "Currency", + "configData": { + "id": "GingerbreadCoins", + }, + "value": 236785043875786, + }, + { + "category": "Currency", + "configData": { + "id": "GingerbreadCoins2", + }, + "value": 727085151260962, + }, + { + "category": "Lootbox", + "configData": { + "id": "Candycane Gift", + }, + "value": 242449836, }, { "category": "Pet", "configData": { - "id": "Peppermint Angelus", + "id": "Lit Loris", }, - "value": 12190212, + "value": 53117030155, }, { "category": "Pet", "configData": { - "id": "Dog", + "id": "Festive Bunny", }, - "value": 3786, + "value": 21421542105, }, { "category": "Pet", "configData": { - "id": "Popcorn Cat", - "pt": 1, + "id": "Pajamas Shark", }, - "value": 540, + "value": 7969770911, }, { "category": "Pet", "configData": { - "id": "Huge Plague Dragon", + "id": "Festive Bunny", "pt": 1, - "sh": true, }, - "value": 686180305, + "value": 1714827415, }, { "category": "Pet", "configData": { - "id": "Electric Griffin", + "id": "Festive Bunny", "pt": 2, }, - "value": 1603, + "value": 1786028028, + }, + { + "category": "Misc", + "configData": { + "id": "Santa Hat", + }, + "value": 1033958712, }, { "category": "Pet", "configData": { - "id": "Ender Slime", - "pt": 1, + "id": "Pajamas Shark", "sh": true, }, - "value": 307, + "value": 34470304, }, { "category": "Pet", "configData": { - "id": "Corrupt Skeleton", + "id": "Festive Bunny", "pt": 1, "sh": true, }, - "value": 367, + "value": 8809335, }, { "category": "Pet", "configData": { - "id": "Plague Dragon", - "pt": 1, + "id": "Festive Bunny", "sh": true, }, - "value": 56151, + "value": 82827152, }, { "category": "Pet", "configData": { - "id": "Tech Ninja Red Panda", - "sh": true, + "id": "Hot Cocoa Cow", }, - "value": 2080, + "value": 443620081902, }, { "category": "Pet", "configData": { - "id": "Titanic Rich Cat", + "id": "Pajamas Shark", + "pt": 1, }, - "value": 14808101361, + "value": 760158908, }, { "category": "Pet", "configData": { - "id": "Lunar Fox", + "id": "Holly Capybara", + "pt": 2, }, - "value": 171, + "value": 11967260815, }, { "category": "Pet", "configData": { - "id": "Frostbyte Cat", + "id": "Pajamas Shark", "pt": 2, "sh": true, }, - "value": 10, + "value": 7134907, }, { "category": "Pet", "configData": { - "id": "Nuclear Squirrel", + "id": "Holly Capybara", }, - "value": 975, + "value": 203652213639, }, { "category": "Pet", "configData": { - "id": "Huge Pixel Cat", - "pt": 2, + "id": "Hot Cocoa Cow", + "pt": 1, }, - "value": 362963252, + "value": 26789543478, }, { "category": "Pet", "configData": { - "id": "Titanic Shiba", + "id": "Lit Loris", + "pt": 1, }, - "value": 12507134797, + "value": 2814264310, }, { "category": "Pet", "configData": { - "id": "Titanic Blobfish", + "id": "Pajamas Shark", + "pt": 2, }, - "value": 17335360139, + "value": 936566914, }, { "category": "Pet", "configData": { - "id": "African Wild Dog", - "sh": true, + "id": "Hot Cocoa Cow", + "pt": 2, }, - "value": 1819, + "value": 21572429827, }, { "category": "Pet", "configData": { - "id": "Bejeweled Lion", + "id": "Festive Bunny", "pt": 2, + "sh": true, }, - "value": 23591260, + "value": 13169630, }, { - "category": "Pet", + "category": "Booth", "configData": { - "id": "Huge Stunt Unicorn", + "id": "Elf", }, - "value": 9333239138, + "value": 505586, }, { "category": "Pet", "configData": { - "id": "Huge Black Hole Kitsune", - "pt": 2, - "sh": true, + "id": "Holly Capybara", + "pt": 1, }, - "value": 8869600075, + "value": 13318305450, }, { "category": "Pet", "configData": { - "id": "Comet Agony", - "pt": 2, + "id": "Pajamas Shark", + "pt": 1, "sh": true, }, - "value": 20800, + "value": 4302484, }, { "category": "Pet", "configData": { - "id": "Titanic Black Hole Angelus", - "sh": true, + "id": "Evergreen Unicorn", }, - "value": 4166600043, + "value": 46177485440, }, { "category": "Pet", "configData": { - "id": "Abyssal Axolotl", + "id": "Evergreen Unicorn", "pt": 1, - "sh": true, }, - "value": 68, + "value": 2775130016, + }, + { + "category": "Lootbox", + "configData": { + "id": "Santa Gift", + }, + "value": 61652449, }, { "category": "Pet", "configData": { - "id": "Black Hole Axolotl", - "pt": 2, - "sh": true, + "id": "Ice Cube Penguin", }, - "value": 120417680, + "value": 337761, }, { "category": "Pet", "configData": { - "id": "Bejeweled Lion", + "id": "Huge Sleigh Axolotl", }, - "value": 8451219, + "value": 12125, }, { "category": "Pet", "configData": { - "id": "Green Fish", + "id": "Snowflake Lattice Tiger", "pt": 2, - "sh": true, }, - "value": 25000, + "value": 10132, }, { "category": "Pet", "configData": { - "id": "Night Terror Dog", + "id": "Snowflake Lattice Tiger", "sh": true, }, - "value": 1106, + "value": 6636, }, { "category": "Pet", "configData": { - "id": "Bejeweled Deer", + "id": "Sleigh Axolotl", }, - "value": 4887582, + "value": 90692, }, { "category": "Pet", "configData": { - "id": "Abstract Agony", - "pt": 2, - "sh": true, + "id": "Snowflake Lattice Tiger", }, - "value": 6921, + "value": 215786, }, { "category": "Pet", "configData": { - "id": "Huge Night Terror Cat", + "id": "Huge Holiday Owl", + "pt": 2, }, - "value": 69201696, + "value": 22736, }, { "category": "Pet", "configData": { - "id": "Huge Elegant Eagle", - "sh": true, + "id": "Huge Candycane Unicorn", }, - "value": 503793734, + "value": 40031, }, { "category": "Pet", "configData": { - "id": "Night Terror Dog", - "pt": 2, + "id": "Deerserker", }, - "value": 269, + "value": 767373147, }, { "category": "Pet", "configData": { - "id": "Huge Pastel Elephant", - "pt": 1, + "id": "Candycane Kitsune", }, - "value": 323377536, + "value": 375132, }, { "category": "Pet", "configData": { - "id": "Evil Gorilla", - "pt": 2, + "id": "Hot Cocoa Cow", + "pt": 1, + "sh": true, }, - "value": 1722, + "value": 131799734, }, { "category": "Pet", "configData": { - "id": "Evil Gorilla", - "sh": true, + "id": "Gingerbread Angelus", }, - "value": 1280, + "value": 7435334, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Zombie Bull", - "sh": true, + "id": "Exclusive Egg 58", }, - "value": 24932, + "value": 2929231, }, { "category": "Pet", "configData": { - "id": "Puurple Cat", - "pt": 1, + "id": "Hot Cocoa Cow", "sh": true, }, - "value": 79153730, + "value": 1748418577, }, { "category": "Pet", "configData": { - "id": "Pumpkin Scarecrow", + "id": "Evergreen Unicorn", + "pt": 2, }, - "value": 262, + "value": 2157927922, }, { "category": "Pet", "configData": { - "id": "Puurple Cat", + "id": "Lit Loris", "pt": 2, }, - "value": 21140592, + "value": 1723459625, }, { "category": "Pet", "configData": { - "id": "Corrupt Cat", - "pt": 1, + "id": "Huge Ice Cube Penguin", }, - "value": 1466, + "value": 39519, }, { "category": "Pet", "configData": { - "id": "Evil Gorilla", - "pt": 2, + "id": "Lit Loris", "sh": true, }, - "value": 2738, + "value": 182810666, }, { "category": "Pet", "configData": { - "id": "Puurple Cat", + "id": "Deerserker", "pt": 1, }, - "value": 9122756, + "value": 48759267, }, { "category": "Pet", "configData": { - "id": "Evil Gorilla", - "pt": 1, + "id": "Ice Cube Penguin", "sh": true, }, - "value": 17723, + "value": 9566, }, { "category": "Pet", "configData": { - "id": "Pastel Goat", - "pt": 2, + "id": "Titanic Snow Globe Snowman", }, - "value": 1924, + "value": 2644, }, { "category": "Pet", "configData": { - "id": "Bejeweled Deer", + "id": "Sleigh Axolotl", "pt": 2, }, - "value": 13968652, + "value": 4518, }, { "category": "Pet", "configData": { - "id": "Tulip Hedgehog", + "id": "Sleigh Axolotl", + "sh": true, }, - "value": 197, + "value": 2948, }, { "category": "Pet", "configData": { - "id": "Night Terror Dog", + "id": "Ice Cube Penguin", "pt": 2, - "sh": true, }, - "value": 214, + "value": 15393, }, { "category": "Pet", "configData": { - "id": "Anime Agony", - "pt": 2, + "id": "Holly Capybara", + "sh": true, }, - "value": 44942259, + "value": 812320878, }, { "category": "Pet", "configData": { - "id": "Corrupt Cat", + "id": "Snowflake Dragon", "pt": 2, - "sh": true, }, - "value": 399126, + "value": 514753, }, { "category": "Pet", "configData": { - "id": "Mortuus", - "pt": 2, + "id": "Holiday Owl", }, - "value": 151, + "value": 8618762, }, { "category": "Pet", "configData": { - "id": "Bejeweled Deer", - "sh": true, + "id": "Merry Mule", }, - "value": 9218437, + "value": 1634110587, }, { "category": "Pet", "configData": { - "id": "Fragmented Dominus", + "id": "Snowflake Dragon", }, - "value": 2313, + "value": 7928816, }, { "category": "Pet", "configData": { - "id": "Bejeweled Deer", - "pt": 2, - "sh": true, + "id": "Huge Holiday Owl", }, - "value": 478160447, + "value": 564936, }, { "category": "Pet", "configData": { - "id": "Huge Night Terror Cat", - "sh": true, + "id": "Elf Golem", }, - "value": 458640290, + "value": 357383, }, { "category": "Pet", "configData": { - "id": "Huge Puurple Cat", - "pt": 1, + "id": "Hippomint", }, - "value": 607747285, + "value": 358698, }, { "category": "Pet", "configData": { - "id": "Gary the Snail", - "pt": 2, + "id": "Merry Mule", "sh": true, }, - "value": 890450190, + "value": 5919277, }, { "category": "Pet", "configData": { - "id": "Jolly Cat", - "pt": 2, - "sh": true, + "id": "Snowflake Dragon", + "pt": 1, }, - "value": 5842, + "value": 674217, }, { "category": "Pet", "configData": { - "id": "Huge Bejeweled Lion", - "sh": true, + "id": "Merry Mule", + "pt": 1, }, - "value": 2313634219, + "value": 118119579, }, { "category": "Pet", "configData": { - "id": "Huge Quantum Agony", - "pt": 2, + "id": "Evergreen Unicorn", "sh": true, }, - "value": 4689343991, + "value": 167490055, }, { "category": "Pet", "configData": { - "id": "Triceratops", + "id": "Krampus", + "pt": 1, + "sh": true, }, - "value": 141, + "value": 33689, }, { "category": "Pet", "configData": { - "id": "Colorful Fish", + "id": "Merry Mule", "pt": 2, - "sh": true, }, - "value": 37500, + "value": 87812263, }, { "category": "Pet", "configData": { - "id": "Huge Purple Dragon", - "sh": true, + "id": "Gingerbread Angelus", + "pt": 1, }, - "value": 837419866, + "value": 581653, }, { "category": "Pet", "configData": { - "id": "Huge Pumpkin Cat", + "id": "Huge Holiday Owl", "pt": 1, }, - "value": 132523739, + "value": 113482, }, { "category": "Pet", "configData": { - "id": "Huge Night Terror Cat", + "id": "Holly Capybara", "pt": 1, "sh": true, }, - "value": 1420394679, + "value": 68619636, }, { "category": "Pet", "configData": { - "id": "Fossil Dragon", + "id": "Deerserker", + "pt": 2, }, - "value": 552, + "value": 39356092, }, { "category": "Pet", "configData": { - "id": "Hi-Tech Bee", - "pt": 1, + "id": "Huge Ice Cube Penguin", "sh": true, }, - "value": 10000, + "value": 1626, }, { "category": "Pet", "configData": { - "id": "Quantum Griffin", + "id": "Candycane Kitsune", "sh": true, }, - "value": 36027, + "value": 1149, }, { "category": "Pet", "configData": { - "id": "Huge Pineapple Cat", + "id": "Holiday Owl", "pt": 1, }, - "value": 88635754, + "value": 691311, }, { "category": "Pet", "configData": { - "id": "Shadow Panther", - "pt": 2, + "id": "Merry Mule", + "pt": 1, + "sh": true, }, - "value": 734, + "value": 541125, }, { "category": "Pet", "configData": { - "id": "Prison Cow", + "id": "Krampus", }, - "value": 14, + "value": 28585100, }, { "category": "Pet", "configData": { - "id": "Robber Cat", - "pt": 2, + "id": "Huge Candycane Unicorn", + "pt": 1, }, - "value": 3893, + "value": 8076, }, { "category": "Pet", "configData": { - "id": "Evil Wolverine", + "id": "Evergreen Unicorn", + "pt": 1, "sh": true, }, - "value": 16234, + "value": 12316362, }, { "category": "Pet", "configData": { - "id": "Guard Corgi", + "id": "Gingerbread Angelus", + "pt": 2, }, - "value": 721, + "value": 462346, }, { "category": "Pet", "configData": { - "id": "Prison Cat", - "pt": 2, + "id": "Deerserker", + "pt": 1, + "sh": true, }, - "value": 247, + "value": 190233, }, { "category": "Pet", "configData": { - "id": "Nutcracker Cat", + "id": "Deerserker", "sh": true, }, - "value": 10127736, + "value": 2339295, }, { "category": "Pet", "configData": { - "id": "Detective Cat", + "id": "Huge Sleigh Axolotl", "pt": 2, - "sh": true, }, - "value": 415, + "value": 560, }, { "category": "Pet", "configData": { - "id": "Huge Pumpkin Cat", - "pt": 2, + "id": "Candycane Kitsune", + "pt": 1, }, - "value": 451367590, + "value": 69976, }, { "category": "Pet", "configData": { - "id": "Monkey", + "id": "Huge Sleigh Axolotl", + "sh": true, }, - "value": 6588, + "value": 565, }, { "category": "Pet", "configData": { - "id": "Beach Ball Dolphin", - "pt": 1, + "id": "Krampus", "sh": true, }, - "value": 8034, + "value": 164884, }, { "category": "Pet", "configData": { - "id": "Strawberry Cow", - "pt": 2, - "sh": true, + "id": "Huge Snowflake Dragon", }, - "value": 1000000, + "value": 12813, }, { "category": "Pet", "configData": { - "id": "Fortress Dog", + "id": "Holiday Owl", + "pt": 2, }, - "value": 82, + "value": 507616, }, { "category": "Pet", "configData": { - "id": "Prison Cat", + "id": "Hippomint", + "pt": 1, }, - "value": 107, + "value": 69204, }, { "category": "Pet", "configData": { - "id": "Titanic Monkey", - "sh": true, + "id": "Huge Evergreen Unicorn", }, - "value": 25000000000, + "value": 308722, }, { "category": "Pet", "configData": { - "id": "Prison Cow", - "sh": true, + "id": "Elf Golem", + "pt": 1, }, - "value": 28, + "value": 67812, }, { "category": "Pet", "configData": { - "id": "Detective Cat", + "id": "Holiday Owl", "sh": true, }, - "value": 13, + "value": 24050, }, { "category": "Pet", "configData": { - "id": "Huge Nuclear Wild Dog", + "id": "Holly Capybara", + "pt": 2, "sh": true, }, - "value": 87142427, + "value": 87715057, }, { "category": "Pet", "configData": { - "id": "Rave Corgi", - "pt": 1, + "id": "Krampus", + "pt": 2, }, - "value": 3969, + "value": 4237847, }, { "category": "Pet", "configData": { - "id": "Prison Monkey", + "id": "Krampus", "pt": 1, - "sh": true, }, - "value": 100000, + "value": 3645724, }, { "category": "Pet", "configData": { - "id": "Shark", - "pt": 2, + "id": "Snowflake Dragon", + "sh": true, }, - "value": 945, + "value": 24465, }, { "category": "Pet", "configData": { - "id": "Huge Prison Cat", + "id": "Huge Evergreen Unicorn", + "sh": true, }, - "value": 42260136, + "value": 2558, }, { "category": "Pet", "configData": { - "id": "Cold Butterfly", + "id": "Huge Deerserker", }, - "value": 821, + "value": 19326, }, { "category": "Pet", "configData": { - "id": "Huge Gamer Shiba", - "sh": true, + "id": "Huge Evergreen Unicorn", + "pt": 1, }, - "value": 3851138332, + "value": 62060, }, { "category": "Pet", "configData": { - "id": "Gingerbread Corgi", - "pt": 1, + "id": "Gingerbread Angelus", "sh": true, }, - "value": 19956800, + "value": 20410, }, { "category": "Pet", "configData": { - "id": "Prison Cat", - "pt": 1, + "id": "Huge Evergreen Unicorn", + "pt": 2, }, - "value": 107, + "value": 12303, }, { "category": "Pet", "configData": { - "id": "Huge Wizard Westie", - "pt": 1, + "id": "Evergreen Unicorn", + "pt": 2, + "sh": true, }, - "value": 40194467, + "value": 13756204, }, { "category": "Pet", "configData": { - "id": "Prison Cow", + "id": "Lit Loris", "pt": 1, "sh": true, }, - "value": 246, + "value": 11193197, }, { "category": "Pet", "configData": { - "id": "Huge Avenging Griffin", + "id": "Lit Loris", "pt": 2, "sh": true, }, - "value": 5450207319, + "value": 9706396, }, { "category": "Pet", "configData": { - "id": "Quantum Griffin", - "pt": 2, + "id": "Huge Deerserker", + "pt": 1, }, - "value": 455, + "value": 3953, }, { - "category": "Pet", + "category": "Hoverboard", "configData": { - "id": "Huge Wizard Westie", - "pt": 2, + "id": "Elf", }, - "value": 105888940, + "value": 114170, }, { "category": "Pet", "configData": { - "id": "Rave Axolotl", + "id": "Huge Deerserker", "pt": 2, "sh": true, }, - "value": 3274, + "value": 11, }, { "category": "Pet", "configData": { - "id": "Pastel Sock Bunny", - "pt": 2, + "id": "Huge Evergreen Unicorn", + "pt": 1, "sh": true, }, - "value": 25000, + "value": 505, }, { "category": "Pet", "configData": { - "id": "Huge Cyber Agony", - "pt": 1, + "id": "Huge Deerserker", + "pt": 2, }, - "value": 44429228, + "value": 801, }, { "category": "Pet", "configData": { - "id": "Glitched Dominus", + "id": "Candycane Kitsune", + "pt": 1, "sh": true, }, - "value": 4800, + "value": 327, }, { "category": "Pet", "configData": { - "id": "Ghost", + "id": "Huge Evergreen Unicorn", + "pt": 2, + "sh": true, }, - "value": 834, + "value": 99, }, { "category": "Pet", "configData": { - "id": "Huge Prison Cat", + "id": "Hot Cocoa Cow", "pt": 2, + "sh": true, }, - "value": 131583957, + "value": 147631735, }, { "category": "Pet", "configData": { - "id": "Little Melty", - "pt": 1, + "id": "Ice Cube Penguin", + "pt": 2, + "sh": true, }, - "value": 1254, + "value": 710, }, { "category": "Pet", "configData": { - "id": "Huge Holographic Cat", + "id": "Huge Ice Cube Penguin", "pt": 2, }, - "value": 125496387, + "value": 1277, }, { "category": "Pet", "configData": { - "id": "Guard Corgi", - "pt": 2, + "id": "Gingerbread Angelus", + "pt": 1, "sh": true, }, - "value": 1451266, + "value": 3634, }, { "category": "Pet", "configData": { - "id": "Atlantean Orca", + "id": "Snowflake Lattice Tiger", "pt": 2, + "sh": true, }, - "value": 16083426, + "value": 517, }, { "category": "Pet", "configData": { - "id": "Hooded Piggy", - "pt": 2, - "sh": true, + "id": "Gargantuan Cookie Cut Cat", }, - "value": 200178, + "value": 292, }, { "category": "Pet", "configData": { - "id": "Huge Lucki Agony", + "id": "Merry Mule", + "pt": 2, + "sh": true, }, - "value": 235496386, + "value": 574845, }, { "category": "Pet", "configData": { - "id": "Prison Dog", - "pt": 2, + "id": "Snowflake Dragon", + "pt": 1, "sh": true, }, - "value": 1000, + "value": 3276, }, { "category": "Pet", "configData": { - "id": "Huge Lunar Moth", - "pt": 2, + "id": "Huge Present Dragon", }, - "value": 208429351, + "value": 12208, }, { "category": "Pet", "configData": { - "id": "Hell Chick", + "id": "Huge Merry Mule", "pt": 1, - "sh": true, }, - "value": 3000, + "value": 1726, }, { "category": "Pet", "configData": { - "id": "Huge Nightmare Kraken", + "id": "Sleigh Axolotl", "pt": 2, "sh": true, }, - "value": 24900000000, + "value": 181, }, { "category": "Pet", "configData": { - "cv": 2, - "id": "Huge Chroma Snail", + "id": "Elf Golem", "pt": 2, }, - "value": 957260476, + "value": 64502, }, { "category": "Pet", "configData": { - "id": "Corgi", - "pt": 2, + "id": "Hippomint", + "sh": true, }, - "value": 460, + "value": 1306, }, { "category": "Pet", "configData": { - "id": "Huge Atomic Axolotl", + "id": "Hippomint", "pt": 1, + "sh": true, }, - "value": 513271510, + "value": 329, }, { "category": "Pet", "configData": { - "id": "Glitched Dominus", + "id": "Huge Present Dragon", + "pt": 1, + }, + "value": 2463, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ice Cube Penguin", "pt": 2, "sh": true, }, - "value": 32002, + "value": 62, }, { "category": "Pet", "configData": { - "id": "Huge Evolved King Cobra", + "id": "Huge Deerserker", "sh": true, }, - "value": 4219600011, + "value": 150, }, { "category": "Pet", "configData": { - "id": "Quantum Griffin", + "id": "Huge Hippomint", "pt": 1, - "sh": true, }, - "value": 19999, + "value": 30073, }, { "category": "Pet", "configData": { - "id": "Quantum Fox", - "pt": 2, - "sh": true, + "id": "Huge Hippomint", }, - "value": 99999, + "value": 63232, }, { "category": "Pet", "configData": { - "id": "Glitched Dragon", - "sh": true, + "id": "Huge Hippomint", + "pt": 2, }, - "value": 16099, + "value": 8825, }, { "category": "Pet", "configData": { - "id": "Huge Police Cat", + "id": "Huge Gingerbread Angelus", + "pt": 1, }, - "value": 77347501, + "value": 3143, }, { "category": "Pet", "configData": { - "id": "Police Cat", - "pt": 2, + "id": "Huge Gingerbread Angelus", }, - "value": 1008490, + "value": 7381, }, { "category": "Pet", "configData": { - "id": "Huge Love Lamb", + "id": "Huge Hippomint", "sh": true, }, - "value": 732756073, + "value": 1911, }, { "category": "Pet", "configData": { - "id": "Huge Robber Cat", + "id": "Candycane Kitsune", + "pt": 2, }, - "value": 122916142, + "value": 52023, }, { "category": "Pet", "configData": { - "id": "Holiday Balloon Cat", + "id": "Deerserker", "pt": 2, "sh": true, }, - "value": 46980370, + "value": 208541, }, { "category": "Pet", "configData": { - "id": "Huge Stargazing Wolf", + "id": "Huge Merry Mule", }, - "value": 86828029, + "value": 27602, }, { "category": "Pet", "configData": { - "id": "Huge Robber Cat", + "id": "Huge Gingerbread Angelus", "pt": 2, }, - "value": 725475029, + "value": 920, }, { "category": "Pet", "configData": { - "id": "Hooded Monkey", + "id": "Elf Golem", + "sh": true, }, - "value": 55, + "value": 1445, }, { "category": "Pet", "configData": { - "id": "Leprechaun Cat", - "pt": 1, + "id": "Hippomint", + "pt": 2, }, - "value": 2217, + "value": 53134, }, { "category": "Pet", "configData": { - "id": "Stargazing Bear", + "id": "Huge Snowflake Dragon", + "sh": true, + }, + "value": 128, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hippomint", "pt": 2, "sh": true, }, - "value": 113563861, + "value": 74, }, { "category": "Pet", "configData": { - "id": "Angel Pony", + "id": "Huge Hippomint", "pt": 1, "sh": true, }, - "value": 784, + "value": 411, }, { "category": "Pet", "configData": { - "id": "Steampunk Crocodile", - "sh": true, + "id": "Titanic Reindeer Cat", }, - "value": 40, + "value": 686, }, { "category": "Pet", "configData": { - "id": "Huge Fragmented Dominus", + "id": "Huge Candycane Unicorn", + "pt": 2, }, - "value": 863276365, + "value": 1620, }, { "category": "Pet", "configData": { - "id": "Pineapple Monkey", + "id": "Titanic Reindeer Cat", "pt": 1, }, - "value": 72, + "value": 298, }, { "category": "Pet", "configData": { - "cv": 4, - "id": "Chroma Phoenix", - "pt": 2, + "id": "Huge Holiday Owl", + "sh": true, }, - "value": 451007, + "value": 4565, }, { "category": "Pet", "configData": { - "id": "Gingerbread Corgi", - "pt": 2, + "id": "Huge Deerserker", + "pt": 1, + "sh": true, }, - "value": 9849136, + "value": 27, }, { "category": "Pet", "configData": { - "id": "Huge Stargazing Axolotl", + "id": "Holiday Owl", + "pt": 1, + "sh": true, }, - "value": 99470346, + "value": 3167, }, { "category": "Pet", "configData": { - "id": "Huge Triceratops", - "pt": 2, + "id": "Huge Pajamas Shark", }, - "value": 2091981970, + "value": 79967, }, { "category": "Pet", "configData": { - "id": "Huge Luau Cat", + "id": "Huge Candycane Unicorn", "sh": true, }, - "value": 426730603, + "value": 293, }, { "category": "Pet", "configData": { - "id": "Green Fish", + "id": "Huge Snowflake Dragon", "pt": 1, }, - "value": 235, + "value": 1340, }, { "category": "Pet", "configData": { - "id": "Huge Valentines Cat", - "pt": 2, - "sh": true, + "id": "Huge Krampus", }, - "value": 800000000, + "value": 7173, }, { "category": "Pet", "configData": { - "id": "Huge Stargazing Wolf", + "id": "Huge Present Dragon", "pt": 2, }, - "value": 671309804, + "value": 487, }, { "category": "Pet", "configData": { - "id": "Huge Police Cat", - "sh": true, + "id": "Huge Lit Loris", + "pt": 1, }, - "value": 886256277, + "value": 390, }, { "category": "Pet", "configData": { - "id": "Frost Rabbit", - "pt": 1, - "sh": true, + "id": "Huge Lit Loris", }, - "value": 90, + "value": 2029, }, { "category": "Pet", "configData": { - "id": "Huge UV Kitsune", + "id": "Huge Gingerbread Angelus", "sh": true, }, - "value": 402561631, + "value": 169, }, { "category": "Pet", "configData": { - "id": "Police Dog", - "pt": 1, + "id": "Huge Sleigh Axolotl", + "pt": 2, "sh": true, }, - "value": 1806880, + "value": 100, }, { "category": "Pet", "configData": { - "id": "Haxigator", + "id": "Huge Holiday Owl", "pt": 1, "sh": true, }, - "value": 222, + "value": 882, }, { "category": "Pet", "configData": { - "id": "Egg Dino", - "pt": 1, + "id": "Huge Merry Mule", "sh": true, }, - "value": 2033395, + "value": 591, }, { "category": "Pet", "configData": { - "id": "Circuit Corgi", - "sh": true, + "id": "Titanic Reindeer Cat", + "pt": 2, }, - "value": 1, + "value": 78, }, { "category": "Pet", "configData": { - "id": "Machete Dog", - "sh": true, + "id": "Huge Snowflake Dragon", + "pt": 2, }, - "value": 25934518, + "value": 288, }, { "category": "Pet", "configData": { - "id": "Toy Mouse", + "id": "Huge Present Dragon", "sh": true, }, - "value": 500, + "value": 107, }, { "category": "Pet", "configData": { - "id": "Tech Griffin", + "id": "Snowflake Dragon", "pt": 2, + "sh": true, }, - "value": 510, + "value": 2894, }, { "category": "Pet", "configData": { - "id": "Guard Corgi", + "id": "Elf Golem", + "pt": 1, "sh": true, }, - "value": 171284, + "value": 439, }, { "category": "Pet", "configData": { - "id": "Huge Robber Cat", + "id": "Titanic Snow Globe Snowman", "sh": true, }, - "value": 2367453921, + "value": 48, }, { "category": "Pet", "configData": { - "id": "Demon Dog", + "id": "Huge Pajamas Shark", "pt": 2, - "sh": true, }, - "value": 351200, + "value": 2642, }, { "category": "Pet", "configData": { - "id": "Huge Avenging Griffin", - "sh": true, + "id": "Huge Candycane Kitsune", }, - "value": 374994058, + "value": 55344, }, { "category": "Pet", "configData": { - "id": "Huge Ghoul Horse", + "id": "Huge Pajamas Shark", "pt": 1, - "sh": true, }, - "value": 9423999912, + "value": 4703, }, { "category": "Pet", "configData": { - "id": "Huge Stargazing Axolotl", + "id": "Huge Krampus", + "pt": 1, + }, + "value": 3697, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Krampus", "pt": 2, - "sh": true, }, - "value": 10474400079, + "value": 913, }, { "category": "Pet", "configData": { - "id": "Cloud Penguin", + "id": "Huge Festive Walrus", + "pt": 1, + }, + "value": 611, + }, + { + "category": "Pet", + "configData": { + "id": "Hippomint", "pt": 2, "sh": true, }, - "value": 18778, + "value": 243, }, { "category": "Pet", "configData": { - "id": "Huge Party Crown Ducky", + "id": "Krampus", "pt": 2, "sh": true, }, - "value": 21000000000, + "value": 40101, }, { "category": "Pet", "configData": { - "id": "Pastel Deer", - "pt": 1, + "id": "Holiday Owl", + "pt": 2, + "sh": true, }, - "value": 3220, + "value": 2831, }, { "category": "Pet", "configData": { - "id": "Cupcake", - "pt": 1, + "id": "Huge Pajamas Shark", "sh": true, }, - "value": 5000, + "value": 1557, }, { "category": "Pet", "configData": { - "id": "Huge Angel Cat", + "id": "Huge Candycane Kitsune", "pt": 2, }, - "value": 16365327938, + "value": 2684, }, { "category": "Pet", "configData": { - "id": "Huge Fragmented Dominus", + "id": "Gingerbread Angelus", "pt": 2, + "sh": true, }, - "value": 3513601079, + "value": 3740, }, { "category": "Pet", "configData": { - "id": "Holographic Dragon", - "pt": 1, - "sh": true, + "id": "Huge Festive Walrus", }, - "value": 1, + "value": 10259, }, { "category": "Pet", "configData": { - "id": "Flower Cat", + "id": "Titanic Hippomint", }, - "value": 37, + "value": 4451, }, { "category": "Pet", "configData": { - "id": "Scuba Dog", + "id": "Huge Reindeer Cat", }, - "value": 74, + "value": 56940, }, { "category": "Pet", "configData": { - "id": "Floatie Ducky", - "pt": 1, + "id": "Huge Merry Mule", + "pt": 2, }, - "value": 54, + "value": 991, }, { "category": "Pet", "configData": { - "id": "Floatie Ducky", + "id": "Titanic Snow Globe Snowman", "pt": 2, }, - "value": 116, + "value": 78, }, { "category": "Pet", "configData": { - "id": "Tiedye Corgi", + "id": "Elf Golem", + "pt": 2, + "sh": true, + }, + "value": 570, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Candycane Kitsune", "pt": 1, }, - "value": 7372450, + "value": 3725, }, { "category": "Pet", "configData": { - "id": "Tiedye Bear", + "id": "Huge Candycane Kitsune", "pt": 1, "sh": true, }, - "value": 10000000, + "value": 83, }, { "category": "Pet", "configData": { - "id": "Beach Ball Dolphin", - "pt": 2, + "id": "Huge Candycane Kitsune", + "sh": true, }, - "value": 87, + "value": 1120, }, { "category": "Pet", "configData": { - "id": "Floatie Flamingo", + "id": "Huge Holiday Owl", + "pt": 2, + "sh": true, }, - "value": 81, + "value": 184, }, { "category": "Pet", "configData": { - "id": "Scuba Dog", - "pt": 2, + "id": "Huge Candycane Unicorn", + "pt": 1, + "sh": true, }, - "value": 21785, + "value": 62, }, { "category": "Pet", "configData": { - "id": "Floatie Flamingo", + "id": "Huge Merry Mule", "pt": 1, + "sh": true, }, - "value": 6421, + "value": 30, }, { "category": "Pet", "configData": { - "id": "Scuba Shark", - "pt": 2, + "id": "Huge Krampus", + "pt": 1, + "sh": true, }, - "value": 11622, + "value": 35, }, { "category": "Pet", "configData": { - "id": "Kawaii Dragon", + "id": "Huge Present Dragon", "pt": 1, "sh": true, }, - "value": 169642, + "value": 16, }, { "category": "Pet", "configData": { - "id": "Huge Grim Reaper", + "id": "Huge Pajamas Shark", "pt": 2, + "sh": true, }, - "value": 2107516357, + "value": 67, }, { "category": "Pet", "configData": { - "id": "Surfboard Corgi", + "id": "Huge Festive Walrus", "pt": 2, }, - "value": 244, + "value": 464, }, { "category": "Pet", "configData": { - "id": "Ice Snake", + "id": "Huge Pajamas Shark", + "pt": 1, "sh": true, }, - "value": 13200, + "value": 102, }, { "category": "Pet", "configData": { - "id": "Sailor Seal", - "pt": 2, + "id": "Huge Krampus", + "sh": true, }, - "value": 181, + "value": 180, }, { "category": "Pet", "configData": { - "id": "Surfboard Axolotl", - "pt": 1, + "id": "Titanic Reindeer Cat", "sh": true, }, - "value": 421, + "value": 14, }, { "category": "Pet", "configData": { - "id": "Surfboard Axolotl", - "pt": 2, - "sh": true, + "id": "Titanic Gingerbread Angelus", }, - "value": 317, + "value": 1425, }, { "category": "Pet", "configData": { - "id": "Surfboard Axolotl", + "id": "Titanic Gingerbread Angelus", "pt": 1, }, - "value": 25, + "value": 254, }, { "category": "Pet", "configData": { - "id": "Blue Fluffy", - "pt": 1, + "id": "Titanic Gingerbread Angelus", + "pt": 2, }, - "value": 108, + "value": 63, }, { "category": "Pet", "configData": { - "id": "Cyberpunk Axolotl", - "pt": 1, + "id": "Huge Festive Walrus", + "pt": 2, + "sh": true, }, - "value": 1794, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Flower Cat", - "pt": 1, + "id": "Gargantuan Elf Golem", }, - "value": 160, + "value": 87, }, { "category": "Pet", "configData": { - "id": "Electric Cat", - "pt": 2, + "id": "Gargantuan Elf Golem", + "pt": 1, }, - "value": 441, + "value": 22, }, { "category": "Pet", "configData": { - "id": "Cyborg Corgi", - "pt": 2, + "id": "Huge Festive Walrus", "sh": true, }, - "value": 75, + "value": 210, }, { "category": "Pet", "configData": { - "id": "Beach Ball Monkey", - "pt": 2, + "id": "Huge Reindeer Cat", + "pt": 1, }, - "value": 279, + "value": 7785, }, { "category": "Pet", "configData": { - "id": "Flower Cat", - "pt": 2, - "sh": true, + "id": "Titanic Holiday Owl", }, - "value": 7659, + "value": 178, }, { "category": "Pet", "configData": { - "id": "Huge Mech Dino", + "id": "Titanic Hippomint", "pt": 1, }, - "value": 56794518, + "value": 525, }, { "category": "Pet", "configData": { - "id": "Huge Stargazing Axolotl", - "pt": 2, + "id": "Titanic Gingerbread Angelus", + "sh": true, }, - "value": 1010204995, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Sailor Seal", + "id": "Titanic Gingerbread Angelus", "pt": 1, + "sh": true, }, - "value": 73, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Cyborg Bunny", + "id": "Huge Candycane Kitsune", + "pt": 2, "sh": true, }, - "value": 450, + "value": 53, }, { "category": "Pet", "configData": { - "id": "Beach Ball Monkey", + "id": "Huge Reindeer Cat", + "pt": 2, + }, + "value": 1463, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Hippomint", "pt": 2, + }, + "value": 93, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Hippomint", "sh": true, }, - "value": 1200, + "value": 100, }, { "category": "Pet", "configData": { - "id": "Beach Ball Dolphin", + "id": "Huge Reindeer Cat", "sh": true, }, - "value": 242, + "value": 1450, }, { "category": "Pet", "configData": { - "id": "Huge Luxe Peacock", + "id": "Huge Gingerbread Angelus", "pt": 1, "sh": true, }, - "value": 1351900495, + "value": 44, }, { "category": "Pet", "configData": { - "id": "Huge Pineapple Monkey", + "id": "Gargantuan Elf Golem", + "pt": 2, }, - "value": 44700413, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Platypus", + "id": "Gargantuan Elf Golem", + "sh": true, }, - "value": 1000, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Sailor Seal", + "id": "Huge Festive Walrus", "pt": 1, "sh": true, }, - "value": 100, + "value": 10, }, { "category": "Pet", "configData": { - "id": "Beach Ball Monkey", + "id": "Huge Gingerbread Angelus", + "pt": 2, "sh": true, }, - "value": 3324342, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Pineapple Monkey", + "id": "Candycane Kitsune", + "pt": 2, "sh": true, }, - "value": 135, + "value": 227, }, { "category": "Pet", "configData": { - "id": "Huge Sun Agony", - "pt": 1, + "id": "Gargantuan Cookie Cut Cat", + "pt": 2, }, - "value": 242639951, + "value": 11, }, { "category": "Pet", "configData": { - "id": "Surfboard Corgi", - "pt": 1, - "sh": true, + "id": "Huge Frostbyte Snowman", }, - "value": 1288, + "value": 38967, }, { "category": "Pet", "configData": { - "id": "Dino Bear", + "id": "Huge Frostbyte Snowman", "pt": 2, - "sh": true, }, - "value": 50000, + "value": 1602, }, { "category": "Pet", "configData": { - "id": "Huge Squirrel", + "id": "Huge Frostbyte Snowman", "pt": 1, - "sh": true, }, - "value": 2359595700, + "value": 7952, }, { "category": "Pet", "configData": { - "id": "Pineapple Monkey", + "id": "Titanic Holiday Owl", "pt": 1, - "sh": true, }, - "value": 12460, + "value": 33, }, { "category": "Pet", "configData": { - "id": "Titanic Arcane Pyro Cat", + "id": "Huge Frostbyte Snowman", "sh": true, }, - "value": 16399999946, + "value": 325, }, { "category": "Pet", "configData": { - "id": "Flower Cat", - "pt": 1, + "id": "Gargantuan Elf Golem", + "pt": 2, "sh": true, }, - "value": 5349, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Fish in a Bucket", - "pt": 2, + "id": "Gargantuan Cookie Cut Cat", "sh": true, }, - "value": 37500, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Huge Sun Agony", + "id": "Huge Frostbyte Snowman", + "pt": 1, "sh": true, }, - "value": 3137904225, + "value": 51, }, { "category": "Pet", "configData": { - "id": "Sun Agony", + "id": "Huge Merry Mule", + "pt": 2, "sh": true, }, - "value": 16758400, + "value": 19, }, { "category": "Pet", "configData": { - "id": "Haxolotl", + "id": "Huge Festive Bear", + }, + "value": 27025, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Capybara", "pt": 2, "sh": true, }, - "value": 2800, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Scuba Shark", + "id": "Huge Snowflake Dragon", "pt": 1, "sh": true, }, - "value": 1, + "value": 16, }, { "category": "Pet", "configData": { - "id": "Huge Pineapple Monkey", - "pt": 2, + "id": "Huge Pixie Bee", + "pt": 1, "sh": true, }, - "value": 4039225979, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Scuba Shark", - "sh": true, + "id": "Titanic Candycane Kitsune", }, - "value": 5, + "value": 2521, }, { "category": "Pet", "configData": { - "id": "Huge Ghoul Horse", + "id": "Titanic Snow Globe Snowman", "pt": 2, + "sh": true, }, - "value": 644820483, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Circuit Cat", - "pt": 1, + "id": "Huge Silver Bison", + }, + "value": 2330, + }, + { + "category": "Booth", + "configData": { + "id": "Silver", }, - "value": 6270, + "value": 2936, }, { "category": "Pet", "configData": { - "id": "Tech Ninja Red Panda", + "id": "Huge Silver Bison", "pt": 1, - "sh": true, }, - "value": 99999, + "value": 438, }, { "category": "Pet", "configData": { - "id": "Tech Ninja Red Panda", + "id": "Huge Silver Bison", "pt": 2, - "sh": true, }, - "value": 6000, + "value": 106, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Silver", + }, + "value": 606, }, { "category": "Pet", "configData": { - "id": "Junkyard Hound", - "pt": 2, + "id": "Titanic Silver Stag", }, - "value": 30488, + "value": 53, }, { "category": "Pet", "configData": { - "id": "Huge Pineapple Monkey", + "id": "Titanic Silver Stag", "pt": 1, - "sh": true, }, - "value": 1150308378, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Titanic Rich Cat", + "id": "Titanic Silver Stag", "pt": 2, }, - "value": 3140000018, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Titanic Mystic Corgi", + "id": "Huge Festive Seal", }, - "value": 13743715324, + "value": 410682, }, { "category": "Pet", "configData": { - "id": "Cyborg Capybara", + "id": "Huge Candycane Unicorn", + "pt": 2, + "sh": true, }, - "value": 10149631, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Cat Magician", - "pt": 2, + "id": "Huge Festive Seal", "sh": true, }, - "value": 2, + "value": 9194, }, { "category": "Pet", "configData": { - "id": "Huge Sketch Dragon", + "id": "Huge Festive Seal", + "pt": 1, }, - "value": 131026380, + "value": 47108, }, { "category": "Pet", "configData": { - "id": "Ender Goat", - "pt": 1, - "sh": true, + "id": "Huge Lit Loris", + "pt": 2, }, - "value": 1722, + "value": 74, }, { "category": "Pet", "configData": { - "id": "Hooded Bobcat", - "pt": 1, + "id": "Gargantuan Gingerbread Angelus", }, - "value": 126, + "value": 220, }, { "category": "Pet", "configData": { - "id": "Tropical Toucan", + "id": "Titanic Holiday Owl", "pt": 2, - "sh": true, }, - "value": 3490000000, + "value": 9, }, { "category": "Pet", "configData": { - "id": "Hacker Corgi", + "id": "Huge Present Dragon", + "pt": 2, + "sh": true, }, - "value": 938, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Hooded Piggy", + "id": "Huge Festive Seal", + "pt": 2, }, - "value": 91, + "value": 8981, }, { "category": "Pet", "configData": { - "id": "Colorful Slime", - "pt": 1, + "id": "Huge Krampus", + "pt": 2, + "sh": true, }, - "value": 348, + "value": 8, }, { "category": "Pet", "configData": { - "id": "Lunar Fox", - "pt": 1, + "id": "Huge Lit Loris", + "sh": true, }, - "value": 292, + "value": 16, }, { "category": "Pet", "configData": { - "id": "Blazing Shark", + "id": "Huge Hot Cocoa Bear", }, - "value": 4216700, + "value": 226324, }, { "category": "Pet", "configData": { - "id": "Hooded Monkey", + "id": "Huge Hot Cocoa Bear", "pt": 1, }, - "value": 825, + "value": 45201, }, { "category": "Pet", "configData": { - "id": "Seedling Squirrel", + "id": "Huge Hot Cocoa Bear", "pt": 2, - "sh": true, }, - "value": 96000, + "value": 8959, }, { "category": "Pet", "configData": { - "id": "Sketch Corgi", + "id": "Huge Hot Cocoa Bear", "sh": true, }, - "value": 9142265, + "value": 1786, }, { "category": "Pet", "configData": { - "id": "Hooded Monkey", - "pt": 2, + "id": "Huge Hot Cocoa Bear", + "pt": 1, + "sh": true, }, - "value": 1889, + "value": 352, }, { "category": "Pet", "configData": { - "id": "Stacked King Slime", + "id": "Huge Gingerbread Lion", }, - "value": 1136, + "value": 535528, }, { "category": "Pet", "configData": { - "id": "Hacker Bear", + "id": "Huge Hot Cocoa Bear", + "pt": 2, + "sh": true, }, - "value": 399, + "value": 60, }, { "category": "Pet", "configData": { - "id": "Hooded Dragon", + "id": "Huge Gingerbread Lion", "pt": 1, }, - "value": 170, + "value": 107410, }, { "category": "Pet", "configData": { - "id": "Blazing Corgi", + "id": "Huge Nutcracker Bunny", }, - "value": 5388371, + "value": 46620, }, { "category": "Pet", "configData": { - "id": "Dino Dog", + "id": "Huge Gingerbread Lion", + "pt": 2, }, - "value": 2542, + "value": 21429, }, { "category": "Pet", "configData": { - "id": "Huge Avenging Griffin", + "id": "Huge Nutcracker Bunny", "pt": 1, }, - "value": 58147570, + "value": 9349, }, { "category": "Pet", "configData": { - "id": "Hacked Computer", + "id": "Huge Gingerbread Lion", + "sh": true, }, - "value": 530, + "value": 4109, }, { "category": "Pet", "configData": { - "id": "Hacked Computer", - "pt": 1, + "id": "Titanic North Pole Unicorn", }, - "value": 231, + "value": 1832, }, { "category": "Pet", "configData": { - "id": "Huge Egg Dino", + "id": "Huge Gingerbread Lion", "pt": 1, "sh": true, }, - "value": 443858150, + "value": 897, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nutcracker Bunny", + "sh": true, + }, + "value": 382, }, { "category": "Pet", "configData": { - "id": "Hooded Piggy", + "id": "Titanic North Pole Unicorn", "pt": 2, }, - "value": 9404, + "value": 67, }, { "category": "Pet", "configData": { - "id": "Huge Easter Yeti", - "pt": 1, - "sh": true, + "id": "Huge Nutcracker Bunny", + "pt": 2, }, - "value": 554050921, + "value": 1886, }, { "category": "Pet", "configData": { - "id": "Hooded Piggy", + "id": "Titanic North Pole Unicorn", "pt": 1, }, - "value": 271121, + "value": 390, }, { "category": "Pet", "configData": { - "id": "Hacker Bear", + "id": "Huge Gingerbread Lion", "pt": 2, + "sh": true, }, - "value": 8354, + "value": 180, }, { "category": "Pet", "configData": { - "id": "Hacked Skeleton", + "id": "Gargantuan Krampus", + }, + "value": 122, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Krampus", "pt": 1, }, - "value": 269, + "value": 14, }, { "category": "Pet", "configData": { - "id": "Hacked Computer", + "id": "Huge Elf Golem", "pt": 1, - "sh": true, }, - "value": 79, + "value": 2283, }, { "category": "Pet", "configData": { - "id": "Fortress Owl", - "pt": 2, + "id": "Huge Elf Golem", }, - "value": 41, + "value": 14557, }, { "category": "Pet", "configData": { - "id": "Hacker Axolotl", + "id": "Huge Elf Golem", "pt": 2, - "sh": true, }, - "value": 4143, + "value": 464, }, { "category": "Pet", "configData": { - "id": "Hacker Corgi", + "id": "Titanic North Pole Unicorn", + "pt": 2, "sh": true, }, - "value": 243, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Pineapple Cat", - "sh": true, + "id": "Huge Candycane Shake Shark", }, - "value": 8, + "value": 37328, }, { - "category": "Pet", + "category": "Lootbox", "configData": { - "id": "Huge Blazing Bat", - "pt": 2, + "id": "2026 New Years Gift", }, - "value": 1033844780, + "value": 110994, }, { "category": "Pet", "configData": { - "id": "Huge Scary Cat", - "sh": true, + "id": "Huge Party Crown Hippomelon", + "pt": 1, }, - "value": 4521440062, + "value": 2789, }, { "category": "Pet", "configData": { - "id": "Bunny", - "sh": true, + "id": "Huge Party Crown Hippomelon", }, - "value": 197248, + "value": 14053, }, { "category": "Pet", "configData": { - "id": "Hacker Axolotl", - "sh": true, + "id": "Titanic Party Crown Hippomelon", + "pt": 1, }, - "value": 298, + "value": 75, }, { "category": "Pet", "configData": { - "id": "Hacker Bear", - "pt": 1, - "sh": true, + "id": "Huge Party Crown Hippomelon", + "pt": 2, }, - "value": 9, + "value": 556, }, { "category": "Pet", "configData": { - "id": "Huge Masked Fox", - "pt": 1, - "sh": true, + "id": "Titanic Party Crown Hippomelon", }, - "value": 3431280004, + "value": 285, }, { "category": "Pet", "configData": { - "id": "Neon Cat", + "id": "Titanic Party Crown Hippomelon", "sh": true, }, - "value": 7360644, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Hacker Axolotl", - "pt": 1, + "id": "Huge Party Crown Hippomelon", "sh": true, }, - "value": 334, + "value": 112, }, { "category": "Pet", "configData": { - "id": "Blazing Corgi", - "sh": true, + "id": "Titanic Party Crown Hippomelon", + "pt": 2, }, - "value": 10204072, + "value": 7, }, { "category": "Pet", "configData": { - "id": "Hacker Corgi", + "id": "Huge Party Crown Hippomelon", "pt": 1, "sh": true, }, - "value": 923, + "value": 17, }, { "category": "Pet", "configData": { - "id": "Angel Lamb", + "id": "Huge Party Crown Hippomelon", + "pt": 2, + "sh": true, }, - "value": 969, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Tech Sphinx", + "id": "Huge Frostbyte Snowman", "pt": 2, "sh": true, }, - "value": 14864, + "value": 11, }, { "category": "Pet", "configData": { - "id": "Huge Blazing Shark", - "pt": 2, + "id": "Huge Nutcracker Bunny", + "pt": 1, + "sh": true, }, - "value": 703321427, + "value": 59, }, { "category": "Pet", "configData": { - "id": "Hooded Bobcat", + "id": "Titanic Crackling Dragon", + }, + "value": 2199, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Reindeer Cat", "pt": 1, "sh": true, }, - "value": 12969, + "value": 6, }, { "category": "Pet", "configData": { - "id": "Huge Rainbow Slime", + "id": "Gargantuan Snowflake Dragon", + }, + "value": 254, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Krampus", "pt": 2, - "sh": true, }, - "value": 3240560009, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Hacker Cat", - "pt": 1, + "id": "Titanic Holiday Owl", "sh": true, }, - "value": 14578, + "value": 3, }, { "category": "Pet", "configData": { - "id": "Huge Goblin", + "id": "Huge Nutcracker Bunny", + "pt": 2, "sh": true, }, - "value": 242405572, + "value": 11, }, { "category": "Pet", "configData": { - "id": "Blazing Shark", - "pt": 2, + "id": "Titanic North Pole Unicorn", "sh": true, }, - "value": 331028877, + "value": 14, }, { "category": "Pet", "configData": { - "id": "Sketch Dragon", - "pt": 2, + "id": "Huge Lit Loris", + "pt": 1, + "sh": true, }, - "value": 25173142, + "value": 4, }, { "category": "Pet", "configData": { - "id": "Dino Cat", + "id": "Huge Firefly", "pt": 1, + "sh": true, }, - "value": 32502, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Blazing Bat", + "id": "Huge Lit Loris", "pt": 2, "sh": true, }, - "value": 521550463, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Huge Hologram Shark", + "id": "Huge Festive Seal", "pt": 2, "sh": true, }, - "value": 15000000000, + "value": 568, }, { "category": "Pet", "configData": { - "id": "Blazing Corgi", + "id": "Titanic Hippomint", "pt": 2, "sh": true, }, - "value": 534419554, + "value": 5, }, { "category": "Pet", "configData": { - "id": "Huge Sun Agony", - "pt": 1, + "id": "Huge Snowflake Dragon", + "pt": 2, "sh": true, }, - "value": 22999999970, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Tech Cowboy Cat", - "pt": 2, + "id": "Titanic North Pole Unicorn", + "pt": 1, "sh": true, }, "value": 3, @@ -115868,5085 +122369,112555 @@ exports[`Pet Simulator Public Live API Test - Changing Items Get RAP 1`] = ` { "category": "Pet", "configData": { - "id": "Titanic Blazing Dragon", + "id": "Huge Festive Seal", + "pt": 1, "sh": true, }, - "value": 24000000000, + "value": 777, }, { "category": "Pet", "configData": { - "id": "Firefly", - "pt": 2, + "id": "Titanic Hippomint", + "pt": 1, "sh": true, }, - "value": 20000, + "value": 8, }, { "category": "Pet", "configData": { - "id": "Titanic Jolly Cat", - "pt": 2, + "id": "Huge Sacred Deer", }, - "value": 25000000000, + "value": 135617, }, { "category": "Pet", "configData": { - "id": "Jolly Penguin", - "pt": 1, + "id": "Titanic Night Terror Dog", }, - "value": 8332947, + "value": 4955, }, { "category": "Pet", "configData": { - "id": "Galaxy Fox", - "pt": 1, - "sh": true, + "id": "Titanic Pink Lucky Block", }, - "value": 24600, + "value": 3030, }, { "category": "Pet", "configData": { - "id": "Virus Griffin", + "id": "Gargantuan Super Cat", }, - "value": 15495, + "value": 957, }, { "category": "Pet", "configData": { - "id": "Stealth Bobcat", + "id": "Titanic Noob", + "sh": true, }, - "value": 6930291, + "value": 2, }, { "category": "Pet", "configData": { - "id": "Virus Griffin", - "pt": 1, + "id": "Titanic Chroma Balloon Monkey", }, - "value": 1275548, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Huge Umbrella Cat", + "id": "Huge Chroma Balloon Axolotl", }, - "value": 441547444, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Hellish Axolotl", - "pt": 2, + "id": "Gargantuan Evil Scarecrow Pumpkin", "sh": true, }, - "value": 250000, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Huge Bison", + "id": "Titanic Pink Balloon Cat", }, - "value": 35911234, + "value": 0, }, { "category": "Pet", "configData": { - "id": "Moray Eel", + "id": "Gargantuan Black Balloon Cat", }, - "value": 750, + "value": 553, }, { "category": "Pet", "configData": { - "id": "Huge Mantis Shrimp", - "pt": 2, + "id": "Gargantuan Blurred Agony", }, - "value": 275676676, + "value": 302, }, { "category": "Pet", "configData": { - "id": "Huge Matrix Monkey", - "pt": 2, + "id": "Huge Beans Balloon Cat", }, - "value": 1023565675, + "value": 87630, }, { "category": "Pet", "configData": { - "id": "Huge Gamer Shiba", - "pt": 1, + "id": "Chroma Balloon Axolotl", }, - "value": 767157096, + "value": 14, }, { "category": "Pet", "configData": { - "id": "Abyssal Kraken", + "id": "Titanic Spirit Mushroom", "pt": 2, + "sh": true, }, - "value": 10518, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Huge Virus Griffin", - "sh": true, + "id": "Huge Holly Capybara", + "pt": 2, }, - "value": 535840735, + "value": 6125, }, { "category": "Pet", "configData": { - "id": "Humble Rabbit", + "id": "Huge Holly Capybara", "pt": 1, + "sh": true, }, - "value": 3483, + "value": 245, }, { "category": "Pet", "configData": { - "id": "Huge Matrix Monkey", + "id": "Huge Chocolate Bunny", + "pt": 1, }, - "value": 202747166, + "value": 40656, }, { "category": "Pet", "configData": { - "id": "Virus Griffin", + "id": "Huge Chocolate Bunny", "pt": 2, "sh": true, }, - "value": 1356902393, + "value": 65, }, { "category": "Pet", "configData": { - "id": "Huge Mushroom Raccoon", + "id": "Huge Hot Cocoa Cow", "pt": 1, }, - "value": 44294830, + "value": 64881, }, { "category": "Pet", "configData": { - "id": "Huge Virus Griffin", - "pt": 1, + "id": "Huge Holly Capybara", }, - "value": 198984173, + "value": 153116, }, { "category": "Pet", "configData": { - "id": "Titanic Kitsune Fox", - "pt": 1, + "id": "Huge Holly Capybara", + "sh": true, }, - "value": 13546968616, + "value": 1225, }, { "category": "Pet", "configData": { - "id": "Matrix Monkey", - "pt": 1, - "sh": true, + "id": "Huge Chocolate Bunny", }, - "value": 23117982, + "value": 203278, }, { "category": "Pet", "configData": { - "id": "Huge Tech Chest Mimic", + "id": "Huge Hot Cocoa Cow", "pt": 2, - "sh": true, }, - "value": 1600000000, + "value": 12976, }, { "category": "Pet", "configData": { - "id": "Evil Bat", + "id": "Huge Holly Capybara", + "pt": 2, + "sh": true, }, - "value": 209, + "value": 49, }, { "category": "Pet", "configData": { - "id": "Titanic Rich Cat", - "pt": 1, + "id": "Huge Chocolate Bunny", + "pt": 2, }, - "value": 14419304830, + "value": 8131, }, { "category": "Pet", "configData": { - "id": "Huge Mantis Shrimp", + "id": "Huge Chocolate Bunny", "sh": true, }, - "value": 443799126, + "value": 1626, }, { "category": "Pet", "configData": { - "id": "Titanic Butterfly", + "id": "Huge Hot Cocoa Cow", }, - "value": 15947021325, + "value": 324404, }, { "category": "Pet", "configData": { - "id": "Huge Umbrella Cat", + "id": "Huge Hot Cocoa Cow", "sh": true, }, - "value": 3118227866, + "value": 2595, }, { "category": "Pet", "configData": { - "id": "Matrix Monkey", + "id": "Huge Hot Cocoa Cow", + "pt": 1, "sh": true, }, - "value": 5303920, + "value": 519, }, { "category": "Pet", "configData": { - "id": "Huge Firefighter Dalmation", + "id": "Huge Hot Cocoa Cow", "pt": 2, + "sh": true, }, - "value": 749727585, + "value": 104, }, { "category": "Pet", "configData": { - "id": "Huge Matrix Monkey", + "id": "Huge Holly Capybara", "pt": 1, - "sh": true, }, - "value": 8484800035, + "value": 30623, }, { "category": "Pet", "configData": { - "id": "Huge Virus Griffin", + "id": "Huge Chocolate Bunny", "pt": 1, "sh": true, }, - "value": 9017622335, + "value": 325, }, { "category": "Pet", "configData": { - "id": "Huge Bison", - "pt": 1, + "id": "Titanic Quokka", + "pt": 2, "sh": true, }, - "value": 235623475, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Huge Mantis Shrimp", + "id": "Titanic Starlight Pony", "pt": 1, "sh": true, }, - "value": 5844902959, + "value": 2, }, { "category": "Pet", "configData": { - "id": "North Pole Wolf", + "id": "Titanic Grinch Cat", "pt": 1, "sh": true, }, - "value": 114600000, + "value": 1, }, { "category": "Pet", "configData": { - "id": "Hacker Bear", - "pt": 2, + "id": "Gargantuan Krampus", "sh": true, }, - "value": 39160, + "value": 1, }, { - "category": "Pet", + "category": "Currency", "configData": { - "id": "Good vs Evil Cat", + "id": "LuckyCoins", }, - "value": 274, + "value": 991355587872642300, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Prickly Panda", + "id": "Lucky Raid Orb V2", }, - "value": 8488414, + "value": 85201643065, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Super Tiger", - "pt": 2, - "sh": true, + "id": "Clover V2", }, - "value": 8000000000, + "value": 199716051, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Ice Cream Cone", - "pt": 2, + "id": "Leprechaun Key V2", }, - "value": 3932127397, + "value": 5729727, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Pineapple Cat", - "pt": 2, + "id": "Lucky Raid Boss Key V2", }, - "value": 356424228, + "value": 3623218454, }, { - "category": "Pet", + "category": "Misc", "configData": { - "id": "Huge Wicked Empyrean Dragon", + "id": "Lucky Raid Boss Key Lower Half V2", + }, + "value": 5078624150, + }, + { + "category": "Misc", + "configData": { + "id": "Lucky Raid Boss Key Upper Half V2", }, - "value": 1151758361, + "value": 3912776860, }, { "category": "Pet", "configData": { - "id": "Chocolate Frog", + "id": "Lucki Horse", }, - "value": 362, + "value": 526693516, }, { "category": "Pet", "configData": { - "id": "Evil Deer", + "id": "Lucki Lamb", "pt": 1, }, - "value": 613, + "value": 23028801, }, { "category": "Pet", "configData": { - "id": "Pristine Snake", + "id": "Lucki Snake", "sh": true, }, - "value": 7, + "value": 464649, }, { "category": "Pet", "configData": { - "id": "Sad Cat", + "id": "Lucki Horse", + "pt": 1, + "sh": true, }, - "value": 228896911, + "value": 113312, }, { "category": "Pet", "configData": { - "id": "Huge Wicked Empyrean Dragon", - "pt": 1, + "id": "Lucki Snake", }, - "value": 1522548314, + "value": 204951705, }, { "category": "Pet", "configData": { - "id": "Good vs Evil Cat", - "pt": 1, + "id": "Lucki Lamb", }, - "value": 2378, + "value": 476084755, }, { "category": "Pet", "configData": { - "id": "Huge Tiedye Axolotl", - "sh": true, + "id": "Lucki Horse", + "pt": 2, }, - "value": 804133366, + "value": 20941745, }, { "category": "Pet", "configData": { - "id": "Flex Bear", + "id": "Lucki Snake", + "pt": 1, }, - "value": 4951053, + "value": 8636894, }, { "category": "Pet", "configData": { - "id": "Love Corgi", - "pt": 1, + "id": "Lucki Snake", + "pt": 2, }, - "value": 881, + "value": 4647679, }, { "category": "Pet", "configData": { - "id": "Gummy Raccoon", - "sh": true, + "id": "Lucki Lamb", + "pt": 2, }, - "value": 17492, + "value": 16628221, }, { "category": "Pet", "configData": { - "id": "Chimera", + "id": "Lucki Horse", + "pt": 1, }, - "value": 652, + "value": 25429275, }, { "category": "Pet", "configData": { - "id": "Huge Dark Lord", + "id": "Clover Penguin", "pt": 1, }, - "value": 52933696, + "value": 17414753, }, { "category": "Pet", "configData": { - "id": "Avenging Griffin", + "id": "Clover Penguin", "pt": 2, }, - "value": 745, + "value": 15268297, }, { "category": "Pet", "configData": { - "id": "Enchanted Squirrel", - "pt": 1, + "id": "Clover Penguin", }, - "value": 153, + "value": 359807700, }, { "category": "Pet", "configData": { - "id": "Rave Butterfly", + "id": "Lucki Lamb", "sh": true, }, - "value": 15154, + "value": 1155005, }, { "category": "Pet", "configData": { - "id": "Cloud Monkey", - "pt": 2, + "id": "Lucki Lamb", + "pt": 1, "sh": true, }, - "value": 50000, + "value": 95859, }, { "category": "Pet", "configData": { - "id": "Huge Cow", + "id": "Lucki Lamb", + "pt": 2, + "sh": true, }, - "value": 204559986, + "value": 53757, }, { "category": "Pet", "configData": { - "id": "Pentangelus", - "pt": 2, + "id": "Lucki Snake", + "pt": 1, + "sh": true, }, - "value": 11854, + "value": 26170, }, { "category": "Pet", "configData": { - "id": "Huge Lucki Agony", - "pt": 2, - "sh": true, + "id": "Huge Horseshoe Capybara", }, - "value": 100000000, + "value": 42519, }, { "category": "Pet", "configData": { - "id": "Snow Dog", + "id": "Lucki Snake", "pt": 2, "sh": true, }, - "value": 20000, + "value": 13162, }, { "category": "Pet", "configData": { - "id": "Huge Flex Fluffy Cat", + "id": "Leprechaun Kitsune", "pt": 2, }, - "value": 531176162, + "value": 6936960901, }, { "category": "Pet", "configData": { - "id": "Angel Pegasus", + "id": "Leprechaun Kitsune", }, - "value": 82, + "value": 79271828280, }, { "category": "Pet", "configData": { - "id": "Evil Imp", - "pt": 2, + "id": "Leprechaun Kitsune", + "pt": 1, }, - "value": 458, + "value": 6137586958, }, { "category": "Pet", "configData": { - "id": "Chimera", - "pt": 2, - "sh": true, + "id": "Pot of Gold Corgi", }, - "value": 308339, + "value": 5411108225, }, { "category": "Pet", "configData": { - "id": "Dark Lord", + "id": "Lucki Horse", + "sh": true, }, - "value": 1657, + "value": 1300593, }, { "category": "Pet", "configData": { - "id": "Dark Lord", + "id": "Huge Horseshoe Capybara", "pt": 1, }, - "value": 2119, + "value": 20076, }, { "category": "Pet", "configData": { - "id": "Raccoon", + "id": "Glass Crocodile", + "pt": 2, }, - "value": 56, + "value": 7476, }, { "category": "Pet", "configData": { - "id": "Tech Samurai Cat", - "pt": 1, - "sh": true, + "id": "Glass Kraken", }, - "value": 16740, + "value": 124286, }, { "category": "Pet", "configData": { - "id": "Quantum Dominus", - "pt": 1, - "sh": true, + "id": "Glass Crocodile", }, - "value": 110000, + "value": 188932, }, { "category": "Pet", "configData": { - "id": "Pentangelus", - "pt": 1, + "id": "Huge Glass Dominus", }, - "value": 13914, + "value": 6924, }, { "category": "Pet", "configData": { - "id": "Titanic Fawn", + "id": "Huge Horseshoe Capybara", "pt": 2, }, - "value": 50000000, + "value": 5948, }, { "category": "Pet", "configData": { - "id": "Shadow Dominus", - "sh": true, + "id": "Glass Dominus", }, - "value": 8003, + "value": 51276, }, { "category": "Pet", "configData": { - "id": "Divinus", - "pt": 1, + "id": "Leprechaun Kitsune", + "sh": true, }, - "value": 1566, + "value": 315722071, }, { "category": "Pet", "configData": { - "id": "Pastel Deer", + "id": "Huge Horseshoe Capybara", "sh": true, }, - "value": 4378, + "value": 1266, }, { "category": "Pet", "configData": { - "id": "Evil Deer", + "id": "Pot of Gold Corgi", "pt": 2, - "sh": true, }, - "value": 350, + "value": 679506208, }, { "category": "Pet", "configData": { - "id": "Huge Mosaic Corgi", + "id": "Pot of Gold Corgi", + "pt": 1, }, - "value": 58727230, + "value": 546892360, }, { "category": "Pet", "configData": { - "id": "Bull", + "id": "Horseshoe Capybara", "sh": true, }, - "value": 561, + "value": 858972, }, { "category": "Pet", "configData": { - "id": "Tech Ninja Red Panda", + "id": "Horseshoe Capybara", + "pt": 1, }, - "value": 337, + "value": 16077830, }, { "category": "Pet", "configData": { - "id": "Angel Pegasus", + "id": "Clover Penguin", "pt": 2, "sh": true, }, - "value": 256, + "value": 51896, }, { "category": "Pet", "configData": { - "id": "Evil Deer", - "sh": true, + "id": "Horseshoe Capybara", }, - "value": 3129, + "value": 331018275, }, { "category": "Pet", "configData": { - "id": "Avenging Griffin", + "id": "Glass Dominus", "pt": 2, - "sh": true, }, - "value": 11957, + "value": 3074, }, { "category": "Pet", "configData": { - "id": "Huge Flex Fluffy Cat", + "id": "Horseshoe Capybara", + "pt": 2, }, - "value": 67899101, + "value": 15160182, }, { "category": "Pet", "configData": { - "id": "Divinus", - "pt": 2, + "id": "Clover Penguin", + "pt": 1, + "sh": true, }, - "value": 3197, + "value": 82638, }, { "category": "Pet", "configData": { - "id": "Huge Dark Lord", + "id": "Lucki Horse", + "pt": 2, + "sh": true, }, - "value": 69092804, + "value": 69261, }, { "category": "Pet", "configData": { - "id": "Purple Cobra", + "id": "Leprechaun Kitsune", + "pt": 2, "sh": true, }, - "value": 2115, + "value": 47023371, }, { "category": "Pet", "configData": { - "id": "Huge Blazing Shark", + "id": "Leprechaun Kitsune", + "pt": 1, + "sh": true, }, - "value": 75171134, + "value": 32723106, }, { "category": "Pet", "configData": { - "id": "Avenging Griffin", - "sh": true, + "id": "Lucki Chest Mimic", }, - "value": 1612, + "value": 780746, }, { "category": "Pet", "configData": { - "id": "Hacked Skeleton", + "id": "Pot of Gold Corgi", "sh": true, }, - "value": 42087, + "value": 23766513, }, { "category": "Pet", "configData": { - "id": "Titanic Flex Cat", + "id": "Clover Penguin", + "sh": true, }, - "value": 12915050232, + "value": 912431, }, { "category": "Pet", "configData": { - "id": "Flex Tiger", + "id": "Huge Glass Crocodile", }, - "value": 9838977, + "value": 20254, }, { "category": "Pet", "configData": { - "id": "Pentangelus", + "id": "Glass Kraken", "pt": 2, - "sh": true, }, - "value": 8549, + "value": 5947, }, { "category": "Pet", "configData": { - "id": "Sunflower Lion", + "id": "Glass Crocodile", "sh": true, }, - "value": 3819, + "value": 5086, }, { "category": "Pet", "configData": { - "id": "Huge Pixie Fox", + "id": "Huge Lucki Dominus", "pt": 1, - "sh": true, }, - "value": 17000000030, + "value": 111, }, { "category": "Pet", "configData": { - "id": "Angel Seal", - "pt": 2, - "sh": true, + "id": "Clover Deer", }, - "value": 10675, + "value": 244298167, }, { "category": "Pet", "configData": { - "id": "Elegant Eagle", + "id": "Clover Phoenix", + "pt": 2, }, - "value": 357, + "value": 13004005, }, { "category": "Pet", "configData": { - "id": "Chimera", - "pt": 1, + "id": "Clover Phoenix", }, - "value": 3435, + "value": 225671164, }, { "category": "Pet", "configData": { - "id": "Electric Werewolf", + "id": "Clover Phoenix", "pt": 1, }, - "value": 710, + "value": 11838673, }, { "category": "Pet", "configData": { - "id": "Bee", + "id": "Huge Glass Dominus", "pt": 2, - "sh": true, }, - "value": 21600, + "value": 389, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Prison Bunny", - "sh": true, + "id": "Lucky Raid XP Booster V2", + "tn": 1, }, - "value": 129, + "value": 42033159, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Demon Serpents", - "pt": 2, - "sh": true, + "id": "Lucky Raid Damage Booster V2", + "tn": 1, }, - "value": 5669, + "value": 37423542, }, { - "category": "Pet", + "category": "Consumable", "configData": { - "id": "Huge Cyborg Cat", - "pt": 1, + "id": "Instant Lucky Raid XP Booster V2", + "tn": 1, }, - "value": 385355293, + "value": 2250854, }, { - "category": "Pet", + "category": "Egg", "configData": { - "id": "Huge Lucki", - "pt": 1, + "id": "Exclusive Egg 59", }, - "value": 297038216, + "value": 1549544, }, { "category": "Pet", "configData": { - "id": "Heavenly Dove", - "pt": 2, + "id": "Glass Kraken", "sh": true, }, - "value": 31492, + "value": 3584, }, { "category": "Pet", "configData": { - "id": "Evil Ram", + "id": "Clover Deer", "pt": 1, + "sh": true, }, - "value": 39625, + "value": 66438, }, { "category": "Pet", "configData": { - "id": "Avenging Griffin", + "id": "Clover Deer", "pt": 1, + }, + "value": 12164895, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Owl", + "pt": 2, "sh": true, }, - "value": 2647, + "value": 66640, }, { "category": "Pet", "configData": { - "id": "Blazing Bat", + "id": "Clover Deer", "pt": 2, }, - "value": 22245550, + "value": 14218508, }, { "category": "Pet", "configData": { - "id": "Huge Cupcake", - "pt": 1, + "id": "Clover Owl", "sh": true, }, - "value": 364000003, + "value": 776135, }, { "category": "Pet", "configData": { - "id": "Evil Imp", - "pt": 1, + "id": "Clover Deer", + "pt": 2, "sh": true, }, - "value": 117, + "value": 47826, }, { "category": "Pet", "configData": { - "id": "Huge Sandcastle Cat", + "id": "Clover Owl", "pt": 1, }, - "value": 5547333107, + "value": 14260838, }, { "category": "Pet", "configData": { - "id": "Demon Serpents", - "sh": true, + "id": "Clover Owl", + "pt": 2, }, - "value": 1865, + "value": 18746790, }, { "category": "Pet", "configData": { - "id": "Black Hole Angelus", - "pt": 2, + "id": "Clover Deer", + "sh": true, }, - "value": 2391417, + "value": 667100, }, { "category": "Pet", "configData": { - "id": "Huge Divinus", - "pt": 1, - "sh": true, + "id": "Clover Owl", }, - "value": 1375326413, + "value": 275179017, }, { "category": "Pet", "configData": { - "id": "Huge Flex Tiger", + "id": "Huge Lucki Dominus", }, - "value": 84941715, + "value": 332, }, { "category": "Pet", "configData": { - "id": "Pentangelus", + "id": "Pot of Gold Corgi", + "pt": 1, "sh": true, }, - "value": 2272, + "value": 3279358, }, { "category": "Pet", "configData": { - "id": "Flex Bear", + "id": "Glass Dominus", "sh": true, }, - "value": 9419414, + "value": 1606, }, { "category": "Pet", "configData": { - "id": "Plasma Bull", - "pt": 2, + "id": "Titanic Glass Blobfish", }, - "value": 5204, + "value": 1487, }, { "category": "Pet", "configData": { - "id": "Huge Flex Tiger", - "sh": true, + "id": "Huge Lucki Lamb", }, - "value": 1088584707, + "value": 88734, }, { "category": "Pet", "configData": { - "id": "Good vs Evil Cat", - "pt": 1, - "sh": true, + "id": "Titanic Leprechaun Kitsune", }, - "value": 394696, + "value": 830, }, { "category": "Pet", "configData": { - "id": "Rave Bunny", + "id": "Huge Glass Crocodile", + "sh": true, }, - "value": 115, + "value": 785, }, { "category": "Pet", "configData": { - "id": "Dominus Infernus", - "pt": 1, - "sh": true, + "id": "Huge Glass Crocodile", + "pt": 2, }, - "value": 213, + "value": 668, }, { "category": "Pet", "configData": { - "id": "Flex Fluffy Cat", + "id": "Huge Glass Dominus", "sh": true, }, - "value": 7594628, + "value": 408, }, { "category": "Pet", "configData": { - "id": "Angel Seal", + "id": "Pot of Gold Corgi", + "pt": 2, "sh": true, }, - "value": 12365599, + "value": 5114402, }, { "category": "Pet", "configData": { - "id": "Ducky Magician", + "id": "Clover Phoenix", "sh": true, }, - "value": 600, + "value": 616758, }, { "category": "Pet", "configData": { - "id": "Demon Serpents", + "id": "Huge Horseshoe Capybara", "pt": 1, "sh": true, }, - "value": 12687, + "value": 262, }, { "category": "Pet", "configData": { - "id": "Huge Evil Imp", - "pt": 1, + "id": "Huge Lucki Dominus", + "pt": 2, }, - "value": 53598910, + "value": 34, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Pumpkin Cat", + "id": "Lucki Golem", + "pt": 2, }, - "value": 4361158, + "value": 9550, }, { - "category": "Hoverboard", + "category": "Lootbox", "configData": { - "id": "Reversed", + "id": "Horseshoe Gift", }, - "value": 224644569, + "value": 19500694, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Strawberry", + "id": "Lucki Chest Mimic", + "pt": 2, }, - "value": 1641364, + "value": 117455, }, { - "category": "Hoverboard", + "category": "Consumable", "configData": { - "id": "Aura", + "id": "Lucky Raid XP Booster V2", + "tn": 2, }, - "value": 1009040, + "value": 258680, }, { - "category": "Hoverboard", + "category": "Consumable", "configData": { - "id": "Popcat", - "sh": true, + "id": "Lucky Raid Damage Booster V2", + "tn": 2, }, - "value": 180206425, + "value": 260667, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Bleebo The Alien", + "id": "Horseshoe Capybara", + "pt": 1, + "sh": true, }, - "value": 509437587, + "value": 79208, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Cosmic", + "id": "Horseshoe Capybara", + "pt": 2, + "sh": true, }, - "value": 3656495343, + "value": 50824, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Vampire Bat", + "id": "Clover Phoenix", + "pt": 1, + "sh": true, }, - "value": 1079715, + "value": 64349, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Helicopter", + "id": "Clover Phoenix", + "pt": 2, "sh": true, }, - "value": 530703668, + "value": 45029, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Web", + "id": "Huge Lucki Horse", }, - "value": 1982016, + "value": 198003, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Rocket", + "id": "Clover Owl", + "pt": 1, "sh": true, }, - "value": 1020461865, + "value": 78524, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Fragmented", + "id": "Glass Crocodile", + "pt": 2, + "sh": true, }, - "value": 212644329, + "value": 399, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Toilet", + "id": "Glass Dominus", + "pt": 2, + "sh": true, }, - "value": 43381794, + "value": 101, }, { - "category": "Hoverboard", + "category": "Booth", "configData": { - "id": "Supercar", + "id": "Pot of Gold", }, - "value": 218230913, + "value": 46806, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Ducky", + "id": "Huge Lucki Dominus", + "sh": true, }, - "value": 906679241, + "value": 8, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Blobfish", + "id": "Lucki Golem", }, - "value": 4884030527, + "value": 84395, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "M-10", + "id": "Huge Bluebird", }, - "value": 8125867, + "value": 103149, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Rocket", + "id": "Huge Bluebird", + "pt": 2, }, - "value": 99661917, + "value": 2177, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "UFO", + "id": "Huge Bluebird", + "sh": true, }, - "value": 97736047, + "value": 2028, }, { "category": "Hoverboard", "configData": { - "id": "Watermelon", + "id": "Pot of Gold", }, - "value": 1701158, + "value": 46907, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Mosaic", - "sh": true, + "id": "Huge Clover Deer", }, - "value": 84884271, + "value": 474000, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Pinata", + "id": "Huge Clover Phoenix", }, - "value": 999624, + "value": 250273, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Supercar", + "id": "Huge Bluebird", + "pt": 2, "sh": true, }, - "value": 477139363, + "value": 51, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "High Tech", + "id": "Lucki Chest Mimic", + "pt": 1, }, - "value": 14621306, + "value": 103838, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Toilet", - "sh": true, + "id": "Huge Lucki Lamb", + "pt": 1, }, - "value": 222638774, + "value": 9846, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Good vs Evil", + "id": "Titanic Tiedye Corgi", }, - "value": 1272811, + "value": 6413, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Witch Cat", + "id": "Titanic Tiedye Corgi", + "pt": 2, }, - "value": 939154, + "value": 139, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Rainbow", + "id": "Titanic Tiedye Corgi", + "sh": true, }, - "value": 3117981, + "value": 143, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Oversized", + "id": "Lucki Golem", + "pt": 1, }, - "value": 70744078, + "value": 8260, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Hologram", - "sh": true, + "id": "Huge Clover Penguin", }, - "value": 101370317, + "value": 20334, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Glitched", + "id": "Glass Kraken", + "pt": 2, + "sh": true, }, - "value": 4085436, + "value": 258, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Popcat", + "id": "Huge Lucki Lamb", + "pt": 2, }, - "value": 19960214, + "value": 5178, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Tiger", + "id": "Titanic Lucki Chest Mimic", }, - "value": 879456, + "value": 5348, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Sleigh", + "id": "Titanic Glass Blobfish", + "sh": true, }, - "value": 56920562, + "value": 27, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Pegasus", + "id": "Titanic Leprechaun Kitsune", + "pt": 1, }, - "value": 2464524368, + "value": 330, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Hacker", + "id": "Huge Clover Deer", + "pt": 1, }, - "value": 3171860, + "value": 95499, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Red Present", + "id": "Huge Clover Phoenix", + "pt": 1, }, - "value": 3920926763, + "value": 49927, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Pizza", + "id": "Huge Glass Dominus", + "pt": 2, + "sh": true, }, - "value": 9023660, + "value": 54, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Balloon", + "id": "Gargantuan Lucki Chest Mimic", + "pt": 1, }, - "value": 31413032, + "value": 8, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Doodle", + "id": "Gargantuan Nightfall Tiger", + "pt": 2, }, - "value": 963716, + "value": 4, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Rave Crab", + "id": "Gargantuan Nightfall Tiger", }, - "value": 176184771, + "value": 269, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Hotdog", + "id": "Huge Lucki Horse", + "pt": 1, }, - "value": 19531778, + "value": 39790, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Steampunk", + "id": "Titanic Prickly Panda", }, - "value": 14858573, + "value": 2100, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Mosaic", + "id": "Huge Lucki Horse", + "pt": 2, }, - "value": 7376596, + "value": 7721, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Nightmare", + "id": "Huge Pot of Gold Corgi", }, - "value": 44202540, + "value": 2266, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Hologram", + "id": "Gargantuan Nightfall Tiger", + "sh": true, }, - "value": 5767751, + "value": 5, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Helicopter", + "id": "Titanic Glass Blobfish", + "pt": 2, }, - "value": 225471646, + "value": 40, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Clown", + "id": "Titanic Leprechaun Kitsune", + "pt": 2, }, - "value": 216725741, + "value": 71, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Hotdog", + "id": "Huge Horseshoe Capybara", + "pt": 2, "sh": true, }, - "value": 130430652, + "value": 56, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Safety", + "id": "Gargantuan Glass Squid", }, - "value": 155254999, + "value": 134, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Pixel Dragon", + "id": "Huge Clover Deer", + "pt": 2, }, - "value": 131702451, + "value": 19141, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Fire Dragon", + "id": "Huge Lucki Wolf", + "pt": 1, }, - "value": 155049616, + "value": 3172, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Night Terror", + "id": "Titanic Lucki Chest Mimic", + "pt": 1, }, - "value": 3044506, + "value": 1079, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Rich", + "id": "Titanic Inferno Cat", }, - "value": 13988930, + "value": 2086, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Art", + "id": "Huge Lucki Wolf", }, - "value": 323753, + "value": 8374, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Bubble", + "id": "Titanic Horseshoe Capybara", }, - "value": 511281448, + "value": 6380, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Dino", + "id": "Huge Pot of Gold Corgi", + "pt": 1, }, - "value": 495450, + "value": 425, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Rudolph", + "id": "Huge Clover Deer", + "sh": true, }, - "value": 915311, + "value": 6091, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Pizza", + "id": "Huge Lucki Dominus", + "pt": 2, "sh": true, }, - "value": 74069412, + "value": 1, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Elemental", + "id": "Huge Lucki Lamb", + "sh": true, }, - "value": 850916, + "value": 1555, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Banana", + "id": "Huge Glass Crocodile", + "pt": 2, + "sh": true, }, - "value": 18876687, + "value": 28, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Rich", - "sh": true, + "id": "Huge Clover Phoenix", + "pt": 2, }, - "value": 118354439, + "value": 9901, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Ice Cream", + "id": "Huge Lucki Horse", + "sh": true, }, - "value": 240347121, + "value": 1603, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Police", + "id": "Huge Lucki Wolf", + "pt": 2, }, - "value": 2405164, + "value": 838, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Cat", + "id": "Titanic Horseshoe Capybara", + "pt": 1, }, - "value": 799471, + "value": 1380, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Wicked", + "id": "Huge Clover Penguin", + "pt": 1, }, - "value": 376869843, + "value": 4099, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Rave", + "id": "Huge Clover Deer", + "pt": 1, + "sh": true, }, - "value": 460408, + "value": 1238, }, { - "category": "Hoverboard", + "category": "Consumable", "configData": { - "id": "Millionaire", + "id": "Instant Lucky Raid XP Booster V2", + "tn": 2, }, - "value": 1502687, + "value": 423, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Noob", + "id": "Titanic Lucki Chest Mimic", + "sh": true, }, - "value": 35426666, + "value": 56, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Throne", + "id": "Huge Lucki Horse", + "pt": 1, "sh": true, }, - "value": 452852282, + "value": 345, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Surfboard", + "id": "Huge Clover Phoenix", + "sh": true, }, - "value": 1011467, + "value": 1991, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Nightmare", + "id": "Huge Clover Deer", + "pt": 2, "sh": true, }, - "value": 339501140, + "value": 272, }, { - "category": "Hoverboard", + "category": "Pet", "configData": { - "id": "Throne", + "id": "Huge Clover Penguin", + "pt": 2, }, - "value": 97621490, + "value": 809, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Diamonds", - "tn": 9, + "id": "Huge Pot of Gold Corgi", + "sh": true, }, - "value": 201635, + "value": 25, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Damage", - "tn": 11, + "id": "Titanic Horseshoe Capybara", + "sh": true, }, - "value": 348041, + "value": 121, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Lucky", - "tn": 10, + "id": "Huge Clover Phoenix", + "pt": 1, + "sh": true, }, - "value": 91934, + "value": 418, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Damage", - "tn": 10, + "id": "Huge Lucki Lamb", + "pt": 2, + "sh": true, }, - "value": 5648, + "value": 101, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Treasure Hunter", - "tn": 9, + "id": "Lucki Chest Mimic", + "pt": 1, + "sh": true, }, - "value": 4779, + "value": 2038, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Coins", - "tn": 9, + "id": "Lucki Chest Mimic", + "pt": 2, + "sh": true, }, - "value": 4568, + "value": 1297, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Huge", - "tn": 1, + "id": "Titanic Horseshoe Capybara", + "pt": 2, }, - "value": 1331093, + "value": 327, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Diamonds", - "tn": 6, + "id": "Titanic Lucki Chest Mimic", + "pt": 2, }, - "value": 3273, + "value": 214, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Coins", - "tn": 8, + "id": "Huge Clover Phoenix", + "pt": 2, + "sh": true, }, - "value": 4059, + "value": 102, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Damage", - "tn": 8, + "id": "Huge Lucki Wolf", + "pt": 2, + "sh": true, }, - "value": 3034, + "value": 11, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Lucky", - "tn": 8, + "id": "Gargantuan Lucki Chest Mimic", + "pt": 2, }, - "value": 12281, + "value": 2, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Diamonds", - "tn": 5, + "id": "Lucki Golem", + "pt": 1, + "sh": true, }, - "value": 139, + "value": 172, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Treasure Hunter", - "tn": 7, + "id": "Huge Lucki Horse", + "pt": 2, + "sh": true, }, - "value": 625, + "value": 60, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Coins", - "tn": 7, + "id": "Huge Lucki Lamb", + "pt": 1, + "sh": true, }, - "value": 570, + "value": 145, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Damage", - "tn": 7, + "id": "Titanic Horseshoe Capybara", + "pt": 1, + "sh": true, }, - "value": 522, + "value": 27, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Diamonds", - "tn": 7, + "id": "Lucki Chest Mimic", + "sh": true, }, - "value": 907, + "value": 1116, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Treasure Hunter", - "tn": 6, + "id": "Titanic Prickly Panda", + "pt": 1, }, - "value": 1312, + "value": 256, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Lucky", - "tn": 6, + "id": "Gargantuan Floppa", }, - "value": 670, + "value": 87, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Lucky", - "tn": 1, + "id": "Huge Lucki Wolf", + "sh": true, }, - "value": 70, + "value": 167, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Walkspeed", - "tn": 1, + "id": "Titanic Inferno Cat", + "sh": true, }, - "value": 73, + "value": 46, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Damage", - "tn": 3, + "id": "Huge Clover Penguin", + "sh": true, }, - "value": 36, + "value": 140, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Treasure Hunter", - "tn": 11, + "id": "Titanic Horseshoe Capybara", + "pt": 2, + "sh": true, }, - "value": 3945470, + "value": 4, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Coins", - "tn": 11, + "id": "Titanic Inferno Cat", + "pt": 1, }, - "value": 115526, + "value": 239, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Lucky", - "tn": 4, + "id": "Huge Lucki Wolf", + "pt": 1, + "sh": true, }, - "value": 43, + "value": 35, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Lucky", - "tn": 11, + "id": "Titanic Inferno Cat", + "pt": 2, }, - "value": 2057006, + "value": 57, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Lucky", - "tn": 3, + "id": "Titanic Prickly Panda", + "pt": 2, }, - "value": 50, + "value": 51, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Treasure Hunter", - "tn": 4, + "id": "Huge Pot of Gold Corgi", + "pt": 2, }, - "value": 47, + "value": 84, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Diamonds", - "tn": 1, + "id": "Lucki Golem", + "pt": 2, + "sh": true, }, - "value": 39, + "value": 71, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Coins", - "tn": 2, + "id": "Titanic Lucki Chest Mimic", + "pt": 1, + "sh": true, }, - "value": 35, + "value": 9, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Coins", - "tn": 3, + "id": "Titanic Leprechaun Kitsune", + "sh": true, }, - "value": 33, + "value": 12, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Lucky", - "tn": 5, + "id": "Titanic Lucki Chest Mimic", + "pt": 2, + "sh": true, }, - "value": 431, + "value": 5, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "The Cocktail", - "tn": 1, + "id": "Titanic Prickly Panda", + "sh": true, }, - "value": 128519, + "value": 49, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Diamonds", - "tn": 3, + "id": "Gargantuan Lucki Chest Mimic", }, - "value": 42, + "value": 33, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Coins", - "tn": 10, + "id": "Gargantuan Floppa", + "pt": 1, }, - "value": 5437, + "value": 11, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Coins", - "tn": 5, + "id": "Huge Clover Penguin", + "pt": 1, + "sh": true, }, - "value": 124, + "value": 33, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Diamonds", - "tn": 2, + "id": "Huge Clover Penguin", + "pt": 2, + "sh": true, }, - "value": 43, + "value": 9, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Damage", - "tn": 4, + "id": "Titanic Anime Cat", + "pt": 2, + "sh": true, }, - "value": 57, + "value": 1, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Diamonds", - "tn": 4, + "id": "Lucki Golem", + "sh": true, }, - "value": 119, + "value": 15, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Damage", - "tn": 2, + "id": "Huge Pot of Gold Corgi", + "pt": 1, + "sh": true, }, - "value": 41, + "value": 1, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Coins", - "tn": 1, + "id": "Gargantuan Glass Squid", + "pt": 2, }, - "value": 48, + "value": 2, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Lucky", - "tn": 7, + "id": "Titanic Leprechaun Kitsune", + "pt": 1, + "sh": true, }, - "value": 1761, + "value": 2, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Lucky", - "tn": 2, + "id": "Huge Lucki Golem", }, - "value": 49, + "value": 12575, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Damage", - "tn": 9, + "id": "Huge Lucki Hydra", }, - "value": 5881, + "value": 504969, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Treasure Hunter", - "tn": 8, + "id": "Huge Lucki Hydra", + "pt": 1, }, - "value": 3200, + "value": 101606, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Walkspeed", - "tn": 3, + "id": "Huge Lucki Golem", + "pt": 1, }, - "value": 49, + "value": 6169, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Damage", - "tn": 1, + "id": "Huge Leprechaun Fox", + "pt": 2, }, - "value": 39, + "value": 18819, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Damage", - "tn": 6, + "id": "Huge Leprechaun Fox", + "pt": 1, }, - "value": 323, + "value": 94298, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Diamonds", - "tn": 8, + "id": "Huge Lucki Golem", + "pt": 2, }, - "value": 5156, + "value": 1776, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Lucky", - "tn": 9, + "id": "Huge Irish Badger", }, - "value": 15977, + "value": 147150, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Treasure Hunter", - "tn": 1, + "id": "Huge Leprechaun Fox", }, - "value": 933, + "value": 473040, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Treasure Hunter", - "tn": 10, + "id": "Huge Lucki Golem", + "pt": 1, + "sh": true, }, - "value": 557034, + "value": 84, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Damage", - "tn": 5, + "id": "Huge Lucki Hydra", + "pt": 2, }, - "value": 86, + "value": 20123, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Walkspeed", - "tn": 2, + "id": "Huge Lucki Golem", + "sh": true, }, - "value": 53, + "value": 373, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Treasure Hunter", - "tn": 2, + "id": "Huge Lucki Golem", + "pt": 2, + "sh": true, }, - "value": 45, + "value": 22, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Coins", - "tn": 4, + "id": "Titanic Mucki", + "sh": true, }, - "value": 40, + "value": 46, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Coins", - "tn": 6, + "id": "Huge Irish Badger", + "pt": 1, }, - "value": 298, + "value": 29449, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Treasure Hunter", - "tn": 3, + "id": "Titanic Tiedye Corgi", + "pt": 2, + "sh": true, }, - "value": 40, + "value": 2, }, { - "category": "Potion", + "category": "Pet", "configData": { - "id": "Treasure Hunter", - "tn": 5, + "id": "Huge Irish Badger", + "pt": 2, }, - "value": 271, + "value": 5944, }, { - "category": "Fruit", + "category": "Pet", "configData": { - "id": "Orange", - "sh": true, + "id": "Titanic Mucki", }, - "value": 543, + "value": 5639, }, { - "category": "Fruit", + "category": "Pet", "configData": { - "id": "Pineapple", - "sh": true, + "id": "Titanic Irish Wolfhound", }, - "value": 278, + "value": 6575, }, { - "category": "Fruit", + "category": "Pet", "configData": { - "id": "Watermelon", + "id": "Huge Lucki Hydra", + "pt": 1, "sh": true, }, - "value": 638, + "value": 863, }, { - "category": "Fruit", + "category": "Pet", "configData": { - "id": "Apple", + "id": "Huge Irish Badger", "sh": true, }, - "value": 235, + "value": 1202, }, { - "category": "Fruit", + "category": "Pet", "configData": { - "id": "Watermelon", + "id": "Titanic Irish Wolfhound", + "pt": 2, }, - "value": 20, + "value": 289, }, { - "category": "Fruit", + "category": "Pet", "configData": { - "id": "Candycane", + "id": "Huge Leprechaun Fox", + "sh": true, }, - "value": 17249, + "value": 3783, }, { - "category": "Fruit", + "category": "Pet", "configData": { - "id": "Orange", + "id": "Titanic Irish Wolfhound", + "pt": 1, }, - "value": 17, + "value": 1401, }, { - "category": "Fruit", + "category": "Pet", "configData": { - "id": "Pineapple", + "id": "Huge Mucki", }, - "value": 90, + "value": 2913, }, { - "category": "Fruit", + "category": "Pet", "configData": { - "id": "Rainbow", + "id": "Huge Lucki Hydra", + "sh": true, }, - "value": 37, + "value": 3942, }, { - "category": "Fruit", + "category": "Pet", "configData": { - "id": "Banana", + "id": "Huge Mucki", + "pt": 2, }, - "value": 12, + "value": 137, }, { - "category": "Fruit", + "category": "Pet", "configData": { - "id": "Banana", - "sh": true, + "id": "Titanic Mucki", + "pt": 1, }, - "value": 442, + "value": 1126, }, { - "category": "Fruit", + "category": "Pet", "configData": { - "id": "Apple", + "id": "Titanic Mucki", + "pt": 2, }, - "value": 19, + "value": 228, }, { - "category": "Charm", + "category": "Pet", "configData": { - "id": "Lightning", - "tn": 1, + "id": "Huge Leprechaun Fox", + "pt": 1, + "sh": true, }, - "value": 86, + "value": 752, }, { - "category": "Charm", + "category": "Pet", "configData": { - "id": "XP", - "tn": 1, + "id": "Huge Irish Badger", + "pt": 1, + "sh": true, }, - "value": 25814, + "value": 241, }, { - "category": "Charm", + "category": "Pet", "configData": { - "id": "Criticals", - "tn": 1, + "id": "Huge Irish Badger", + "pt": 2, + "sh": true, }, - "value": 709, + "value": 63, }, { - "category": "Charm", + "category": "Pet", "configData": { - "id": "TNT", - "tn": 1, + "id": "Huge Leprechaun Fox", + "pt": 2, + "sh": true, }, - "value": 239, + "value": 185, }, { - "category": "Charm", + "category": "Pet", "configData": { - "id": "Royalty", - "tn": 1, + "id": "Gargantuan Glass Squid", + "sh": true, }, - "value": 3555243, + "value": 2, }, { - "category": "Charm", + "category": "Pet", "configData": { - "id": "Overload", - "tn": 1, + "id": "Titanic Mucki", + "pt": 1, + "sh": true, }, - "value": 6940926, + "value": 16, }, { - "category": "Charm", + "category": "Pet", "configData": { - "id": "Diamonds", - "tn": 1, + "id": "Huge Lucki Hydra", + "pt": 2, + "sh": true, }, - "value": 310, + "value": 172, }, { - "category": "Charm", + "category": "Pet", "configData": { - "id": "Coins", - "tn": 1, + "id": "Titanic Irish Wolfhound", + "sh": true, }, - "value": 101, + "value": 63, }, { - "category": "Charm", + "category": "Pet", "configData": { - "id": "Bonus", - "tn": 1, + "id": "Huge Mucki", + "pt": 1, }, - "value": 411, + "value": 179, }, { - "category": "Charm", + "category": "Pet", "configData": { - "id": "Strength", - "tn": 1, + "id": "Huge Mucki", + "sh": true, }, - "value": 148, + "value": 57, }, { - "category": "Charm", + "category": "Pet", "configData": { - "id": "Glittering", - "tn": 1, + "id": "Huge Mucki", + "pt": 2, + "sh": true, }, - "value": 64967, + "value": 7, }, { - "category": "Charm", + "category": "Pet", "configData": { - "id": "Agility", - "tn": 1, + "id": "Titanic Mucki", + "pt": 2, + "sh": true, }, - "value": 167, + "value": 2, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Halloween Mask", + "id": "Gargantuan Lucki Chest Mimic", + "sh": true, }, - "value": 470301, + "value": 1, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Ultra Pet Cube", + "id": "Titanic Inferno Cat", + "pt": 1, + "sh": true, }, - "value": 26358, + "value": 5, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Pet Cube", + "id": "Titanic Irish Wolfhound", + "pt": 1, + "sh": true, }, - "value": 879, + "value": 10, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Graffiti Can", + "id": "Huge Mucki", + "pt": 1, + "sh": true, }, - "value": 530, + "value": 4, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Millionaire Bucks", + "id": "Titanic Clover Owl", }, - "value": 1039, + "value": 55, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Candy Corn", + "id": "Huge Clover Owl", }, - "value": 3101, + "value": 2491, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Rave Upgrade Ticket", + "id": "Huge Clover Owl", + "pt": 2, }, - "value": 844, + "value": 140, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Lucky Tile", + "id": "Huge Clover Owl", + "pt": 1, }, - "value": 51, + "value": 454, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Pumpkin", + "id": "Titanic Clover Owl", + "pt": 1, }, - "value": 3706, + "value": 6, }, { - "category": "Misc", + "category": "Hoverboard", "configData": { - "id": "Ultra Lucky Tile", + "id": "Clover", }, - "value": 25301, + "value": 1956, }, { - "category": "Misc", + "category": "Booth", "configData": { - "id": "Diamond Gift Bag", + "id": "Clover", }, - "value": 39587, + "value": 3147, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Seashell", + "id": "Titanic Clover Owl", + "pt": 2, }, - "value": 1011, + "value": 3, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Prison Key", + "id": "Titanic Irish Wolfhound", + "pt": 2, + "sh": true, }, - "value": 39724, + "value": 2, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Void Key Lower Half", + "id": "Gargantuan Floppa", + "pt": 2, }, - "value": 915, + "value": 1, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Void Spinny Wheel Ticket", + "id": "Huge Leprechaun Kitsune", }, - "value": 33466, + "value": 9586, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Nightmare Fuel", + "id": "Titanic Lucki Golem", + "pt": 2, }, - "value": 214854, + "value": 71, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Millionaire Ticket", + "id": "Huge Leprechaun Kitsune", + "pt": 2, }, - "value": 13600, + "value": 4437, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Legendary Glitch Core", + "id": "Titanic Lucki Golem", }, - "value": 360426, + "value": 2099, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Rare Glitch Core", + "id": "Huge Lucki Chest Mimic", }, - "value": 61181, + "value": 5832, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Epic Glitch Core", + "id": "Huge Leprechaun Kitsune", + "pt": 1, }, - "value": 33702, + "value": 7869, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Treasure Hideout Key Lower Half", + "id": "Titanic Lucki Golem", + "pt": 1, }, - "value": 60, + "value": 99, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Treasure Hideout Key", + "id": "Gargantuan Lucki Angelus", }, - "value": 17295, + "value": 89, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Dino Lab Keycard", + "id": "Huge Leprechaun Kitsune", + "pt": 2, + "sh": true, }, - "value": 365, + "value": 45, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Basic Item Jar", + "id": "Titanic Lucki Golem", + "pt": 2, + "sh": true, }, - "value": 18549, + "value": 5, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Exclusive Daycare Slot Voucher", + "id": "Huge Leprechaun Kitsune", + "pt": 1, + "sh": true, }, - "value": 22865811, + "value": 47, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Arcade Token", + "id": "Gargantuan Lucki Angelus", + "pt": 2, }, - "value": 14171, + "value": 1, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Large Enchant Bundle", + "id": "Huge Lucki Chest Mimic", + "pt": 1, }, - "value": 402, + "value": 224, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Fruit Bundle", + "id": "Titanic Lucki Golem", + "sh": true, }, - "value": 227, + "value": 20, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Charm Chisel", + "id": "Huge Lucki Chest Mimic", + "pt": 2, }, - "value": 32592, + "value": 90, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Tech Key Lower Half", + "id": "Gargantuan Lucki Angelus", + "pt": 1, }, - "value": 682, + "value": 2, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Hacker Key", + "id": "Titanic Prickly Panda", + "pt": 1, + "sh": true, }, - "value": 8873, + "value": 4, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Tech Key", + "id": "Beluga Whale", + "pt": 1, + "sh": true, }, - "value": 18638, + "value": 1, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Diamond Shovel", + "id": "Titanic Glass Blobfish", + "pt": 2, + "sh": true, }, - "value": 5196069, + "value": 1, }, { - "category": "Misc", + "category": "Currency", "configData": { - "id": "Magic Shard", + "id": "SpringCoins", }, - "value": 59301, + "value": 14261248999485676, }, { "category": "Misc", "configData": { - "id": "Treasure Hideout Key Upper Half", + "id": "Spring Yellow Sunflower Token", }, - "value": 583, + "value": 55833221915634, }, { "category": "Misc", "configData": { - "id": "Secret Key Upper Half", + "id": "Spring Pink Rose Token", }, - "value": 3340, + "value": 65078440302616, }, { "category": "Misc", "configData": { - "id": "Void Key Upper Half", + "id": "Spring Red Tulip Token", }, - "value": 10704, + "value": 55238227437669, }, { "category": "Misc", "configData": { - "id": "Charm Stone", + "id": "Spring Bluebell Token", }, - "value": 17706, + "value": 76451297363160, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Golden Fishing Rod", + "id": "Bunny Cat", }, - "value": 42503, + "value": 761455987, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Firework Cannon", + "id": "Bunny Cat", + "pt": 1, }, - "value": 23828, + "value": 73665718, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Squeaky Toy", + "id": "Bandana Shiba", }, - "value": 28, + "value": 1151390433, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Hot Cocoa", + "id": "Egg Dog", }, - "value": 5887, + "value": 1121099449, }, { - "category": "Misc", + "category": "Consumable", "configData": { - "id": "Green Christmas Ornament", + "id": "Spring Diamond Egg Booster", + "tn": 1, }, - "value": 417317, + "value": 580092, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Coins Flag", + "id": "Egg Dog", + "pt": 1, }, - "value": 11, + "value": 102585132, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Basic Glitch Core", + "id": "Egg Dog", + "pt": 2, }, - "value": 175011, + "value": 47504487, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Diamond Fishing Rod", + "id": "Bandana Shiba", + "sh": true, }, - "value": 9840160, + "value": 40938629, }, { - "category": "Misc", + "category": "Egg", "configData": { - "id": "Gold Christmas Ornament", + "id": "Exclusive Egg 60", }, - "value": 51593, + "value": 1030968, }, { - "category": "Misc", + "category": "Lootbox", "configData": { - "id": "Old Boot", + "id": "Blossom Gift", }, - "value": 13584, + "value": 4136610, }, { "category": "Misc", "configData": { - "id": "Void Key", + "id": "Spring Egg Token", }, - "value": 61546, + "value": 252621954993270, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Crystal Key Lower Half", + "id": "Egg Dog", + "sh": true, }, - "value": 660, + "value": 37464289, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "TNT Crate", + "id": "Bandana Shiba", + "pt": 2, }, - "value": 693, + "value": 52657648, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Water Gun", + "id": "Bandana Shiba", + "pt": 1, }, - "value": 1369069, + "value": 111636783, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Daycare Slot Voucher", + "id": "Diamond Chick", + "pt": 1, }, - "value": 937, + "value": 410576241, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Basic Coin Jar", + "id": "Diamond Chick", }, - "value": 52, + "value": 8119912258, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Blue Christmas Ornament", + "id": "Bunny Cat", + "pt": 2, }, - "value": 410115, + "value": 34077079, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Glitched Drive", + "id": "Bunny Cat", + "sh": true, }, - "value": 1153441, + "value": 26521210, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Crystal Key", + "id": "Diamond Chick", + "pt": 2, }, - "value": 13724, + "value": 176964700, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Fireworks", + "id": "Diamond Chick", + "sh": true, }, - "value": 462, + "value": 12816241, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Golden Prison Key", + "id": "Huge Empyrean Owl", }, - "value": 227180, + "value": 49933, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Rainbow Mini Chest", + "id": "Huge Empyrean Owl", + "pt": 2, }, - "value": 654937, + "value": 6726, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Strength Flag", + "id": "Bandana Shiba", + "pt": 1, + "sh": true, }, - "value": 54, + "value": 4206781, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Enchant Bundle", + "id": "Bunny Cat", + "pt": 1, + "sh": true, }, - "value": 118, + "value": 2683417, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Breakable Sprinkler", + "id": "Bandana Shiba", + "pt": 2, + "sh": true, }, - "value": 814, + "value": 1894243, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Insta Plant Capsule", + "id": "Huge Diamond Chick", + "sh": true, }, - "value": 10742, + "value": 3433, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Mini Pinata", + "id": "Special Ops Skunk", }, - "value": 30632, + "value": 99486, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Booth Slot Voucher", + "id": "Huge Galaxy Fox", }, - "value": 11202, + "value": 64112, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Toy Bone", + "id": "Huge Galaxy Fox", + "pt": 1, }, - "value": 15, + "value": 12780, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Fortune Flag", + "id": "Special Ops Dog", }, - "value": 51, + "value": 37786, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Enchant Essence", + "id": "Huge Quartz Fox", }, - "value": 218, + "value": 22270, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Golden Shovel", + "id": "Special Ops Ram", }, - "value": 23490, + "value": 146945, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Nametag", + "id": "Diamond Chick", + "pt": 1, + "sh": true, }, - "value": 30234, + "value": 633224, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Large Gift Bag", + "id": "Huge Special Ops Dog", + "sh": true, }, - "value": 9815, + "value": 247, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Toy Ball", + "id": "Special Ops Ram", + "sh": true, }, - "value": 25, + "value": 3885, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Clan Voucher", + "id": "Huge Diamond Chick", }, - "value": 32448344, + "value": 136384, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Gift Bag", + "id": "Huge Empyrean Owl", + "pt": 1, }, - "value": 2775, + "value": 23183, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Hasty Flag", + "id": "Egg Dog", + "pt": 1, + "sh": true, }, - "value": 29, + "value": 3672502, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Red Christmas Ornament", + "id": "Huge Special Ops Ram", }, - "value": 34709, + "value": 14410, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Giant Coin Jar", + "id": "Egg Dog", + "pt": 2, + "sh": true, }, - "value": 86, + "value": 1643132, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Spinny Wheel Ticket", + "id": "Diamond Chick", + "pt": 2, + "sh": true, }, - "value": 4101, + "value": 465398, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Tech Key Upper Half", + "id": "Bunny Cat", + "pt": 2, + "sh": true, }, - "value": 6030, + "value": 1200578, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Diamonds Flag", + "id": "Huge Empyrean Owl", + "sh": true, }, - "value": 33, + "value": 1441, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Comet", + "id": "Special Ops Skunk", + "pt": 2, }, - "value": 469, + "value": 4229, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Rainbow Swirl", + "id": "Huge Special Ops Dog", }, - "value": 3948, + "value": 5081, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Crystal Key Upper Half", + "id": "Huge Diamond Chick", + "pt": 1, }, - "value": 6799, + "value": 7326, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Tech Spinny Wheel Ticket", + "id": "Huge Quartz Fox", + "pt": 1, }, - "value": 4912, + "value": 8093, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Magic Coin Jar", + "id": "Special Ops Dog", + "sh": true, }, - "value": 51, + "value": 1071, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Potion Bundle", + "id": "Special Ops Ram", + "pt": 2, }, - "value": 93, + "value": 6265, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Toy Bundle", + "id": "Special Ops Skunk", + "sh": true, }, - "value": 106, + "value": 2716, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Shiny Flag", + "id": "Huge Empyrean Owl", + "pt": 1, + "sh": true, }, - "value": 309, + "value": 305, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Charm Hammer", + "id": "Huge Galaxy Fox", + "pt": 2, }, - "value": 4041, + "value": 2582, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Seed Bag", + "id": "Huge Quartz Fox", + "sh": true, }, - "value": 6892, + "value": 451, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Rainbow Flag", + "id": "Huge Galaxy Fox", + "sh": true, }, - "value": 581, + "value": 543, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Magnet Flag", + "id": "Titanic Diamond Chick", }, - "value": 32, + "value": 4187, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Snowball Launcher", + "id": "Huge Quartz Fox", + "pt": 2, }, - "value": 1887, + "value": 2175, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Snowball", + "id": "Gargantuan Wise Cat", }, - "value": 42, + "value": 93, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Secret Key Lower Half", + "id": "Titanic Scribe Squirrel", }, - "value": 897, + "value": 2321, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "TNT", + "id": "Gargantuan Special Ops Moth", }, - "value": 264, + "value": 101, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Christmas Cookie", + "id": "Huge Special Ops Ram", + "sh": true, }, - "value": 10066, + "value": 596, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Silver Christmas Ornament", + "id": "Titanic Red Dragon", }, - "value": 162733, + "value": 1978, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Bucket", + "id": "Titanic Scribe Squirrel", + "pt": 2, }, - "value": 5957, + "value": 193, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Pink Christmas Ornament", + "id": "Titanic Red Dragon", + "pt": 2, }, - "value": 93937, + "value": 69, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Golden Watering Can", + "id": "Huge Diamond Chick", + "pt": 2, }, - "value": 48303, + "value": 2713, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Exotic Treasure Flag", + "id": "Gargantuan Fluffy Cat", + "pt": 1, }, - "value": 302297, + "value": 22, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Large Potion Bundle", + "id": "Titanic Red Dragon", + "pt": 1, }, - "value": 1212, + "value": 402, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Bucket O' Magic", + "id": "Titanic Scribe Squirrel", + "pt": 1, }, - "value": 64585, + "value": 800, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Mini Lucky Block", + "id": "Huge Diamond Chick", + "pt": 1, + "sh": true, }, - "value": 1460, + "value": 159, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Mystery Ticket", + "id": "Special Ops Dog", + "pt": 2, }, - "value": 69516630, + "value": 1726, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Secret Key", + "id": "Titanic Special Ops Goat", }, - "value": 23535, + "value": 990, }, { - "category": "Misc", + "category": "Hoverboard", "configData": { - "id": "Party Box", + "id": "Blossom", }, - "value": 921, + "value": 72653, }, { - "category": "Misc", + "category": "Booth", "configData": { - "id": "Mini Chest", + "id": "Blossom", }, - "value": 10781, + "value": 170042, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Flag Bundle", + "id": "Special Ops Ram", + "pt": 2, + "sh": true, }, - "value": 108, + "value": 254, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Mythical Glitch Core", + "id": "Titanic Diamond Chick", + "pt": 1, }, - "value": 1660527, + "value": 208, }, { - "category": "Misc", + "category": "Pet", "configData": { - "id": "Slingshot", + "id": "Special Ops Skunk", + "pt": 2, + "sh": true, }, - "value": 28041, + "value": 183, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Series 3 Mythical Gift", + "id": "Huge Special Ops Dog", + "pt": 2, }, - "value": 906077621, + "value": 272, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Series 3 Epic Gift", + "id": "Titanic Diamond Chick", + "pt": 2, }, - "value": 308166524, + "value": 56, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 30", + "id": "Huge Galaxy Fox", + "pt": 2, + "sh": true, }, - "value": 75393445, + "value": 31, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Huge Machine Egg 4", + "id": "Huge Diamond Chick", + "pt": 2, + "sh": true, }, - "value": 364090105, + "value": 53, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 28", + "id": "Titanic Scribe Squirrel", + "sh": true, }, - "value": 81439913, + "value": 40, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 27", + "id": "Huge Leafy Yeti", }, - "value": 73011829, + "value": 70251, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 24", + "id": "Titanic Special Ops Goat", + "pt": 2, }, - "value": 75317779, + "value": 29, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 23", + "id": "Titanic Diamond Monkey", + "pt": 1, }, - "value": 75234448, + "value": 49, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Huge Machine Egg 3", + "id": "Huge Quartz Fox", + "pt": 1, + "sh": true, }, - "value": 397775060, + "value": 100, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Active Huge Egg", + "id": "Huge Leafy Yeti", + "pt": 2, }, - "value": 234727018, + "value": 2370, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 22", + "id": "Titanic Diamond Monkey", }, - "value": 110206644, + "value": 919, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 21", + "id": "Sunflower Calf", + "pt": 1, }, - "value": 101209775, + "value": 68909696, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 26", + "id": "Tree Frog", }, - "value": 81674068, + "value": 478854430, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 20", + "id": "Sunflower Calf", }, - "value": 78100684, + "value": 791473292, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 32", + "id": "Huge Special Ops Ram", + "pt": 2, }, - "value": 70922949, + "value": 456, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Series 1 Epic Gift", + "id": "Huge Galaxy Fox", + "pt": 1, + "sh": true, }, - "value": 73480217, + "value": 101, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 9", + "id": "Tree Frog", + "pt": 1, }, - "value": 264263631, + "value": 42203894, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Series 1 Rare Gift", + "id": "Gargantuan Fluffy Cat", }, - "value": 63936660, + "value": 74, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Series 2 Mythical Gift", + "id": "Tree Frog", + "sh": true, }, - "value": 360004644, + "value": 14786903, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 19", + "id": "Tree Frog", + "pt": 2, }, - "value": 98556226, + "value": 18658609, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Series 1 Legendary Gift", + "id": "Sunflower Calf", + "sh": true, }, - "value": 149426110, + "value": 24439072, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Event Egg 1", + "id": "Sunflower Calf", + "pt": 2, }, - "value": 45114171, + "value": 30279521, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 14", + "id": "Sunflower Calf", + "pt": 2, + "sh": true, }, - "value": 284746252, + "value": 975064, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Series 2 Epic Gift", + "id": "Special Ops Dog", + "pt": 2, + "sh": true, }, - "value": 74442017, + "value": 75, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 13", + "id": "Huge Spring Onion", }, - "value": 104986753, + "value": 68307, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Huge Machine Egg 2", + "id": "Titanic Diamond Chick", + "sh": true, }, - "value": 329623529, + "value": 6, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 5", + "id": "Sunflower Calf", + "pt": 1, + "sh": true, }, - "value": 497324689, + "value": 2267084, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 15", + "id": "Titanic Special Ops Goat", + "sh": true, }, - "value": 175703943, + "value": 19, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 3", + "id": "Tree Frog", + "pt": 1, + "sh": true, }, - "value": 5510881649, + "value": 1385496, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 12", + "id": "Tree Frog", + "pt": 2, + "sh": true, }, - "value": 102722423, + "value": 599352, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Series 2 Basic Gift", + "id": "Huge Leafy Yeti", + "pt": 1, }, - "value": 42615808, + "value": 5852, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Series 1 Mythical Gift", + "id": "Huge Empyrean Owl", + "pt": 2, + "sh": true, }, - "value": 415992170, + "value": 68, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 33", + "id": "Huge Mushroom Snail", }, - "value": 72631377, + "value": 27581, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Series 1 Basic Gift", + "id": "Huge Spring Dragon", }, - "value": 75999210, + "value": 27619, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 36", + "id": "Huge Spring Dino", }, - "value": 69771990, + "value": 27469, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 11", + "id": "Huge Sunflower Calf", }, - "value": 115736850, + "value": 27544, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 31", + "id": "Huge Special Ops Ram", + "pt": 2, + "sh": true, }, - "value": 125360686, + "value": 26, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 10", + "id": "Huge Special Ops Dog", + "pt": 2, + "sh": true, }, - "value": 149055020, + "value": 67, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 8", + "id": "Huge Leafy Yeti", + "sh": true, }, - "value": 282623712, + "value": 2231, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Series 3 Legendary Gift", + "id": "Spring Onion", }, - "value": 346800561, + "value": 718459750, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Series 2 Rare Gift", + "id": "Spring Dino", + "pt": 2, }, - "value": 54386323, + "value": 68647534, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 2", + "id": "Spring Dino", }, - "value": 2262496023, + "value": 1756281755, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 7", + "id": "Spring Onion", + "sh": true, }, - "value": 232626251, + "value": 21828183, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 29", + "id": "Spring Onion", + "pt": 1, }, - "value": 72480469, + "value": 64007337, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 17", + "id": "Spring Onion", + "pt": 2, }, - "value": 169824583, + "value": 29597340, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 6", + "id": "Spring Onion", + "pt": 1, + "sh": true, }, - "value": 386734150, + "value": 2087981, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 16", + "id": "Spring Dino", + "pt": 2, + "sh": true, }, - "value": 117643169, + "value": 2248562, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Series 2 Legendary Gift", + "id": "Spring Dino", + "pt": 1, }, - "value": 137165446, + "value": 152401548, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 35", + "id": "Spring Dino", + "sh": true, }, - "value": 73095912, + "value": 54090844, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 34", + "id": "Spring Dino", + "pt": 1, + "sh": true, }, - "value": 90153772, + "value": 5019023, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 4", + "id": "Spring Onion", + "pt": 2, + "sh": true, }, - "value": 630333097, + "value": 979133, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 25", + "id": "Huge Bunny Cat", }, - "value": 156328426, + "value": 72156, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 18", + "id": "Huge Butterfly Pony", }, - "value": 86483989, + "value": 44248, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Huge Machine Egg 1", + "id": "Huge Butterfly Pony", + "pt": 1, }, - "value": 1184438807, + "value": 2744, }, { - "category": "Egg", + "category": "Pet", "configData": { - "id": "Exclusive Egg 1", + "id": "Titanic Scribe Squirrel", + "pt": 2, + "sh": true, }, - "value": 1689815523, + "value": 2, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Cauldron", + "id": "Titanic Red Dragon", + "sh": true, }, - "value": 326061, + "value": 22, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Pumpkin Cat", + "id": "Spring Dragon", + "pt": 1, }, - "value": 1281843, + "value": 815731478, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Vampire", + "id": "Spring Dragon", }, - "value": 5628288, + "value": 10175776982, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Reversed", + "id": "Huge Spring Dragon", + "sh": true, }, - "value": 134277311, + "value": 664, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Elemental", + "id": "Huge Mushroom Snail", + "sh": true, }, - "value": 175650, + "value": 657, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Galaxy", + "id": "Huge Sunflower Calf", + "sh": true, }, - "value": 89666614, + "value": 673, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Money", + "id": "Huge Spring Dino", + "sh": true, }, - "value": 33393856, + "value": 663, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Strawberry", + "id": "Spring Dragon", + "pt": 2, }, - "value": 999870, + "value": 452827960, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Fruit", + "id": "Withered Agony", }, - "value": 259769, + "value": 3547249368, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Throne", + "id": "Huge Butterfly Pony", + "pt": 2, }, - "value": 113463941, + "value": 1128, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Monkey", + "id": "Huge Butterfly Pony", + "sh": true, }, - "value": 983909, + "value": 1066, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "M10", + "id": "Withered Agony", + "pt": 1, }, - "value": 50174271, + "value": 286143119, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Cupcake", + "id": "Leafy Yeti", }, - "value": 63072011, + "value": 11553173, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Axolotl", + "id": "Spring Dragon", + "sh": true, }, - "value": 2802478, + "value": 293313383, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "TNT", + "id": "Titanic Diamond Chick", + "pt": 1, + "sh": true, }, - "value": 747571, + "value": 2, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Christmas", + "id": "Withered Agony", + "pt": 2, }, - "value": 157322, + "value": 167905199, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Millionaire", + "id": "Huge Spring Onion", + "pt": 1, }, - "value": 505869, + "value": 13475, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Balloon", + "id": "Titanic Diamond Monkey", + "sh": true, }, - "value": 385745, + "value": 2, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Lucky Block", + "id": "Spring Dragon", + "pt": 2, + "sh": true, }, - "value": 839601, + "value": 13955537, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Comet", + "id": "Titanic Diamond Monkey", + "pt": 2, }, - "value": 35630669, + "value": 16, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Haunted", + "id": "Spring Dragon", + "pt": 1, + "sh": true, }, - "value": 65228, + "value": 24505319, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Corgi", + "id": "Huge Mushroom Snail", + "pt": 1, }, - "value": 1860407, + "value": 2413, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Giraffe", + "id": "Huge Spring Dragon", + "pt": 1, }, - "value": 121023, + "value": 2428, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Egg", + "id": "Huge Spring Dino", + "pt": 1, }, - "value": 29760, + "value": 2444, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Abyssal", + "id": "Huge Sunflower Calf", + "pt": 1, }, - "value": 21614196, + "value": 2440, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Parrot", + "id": "Huge Spring Onion", + "pt": 2, }, - "value": 1551034, + "value": 2682, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Present", + "id": "Withered Agony", + "sh": true, }, - "value": 267110938, + "value": 98284564, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Hippomelon", + "id": "Withered Agony", + "pt": 1, + "sh": true, }, - "value": 103032, + "value": 8280744, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Lightning", + "id": "Withered Agony", + "pt": 2, + "sh": true, }, - "value": 117769, + "value": 5366835, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Rainbow", + "id": "Butterfly Pony", }, - "value": 76560, + "value": 2697421, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Panda", + "id": "Butterfly Pony", + "sh": true, }, - "value": 11413715, + "value": 80804, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Gold", + "id": "Leafy Yeti", + "pt": 1, }, - "value": 80294, + "value": 996594, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Unicorn", + "id": "Dawn Phoenix", }, - "value": 9714969, + "value": 524527, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Glitched", + "id": "Leafy Yeti", + "pt": 2, }, - "value": 18616400, + "value": 509834, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Pixel", + "id": "Butterfly Pony", + "pt": 1, }, - "value": 46165038, + "value": 264181, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Fragmented", + "id": "Butterfly Pony", + "pt": 2, }, - "value": 39098997, + "value": 128663, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Neon Twilight", + "id": "Huge Dawn Phoenix", + "pt": 2, }, - "value": 35354164, + "value": 1517, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Empyrean", + "id": "Dawn Phoenix", + "pt": 1, }, - "value": 44501832, + "value": 59469, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Dragon", + "id": "Gargantuan Wise Cat", + "pt": 2, }, - "value": 75988, + "value": 4, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Night Terror", + "id": "Huge Dawn Phoenix", }, - "value": 1661482, + "value": 49609, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Fishing", + "id": "Leafy Yeti", + "sh": true, }, - "value": 261625, + "value": 328208, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Pop Cat", + "id": "Dawn Phoenix", + "pt": 2, }, - "value": 1105793, + "value": 25592, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Alien", + "id": "Leafy Yeti", + "pt": 1, + "sh": true, }, - "value": 37541511, + "value": 36459, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Art", + "id": "Leafy Yeti", + "pt": 2, + "sh": true, }, - "value": 301903, + "value": 16481, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Bubble", + "id": "Titanic Withered Agony", }, - "value": 49083272, + "value": 3695, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Dino Cat", + "id": "Huge Dawn Phoenix", + "pt": 1, }, - "value": 159059, + "value": 3621, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Cardboard", + "id": "Butterfly Pony", + "pt": 1, + "sh": true, }, - "value": 31384225, + "value": 11669, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Rave Crab", + "id": "Dawn Phoenix", + "sh": true, }, - "value": 110074591, + "value": 16924, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Hotdog", + "id": "Butterfly Pony", + "pt": 2, + "sh": true, }, - "value": 31965364, + "value": 4126, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Safety", + "id": "Huge Dawn Phoenix", + "sh": true, }, - "value": 115840982, + "value": 1314, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Black Hole", + "id": "Gargantuan Special Ops Moth", + "sh": true, }, - "value": 73824244, + "value": 5, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Ice Cream", + "id": "Huge Butterfly Pony", + "pt": 1, + "sh": true, }, - "value": 40424714, + "value": 78, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Summer", + "id": "Huge Dawn Phoenix", + "pt": 1, + "sh": true, }, - "value": 175072, + "value": 111, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Lemonade", + "id": "Dawn Phoenix", + "pt": 1, + "sh": true, }, - "value": 25651713, + "value": 2735, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Hacker", + "id": "Huge Butterfly Pony", + "pt": 2, + "sh": true, }, - "value": 1446440, + "value": 23, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Cat", + "id": "Huge Dawn Phoenix", + "pt": 2, + "sh": true, }, - "value": 568140, + "value": 61, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Wicked", + "id": "Dawn Phoenix", + "pt": 2, + "sh": true, }, - "value": 82255075, + "value": 663, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Good vs Evil", + "id": "Huge Bunny Cat", + "pt": 1, }, - "value": 374548, + "value": 14513, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Rave", + "id": "Huge Quartz Fox", + "pt": 2, + "sh": true, }, - "value": 526839, + "value": 17, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Nightmare Cat", + "id": "Gargantuan Dawn Phoenix", }, - "value": 9797897, + "value": 71, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Dino", + "id": "Titanic Withered Agony", + "pt": 2, }, - "value": 113888, + "value": 123, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Clown", + "id": "Titanic Withered Agony", + "pt": 1, }, - "value": 67324773, + "value": 266, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Aura", + "id": "Huge Bunny Cat", + "pt": 2, }, - "value": 647483, + "value": 2918, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Enchant", + "id": "Huge Spring Onion", + "sh": true, }, - "value": 349374, + "value": 556, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Error", + "id": "Huge Bunny Cat", + "pt": 1, + "sh": true, }, - "value": 94515, + "value": 110, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Merchant", + "id": "Huge Bunny Cat", + "sh": true, }, - "value": 95352, + "value": 545, }, { - "category": "Booth", + "category": "Pet", "configData": { - "id": "Kawaii", + "id": "Huge Leafy Yeti", + "pt": 1, + "sh": true, }, - "value": 88977, + "value": 214, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Criticals", - "tn": 10, + "id": "Gargantuan Dawn Phoenix", + "pt": 2, }, - "value": 3146338, + "value": 2, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Diamonds", - "tn": 10, + "id": "Titanic Prickly Panda", + "pt": 2, + "sh": true, }, - "value": 3913471, + "value": 3, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Angelic", - "tn": 1, + "id": "Gargantuan Dawn Phoenix", + "pt": 1, }, - "value": 3450347, + "value": 3, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Diamond Gift Hunter", - "tn": 1, + "id": "Huge Bunny Cat", + "pt": 2, + "sh": true, }, - "value": 908174144, + "value": 27, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Superior Chest Mimic", - "tn": 1, + "id": "Huge Leafy Yeti", + "pt": 2, + "sh": true, }, - "value": 586788528, + "value": 76, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Corruption", - "tn": 1, + "id": "Huge Spring Dino", + "pt": 2, }, - "value": 200410300, + "value": 567, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Nightmare Orb", - "tn": 1, + "id": "Huge Spring Dragon", + "pt": 2, }, - "value": 138422493, + "value": 537, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Mini Chest Fortune", - "tn": 1, + "id": "Huge Mushroom Snail", + "pt": 2, }, - "value": 5763175, + "value": 551, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Shiny Supercharge", - "tn": 1, + "id": "Huge Sunflower Calf", + "pt": 2, }, - "value": 1996821, + "value": 454, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Lightning Orb", - "tn": 1, + "id": "Gargantuan Wise Cat", + "pt": 1, }, - "value": 632149284, + "value": 18, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Lucky Eggs", - "tn": 9, + "id": "Huge Spring Onion", + "pt": 1, + "sh": true, }, - "value": 1192549, + "value": 120, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Diamonds", - "tn": 9, + "id": "Titanic Withered Agony", + "sh": true, }, - "value": 86222, + "value": 89, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Strong Pets", - "tn": 9, + "id": "Huge Spring Onion", + "pt": 2, + "sh": true, }, - "value": 49896, + "value": 20, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Coins", - "tn": 9, + "id": "Titanic Withered Agony", + "pt": 1, + "sh": true, }, - "value": 48589, + "value": 10, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Super Magnet", - "tn": 1, + "id": "Huge Bandana Shiba", }, - "value": 868225092, + "value": 176208, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Lucky Eggs", - "tn": 8, + "id": "Huge Keyboard Cat", }, - "value": 174540, + "value": 4965, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Boss Chest Mimic", - "tn": 1, + "id": "Huge Keyboard Cat", + "pt": 1, }, - "value": 144823649, + "value": 962, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Tap Power", - "tn": 8, + "id": "Huge Keyboard Cat", + "pt": 2, }, - "value": 3541, + "value": 200, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Diamonds", - "tn": 8, + "id": "Huge Keyboard Cat", + "sh": true, }, - "value": 9744, + "value": 34, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Coins", - "tn": 8, + "id": "Huge Keyboard Cat", + "pt": 2, + "sh": true, }, - "value": 8948, + "value": 1, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Treasure Hunter", - "tn": 8, + "id": "Huge Keyboard Cat", + "pt": 1, + "sh": true, }, - "value": 4480, + "value": 6, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Magic Orb", - "tn": 1, + "id": "Titanic Irish Badger", }, - "value": 2219414, + "value": 2107, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Large Taps", - "tn": 1, + "id": "Huge Royal Pooka", }, - "value": 596, + "value": 6783, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Tap Power", - "tn": 7, + "id": "Gargantuan Leprechaun Fox", }, - "value": 882, + "value": 97, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Lucky Eggs", - "tn": 7, + "id": "Huge Royal Pooka", + "pt": 2, }, - "value": 48392, + "value": 84, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Tap Power", - "tn": 10, + "id": "Titanic Irish Badger", + "pt": 1, }, - "value": 1200924, + "value": 100, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Diamond Chest Mimic", - "tn": 1, + "id": "Titanic Irish Badger", + "sh": true, }, - "value": 287194471, + "value": 20, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Party Time", - "tn": 1, + "id": "Huge Royal Pooka", + "pt": 1, }, - "value": 28777623, + "value": 237, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Strong Pets", - "tn": 8, + "id": "Gargantuan Leprechaun Fox", + "pt": 1, }, - "value": 5915, + "value": 2, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Coins", - "tn": 7, + "id": "Titanic Irish Badger", + "pt": 2, }, - "value": 27241, + "value": 75, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Diamonds", - "tn": 6, + "id": "Titanic Irish Badger", + "pt": 2, + "sh": true, }, - "value": 914, + "value": 5, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Tap Power", - "tn": 9, + "id": "Gargantuan Leprechaun Fox", + "pt": 2, }, - "value": 35865, + "value": 1, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Lucky Eggs", - "tn": 6, + "id": "Titanic Withered Agony", + "pt": 2, + "sh": true, }, - "value": 1105, + "value": 4, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Treasure Hunter", - "tn": 6, + "id": "Gargantuan Dawn Phoenix", + "sh": true, }, - "value": 198, + "value": 1, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Coins", - "tn": 6, + "id": "Huge Abstract Agony", }, - "value": 853, + "value": 2481, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Strong Pets", - "tn": 5, + "id": "Huge Abstract Agony", + "pt": 1, }, - "value": 183, + "value": 481, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Happy Pets", - "tn": 1, + "id": "Huge Abstract Agony", + "pt": 2, }, - "value": 331, + "value": 136, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Walkspeed", - "tn": 5, + "id": "Titanic Abstract Dominus", }, - "value": 378, + "value": 56, }, { - "category": "Enchant", + "category": "Hoverboard", "configData": { - "id": "Demonic", - "tn": 1, + "id": "Abstract", }, - "value": 3351900, + "value": 1956, }, { - "category": "Enchant", + "category": "Booth", "configData": { - "id": "Hacker Key Hunter", - "tn": 1, + "id": "Abstract", }, - "value": 3033521, + "value": 3166, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Criticals", - "tn": 9, + "id": "Titanic Abstract Dominus", + "pt": 2, }, - "value": 86698, + "value": 3, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Diamonds", - "tn": 7, + "id": "Titanic Abstract Dominus", + "pt": 1, }, - "value": 2582, + "value": 8, }, { - "category": "Enchant", + "category": "Misc", "configData": { - "id": "Lucky Eggs", - "tn": 3, + "id": "Spring Boss Chest Token", }, - "value": 41, + "value": 98395638516820, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Tap Power", - "tn": 5, + "id": "Huge Evolved Starry Eye Bunny", }, - "value": 491, + "value": 8926, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Treasure Hunter", - "tn": 7, + "id": "Huge Evolved Stingray", }, - "value": 1362, + "value": 5653, }, { - "category": "Enchant", + "category": "Consumable", "configData": { - "id": "Exotic Pet", + "id": "Spring Raffle Ticket Booster", "tn": 1, }, - "value": 3324, + "value": 77077, }, { - "category": "Enchant", + "category": "Consumable", "configData": { - "id": "Chest Breaker", + "id": "Spring Upgrade Token Booster", "tn": 1, }, - "value": 18711473, + "value": 69775, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Coins", - "tn": 4, + "id": "Huge Evolved Evil Raven", }, - "value": 227, + "value": 6252, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Criticals", - "tn": 8, + "id": "Huge Evolved Frankenpup Dog", }, - "value": 5390, + "value": 4510, }, { - "category": "Enchant", + "category": "Consumable", "configData": { - "id": "Starfall", + "id": "Spring Hatch Speed Booster", "tn": 1, }, - "value": 1371067, + "value": 70178, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Tap Teamwork", - "tn": 1, + "id": "Huge Evolved Rogue Squid", }, - "value": 312, + "value": 3110, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Lucky Eggs", - "tn": 2, + "id": "Huge Evolved Pixel Griffin", }, - "value": 50, + "value": 5018, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Treasure Hunter", - "tn": 5, + "id": "Huge Evolved Frankenpup Dog", + "pt": 2, }, - "value": 132, + "value": 95, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Tap Power", - "tn": 1, + "id": "Huge Evolved Starry Eye Bunny", + "sh": true, }, - "value": 19, + "value": 177, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Tap Power", - "tn": 4, + "id": "Huge Tree Frog", }, - "value": 260, + "value": 40003, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Active Huge Overload", - "tn": 1, + "id": "Huge Egg Piggy", }, - "value": 959524773, + "value": 42958, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Strong Pets", - "tn": 2, + "id": "Huge Vibrant Whale", }, - "value": 23, + "value": 11639, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Tap Power", - "tn": 6, + "id": "Huge Egg Piggy", + "sh": true, }, - "value": 414, + "value": 1427, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Coins", - "tn": 3, + "id": "Huge Evolved Stingray", + "pt": 2, }, - "value": 37, + "value": 192, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Treasure Hunter", - "tn": 2, + "id": "Huge Evolved Stingray", + "sh": true, }, - "value": 41, + "value": 135, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Diamonds", - "tn": 3, + "id": "Huge Evolved Starry Eye Bunny", + "pt": 2, }, - "value": 55, + "value": 262, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Super Shiny Hunter", - "tn": 1, + "id": "Huge Evolved Stingray", + "pt": 2, + "sh": true, }, - "value": 792866874, + "value": 10, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Strong Pets", - "tn": 4, + "id": "Huge Evolved Frankenpup Dog", + "sh": true, }, - "value": 88, + "value": 113, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Huge Hunter", - "tn": 1, + "id": "Spring Kitten", }, - "value": 16416689, + "value": 1092728659, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Magnet", - "tn": 3, + "id": "Egg Piggy", }, - "value": 8, + "value": 1787723225, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Criticals", - "tn": 7, + "id": "Spring Elephant", }, - "value": 996, + "value": 13825699038, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Walkspeed", + "id": "Huge Evolved Pixel Griffin", + "sh": true, + }, + "value": 130, + }, + { + "category": "Consumable", + "configData": { + "id": "Spring Egg Token Booster", "tn": 1, }, - "value": 253, + "value": 112143, }, { - "category": "Enchant", + "category": "Booth", "configData": { - "id": "Coins", - "tn": 2, + "id": "Dog", }, - "value": 34, + "value": 56613, }, { - "category": "Enchant", + "category": "Booth", "configData": { - "id": "Strong Pets", - "tn": 1, + "id": "Noob", }, - "value": 503, + "value": 42155, }, { - "category": "Enchant", + "category": "Booth", "configData": { - "id": "Lucky Eggs", - "tn": 10, + "id": "Bunny", }, - "value": 11339426, + "value": 26543, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Coins", - "tn": 10, + "id": "Spring Kitten", + "pt": 1, }, - "value": 3059911, + "value": 82654878, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Walkspeed", - "tn": 3, + "id": "Huge Tree Frog", + "sh": true, }, - "value": 27, + "value": 1414, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Walkspeed", - "tn": 4, + "id": "Huge Egg Piggy", + "pt": 2, }, - "value": 47, + "value": 1497, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Treasure Hunter", - "tn": 9, + "id": "Huge Tree Frog", + "pt": 1, + "sh": true, }, - "value": 82062, + "value": 135, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Criticals", - "tn": 4, + "id": "Huge Quantum Griffin", }, - "value": 60, + "value": 18682, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Strong Pets", - "tn": 7, + "id": "Huge Egg Piggy", + "pt": 1, }, - "value": 2061, + "value": 3534, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Tap Power", - "tn": 2, + "id": "Huge Tree Frog", + "pt": 1, }, - "value": 15, + "value": 3747, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Diamonds", - "tn": 5, + "id": "Huge Inkwell Wisp", }, - "value": 282, + "value": 35145, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Magnet", - "tn": 1, + "id": "Huge Evolved Rogue Squid", + "pt": 2, + "sh": true, }, - "value": 35, + "value": 7, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Tap Power", - "tn": 3, + "id": "Huge Evolved Rogue Squid", + "pt": 2, }, - "value": 28, + "value": 117, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Criticals", - "tn": 2, + "id": "Huge Evolved Pixel Griffin", + "pt": 2, }, - "value": 34, + "value": 183, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Diamonds", - "tn": 2, + "id": "Huge Egg Piggy", + "pt": 1, + "sh": true, }, - "value": 51, + "value": 107, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Strong Pets", - "tn": 3, + "id": "Huge Evolved Evil Raven", + "pt": 2, }, - "value": 40, + "value": 131, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Lightning", - "tn": 1, + "id": "Huge Tree Frog", + "pt": 2, }, - "value": 1678, + "value": 1695, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Treasure Hunter", - "tn": 4, + "id": "Huge Carnival Panda", }, - "value": 33, + "value": 4136, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Blast", - "tn": 1, + "id": "Huge Evolved Evil Raven", + "sh": true, }, - "value": 1137, + "value": 120, }, { - "category": "Enchant", + "category": "Booth", "configData": { - "id": "Lucky Eggs", - "tn": 4, + "id": "Patchwork", }, - "value": 115, + "value": 499, }, { - "category": "Enchant", + "category": "Booth", "configData": { - "id": "Lucky Eggs", - "tn": 5, + "id": "Coral", }, - "value": 338, + "value": 463, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Fireworks", - "tn": 1, + "id": "Spring Elephant", + "pt": 2, }, - "value": 308467, + "value": 576025493, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Criticals", - "tn": 5, + "id": "Egg Piggy", + "sh": true, }, - "value": 118, + "value": 51106853, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Walkspeed", - "tn": 2, + "id": "Huge Evolved Starry Eye Bunny", + "pt": 2, + "sh": true, }, - "value": 28, + "value": 12, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Treasure Hunter", - "tn": 3, + "id": "Spring Elephant", + "pt": 1, }, - "value": 31, + "value": 1167138136, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Fortune", - "tn": 1, + "id": "Spring Kitten", + "pt": 2, }, - "value": 3468, + "value": 37144217, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Diamonds", - "tn": 4, + "id": "Spring Elephant", + "sh": true, }, - "value": 77, + "value": 429444770, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Strong Pets", - "tn": 10, + "id": "Egg Piggy", + "pt": 2, }, - "value": 2485153, + "value": 62130125, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Explosive", - "tn": 1, + "id": "Egg Piggy", + "pt": 1, }, - "value": 1505, + "value": 139761434, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Coins", - "tn": 5, + "id": "Spring Kitten", + "sh": true, }, - "value": 505, + "value": 29906002, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Midas Touch", - "tn": 1, + "id": "Huge Evolved Rogue Squid", + "sh": true, }, - "value": 2085, + "value": 78, }, { - "category": "Enchant", + "category": "Booth", "configData": { - "id": "Treasure Hunter", - "tn": 1, + "id": "Midnight", }, - "value": 55, + "value": 349, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Diamonds", - "tn": 1, + "id": "Spring Kitten", + "pt": 2, + "sh": true, }, - "value": 310, + "value": 1027231, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Lucky Eggs", - "tn": 1, + "id": "Egg Piggy", + "pt": 1, + "sh": true, + }, + "value": 4057388, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Kitten", + "pt": 1, + "sh": true, + }, + "value": 2282512, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Elephant", + "pt": 1, + "sh": true, + }, + "value": 37685569, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fragmented Pterodactyl", + "pt": 1, + }, + "value": 215, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Inkwell Wisp", + "pt": 1, + }, + "value": 6990, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Elephant", + "pt": 2, + "sh": true, + }, + "value": 17841075, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Piggy", + "pt": 2, + "sh": true, + }, + "value": 1792837, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Egg Piggy", + "pt": 2, + "sh": true, + }, + "value": 46, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Quantum Griffin", + "pt": 1, + }, + "value": 3663, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vibrant Whale", + "pt": 1, + }, + "value": 2392, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Robot", + }, + "value": 9045, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Special Ops Moth", + "pt": 2, + }, + "value": 4, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Quantum Griffin", + "pt": 2, + }, + "value": 778, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wireframe Cat", + }, + "value": 1010, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Kitten", + }, + "value": 26004, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Scribe Squirrel", + "pt": 1, + "sh": true, }, "value": 9, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Criticals", - "tn": 3, + "id": "Huge Vibrant Whale", + "pt": 2, }, - "value": 65, + "value": 496, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Fruity", - "tn": 1, + "id": "Huge Robot", + "pt": 1, }, - "value": 53068, + "value": 1828, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Lucky Block", - "tn": 1, + "id": "Huge Inkwell Wisp", + "pt": 2, }, - "value": 32105328, + "value": 1411, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Strong Pets", - "tn": 6, + "id": "Huge Spring Kitten", + "pt": 2, }, - "value": 538, + "value": 674, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Criticals", - "tn": 1, + "id": "Huge Evolved Evil Raven", + "pt": 2, + "sh": true, }, - "value": 16, + "value": 3, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Coins", - "tn": 1, + "id": "Huge Robot", + "pt": 2, }, - "value": 18, + "value": 341, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Massive Comet", - "tn": 1, + "id": "Huge Tree Frog", + "pt": 2, + "sh": true, }, - "value": 61422394, + "value": 56, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Chest Mimic", - "tn": 1, + "id": "Garden Goblin", + "sh": true, }, - "value": 1849697970, + "value": 7926837, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Boss Lucky Block", - "tn": 1, + "id": "Lamb Wolf", + "pt": 2, }, - "value": 356678733, + "value": 168394352, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Shiny Hunter", - "tn": 1, + "id": "Garden Goblin", }, - "value": 993801, + "value": 296539490, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Treasure Hunter", - "tn": 10, + "id": "Garden Goblin", + "pt": 1, }, - "value": 2506100, + "value": 23588250, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Magnet", - "tn": 2, + "id": "Lamb Wolf", + "pt": 1, }, - "value": 38, + "value": 324991644, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Super Lightning", - "tn": 1, + "id": "Garden Goblin", + "pt": 1, + "sh": true, }, - "value": 4362, + "value": 664473, }, { - "category": "Enchant", + "category": "Pet", "configData": { - "id": "Criticals", - "tn": 6, + "id": "Lamb Wolf", }, - "value": 746, + "value": 3872643719, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Pumpkin Gift", + "id": "Garden Goblin", + "pt": 2, }, - "value": 42530, + "value": 12346056, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Candy Corn Gift", + "id": "Lamb Wolf", + "sh": true, }, - "value": 44841, + "value": 114087333, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Color Gift", + "id": "Huge Prison Cow", }, - "value": 98647, + "value": 330, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Graffiti Gift", + "id": "Huge Fragmented Pterodactyl", }, - "value": 93837, + "value": 2098, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Meteor Gift", + "id": "Huge Prison Cow", + "pt": 1, }, - "value": 195688, + "value": 58, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Rave Gift", + "id": "Lamb Wolf", + "pt": 2, + "sh": true, }, - "value": 189310, + "value": 5109862, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Good vs Evil Gift", + "id": "Garden Goblin", + "pt": 2, + "sh": true, }, - "value": 178327, + "value": 356547, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Good Gift", + "id": "Lamb Wolf", + "pt": 1, + "sh": true, }, - "value": 187296, + "value": 9825846, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Evil Gift", + "id": "Huge Spring Kitten", + "pt": 1, }, - "value": 200606, + "value": 3575, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Elemental Gift", + "id": "Huge Sprout Wyrmling", }, - "value": 135216, + "value": 1015, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Glitched Gift", + "id": "Huge Brain", }, - "value": 2158565, + "value": 280, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Global Event Gift", + "id": "Huge Wireframe Cat", + "pt": 1, }, - "value": 2825892, + "value": 198, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "X-Large Christmas Present", + "id": "Huge Lamb Wolf", }, - "value": 1325853, + "value": 53372, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Medium Christmas Present", + "id": "Huge Spring Elephant", }, - "value": 68760, + "value": 27364, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Ghostface Gift", + "id": "Huge Spring Elephant", + "pt": 2, }, - "value": 815400, + "value": 782, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Summer Gift", + "id": "Huge Spring Elephant", + "pt": 1, }, - "value": 877871, + "value": 1978, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Small Christmas Present", + "id": "Titanic Butterfly Pony", }, - "value": 125046, + "value": 3371, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Large Christmas Present", + "id": "Bloom Dominus", }, - "value": 463293, + "value": 2349755, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Arcade Egg 1", + "id": "Bloom Dominus", + "pt": 1, }, - "value": 12112, + "value": 246764, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Arcade Egg 2", + "id": "Huge Bloom Dominus", }, - "value": 25361, + "value": 51490, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Titanic Christmas Present", + "id": "Huge Prison Cow", + "pt": 2, }, - "value": 107373223, + "value": 10, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Adventurer Lootbox", + "id": "Bloom Dominus", + "pt": 2, }, - "value": 16951149, + "value": 119195, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Clan Gift", + "id": "Bloom Dominus", + "sh": true, }, - "value": 2823268, + "value": 90271, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "2024 New Years Gift", + "id": "Huge Carnival Panda", + "pt": 1, }, - "value": 2986788, + "value": 417, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Arcade Egg 3", + "id": "Huge Bloom Dominus", + "pt": 2, }, - "value": 46279, + "value": 1651, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Dino Gift", + "id": "Bloom Dominus", + "pt": 1, + "sh": true, }, - "value": 202135, + "value": 11683, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Arcade Egg 4", + "id": "Huge Spring Elephant", + "sh": true, }, - "value": 85657, + "value": 743, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Arcade Egg 5", + "id": "Huge Bloom Dominus", + "pt": 1, }, - "value": 903162, + "value": 3997, }, { - "category": "Lootbox", + "category": "Pet", "configData": { - "id": "Hype Egg", + "id": "Huge Spring Kitten", + "sh": true, }, - "value": 348962, + "value": 782, }, { - "category": "Seed", + "category": "Pet", "configData": { - "id": "Gift", + "id": "Huge Luxe Axolotl", }, - "value": 40, + "value": 14035, }, { - "category": "Seed", + "category": "Pet", "configData": { - "id": "Potion", + "id": "Huge Bloom Dominus", + "pt": 1, + "sh": true, }, - "value": 57, + "value": 127, }, { - "category": "Seed", + "category": "Pet", "configData": { - "id": "Diamond", + "id": "Huge Crowned Dog", }, - "value": 7363, + "value": 177, }, { - "category": "Seed", + "category": "Pet", "configData": { - "id": "Coin", + "id": "Bloom Dominus", + "pt": 2, + "sh": true, }, - "value": 1, + "value": 4768, }, { - "category": "Box", + "category": "Pet", "configData": { - "id": "Small", + "id": "Huge Crowned Dragon", }, - "value": 2450, + "value": 9, }, { - "category": "Ultimate", + "category": "Pet", "configData": { - "id": "UFO", + "id": "Huge Crowned Penguin", }, - "value": 53078716, + "value": 41, }, { - "category": "Ultimate", + "category": "Pet", "configData": { - "id": "Lightning Storm", + "id": "Huge Carnival Panda", + "pt": 2, }, - "value": 906148, + "value": 91, }, { - "category": "Ultimate", + "category": "Pet", "configData": { - "id": "Chest Spell", + "id": "Huge Ghost Axolotl", }, - "value": 113939359, + "value": 1715, }, { - "category": "Ultimate", + "category": "Pet", "configData": { - "id": "Hidden Treasure", + "id": "Huge Luxe Axolotl", + "pt": 1, }, - "value": 2656310969, + "value": 1682, }, { - "category": "Ultimate", + "category": "Pet", "configData": { - "id": "Tornado", + "id": "Huge Bloom Dominus", + "sh": true, }, - "value": 4181746, + "value": 1494, }, { - "category": "Ultimate", + "category": "Pet", "configData": { - "id": "Nightmare", + "id": "Titanic Garden Goblin", }, - "value": 124950183, + "value": 3234, }, { - "category": "Ultimate", + "category": "Pet", "configData": { - "id": "TNT Shower", + "id": "Huge Spring Elephant", + "pt": 1, + "sh": true, }, - "value": 346723, + "value": 56, }, { - "category": "Ultimate", + "category": "Pet", "configData": { - "id": "Tsunami", + "id": "Huge Brain", + "pt": 2, }, - "value": 15602082, + "value": 12, }, { - "category": "Ultimate", + "category": "Pet", "configData": { - "id": "Pet Surge", + "id": "Huge Sprout Wyrmling", + "pt": 1, }, - "value": 13942, + "value": 203, }, { - "category": "Ultimate", + "category": "Pet", "configData": { - "id": "Black Hole", + "id": "Huge Bloom Dominus", + "pt": 2, + "sh": true, + }, + "value": 48, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghost Axolotl", + "pt": 1, + }, + "value": 193, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Brain", + "pt": 1, + }, + "value": 51, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Garden Goblin", + "pt": 1, + }, + "value": 233, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghost Axolotl", + "pt": 2, + }, + "value": 32, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Garden Goblin", + "sh": true, + }, + "value": 108, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghost Axolotl", + "sh": true, + }, + "value": 17, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sprout Wyrmling", + "pt": 2, + }, + "value": 37, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luxe Axolotl", + "sh": true, + }, + "value": 348, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Garden Goblin", + "pt": 2, + }, + "value": 90, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Elephant", + "pt": 2, + "sh": true, + }, + "value": 28, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Bloom Dominus", + }, + "value": 47, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Garden Goblin", + "pt": 1, + "sh": true, + }, + "value": 4, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luxe Axolotl", + "pt": 2, + }, + "value": 341, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lamb Wolf", + "pt": 1, + }, + "value": 6871, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lamb Wolf", + "sh": true, + }, + "value": 292, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lamb Wolf", + "pt": 2, + }, + "value": 1337, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Butterfly Pony", + "pt": 1, + }, + "value": 416, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lamb Wolf", + "pt": 1, + "sh": true, + }, + "value": 53, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Butterfly Pony", + "pt": 2, + }, + "value": 75, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Bloom Dominus", + "pt": 1, + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wireframe Cat", + "pt": 2, + }, + "value": 38, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Pixel Griffin", + "pt": 2, + "sh": true, + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Butterfly Pony", + "sh": true, + }, + "value": 13, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Garden Goblin", + "pt": 2, + "sh": true, + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fragmented Pterodactyl", + "pt": 2, + }, + "value": 30, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Butterfly Pony", + "pt": 1, + "sh": true, + }, + "value": 3, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Butterfly Pony", + "pt": 2, + "sh": true, + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lamb Wolf", + "pt": 2, + "sh": true, + }, + "value": 14, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Bloom Dominus", + "pt": 2, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Kitten", + "pt": 1, + "sh": true, + }, + "value": 98, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wireframe Cat", + "sh": true, + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Starry Owl", + }, + "value": 1964, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Starry Owl", + "pt": 1, }, - "value": 1000803972, + "value": 258, + }, + { + "category": "Booth", + "configData": { + "id": "Starry", + }, + "value": 2312, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Starry", + }, + "value": 1328, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Starry Owl", + }, + "value": 35, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Starry Owl", + "pt": 2, + }, + "value": 66, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Starry Owl", + "pt": 2, + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Starry Owl", + "pt": 1, + }, + "value": 5, + }, + { + "category": "Lootbox", + "configData": { + "id": "Locked Hype Egg 3", + }, + "value": 611608, + }, + { + "category": "Pet", + "configData": { + "id": "Caterpillar", + }, + "value": 119048928, + }, + { + "category": "Pet", + "configData": { + "id": "Caterpillar", + "pt": 1, + }, + "value": 27198596, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Axolotl", + }, + "value": 255168820, + }, + { + "category": "Pet", + "configData": { + "id": "Caterpillar", + "pt": 2, + }, + "value": 12797471, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Pixie", + "pt": 2, + }, + "value": 19601437, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Axolotl", + "pt": 1, + }, + "value": 48008036, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Pixie", + }, + "value": 157892023, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Pixie", + "pt": 1, + }, + "value": 37145830, + }, + { + "category": "Pet", + "configData": { + "id": "Jackalope", + }, + "value": 114503328, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Axolotl", + "pt": 2, + }, + "value": 91379574, + }, + { + "category": "Pet", + "configData": { + "id": "Jackalope", + "pt": 2, + }, + "value": 6684094, + }, + { + "category": "Pet", + "configData": { + "id": "Jackalope", + "pt": 1, + }, + "value": 19529595, + }, + { + "category": "Lootbox", + "configData": { + "id": "Hype Egg 3", + }, + "value": 675898, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Griffin", + "pt": 2, + }, + "value": 97826382028, + }, + { + "category": "Pet", + "configData": { + "id": "Ruinous Angelus", + "pt": 1, + }, + "value": 17442204614, + }, + { + "category": "Pet", + "configData": { + "id": "Ruinous Angelus", + "pt": 2, + }, + "value": 33825479595, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Griffin", + "pt": 1, + }, + "value": 47813983780, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Griffin", + }, + "value": 840794647123, + }, + { + "category": "Pet", + "configData": { + "id": "Ruinous Angelus", + }, + "value": 278294447425, + }, + { + "category": "Pet", + "configData": { + "id": "Caterpillar", + "sh": true, + }, + "value": 1827655, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Griffin", + "pt": 2, + "sh": true, + }, + "value": 478161942, + }, + { + "category": "Pet", + "configData": { + "id": "Ruinous Angelus", + "sh": true, + }, + "value": 1094828434, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Griffin", + "sh": true, + }, + "value": 3229019232, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lunar Deer", + }, + "value": 25022, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Slime", + }, + "value": 15174, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Griffin", + "pt": 1, + "sh": true, + }, + "value": 209168617, + }, + { + "category": "Pet", + "configData": { + "id": "Knight Golem", + }, + "value": 94545897, + }, + { + "category": "Pet", + "configData": { + "id": "Caterpillar", + "pt": 1, + "sh": true, + }, + "value": 68336, + }, + { + "category": "Pet", + "configData": { + "id": "Caterpillar", + "pt": 2, + "sh": true, + }, + "value": 37919, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Pixie", + "pt": 2, + "sh": true, + }, + "value": 65277, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Axolotl", + "sh": true, + }, + "value": 5305649, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Pixie", + "sh": true, + }, + "value": 3558163, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dino", + }, + "value": 7321, + }, + { + "category": "Pet", + "configData": { + "id": "Jackalope", + "sh": true, + }, + "value": 909593, + }, + { + "category": "Pet", + "configData": { + "id": "Ruinous Angelus", + "pt": 1, + "sh": true, + }, + "value": 78093861, + }, + { + "category": "Pet", + "configData": { + "id": "Ruinous Angelus", + "pt": 2, + "sh": true, + }, + "value": 175578582, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Pixie", + "pt": 1, + "sh": true, + }, + "value": 144023, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Axolotl", + "pt": 1, + "sh": true, + }, + "value": 228762, + }, + { + "category": "Egg", + "configData": { + "id": "Huge Machine Egg 6", + }, + "value": 62724, + }, + { + "category": "Pet", + "configData": { + "id": "Knight Golem", + "pt": 1, + }, + "value": 13979832, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Axolotl", + "pt": 2, + "sh": true, + }, + "value": 93984, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ducky Magician", + }, + "value": 1951, + }, + { + "category": "Pet", + "configData": { + "id": "Jackalope", + "pt": 2, + "sh": true, + }, + "value": 18402, + }, + { + "category": "Pet", + "configData": { + "id": "Jackalope", + "pt": 1, + "sh": true, + }, + "value": 48727, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Penguin", + }, + "value": 7188, + }, + { + "category": "Pet", + "configData": { + "id": "Knight Golem", + "pt": 2, + }, + "value": 172298204, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dino", + "pt": 2, + }, + "value": 279, + }, + { + "category": "Pet", + "configData": { + "id": "Veil Horse", + }, + "value": 3362169, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Lucky Cat", + "pt": 1, + }, + "value": 31, + }, + { + "category": "Lootbox", + "configData": { + "id": "Time Trial Gift 2", + }, + "value": 12220623, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lunar Deer", + "pt": 1, + }, + "value": 2568, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Midnight Axolotl", + }, + "value": 507, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Slime", + "pt": 2, + }, + "value": 551, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wisp Griffin", + }, + "value": 252336, + }, + { + "category": "Pet", + "configData": { + "id": "Wicked Kirin", + }, + "value": 1313098, + }, + { + "category": "Pet", + "configData": { + "id": "Wicked Kirin", + "pt": 1, + }, + "value": 656655, + }, + { + "category": "Pet", + "configData": { + "id": "Veil Horse", + "pt": 1, + }, + "value": 1320983, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Penguin", + "pt": 1, + }, + "value": 624, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dino", + "pt": 1, + }, + "value": 789, + }, + { + "category": "Pet", + "configData": { + "id": "Veil Horse", + "pt": 2, + }, + "value": 7888739, + }, + { + "category": "Pet", + "configData": { + "id": "Wicked Kirin", + "pt": 2, + }, + "value": 1850740, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Werewolf", + }, + "value": 4860, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Palace Pooka", + }, + "value": 31873, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lunar Deer", + "sh": true, + }, + "value": 1086, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Slime", + "pt": 1, + }, + "value": 1483, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ducky Magician", + "pt": 2, + "sh": true, + }, + "value": 4, + }, + { + "category": "Pet", + "configData": { + "id": "Knight Golem", + "pt": 2, + "sh": true, + }, + "value": 161584, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Palace Pooka", + "pt": 1, + }, + "value": 6314, + }, + { + "category": "Pet", + "configData": { + "id": "Knight Golem", + "pt": 1, + "sh": true, + }, + "value": 168636, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Lucky Cat", + "sh": true, + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Werewolf", + }, + "value": 4747, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wisp Griffin", + "pt": 1, + }, + "value": 13633, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lunar Deer", + "pt": 2, + }, + "value": 978, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lunar Deer", + "pt": 1, + "sh": true, + }, + "value": 104, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Palace Pooka", + "sh": true, + }, + "value": 256, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dino", + "sh": true, + }, + "value": 312, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wisp Griffin", + "pt": 2, + }, + "value": 5594, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ducky Magician", + "pt": 1, + }, + "value": 216, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dino", + "pt": 1, + "sh": true, + }, + "value": 40, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lunar Deer", + "pt": 2, + "sh": true, + }, + "value": 42, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Slime", + "sh": true, + }, + "value": 646, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Werewolf", + "pt": 2, + }, + "value": 202, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Lucky Cat", + }, + "value": 268, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Palace Pooka", + "pt": 2, + }, + "value": 1211, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Midnight Axolotl", + "pt": 1, + }, + "value": 46, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Totem Cub", + }, + "value": 238323, + }, + { + "category": "Lootbox", + "configData": { + "id": "Small Fantasy Present", + }, + "value": 12393242820, + }, + { + "category": "Pet", + "configData": { + "id": "Veil Horse", + "pt": 2, + "sh": true, + }, + "value": 12832, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ducky Magician", + "pt": 2, + }, + "value": 79, + }, + { + "category": "Pet", + "configData": { + "id": "Veil Horse", + "pt": 1, + "sh": true, + }, + "value": 10671, + }, + { + "category": "Lootbox", + "configData": { + "id": "Medium Fantasy Present", + }, + "value": 1447329969, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Penguin", + "pt": 2, + }, + "value": 509, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wisp Griffin", + "sh": true, + }, + "value": 5977, + }, + { + "category": "Lootbox", + "configData": { + "id": "Large Fantasy Present", + }, + "value": 240336524, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ducky Magician", + "sh": true, + }, + "value": 75, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Slime", + "pt": 1, + "sh": true, + }, + "value": 55, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Werewolf", + "pt": 1, + }, + "value": 961, + }, + { + "category": "Pet", + "configData": { + "id": "Wicked Kirin", + "pt": 1, + "sh": true, + }, + "value": 1664, + }, + { + "category": "Pet", + "configData": { + "id": "Wicked Kirin", + "pt": 2, + "sh": true, + }, + "value": 3974, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Werewolf", + "pt": 1, + }, + "value": 915, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Totem Cub", + "pt": 1, + }, + "value": 47852, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Totem Cub", + "pt": 2, + }, + "value": 9376, + }, + { + "category": "Lootbox", + "configData": { + "id": "X-Large Fantasy Present", + }, + "value": 20234614, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Midnight Axolotl", + "pt": 2, + }, + "value": 20, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Penguin", + "sh": true, + }, + "value": 166, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Squirrel", + }, + "value": 21698, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Squirrel", + "pt": 1, + }, + "value": 4297, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Squirrel", + "pt": 2, + }, + "value": 797, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Party Tiger", + }, + "value": 61, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Squirrel", + "sh": true, + }, + "value": 154, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Pixie", + }, + "value": 120681, + }, + { + "category": "Pet", + "configData": { + "id": "Knight Golem", + "sh": true, + }, + "value": 665053, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Party Tiger", + "pt": 1, + }, + "value": 17, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Palace Pooka", + "pt": 1, + "sh": true, + }, + "value": 54, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Veil Horse", + "pt": 1, + }, + "value": 22655, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Party Tiger", + "pt": 1, + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Totem Cub", + "sh": true, + }, + "value": 1943, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Veil Horse", + }, + "value": 112121, + }, + { + "category": "Lootbox", + "configData": { + "id": "Titanic Fantasy Present", + }, + "value": 1893267, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Squirrel", + "pt": 1, + "sh": true, + }, + "value": 26, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ancestor Eagle", + "pt": 1, + }, + "value": 8990, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Penguin", + "pt": 2, + "sh": true, + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Veil Horse", + "pt": 2, + }, + "value": 4610, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wicked Kirin", + }, + "value": 23236, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Pixie", + "pt": 1, + }, + "value": 27028, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ancestor Eagle", + }, + "value": 44819, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Pixie", + "pt": 2, + }, + "value": 5342, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Slime", + "pt": 2, + "sh": true, + }, + "value": 22, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wicked Kirin", + "pt": 1, + "sh": true, + }, + "value": 17, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wisp Griffin", + "pt": 1, + "sh": true, + }, + "value": 287, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wicked Kirin", + "pt": 1, + }, + "value": 4584, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Hippomelon", + }, + "value": 24, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ducky Magician", + "pt": 1, + "sh": true, + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ruinous Angelus", + }, + "value": 3552, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Party Tiger", + "pt": 2, + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Alien", + }, + "value": 10258, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Alien", + "pt": 2, + }, + "value": 844, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wisp Griffin", + "pt": 2, + "sh": true, + }, + "value": 130, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Alien", + "pt": 1, + }, + "value": 1072, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Pixie", + "sh": true, + }, + "value": 844, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Alien", + "pt": 2, + "sh": true, + }, + "value": 14, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wicked Kirin", + "pt": 2, + }, + "value": 924, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Alien", + "sh": true, + }, + "value": 247, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Pixie", + "pt": 1, + "sh": true, + }, + "value": 188, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ruinous Angelus", + "pt": 1, + }, + "value": 748, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Totem Cub", + "pt": 1, + "sh": true, + }, + "value": 386, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Werewolf", + "pt": 2, + }, + "value": 176, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Red Dragon", + "pt": 1, + "sh": true, + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wicked Kirin", + "sh": true, + }, + "value": 138, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ruinous Angelus", + "pt": 2, + }, + "value": 149, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Veil Horse", + "pt": 1, + "sh": true, + }, + "value": 166, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Scroll Dragon", + "pt": 1, + }, + "value": 174, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ruinous Angelus", + "sh": true, + }, + "value": 35, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Veil Horse", + }, + "value": 5184, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Knight Golem", + }, + "value": 37257, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Wicked Kirin", + }, + "value": 103, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Palace Pooka", + "pt": 2, + "sh": true, + }, + "value": 12, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Veil Horse", + "sh": true, + }, + "value": 842, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Alien", + "pt": 1, + "sh": true, + }, + "value": 15, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ancestor Eagle", + "pt": 2, + }, + "value": 1791, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ancestor Eagle", + "sh": true, + }, + "value": 377, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Werewolf", + "sh": true, + }, + "value": 43, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sprout Wyrmling", + "sh": true, + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wicked Kirin", + "pt": 2, + "sh": true, + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Scroll Dragon", + }, + "value": 810, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ruinous Angelus", + "pt": 1, + "sh": true, + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Werewolf", + "sh": true, + }, + "value": 34, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Pixie", + "pt": 2, + "sh": true, + }, + "value": 30, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ancestor Eagle", + "pt": 1, + "sh": true, + }, + "value": 61, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Totem Cub", + "pt": 2, + "sh": true, + }, + "value": 85, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Midnight Axolotl", + "pt": 1, + "sh": true, + }, + "value": 4, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Platypus", + }, + "value": 4587, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Platypus", + "pt": 2, + }, + "value": 436, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Platypus", + "pt": 1, + }, + "value": 464, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Platypus", + "sh": true, + }, + "value": 109, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Midnight Axolotl", + "sh": true, + }, + "value": 14, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Signature BIG Maskot", + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Knight Golem", + "pt": 1, + }, + "value": 955, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Knight Golem", + "sh": true, + }, + "value": 119, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Knight Golem", + "pt": 2, + }, + "value": 526, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Knight Golem", + "pt": 2, + "sh": true, + }, + "value": 24, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Knight Golem", + "pt": 1, + "sh": true, + }, + "value": 48, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Platypus", + "pt": 1, + "sh": true, + }, + "value": 12, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Veil Horse", + "pt": 2, + "sh": true, + }, + "value": 43, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Goldfish", + }, + "value": 3176, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Goldfish", + "pt": 2, + }, + "value": 219, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Goldfish", + "sh": true, + }, + "value": 68, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Goldfish", + "pt": 1, + }, + "value": 318, + }, + { + "category": "Pet", + "configData": { + "id": "Crown", + }, + "value": 20, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Platypus", + "pt": 2, + "sh": true, + }, + "value": 8, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ancestor Eagle", + "pt": 2, + "sh": true, + }, + "value": 15, + }, + { + "category": "Pet", + "configData": { + "id": "Veil Horse", + "sh": true, + }, + "value": 19247, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Werewolf", + "pt": 1, + "sh": true, + }, + "value": 13, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Penguin", + "pt": 1, + "sh": true, + }, + "value": 14, + }, + { + "category": "Currency", + "configData": { + "id": "RngCoins2", + }, + "value": 1697241959078052, + }, + { + "category": "Misc", + "configData": { + "id": "Lucky Dice V2", + }, + "value": 31964961390, + }, + { + "category": "Misc", + "configData": { + "id": "Lucky Dice II V2", + }, + "value": 6229295653, + }, + { + "category": "Misc", + "configData": { + "id": "Lucky Dice II V2", + }, + "value": 83, + }, + { + "category": "Pet", + "configData": { + "id": "Sand Turtle", + }, + "value": 2747702867, + }, + { + "category": "Pet", + "configData": { + "id": "Sprout Stag", + }, + "value": 1093251233, + }, + { + "category": "Pet", + "configData": { + "id": "Blossom Fox", + }, + "value": 105799352, + }, + { + "category": "Misc", + "configData": { + "id": "Mega Lucky Dice II V2", + }, + "value": 122949585, + }, + { + "category": "Misc", + "configData": { + "id": "Mega Lucky Dice V2", + }, + "value": 356769337, + }, + { + "category": "Misc", + "configData": { + "id": "Mega Lucky Dice V2", + }, + "value": 21979351, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Void", + }, + "value": 124976, + }, + { + "category": "Pet", + "configData": { + "id": "Sand Turtle", + "pt": 2, + }, + "value": 117837766, + }, + { + "category": "Pet", + "configData": { + "id": "Honey Bee", + }, + "value": 1707140003, + }, + { + "category": "Pet", + "configData": { + "id": "Sand Turtle", + "pt": 1, + }, + "value": 162541002, + }, + { + "category": "Pet", + "configData": { + "id": "Sprout Stag", + "pt": 2, + }, + "value": 47906564, + }, + { + "category": "Pet", + "configData": { + "id": "Error Dragon", + "pt": 2, + }, + "value": 106652411, + }, + { + "category": "Pet", + "configData": { + "id": "Blossom Fox", + "pt": 2, + }, + "value": 4826338, + }, + { + "category": "Pet", + "configData": { + "id": "Chameleon", + }, + "value": 983077866, + }, + { + "category": "Pet", + "configData": { + "id": "Sprout Stag", + "pt": 1, + }, + "value": 65007689, + }, + { + "category": "Pet", + "configData": { + "id": "Error Dragon", + }, + "value": 2161557438, + }, + { + "category": "Pet", + "configData": { + "id": "Honey Bee", + "pt": 2, + }, + "value": 107270784, + }, + { + "category": "Pet", + "configData": { + "id": "Sand Turtle", + "pt": 1, + "sh": true, + }, + "value": 237306, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Elephant", + }, + "value": 283944727, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Alienus Kitsune", + }, + "value": 29671, + }, + { + "category": "Pet", + "configData": { + "id": "Error Dragon", + "pt": 1, + }, + "value": 139875270, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Alienus Kitsune", + "pt": 1, + }, + "value": 11846, + }, + { + "category": "Pet", + "configData": { + "id": "Blossom Fox", + "pt": 1, + }, + "value": 6527709, + }, + { + "category": "Pet", + "configData": { + "id": "Chameleon", + "pt": 1, + }, + "value": 76594051, + }, + { + "category": "Pet", + "configData": { + "id": "Origami Bunny", + }, + "value": 246644, + }, + { + "category": "Pet", + "configData": { + "id": "Honey Bee", + "pt": 1, + }, + "value": 126982434, + }, + { + "category": "Pet", + "configData": { + "id": "Origami Fox", + }, + "value": 165017, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Alienus Kitsune", + "pt": 2, + }, + "value": 3238, + }, + { + "category": "Booth", + "configData": { + "id": "Void", + }, + "value": 123042, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 61", + }, + "value": 1579175, + }, + { + "category": "Pet", + "configData": { + "id": "Chameleon", + "pt": 2, + }, + "value": 65413089, + }, + { + "category": "Pet", + "configData": { + "id": "Bubble Bunny", + }, + "value": 149788866, + }, + { + "category": "Pet", + "configData": { + "id": "Sand Turtle", + "sh": true, + }, + "value": 3975718, + }, + { + "category": "Pet", + "configData": { + "id": "Sapphire Dragon", + }, + "value": 30810387, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Origami Bunny", + }, + "value": 20576, + }, + { + "category": "Pet", + "configData": { + "id": "Origami Shark", + }, + "value": 63937, + }, + { + "category": "Pet", + "configData": { + "id": "Starry Eye Wolf", + }, + "value": 45589866, + }, + { + "category": "Pet", + "configData": { + "id": "Origami Fox", + "pt": 2, + }, + "value": 6628, + }, + { + "category": "Pet", + "configData": { + "id": "Origami Shark", + "pt": 2, + }, + "value": 2663, + }, + { + "category": "Pet", + "configData": { + "id": "Origami Bunny", + "pt": 2, + }, + "value": 9568, + }, + { + "category": "Pet", + "configData": { + "id": "Origami Bunny", + "sh": true, + }, + "value": 6294, + }, + { + "category": "Pet", + "configData": { + "id": "Origami Fox", + "sh": true, + }, + "value": 4391, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Origami Shark", + }, + "value": 7266, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Alienus Kitsune", + "sh": true, + }, + "value": 698, + }, + { + "category": "Pet", + "configData": { + "id": "Bubble Bunny", + "pt": 1, + }, + "value": 11870778, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Origami Shark", + "pt": 2, + }, + "value": 413, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Origami Crane", + }, + "value": 1479, + }, + { + "category": "Pet", + "configData": { + "id": "Bubble Bunny", + "pt": 2, + }, + "value": 10126192, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Alienus Kitsune", + "pt": 1, + "sh": true, + }, + "value": 154, + }, + { + "category": "Pet", + "configData": { + "id": "Mystical Kitsune", + }, + "value": 4261033, + }, + { + "category": "Pet", + "configData": { + "id": "Origami Shark", + "sh": true, + }, + "value": 1718, + }, + { + "category": "Pet", + "configData": { + "id": "Surge Wolf", + }, + "value": 4058009, + }, + { + "category": "Pet", + "configData": { + "id": "Starry Eye Wolf", + "pt": 2, + }, + "value": 3046947, + }, + { + "category": "Pet", + "configData": { + "id": "Sapphire Dragon", + "pt": 2, + }, + "value": 1848291, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Elephant", + "pt": 1, + }, + "value": 22297504, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Owl", + }, + "value": 20979437, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Alienus Kitsune", + "pt": 2, + "sh": true, + }, + "value": 29, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Elephant", + "pt": 2, + }, + "value": 19041629, + }, + { + "category": "Pet", + "configData": { + "id": "Starry Eye Wolf", + "pt": 1, + }, + "value": 3621408, + }, + { + "category": "Pet", + "configData": { + "id": "Surge Wolf", + "pt": 1, + }, + "value": 318750, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Owl", + "pt": 1, + }, + "value": 1655618, + }, + { + "category": "Pet", + "configData": { + "id": "Sprout Stag", + "sh": true, + }, + "value": 1473189, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Origami Shark", + "sh": true, + }, + "value": 425, + }, + { + "category": "Pet", + "configData": { + "id": "Origami Fox", + "pt": 2, + "sh": true, + }, + "value": 310, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Origami Bunny", + "sh": true, + }, + "value": 886, + }, + { + "category": "Pet", + "configData": { + "id": "Origami Bunny", + "pt": 2, + "sh": true, + }, + "value": 369, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Origami Bunny", + "pt": 2, + }, + "value": 677, + }, + { + "category": "Pet", + "configData": { + "id": "Origami Shark", + "pt": 2, + "sh": true, + }, + "value": 100, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nebula Lion", + }, + "value": 102642, + }, + { + "category": "Pet", + "configData": { + "id": "Sapphire Dragon", + "pt": 1, + }, + "value": 2327377, + }, + { + "category": "Pet", + "configData": { + "id": "Mystical Kitsune", + "pt": 2, + }, + "value": 285326, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Owl", + "pt": 2, + }, + "value": 1389090, + }, + { + "category": "Pet", + "configData": { + "id": "Mystical Kitsune", + "pt": 1, + }, + "value": 336790, + }, + { + "category": "Pet", + "configData": { + "id": "Surge Wolf", + "pt": 2, + }, + "value": 247745, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nebula Lion", + "pt": 2, + }, + "value": 7938, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cataclysm Bear", + }, + "value": 69740, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Eclipse Owl", + }, + "value": 71933, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Origami Kitsune", + }, + "value": 140, + }, + { + "category": "Pet", + "configData": { + "id": "Blossom Fox", + "sh": true, + }, + "value": 121915, + }, + { + "category": "Pet", + "configData": { + "id": "Honey Bee", + "sh": true, + }, + "value": 3578765, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nebula Lion", + "pt": 1, + }, + "value": 15293, + }, + { + "category": "Pet", + "configData": { + "id": "Error Dragon", + "sh": true, + }, + "value": 4358112, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Eclipse Owl", + "pt": 2, + }, + "value": 5525, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cataclysm Bear", + "pt": 2, + }, + "value": 5038, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cataclysm Bear", + "pt": 1, + }, + "value": 8363, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cataclysm Bear", + "sh": true, + }, + "value": 2759, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Void Cat", + "pt": 1, + }, + "value": 337, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Eclipse Owl", + "pt": 1, + "sh": true, + }, + "value": 786, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Eclipse Owl", + "pt": 1, + }, + "value": 9754, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Elephant", + "sh": true, + }, + "value": 564002, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Void Cat", + }, + "value": 4688, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Eclipse Owl", + "sh": true, + }, + "value": 3243, + }, + { + "category": "Pet", + "configData": { + "id": "Sprout Stag", + "pt": 1, + "sh": true, + }, + "value": 73930, + }, + { + "category": "Pet", + "configData": { + "id": "Bubble Bunny", + "sh": true, + }, + "value": 293620, + }, + { + "category": "Pet", + "configData": { + "id": "Chameleon", + "sh": true, + }, + "value": 2020275, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Origami Shark", + "pt": 2, + "sh": true, + }, + "value": 79, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cataclysm Bear", + "pt": 2, + "sh": true, + }, + "value": 395, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Origami Crane", + "pt": 2, + }, + "value": 53, + }, + { + "category": "Pet", + "configData": { + "id": "Mystical Kitsune", + "sh": true, + }, + "value": 8825, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Eclipse Owl", + "pt": 2, + "sh": true, + }, + "value": 500, + }, + { + "category": "Pet", + "configData": { + "id": "Sand Turtle", + "pt": 2, + "sh": true, + }, + "value": 222142, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nebula Lion", + "sh": true, + }, + "value": 4507, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Owl", + "sh": true, + }, + "value": 42289, + }, + { + "category": "Pet", + "configData": { + "id": "Sapphire Dragon", + "sh": true, + }, + "value": 58672, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Void Cat", + "pt": 2, + }, + "value": 235, + }, + { + "category": "Pet", + "configData": { + "id": "Starry Eye Wolf", + "sh": true, + }, + "value": 90820, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nebula Lion", + "pt": 1, + "sh": true, + }, + "value": 1177, + }, + { + "category": "Pet", + "configData": { + "id": "Sprout Stag", + "pt": 2, + "sh": true, + }, + "value": 62712, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nebula Lion", + "pt": 2, + "sh": true, + }, + "value": 723, + }, + { + "category": "Pet", + "configData": { + "id": "Starry Eye Wolf", + "pt": 1, + "sh": true, + }, + "value": 9659, + }, + { + "category": "Pet", + "configData": { + "id": "Error Dragon", + "pt": 1, + "sh": true, + }, + "value": 359698, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cataclysm Bear", + "pt": 1, + "sh": true, + }, + "value": 543, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Origami Crane", + "sh": true, + }, + "value": 26, + }, + { + "category": "Pet", + "configData": { + "id": "Surge Wolf", + "sh": true, + }, + "value": 8023, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Squirrel", + "pt": 2, + "sh": true, + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "Blossom Fox", + "pt": 1, + "sh": true, + }, + "value": 6330, + }, + { + "category": "Pet", + "configData": { + "id": "Chameleon", + "pt": 1, + "sh": true, + }, + "value": 207448, + }, + { + "category": "Pet", + "configData": { + "id": "Honey Bee", + "pt": 1, + "sh": true, + }, + "value": 350946, + }, + { + "category": "Pet", + "configData": { + "id": "Blossom Fox", + "pt": 2, + "sh": true, + }, + "value": 5631, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Midnight Axolotl", + "pt": 2, + "sh": true, + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Origami Kitsune", + "pt": 2, + }, + "value": 11, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Origami Crane", + "pt": 2, + "sh": true, + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Origami Bunny", + "pt": 2, + "sh": true, + }, + "value": 23, + }, + { + "category": "Pet", + "configData": { + "id": "Bubble Bunny", + "pt": 1, + "sh": true, + }, + "value": 30510, + }, + { + "category": "Pet", + "configData": { + "id": "Error Dragon", + "pt": 2, + "sh": true, + }, + "value": 375776, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Floppa", + "pt": 2, + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Owl", + "pt": 2, + "sh": true, + }, + "value": 5112, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Werewolf", + "pt": 2, + "sh": true, + }, + "value": 3, + }, + { + "category": "Pet", + "configData": { + "id": "Sapphire Dragon", + "pt": 2, + "sh": true, + }, + "value": 6616, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Elephant", + "pt": 1, + "sh": true, + }, + "value": 58087, + }, + { + "category": "Pet", + "configData": { + "id": "Honey Bee", + "pt": 2, + "sh": true, + }, + "value": 399494, + }, + { + "category": "Pet", + "configData": { + "id": "Sapphire Dragon", + "pt": 1, + "sh": true, + }, + "value": 6180, + }, + { + "category": "Pet", + "configData": { + "id": "Bubble Bunny", + "pt": 2, + "sh": true, + }, + "value": 36615, + }, + { + "category": "Pet", + "configData": { + "id": "Chameleon", + "pt": 2, + "sh": true, + }, + "value": 240090, + }, + { + "category": "Pet", + "configData": { + "id": "Mystical Kitsune", + "pt": 2, + "sh": true, + }, + "value": 1065, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Goldfish", + "pt": 1, + "sh": true, + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Owl", + "pt": 1, + "sh": true, + }, + "value": 4574, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Void Cat", + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Surge Wolf", + "pt": 2, + "sh": true, + }, + "value": 876, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dino", + "pt": 2, + "sh": true, + }, + "value": 10, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Elephant", + "pt": 2, + "sh": true, + }, + "value": 69824, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Angel Cow", + }, + "value": 2448, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Angel Cow", + "pt": 1, + }, + "value": 424, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Angel Cow", + }, + "value": 57, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Angel Cow", + "pt": 2, + }, + "value": 127, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Angel Cow", + "pt": 1, + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Angel Cow", + "pt": 2, + }, + "value": 3, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Angel", + }, + "value": 1851, + }, + { + "category": "Booth", + "configData": { + "id": "Angel", + }, + "value": 3066, + }, + { + "category": "Misc", + "configData": { + "id": "Lucky Dice III V2", + }, + "value": 700255209, + }, + { + "category": "Misc", + "configData": { + "id": "Fire Dice V2", + }, + "value": 5738718, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Oracle Tiger", + }, + "value": 224572, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Shark", + }, + "value": 2739251, + }, + { + "category": "Pet", + "configData": { + "id": "Vibrant Zebra", + "pt": 1, + }, + "value": 260128, + }, + { + "category": "Pet", + "configData": { + "id": "Vibrant Zebra", + }, + "value": 2561630, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Shark", + "pt": 1, + }, + "value": 290586, + }, + { + "category": "Pet", + "configData": { + "id": "Pixel Hippomelon", + }, + "value": 2539131, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anubis", + }, + "value": 90834, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Prism Pegasus", + }, + "value": 112684, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lotus Koi Fish", + "pt": 2, + }, + "value": 4321, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lotus Koi Fish", + }, + "value": 31913, + }, + { + "category": "Pet", + "configData": { + "id": "Pixel Hippomelon", + "pt": 1, + }, + "value": 238438, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anubis", + "pt": 1, + }, + "value": 6399, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Prism Pegasus", + "pt": 2, + }, + "value": 5904, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Oracle Tiger", + "pt": 1, + }, + "value": 16951, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Prism Pegasus", + "pt": 2, + "sh": true, + }, + "value": 147, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Oracle Tiger", + "pt": 2, + }, + "value": 11788, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lotus Koi Fish", + "pt": 1, + }, + "value": 14326, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Prism Pegasus", + "pt": 1, + }, + "value": 7673, + }, + { + "category": "Pet", + "configData": { + "id": "Pixel Hippomelon", + "pt": 2, + }, + "value": 202693, + }, + { + "category": "Pet", + "configData": { + "id": "Vibrant Zebra", + "pt": 2, + }, + "value": 202394, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Prism Pegasus", + "sh": true, + }, + "value": 2661, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Halo Cat", + }, + "value": 5068, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Shark", + "pt": 2, + }, + "value": 215893, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anubis", + "pt": 2, + }, + "value": 4165, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Prism Pegasus", + "pt": 1, + "sh": true, + }, + "value": 149, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Oracle Tiger", + "sh": true, + }, + "value": 5445, + }, + { + "category": "Pet", + "configData": { + "id": "Stacked Cat", + }, + "value": 2338, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Demolition Cat", + }, + "value": 26353, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Oracle Tiger", + "pt": 1, + "sh": true, + }, + "value": 311, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anubis", + "sh": true, + }, + "value": 1826, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lotus Koi Fish", + "sh": true, + }, + "value": 864, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Oracle Tiger", + "pt": 2, + "sh": true, + }, + "value": 244, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Demolition Cat", + "pt": 2, + }, + "value": 502, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Propeller Cat", + "pt": 2, + }, + "value": 44, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Halo Cat", + "pt": 1, + }, + "value": 425, + }, + { + "category": "Pet", + "configData": { + "id": "Stacked Cat", + "pt": 2, + }, + "value": 50, + }, + { + "category": "Pet", + "configData": { + "id": "Vibrant Zebra", + "sh": true, + }, + "value": 8661, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Propeller Cat", + }, + "value": 1749, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Demolition Cat", + "sh": true, + }, + "value": 566, + }, + { + "category": "Pet", + "configData": { + "id": "Stacked Cat", + "sh": true, + }, + "value": 47, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lotus Koi Fish", + "pt": 2, + "sh": true, + }, + "value": 47, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Halo Cat", + "sh": true, + }, + "value": 13, + }, + { + "category": "Pet", + "configData": { + "id": "Pixel Hippomelon", + "sh": true, + }, + "value": 9141, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lotus Koi Fish", + "pt": 1, + "sh": true, + }, + "value": 189, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Shark", + "sh": true, + }, + "value": 8335, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Halo Cat", + "pt": 2, + }, + "value": 253, + }, + { + "category": "Pet", + "configData": { + "id": "Stacked Cat", + "pt": 2, + "sh": true, + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anubis", + "pt": 1, + "sh": true, + }, + "value": 118, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anubis", + "pt": 2, + "sh": true, + }, + "value": 68, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Halo Cat", + "pt": 2, + "sh": true, + }, + "value": 11, + }, + { + "category": "Pet", + "configData": { + "id": "Starry Eye Wolf", + "pt": 2, + "sh": true, + }, + "value": 11019, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Clown Cat", + }, + "value": 3, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Halo Cat", + "pt": 1, + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Mystical Kitsune", + "pt": 1, + "sh": true, + }, + "value": 921, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Lucky Cat", + "pt": 2, + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Surge Wolf", + "pt": 1, + "sh": true, + }, + "value": 815, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Shark", + "pt": 1, + "sh": true, + }, + "value": 700, + }, + { + "category": "Pet", + "configData": { + "id": "Vibrant Zebra", + "pt": 1, + "sh": true, + }, + "value": 772, + }, + { + "category": "Pet", + "configData": { + "id": "Pixel Hippomelon", + "pt": 2, + "sh": true, + }, + "value": 792, + }, + { + "category": "Pet", + "configData": { + "id": "Pixel Hippomelon", + "pt": 1, + "sh": true, + }, + "value": 788, + }, + { + "category": "Pet", + "configData": { + "id": "Vibrant Zebra", + "pt": 2, + "sh": true, + }, + "value": 753, + }, + { + "category": "Pet", + "configData": { + "id": "Wicked Kirin", + "sh": true, + }, + "value": 4184, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Garden Goblin", + }, + "value": 7456, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Garden Goblin", + "pt": 2, + }, + "value": 6909, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Garden Goblin", + "pt": 1, + }, + "value": 8842, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Garden Goblin", + "pt": 1, + "sh": true, + }, + "value": 70, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Garden Goblin", + "pt": 2, + "sh": true, + }, + "value": 64, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Withered Agony", + "pt": 2, + }, + "value": 6854, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Withered Agony", + }, + "value": 15532, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Withered Agony", + "pt": 1, + }, + "value": 13431, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Shark", + "pt": 2, + "sh": true, + }, + "value": 641, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Withered Agony", + "pt": 1, + "sh": true, + }, + "value": 81, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Withered Agony", + "pt": 2, + "sh": true, + }, + "value": 85, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Scroll Dragon", + "pt": 2, + }, + "value": 30, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Wicked Kirin", + "pt": 2, + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Scroll Dragon", + "sh": true, + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghost Axolotl", + "pt": 2, + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Werewolf", + "pt": 1, + "sh": true, + }, + "value": 4, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luxe Axolotl", + "pt": 2, + "sh": true, + }, + "value": 15, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luxe Axolotl", + "pt": 1, + "sh": true, + }, + "value": 34, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Floppa", + "sh": true, + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Inferno Cat", + "pt": 2, + "sh": true, + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Origami Kitsune", + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Origami Kitsune", + "pt": 2, + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Hippomelon", + "pt": 2, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Werewolf", + "pt": 2, + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Goldfish", + "pt": 2, + "sh": true, + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Crown", + "pt": 2, + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wireframe Cat", + "pt": 1, + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Demolition Cat", + "pt": 2, + "sh": true, + }, + "value": 7, + }, + { + "category": "Misc", + "configData": { + "id": "Backrooms Crayon Key", + }, + "value": 53451906, + }, + { + "category": "Misc", + "configData": { + "id": "Chest Hunt Token", + }, + "value": 593807641, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guest 666", + }, + "value": 15528, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guest 666", + "pt": 1, + }, + "value": 6192, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guest 666", + "pt": 2, + }, + "value": 1842, + }, + { + "category": "Pet", + "configData": { + "id": "Mars Monkey", + }, + "value": 30065, + }, + { + "category": "Pet", + "configData": { + "id": "Earth Dog", + }, + "value": 118838, + }, + { + "category": "Pet", + "configData": { + "id": "Moon Raccoon", + }, + "value": 78907, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Partygoer Cat", + }, + "value": 89525, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Earth Dog", + }, + "value": 7360, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Bee", + }, + "value": 4600, + }, + { + "category": "Pet", + "configData": { + "id": "Moon Raccoon", + "sh": true, + }, + "value": 2079, + }, + { + "category": "Pet", + "configData": { + "id": "Earth Dog", + "sh": true, + }, + "value": 3004, + }, + { + "category": "Pet", + "configData": { + "id": "Mars Monkey", + "pt": 2, + }, + "value": 1365, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Earth Dog", + "sh": true, + }, + "value": 298, + }, + { + "category": "Pet", + "configData": { + "id": "Earth Dog", + "pt": 2, + }, + "value": 4439, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guest 666", + "sh": true, + }, + "value": 405, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mars Monkey", + }, + "value": 2567, + }, + { + "category": "Pet", + "configData": { + "id": "Mars Monkey", + "sh": true, + }, + "value": 812, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Death Moth", + "pt": 2, + }, + "value": 36, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mars Monkey", + "sh": true, + }, + "value": 158, + }, + { + "category": "Pet", + "configData": { + "id": "Moon Raccoon", + "pt": 2, + }, + "value": 3184, + }, + { + "category": "Pet", + "configData": { + "id": "Tripod Octopus", + }, + "value": 16411142629, + }, + { + "category": "Pet", + "configData": { + "id": "Faceling Raccoon", + }, + "value": 17491484291, + }, + { + "category": "Pet", + "configData": { + "id": "Daydream Fox", + "pt": 2, + }, + "value": 962129639, + }, + { + "category": "Pet", + "configData": { + "id": "Daydream Fox", + "pt": 1, + }, + "value": 956708314, + }, + { + "category": "Pet", + "configData": { + "id": "Faceling Raccoon", + "pt": 2, + }, + "value": 3001226490, + }, + { + "category": "Pet", + "configData": { + "id": "Daydream Fox", + }, + "value": 11121600418, + }, + { + "category": "Pet", + "configData": { + "id": "Skin Stealer", + }, + "value": 13337220142, + }, + { + "category": "Pet", + "configData": { + "id": "Skin Stealer", + "pt": 1, + }, + "value": 1324809775, + }, + { + "category": "Pet", + "configData": { + "id": "Tripod Octopus", + "pt": 1, + }, + "value": 1787435181, + }, + { + "category": "Pet", + "configData": { + "id": "Piggy Piggy", + }, + "value": 5561296448, + }, + { + "category": "Pet", + "configData": { + "id": "Skin Stealer", + "sh": true, + }, + "value": 60389447, + }, + { + "category": "Pet", + "configData": { + "id": "Skin Stealer", + "pt": 2, + }, + "value": 2095877751, + }, + { + "category": "Pet", + "configData": { + "id": "Faceling Raccoon", + "sh": true, + }, + "value": 103771688, + }, + { + "category": "Pet", + "configData": { + "id": "Faceling Raccoon", + "pt": 1, + }, + "value": 2244975455, + }, + { + "category": "Pet", + "configData": { + "id": "Omen", + }, + "value": 591849332, + }, + { + "category": "Pet", + "configData": { + "id": "Partygoer Cat", + }, + "value": 132789195, + }, + { + "category": "Pet", + "configData": { + "id": "Piggy Piggy", + "pt": 1, + }, + "value": 674241933, + }, + { + "category": "Pet", + "configData": { + "id": "Piggy Piggy", + "pt": 2, + }, + "value": 2334210623, + }, + { + "category": "Pet", + "configData": { + "id": "Daydream Fox", + "sh": true, + }, + "value": 43538731, + }, + { + "category": "Pet", + "configData": { + "id": "Tripod Octopus", + "pt": 2, + }, + "value": 7816970031, + }, + { + "category": "Pet", + "configData": { + "id": "Daydream Fox", + "pt": 2, + "sh": true, + }, + "value": 6556982, + }, + { + "category": "Pet", + "configData": { + "id": "Daydream Fox", + "pt": 1, + "sh": true, + }, + "value": 5108546, + }, + { + "category": "Pet", + "configData": { + "id": "Guest 666", + }, + "value": 37039115, + }, + { + "category": "Pet", + "configData": { + "id": "Omen", + "pt": 1, + }, + "value": 77380318, + }, + { + "category": "Pet", + "configData": { + "id": "Skin Stealer", + "pt": 2, + "sh": true, + }, + "value": 13154039, + }, + { + "category": "Pet", + "configData": { + "id": "Tripod Octopus", + "sh": true, + }, + "value": 85521892, + }, + { + "category": "Pet", + "configData": { + "id": "Faceling Raccoon", + "pt": 2, + "sh": true, + }, + "value": 26848154, + }, + { + "category": "Pet", + "configData": { + "id": "Omen", + "pt": 2, + }, + "value": 229823700, + }, + { + "category": "Pet", + "configData": { + "id": "Skin Stealer", + "pt": 1, + "sh": true, + }, + "value": 8290420, + }, + { + "category": "Pet", + "configData": { + "id": "Faceling Raccoon", + "pt": 1, + "sh": true, + }, + "value": 17121049, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mars Monkey", + "pt": 2, + }, + "value": 135, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Bee", + "pt": 1, + }, + "value": 1772, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Death Moth", + }, + "value": 399, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Bee", + "pt": 2, + }, + "value": 501, + }, + { + "category": "Pet", + "configData": { + "id": "Tripod Octopus", + "pt": 1, + "sh": true, + }, + "value": 12930440, + }, + { + "category": "Pet", + "configData": { + "id": "Partygoer Cat", + "pt": 1, + }, + "value": 17900034, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Lucky Block", + }, + "value": 464, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 62", + }, + "value": 605643, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Solar Lion", + }, + "value": 51, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guest 666", + "pt": 1, + "sh": true, + }, + "value": 87, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Nyan Cat", + }, + "value": 506, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guest 666", + "pt": 2, + "sh": true, + }, + "value": 23, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Samurai", + }, + "value": 1293, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Nyan Cat", + "sh": true, + }, + "value": 53, + }, + { + "category": "Pet", + "configData": { + "id": "Piggy Piggy", + "pt": 2, + "sh": true, + }, + "value": 14043165, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Space Bat", + }, + "value": 558, + }, + { + "category": "Pet", + "configData": { + "id": "Piggy Piggy", + "sh": true, + }, + "value": 30086661, + }, + { + "category": "Pet", + "configData": { + "id": "Earth Dog", + "pt": 2, + "sh": true, + }, + "value": 123, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Bee", + "pt": 1, + "sh": true, + }, + "value": 20, + }, + { + "category": "Pet", + "configData": { + "id": "Moon Raccoon", + "pt": 2, + "sh": true, + }, + "value": 104, + }, + { + "category": "Pet", + "configData": { + "id": "Partygoer Cat", + "pt": 2, + }, + "value": 56067896, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Earth Dog", + "pt": 2, + }, + "value": 206, + }, + { + "category": "Pet", + "configData": { + "id": "Piggy Piggy", + "pt": 1, + "sh": true, + }, + "value": 5222190, + }, + { + "category": "Pet", + "configData": { + "id": "Tripod Octopus", + "pt": 2, + "sh": true, + }, + "value": 43452914, + }, + { + "category": "Pet", + "configData": { + "id": "Guest 666", + "pt": 1, + }, + "value": 5472176, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Bee", + "sh": true, + }, + "value": 108, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Death Moth", + "pt": 1, + }, + "value": 158, + }, + { + "category": "Currency", + "configData": { + "id": "DaydreamCoins", + }, + "value": 3192455365646312, + }, + { + "category": "Pet", + "configData": { + "id": "Guest 666", + "pt": 2, + }, + "value": 18697942, + }, + { + "category": "Pet", + "configData": { + "id": "Omen", + "sh": true, + }, + "value": 3612535, + }, + { + "category": "Pet", + "configData": { + "id": "Guest 666", + "pt": 2, + "sh": true, + }, + "value": 55550, + }, + { + "category": "Pet", + "configData": { + "id": "Partygoer Cat", + "sh": true, + }, + "value": 1266436, + }, + { + "category": "Pet", + "configData": { + "id": "Guest 666", + "sh": true, + }, + "value": 699817, + }, + { + "category": "Pet", + "configData": { + "id": "Omen", + "pt": 2, + "sh": true, + }, + "value": 1213569, + }, + { + "category": "Pet", + "configData": { + "id": "Partygoer Cat", + "pt": 2, + "sh": true, + }, + "value": 217614, + }, + { + "category": "Pet", + "configData": { + "id": "Guest 666", + "pt": 1, + "sh": true, + }, + "value": 111097, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Skateboard Bulldog", + }, + "value": 22, + }, + { + "category": "Pet", + "configData": { + "id": "Omen", + "pt": 1, + "sh": true, + }, + "value": 1070771, + }, + { + "category": "Pet", + "configData": { + "id": "Partygoer Cat", + "pt": 1, + "sh": true, + }, + "value": 482404, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Propeller Cat", + "sh": true, + }, + "value": 35, + }, + { + "category": "Pet", + "configData": { + "id": "Mars Monkey", + "pt": 2, + "sh": true, + }, + "value": 38, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Samurai", + "sh": true, + }, + "value": 135, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Bee", + "pt": 2, + "sh": true, + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skin Stealer", + }, + "value": 115173, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Partygoer Cat", + "sh": true, + }, + "value": 2085, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Lucky Block", + "sh": true, + }, + "value": 44, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Space Bat", + "pt": 2, + }, + "value": 11, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Partygoer Cat", + "pt": 1, + }, + "value": 5188, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tripod Octopus", + }, + "value": 50004, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Piggy Piggy", + }, + "value": 75779, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Piggy Piggy", + "pt": 1, + }, + "value": 34180, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Faceling Raccoon", + }, + "value": 90518, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Partygoer Cat", + "pt": 2, + }, + "value": 3325, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Piggy Piggy", + "pt": 2, + }, + "value": 9920, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Faceling Raccoon", + "pt": 1, + }, + "value": 35141, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Piggy Piggy", + }, + "value": 4131, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Partygoer Cat", + "pt": 1, + "sh": true, + }, + "value": 131, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Partygoer Cat", + "pt": 2, + "sh": true, + }, + "value": 80, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Faceling Raccoon", + "pt": 2, + }, + "value": 10725, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Partygoer Cat", + }, + "value": 4563, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tripod Octopus", + "pt": 2, + }, + "value": 4964, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skin Stealer", + "pt": 1, + }, + "value": 7573, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tripod Octopus", + "pt": 1, + }, + "value": 15401, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skin Stealer", + "pt": 2, + }, + "value": 5482, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Earth Dog", + "pt": 2, + "sh": true, + }, + "value": 19, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mars Monkey", + "pt": 2, + "sh": true, + }, + "value": 23, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skin Stealer", + "sh": true, + }, + "value": 2618, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Partygoer Cat", + "pt": 1, + }, + "value": 316, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Guest 666", + }, + "value": 169, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Partygoer Cat", + "pt": 2, + }, + "value": 194, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skin Stealer", + "pt": 2, + "sh": true, + }, + "value": 146, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skin Stealer", + "pt": 1, + "sh": true, + }, + "value": 181, + }, + { + "category": "Pet", + "configData": { + "id": "Memory Worm", + "pt": 2, + }, + "value": 1028118859, + }, + { + "category": "Pet", + "configData": { + "id": "Memory Worm", + "sh": true, + }, + "value": 36531760, + }, + { + "category": "Pet", + "configData": { + "id": "Memory Worm", + "pt": 1, + }, + "value": 813620190, + }, + { + "category": "Pet", + "configData": { + "id": "Death Moth", + }, + "value": 35700192, + }, + { + "category": "Pet", + "configData": { + "id": "Memory Worm", + }, + "value": 6042467429, + }, + { + "category": "Pet", + "configData": { + "id": "Memory Worm", + "pt": 2, + "sh": true, + }, + "value": 9724609, + }, + { + "category": "Pet", + "configData": { + "id": "Death Moth", + "pt": 2, + }, + "value": 6975080, + }, + { + "category": "Pet", + "configData": { + "id": "Memory Worm", + "pt": 1, + "sh": true, + }, + "value": 6147251, + }, + { + "category": "Pet", + "configData": { + "id": "Death Moth", + "pt": 1, + }, + "value": 5307728, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Omen", + "pt": 2, + }, + "value": 4297, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Omen", + }, + "value": 49645, + }, + { + "category": "Pet", + "configData": { + "id": "Death Moth", + "sh": true, + }, + "value": 178058, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Omen", + "sh": true, + }, + "value": 1174, + }, + { + "category": "Pet", + "configData": { + "id": "Death Moth", + "pt": 2, + "sh": true, + }, + "value": 50417, + }, + { + "category": "Pet", + "configData": { + "id": "Death Moth", + "pt": 1, + "sh": true, + }, + "value": 31986, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Omen", + "pt": 1, + }, + "value": 4444, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Omen", + "pt": 2, + "sh": true, + }, + "value": 110, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Omen", + "pt": 1, + "sh": true, + }, + "value": 101, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Partygoer Cat", + "pt": 2, + "sh": true, + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Death Moth", + "pt": 1, + "sh": true, + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Guest 666", + "pt": 2, + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Guest 666", + "pt": 1, + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Partygoer Cat", + "sh": true, + }, + "value": 10, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Space Bat", + "sh": true, + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Space Bat", + "pt": 2, + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Death Moth", + "sh": true, + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Frankenpup Dog", + "pt": 2, + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Piggy Piggy", + "pt": 1, + }, + "value": 1384, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Piggy Piggy", + "pt": 2, + }, + "value": 382, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Skateboard Bulldog", + "pt": 1, + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Signature BIG Maskot", + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Daydream Fox", + "pt": 1, + }, + "value": 464, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Daydream Fox", + }, + "value": 2435, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Daydream Fox", + "pt": 1, + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Daydream Fox", + }, + "value": 61, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Daydream Fox", + "pt": 2, + }, + "value": 135, + }, + { + "category": "Booth", + "configData": { + "id": "Daydream", + }, + "value": 3104, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Daydream", + }, + "value": 1947, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Daydream Fox", + "pt": 2, + }, + "value": 3, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Hippomelon", + "pt": 1, + }, + "value": 1, + }, + { + "category": "Consumable", + "configData": { + "id": "Backrooms Teleport Booster", + "tn": 1, + }, + "value": 587426, + }, + { + "category": "Consumable", + "configData": { + "id": "Backrooms Speed Booster", + "tn": 1, + }, + "value": 382225, + }, + { + "category": "Consumable", + "configData": { + "id": "Backrooms Luck Booster", + "tn": 1, + }, + "value": 381556, + }, + { + "category": "Misc", + "configData": { + "id": "Deep Backrooms Crayon Key", + }, + "value": 6468783, + }, + { + "category": "Misc", + "configData": { + "id": "Deep Chest Token", + }, + "value": 2584052465, + }, + { + "category": "Pet", + "configData": { + "id": "Faceling Owl", + }, + "value": 6473739295, + }, + { + "category": "Pet", + "configData": { + "id": "Partypooper Dog", + }, + "value": 11704012975, + }, + { + "category": "Pet", + "configData": { + "id": "Tripod Dominus", + }, + "value": 45869721497, + }, + { + "category": "Pet", + "configData": { + "id": "Daydream Axolotl", + }, + "value": 13829210844, + }, + { + "category": "Pet", + "configData": { + "id": "Faceling Owl", + "pt": 1, + }, + "value": 582956532, + }, + { + "category": "Pet", + "configData": { + "id": "Daydream Axolotl", + "pt": 1, + }, + "value": 1184511802, + }, + { + "category": "Pet", + "configData": { + "id": "Daydream Axolotl", + "pt": 1, + "sh": true, + }, + "value": 7238645, + }, + { + "category": "Pet", + "configData": { + "id": "Daydream Axolotl", + "pt": 2, + }, + "value": 1412444086, + }, + { + "category": "Pet", + "configData": { + "id": "Daydream Axolotl", + "sh": true, + }, + "value": 58787023, + }, + { + "category": "Pet", + "configData": { + "id": "Partypooper Dog", + "pt": 1, + }, + "value": 635435141, + }, + { + "category": "Pet", + "configData": { + "id": "Gamemaster Cat", + "pt": 1, + }, + "value": 14338825, + }, + { + "category": "Pet", + "configData": { + "id": "Tripod Dominus", + "pt": 1, + }, + "value": 2315834700, + }, + { + "category": "Pet", + "configData": { + "id": "Gamemaster Cat", + }, + "value": 229239468, + }, + { + "category": "Pet", + "configData": { + "id": "Smiley Penguin", + }, + "value": 1021287945, + }, + { + "category": "Pet", + "configData": { + "id": "Smiley Penguin", + "pt": 1, + }, + "value": 62566046, + }, + { + "category": "Pet", + "configData": { + "id": "Smiley Penguin", + "pt": 2, + }, + "value": 66233463, + }, + { + "category": "Pet", + "configData": { + "id": "Partypooper Dog", + "pt": 2, + }, + "value": 648166472, + }, + { + "category": "Pet", + "configData": { + "id": "Faceling Owl", + "pt": 2, + }, + "value": 735983123, + }, + { + "category": "Pet", + "configData": { + "id": "Faceling Owl", + "sh": true, + }, + "value": 27640437, + }, + { + "category": "Pet", + "configData": { + "id": "Tripod Dominus", + "pt": 2, + }, + "value": 2311469849, + }, + { + "category": "Pet", + "configData": { + "id": "Tripod Dominus", + "sh": true, + }, + "value": 151155372, + }, + { + "category": "Pet", + "configData": { + "id": "Daydream Axolotl", + "pt": 2, + "sh": true, + }, + "value": 10244127, + }, + { + "category": "Pet", + "configData": { + "id": "Huge 1x1x1x1", + }, + "value": 9098, + }, + { + "category": "Pet", + "configData": { + "id": "1x1x1x1", + }, + "value": 63588964, + }, + { + "category": "Pet", + "configData": { + "id": "Partypooper Dog", + "pt": 1, + "sh": true, + }, + "value": 3017582, + }, + { + "category": "Pet", + "configData": { + "id": "Gamemaster Cat", + "pt": 2, + }, + "value": 15041468, + }, + { + "category": "Pet", + "configData": { + "id": "Tripod Dominus", + "pt": 2, + "sh": true, + }, + "value": 11367309, + }, + { + "category": "Pet", + "configData": { + "id": "Gamemaster Cat", + "pt": 2, + "sh": true, + }, + "value": 65325, + }, + { + "category": "Pet", + "configData": { + "id": "Partypooper Dog", + "sh": true, + }, + "value": 37400883, + }, + { + "category": "Pet", + "configData": { + "id": "1x1x1x1", + "pt": 2, + }, + "value": 4061762, + }, + { + "category": "Pet", + "configData": { + "id": "Faceling Owl", + "pt": 1, + "sh": true, + }, + "value": 3603469, + }, + { + "category": "Pet", + "configData": { + "id": "Faceling Owl", + "pt": 2, + "sh": true, + }, + "value": 5227548, + }, + { + "category": "Pet", + "configData": { + "id": "Huge 1x1x1x1", + "pt": 2, + }, + "value": 1119, + }, + { + "category": "Pet", + "configData": { + "id": "Gamemaster Cat", + "sh": true, + }, + "value": 867276, + }, + { + "category": "Pet", + "configData": { + "id": "Huge 1x1x1x1", + "pt": 1, + }, + "value": 3819, + }, + { + "category": "Pet", + "configData": { + "id": "Tripod Dominus", + "pt": 1, + "sh": true, + }, + "value": 9796202, + }, + { + "category": "Pet", + "configData": { + "id": "1x1x1x1", + "pt": 1, + }, + "value": 4070279, + }, + { + "category": "Pet", + "configData": { + "id": "Partypooper Dog", + "pt": 2, + "sh": true, + }, + "value": 3367903, + }, + { + "category": "Pet", + "configData": { + "id": "Smiley Penguin", + "sh": true, + }, + "value": 3376763, + }, + { + "category": "Pet", + "configData": { + "id": "Smiley Penguin", + "pt": 1, + "sh": true, + }, + "value": 439873, + }, + { + "category": "Pet", + "configData": { + "id": "Huge 1x1x1x1", + "sh": true, + }, + "value": 244, + }, + { + "category": "Pet", + "configData": { + "id": "Huge 1x1x1x1", + "pt": 2, + "sh": true, + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Smiley Penguin", + "pt": 2, + "sh": true, + }, + "value": 326651, + }, + { + "category": "Pet", + "configData": { + "id": "1x1x1x1", + "sh": true, + }, + "value": 269078, + }, + { + "category": "Pet", + "configData": { + "id": "Gamemaster Cat", + "pt": 1, + "sh": true, + }, + "value": 96115, + }, + { + "category": "Pet", + "configData": { + "id": "Huge 1x1x1x1", + "pt": 1, + "sh": true, + }, + "value": 51, + }, + { + "category": "Pet", + "configData": { + "id": "1x1x1x1", + "pt": 1, + "sh": true, + }, + "value": 20427, + }, + { + "category": "Pet", + "configData": { + "id": "1x1x1x1", + "pt": 2, + "sh": true, + }, + "value": 16149, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Faceling Owl", + "pt": 2, + }, + "value": 8525, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Faceling Owl", + }, + "value": 85956, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Daydream Axolotl", + }, + "value": 115797, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Partypooper Dog", + }, + "value": 84401, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gamemaster Cat", + }, + "value": 34854, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Smiley Penguin", + }, + "value": 49786, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tripod Dominus", + }, + "value": 54740, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Daydream Axolotl", + "pt": 2, + }, + "value": 2534, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Daydream Axolotl", + "pt": 1, + }, + "value": 5723, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Faceling Owl", + "pt": 1, + }, + "value": 28053, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Daydream Axolotl", + "sh": true, + }, + "value": 2587, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gamemaster Cat", + "pt": 1, + }, + "value": 10638, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Smiley Penguin", + }, + "value": 2281, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gamemaster Cat", + "pt": 2, + }, + "value": 3556, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Partypooper Dog", + "pt": 2, + "sh": true, + }, + "value": 31, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tripod Dominus", + "pt": 1, + }, + "value": 19126, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Smiley Penguin", + "pt": 1, + }, + "value": 2333, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Partypooper Dog", + "pt": 1, + }, + "value": 3842, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Partypooper Dog", + "sh": true, + }, + "value": 1809, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Smiley Penguin", + "pt": 2, + }, + "value": 881, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sprout Wyrmling", + "pt": 2, + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gamemaster Cat", + "pt": 1, + }, + "value": 223, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Partypooper Dog", + "pt": 2, + }, + "value": 1253, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Smiley Penguin", + "sh": true, + }, + "value": 1081, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tripod Dominus", + "pt": 2, + }, + "value": 5473, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gamemaster Cat", + }, + "value": 4726, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Smiley Penguin", + "pt": 1, + "sh": true, + }, + "value": 42, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Daydream Axolotl", + "pt": 2, + "sh": true, + }, + "value": 62, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Daydream Axolotl", + "pt": 1, + "sh": true, + }, + "value": 124, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Partypooper Dog", + "pt": 1, + "sh": true, + }, + "value": 95, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Smiley Penguin", + "pt": 1, + }, + "value": 821, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Smiley Penguin", + "pt": 2, + "sh": true, + }, + "value": 18, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gamemaster Cat", + "pt": 2, + }, + "value": 59, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan 1x1x1x1", + }, + "value": 187, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Smiley Penguin", + "pt": 2, + }, + "value": 227, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan 1x1x1x1", + "pt": 2, + }, + "value": 4, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gamemaster Cat", + "sh": true, + }, + "value": 11, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan 1x1x1x1", + "pt": 1, + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Fluffy Cat", + "pt": 2, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gamemaster Cat", + "pt": 1, + "sh": true, + }, + "value": 2, + }, + { + "category": "Currency", + "configData": { + "id": "SoccerOrbs", + }, + "value": 4438323750, + }, + { + "category": "Currency", + "configData": { + "id": "SoccerCoins", + }, + "value": 3957456782477247, + }, + { + "category": "Lootbox", + "configData": { + "id": "Soccer Gift", + }, + "value": 72530558, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Jaguar", + }, + "value": 1420236, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Elephant", + "pt": 1, + }, + "value": 2051, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Griffin", + "pt": 2, + }, + "value": 490816, + }, + { + "category": "Pet", + "configData": { + "id": "Referee Zebra", + "pt": 1, + }, + "value": 2468361149, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Elephant", + }, + "value": 1196578, + }, + { + "category": "Pet", + "configData": { + "id": "Coach Chihuahua", + }, + "value": 8690560587, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Dog", + "pt": 2, + }, + "value": 276177, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Elephant", + }, + "value": 4051, + }, + { + "category": "Pet", + "configData": { + "id": "Jersey Seal", + }, + "value": 490294914, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Griffin", + }, + "value": 4257542, + }, + { + "category": "Pet", + "configData": { + "id": "Jersey Seal", + "pt": 1, + "sh": true, + }, + "value": 234157, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Cat", + "pt": 2, + }, + "value": 253363, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Cat", + }, + "value": 2846634, + }, + { + "category": "Pet", + "configData": { + "id": "Coach Chihuahua", + "pt": 2, + }, + "value": 521526425, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Dog", + }, + "value": 3083192, + }, + { + "category": "Pet", + "configData": { + "id": "Referee Zebra", + "pt": 2, + }, + "value": 2765266129, + }, + { + "category": "Pet", + "configData": { + "id": "Jersey Seal", + "sh": true, + }, + "value": 1424795, + }, + { + "category": "Pet", + "configData": { + "id": "Referee Zebra", + }, + "value": 43032074448, + }, + { + "category": "Pet", + "configData": { + "id": "Jersey Seal", + "pt": 1, + }, + "value": 24272068, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Cat", + "pt": 1, + }, + "value": 279297, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Red Panda", + "pt": 2, + }, + "value": 403216, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Red Panda", + }, + "value": 3132818, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Dog", + "pt": 1, + }, + "value": 300944, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Red Panda", + "pt": 1, + }, + "value": 337834, + }, + { + "category": "Pet", + "configData": { + "id": "Goalie Monkey", + }, + "value": 31668943, + }, + { + "category": "Pet", + "configData": { + "id": "Jersey Seal", + "pt": 2, + }, + "value": 35884318, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Jaguar", + "pt": 2, + }, + "value": 157920, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Elephant", + "pt": 2, + }, + "value": 734, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Jaguar", + "pt": 1, + }, + "value": 159845, + }, + { + "category": "Pet", + "configData": { + "id": "Coach Chihuahua", + "pt": 1, + }, + "value": 451107034, + }, + { + "category": "Pet", + "configData": { + "id": "Vapor Cat", + }, + "value": 27669, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Trophy Dragon", + }, + "value": 3413897, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Griffin", + "pt": 1, + }, + "value": 363238, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Elephant", + "sh": true, + }, + "value": 7389, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Elephant", + "pt": 1, + }, + "value": 144232, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Cat", + }, + "value": 10026, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Cat", + "sh": true, + }, + "value": 20892, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Red Panda", + "pt": 2, + "sh": true, + }, + "value": 4362, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Trophy Dragon", + }, + "value": 3471, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Elephant", + "pt": 2, + }, + "value": 190824, + }, + { + "category": "Pet", + "configData": { + "id": "Vapor Wolf", + }, + "value": 7231, + }, + { + "category": "Pet", + "configData": { + "id": "Vapor Fox", + }, + "value": 18972, + }, + { + "category": "Pet", + "configData": { + "id": "Referee Zebra", + "sh": true, + }, + "value": 137744990, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Soccerball Trophy Angelus", + }, + "value": 523, + }, + { + "category": "Pet", + "configData": { + "id": "Coach Chihuahua", + "sh": true, + }, + "value": 24506389, + }, + { + "category": "Pet", + "configData": { + "id": "Goalie Monkey", + "pt": 2, + }, + "value": 3153458, + }, + { + "category": "Pet", + "configData": { + "id": "Goalie Monkey", + "sh": true, + }, + "value": 181868, + }, + { + "category": "Pet", + "configData": { + "id": "Vapor Fox", + "pt": 2, + }, + "value": 733, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Cat", + "pt": 2, + "sh": true, + }, + "value": 3631, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Jaguar", + "sh": true, + }, + "value": 10596, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Griffin", + "sh": true, + }, + "value": 19078, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Trophy Dragon", + "pt": 2, + }, + "value": 287183, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Elephant", + "pt": 2, + "sh": true, + }, + "value": 10, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Red Panda", + "sh": true, + }, + "value": 16761, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Dog", + "sh": true, + }, + "value": 20113, + }, + { + "category": "Pet", + "configData": { + "id": "Coach Chihuahua", + "pt": 1, + "sh": true, + }, + "value": 1769729, + }, + { + "category": "Pet", + "configData": { + "id": "Vapor Cat", + "pt": 2, + }, + "value": 1044, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vapor Cat", + }, + "value": 1073, + }, + { + "category": "Pet", + "configData": { + "id": "Vapor Cat", + "pt": 2, + "sh": true, + }, + "value": 26, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vapor Wolf", + }, + "value": 439, + }, + { + "category": "Pet", + "configData": { + "id": "Vapor Fox", + "sh": true, + }, + "value": 454, + }, + { + "category": "Pet", + "configData": { + "id": "Vapor Wolf", + "pt": 2, + }, + "value": 284, + }, + { + "category": "Pet", + "configData": { + "id": "Vapor Cat", + "sh": true, + }, + "value": 645, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Elephant", + "sh": true, + }, + "value": 166, + }, + { + "category": "Consumable", + "configData": { + "id": "Golden Cleats", + "tn": 1, + }, + "value": 76485, + }, + { + "category": "Consumable", + "configData": { + "id": "Cleats", + "tn": 1, + }, + "value": 2511703, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Soccerball Griffin", + }, + "value": 83, + }, + { + "category": "Pet", + "configData": { + "id": "Vapor Wolf", + "sh": true, + }, + "value": 178, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Cat", + "pt": 2, + }, + "value": 353, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vapor Cat", + "sh": true, + }, + "value": 46, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Trophy Dragon", + "sh": true, + }, + "value": 16987, + }, + { + "category": "Pet", + "configData": { + "id": "Jersey Seal", + "pt": 2, + "sh": true, + }, + "value": 152729, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Soccerball Griffin", + "pt": 1, + }, + "value": 40, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 63", + }, + "value": 98838, + }, + { + "category": "Pet", + "configData": { + "id": "Coach Chihuahua", + "pt": 2, + "sh": true, + }, + "value": 2269047, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Dog", + "pt": 2, + "sh": true, + }, + "value": 3548, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Cat", + "sh": true, + }, + "value": 409, + }, + { + "category": "Pet", + "configData": { + "id": "Goalie Monkey", + "pt": 1, + }, + "value": 2572928, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Jaguar", + "pt": 1, + "sh": true, + }, + "value": 1884, + }, + { + "category": "Egg", + "configData": { + "id": "Trophy Soccer Egg", + }, + "value": 406461, + }, + { + "category": "Pet", + "configData": { + "id": "Referee Zebra", + "pt": 1, + "sh": true, + }, + "value": 10013588, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Trophy Dragon", + "pt": 2, + }, + "value": 135, + }, + { + "category": "Pet", + "configData": { + "id": "Referee Zebra", + "pt": 2, + "sh": true, + }, + "value": 13481702, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Cat", + "pt": 1, + "sh": true, + }, + "value": 3611, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Elephant", + "pt": 1, + "sh": true, + }, + "value": 37, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Vapor Dragon", + }, + "value": 91, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Soccerball Trophy Angelus", + "pt": 2, + }, + "value": 21, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Trophy Dragon", + "sh": true, + }, + "value": 151, + }, + { + "category": "Pet", + "configData": { + "id": "Goalie Monkey", + "pt": 2, + "sh": true, + }, + "value": 9135, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Elephant", + "pt": 2, + "sh": true, + }, + "value": 2218, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Elephant", + "pt": 1, + "sh": true, + }, + "value": 1336, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jersey Seal", + "pt": 1, + }, + "value": 8358, + }, + { + "category": "Pet", + "configData": { + "id": "Vapor Wolf", + "pt": 2, + "sh": true, + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Vapor Phoenix", + }, + "value": 15, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vapor Wolf", + "pt": 2, + "sh": true, + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Griffin", + "pt": 2, + "sh": true, + }, + "value": 4741, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Soccerball Griffin", + "pt": 2, + }, + "value": 12, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Red Panda", + "pt": 1, + "sh": true, + }, + "value": 2711, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Griffin", + "pt": 1, + "sh": true, + }, + "value": 2543, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Dog", + "pt": 1, + "sh": true, + }, + "value": 3473, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Trophy Dragon", + "pt": 2, + "sh": true, + }, + "value": 852, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Cat", + "pt": 2, + "sh": true, + }, + "value": 14, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vapor Wolf", + "sh": true, + }, + "value": 24, + }, + { + "category": "Pet", + "configData": { + "id": "Vapor Fox", + "pt": 2, + "sh": true, + }, + "value": 17, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Jaguar", + "pt": 2, + "sh": true, + }, + "value": 2033, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Soccerball Trophy Angelus", + "sh": true, + }, + "value": 11, + }, + { + "category": "Pet", + "configData": { + "id": "Goalie Monkey", + "pt": 1, + "sh": true, + }, + "value": 14648, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Trophy Dragon", + "pt": 1, + }, + "value": 447400, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Trophy Dragon", + "pt": 2, + "sh": true, + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vapor Wolf", + "pt": 2, + }, + "value": 26, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jersey Seal", + }, + "value": 34383, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Trophy Angelus", + }, + "value": 2079814, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Trophy Angelus", + "pt": 2, + }, + "value": 94010, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Trophy Angelus", + "pt": 1, + }, + "value": 263429, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Soccerball Cat", + }, + "value": 691, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Trophy Angelus", + "sh": true, + }, + "value": 5061, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Trophy Dragon", + "pt": 1, + "sh": true, + }, + "value": 1300, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Soccerball Cat", + "pt": 2, + }, + "value": 61, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Referee Zebra", + }, + "value": 20360, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vapor Cat", + "pt": 2, + }, + "value": 27, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Soccerball Cat", + "pt": 1, + }, + "value": 199, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Vapor Dragon", + "pt": 2, + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Trophy Angelus", + "pt": 2, + "sh": true, + }, + "value": 326, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jersey Seal", + "sh": true, + }, + "value": 558, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jersey Seal", + "pt": 2, + }, + "value": 2074, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Referee Zebra", + "pt": 1, + }, + "value": 5478, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Referee Zebra", + "sh": true, + }, + "value": 419, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Referee Zebra", + "pt": 2, + }, + "value": 1467, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jersey Seal", + "pt": 1, + "sh": true, + }, + "value": 127, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Soccerball Cat", + "sh": true, + }, + "value": 13, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Referee Zebra", + "pt": 1, + "sh": true, + }, + "value": 97, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jersey Seal", + "pt": 2, + "sh": true, + }, + "value": 41, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Soccerball Trophy Angelus", + }, + "value": 82, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Soccerball Trophy Angelus", + "pt": 1, + }, + "value": 24, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Referee Zebra", + "pt": 2, + "sh": true, + }, + "value": 19, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Trophy Angelus", + "pt": 1, + "sh": true, + }, + "value": 363, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Soccerball Griffin", + "sh": true, + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Soccerball Trophy Angelus", + "sh": true, + }, + "value": 3, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Soccerball Trophy Angelus", + "pt": 2, + }, + "value": 8, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Soccerball Cat", + "pt": 1, + "sh": true, + }, + "value": 3, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Soccerball Trophy Angelus", + "pt": 2, + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Vapor Phoenix", + "pt": 2, + }, + "value": 1, + }, + ], + "status": "ok", +} +`; + +exports[`Pet Simulator Public Live API Test - Changing Items Get RAP 1`] = ` +{ + "data": [ + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 58", + }, + "value": 165287360, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hot Cocoa Cow", + }, + "value": 19608459, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gingerbread Lion", + }, + "value": 21587285, + }, + { + "category": "Pet", + "configData": { + "id": "Celestial Dragon", + }, + "value": 24878570, + }, + { + "category": "Pet", + "configData": { + "id": "Sleigh Axolotl", + }, + "value": 22038603, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Basketball Corgi", + }, + "value": 27141388, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghostly Dragon", + }, + "value": 31902522, + }, + { + "category": "Pet", + "configData": { + "id": "Merry Mule", + }, + "value": 1777, + }, + { + "category": "Misc", + "configData": { + "id": "Lockpick C", + }, + "value": 301001, + }, + { + "category": "Pet", + "configData": { + "id": "Cappuccina Brainrot", + }, + "value": 7244497, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Mining Penguin", + }, + "value": 40196557, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Starry Eye Bunny", + }, + "value": 21856022, + }, + { + "category": "Misc", + "configData": { + "id": "Lockpick B", + }, + "value": 123223, + }, + { + "category": "Lootbox", + "configData": { + "id": "Candycane Gift", + }, + "value": 196016, + }, + { + "category": "Egg", + "configData": { + "id": "Basketball Egg", + }, + "value": 188905035, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holiday Owl", + }, + "value": 22026034, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cupcake Pegasus", + }, + "value": 22371883, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fiddlefern Cat", + "pt": 1, + }, + "value": 24076936, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hot Cocoa Bear", + "pt": 1, + }, + "value": 23008579, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Super Coral Axolotl", + }, + "value": 74693143, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evil Raven", + }, + "value": 18840349, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stingray", + }, + "value": 19198188, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skeleton Snake", + }, + "value": 19494225, + }, + { + "category": "Misc", + "configData": { + "id": "Void Spinny Wheel Ticket", + }, + "value": 22212, + }, + { + "category": "Misc", + "configData": { + "id": "Fantasy Spinny Wheel Ticket", + }, + "value": 19628, + }, + { + "category": "Misc", + "configData": { + "id": "MVP Key Upper Half", + }, + "value": 484257, + }, + { + "category": "Lootbox", + "configData": { + "id": "Retro Pack", + }, + "value": 311005, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hot Cocoa Bear", + }, + "value": 21352092, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Festive Seal", + }, + "value": 22948979, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fiddlefern Cat", + }, + "value": 26622991, + }, + { + "category": "Ultimate", + "configData": { + "id": "Chest Spell", + }, + "value": 131637987, + }, + { + "category": "Pet", + "configData": { + "id": "Krampus", + }, + "value": 2851, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holiday Owl", + "pt": 1, + }, + "value": 26356703, + }, + { + "category": "Misc", + "configData": { + "id": "Insta Plant Capsule", + }, + "value": 19969, + }, + { + "category": "Misc", + "configData": { + "id": "Mini Chest", + }, + "value": 28288, + }, + { + "category": "Enchant", + "configData": { + "id": "Criticals", + "tn": 10, + }, + "value": 1206787, + }, + { + "category": "Enchant", + "configData": { + "id": "Treasure Hunter", + "tn": 10, + }, + "value": 1336940, + }, + { + "category": "Misc", + "configData": { + "id": "Rainbow Mini Chest", + }, + "value": 606602, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Temporal Owl", + }, + "value": 37766649, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holiday Owl", + "pt": 2, + }, + "value": 142866384, + }, + { + "category": "Pet", + "configData": { + "id": "Axolotl", + }, + "value": 3, + }, + { + "category": "Misc", + "configData": { + "id": "Tech Key", + }, + "value": 22578, + }, + { + "category": "Misc", + "configData": { + "id": "Large Gift Bag", + }, + "value": 10635, + }, + { + "category": "Misc", + "configData": { + "id": "MVP Key", + }, + "value": 809592, + }, + { + "category": "Lootbox", + "configData": { + "id": "Santa Gift", + }, + "value": 289560, + }, + { + "category": "Pet", + "configData": { + "id": "Blooming Axolotl", + }, + "value": 38, + }, + { + "category": "Misc", + "configData": { + "id": "Gift Bag", + }, + "value": 1981, + }, + { + "category": "Pet", + "configData": { + "id": "Blooming Axolotl", + "pt": 2, + }, + "value": 134, + }, + { + "category": "Misc", + "configData": { + "id": "Exclusive Raffle Ticket", + }, + "value": 20006072, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fiddlefern Cat", + "sh": true, + }, + "value": 119397680, + }, + { + "category": "Pet", + "configData": { + "id": "Rose Pooka", + "pt": 2, + "sh": true, + }, + "value": 1073678, + }, + { + "category": "Pet", + "configData": { + "id": "Snowflake Lattice Tiger", + }, + "value": 13062247, + }, + { + "category": "Lootbox", + "configData": { + "id": "Anime Pack", + }, + "value": 78441082, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mining Monkey", + }, + "value": 20091706, + }, + { + "category": "Pet", + "configData": { + "id": "Anime Wolf", + }, + "value": 15868642, + }, + { + "category": "Pet", + "configData": { + "id": "Anime Lemur", + }, + "value": 8658858, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stingray", + "pt": 1, + }, + "value": 24474861, + }, + { + "category": "Pet", + "configData": { + "id": "Evergreen Unicorn", + "pt": 2, + }, + "value": 196, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hippomint", + "sh": true, + }, + "value": 160853661, + }, + { + "category": "Misc", + "configData": { + "id": "Daycare Slot Voucher", + }, + "value": 9533, + }, + { + "category": "Pet", + "configData": { + "id": "Grinch Cat", + "sh": true, + }, + "value": 113344004, + }, + { + "category": "Misc", + "configData": { + "id": "MVP Key Lower Half", + }, + "value": 9749, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Griffin", + "pt": 1, + }, + "value": 21769790, + }, + { + "category": "Seed", + "configData": { + "id": "Diamond", + }, + "value": 4986, + }, + { + "category": "Pet", + "configData": { + "id": "Merry Mule", + "pt": 1, + }, + "value": 19034, + }, + { + "category": "Ultimate", + "configData": { + "id": "Nightmare", + }, + "value": 1009165293, + }, + { + "category": "Ultimate", + "configData": { + "id": "UFO", + }, + "value": 509666929, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Basket Bunny", + }, + "value": 20417959, + }, + { + "category": "Tower", + "configData": { + "id": "Dino Corgi", + }, + "value": 653185, + }, + { + "category": "Pet", + "configData": { + "id": "Scroll Dragon", + "pt": 1, + }, + "value": 17, + }, + { + "category": "Tower", + "configData": { + "id": "Pinata Dragon", + }, + "value": 813621, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blue Lucky Block", + }, + "value": 29573388, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bear", + }, + "value": 311250882, + }, + { + "category": "Lootbox", + "configData": { + "id": "Nightmare Pack", + }, + "value": 3093042, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cosmic Axolotl", + }, + "value": 417561481, + }, + { + "category": "Pet", + "configData": { + "id": "Holly Capybara", + }, + "value": 24, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Horse", + }, + "value": 21239470, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hippomint", + "pt": 1, + }, + "value": 32526487, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dominus Lucki", + }, + "value": 728439214, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pop Cat", + }, + "value": 3104979191, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Jaguar", + }, + "value": 34796927, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Punksky", + }, + "value": 26984066, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bison", + "pt": 1, + }, + "value": 28528233, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sorcerer Bear", + "pt": 1, + }, + "value": 48639772, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Temporal Owl", + "pt": 1, + }, + "value": 30101182, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Koi Fish", + "sh": true, + }, + "value": 140518529, + }, + { + "category": "Pet", + "configData": { + "id": "Petal Pixie", + "pt": 2, + }, + "value": 70, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Balloon Axolotl", + }, + "value": 760205832, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Knight Slime", + }, + "value": 58188251, + }, + { + "category": "Misc", + "configData": { + "id": "Arcade Token", + }, + "value": 16562, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Cube Penguin", + }, + "value": 8402894, + }, + { + "category": "Enchant", + "configData": { + "id": "Tap Power", + "tn": 6, + }, + "value": 38, + }, + { + "category": "Pet", + "configData": { + "id": "Pajamas Shark", + }, + "value": 68, + }, + { + "category": "Misc", + "configData": { + "id": "Lucky Raid Boss Key", + }, + "value": 32522, + }, + { + "category": "Pet", + "configData": { + "id": "Cupcake Hamster", + }, + "value": 30, + }, + { + "category": "Pet", + "configData": { + "id": "Phoenix", + }, + "value": 77, + }, + { + "category": "Pet", + "configData": { + "id": "Evergreen Unicorn", + "pt": 1, + }, + "value": 132, + }, + { + "category": "Pet", + "configData": { + "id": "Kitsune Fox", + }, + "value": 11, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Bee", + }, + "value": 49, + }, + { + "category": "Pet", + "configData": { + "id": "Error Cat", + }, + "value": 575, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Axolotl", + }, + "value": 44, + }, + { + "category": "Pet", + "configData": { + "id": "Umbrella Bear", + "sh": true, + }, + "value": 93, + }, + { + "category": "Pet", + "configData": { + "id": "North Pole Unicorn", + }, + "value": 18, + }, + { + "category": "Pet", + "configData": { + "id": "Holly Corgi", + }, + "value": 21, + }, + { + "category": "Pet", + "configData": { + "id": "Storm Axolotl Ball", + }, + "value": 54, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Hedgehog", + }, + "value": 23, + }, + { + "category": "Pet", + "configData": { + "id": "Pink Poodle", + }, + "value": 26, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Angelus", + }, + "value": 117, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Chick", + }, + "value": 19, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Griffin", + }, + "value": 78, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Angelus", + "pt": 1, + }, + "value": 240, + }, + { + "category": "Pet", + "configData": { + "id": "Basket Bunny", + "pt": 1, + }, + "value": 6821, + }, + { + "category": "Pet", + "configData": { + "id": "Coconut Crab", + }, + "value": 50, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Bunny", + }, + "value": 38, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Axolotl", + }, + "value": 50, + }, + { + "category": "Pet", + "configData": { + "id": "Beagle", + }, + "value": 100, + }, + { + "category": "Pet", + "configData": { + "id": "Floatie Cat", + }, + "value": 44, + }, + { + "category": "Pet", + "configData": { + "id": "Sandcastle Cat", + }, + "value": 3, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Cat", + }, + "value": 41, + }, + { + "category": "Pet", + "configData": { + "id": "Doll Cat", + "pt": 1, + }, + "value": 2013, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Bunny", + }, + "value": 32, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Green Cobra", + }, + "value": 20079275, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Cocoa Cow", + }, + "value": 12, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 56", + }, + "value": 218564310, + }, + { + "category": "Pet", + "configData": { + "id": "Rose Garden Cat", + }, + "value": 7, + }, + { + "category": "Potion", + "configData": { + "id": "Lucky", + "tn": 2, + }, + "value": 38, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sleigh Axolotl", + }, + "value": 73599837, + }, + { + "category": "Pet", + "configData": { + "id": "Evergreen Unicorn", + }, + "value": 76, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Cat", + }, + "value": 36, + }, + { + "category": "Potion", + "configData": { + "id": "Damage", + "tn": 6, + }, + "value": 42, + }, + { + "category": "Misc", + "configData": { + "id": "Giant Coin Jar", + }, + "value": 5, + }, + { + "category": "Misc", + "configData": { + "id": "Fruit Bundle", + }, + "value": 96, + }, + { + "category": "Misc", + "configData": { + "id": "Toy Bundle", + }, + "value": 97, + }, + { + "category": "Potion", + "configData": { + "id": "Diamonds", + "tn": 3, + }, + "value": 30, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Snowman", + }, + "value": 15, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Bear", + }, + "value": 10, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Squirrel", + "pt": 2, + }, + "value": 19, + }, + { + "category": "Pet", + "configData": { + "id": "Love Corgi", + }, + "value": 857827, + }, + { + "category": "Pet", + "configData": { + "id": "Cloud Cat", + "pt": 2, + }, + "value": 75, + }, + { + "category": "Pet", + "configData": { + "id": "Baby Kitten", + "pt": 1, + }, + "value": 3101, + }, + { + "category": "Pet", + "configData": { + "id": "Demon Serpents", + "pt": 2, + }, + "value": 1065, + }, + { + "category": "Consumable", + "configData": { + "id": "Halloween Lucky Egg", + "tn": 1, + }, + "value": 3365, + }, + { + "category": "Pet", + "configData": { + "id": "Gingerbread Lion", + }, + "value": 48, + }, + { + "category": "Pet", + "configData": { + "id": "Petal Pixie", + "pt": 2, + "sh": true, + }, + "value": 86, + }, + { + "category": "Enchant", + "configData": { + "id": "Tap Power", + "tn": 2, + }, + "value": 56, + }, + { + "category": "Misc", + "configData": { + "id": "Nametag", + }, + "value": 4, + }, + { + "category": "Enchant", + "configData": { + "id": "Diamonds", + "tn": 4, + }, + "value": 63, + }, + { + "category": "Enchant", + "configData": { + "id": "Exotic Pet", + "tn": 1, + }, + "value": 577, + }, + { + "category": "Enchant", + "configData": { + "id": "Treasure Hunter", + "tn": 7, + }, + "value": 850, + }, + { + "category": "Enchant", + "configData": { + "id": "Coins", + "tn": 7, + }, + "value": 43296, + }, + { + "category": "Enchant", + "configData": { + "id": "Tap Power", + "tn": 4, + }, + "value": 28, + }, + { + "category": "Misc", + "configData": { + "id": "Spinny Wheel Ticket", + }, + "value": 3219, + }, + { + "category": "Enchant", + "configData": { + "id": "Happy Pets", + "tn": 1, + }, + "value": 27, + }, + { + "category": "Enchant", + "configData": { + "id": "Strong Pets", + "tn": 7, + }, + "value": 455, + }, + { + "category": "Potion", + "configData": { + "id": "Walkspeed", + "tn": 3, + }, + "value": 99, + }, + { + "category": "Enchant", + "configData": { + "id": "Tap Power", + "tn": 7, + }, + "value": 751, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Polar Bear", + "pt": 1, + }, + "value": 81, + }, + { + "category": "Fruit", + "configData": { + "id": "Rainbow", + }, + "value": 50, + }, + { + "category": "Fruit", + "configData": { + "id": "Pineapple", + }, + "value": 51, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Festive Seal", + "pt": 1, + }, + "value": 25727933, + }, + { + "category": "Misc", + "configData": { + "id": "Diamonds Flag", + }, + "value": 32, + }, + { + "category": "Potion", + "configData": { + "id": "Lucky", + "tn": 4, + }, + "value": 31, + }, + { + "category": "Enchant", + "configData": { + "id": "Coins", + "tn": 3, + }, + "value": 95, + }, + { + "category": "Enchant", + "configData": { + "id": "Diamonds", + "tn": 3, + }, + "value": 95, + }, + { + "category": "Potion", + "configData": { + "id": "Damage", + "tn": 4, + }, + "value": 31, + }, + { + "category": "Enchant", + "configData": { + "id": "Strong Pets", + "tn": 4, + }, + "value": 28, + }, + { + "category": "Enchant", + "configData": { + "id": "Coins", + "tn": 4, + }, + "value": 37, + }, + { + "category": "Misc", + "configData": { + "id": "Basic Coin Jar", + }, + "value": 3, + }, + { + "category": "Pet", + "configData": { + "id": "Evergreen Unicorn", + "sh": true, + }, + "value": 193, + }, + { + "category": "Pet", + "configData": { + "id": "Pajamas Shark", + "sh": true, + }, + "value": 21, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Bunny", + "pt": 1, + }, + "value": 57, + }, + { + "category": "Pet", + "configData": { + "id": "Lit Loris", + }, + "value": 70, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Minotaur", + "pt": 1, + "sh": true, + }, + "value": 346, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Minotaur", + "pt": 2, + }, + "value": 51, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Bunny", + "sh": true, + }, + "value": 73, + }, + { + "category": "Pet", + "configData": { + "id": "Pajamas Shark", + "pt": 2, + }, + "value": 44, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mining Penguin", + }, + "value": 19400253, + }, + { + "category": "Pet", + "configData": { + "id": "Dog", + }, + "value": 4, + }, + { + "category": "Pet", + "configData": { + "id": "Blooming Axolotl", + "pt": 2, + "sh": true, + }, + "value": 386, + }, + { + "category": "Pet", + "configData": { + "id": "Mermaid Cat", + }, + "value": 52, + }, + { + "category": "Pet", + "configData": { + "id": "Mantis Shrimp", + }, + "value": 43, + }, + { + "category": "Pet", + "configData": { + "id": "Umbrella Dog", + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Goldfish", + }, + "value": 11, + }, + { + "category": "Pet", + "configData": { + "id": "Mystical Fox", + }, + "value": 60, + }, + { + "category": "Pet", + "configData": { + "id": "Umbrella Cat", + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "Chimpanzee", + }, + "value": 5288, + }, + { + "category": "Card", + "configData": { + "id": "Gamer Shiba Card", + "pt": 2, + }, + "value": 4053, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Crab", + }, + "value": 20784839, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Balloon Cat", + }, + "value": 1129177340, + }, + { + "category": "Pet", + "configData": { + "id": "Blooming Axolotl", + "pt": 1, + "sh": true, + }, + "value": 121, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gargoyle Dragon", + "pt": 2, + }, + "value": 4015190893, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gargoyle Dragon", + }, + "value": 1057022219, + }, + { + "category": "Misc", + "configData": { + "id": "Mini Pinata", + }, + "value": 20180, + }, + { + "category": "Charm", + "configData": { + "id": "XP", + "tn": 1, + }, + "value": 125930, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fossil Dragon", + }, + "value": 30862279, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snow Globe Hamster", + }, + "value": 373788345, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki", + }, + "value": 800373766, + }, + { + "category": "Misc", + "configData": { + "id": "Void Key", + }, + "value": 49328, + }, + { + "category": "Lootbox", + "configData": { + "id": "Ghostly Pack", + }, + "value": 71521660, + }, + { + "category": "Pet", + "configData": { + "id": "Bunny", + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Arcade Cat", + }, + "value": 551676964, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Samurai Dragon", + }, + "value": 421857205, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Griffin", + }, + "value": 18649665, + }, + { + "category": "Pet", + "configData": { + "id": "Pajamas Shark", + "pt": 1, + }, + "value": 27, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Quantum Agony", + }, + "value": 227178917, + }, + { + "category": "Charm", + "configData": { + "id": "Royalty", + "tn": 1, + }, + "value": 5002210, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Arcade Angelus", + }, + "value": 83281847, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Fox", + "pt": 1, + }, + "value": 24618722, + }, + { + "category": "Pet", + "configData": { + "id": "Rose Garden Cat", + "pt": 2, + }, + "value": 20, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Angelus", + "pt": 2, + }, + "value": 327, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Telescope Owl", + }, + "value": 24630500, + }, + { + "category": "Pet", + "configData": { + "id": "Grinch Cat", + }, + "value": 19459150, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Bee", + }, + "value": 25613347, + }, + { + "category": "Misc", + "configData": { + "id": "Shiny Flag", + }, + "value": 972, + }, + { + "category": "Misc", + "configData": { + "id": "Booth Slot Voucher", + }, + "value": 38003, + }, + { + "category": "Pet", + "configData": { + "id": "Petal Pixie", + "sh": true, + }, + "value": 41, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pajamas Shark", + }, + "value": 27408183, + }, + { + "category": "Pet", + "configData": { + "id": "Blooming Axolotl", + "pt": 1, + }, + "value": 31, + }, + { + "category": "Misc", + "configData": { + "id": "Fantasy Key", + }, + "value": 49977, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snowflake Dominus", + "pt": 1, + }, + "value": 54902517, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gingerbread Lion", + "pt": 1, + }, + "value": 28444552, + }, + { + "category": "Lootbox", + "configData": { + "id": "2024 Medium Christmas Present", + }, + "value": 30708, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Hippomint", + }, + "value": 4978871492, + }, + { + "category": "Pet", + "configData": { + "id": "Pumpkin Cat", + }, + "value": 98, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blurred Owl", + }, + "value": 23456335, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skateboard Bulldog", + }, + "value": 25351969, + }, + { + "category": "Charm", + "configData": { + "id": "Overload", + "tn": 1, + }, + "value": 4840260, + }, + { + "category": "Pet", + "configData": { + "id": "Corgi", + }, + "value": 2, + }, + { + "category": "Booth", + "configData": { + "id": "Dragon", + }, + "value": 200043, + }, + { + "category": "Pet", + "configData": { + "id": "Hi-Tech Monkey", + }, + "value": 14, + }, + { + "category": "Misc", + "configData": { + "id": "Secret Key", + }, + "value": 9130, + }, + { + "category": "Misc", + "configData": { + "id": "Crystal Key", + }, + "value": 13729, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Dominus", + "pt": 1, + }, + "value": 211550839, + }, + { + "category": "Misc", + "configData": { + "id": "Coins Flag", + }, + "value": 8, + }, + { + "category": "Pet", + "configData": { + "id": "Otter", + }, + "value": 30266089, + }, + { + "category": "Fruit", + "configData": { + "id": "Apple", + }, + "value": 41, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Meebo in a Spaceship", + }, + "value": 52629972, + }, + { + "category": "Charm", + "configData": { + "id": "TNT", + "tn": 1, + }, + "value": 1629, + }, + { + "category": "Pet", + "configData": { + "id": "Storm Dominus", + }, + "value": 9411132, + }, + { + "category": "Pet", + "configData": { + "id": "Valkyrie Dog", + }, + "value": 7902303, + }, + { + "category": "Lootbox", + "configData": { + "id": "Arcade Egg 3", + }, + "value": 191688, + }, + { + "category": "Enchant", + "configData": { + "id": "Criticals", + "tn": 9, + }, + "value": 56724, + }, + { + "category": "Misc", + "configData": { + "id": "TNT", + }, + "value": 67, + }, + { + "category": "Misc", + "configData": { + "id": "Lockpick A", + }, + "value": 400, + }, + { + "category": "Pet", + "configData": { + "id": "Evergreen Unicorn", + "pt": 2, + "sh": true, + }, + "value": 699, + }, + { + "category": "Pet", + "configData": { + "id": "Cat", + }, + "value": 4, + }, + { + "category": "Pet", + "configData": { + "id": "Scarecrow Dog", + "pt": 1, + }, + "value": 35583, + }, + { + "category": "Misc", + "configData": { + "id": "Snowball Launcher", + }, + "value": 1464, + }, + { + "category": "Card", + "configData": { + "id": "Huge Anime Scorpion Card", + }, + "value": 8911663, + }, + { + "category": "Pet", + "configData": { + "id": "Petal Pixie", + }, + "value": 46, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Angelus", + }, + "value": 64573739, + }, + { + "category": "Misc", + "configData": { + "id": "Magnet Flag", + }, + "value": 44, + }, + { + "category": "Pet", + "configData": { + "id": "Cloud Penguin", + }, + "value": 17, + }, + { + "category": "Enchant", + "configData": { + "id": "Coins", + "tn": 8, + }, + "value": 699, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Arcade Meebo in a Spaceship", + }, + "value": 39403714, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Dog", + }, + "value": 155, + }, + { + "category": "Misc", + "configData": { + "id": "Mini Lucky Block", + }, + "value": 961, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Bunny", + "pt": 2, + }, + "value": 90, + }, + { + "category": "Pet", + "configData": { + "id": "Blossom Squirrel", + }, + "value": 20, + }, + { + "category": "Misc", + "configData": { + "id": "Breakable Sprinkler", + }, + "value": 1001, + }, + { + "category": "Enchant", + "configData": { + "id": "Coins", + "tn": 9, + }, + "value": 15477, + }, + { + "category": "Misc", + "configData": { + "id": "TNT Crate", + }, + "value": 1928, + }, + { + "category": "Misc", + "configData": { + "id": "Comet", + }, + "value": 238, + }, + { + "category": "Misc", + "configData": { + "id": "Party Box", + }, + "value": 715, + }, + { + "category": "Potion", + "configData": { + "id": "Coins", + "tn": 3, + }, + "value": 30, + }, + { + "category": "Pet", + "configData": { + "id": "Palace Pooka", + "pt": 2, + "sh": true, + }, + "value": 106149639, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Frankenpup Dog", + }, + "value": 19943479, + }, + { + "category": "Misc", + "configData": { + "id": "Flag Bundle", + }, + "value": 97, + }, + { + "category": "Misc", + "configData": { + "id": "Pink Christmas Ornament", + }, + "value": 1608, + }, + { + "category": "Potion", + "configData": { + "id": "Treasure Hunter", + "tn": 9, + }, + "value": 2004, + }, + { + "category": "Misc", + "configData": { + "id": "Millionaire Bucks", + }, + "value": 23760, + }, + { + "category": "Booth", + "configData": { + "id": "Cow", + }, + "value": 96694, + }, + { + "category": "Pet", + "configData": { + "id": "Kraken", + }, + "value": 41, + }, + { + "category": "Ultimate", + "configData": { + "id": "Tornado", + }, + "value": 6696304, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Present Dragon", + }, + "value": 45386220, + }, + { + "category": "Misc", + "configData": { + "id": "Enchant Essence", + }, + "value": 103, + }, + { + "category": "Pet", + "configData": { + "id": "Inkwell Wisp", + }, + "value": 43, + }, + { + "category": "Misc", + "configData": { + "id": "Tech Spinny Wheel Ticket", + }, + "value": 3526, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Cat", + }, + "value": 996253, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Sloth", + }, + "value": 51, + }, + { + "category": "Potion", + "configData": { + "id": "Treasure Hunter", + "tn": 8, + }, + "value": 969, + }, + { + "category": "Charm", + "configData": { + "id": "Diamonds", + "tn": 1, + }, + "value": 740, + }, + { + "category": "Lootbox", + "configData": { + "id": "Arcade Egg 2", + }, + "value": 100159, + }, + { + "category": "Pet", + "configData": { + "id": "Rose Pooka", + "sh": true, + }, + "value": 398477, + }, + { + "category": "Pet", + "configData": { + "id": "Rose Pooka", + "pt": 1, + }, + "value": 49758, + }, + { + "category": "Fruit", + "configData": { + "id": "Orange", + }, + "value": 41, + }, + { + "category": "Pet", + "configData": { + "id": "Grimoire Agony", + }, + "value": 25, + }, + { + "category": "Potion", + "configData": { + "id": "Lucky", + "tn": 6, + }, + "value": 66, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nyan Cat", + }, + "value": 500194077, + }, + { + "category": "Pet", + "configData": { + "id": "Sketch Corgi", + }, + "value": 7521772, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Deer", + "pt": 2, + }, + "value": 167, + }, + { + "category": "Misc", + "configData": { + "id": "Toy Bone", + }, + "value": 31, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Bat", + }, + "value": 11, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Immortuus", + }, + "value": 64, + }, + { + "category": "Pet", + "configData": { + "id": "Holly Capybara", + "pt": 1, + }, + "value": 53, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hacked Reaper", + "pt": 1, + }, + "value": 109651210, + }, + { + "category": "Pet", + "configData": { + "id": "Rocket Shark", + "pt": 2, + }, + "value": 2104, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Candycane Kitsune", + }, + "value": 64055544, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Candycane Shake Shark", + }, + "value": 25297997, + }, + { + "category": "Pet", + "configData": { + "id": "Strawhat Tanuki", + }, + "value": 55, + }, + { + "category": "Pet", + "configData": { + "id": "Player Panda", + "pt": 1, + }, + "value": 2184, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nutcracker Bunny", + }, + "value": 23742847, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sacred Deer", + }, + "value": 21630299, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Candycane Kitsune", + "pt": 1, + }, + "value": 62060915, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elf Golem", + }, + "value": 72480514, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Candycane Unicorn", + }, + "value": 23390868, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Royal Peacock", + }, + "value": 22958115, + }, + { + "category": "Misc", + "configData": { + "id": "Rainbow Flag", + }, + "value": 953, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Infernus", + "pt": 2, + "sh": true, + }, + "value": 1317, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Frostbyte Snowman", + }, + "value": 27439737, + }, + { + "category": "Ultimate", + "configData": { + "id": "Pet Surge", + }, + "value": 16181, + }, + { + "category": "Pet", + "configData": { + "id": "Deerserker", + }, + "value": 318, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Scarecrow Cat", + }, + "value": 56191295, + }, + { + "category": "Lootbox", + "configData": { + "id": "Arcade Egg 4", + }, + "value": 303027, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Griffin", + "pt": 2, + "sh": true, + }, + "value": 654, + }, + { + "category": "Misc", + "configData": { + "id": "Charm Hammer", + }, + "value": 9157, + }, + { + "category": "Card", + "configData": { + "id": "Anime Wolf Card", + }, + "value": 987655, + }, + { + "category": "Card", + "configData": { + "id": "Anime Lemur Card", + }, + "value": 985220, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Heartbreak Fairy", + }, + "value": 29690526, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Cat", + }, + "value": 25804727, + }, + { + "category": "Card", + "configData": { + "id": "Ghostly Bunny Card", + "pt": 2, + }, + "value": 9682752, + }, + { + "category": "Pet", + "configData": { + "id": "Rose Pooka", + "pt": 2, + }, + "value": 3262, + }, + { + "category": "Card", + "configData": { + "id": "Ghostly Fox Card", + "pt": 2, + }, + "value": 9187927, + }, + { + "category": "Card", + "configData": { + "id": "Anime Lemur Card", + "pt": 2, + }, + "value": 1892847, + }, + { + "category": "Misc", + "configData": { + "id": "Grinch-B-Gone", + }, + "value": 565, + }, + { + "category": "Pet", + "configData": { + "id": "Gingerbread Angelus", + }, + "value": 20880, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Player Fox", + }, + "value": 22167954, + }, + { + "category": "Potion", + "configData": { + "id": "Treasure Hunter", + "tn": 6, + }, + "value": 48, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Frostbyte Snowman", + "pt": 1, + }, + "value": 25832532, + }, + { + "category": "Misc", + "configData": { + "id": "Large Potion Bundle", + }, + "value": 225, + }, + { + "category": "Misc", + "configData": { + "id": "Potion Bundle", + }, + "value": 96, + }, + { + "category": "Pet", + "configData": { + "id": "Holly Capybara", + "pt": 2, + }, + "value": 33, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Cocoa Cow", + "pt": 1, + }, + "value": 17, + }, + { + "category": "Pet", + "configData": { + "id": "Huge North Pole Unicorn", + }, + "value": 24734228, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snowflake Dragon", + }, + "value": 33401197, + }, + { + "category": "Egg", + "configData": { + "id": "Huge Machine Egg 5", + }, + "value": 1416522052, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hi-Tech Tiger", + }, + "value": 101887983, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Classic Dog", + }, + "value": 136970038, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cyborg Dragon", + }, + "value": 80296439, + }, + { + "category": "Misc", + "configData": { + "id": "Toy Ball", + }, + "value": 27, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Empyrean Agony", + }, + "value": 176643920, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tech Chest Mimic", + }, + "value": 154219525, + }, + { + "category": "Pet", + "configData": { + "id": "Krampus", + "pt": 2, + }, + "value": 61018, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stealth Dragon", + "sh": true, + }, + "value": 255462687, + }, + { + "category": "Card", + "configData": { + "id": "Gamer Shiba Card", + }, + "value": 858, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jester Dog", + }, + "value": 102721533, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ice Cube Penguin", + }, + "value": 42954540, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cupcake Pegasus", + "pt": 1, + }, + "value": 25791875, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Starry Eye Bunny", + "pt": 1, + }, + "value": 29936919, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anime Scorpion", + }, + "value": 44126975, + }, + { + "category": "XPPotion", + "configData": { + "id": "Mastery", + }, + "value": 944359, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cyber Agony", + }, + "value": 43793023, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Scarecrow Dog", + "pt": 1, + }, + "value": 28122539, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spotted Elephant", + "pt": 1, + }, + "value": 23251078, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pastel Deer", + }, + "value": 23238795, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Treasure Scorpion", + }, + "value": 40250611, + }, + { + "category": "Enchant", + "configData": { + "id": "Super Shiny Hunter", + "tn": 1, + }, + "value": 10136641657, + }, + { + "category": "Pet", + "configData": { + "id": "Huge UV Kitsune", + }, + "value": 99211842, + }, + { + "category": "Potion", + "configData": { + "id": "Coins", + "tn": 7, + }, + "value": 78, + }, + { + "category": "Misc", + "configData": { + "id": "Charm Stone", + }, + "value": 19615, + }, + { + "category": "Potion", + "configData": { + "id": "Lucky", + "tn": 8, + }, + "value": 10819, + }, + { + "category": "Potion", + "configData": { + "id": "The Cocktail", + "tn": 1, + }, + "value": 140267, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hot Cocoa Bear", + "pt": 2, + }, + "value": 126758955, + }, + { + "category": "Potion", + "configData": { + "id": "Coins", + "tn": 9, + }, + "value": 983, + }, + { + "category": "Potion", + "configData": { + "id": "Damage", + "tn": 8, + }, + "value": 2465, + }, + { + "category": "Card", + "configData": { + "id": "Ghostly Bunny Card", + }, + "value": 2292803, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Elf", + }, + "value": 2981593, + }, + { + "category": "Enchant", + "configData": { + "id": "Party Time", + "tn": 1, + }, + "value": 796387948, + }, + { + "category": "Enchant", + "configData": { + "id": "Lightning", + "tn": 1, + }, + "value": 78, + }, + { + "category": "Pet", + "configData": { + "id": "Heavenly Peacock", + }, + "value": 30, + }, + { + "category": "Card", + "configData": { + "id": "Ghostly Fox Card", + }, + "value": 2885068, + }, + { + "category": "Card", + "configData": { + "id": "Ghostly Cat Card", + }, + "value": 2485539, + }, + { + "category": "Lootbox", + "configData": { + "id": "Slime Gift", + }, + "value": 131683, + }, + { + "category": "Charm", + "configData": { + "id": "Glittering", + "tn": 1, + }, + "value": 69214, + }, + { + "category": "Egg", + "configData": { + "id": "Series 3 Basic Gift", + }, + "value": 335574975, + }, + { + "category": "Egg", + "configData": { + "id": "Series 3 Mythical Gift", + }, + "value": 564569990, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Merry Mule", + }, + "value": 20489956, + }, + { + "category": "Lootbox", + "configData": { + "id": "Mega Boost Chest", + }, + "value": 19649457, + }, + { + "category": "Enchant", + "configData": { + "id": "Treasure Hunter", + "tn": 8, + }, + "value": 880, + }, + { + "category": "Lootbox", + "configData": { + "id": "Evil Gift", + }, + "value": 1301505, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Bobcat", + }, + "value": 11975853918, + }, + { + "category": "Enchant", + "configData": { + "id": "Coins", + "tn": 6, + }, + "value": 269, + }, + { + "category": "Potion", + "configData": { + "id": "Damage", + "tn": 9, + }, + "value": 4911, + }, + { + "category": "Card", + "configData": { + "id": "Pixel Dragon Card", + }, + "value": 496, + }, + { + "category": "Pet", + "configData": { + "id": "Deerserker", + "sh": true, + }, + "value": 407077, + }, + { + "category": "Pet", + "configData": { + "id": "Persimmony Cricket", + }, + "value": 52, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pony", + }, + "value": 721793661, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Festive Elf", + "pt": 2, + }, + "value": 142387313, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Naughty Dominus", + "sh": true, + }, + "value": 566047026, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Cube Penguin", + "pt": 2, + }, + "value": 21748808, + }, + { + "category": "Pet", + "configData": { + "id": "Merry Mule", + "pt": 2, + }, + "value": 13265, + }, + { + "category": "Misc", + "configData": { + "id": "Large Enchant Bundle", + }, + "value": 436, + }, + { + "category": "Lootbox", + "configData": { + "id": "Arcade Egg 1", + }, + "value": 49302, + }, + { + "category": "Misc", + "configData": { + "id": "Enchant Bundle", + }, + "value": 97, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nutcracker Bunny", + "pt": 1, + }, + "value": 32266132, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stingray", + "pt": 2, + }, + "value": 135503410, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Circuit Cat", + "pt": 2, + }, + "value": 159453504, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Marshmallow Kitsune", + }, + "value": 40908796, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gingerbread Lion", + "pt": 2, + }, + "value": 141349990, + }, + { + "category": "Lootbox", + "configData": { + "id": "Good vs Evil Gift", + }, + "value": 675530, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Frostbyte Snowman", + "pt": 2, + }, + "value": 192646852, + }, + { + "category": "Card", + "configData": { + "id": "Hellhound Card", + "pt": 2, + }, + "value": 6913, + }, + { + "category": "Fruit", + "configData": { + "id": "Banana", + }, + "value": 48, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Chick", + "pt": 2, + }, + "value": 82, + }, + { + "category": "Enchant", + "configData": { + "id": "Boss Chest Mimic", + "tn": 1, + }, + "value": 801084206, + }, + { + "category": "Lootbox", + "configData": { + "id": "Hype Egg", + }, + "value": 9898023, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Helicopter Cat", + }, + "value": 26513483, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Atomic Axolotl", + }, + "value": 77737807, + }, + { + "category": "Potion", + "configData": { + "id": "Huge", + "tn": 1, + }, + "value": 1498347, + }, + { + "category": "Pet", + "configData": { + "id": "Lit Loris", + "pt": 2, + }, + "value": 68, + }, + { + "category": "Pet", + "configData": { + "id": "Yin-Yang Dragon", + }, + "value": 14671729, + }, + { + "category": "Misc", + "configData": { + "id": "Mega Lucky Gingerbread", + }, + "value": 129401, + }, + { + "category": "Enchant", + "configData": { + "id": "Treasure Hunter", + "tn": 9, + }, + "value": 80335, + }, + { + "category": "Lootbox", + "configData": { + "id": "Snowflake Gift", + }, + "value": 304374, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Polar Bear", + }, + "value": 26523371, + }, + { + "category": "Enchant", + "configData": { + "id": "Blast", + "tn": 1, + }, + "value": 346, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jolly Dino", + }, + "value": 24608749, + }, + { + "category": "Pet", + "configData": { + "id": "Mummy Bunny", + }, + "value": 35, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Narwhal", + }, + "value": 7, + }, + { + "category": "Charm", + "configData": { + "id": "Criticals", + "tn": 1, + }, + "value": 617, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Festive Bear", + }, + "value": 21914887, + }, + { + "category": "Pet", + "configData": { + "id": "Orca", + }, + "value": 21682709, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holiday Owl", + "pt": 1, + "sh": true, + }, + "value": 280096664, + }, + { + "category": "Pet", + "configData": { + "id": "Palace Pooka", + "pt": 2, + }, + "value": 1283638, + }, + { + "category": "Potion", + "configData": { + "id": "Coins", + "tn": 6, + }, + "value": 56, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wizard Westie", + }, + "value": 31899597, + }, + { + "category": "Pet", + "configData": { + "id": "Luchador Coyote", + }, + "value": 8149447, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fiddlefern Cat", + "pt": 2, + }, + "value": 138849141, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Propeller Cat", + }, + "value": 29710059, + }, + { + "category": "Booth", + "configData": { + "id": "Arcade", + }, + "value": 99401, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hot Cocoa Bear", + "sh": true, + }, + "value": 86534986, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guard Dominus", + }, + "value": 49428201, + }, + { + "category": "Pet", + "configData": { + "id": "Honey Bear", + }, + "value": 8051736, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Ghostly Wolf Card", + }, + "value": 1611652465, + }, + { + "category": "Enchant", + "configData": { + "id": "Super Lightning", + "tn": 1, + }, + "value": 6796, + }, + { + "category": "Card", + "configData": { + "id": "Phantom Wolf Card", + "pt": 1, + }, + "value": 42827, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Monkey", + "pt": 2, + }, + "value": 90, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Nightmare Sludge", + }, + "value": 10413528167, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Reindeer Cat", + "pt": 1, + }, + "value": 26581851, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holiday Owl", + "sh": true, + }, + "value": 123266687, + }, + { + "category": "Misc", + "configData": { + "id": "Diamond Gift Bag", + }, + "value": 45738, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pajamas Shark", + "pt": 1, + }, + "value": 27196033, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rogue Squid", + "pt": 1, + }, + "value": 27125154, + }, + { + "category": "Enchant", + "configData": { + "id": "Fireworks", + "tn": 1, + }, + "value": 99968, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Knife Cat", + }, + "value": 428230658, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Inferno Dominus", + }, + "value": 612282225, + }, + { + "category": "Pet", + "configData": { + "id": "Pentangelus", + "pt": 2, + }, + "value": 1653, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pog Cat", + }, + "value": 690147023, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Doodle", + }, + "value": 1634391, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Exquisite Elephant", + "sh": true, + }, + "value": 180955061, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fireball Cat", + }, + "value": 102565256, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Techno Cat", + }, + "value": 367191623, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nuclear Wild Dog", + }, + "value": 38349117, + }, + { + "category": "Pet", + "configData": { + "id": "Lit Loris", + "pt": 1, + }, + "value": 54, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Hydra", + "pt": 1, + }, + "value": 141869416, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Marshmallow Kitsune", + "pt": 2, + }, + "value": 169770034, + }, + { + "category": "Pet", + "configData": { + "id": "Candycorn Unicorn", + }, + "value": 7459509, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anglerfish", + }, + "value": 28721168, + }, + { + "category": "Pet", + "configData": { + "id": "Pixel Dragon", + }, + "value": 1992, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Griffin", + "pt": 2, + }, + "value": 52, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Cocoa Cow", + "pt": 2, + }, + "value": 153, + }, + { + "category": "Pet", + "configData": { + "id": "Treasure Unicorn", + }, + "value": 11886913, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Marshmallow Agony", + }, + "value": 102912049, + }, + { + "category": "Misc", + "configData": { + "id": "Seed Bag", + }, + "value": 3770, + }, + { + "category": "Lootbox", + "configData": { + "id": "Lucky Gift", + }, + "value": 300875, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holly Capybara", + }, + "value": 29636337, + }, + { + "category": "Pet", + "configData": { + "id": "Kawaii Dragon Ball", + }, + "value": 345, + }, + { + "category": "Lootbox", + "configData": { + "id": "X-Large Christmas Present", + }, + "value": 27776391, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Zebra", + }, + "value": 25853060, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Cocoa Cow", + "pt": 1, + "sh": true, + }, + "value": 126, + }, + { + "category": "Pet", + "configData": { + "id": "Holly Capybara", + "pt": 1, + "sh": true, + }, + "value": 956, + }, + { + "category": "Pet", + "configData": { + "id": "Lit Loris", + "sh": true, + }, + "value": 120, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Squirrel", + }, + "value": 39, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Cat", + }, + "value": 28397, + }, + { + "category": "Enchant", + "configData": { + "id": "Huge Hunter", + "tn": 1, + }, + "value": 22110273, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Red Wolf", + "pt": 2, + }, + "value": 160081560, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Candycane Kitsune", + "pt": 2, + }, + "value": 287357979, + }, + { + "category": "Misc", + "configData": { + "id": "Crystal Key Upper Half", + }, + "value": 3875, + }, + { + "category": "Misc", + "configData": { + "id": "Crystal Key Lower Half", + }, + "value": 102, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pumpkin Dog", + }, + "value": 5018412351, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mechatronic Robot", + }, + "value": 36951209, + }, + { + "category": "Misc", + "configData": { + "id": "Tech Key Lower Half", + }, + "value": 954, + }, + { + "category": "Misc", + "configData": { + "id": "Clan Voucher", + }, + "value": 149893706, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sticky Lamb", + }, + "value": 24643538, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Festive Seal", + "pt": 2, + }, + "value": 126610338, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Festive Seal", + "sh": true, + }, + "value": 100897905, + }, + { + "category": "Booth", + "configData": { + "id": "Glowy", + }, + "value": 888874, + }, + { + "category": "Lootbox", + "configData": { + "id": "2026 New Years Gift", + }, + "value": 280578162, + }, + { + "category": "Lootbox", + "configData": { + "id": "2025 New Years Gift", + }, + "value": 319360665, + }, + { + "category": "Misc", + "configData": { + "id": "Secret Key Lower Half", + }, + "value": 449, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Diamond Bunny", + }, + "value": 29243738, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bison", + "pt": 2, + }, + "value": 152268683, + }, + { + "category": "Lootbox", + "configData": { + "id": "Fantasy Pack", + }, + "value": 6238938, + }, + { + "category": "Pet", + "configData": { + "id": "Nightfall Ram", + }, + "value": 25815734, + }, + { + "category": "Ultimate", + "configData": { + "id": "TNT Shower", + }, + "value": 499399, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Super Cat", + }, + "value": 105602986835, + }, + { + "category": "Consumable", + "configData": { + "id": "Mining Speed Booster", + "tn": 1, + }, + "value": 34, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Happy Computer", + }, + "value": 38035820, + }, + { + "category": "Consumable", + "configData": { + "id": "Mining Damage Booster", + "tn": 1, + }, + "value": 85, + }, + { + "category": "Misc", + "configData": { + "id": "Emerald Gem", + }, + "value": 4, + }, + { + "category": "Pet", + "configData": { + "id": "Galaxy Pegasus", + }, + "value": 1060420058, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Player Fox", + "pt": 2, + }, + "value": 150543115, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Exquisite Cat", + }, + "value": 5506098644, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Merry Mule", + "pt": 1, + }, + "value": 45704480, + }, + { + "category": "Booth", + "configData": { + "id": "Snowflake", + }, + "value": 40439, + }, + { + "category": "Pet", + "configData": { + "id": "Bloo Cat", + "pt": 2, + }, + "value": 105566481, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Disco Ball Agony", + "sh": true, + }, + "value": 62705148948, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cool Cat", + }, + "value": 605797547, + }, + { + "category": "Pet", + "configData": { + "id": "Deerserker", + "pt": 2, + "sh": true, + }, + "value": 154536, + }, + { + "category": "Charm", + "configData": { + "id": "Agility", + "tn": 1, + }, + "value": 892, + }, + { + "category": "Pet", + "configData": { + "id": "Sage Axolotl", + "pt": 2, + }, + "value": 1127, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hypnotic Cat", + }, + "value": 124421637, + }, + { + "category": "Pet", + "configData": { + "id": "Snowman", + "pt": 2, + }, + "value": 75, + }, + { + "category": "Pet", + "configData": { + "id": "Pineapple Cat", + }, + "value": 213, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hubert", + }, + "value": 1141090941, + }, + { + "category": "Charm", + "configData": { + "id": "Coins", + "tn": 1, + }, + "value": 466, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Dragon", + }, + "value": 13, + }, + { + "category": "Misc", + "configData": { + "id": "Exclusive Daycare Slot Voucher", + }, + "value": 48851928, + }, + { + "category": "Booth", + "configData": { + "id": "Lemonade", + }, + "value": 226820786, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ooze Axolotl", + }, + "value": 24906567, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Lamb", + }, + "value": 19821556, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Griffin", + }, + "value": 23699463, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Griffin", + }, + "value": 24006575, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Axolotl", + }, + "value": 23952382, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Detective Terrier", + }, + "value": 23531853, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Elephant", + }, + "value": 25416963, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mining Monkey", + "pt": 1, + }, + "value": 22151153, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Arcade Dog", + }, + "value": 27611975, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Sea Dragon Card", + }, + "value": 660071788, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Night Terror Cat", + }, + "value": 155923441, + }, + { + "category": "Misc", + "configData": { + "id": "Secret Key Upper Half", + }, + "value": 6619, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Penguin", + }, + "value": 29613741, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Fox", + }, + "value": 23866983, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Heartbreak Fairy", + "pt": 1, + }, + "value": 30201583, + }, + { + "category": "Pet", + "configData": { + "id": "Ghostly Fox", + "sh": true, + }, + "value": 27839037, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Goblin", + }, + "value": 22637618, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ooze Cat", + }, + "value": 24890146, + }, + { + "category": "Pet", + "configData": { + "id": "Stacked Dominus", + "pt": 2, + }, + "value": 12, + }, + { + "category": "Pet", + "configData": { + "id": "Triceratops", + "sh": true, + }, + "value": 1424, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spotted Elephant", + }, + "value": 19807360, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Crown Corgi", + }, + "value": 29703350, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pastel Sock Bunny", + }, + "value": 24029156, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valentines Bear", + }, + "value": 35536154, + }, + { + "category": "Pet", + "configData": { + "id": "Sad Bunny", + "pt": 2, + }, + "value": 58845428, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Panda", + }, + "value": 24285670, + }, + { + "category": "Pet", + "configData": { + "id": "Bejeweled Deer", + "pt": 2, + }, + "value": 24133517, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Red Wolf", + }, + "value": 20273155, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Slimezilla", + }, + "value": 49805887, + }, + { + "category": "Misc", + "configData": { + "id": "Void Key Lower Half", + }, + "value": 974, + }, + { + "category": "Misc", + "configData": { + "id": "Fantasy Key Lower Half", + }, + "value": 2881, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lemur", + "pt": 2, + }, + "value": 144630576, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Starry Eye Bunny", + "pt": 2, + }, + "value": 152809324, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Helicopter Cat", + "pt": 2, + }, + "value": 162936518, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Student Corgi", + }, + "value": 32866446, + }, + { + "category": "Fruit", + "configData": { + "id": "Watermelon", + }, + "value": 44, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Hotdog", + }, + "value": 124091664, + }, + { + "category": "Booth", + "configData": { + "id": "Pop Cat", + }, + "value": 17999246, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Koi Fish", + }, + "value": 26504030, + }, + { + "category": "Pet", + "configData": { + "id": "Sad Doge", + }, + "value": 13303528, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Abyssal Jellyfish", + "sh": true, + }, + "value": 148601231, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valentines Unicorn", + "pt": 1, + }, + "value": 33930835, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mining Penguin", + "pt": 1, + }, + "value": 25753386, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Red Wolf", + "pt": 1, + }, + "value": 28468445, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Whale Shark", + "pt": 1, + }, + "value": 24940430, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glitched Unicorn Ball", + }, + "value": 30411084, + }, + { + "category": "Pet", + "configData": { + "id": "Heartbreak Fairy", + "pt": 2, + }, + "value": 112, + }, + { + "category": "Pet", + "configData": { + "id": "Anime Tanuki", + }, + "value": 23001911, + }, + { + "category": "Pet", + "configData": { + "id": "Patchwork Teddy Bear", + }, + "value": 16510019, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Naughty Cat", + "pt": 1, + }, + "value": 167418616, + }, + { + "category": "Card", + "configData": { + "id": "Error Cat Card", + }, + "value": 635, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snowflake Pegasus", + "pt": 2, + }, + "value": 156378941, + }, + { + "category": "Card", + "configData": { + "id": "Empyrean Lion Card", + }, + "value": 2496, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Red Panda", + }, + "value": 36054122, + }, + { + "category": "Pet", + "configData": { + "id": "Treasure Golem", + }, + "value": 16239627, + }, + { + "category": "Pet", + "configData": { + "id": "Molten Pumpkin Cat", + }, + "value": 12029662, + }, + { + "category": "Pet", + "configData": { + "id": "Elf Golem", + "pt": 1, + }, + "value": 1572694, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ninja Dalmatian", + }, + "value": 21080942, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bat", + }, + "value": 39968520, + }, + { + "category": "Pet", + "configData": { + "id": "Popcorn Cat", + }, + "value": 188, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skateboard Bulldog", + "pt": 2, + }, + "value": 143600212, + }, + { + "category": "Charm", + "configData": { + "id": "Bonus", + "tn": 1, + }, + "value": 152, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bobcat", + }, + "value": 51889770, + }, + { + "category": "Pet", + "configData": { + "id": "Torpedo Shepherd", + "pt": 2, + }, + "value": 68, + }, + { + "category": "Enchant", + "configData": { + "id": "Tap Power", + "tn": 10, + }, + "value": 869095, + }, + { + "category": "Pet", + "configData": { + "id": "Plane Dragon", + "pt": 2, + }, + "value": 41, + }, + { + "category": "Hoverboard", + "configData": { + "id": "UFO", + }, + "value": 754152333, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Circuit Cat", + }, + "value": 26719491, + }, + { + "category": "Ultimate", + "configData": { + "id": "Tsunami", + }, + "value": 50944542, + }, + { + "category": "Charm", + "configData": { + "id": "Strength", + "tn": 1, + }, + "value": 751, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sorcerer Bear", + }, + "value": 48560872, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Shark", + }, + "value": 30108747, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skelemelon", + }, + "value": 39603208, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Shark", + "pt": 1, + }, + "value": 27772088, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kangaroo", + }, + "value": 26022706, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Abyssal Jellyfish", + }, + "value": 38828062, + }, + { + "category": "Pet", + "configData": { + "id": "Plane Dragon", + "pt": 1, + }, + "value": 33, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 57", + }, + "value": 167627158, + }, + { + "category": "Booth", + "configData": { + "id": "Lucky Block", + }, + "value": 3602025, + }, + { + "category": "Pet", + "configData": { + "id": "Blueberry Cow", + }, + "value": 8437945, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nutcracker Squirrel", + "sh": true, + }, + "value": 93789572, + }, + { + "category": "Pet", + "configData": { + "id": "Rose Garden Cat", + "pt": 2, + "sh": true, + }, + "value": 22640969, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Broomstick", + }, + "value": 1994663, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Pencil", + }, + "value": 28887213, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Zombie Pig", + "pt": 2, + }, + "value": 127833118, + }, + { + "category": "Pet", + "configData": { + "id": "Knife Cat", + }, + "value": 11360979, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Parrot", + }, + "value": 25798639, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Deer", + }, + "value": 10158015, + }, + { + "category": "Card", + "configData": { + "id": "Pog Dog Card", + "pt": 2, + }, + "value": 27986, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Avenging Griffin", + }, + "value": 52026373, + }, + { + "category": "Pet", + "configData": { + "id": "Elf Golem", + }, + "value": 371624, + }, + { + "category": "Pet", + "configData": { + "id": "Blooming Axolotl", + "sh": true, + }, + "value": 39, + }, + { + "category": "Pet", + "configData": { + "id": "Snowflake Dragon", + }, + "value": 12469, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Cat", + }, + "value": 55, + }, + { + "category": "Pet", + "configData": { + "id": "Spotted Elephant", + }, + "value": 68, + }, + { + "category": "Pet", + "configData": { + "id": "Ooze Axolotl", + "pt": 1, + }, + "value": 441, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Red Panda", + "pt": 2, + }, + "value": 163615264, + }, + { + "category": "Potion", + "configData": { + "id": "The Cocktail", + "tn": 2, + }, + "value": 9943917, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wild Frost Agony", + }, + "value": 36677859, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mosaic Corgi", + }, + "value": 77453008, + }, + { + "category": "Pet", + "configData": { + "id": "Frontman Jellyfish", + }, + "value": 464, + }, + { + "category": "Charm", + "configData": { + "id": "Lightning", + "tn": 1, + }, + "value": 1503, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Autumn", + }, + "value": 1415413, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mining Monkey", + "pt": 2, + }, + "value": 153703923, + }, + { + "category": "Pet", + "configData": { + "id": "Player Fox", + "pt": 1, + }, + "value": 82, + }, + { + "category": "Pet", + "configData": { + "id": "Reaper Cat", + }, + "value": 83, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Reindeer Cat", + }, + "value": 21329925, + }, + { + "category": "Booth", + "configData": { + "id": "Lightning", + }, + "value": 1707551, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Lamb", + }, + "value": 7128316, + }, + { + "category": "Lootbox", + "configData": { + "id": "2024 Large Christmas Present", + }, + "value": 195697, + }, + { + "category": "Lootbox", + "configData": { + "id": "Time Trial Gift", + }, + "value": 280400, + }, + { + "category": "Egg", + "configData": { + "id": "Series 2 Epic Gift", + }, + "value": 117557875, + }, + { + "category": "XPPotion", + "configData": { + "id": "Huge", + }, + "value": 1978457, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Pinata", + }, + "value": 5879199, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Pet Games", + }, + "value": 947592, + }, + { + "category": "Misc", + "configData": { + "id": "Ultra Grinch-B-Gone", + }, + "value": 7152, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Player Fox", + "pt": 1, + }, + "value": 29376758, + }, + { + "category": "Pet", + "configData": { + "id": "Desert Cat", + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Safari Monkey", + }, + "value": 24405920, + }, + { + "category": "Enchant", + "configData": { + "id": "Tap Power", + "tn": 8, + }, + "value": 643, + }, + { + "category": "Misc", + "configData": { + "id": "Easter Secret Key", + }, + "value": 2482, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Ducky", + "pt": 1, + }, + "value": 24904424, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Corgi", + }, + "value": 9250251, + }, + { + "category": "Pet", + "configData": { + "id": "Cosmic Axolotl", + }, + "value": 8921439, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Maple Owl", + }, + "value": 23380616, + }, + { + "category": "Misc", + "configData": { + "id": "Millionaire Ticket", + }, + "value": 14609, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Ducky", + }, + "value": 25514316, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Emerald Owl", + "pt": 1, + }, + "value": 39147221, + }, + { + "category": "Pet", + "configData": { + "id": "Bejeweled Unicorn", + }, + "value": 7687457, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Bearserker", + }, + "value": 7583195, + }, + { + "category": "Pet", + "configData": { + "id": "Classic Dog", + }, + "value": 7702857, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rogue Squid", + }, + "value": 21502071, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Void Alien", + }, + "value": 24413796, + }, + { + "category": "Pet", + "configData": { + "id": "Ghostly Fox", + }, + "value": 7648561, + }, + { + "category": "Pet", + "configData": { + "id": "Beach Ball Dolphin", + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Squirrel", + }, + "value": 38, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rudolf", + "pt": 2, + }, + "value": 118401812, + }, + { + "category": "Card", + "configData": { + "id": "Ghostly Cat Card", + "pt": 2, + }, + "value": 9757845, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Circuit Cat", + "pt": 1, + }, + "value": 32524903, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ladybug", + }, + "value": 23409806, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wild Corrupt Agony", + "pt": 1, + }, + "value": 92015373, + }, + { + "category": "Pet", + "configData": { + "id": "Crackling Dragon", + "pt": 1, + }, + "value": 19282, + }, + { + "category": "Booth", + "configData": { + "id": "Art", + }, + "value": 2915026, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Devil Tasmanian", + "pt": 1, + }, + "value": 37958059, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Scarecrow Dog", + }, + "value": 24095391, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Starlight Pony", + }, + "value": 4930437041, + }, + { + "category": "Booth", + "configData": { + "id": "Elf", + }, + "value": 295383, + }, + { + "category": "Lootbox", + "configData": { + "id": "Arcade Egg 5", + }, + "value": 999629, + }, + { + "category": "Pet", + "configData": { + "id": "Palace Pooka", + }, + "value": 220355, + }, + { + "category": "Pet", + "configData": { + "id": "Petal Pixie", + "pt": 1, + "sh": true, + }, + "value": 58, + }, + { + "category": "Pet", + "configData": { + "id": "Petal Pixie", + "pt": 1, + }, + "value": 50, + }, + { + "category": "Potion", + "configData": { + "id": "Coins", + "tn": 8, + }, + "value": 961, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Anime Cat Card", + }, + "value": 753285013, + }, + { + "category": "Enchant", + "configData": { + "id": "Midas Touch", + "tn": 1, + }, + "value": 461, + }, + { + "category": "Pet", + "configData": { + "id": "Graffiti Raccoon", + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Narwhal", + "pt": 2, + }, + "value": 33, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Candycane Unicorn", + "pt": 1, + }, + "value": 34350256, + }, + { + "category": "Booth", + "configData": { + "id": "Rave", + }, + "value": 1361873, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Nutcracker Squirrel", + }, + "value": 6986673884, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Witch Cat", + }, + "value": 3425913, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jolly Penguin", + }, + "value": 68113707, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gingerbread Angelus", + "pt": 1, + }, + "value": 97360175, + }, + { + "category": "Pet", + "configData": { + "id": "Nutcracker Bunny", + }, + "value": 5, + }, + { + "category": "XPPotion", + "configData": { + "id": "Ultimate", + }, + "value": 195549, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hell Rock", + "pt": 1, + }, + "value": 47480027, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Hippomelon", + "pt": 2, + }, + "value": 395, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ooze Axolotl", + "pt": 2, + }, + "value": 136940993, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Celestial Dragon", + }, + "value": 451023596, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Grinch Cat", + }, + "value": 706916297, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Cocoa Bear", + }, + "value": 118, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elephant", + }, + "value": 27045978, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Turkey", + }, + "value": 1996082, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Shark", + "sh": true, + }, + "value": 14590, + }, + { + "category": "Pet", + "configData": { + "id": "Floatie Penguin", + "pt": 1, + }, + "value": 49, + }, + { + "category": "Pet", + "configData": { + "id": "Basketball Monkey", + "sh": true, + }, + "value": 3440, + }, + { + "category": "Pet", + "configData": { + "id": "Coach Hippo", + "pt": 2, + }, + "value": 102, + }, + { + "category": "Pet", + "configData": { + "id": "Ember Vulture", + "pt": 1, + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Beaver", + }, + "value": 50, + }, + { + "category": "Pet", + "configData": { + "id": "Soccer Terrier", + "pt": 2, + }, + "value": 89, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nutcracker Squirrel", + }, + "value": 24311494, + }, + { + "category": "Pet", + "configData": { + "id": "Gary the Snail", + }, + "value": 20713815, + }, + { + "category": "Pet", + "configData": { + "id": "Emoji Cat", + }, + "value": 8595648, + }, + { + "category": "Consumable", + "configData": { + "id": "Halloween Trick or Treat Luck", + "tn": 1, + }, + "value": 589, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hacked Reaper", + }, + "value": 71486153, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rich Cat", + "pt": 2, + }, + "value": 321047669, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kitsune Fox", + }, + "value": 105473703, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mining Raccoon", + "pt": 1, + }, + "value": 24243833, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hippomint", + }, + "value": 32207177, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blurred Owl", + "sh": true, + }, + "value": 125977644, + }, + { + "category": "Enchant", + "configData": { + "id": "Strong Pets", + "tn": 8, + }, + "value": 954, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Firefighter Dalmation", + }, + "value": 280743934, + }, + { + "category": "Enchant", + "configData": { + "id": "Diamonds", + "tn": 8, + }, + "value": 3544, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rainbow Slime", + }, + "value": 31998715, + }, + { + "category": "Card", + "configData": { + "id": "Error Cat Card", + "pt": 2, + }, + "value": 1560, + }, + { + "category": "Card", + "configData": { + "id": "Gamer Shiba Card", + "sh": true, + }, + "value": 1625, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Raccoon", + }, + "value": 23918070, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Void Alien", + "pt": 1, + }, + "value": 25156668, + }, + { + "category": "Potion", + "configData": { + "id": "Treasure Hunter", + "tn": 7, + }, + "value": 98, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Minecart Hamster", + }, + "value": 29346927, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Candycane Kitsune", + }, + "value": 6704737988, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Bear", + }, + "value": 57762225, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Abyssal Jellyfish", + "pt": 1, + }, + "value": 33382162, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Happy Rock", + }, + "value": 33509028, + }, + { + "category": "Lootbox", + "configData": { + "id": "Tropical Gift", + }, + "value": 310393, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kawaii Dragon Ball", + }, + "value": 36776227, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Baby Kitten", + }, + "value": 58405514, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elf Dog", + }, + "value": 101541391, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Peacock", + }, + "value": 23813986, + }, + { + "category": "Card", + "configData": { + "id": "Huge Ghostly Dragon Card", + }, + "value": 20301611, + }, + { + "category": "Card", + "configData": { + "id": "Huge Sea Dragon Card", + }, + "value": 9932560, + }, + { + "category": "Enchant", + "configData": { + "id": "Lucky Eggs", + "tn": 10, + }, + "value": 2357326, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stacked Dominus", + }, + "value": 303916519, + }, + { + "category": "Enchant", + "configData": { + "id": "Magnet", + "tn": 3, + }, + "value": 12, + }, + { + "category": "Pet", + "configData": { + "id": "Rose Pooka", + }, + "value": 427, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Red Panda", + }, + "value": 12627189120, + }, + { + "category": "Pet", + "configData": { + "id": "Elf Golem", + "pt": 2, + }, + "value": 4616970, + }, + { + "category": "Misc", + "configData": { + "id": "Charm Chisel", + }, + "value": 158406, + }, + { + "category": "Box", + "configData": { + "id": "Small", + }, + "value": 13429, + }, + { + "category": "Lootbox", + "configData": { + "id": "Small Christmas Present", + }, + "value": 982664, + }, + { + "category": "Enchant", + "configData": { + "id": "Diamonds", + "tn": 10, + }, + "value": 1247595, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holographic Cat", + }, + "value": 35274663, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mosaic Griffin", + }, + "value": 84462044, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Torpedo Shepherd", + }, + "value": 26964819, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Scorpion", + "pt": 2, + }, + "value": 51, + }, + { + "category": "Pet", + "configData": { + "id": "Persimmony Cricket", + "pt": 1, + }, + "value": 261, + }, + { + "category": "Lootbox", + "configData": { + "id": "Mega Charm Chest", + }, + "value": 83063084, + }, + { + "category": "Enchant", + "configData": { + "id": "Magnet", + "tn": 1, + }, + "value": 71, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Nutcracker Cat", + }, + "value": 5915736153, + }, + { + "category": "Pet", + "configData": { + "id": "Kaiju Sea Dragon", + }, + "value": 8583472, + }, + { + "category": "Pet", + "configData": { + "id": "Krampus", + "pt": 1, + "sh": true, + }, + "value": 157259, + }, + { + "category": "Enchant", + "configData": { + "id": "Diamond Gift Hunter", + "tn": 1, + }, + "value": 4676290621, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shuriken Corgi", + "pt": 1, + }, + "value": 34954758, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Dooooog", + }, + "value": 77103627, + }, + { + "category": "Pet", + "configData": { + "id": "Deerserker", + "pt": 1, + "sh": true, + }, + "value": 15943680, + }, + { + "category": "Pet", + "configData": { + "id": "Evergreen Unicorn", + "pt": 1, + "sh": true, + }, + "value": 35875, + }, + { + "category": "Pet", + "configData": { + "id": "Krampus", + "sh": true, + }, + "value": 70792, + }, + { + "category": "Lootbox", + "configData": { + "id": "2024 X-Large Christmas Present", + }, + "value": 994488, + }, + { + "category": "Lootbox", + "configData": { + "id": "Gym Gift", + }, + "value": 396366, + }, + { + "category": "Pet", + "configData": { + "id": "DJ Panda", + "pt": 1, + }, + "value": 2262, + }, + { + "category": "XPPotion", + "configData": { + "id": "Titanic", + }, + "value": 999993, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Bunny", + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Humble Rabbit", + "pt": 1, + }, + "value": 1824, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ninja Dalmatian", + "pt": 1, + }, + "value": 25461875, + }, + { + "category": "Enchant", + "configData": { + "id": "Criticals", + "tn": 8, + }, + "value": 807, + }, + { + "category": "Enchant", + "configData": { + "id": "Tap Power", + "tn": 9, + }, + "value": 40166, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Griffin", + "pt": 1, + }, + "value": 211, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Goat", + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Dragon", + }, + "value": 31404033, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Telescope Owl", + "pt": 1, + }, + "value": 29514900, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Quokka", + }, + "value": 4622468145, + }, + { + "category": "Pet", + "configData": { + "id": "DJ Panda", + "pt": 2, + }, + "value": 1075, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Devil Agony", + }, + "value": 140022490, + }, + { + "category": "Pet", + "configData": { + "id": "Atlantean Dolphin", + }, + "value": 34255260, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Pegasus", + }, + "value": 7891348, + }, + { + "category": "Pet", + "configData": { + "id": "Clout Cat", + }, + "value": 15135848, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Anime Cat", + }, + "value": 6412490388, + }, + { + "category": "Enchant", + "configData": { + "id": "Corruption", + "tn": 1, + }, + "value": 2884830192, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hacked Cat", + }, + "value": 708426980, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Specter Owl", + }, + "value": 4957164393, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jurassic Beaver", + }, + "value": 178007187, + }, + { + "category": "Potion", + "configData": { + "id": "Coins", + "tn": 10, + }, + "value": 4822, + }, + { + "category": "Pet", + "configData": { + "id": "Atlantean Stingray", + }, + "value": 14785439, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Hydra", + "pt": 2, + }, + "value": 31413415, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Hydra", + }, + "value": 11386898, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Cube Penguin", + "sh": true, + }, + "value": 19724515, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Owl", + }, + "value": 5276851855, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Scribe Squirrel", + }, + "value": 25510619, + }, + { + "category": "Lootbox", + "configData": { + "id": "Deep Sea Treasure Chest", + }, + "value": 5344093, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Pony", + "pt": 2, + }, + "value": 71, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Piggy", + }, + "value": 1026907045, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Googly Corgi", + "sh": true, + }, + "value": 825022820, + }, + { + "category": "Enchant", + "configData": { + "id": "Shiny Supercharge", + "tn": 1, + }, + "value": 9701191, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Sea Dragon", + }, + "value": 5142353105, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Present Chest Mimic", + }, + "value": 744033960, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Atlantean Dolphin", + }, + "value": 1003864414, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valentines Axolotl", + }, + "value": 31882643, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Balloon Dragon", + }, + "value": 736963553, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chesnut Chipmunk", + "pt": 2, + }, + "value": 154119487, + }, + { + "category": "Tower", + "configData": { + "id": "Ooze Dragon", + }, + "value": 21550, + }, + { + "category": "Misc", + "configData": { + "id": "Ruby Gem", + }, + "value": 4, + }, + { + "category": "Misc", + "configData": { + "id": "Amethyst Gem", + }, + "value": 4, + }, + { + "category": "Misc", + "configData": { + "id": "Pumpkin", + }, + "value": 812, + }, + { + "category": "Misc", + "configData": { + "id": "Candy Corn", + }, + "value": 183, + }, + { + "category": "Misc", + "configData": { + "id": "Sapphire Gem", + }, + "value": 4, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Beaver", + "sh": true, + }, + "value": 113585962, + }, + { + "category": "Hoverboard", + "configData": { + "id": "M-10", + }, + "value": 33363818, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Capybara", + }, + "value": 1652396807, + }, + { + "category": "Misc", + "configData": { + "id": "Lucky Raid Boss Key Lower Half", + }, + "value": 1386, + }, + { + "category": "Egg", + "configData": { + "id": "Gym Egg", + }, + "value": 206696438, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 49", + }, + "value": 309887295, + }, + { + "category": "Misc", + "configData": { + "id": "Fortune Flag", + }, + "value": 413, + }, + { + "category": "Consumable", + "configData": { + "id": "Lucky Raid XP Booster", + "tn": 1, + }, + "value": 4968, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evergreen Unicorn", + "pt": 2, + }, + "value": 123662353, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Reindeer Cat", + "pt": 2, + }, + "value": 145847203, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Horse", + "pt": 2, + }, + "value": 182168461, + }, + { + "category": "Tower", + "configData": { + "id": "Ninja Dalmatian", + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Heartbreak Fairy", + "pt": 2, + }, + "value": 169878121, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sad Hamster", + }, + "value": 2010827743, + }, + { + "category": "Misc", + "configData": { + "id": "Seashell", + }, + "value": 976, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rogue Squid", + "pt": 2, + }, + "value": 155649309, + }, + { + "category": "Enchant", + "configData": { + "id": "Superior Chest Mimic", + "tn": 1, + }, + "value": 3240303108, + }, + { + "category": "Misc", + "configData": { + "id": "Magic Shard", + }, + "value": 89281, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Wolf", + "pt": 2, + }, + "value": 115, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Frostbyte Griffin", + }, + "value": 25569255, + }, + { + "category": "Pet", + "configData": { + "id": "Patapim Brainrot", + }, + "value": 14501915, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Inferno Stealth Bobcat", + }, + "value": 65010042, + }, + { + "category": "Pet", + "configData": { + "id": "Cosmic Agony", + }, + "value": 29169328, + }, + { + "category": "Enchant", + "configData": { + "id": "Shiny Hunter", + "tn": 1, + }, + "value": 3885488, + }, + { + "category": "Pet", + "configData": { + "id": "Nightmare Spirit", + }, + "value": 8100157, + }, + { + "category": "Pet", + "configData": { + "id": "Player Corgi", + "pt": 2, + }, + "value": 50, + }, + { + "category": "Ultimate", + "configData": { + "id": "Lightning Storm", + }, + "value": 1973818, + }, + { + "category": "Enchant", + "configData": { + "id": "Breakable Mayhem", + "tn": 1, + }, + "value": 3054692456, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Toilet", + }, + "value": 347653805, + }, + { + "category": "Pet", + "configData": { + "id": "Bejeweled Lion", + }, + "value": 19923556, + }, + { + "category": "Pet", + "configData": { + "id": "Blazing Bat", + }, + "value": 24378688, + }, + { + "category": "Pet", + "configData": { + "id": "Storm Agony", + }, + "value": 76963769, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghoul Horse", + }, + "value": 392457920, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chroma Lucki", + }, + "value": 169258159, + }, + { + "category": "Lootbox", + "configData": { + "id": "Basketball Gift", + }, + "value": 234883, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mummy Cow", + }, + "value": 648098722, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Axolotl", + }, + "value": 33, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Dragon", + "sh": true, + }, + "value": 1893, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evil Imp", + }, + "value": 54325220, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glade Griffin", + "pt": 2, + }, + "value": 226208475, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mining Raccoon", + "sh": true, + }, + "value": 93167702, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pajamas Shark", + "sh": true, + }, + "value": 107327786, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sleigh Cat", + "pt": 1, + }, + "value": 36473648, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snow Elf", + }, + "value": 24877734, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Icy Phoenix", + "pt": 1, + }, + "value": 25957159, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightmare Kraken", + }, + "value": 743152148, + }, + { + "category": "Enchant", + "configData": { + "id": "Lucky Eggs", + "tn": 2, + }, + "value": 93, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Forest Wyvern", + "pt": 1, + }, + "value": 1703028187, + }, + { + "category": "Booth", + "configData": { + "id": "Pizza", + }, + "value": 176653, + }, + { + "category": "Enchant", + "configData": { + "id": "Massive Comet", + "tn": 1, + }, + "value": 431180605, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valentines Unicorn", + "sh": true, + }, + "value": 349025539, + }, + { + "category": "Pet", + "configData": { + "id": "Marshmallow Kitsune", + "pt": 2, + }, + "value": 108, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Snowflake", + }, + "value": 1930654, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Festive Walrus", + }, + "value": 24750408, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mining Raccoon", + "pt": 2, + }, + "value": 142632729, + }, + { + "category": "Pet", + "configData": { + "id": "Patrick Star", + }, + "value": 43834700, + }, + { + "category": "Pet", + "configData": { + "id": "Sad Bunny", + }, + "value": 15209735, + }, + { + "category": "Potion", + "configData": { + "id": "Lucky", + "tn": 9, + }, + "value": 10479, + }, + { + "category": "Booth", + "configData": { + "id": "Gold", + }, + "value": 612211, + }, + { + "category": "Egg", + "configData": { + "id": "Series 2 Legendary Gift", + }, + "value": 319444883, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Exquisite Elephant", + }, + "value": 4967114132, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wild Corrupt Agony", + }, + "value": 367917027, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wild Frost Agony", + "pt": 1, + }, + "value": 34556882, + }, + { + "category": "Pet", + "configData": { + "id": "Junkyard Hound Ball", + "pt": 1, + }, + "value": 79, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Griffin", + "pt": 2, + }, + "value": 134623777, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Scorpion", + }, + "value": 43, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Axolotl", + "pt": 1, + }, + "value": 1777, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Robot Ball", + "pt": 1, + }, + "value": 28383388, + }, + { + "category": "Pet", + "configData": { + "cv": 5, + "id": "Huge Chroma Unicorn", + }, + "value": 40754357, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ooze Axolotl", + "pt": 1, + "sh": true, + }, + "value": 450692666, + }, + { + "category": "Pet", + "configData": { + "id": "Hippomelon", + }, + "value": 44856377, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Teacher Cat", + }, + "value": 32738034, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rudolf", + }, + "value": 24630936, + }, + { + "category": "Pet", + "configData": { + "id": "Super Capybara", + }, + "value": 33906707, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Patchwork Bunny", + }, + "value": 73373788, + }, + { + "category": "Enchant", + "configData": { + "id": "Chest Breaker", + "tn": 1, + }, + "value": 178524838, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Mosaic", + "sh": true, + }, + "value": 1761415914, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Heartbreak Fairy", + "sh": true, + }, + "value": 125798037, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Green Balloon Cat", + }, + "value": 1035817048, + }, + { + "category": "Lootbox", + "configData": { + "id": "Axolotl Pack", + }, + "value": 2998114, + }, + { + "category": "Pet", + "configData": { + "id": "Coconut Flamingo", + "pt": 2, + }, + "value": 96, + }, + { + "category": "Pet", + "configData": { + "id": "Rift Dragon", + }, + "value": 14997569, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Old Wizard Cat", + }, + "value": 26401991, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Surfboard Axolotl", + }, + "value": 25833359, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mining Raccoon", + }, + "value": 24357070, + }, + { + "category": "Misc", + "configData": { + "id": "Bucket O' Magic", + }, + "value": 87855, + }, + { + "category": "Pet", + "configData": { + "id": "Alien Axolotl", + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Neon Twilight Wolf", + }, + "value": 658846392, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Tiger", + }, + "value": 1012398, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Corgi", + "pt": 1, + }, + "value": 866, + }, + { + "category": "Pet", + "configData": { + "id": "Leafstorm Wolf", + }, + "value": 14823727, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Troll", + "pt": 1, + }, + "value": 1998, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Troll", + "pt": 2, + }, + "value": 51, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Agony", + }, + "value": 647289529, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anglerfish", + "pt": 1, + }, + "value": 25931028, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blurred Owl", + "pt": 1, + }, + "value": 26149973, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Angry Yeti", + }, + "value": 23598310, + }, + { + "category": "Pet", + "configData": { + "id": "Paintbot Spider", + }, + "value": 28, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nuclear Wild Dog", + "sh": true, + }, + "value": 142065916, + }, + { + "category": "Pet", + "configData": { + "id": "Crocodile", + }, + "value": 45, + }, + { + "category": "Pet", + "configData": { + "id": "Fire Bat", + "pt": 2, + }, + "value": 39, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Kitsune", + }, + "value": 142300324, + }, + { + "category": "Enchant", + "configData": { + "id": "Strong Pets", + "tn": 9, + }, + "value": 104450, + }, + { + "category": "Booth", + "configData": { + "id": "Good vs Evil", + }, + "value": 1936060, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hacked Cat", + "pt": 1, + }, + "value": 357503875, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ooze Axolotl", + "pt": 1, + }, + "value": 26592843, + }, + { + "category": "Pet", + "configData": { + "id": "Honey Golem", + }, + "value": 131, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pink Lucky Block", + }, + "value": 4978859752, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucky Cat", + }, + "value": 2168941679, + }, + { + "category": "Enchant", + "configData": { + "id": "Lucky Eggs", + "tn": 9, + }, + "value": 313040, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Maple Owl", + "pt": 1, + }, + "value": 24832778, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sleipnir", + }, + "value": 1213697611, + }, + { + "category": "Pet", + "configData": { + "id": "Pop Cat", + }, + "value": 122060029, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Scarecrow Dog", + "pt": 2, + }, + "value": 170763807, + }, + { + "category": "Pet", + "configData": { + "id": "Broomstick Cat", + "pt": 2, + }, + "value": 45, + }, + { + "category": "Lootbox", + "configData": { + "id": "Turkey Gift", + }, + "value": 396753, + }, + { + "category": "Card", + "configData": { + "id": "Anime Wolf Card", + "pt": 2, + }, + "value": 3122590, + }, + { + "category": "Lootbox", + "configData": { + "id": "Huge Easter Gift", + }, + "value": 494677, + }, + { + "category": "Pet", + "configData": { + "id": "Jester Dog", + "pt": 2, + }, + "value": 17885028, + }, + { + "category": "Lootbox", + "configData": { + "id": "Pet Games Gift", + }, + "value": 283061, + }, + { + "category": "Pet", + "configData": { + "id": "Night Terror Cat", + }, + "value": 55, + }, + { + "category": "Misc", + "configData": { + "id": "Diamond Fishing Rod", + }, + "value": 7039901, + }, + { + "category": "Potion", + "configData": { + "id": "Lucky", + "tn": 5, + }, + "value": 60, + }, + { + "category": "Pet", + "configData": { + "id": "Matryoshka Capybara", + }, + "value": 15648181, + }, + { + "category": "Pet", + "configData": { + "id": "Love Cow", + "pt": 2, + }, + "value": 55, + }, + { + "category": "Lootbox", + "configData": { + "id": "Candy Corn Gift", + }, + "value": 287450, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elf Golem", + "pt": 1, + }, + "value": 94710000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Meebo in a Spaceship", + }, + "value": 74769471, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leprechaun Cat", + "pt": 1, + }, + "value": 59857453, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cinnamon Bunny", + }, + "value": 25254082, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Cat", + }, + "value": 8516359, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tennis Squirrel", + }, + "value": 23651789, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jolly Narwhal", + }, + "value": 39490857, + }, + { + "category": "Pet", + "configData": { + "id": "Football Tiger", + }, + "value": 422, + }, + { + "category": "Pet", + "configData": { + "id": "Persimmony Cricket", + "pt": 2, + }, + "value": 426, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holly Capybara", + "pt": 1, + }, + "value": 26398079, + }, + { + "category": "Pet", + "configData": { + "id": "Sleigh Axolotl", + "pt": 2, + }, + "value": 36492409, + }, + { + "category": "Pet", + "configData": { + "id": "Snowflake Lattice Tiger", + "pt": 2, + }, + "value": 28585968, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Astra", + }, + "value": 29338423, + }, + { + "category": "Pet", + "configData": { + "id": "Classic Dragon", + }, + "value": 21550603, + }, + { + "category": "Pet", + "configData": { + "id": "Puma", + }, + "value": 38, + }, + { + "category": "Pet", + "configData": { + "id": "Mr Krabs", + }, + "value": 18916048, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Crown Hippomelon", + }, + "value": 75321269, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doll Cat", + }, + "value": 25591773, + }, + { + "category": "Pet", + "configData": { + "id": "Blazing Shark", + }, + "value": 7078554, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ghost Axolotl", + "pt": 1, + }, + "value": 5723011426, + }, + { + "category": "Pet", + "configData": { + "id": "Blue Marshmallow Chick", + }, + "value": 8903, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Good vs Evil", + }, + "value": 4659222, + }, + { + "category": "Misc", + "configData": { + "id": "Tech Key Upper Half", + }, + "value": 9912, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Night Terror Dog", + }, + "value": 6200410090, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evergreen Unicorn", + }, + "value": 23359207, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mermaid Cat", + }, + "value": 30182418, + }, + { + "category": "Potion", + "configData": { + "id": "Damage", + "tn": 11, + }, + "value": 457821, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Easter Lamb", + "pt": 2, + }, + "value": 574528323, + }, + { + "category": "Pet", + "configData": { + "id": "Huge African Wild Dog", + "pt": 1, + }, + "value": 94229305, + }, + { + "category": "Lootbox", + "configData": { + "id": "Hype Egg 2", + }, + "value": 9269580, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Whale Shark", + }, + "value": 32520256, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hell Rock", + }, + "value": 60834000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Angelus", + }, + "value": 77619851, + }, + { + "category": "Pet", + "configData": { + "id": "Ghostly Bunny", + }, + "value": 23505651, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Divinus", + }, + "value": 193109240, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Angry Yeti", + "pt": 2, + }, + "value": 148756494, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Love Lion", + }, + "value": 85677930, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stingray", + "sh": true, + }, + "value": 105348240, + }, + { + "category": "Misc", + "configData": { + "id": "Christmas Cookie", + }, + "value": 138739, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Parrot", + "pt": 2, + }, + "value": 138014615, + }, + { + "category": "Fruit", + "configData": { + "id": "Candycane", + }, + "value": 107042, + }, + { + "category": "Misc", + "configData": { + "id": "Hot Cocoa", + }, + "value": 91652, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evil Kitsune", + }, + "value": 53818566, + }, + { + "category": "Pet", + "configData": { + "id": "Sandcastle Kraken", + "pt": 2, + }, + "value": 111, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lemur", + "pt": 1, + }, + "value": 54414636, + }, + { + "category": "Misc", + "configData": { + "id": "Treasure Hideout Key", + }, + "value": 19712, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Goblin", + "pt": 2, + }, + "value": 153506939, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Basket Bunny", + "pt": 1, + }, + "value": 26194892, + }, + { + "category": "Pet", + "configData": { + "id": "Luau Cat", + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Strawhat Tanuki", + }, + "value": 25241053, + }, + { + "category": "Enchant", + "configData": { + "id": "Diamonds", + "tn": 7, + }, + "value": 1040, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Owl", + "pt": 2, + }, + "value": 163812, + }, + { + "category": "Pet", + "configData": { + "id": "Jellyfish", + }, + "value": 48, + }, + { + "category": "Pet", + "configData": { + "id": "Ghostly Cat", + }, + "value": 14829494, + }, + { + "category": "Pet", + "configData": { + "id": "Gingerbread Angelus", + "pt": 1, + }, + "value": 107745, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Owl", + "pt": 2, + }, + "value": 37, + }, + { + "category": "Pet", + "configData": { + "id": "Deer", + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "Lifeguard Shark", + "pt": 2, + }, + "value": 1464, + }, + { + "category": "Potion", + "configData": { + "id": "Treasure Hunter", + "tn": 1, + }, + "value": 7, + }, + { + "category": "Misc", + "configData": { + "id": "Golden Fishing Rod", + }, + "value": 189371, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Phantom Wolf", + "pt": 2, + }, + "value": 865887529, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sun Angelus", + }, + "value": 543302870, + }, + { + "category": "Pet", + "configData": { + "id": "Baby Kitten", + }, + "value": 77, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Badger", + }, + "value": 24395562, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snowflake Pegasus", + }, + "value": 27275417, + }, + { + "category": "Lootbox", + "configData": { + "id": "Mega Potion Chest", + }, + "value": 10377463, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Dominus", + }, + "value": 98573423, + }, + { + "category": "Consumable", + "configData": { + "id": "Factory Coins Booster", + "tn": 1, + }, + "value": 23, + }, + { + "category": "Pet", + "configData": { + "cv": 3, + "id": "Huge Chroma Doodle Axolotl", + }, + "value": 68207473, + }, + { + "category": "Pet", + "configData": { + "id": "Grimoire Agony", + "pt": 2, + }, + "value": 132, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Bee", + }, + "value": 814, + }, + { + "category": "Pet", + "configData": { + "id": "Fiddlefern Cat", + }, + "value": 35, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Axolotl", + "pt": 2, + }, + "value": 86, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Hedgehog", + "pt": 2, + }, + "value": 40, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luchador Eagle", + }, + "value": 135324053, + }, + { + "category": "Enchant", + "configData": { + "id": "Explosive", + "tn": 1, + }, + "value": 9370, + }, + { + "category": "Misc", + "configData": { + "id": "Magic Coin Jar", + }, + "value": 4, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Astra", + "sh": true, + }, + "value": 1722809741, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snowman", + }, + "value": 749541334, + }, + { + "category": "Lootbox", + "configData": { + "id": "Global Event Gift", + }, + "value": 5634595, + }, + { + "category": "Misc", + "configData": { + "id": "Prison Key", + }, + "value": 151838, + }, + { + "category": "Misc", + "configData": { + "id": "Golden Prison Key", + }, + "value": 206653, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Griffin", + "sh": true, + }, + "value": 102088591, + }, + { + "category": "Booth", + "configData": { + "id": "Turkey", + }, + "value": 579639, + }, + { + "category": "Tower", + "configData": { + "id": "Safari Monkey", + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Cosmic Dragon", + }, + "value": 15430593, + }, + { + "category": "Misc", + "configData": { + "id": "Strength Flag", + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Axolotl", + "pt": 2, + }, + "value": 73, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Walrus", + }, + "value": 21257740, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bejeweled Unicorn", + "sh": true, + }, + "value": 544338156, + }, + { + "category": "Enchant", + "configData": { + "id": "Lucky Eggs", + "tn": 3, + }, + "value": 104, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Hellfire", + }, + "value": 2757196, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chesnut Chipmunk", + "pt": 1, + }, + "value": 26641482, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Mining Monkey", + }, + "value": 29404957, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mining Monkey", + "sh": true, + }, + "value": 127086319, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Wolf", + }, + "value": 67, + }, + { + "category": "Potion", + "configData": { + "id": "Lucky", + "tn": 11, + }, + "value": 2854777, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hippomint", + "pt": 2, + }, + "value": 183761883, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 28", + }, + "value": 273860567, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Polar Bear", + "pt": 2, + }, + "value": 144475138, + }, + { + "category": "Enchant", + "configData": { + "id": "Fruity", + "tn": 1, + }, + "value": 18563, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Hacker", + }, + "value": 11217767, + }, + { + "category": "XPPotion", + "configData": { + "id": "Ultra Huge", + }, + "value": 609975038, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mining Penguin", + "pt": 2, + }, + "value": 150924477, + }, + { + "category": "Egg", + "configData": { + "id": "Valentines Present", + }, + "value": 296012667, + }, + { + "category": "Pet", + "configData": { + "id": "Krampus", + "pt": 1, + }, + "value": 50088, + }, + { + "category": "Potion", + "configData": { + "id": "Damage", + "tn": 5, + }, + "value": 31, + }, + { + "category": "Pet", + "configData": { + "id": "Wild Frost Agony", + "pt": 2, + }, + "value": 52, + }, + { + "category": "Misc", + "configData": { + "id": "Rainbow Swirl", + }, + "value": 73, + }, + { + "category": "Misc", + "configData": { + "id": "Diamond Shovel", + }, + "value": 3464730, + }, + { + "category": "Pet", + "configData": { + "id": "Candycane Kitsune", + }, + "value": 348998, + }, + { + "category": "Pet", + "configData": { + "id": "Umbrella Cat", + "sh": true, + }, + "value": 23578, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Reindeer Agony", + }, + "value": 45691660, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glitched Unicorn Ball", + "pt": 2, + }, + "value": 124362251, + }, + { + "category": "Pet", + "configData": { + "id": "Huge North Pole Unicorn", + "pt": 2, + }, + "value": 127820653, + }, + { + "category": "Pet", + "configData": { + "id": "Angelus", + }, + "value": 86, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elephant", + "pt": 2, + }, + "value": 153162548, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hydra Dino", + }, + "value": 151628653, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mech Dino", + "pt": 1, + }, + "value": 42151956, + }, + { + "category": "Pet", + "configData": { + "id": "Flamingo Cat", + }, + "value": 53, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Snow Globe Snowman", + }, + "value": 5679794710, + }, + { + "category": "Misc", + "configData": { + "id": "Pet Cube", + }, + "value": 221, + }, + { + "category": "Enchant", + "configData": { + "id": "Lucky Eggs", + "tn": 5, + }, + "value": 56, + }, + { + "category": "Pet", + "configData": { + "id": "Unicorn Dragon", + }, + "value": 8751716, + }, + { + "category": "Pet", + "configData": { + "id": "Classic Dog", + "pt": 2, + }, + "value": 15519306, + }, + { + "category": "Pet", + "configData": { + "id": "Cupcake Hamster", + "pt": 2, + }, + "value": 27, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Squirrel", + "pt": 2, + "sh": true, + }, + "value": 73, + }, + { + "category": "Pet", + "configData": { + "id": "Jester Dog", + }, + "value": 6948196, + }, + { + "category": "Pet", + "configData": { + "id": "Totem Wolf", + }, + "value": 9146724, + }, + { + "category": "Pet", + "configData": { + "id": "Chef Monkey", + "pt": 2, + }, + "value": 43, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Axolotl", + }, + "value": 1098425, + }, + { + "category": "Pet", + "configData": { + "id": "Hellhound", + "sh": true, + }, + "value": 573600, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Dog", + "sh": true, + }, + "value": 1147030, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Spider", + }, + "value": 50, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Basket Bunny", + }, + "value": 38904200, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pumpkin Cat", + "pt": 2, + }, + "value": 2710537670, + }, + { + "category": "Pet", + "configData": { + "id": "Capybara", + }, + "value": 22357621, + }, + { + "category": "Pet", + "configData": { + "id": "Flex Bear", + }, + "value": 15615377, + }, + { + "category": "Pet", + "configData": { + "id": "Flex Fluffy Cat", + }, + "value": 7638068, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 50", + }, + "value": 313758758, + }, + { + "category": "Booth", + "configData": { + "id": "School", + }, + "value": 10654471, + }, + { + "category": "Misc", + "configData": { + "id": "Old Boot", + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Toy Chest Mimic", + "pt": 2, + }, + "value": 176418784, + }, + { + "category": "Pet", + "configData": { + "id": "Creepy Yeti", + "pt": 2, + }, + "value": 28295, + }, + { + "category": "Pet", + "configData": { + "id": "Corrupt Skeleton", + "pt": 2, + }, + "value": 165, + }, + { + "category": "Pet", + "configData": { + "id": "Huge African Wild Dog", + }, + "value": 30743033, + }, + { + "category": "Booth", + "configData": { + "id": "Autumn", + }, + "value": 936415, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fluffy Cat", + }, + "value": 36364184, + }, + { + "category": "Pet", + "configData": { + "id": "Cool Corgi", + }, + "value": 9602141, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Cat", + "sh": true, + }, + "value": 2243, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crocodile", + }, + "value": 25732308, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Basket Bunny", + "pt": 2, + }, + "value": 144247093, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Knight Beagle", + }, + "value": 31109475, + }, + { + "category": "Pet", + "configData": { + "id": "Avenging Griffin", + "pt": 2, + }, + "value": 163, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Slime", + }, + "value": 36327878, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Plague Dragon", + }, + "value": 74610680, + }, + { + "category": "Lootbox", + "configData": { + "id": "Dino Gift", + }, + "value": 493906, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Devil Tasmanian", + }, + "value": 5110557941, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ghostly Wolf", + }, + "value": 4685877252, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shadow Dominus", + "pt": 2, + }, + "value": 189777085, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Snow Globe Snowman", + "sh": true, + }, + "value": 20198069105, + }, + { + "category": "Pet", + "configData": { + "id": "Coconut Corgi", + }, + "value": 73, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blurred Bear Ball", + }, + "value": 26403339, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tralala Brainrot", + }, + "value": 299756449, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Player Corgi", + }, + "value": 24545982, + }, + { + "category": "Pet", + "configData": { + "id": "Gingerbread Angelus", + "pt": 2, + }, + "value": 388619, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Old Wizard Cat", + }, + "value": 5300733174, + }, + { + "category": "Pet", + "configData": { + "cv": 1, + "id": "Huge Chroma Butterfly", + }, + "value": 92522220, + }, + { + "category": "Consumable", + "configData": { + "id": "Factory Speed Booster", + "tn": 1, + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Sphinx", + "sh": true, + }, + "value": 6642, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ghost Axolotl", + }, + "value": 4902821235, + }, + { + "category": "Pet", + "configData": { + "id": "UV Kitsune Ball", + }, + "value": 87, + }, + { + "category": "Lootbox", + "configData": { + "id": "Hellfire Gift", + }, + "value": 294661, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Dog", + }, + "value": 121, + }, + { + "category": "Pet", + "configData": { + "id": "Royal Cloud Cat", + }, + "value": 20, + }, + { + "category": "Pet", + "configData": { + "id": "Cloud Hedgehog", + }, + "value": 30, + }, + { + "category": "Pet", + "configData": { + "id": "Peppermint Angelus", + }, + "value": 24558185, + }, + { + "category": "Lootbox", + "configData": { + "id": "2024 Small Christmas Present", + }, + "value": 20631, + }, + { + "category": "Pet", + "configData": { + "id": "Fairy Grasshopper", + "sh": true, + }, + "value": 1362, + }, + { + "category": "Potion", + "configData": { + "id": "Diamonds", + "tn": 2, + }, + "value": 63, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightfall Wolf", + }, + "value": 527996059, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Giraffe", + "pt": 2, + }, + "value": 151760876, + }, + { + "category": "Misc", + "configData": { + "id": "Blue Christmas Ornament", + }, + "value": 2186, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Strawberry Corgi", + }, + "value": 84204193, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mystical Whale", + "pt": 1, + }, + "value": 34814543, + }, + { + "category": "Pet", + "configData": { + "id": "Vibrant Whale", + }, + "value": 77, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dominus Darkwing", + }, + "value": 581040865, + }, + { + "category": "Pet", + "configData": { + "id": "Pegasus", + }, + "value": 4, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Corrupt Butterfly", + "pt": 1, + }, + "value": 33476228, + }, + { + "category": "Misc", + "configData": { + "id": "Glitched Drive", + }, + "value": 32362568, + }, + { + "category": "Pet", + "configData": { + "id": "Dino Dog", + "pt": 2, + }, + "value": 13979, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Pizza", + }, + "value": 73692367, + }, + { + "category": "Enchant", + "configData": { + "id": "Lucky Eggs", + "tn": 8, + }, + "value": 15396, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cappuccina Brainrot", + }, + "value": 82526834, + }, + { + "category": "Enchant", + "configData": { + "id": "Fortune", + "tn": 1, + }, + "value": 761, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Emerald Owl", + }, + "value": 31974750, + }, + { + "category": "Pet", + "configData": { + "id": "Emerald Carbuncle", + }, + "value": 112, + }, + { + "category": "Pet", + "configData": { + "id": "Green Cobra", + }, + "value": 31349, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Zebra", + "pt": 2, + }, + "value": 141256426, + }, + { + "category": "Pet", + "configData": { + "id": "Fiddlefern Cat", + "pt": 1, + }, + "value": 56, + }, + { + "category": "Pet", + "configData": { + "id": "Matryoshka Dino", + "pt": 2, + }, + "value": 23440510, + }, + { + "category": "Pet", + "configData": { + "id": "Aura Dominus", + "pt": 2, + }, + "value": 49758976, + }, + { + "category": "Pet", + "configData": { + "id": "Blazing Bat", + "pt": 2, + }, + "value": 24541269, + }, + { + "category": "Pet", + "configData": { + "id": "Stealth Bobcat", + "pt": 2, + }, + "value": 46540297, + }, + { + "category": "Pet", + "configData": { + "id": "Stealth Dragon", + "pt": 2, + }, + "value": 34688339, + }, + { + "category": "Pet", + "configData": { + "id": "Light Spirit", + "pt": 2, + }, + "value": 26777177, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Whale Shark", + "pt": 2, + }, + "value": 149582856, + }, + { + "category": "Pet", + "configData": { + "id": "Dot Matrix Snail", + "pt": 2, + }, + "value": 14943483, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Royal Peacock", + "pt": 2, + }, + "value": 136161835, + }, + { + "category": "Pet", + "configData": { + "id": "Luchador Eagle", + "pt": 2, + }, + "value": 49361852, + }, + { + "category": "Pet", + "configData": { + "id": "Sentry Drake", + "pt": 1, + }, + "value": 779, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Mining Cat", + }, + "value": 23, + }, + { + "category": "Pet", + "configData": { + "id": "Guilded Raven", + }, + "value": 3, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Dog", + }, + "value": 21, + }, + { + "category": "Pet", + "configData": { + "id": "Happy Rock", + }, + "value": 18, + }, + { + "category": "Pet", + "configData": { + "id": "Chicken", + }, + "value": 11, + }, + { + "category": "Pet", + "configData": { + "id": "Stealth Cat", + "pt": 2, + }, + "value": 36945918, + }, + { + "category": "Pet", + "configData": { + "id": "Dino", + "pt": 1, + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Black Bear", + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Cyclops", + }, + "value": 41704, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Ducky", + "pt": 2, + }, + "value": 142757538, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Dragon", + }, + "value": 4, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Cat", + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Pajamas Dog", + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Blossom Bunny", + }, + "value": 11, + }, + { + "category": "Pet", + "configData": { + "id": "Super Tiger", + "pt": 2, + }, + "value": 24200503, + }, + { + "category": "Pet", + "configData": { + "id": "Atlantean Stingray", + "pt": 2, + }, + "value": 54723930, + }, + { + "category": "Pet", + "configData": { + "id": "Cupid Corgi", + "pt": 2, + }, + "value": 13022376, + }, + { + "category": "Pet", + "configData": { + "id": "Aura Bull", + "pt": 2, + }, + "value": 31719228, + }, + { + "category": "Pet", + "configData": { + "id": "Nightfall Wolf", + "pt": 2, + }, + "value": 65730800, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Elephant", + "pt": 2, + }, + "value": 31219913, + }, + { + "category": "Pet", + "configData": { + "id": "Nightfall Ram", + "pt": 2, + }, + "value": 87180597, + }, + { + "category": "Card", + "configData": { + "id": "Gamer Shiba Card", + "pt": 1, + }, + "value": 164, + }, + { + "category": "Pet", + "configData": { + "id": "Hologram Shark", + "pt": 2, + }, + "value": 54473218, + }, + { + "category": "Pet", + "configData": { + "id": "Deerserker", + "pt": 1, + }, + "value": 524, + }, + { + "category": "Pet", + "configData": { + "id": "Wave Spirit", + "pt": 2, + }, + "value": 46571953, + }, + { + "category": "Pet", + "configData": { + "id": "Orange Axolotl", + "pt": 2, + }, + "value": 31196569, + }, + { + "category": "Pet", + "configData": { + "id": "Valkyrie Dragon", + "pt": 2, + }, + "value": 24352019, + }, + { + "category": "Enchant", + "configData": { + "id": "Criticals", + "tn": 7, + }, + "value": 714, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kraken", + }, + "value": 865407311, + }, + { + "category": "Potion", + "configData": { + "id": "Damage", + "tn": 3, + }, + "value": 19, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Frontman Jellyfish", + }, + "value": 2384296367, + }, + { + "category": "Lootbox", + "configData": { + "id": "Mega Enchant Chest", + }, + "value": 2312205, + }, + { + "category": "Potion", + "configData": { + "id": "Damage", + "tn": 7, + }, + "value": 528, + }, + { + "category": "Pet", + "configData": { + "id": "Aura Fox", + "pt": 2, + }, + "value": 21533788, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mystical Whale", + }, + "value": 45694087, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Shark", + "pt": 2, + }, + "value": 142563729, + }, + { + "category": "Pet", + "configData": { + "id": "Emoji Cat", + "pt": 2, + }, + "value": 26378886, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Maple Owl", + "sh": true, + }, + "value": 113011478, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hot Dog", + }, + "value": 520841532, + }, + { + "category": "Pet", + "configData": { + "id": "Deerserker", + "pt": 2, + }, + "value": 499, + }, + { + "category": "Misc", + "configData": { + "id": "Hasty Flag", + }, + "value": 7, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Art", + }, + "value": 949584, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Easter Bunny", + }, + "value": 3936953, + }, + { + "category": "Pet", + "configData": { + "id": "Elephant", + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Chad Bunny", + "pt": 2, + }, + "value": 59773949, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Festive Cat", + }, + "value": 591984785, + }, + { + "category": "Pet", + "configData": { + "id": "Present Chest Mimic", + "pt": 2, + }, + "value": 84962742, + }, + { + "category": "Pet", + "configData": { + "id": "Exquisite Elephant", + "pt": 2, + }, + "value": 70529773, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Deer", + "pt": 1, + }, + "value": 16477030, + }, + { + "category": "Potion", + "configData": { + "id": "Lucky", + "tn": 3, + }, + "value": 26, + }, + { + "category": "Pet", + "configData": { + "id": "Mr. Love Cat", + "pt": 2, + }, + "value": 75, + }, + { + "category": "Pet", + "configData": { + "id": "Luchador Coyote", + "pt": 2, + }, + "value": 11395301, + }, + { + "category": "Pet", + "configData": { + "id": "Flex Fluffy Cat", + "pt": 2, + }, + "value": 34915178, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Reindeer Cat", + "pt": 1, + }, + "value": 7155106056, + }, + { + "category": "Lootbox", + "configData": { + "id": "Adventurer Lootbox", + }, + "value": 20969645, + }, + { + "category": "Pet", + "configData": { + "id": "Stealth Dragon", + "pt": 1, + }, + "value": 29832571, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Turtle", + }, + "value": 24744759, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Griffin", + "pt": 2, + }, + "value": 31724333, + }, + { + "category": "Pet", + "configData": { + "id": "Golden Retriever", + "pt": 2, + }, + "value": 1554, + }, + { + "category": "Pet", + "configData": { + "id": "Flamortuus", + }, + "value": 17, + }, + { + "category": "Pet", + "configData": { + "id": "Mr Krabs", + "pt": 2, + }, + "value": 43832098, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 43", + }, + "value": 497638723, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 52", + }, + "value": 376990999, + }, + { + "category": "Enchant", + "configData": { + "id": "Super Magnet", + "tn": 1, + }, + "value": 8717403300, + }, + { + "category": "Pet", + "configData": { + "id": "Stealth Dragon", + }, + "value": 20241994, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Redstone Cat", + }, + "value": 256622703, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Koi Fish", + "pt": 1, + }, + "value": 30937237, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Autumn Teddy Bear", + "pt": 1, + }, + "value": 6829612321, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Banana", + }, + "value": 107754951, + }, + { + "category": "Pet", + "configData": { + "id": "Sketch Corgi", + "pt": 2, + }, + "value": 23217350, + }, + { + "category": "Pet", + "configData": { + "id": "Dot Matrix Cat", + "pt": 2, + }, + "value": 24234365, + }, + { + "category": "Pet", + "configData": { + "id": "Research Dog", + "pt": 2, + }, + "value": 121, + }, + { + "category": "Pet", + "configData": { + "id": "Super Bat", + "pt": 2, + }, + "value": 22786858, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rhino", + }, + "value": 22458834, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Corrupt", + }, + "value": 82223062, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Green Cobra", + "pt": 2, + }, + "value": 133412595, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightfall Pegasus", + "pt": 2, + }, + "value": 3791490877, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pastel Deer", + "pt": 1, + }, + "value": 22222011, + }, + { + "category": "Card", + "configData": { + "id": "Anime Tanuki Card", + }, + "value": 884164, + }, + { + "category": "Pet", + "configData": { + "id": "Balloon Axolotl", + "pt": 2, + }, + "value": 41362796, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Otter", + }, + "value": 24994958, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Wolf", + "pt": 2, + }, + "value": 71, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Elephant", + "pt": 1, + }, + "value": 24895479, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stunt Cat", + "pt": 1, + }, + "value": 24698723, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic North Pole Unicorn", + "pt": 1, + }, + "value": 5700903159, + }, + { + "category": "Pet", + "configData": { + "id": "Paintbot Spider", + "pt": 2, + }, + "value": 31, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Cow", + "pt": 2, + }, + "value": 487, + }, + { + "category": "Pet", + "configData": { + "id": "Graffiti Raccoon", + "pt": 2, + }, + "value": 80, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Corgi", + "pt": 2, + }, + "value": 39381976, + }, + { + "category": "Pet", + "configData": { + "id": "Snowman", + "pt": 1, + }, + "value": 23, + }, + { + "category": "Pet", + "configData": { + "id": "Graffiti Dino", + "pt": 2, + }, + "value": 56, + }, + { + "category": "Pet", + "configData": { + "id": "Tralala Brainrot", + }, + "value": 21491334, + }, + { + "category": "Pet", + "configData": { + "id": "Candycorn Unicorn", + "pt": 2, + }, + "value": 18156913, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Guilded Raven", + }, + "value": 6539904535, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Owl", + }, + "value": 9697, + }, + { + "category": "Booth", + "configData": { + "id": "Haunted", + }, + "value": 964544, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Candycane Unicorn", + "pt": 2, + }, + "value": 185901138, + }, + { + "category": "Booth", + "configData": { + "id": "Hippomelon", + }, + "value": 992091, + }, + { + "category": "Pet", + "configData": { + "id": "Triceratops", + "pt": 2, + }, + "value": 27, + }, + { + "category": "Pet", + "configData": { + "id": "Purple Cobra", + }, + "value": 34, + }, + { + "category": "Booth", + "configData": { + "id": "Barbell", + }, + "value": 9821056, + }, + { + "category": "Pet", + "configData": { + "id": "Patchwork Yeti", + }, + "value": 15969857, + }, + { + "category": "Booth", + "configData": { + "id": "Dino Cat", + }, + "value": 2138123, + }, + { + "category": "Pet", + "configData": { + "id": "Junkyard Hound Ball", + }, + "value": 41, + }, + { + "category": "Booth", + "configData": { + "id": "Summer", + }, + "value": 501958, + }, + { + "category": "Booth", + "configData": { + "id": "Giraffe", + }, + "value": 210693, + }, + { + "category": "Potion", + "configData": { + "id": "Diamonds", + "tn": 5, + }, + "value": 31, + }, + { + "category": "Booth", + "configData": { + "id": "Fruit", + }, + "value": 4364195, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Narwhal", + }, + "value": 6034776352, + }, + { + "category": "Misc", + "configData": { + "id": "Fireworks", + }, + "value": 241, + }, + { + "category": "Booth", + "configData": { + "id": "Error", + }, + "value": 411404, + }, + { + "category": "Booth", + "configData": { + "id": "Elemental", + }, + "value": 1749641, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Prison Cat", + }, + "value": 30570892, + }, + { + "category": "Enchant", + "configData": { + "id": "Tap Power", + "tn": 5, + }, + "value": 32, + }, + { + "category": "Potion", + "configData": { + "id": "Coins", + "tn": 2, + }, + "value": 37, + }, + { + "category": "Pet", + "configData": { + "id": "Grim Reaper", + }, + "value": 267, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Night Terror", + }, + "value": 1929804, + }, + { + "category": "Enchant", + "configData": { + "id": "Tap Teamwork", + "tn": 1, + }, + "value": 50, + }, + { + "category": "Potion", + "configData": { + "id": "Damage", + "tn": 2, + }, + "value": 34, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Midnight Zebra", + }, + "value": 155315091, + }, + { + "category": "Enchant", + "configData": { + "id": "Strong Pets", + "tn": 5, + }, + "value": 12, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Crackling Dragon", + }, + "value": 5659747508, + }, + { + "category": "Enchant", + "configData": { + "id": "Lucky Eggs", + "tn": 4, + }, + "value": 59, + }, + { + "category": "Enchant", + "configData": { + "id": "Treasure Hunter", + "tn": 4, + }, + "value": 29, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Mosaic", + }, + "value": 54288856, + }, + { + "category": "Potion", + "configData": { + "id": "Coins", + "tn": 5, + }, + "value": 29, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Flex Tiger", + }, + "value": 142505453, + }, + { + "category": "Potion", + "configData": { + "id": "Treasure Hunter", + "tn": 5, + }, + "value": 25, + }, + { + "category": "Potion", + "configData": { + "id": "Coins", + "tn": 4, + }, + "value": 32, + }, + { + "category": "Enchant", + "configData": { + "id": "Criticals", + "tn": 6, + }, + "value": 26, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mrs. Claws", + }, + "value": 398156241, + }, + { + "category": "Potion", + "configData": { + "id": "Treasure Hunter", + "tn": 4, + }, + "value": 56, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ooze Cat", + }, + "value": 6332809866, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Bee", + }, + "value": 25292023, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pumpkin Cat", + }, + "value": 736718922, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Amethyst Dragon", + }, + "value": 630813537, + }, + { + "category": "Pet", + "configData": { + "id": "Chef Monkey", + }, + "value": 10, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Dragon", + }, + "value": 22, + }, + { + "category": "Pet", + "configData": { + "id": "Trojan Horse", + "pt": 2, + }, + "value": 35, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Griffin", + }, + "value": 87, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Panda", + }, + "value": 1158, + }, + { + "category": "Pet", + "configData": { + "id": "Lava Slime", + }, + "value": 24, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snowflake Dragon", + "pt": 1, + }, + "value": 58281320, + }, + { + "category": "Pet", + "configData": { + "id": "Butterfly", + }, + "value": 8, + }, + { + "category": "Pet", + "configData": { + "id": "Ugly Duckling", + }, + "value": 54, + }, + { + "category": "Pet", + "configData": { + "id": "Wyvern of Hades", + }, + "value": 3602, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shadow Dominus", + }, + "value": 65435176, + }, + { + "category": "Pet", + "configData": { + "id": "Gingerbread Angelus", + "sh": true, + }, + "value": 1669907, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightfall Pegasus", + }, + "value": 615754230, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anime Unicorn", + }, + "value": 828150846, + }, + { + "category": "Enchant", + "configData": { + "id": "Walkspeed", + "tn": 2, + }, + "value": 68, + }, + { + "category": "Pet", + "configData": { + "id": "Haxolotl", + }, + "value": 38, + }, + { + "category": "Egg", + "configData": { + "id": "Cosmic Basketball Egg", + }, + "value": 271202598, + }, + { + "category": "Enchant", + "configData": { + "id": "Strong Pets", + "tn": 6, + }, + "value": 46, + }, + { + "category": "Booth", + "configData": { + "id": "Pet Games", + }, + "value": 945729, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Huge Chroma Phoenix", + }, + "value": 57510226, + }, + { + "category": "Pet", + "configData": { + "id": "Sleigh Axolotl", + "sh": true, + }, + "value": 39692395, + }, + { + "category": "Booth", + "configData": { + "id": "Cauldron", + }, + "value": 967470, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Super Corgi", + }, + "value": 685746101, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Astra", + }, + "value": 1071636043, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sleigh Cat", + }, + "value": 37964087, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chocolate Bunny", + }, + "value": 26007054, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Cat", + }, + "value": 17, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Player Corgi", + "pt": 1, + }, + "value": 22153878, + }, + { + "category": "Pet", + "configData": { + "id": "Abstract Agony", + }, + "value": 18, + }, + { + "category": "Misc", + "configData": { + "id": "Golden Watering Can", + }, + "value": 74022, + }, + { + "category": "Booth", + "configData": { + "id": "Dino", + }, + "value": 956180, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Cocoa Cow", + "sh": true, + }, + "value": 26, + }, + { + "category": "Enchant", + "configData": { + "id": "Magnet", + "tn": 2, + }, + "value": 61, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Crocodile", + }, + "value": 16, + }, + { + "category": "Pet", + "configData": { + "id": "Lava Scorpion", + }, + "value": 86352855, + }, + { + "category": "Pet", + "configData": { + "id": "Toy Chest Mimic", + "pt": 2, + }, + "value": 7508, + }, + { + "category": "Pet", + "configData": { + "id": "Floatie Penguin", + "pt": 2, + }, + "value": 56, + }, + { + "category": "Enchant", + "configData": { + "id": "Diamonds", + "tn": 5, + }, + "value": 63, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ice Cube Penguin", + "pt": 2, + }, + "value": 393316684, + }, + { + "category": "Pet", + "configData": { + "id": "Snowflake Lattice Tiger", + "sh": true, + }, + "value": 23927576, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sloth", + "pt": 1, + }, + "value": 135081520, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Axolotl", + "pt": 2, + }, + "value": 48098055, + }, + { + "category": "Booth", + "configData": { + "id": "Throne", + }, + "value": 708362650, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Royal Peacock", + "pt": 1, + }, + "value": 24545561, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ice Snake", + "pt": 1, + }, + "value": 36707781, + }, + { + "category": "Enchant", + "configData": { + "id": "Lucky Eggs", + "tn": 7, + }, + "value": 995, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghostly Dragon", + "sh": true, + }, + "value": 297451859, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ooze Cat", + "pt": 1, + }, + "value": 26796616, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pastel Sock Bunny", + "pt": 1, + }, + "value": 35592492, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Silver Bison", + }, + "value": 220753572, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Santa Paws", + }, + "value": 2277759454, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glade Griffin", + }, + "value": 24244223, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valentines Unicorn", + }, + "value": 29732654, + }, + { + "category": "Enchant", + "configData": { + "id": "Treasure Hunter", + "tn": 3, + }, + "value": 91, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Neon Cat", + }, + "value": 428134913, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valkyrie Dog", + }, + "value": 153563248, + }, + { + "category": "Enchant", + "configData": { + "id": "Criticals", + "tn": 3, + }, + "value": 94, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Dragon", + }, + "value": 106, + }, + { + "category": "Enchant", + "configData": { + "id": "Magic Orb", + "tn": 1, + }, + "value": 5250801, + }, + { + "category": "Potion", + "configData": { + "id": "Diamonds", + "tn": 4, + }, + "value": 27, + }, + { + "category": "Booth", + "configData": { + "id": "Vampire", + }, + "value": 200510789, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valkyrie Wolf", + }, + "value": 339833395, + }, + { + "category": "Pet", + "configData": { + "id": "Black Widow", + }, + "value": 12, + }, + { + "category": "Potion", + "configData": { + "id": "Damage", + "tn": 10, + }, + "value": 7344, + }, + { + "category": "Pet", + "configData": { + "id": "Blue Fish", + }, + "value": 36, + }, + { + "category": "Card", + "configData": { + "id": "Huge Nightmare Dog Card", + }, + "value": 26487020, + }, + { + "category": "Enchant", + "configData": { + "id": "Strong Pets", + "tn": 3, + }, + "value": 76, + }, + { + "category": "Pet", + "configData": { + "id": "Emerald Monkey", + }, + "value": 10991662, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 53", + }, + "value": 297932176, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ducky", + }, + "value": 883737799, + }, + { + "category": "Pet", + "configData": { + "id": "Fairy Grasshopper", + "pt": 1, + }, + "value": 67, + }, + { + "category": "Pet", + "configData": { + "id": "Aura Bull", + }, + "value": 16013291, + }, + { + "category": "Lootbox", + "configData": { + "id": "School Gift", + }, + "value": 461988, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pajamas Shark", + "pt": 2, + }, + "value": 112878376, + }, + { + "category": "Tool", + "configData": { + "id": "Event Kraken Fishing Rod", + }, + "value": 501519529, + }, + { + "category": "Pet", + "configData": { + "id": "Honey Bear", + "pt": 2, + }, + "value": 20600059, + }, + { + "category": "Card", + "configData": { + "id": "Blue BIG Maskot Card", + "pt": 2, + }, + "value": 276476, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Old Wizard Corgi", + }, + "value": 30657207, + }, + { + "category": "Card", + "configData": { + "id": "Ghostly Cat Card", + "pt": 2, + "sh": true, + }, + "value": 130241840, + }, + { + "category": "Pet", + "configData": { + "id": "Sleigh Axolotl", + "pt": 2, + "sh": true, + }, + "value": 625715198, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightmare Cyclops", + "pt": 2, + }, + "value": 2280479514, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bejeweled Unicorn", + "pt": 2, + }, + "value": 793578574, + }, + { + "category": "Pet", + "configData": { + "id": "Candycorn Unicorn", + "pt": 1, + }, + "value": 9527205, + }, + { + "category": "Seed", + "configData": { + "id": "Potion", + }, + "value": 3, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Globe Axolotl", + }, + "value": 9365626, + }, + { + "category": "Seed", + "configData": { + "id": "Coin", + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Atomic Monkey Ball", + "pt": 1, + }, + "value": 38778824, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Deerserker", + }, + "value": 23542326, + }, + { + "category": "Pet", + "configData": { + "id": "Rose Pooka", + "pt": 1, + "sh": true, + }, + "value": 634720, + }, + { + "category": "Booth", + "configData": { + "id": "Monkey", + }, + "value": 12154353, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cosmic Agony", + }, + "value": 1034393891, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ninja Axolotl", + "pt": 1, + }, + "value": 202226602, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gazelle", + }, + "value": 24538068, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crystal Dog", + "pt": 2, + }, + "value": 630807684, + }, + { + "category": "Misc", + "configData": { + "id": "Halloween Mask", + }, + "value": 7075, + }, + { + "category": "Pet", + "configData": { + "id": "Emoji Monkey", + "pt": 2, + }, + "value": 40646939, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel M-2 PROTOTYPE", + }, + "value": 275815520, + }, + { + "category": "Pet", + "configData": { + "id": "Moray Eel", + }, + "value": 156, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snowflake Dominus", + }, + "value": 67693810, + }, + { + "category": "Consumable", + "configData": { + "id": "Mining Coins Booster", + "tn": 1, + }, + "value": 95, + }, + { + "category": "Pet", + "configData": { + "id": "Aura Fox", + "sh": true, + }, + "value": 23718271, + }, + { + "category": "Pet", + "configData": { + "id": "Jurassic Beaver", + }, + "value": 16392014, + }, + { + "category": "Pet", + "configData": { + "id": "Buff Doge", + }, + "value": 19422156, + }, + { + "category": "Lootbox", + "configData": { + "id": "BIG Pack", + }, + "value": 16301360, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Narwhal", + "pt": 1, + }, + "value": 8, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Rudolph", + }, + "value": 4753686, + }, + { + "category": "Pet", + "configData": { + "id": "Jolly Penguin", + }, + "value": 769, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chesnut Chipmunk", + }, + "value": 26101916, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chef Cat", + }, + "value": 71584095, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dominus Lucki", + "pt": 1, + }, + "value": 941798324, + }, + { + "category": "Booth", + "configData": { + "id": "Enchant", + }, + "value": 923141, + }, + { + "category": "Booth", + "configData": { + "id": "Sandcastle", + }, + "value": 4518692, + }, + { + "category": "Pet", + "configData": { + "id": "Googly Shark", + }, + "value": 27595930, + }, + { + "category": "Pet", + "configData": { + "id": "Atlantean Orca", + "pt": 2, + }, + "value": 33470669, + }, + { + "category": "Booth", + "configData": { + "id": "Rainbow", + }, + "value": 447132, + }, + { + "category": "Pet", + "configData": { + "id": "Noob", + "pt": 2, + }, + "value": 56940003, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Splash Angelus", + }, + "value": 24016883058, + }, + { + "category": "Enchant", + "configData": { + "id": "Boss Lucky Block", + "tn": 1, + }, + "value": 1710526858, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 12", + }, + "value": 943099414, + }, + { + "category": "Pet", + "configData": { + "id": "Yellow Lucky Block", + }, + "value": 11982404609, + }, + { + "category": "Pet", + "configData": { + "id": "Stargazing Bear", + "pt": 2, + }, + "value": 29473698, + }, + { + "category": "Pet", + "configData": { + "id": "Fire Dog", + }, + "value": 497, + }, + { + "category": "Pet", + "configData": { + "id": "Neon Griffin", + }, + "value": 37647091, + }, + { + "category": "Pet", + "configData": { + "id": "Blossom Spirit", + "pt": 2, + }, + "value": 25183305, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Spectral Deer", + }, + "value": 26262713123, + }, + { + "category": "Misc", + "configData": { + "id": "Lucky Tile", + }, + "value": 26991, + }, + { + "category": "Pet", + "configData": { + "id": "Strawhat Tanuki", + "pt": 2, + }, + "value": 332, + }, + { + "category": "Misc", + "configData": { + "id": "Exotic Treasure Flag", + }, + "value": 339928, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Mining Penguin", + "sh": true, + }, + "value": 223233823, + }, + { + "category": "Enchant", + "configData": { + "id": "Strong Pets", + "tn": 10, + }, + "value": 1480933, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Corgi", + "pt": 1, + }, + "value": 49475056, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Exquisite Elephant", + }, + "value": 25791365, + }, + { + "category": "Lootbox", + "configData": { + "id": "Mega Ultimate Chest", + }, + "value": 17984725, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Cat", + "sh": true, + }, + "value": 120, + }, + { + "category": "Pet", + "configData": { + "id": "Googly Cat", + }, + "value": 8538220, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Beans Balloon Cat", + }, + "value": 55579123, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Owl", + "sh": true, + }, + "value": 26812726902, + }, + { + "category": "Potion", + "configData": { + "id": "Lucky", + "tn": 10, + }, + "value": 98871, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Giraffe", + }, + "value": 24014889, + }, + { + "category": "Card", + "configData": { + "id": "Kung Fu Monkey Card", + "pt": 1, + }, + "value": 1699322, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Exquisite Elephant", + "pt": 1, + }, + "value": 26575781, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pumpkin Dog", + "pt": 2, + }, + "value": 314465514, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skateboard Bulldog", + "pt": 1, + }, + "value": 22867634, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Marshmallow Kitsune", + "pt": 1, + }, + "value": 38225225, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Old Wizard Cat", + "pt": 2, + }, + "value": 165406850, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hell Rock", + "pt": 2, + }, + "value": 228836621, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Owl", + "pt": 1, + }, + "value": 38844, + }, + { + "category": "Pet", + "configData": { + "id": "Cappuccina Brainrot", + "sh": true, + }, + "value": 22948035, + }, + { + "category": "Pet", + "configData": { + "id": "Jungle Golem", + "pt": 2, + }, + "value": 605, + }, + { + "category": "Egg", + "configData": { + "id": "Huge Machine Egg 1", + }, + "value": 8525496040, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elemental Phoenix", + }, + "value": 49681532, + }, + { + "category": "Lootbox", + "configData": { + "id": "Tower Defense Gift", + }, + "value": 402077, + }, + { + "category": "Card", + "configData": { + "id": "Retro Bulldog Card", + "pt": 2, + }, + "value": 53739, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Bunny", + "pt": 1, + "sh": true, + }, + "value": 108, + }, + { + "category": "Pet", + "configData": { + "id": "Hacked Cat", + }, + "value": 44, + }, + { + "category": "Pet", + "configData": { + "id": "404 Demon", + }, + "value": 76, + }, + { + "category": "Pet", + "configData": { + "id": "Elf Golem", + "pt": 2, + "sh": true, + }, + "value": 101061446, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom King", + }, + "value": 1063691644, + }, + { + "category": "Pet", + "configData": { + "id": "Dino Axolotl", + }, + "value": 479, + }, + { + "category": "Pet", + "configData": { + "id": "Chad Elephant", + }, + "value": 7466074, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 29", + }, + "value": 230439172, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 51", + }, + "value": 251693301, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cupid Corgi", + "sh": true, + }, + "value": 366998311, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Corrupt Butterfly", + }, + "value": 49979199, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 14", + }, + "value": 1089643503, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 15", + }, + "value": 1049124236, + }, + { + "category": "Pet", + "configData": { + "id": "Axolotl", + "pt": 2, + }, + "value": 24, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Machete Dog", + }, + "value": 396035277, + }, + { + "category": "Pet", + "configData": { + "id": "Circuit Cat", + }, + "value": 16, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Floppa", + }, + "value": 659294749, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luchador Coyote", + }, + "value": 92014872, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shuriken Corgi", + }, + "value": 40154662, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Mole", + }, + "value": 1817, + }, + { + "category": "Pet", + "configData": { + "id": "Steampunk Crocodile", + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Guilded Raven", + "pt": 1, + }, + "value": 6971166500, + }, + { + "category": "Pet", + "configData": { + "id": "Robot Bee", + }, + "value": 35, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Ghostly Wolf Card", + "pt": 2, + }, + "value": 6395478663, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Reindeer Axolotl", + "pt": 1, + }, + "value": 710408508, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic North Pole Unicorn", + }, + "value": 5233911163, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Bat", + "pt": 2, + }, + "value": 57, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Walrus", + }, + "value": 28, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Penguin", + "pt": 1, + }, + "value": 1953, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Bear", + "pt": 1, + }, + "value": 504, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Dragon", + "pt": 1, + }, + "value": 11065, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Fox", + "pt": 1, + }, + "value": 18243, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Dragon", + }, + "value": 16, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Deer", + }, + "value": 176, + }, + { + "category": "Pet", + "configData": { + "id": "Prince Donkey", + "pt": 2, + }, + "value": 20, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Bunny", + }, + "value": 9906277, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Griffin", + }, + "value": 9448025, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Matryoshka Dino", + }, + "value": 414444135, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Ninja Red Panda", + }, + "value": 27, + }, + { + "category": "Misc", + "configData": { + "id": "Gold Christmas Ornament", + }, + "value": 355, + }, + { + "category": "Pet", + "configData": { + "id": "Steampunk Wolf", + }, + "value": 105, + }, + { + "category": "Pet", + "configData": { + "id": "Prince Donkey", + }, + "value": 37, + }, + { + "category": "Pet", + "configData": { + "id": "Haxigator", + }, + "value": 59, + }, + { + "category": "Pet", + "configData": { + "id": "Soul Cat", + }, + "value": 8260485, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Atlantean Jellyfish", + }, + "value": 64724701526, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Narwhal", + "pt": 1, + }, + "value": 7860094, + }, + { + "category": "Pet", + "configData": { + "id": "Melted Rock", + }, + "value": 223, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Walrus", + "pt": 1, + }, + "value": 208000572, + }, + { + "category": "Pet", + "configData": { + "id": "Melted Slime", + }, + "value": 22, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Narwhal", + }, + "value": 394, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Bear", + "pt": 2, + }, + "value": 43, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Griffin", + "pt": 1, + }, + "value": 245, + }, + { + "category": "Pet", + "configData": { + "id": "Prince Donkey", + "pt": 1, + }, + "value": 132, + }, + { + "category": "Pet", + "configData": { + "id": "Scarecrow Cat", + }, + "value": 8, + }, + { + "category": "Pet", + "configData": { + "id": "Piggy", + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Lamb", + }, + "value": 69, + }, + { + "category": "Pet", + "configData": { + "id": "Corgi", + "pt": 2, + }, + "value": 1303, + }, + { + "category": "Pet", + "configData": { + "id": "Dog", + "pt": 2, + }, + "value": 162, + }, + { + "category": "Pet", + "configData": { + "id": "Axolotl", + "pt": 1, + "sh": true, + }, + "value": 105141, + }, + { + "category": "Pet", + "configData": { + "id": "Dog", + "pt": 1, + "sh": true, + }, + "value": 5505770, + }, + { + "category": "Pet", + "configData": { + "id": "Cat", + "pt": 1, + }, + "value": 139, + }, + { + "category": "Pet", + "configData": { + "id": "Corgi", + "pt": 1, + }, + "value": 15, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Snowflake Dragon", + }, + "value": 120630063005, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Comet Cyclops Ball", + }, + "value": 6194201954, + }, + { + "category": "Potion", + "configData": { + "id": "Diamonds", + "tn": 8, + }, + "value": 8285, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Corgi", + }, + "value": 30061077, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Cocoa Cow", + "pt": 2, + "sh": true, + }, + "value": 280, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Otter", + "pt": 1, + }, + "value": 26249783, + }, + { + "category": "Pet", + "configData": { + "id": "Steampunk Octopus", + "pt": 1, + }, + "value": 269, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Dog", + "pt": 2, + }, + "value": 109537, + }, + { + "category": "Pet", + "configData": { + "id": "Ducky Magician", + "pt": 1, + }, + "value": 6560, + }, + { + "category": "Pet", + "configData": { + "id": "Love Peacock", + "pt": 2, + }, + "value": 70, + }, + { + "category": "Pet", + "configData": { + "id": "Steampunk Octopus", + }, + "value": 74, + }, + { + "category": "Pet", + "configData": { + "id": "Ducky Magician", + }, + "value": 1013, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Mining Cat", + "pt": 1, + }, + "value": 10399, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Wolf", + "pt": 1, + }, + "value": 215293, + }, + { + "category": "Pet", + "configData": { + "id": "Jolly Cat", + }, + "value": 252, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fragmented Dominus", + }, + "value": 1404184615, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Squirrel", + "pt": 1, + }, + "value": 140736, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Wolf", + }, + "value": 274, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Dragon", + }, + "value": 238, + }, + { + "category": "Pet", + "configData": { + "id": "Goblin", + }, + "value": 121, + }, + { + "category": "Pet", + "configData": { + "id": "Happy Computer", + "pt": 1, + }, + "value": 551, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Axolotl", + }, + "value": 85, + }, + { + "category": "Pet", + "configData": { + "id": "Melted Rock", + "pt": 1, + }, + "value": 28018, + }, + { + "category": "Pet", + "configData": { + "id": "Melted Slime", + "pt": 1, + }, + "value": 14878, + }, + { + "category": "Card", + "configData": { + "id": "Pog Dog Card", + "pt": 1, + }, + "value": 166, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gingerbread Angelus", + }, + "value": 6818149621, + }, + { + "category": "Booth", + "configData": { + "id": "Hellfire", + }, + "value": 435065, + }, + { + "category": "Booth", + "configData": { + "id": "Daycare", + }, + "value": 4563288, + }, + { + "category": "Pet", + "configData": { + "id": "Chesnut Chipmunk", + "pt": 2, + "sh": true, + }, + "value": 4529800, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Inferno Dominus", + }, + "value": 17281057733, + }, + { + "category": "Pet", + "configData": { + "id": "Heart Balloon Cat", + }, + "value": 34265645, + }, + { + "category": "Pet", + "configData": { + "id": "Pajamas Shark", + "pt": 2, + "sh": true, + }, + "value": 3514, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dragon", + }, + "value": 723151286, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doodle Fairy", + }, + "value": 107264673, + }, + { + "category": "Pet", + "configData": { + "id": "Rose Garden Cat", + "pt": 1, + }, + "value": 58, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Fox", + "pt": 2, + }, + "value": 130781960, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Exquisite Parrot", + }, + "value": 49453675, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kangaroo", + "pt": 1, + }, + "value": 30946305, + }, + { + "category": "Pet", + "configData": { + "id": "Black Hole Axolotl", + }, + "value": 8431777, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nuclear Wild Dog", + "pt": 1, + }, + "value": 32361101, + }, + { + "category": "Pet", + "configData": { + "id": "Huge M-10 PROTOTYPE", + }, + "value": 872081873, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Red Panda", + "pt": 1, + }, + "value": 27169278, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dot Matrix Axolotl", + }, + "value": 380181217, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glowy the Ghost", + }, + "value": 32623291, + }, + { + "category": "Pet", + "configData": { + "id": "Honey Bear", + "sh": true, + }, + "value": 15172492, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nuclear Wild Dog", + "pt": 2, + }, + "value": 159269256, + }, + { + "category": "Pet", + "configData": { + "id": "Amethyst Dragon", + }, + "value": 27770779, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Nuclear Dominus", + "pt": 1, + }, + "value": 6355706723, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Mechanical Griffin", + }, + "value": 8380090124, + }, + { + "category": "Lootbox", + "configData": { + "id": "Good Gift", + }, + "value": 658887, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Crocodilo Brainrot", + }, + "value": 10151812965, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Aura Dominus", + }, + "value": 274863694, + }, + { + "category": "Pet", + "configData": { + "id": "Pixie Squirrel", + }, + "value": 91, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Penguin", + }, + "value": 8, + }, + { + "category": "Card", + "configData": { + "id": "Retro Bulldog Card", + }, + "value": 968, + }, + { + "category": "Pet", + "configData": { + "id": "Night Terror Dog", + }, + "value": 56, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Naughty Dominus", + }, + "value": 76388928, + }, + { + "category": "Potion", + "configData": { + "id": "Lucky", + "tn": 7, + }, + "value": 954, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Warrior Wolf", + "pt": 1, + }, + "value": 84692584, + }, + { + "category": "Potion", + "configData": { + "id": "Diamonds", + "tn": 7, + }, + "value": 2115, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sea Dragon", + }, + "value": 33421006, + }, + { + "category": "Pet", + "configData": { + "id": "Balloon Corgi", + }, + "value": 14775360, + }, + { + "category": "Pet", + "configData": { + "id": "Ender Slime", + "sh": true, + }, + "value": 1417, + }, + { + "category": "Pet", + "configData": { + "id": "Wireframe Dog", + "pt": 2, + }, + "value": 60, + }, + { + "category": "Card", + "configData": { + "id": "Error Cat Card", + "pt": 1, + }, + "value": 372, + }, + { + "category": "Pet", + "configData": { + "id": "Ender Slime", + "pt": 2, + }, + "value": 114, + }, + { + "category": "Pet", + "configData": { + "id": "Ender Slime", + "pt": 1, + }, + "value": 1146, + }, + { + "category": "Pet", + "configData": { + "id": "Robber Cat", + }, + "value": 40, + }, + { + "category": "Pet", + "configData": { + "id": "Corrupt Octopus", + }, + "value": 167, + }, + { + "category": "Pet", + "configData": { + "id": "Corrupt Skeleton", + }, + "value": 36, + }, + { + "category": "Pet", + "configData": { + "id": "Ender Slime", + }, + "value": 29, + }, + { + "category": "Card", + "configData": { + "id": "Red Balloon Panda Card", + }, + "value": 49166, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Dog", + "pt": 1, + }, + "value": 103054, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Dog", + }, + "value": 468734, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Bunny", + }, + "value": 246, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Meebo in a Spaceship", + }, + "value": 140, + }, + { + "category": "Pet", + "configData": { + "id": "Wireframe Cat", + "pt": 1, + }, + "value": 285, + }, + { + "category": "Pet", + "configData": { + "id": "Night Terror Dog", + "pt": 1, + }, + "value": 947, + }, + { + "category": "Pet", + "configData": { + "id": "Creepy Yeti", + "pt": 1, + }, + "value": 1068, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Cat", + "pt": 1, + }, + "value": 299, + }, + { + "category": "Pet", + "configData": { + "id": "Ender Goat", + "pt": 1, + }, + "value": 7557, + }, + { + "category": "Pet", + "configData": { + "id": "Anime Corgi", + }, + "value": 21289966, + }, + { + "category": "Card", + "configData": { + "id": "Huge Ghostly Dragon Card", + "sh": true, + }, + "value": 118124909, + }, + { + "category": "Pet", + "configData": { + "id": "Wireframe Cat", + }, + "value": 8, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Monkey", + }, + "value": 58, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Monkey", + }, + "value": 1826210329, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Monkey", + "pt": 2, + }, + "value": 13948, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Cat", + }, + "value": 18, + }, + { + "category": "Pet", + "configData": { + "id": "Cool Cat", + }, + "value": 7436731, + }, + { + "category": "Pet", + "configData": { + "id": "Gummy Bear", + }, + "value": 38, + }, + { + "category": "Pet", + "configData": { + "id": "Floatie Flamingo", + "sh": true, + }, + "value": 838479, + }, + { + "category": "Pet", + "configData": { + "id": "Balloon Dragon", + }, + "value": 10177936, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Valentines", + }, + "value": 941735, + }, + { + "category": "Pet", + "configData": { + "id": "Floatie Ducky", + "pt": 1, + "sh": true, + }, + "value": 2004, + }, + { + "category": "Pet", + "configData": { + "id": "Beach Ball Monkey", + "sh": true, + }, + "value": 987831, + }, + { + "category": "Pet", + "configData": { + "id": "Beach Ball Dolphin", + "sh": true, + }, + "value": 236, + }, + { + "category": "Pet", + "configData": { + "id": "Neon Cat", + }, + "value": 11893237, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Firegel Dragon", + }, + "value": 27909201027, + }, + { + "category": "Pet", + "configData": { + "id": "Beach Ball Dolphin", + "pt": 1, + "sh": true, + }, + "value": 5542, + }, + { + "category": "Pet", + "configData": { + "id": "Floatie Flamingo", + "pt": 1, + "sh": true, + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Ghostly Bunny", + "pt": 2, + }, + "value": 43941715, + }, + { + "category": "Card", + "configData": { + "id": "Huge Sea Dragon Card", + "pt": 1, + }, + "value": 9363630, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic North Pole Unicorn", + "pt": 2, + }, + "value": 18255431799, + }, + { + "category": "Pet", + "configData": { + "id": "Floatie Ducky", + "pt": 2, + "sh": true, + }, + "value": 210727, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Griffin", + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "Ender Goat", + }, + "value": 58, + }, + { + "category": "Pet", + "configData": { + "id": "Beach Ball Dolphin", + "pt": 1, + }, + "value": 13, + }, + { + "category": "Pet", + "configData": { + "id": "Beach Ball Dolphin", + "pt": 2, + }, + "value": 120, + }, + { + "category": "Pet", + "configData": { + "id": "Floatie Flamingo", + "pt": 2, + }, + "value": 3988, + }, + { + "category": "Pet", + "configData": { + "id": "Floatie Ducky", + "pt": 2, + }, + "value": 78, + }, + { + "category": "Pet", + "configData": { + "id": "Creepy Yeti", + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Ooze Axolotl", + }, + "value": 76, + }, + { + "category": "Pet", + "configData": { + "id": "Floatie Ducky", + "pt": 1, + }, + "value": 77, + }, + { + "category": "Pet", + "configData": { + "id": "Scuba Dog", + "pt": 1, + }, + "value": 2310963, + }, + { + "category": "Pet", + "configData": { + "id": "Surfboard Axolotl", + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Merry Mule", + "pt": 2, + }, + "value": 212028349, + }, + { + "category": "Pet", + "configData": { + "id": "Hooded Bobcat", + }, + "value": 17, + }, + { + "category": "Pet", + "configData": { + "id": "Robber Cat", + "pt": 2, + }, + "value": 4842, + }, + { + "category": "Pet", + "configData": { + "id": "Surfboard Axolotl", + "pt": 1, + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Dragon", + }, + "value": 29784927, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holly Capybara", + "pt": 2, + }, + "value": 133275691, + }, + { + "category": "Pet", + "configData": { + "id": "Hacker Corgi", + }, + "value": 43, + }, + { + "category": "Pet", + "configData": { + "id": "Hooded Piggy", + }, + "value": 883823, + }, + { + "category": "Pet", + "configData": { + "id": "Hooded Monkey", + }, + "value": 78, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Bunny", + "pt": 2, + }, + "value": 839, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Bunny", + "pt": 1, + }, + "value": 49285435, + }, + { + "category": "Pet", + "configData": { + "id": "Detective Cat", + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Cow", + "pt": 1, + }, + "value": 3, + }, + { + "category": "Pet", + "configData": { + "id": "Scuba Shark", + "pt": 1, + }, + "value": 7238, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Cow", + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Scuba Shark", + }, + "value": 6804, + }, + { + "category": "Pet", + "configData": { + "id": "Detective Cat", + "pt": 1, + }, + "value": 2244, + }, + { + "category": "Pet", + "configData": { + "id": "Robber Cat", + "pt": 1, + }, + "value": 3157, + }, + { + "category": "Misc", + "configData": { + "id": "Summer Block Party Ticket", + }, + "value": 261, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 42", + }, + "value": 607889039, + }, + { + "category": "Misc", + "configData": { + "id": "Snowball", + }, + "value": 8, + }, + { + "category": "Pet", + "configData": { + "id": "Gingerbread Angelus", + "pt": 2, + "sh": true, + }, + "value": 28785777, + }, + { + "category": "Pet", + "configData": { + "id": "Gleebo The Alien", + "pt": 2, + }, + "value": 201, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Balloon Cat", + }, + "value": 15475492, + }, + { + "category": "Enchant", + "configData": { + "id": "Diamonds", + "tn": 1, + }, + "value": 90, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stunt Cat", + }, + "value": 26948776, + }, + { + "category": "Pet", + "configData": { + "id": "Hacked Computer", + }, + "value": 12, + }, + { + "category": "Egg", + "configData": { + "id": "Series 2 Basic Gift", + }, + "value": 74800066, + }, + { + "category": "Pet", + "configData": { + "id": "Hacker Corgi", + "pt": 2, + }, + "value": 68, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sorcerer Bear", + "pt": 1, + "sh": true, + }, + "value": 303514249, + }, + { + "category": "Pet", + "configData": { + "id": "Hacker Bear", + "pt": 1, + }, + "value": 5848, + }, + { + "category": "Pet", + "configData": { + "id": "Hacker Bear", + }, + "value": 2046, + }, + { + "category": "Pet", + "configData": { + "id": "Hooded Monkey", + "pt": 2, + }, + "value": 467, + }, + { + "category": "Pet", + "configData": { + "id": "Cupid Corgi", + }, + "value": 14405349, + }, + { + "category": "Egg", + "configData": { + "id": "Series 2 Rare Gift", + }, + "value": 103129251, + }, + { + "category": "Pet", + "configData": { + "id": "Hooded Bobcat", + "pt": 2, + }, + "value": 1634, + }, + { + "category": "Pet", + "configData": { + "id": "Hacker Corgi", + "sh": true, + }, + "value": 3478, + }, + { + "category": "Pet", + "configData": { + "id": "Hooded Dragon", + }, + "value": 210, + }, + { + "category": "Pet", + "configData": { + "id": "Hacker Corgi", + "pt": 1, + }, + "value": 258, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Turtle", + "pt": 1, + }, + "value": 21420610, + }, + { + "category": "Pet", + "configData": { + "id": "Noob", + }, + "value": 36749746, + }, + { + "category": "Pet", + "configData": { + "id": "Merry Mule", + "sh": true, + }, + "value": 22480, + }, + { + "category": "Pet", + "configData": { + "id": "Player Piggy", + }, + "value": 44, + }, + { + "category": "Misc", + "configData": { + "id": "Silver Christmas Ornament", + }, + "value": 2179, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dino Dog", + }, + "value": 44460191, + }, + { + "category": "Misc", + "configData": { + "id": "Green Christmas Ornament", + }, + "value": 1000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evergreen Unicorn", + "pt": 1, + }, + "value": 25326774, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fancy Axolotl", + "pt": 1, + }, + "value": 25487280, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spitting Dino", + }, + "value": 38778762, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Bunny", + "pt": 2, + }, + "value": 1291736451, + }, + { + "category": "Enchant", + "configData": { + "id": "Coins", + "tn": 10, + }, + "value": 1188693, + }, + { + "category": "Pet", + "configData": { + "id": "Firefly", + }, + "value": 540, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Squirrel", + "sh": true, + }, + "value": 8, + }, + { + "category": "Card", + "configData": { + "id": "Ghostly Fox Card", + "sh": true, + }, + "value": 5926233, + }, + { + "category": "Pet", + "configData": { + "id": "Slasher Sloth", + }, + "value": 7262024, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ninja Dalmatian", + "pt": 2, + }, + "value": 134182377, + }, + { + "category": "Misc", + "configData": { + "id": "Ultra Pet Cube", + }, + "value": 41314, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Penguin", + "sh": true, + }, + "value": 128288714, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Robber Pug", + }, + "value": 27379845, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Arcade Dog", + "pt": 2, + }, + "value": 143378509, + }, + { + "category": "Enchant", + "configData": { + "id": "Treasure Hunter", + "tn": 2, + }, + "value": 69, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skeleton Cat", + "pt": 1, + }, + "value": 52301018, + }, + { + "category": "Pet", + "configData": { + "id": "Holly Capybara", + "sh": true, + }, + "value": 113, + }, + { + "category": "Card", + "configData": { + "id": "Empyrean Lion Card", + "pt": 1, + }, + "value": 3349, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Beach Ball Capybara", + }, + "value": 7301903483, + }, + { + "category": "Pet", + "configData": { + "id": "Orange Axolotl", + }, + "value": 12265355, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spectral Deer", + "pt": 1, + }, + "value": 109618902, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Sloth", + "pt": 2, + }, + "value": 189, + }, + { + "category": "Pet", + "configData": { + "id": "Strawberry Cow Ball", + }, + "value": 172, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ladybug", + "pt": 1, + }, + "value": 46353059, + }, + { + "category": "Pet", + "configData": { + "id": "Player Penguin", + "pt": 2, + }, + "value": 215, + }, + { + "category": "Pet", + "configData": { + "id": "Basketball Cat", + }, + "value": 494, + }, + { + "category": "Pet", + "configData": { + "id": "Autumn Retriever", + "sh": true, + }, + "value": 134704, + }, + { + "category": "Pet", + "configData": { + "id": "Tiger", + }, + "value": 13501, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Dragon", + "pt": 2, + }, + "value": 48, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ninja Capybara", + "pt": 1, + }, + "value": 131671896632, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Globe Hamster", + }, + "value": 8871228, + }, + { + "category": "Misc", + "configData": { + "id": "Nightmare Fuel", + }, + "value": 144569, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Snowflake Angelus", + }, + "value": 12522782455, + }, + { + "category": "Pet", + "configData": { + "id": "Lit Cat", + }, + "value": 178, + }, + { + "category": "Booth", + "configData": { + "id": "Balloon", + }, + "value": 3764324, + }, + { + "category": "Lootbox", + "configData": { + "id": "Medium Christmas Present", + }, + "value": 977445, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Arcade Angelus", + "sh": true, + }, + "value": 636425710, + }, + { + "category": "Pet", + "configData": { + "id": "White Bunny", + }, + "value": 33, + }, + { + "category": "Pet", + "configData": { + "cv": 2, + "id": "Huge Chroma Phoenix", + "pt": 2, + }, + "value": 498448588, + }, + { + "category": "Card", + "configData": { + "id": "Hot Dooooog Card", + "pt": 2, + }, + "value": 50155461, + }, + { + "category": "Pet", + "configData": { + "id": "Elemental Phoenix", + }, + "value": 11430, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bison", + }, + "value": 26458253, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Quantum Agony", + "pt": 1, + }, + "value": 48153514, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Disco Ball Agony", + }, + "value": 7456043904, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Autumn Retriever", + }, + "value": 49727046, + }, + { + "category": "Misc", + "configData": { + "id": "Golden Pencil", + }, + "value": 114, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leprechaun Cat", + }, + "value": 86960320, + }, + { + "category": "Card", + "configData": { + "id": "Hippomelon Card", + "pt": 2, + }, + "value": 9476086, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Dog", + }, + "value": 14562945, + }, + { + "category": "Card", + "configData": { + "id": "Hot Dooooog Card", + "sh": true, + }, + "value": 94190617, + }, + { + "category": "Card", + "configData": { + "id": "Hippomelon Card", + "sh": true, + }, + "value": 16949803, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stunt Cat", + "pt": 1, + "sh": true, + }, + "value": 711992724, + }, + { + "category": "Potion", + "configData": { + "id": "Damage", + "tn": 1, + }, + "value": 74, + }, + { + "category": "Potion", + "configData": { + "id": "Lucky", + "tn": 1, + }, + "value": 45, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Exquisite Parrot", + "sh": true, + }, + "value": 345141651, + }, + { + "category": "Enchant", + "configData": { + "id": "Diamonds", + "tn": 2, + }, + "value": 91, + }, + { + "category": "Enchant", + "configData": { + "id": "Criticals", + "tn": 2, + }, + "value": 82, + }, + { + "category": "Enchant", + "configData": { + "id": "Strong Pets", + "tn": 2, + }, + "value": 74, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crystal Dog", + }, + "value": 97420222, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Googly Blobfish", + }, + "value": 15535770563, + }, + { + "category": "Lootbox", + "configData": { + "id": "2024 Anniversary Gift", + }, + "value": 55482892, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Goblin", + }, + "value": 30078977, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sea Dragon", + "pt": 2, + }, + "value": 190978060, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Hacked Cat", + }, + "value": 637508984, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Otter", + "sh": true, + }, + "value": 135679298, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snowflake Pegasus", + "sh": true, + }, + "value": 143819158, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Blurred Agony", + }, + "value": 132882378689, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Surfboard Corgi", + }, + "value": 5389821344, + }, + { + "category": "Potion", + "configData": { + "id": "Treasure Hunter", + "tn": 2, + }, + "value": 67, + }, + { + "category": "Potion", + "configData": { + "id": "Walkspeed", + "tn": 2, + }, + "value": 62, + }, + { + "category": "Potion", + "configData": { + "id": "Walkspeed", + "tn": 1, + }, + "value": 28, + }, + { + "category": "Enchant", + "configData": { + "id": "Walkspeed", + "tn": 4, + }, + "value": 33, + }, + { + "category": "Enchant", + "configData": { + "id": "Criticals", + "tn": 4, + }, + "value": 96, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Classic Cat", + }, + "value": 15456630309, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gingerbread Dragon", + }, + "value": 11043946544, + }, + { + "category": "Potion", + "configData": { + "id": "Treasure Hunter", + "tn": 3, + }, + "value": 50, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Nightmare Corgi", + }, + "value": 19543637328, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Frog", + }, + "value": 33, + }, + { + "category": "Pet", + "configData": { + "id": "Fairy Queen", + }, + "value": 54268494, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gingerbread Lion", + "sh": true, + }, + "value": 92805918, + }, + { + "category": "Pet", + "configData": { + "id": "Squirrel", + }, + "value": 15, + }, + { + "category": "Booth", + "configData": { + "id": "Valentines", + }, + "value": 1033093, + }, + { + "category": "Pet", + "configData": { + "id": "Ghost Axolotl", + "pt": 1, + }, + "value": 2803, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glade Griffin", + "pt": 1, + }, + "value": 39407753, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Tiger", + }, + "value": 23430039, + }, + { + "category": "Egg", + "configData": { + "id": "Huge Machine Egg 4", + }, + "value": 1636873418, + }, + { + "category": "Pet", + "configData": { + "id": "Gamer Shiba", + "sh": true, + }, + "value": 44111, + }, + { + "category": "Pet", + "configData": { + "id": "Hellhound", + "pt": 2, + }, + "value": 20253, + }, + { + "category": "Pet", + "configData": { + "id": "Error Cat", + "pt": 2, + }, + "value": 13345, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Shark", + }, + "value": 4009, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Dolphin", + }, + "value": 3773, + }, + { + "category": "Misc", + "configData": { + "id": "Pet Token Boost", + }, + "value": 25907, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Monkey", + }, + "value": 26451097, + }, + { + "category": "Pet", + "configData": { + "id": "Sketch Dragon", + }, + "value": 16997029, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Dominus", + }, + "value": 15858399, + }, + { + "category": "Pet", + "configData": { + "id": "Nightmare Kraken", + "pt": 2, + }, + "value": 114502887, + }, + { + "category": "Pet", + "configData": { + "id": "Emoji Dog", + }, + "value": 14299268, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Elephant", + }, + "value": 10464295, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Shiba", + }, + "value": 15157916, + }, + { + "category": "Pet", + "configData": { + "id": "Sketch Cow", + }, + "value": 13980648, + }, + { + "category": "Pet", + "configData": { + "id": "Bull", + "pt": 1, + }, + "value": 5739, + }, + { + "category": "Pet", + "configData": { + "id": "Thunder Bear", + }, + "value": 10610831, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Deer", + }, + "value": 3577, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tropical Flamingo", + }, + "value": 25561841, + }, + { + "category": "Pet", + "configData": { + "id": "Huge BIG Maskot", + }, + "value": 461138115, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Festive Elf", + }, + "value": 23724728, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tropical Parrot", + }, + "value": 23536183, + }, + { + "category": "Pet", + "configData": { + "id": "Claw Beast", + }, + "value": 21714224, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gleebo The Alien", + }, + "value": 429084293, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tennis Squirrel", + "pt": 1, + }, + "value": 24000820, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Patchwork Capybara", + }, + "value": 14028627368, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nutcracker Squirrel", + "pt": 2, + }, + "value": 138825225, + }, + { + "category": "Pet", + "configData": { + "id": "Merry Mule", + "pt": 1, + "sh": true, + }, + "value": 38357, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pixel Dominus Astra", + }, + "value": 6420648962, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holiday Pegasus", + "sh": true, + }, + "value": 563261734, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Tank", + }, + "value": 609542744, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Holiday Owl", + }, + "value": 13583745140, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cupcake Pegasus", + "pt": 2, + }, + "value": 139750376, + }, + { + "category": "Enchant", + "configData": { + "id": "Superior Wisdom", + "tn": 1, + }, + "value": 1281518848, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Scarecrow Dog", + "pt": 2, + }, + "value": 222162328, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sapphire Phoenix", + }, + "value": 605546393, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Rave", + }, + "value": 1370515, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Aura", + }, + "value": 14790663, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Pufferfish", + }, + "value": 16, + }, + { + "category": "Pet", + "configData": { + "id": "Lumi Axolotl", + }, + "value": 1929, + }, + { + "category": "Pet", + "configData": { + "id": "Minecart Piggy", + "pt": 2, + }, + "value": 47, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sorcerer Bear", + "pt": 2, + }, + "value": 228038078, + }, + { + "category": "Misc", + "configData": { + "id": "Fantasy Key Upper Half", + }, + "value": 29183, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Krampus", + "pt": 2, + }, + "value": 497918361, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghostly Dragon", + "pt": 2, + }, + "value": 406310319, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bobcat", + "pt": 2, + }, + "value": 344717877, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Peacock", + }, + "value": 43656815, + }, + { + "category": "Lootbox", + "configData": { + "id": "Titanic Easter Gift", + }, + "value": 345177587, + }, + { + "category": "Pet", + "configData": { + "id": "Reaper Cat", + "pt": 1, + }, + "value": 47, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pumpkin Dog", + }, + "value": 72262173, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blue Lucky Block", + "pt": 2, + }, + "value": 393747199, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Krampus", + }, + "value": 57595810, + }, + { + "category": "Misc", + "configData": { + "id": "Red Christmas Ornament", + }, + "value": 1168, + }, + { + "category": "Pet", + "configData": { + "id": "Wave Spirit", + }, + "value": 13258759, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Toy Chest Mimic", + }, + "value": 53600810, + }, + { + "category": "Pet", + "configData": { + "id": "Ghostly Cat", + "pt": 2, + }, + "value": 30850349, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 55", + }, + "value": 195883390, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 10", + }, + "value": 899540866, + }, + { + "category": "Pet", + "configData": { + "id": "Stealth Cat", + }, + "value": 11285469, + }, + { + "category": "Lootbox", + "configData": { + "id": "Sun Angelus Gift", + }, + "value": 9872923, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Neon Griffin", + }, + "value": 855267577, + }, + { + "category": "Pet", + "configData": { + "id": "Huge African Wild Dog", + "pt": 2, + }, + "value": 200327938, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Beaver", + }, + "value": 24280857, + }, + { + "category": "Pet", + "configData": { + "id": "Anime Unicorn", + "pt": 2, + }, + "value": 27316929, + }, + { + "category": "Booth", + "configData": { + "id": "Abyssal", + }, + "value": 260361991, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Angry Yeti", + "pt": 1, + "sh": true, + }, + "value": 312819184, + }, + { + "category": "Pet", + "configData": { + "id": "Emerald Owl", + "pt": 2, + }, + "value": 61, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pixel Angelus", + }, + "value": 7727193111, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Forcefield", + }, + "value": 42770382, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Dominus", + }, + "value": 8797782, + }, + { + "category": "Pet", + "configData": { + "id": "Holly Capybara", + "pt": 2, + "sh": true, + }, + "value": 167, + }, + { + "category": "Pet", + "configData": { + "id": "Woodpecker", + }, + "value": 76, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Dragon", + "pt": 1, + }, + "value": 158, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Throne", + }, + "value": 922085746, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Agony", + }, + "value": 1951, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Watermelon", + }, + "value": 7783197, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pineapple Dog", + }, + "value": 5087058349, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Love Corgi", + }, + "value": 38394883, + }, + { + "category": "Lootbox", + "configData": { + "id": "Color Gift", + }, + "value": 300501, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Bee", + "pt": 2, + }, + "value": 135956149, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Yin-Yang Dragon", + }, + "value": 161773386, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Goat", + "pt": 1, + }, + "value": 979, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Turtle", + "pt": 2, + }, + "value": 2576927512, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Anteater", + }, + "value": 40, + }, + { + "category": "Pet", + "configData": { + "id": "Chef Monkey", + "pt": 1, + }, + "value": 11, + }, + { + "category": "Pet", + "configData": { + "id": "Hacker Axolotl", + "pt": 2, + }, + "value": 205, + }, + { + "category": "Pet", + "configData": { + "id": "Football Tiger", + "pt": 2, + }, + "value": 696, + }, + { + "category": "Pet", + "configData": { + "id": "Grimoire Agony", + "pt": 1, + }, + "value": 84, + }, + { + "category": "Card", + "configData": { + "id": "Ghoul Horse Card", + }, + "value": 16462, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Bat", + "pt": 2, + }, + "value": 78, + }, + { + "category": "Lootbox", + "configData": { + "id": "Halloween Lucky Block Gift", + }, + "value": 114751928, + }, + { + "category": "Enchant", + "configData": { + "id": "Walkspeed", + "tn": 3, + }, + "value": 96, + }, + { + "category": "Pet", + "configData": { + "id": "Fortress Owl", + }, + "value": 1646, + }, + { + "category": "Pet", + "configData": { + "id": "Cupcake Unicorn", + }, + "value": 13, + }, + { + "category": "Pet", + "configData": { + "id": "Hacked Computer", + "pt": 2, + }, + "value": 46, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lit Loris", + "pt": 1, + }, + "value": 423644470, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Jelly Cat", + }, + "value": 50980483817, + }, + { + "category": "Potion", + "configData": { + "id": "Diamonds", + "tn": 1, + }, + "value": 66, + }, + { + "category": "Pet", + "configData": { + "id": "Hippomint", + }, + "value": 542422, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Knight Beagle", + "pt": 2, + }, + "value": 155455461, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spotted Elephant", + "sh": true, + }, + "value": 80049805, + }, + { + "category": "Pet", + "configData": { + "id": "Scroll Dragon", + "pt": 2, + }, + "value": 78, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Blurred", + }, + "value": 2042626074, + }, + { + "category": "Enchant", + "configData": { + "id": "Treasure Hunter", + "tn": 1, + }, + "value": 14, + }, + { + "category": "Enchant", + "configData": { + "id": "Tap Power", + "tn": 3, + }, + "value": 64, + }, + { + "category": "Pet", + "configData": { + "id": "Aura Fox", + }, + "value": 8396255, + }, + { + "category": "Enchant", + "configData": { + "id": "Tap Power", + "tn": 1, + }, + "value": 24, + }, + { + "category": "Enchant", + "configData": { + "id": "Treasure Hunter", + "tn": 5, + }, + "value": 20, + }, + { + "category": "Enchant", + "configData": { + "id": "Strong Pets", + "tn": 1, + }, + "value": 22, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holly Capybara", + "sh": true, + }, + "value": 139240489, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Frog", + "pt": 1, + }, + "value": 38, + }, + { + "category": "Pet", + "configData": { + "id": "Psychic Seal", + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Hedgehog", + "pt": 2, + "sh": true, + }, + "value": 373, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Booster", + }, + "value": 4791473, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snow Crab", + }, + "value": 37716711, + }, + { + "category": "Pet", + "configData": { + "id": "Poofy Pixie", + "pt": 1, + }, + "value": 66, + }, + { + "category": "Pet", + "configData": { + "id": "Pot of Gold Cat", + "pt": 2, + }, + "value": 2548, + }, + { + "category": "Pet", + "configData": { + "id": "Figgy Fox", + "pt": 2, + }, + "value": 95, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Totem Wolf", + }, + "value": 78739702, + }, + { + "category": "Pet", + "configData": { + "id": "Doge", + }, + "value": 1181870254, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Chest Mimic", + }, + "value": 790014395, + }, + { + "category": "Pet", + "configData": { + "id": "Blobenstein", + }, + "value": 160029496, + }, + { + "category": "Pet", + "configData": { + "id": "Pterodactyl", + }, + "value": 149141401, + }, + { + "category": "Lootbox", + "configData": { + "id": "Titanic Christmas Present", + }, + "value": 229109832, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gym Cat", + }, + "value": 6963232298, + }, + { + "category": "Pet", + "configData": { + "id": "Molten Pumpkin Cat", + "pt": 2, + }, + "value": 29533543, + }, + { + "category": "Pet", + "configData": { + "id": "Spitting Dino", + }, + "value": 11, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Leprechaun Dog", + }, + "value": 5779996643, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Arcade Dog", + "pt": 1, + }, + "value": 30382677, + }, + { + "category": "Egg", + "configData": { + "id": "Series 3 Legendary Gift", + }, + "value": 119718183, + }, + { + "category": "Pet", + "configData": { + "id": "Pinata Dragon", + }, + "value": 15903632, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Silver", + }, + "value": 1040470590, + }, + { + "category": "Pet", + "configData": { + "id": "Merry Mule", + "pt": 2, + "sh": true, + }, + "value": 60203, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Helicopter Cat", + "pt": 1, + }, + "value": 30545899, + }, + { + "category": "Card", + "configData": { + "id": "Ghostly Cat Card", + "sh": true, + }, + "value": 5529697, + }, + { + "category": "Misc", + "configData": { + "id": "Hacker Key", + }, + "value": 105636, + }, + { + "category": "Pet", + "configData": { + "cv": 6, + "id": "Huge Chroma Swan", + }, + "value": 184858738, + }, + { + "category": "Enchant", + "configData": { + "id": "Nightmare Orb", + "tn": 1, + }, + "value": 1027092024, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Autumn Red Panda", + }, + "value": 56916340, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Baby Puppy", + }, + "value": 296351785, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Festive Seal", + "pt": 2, + "sh": true, + }, + "value": 2147384426, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Inferno Stealth Cat", + }, + "value": 58597291, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evil Imp", + "pt": 1, + }, + "value": 43115121, + }, + { + "category": "Misc", + "configData": { + "id": "Rave Upgrade Ticket", + }, + "value": 708, + }, + { + "category": "Card", + "configData": { + "id": "Super Bat Card", + }, + "value": 1417532, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Griffin", + }, + "value": 14274657, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Naughty Cat", + }, + "value": 69837134, + }, + { + "category": "Pet", + "configData": { + "id": "Hologram Shark", + }, + "value": 8320120, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Aura Fox", + "sh": true, + }, + "value": 359576783, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stealth Dragon", + }, + "value": 57809662, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wicked Angelus", + }, + "value": 326829101, + }, + { + "category": "Pet", + "configData": { + "id": "Redstone Cat", + }, + "value": 8310061, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skateboard Bulldog", + "sh": true, + }, + "value": 108540390, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Old Wizard Owl", + }, + "value": 30620709, + }, + { + "category": "Pet", + "configData": { + "cv": 3, + "id": "Huge Chroma Snail", + }, + "value": 83384016, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gingerbread Angelus", + }, + "value": 106344102, + }, + { + "category": "Card", + "configData": { + "id": "Huge Anime Scorpion Card", + "sh": true, + }, + "value": 56435064, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Bee", + "pt": 1, + }, + "value": 18, + }, + { + "category": "Booth", + "configData": { + "id": "Easter", + }, + "value": 1581533, + }, + { + "category": "Pet", + "configData": { + "id": "Black Hole Axolotl", + "sh": true, + }, + "value": 11064139, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Punksky", + "sh": true, + }, + "value": 107604344, + }, + { + "category": "Card", + "configData": { + "id": "Anime Tanuki Card", + "pt": 2, + }, + "value": 4827269, + }, + { + "category": "Enchant", + "configData": { + "id": "Large Taps", + "tn": 1, + }, + "value": 4154, + }, + { + "category": "Card", + "configData": { + "id": "Blue BIG Maskot Card", + }, + "value": 796643, + }, + { + "category": "Enchant", + "configData": { + "id": "Diamonds", + "tn": 9, + }, + "value": 66994, + }, + { + "category": "Potion", + "configData": { + "id": "Diamonds", + "tn": 9, + }, + "value": 99600, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Panda", + "pt": 1, + }, + "value": 34324239, + }, + { + "category": "Booth", + "configData": { + "id": "Kawaii", + }, + "value": 758059, + }, + { + "category": "Card", + "configData": { + "id": "Blue BIG Maskot Card", + "pt": 1, + }, + "value": 491510, + }, + { + "category": "Misc", + "configData": { + "id": "Diamond Pencil", + }, + "value": 20051, + }, + { + "category": "Pet", + "configData": { + "id": "Krampus", + "pt": 2, + "sh": true, + }, + "value": 265730, + }, + { + "category": "Card", + "configData": { + "id": "Anime Lemur Card", + "sh": true, + }, + "value": 2168860, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Love Peacock", + "pt": 2, + }, + "value": 302343251, + }, + { + "category": "Card", + "configData": { + "id": "Hellhound Card", + }, + "value": 595, + }, + { + "category": "Pet", + "configData": { + "id": "Stargazing Wolf", + }, + "value": 7897725, + }, + { + "category": "Pet", + "configData": { + "id": "Exquisite Cat", + }, + "value": 15838456, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Panda", + }, + "value": 1406353155, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sorcerer Bear", + "pt": 2, + "sh": true, + }, + "value": 2200656499, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Storm Agony", + }, + "value": 3942541743, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pumpkin Spice Cat", + }, + "value": 33378667, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghost", + }, + "value": 31657589, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightfall Pegasus", + "sh": true, + }, + "value": 2897062649, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Forest Wyvern", + "pt": 2, + }, + "value": 4995450958, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doodle Agony", + }, + "value": 639142217, + }, + { + "category": "Lootbox", + "configData": { + "id": "Spider Gift", + }, + "value": 77294962, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hologram Axolotl", + "pt": 2, + }, + "value": 2854669884, + }, + { + "category": "Booth", + "configData": { + "id": "Wyvern of Hades", + }, + "value": 614427831, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Reindeer", + }, + "value": 10217942204, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Frostbyte Snowman", + "sh": true, + }, + "value": 287173545, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Abyssal Axolotl", + }, + "value": 48047187, + }, + { + "category": "Pet", + "configData": { + "id": "Floppa", + }, + "value": 52401557, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Capybara", + }, + "value": 84308420, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Super Spider", + }, + "value": 53203305, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Present Dragon", + "pt": 2, + }, + "value": 560227477, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Corgi", + "pt": 2, + }, + "value": 416310221, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sorcerer Bear", + "sh": true, + }, + "value": 171583008, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Purple Dragon", + }, + "value": 114560470, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Merry Mule", + "sh": true, + }, + "value": 172150160, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 25", + }, + "value": 525461461, + }, + { + "category": "Enchant", + "configData": { + "id": "Coins", + "tn": 5, + }, + "value": 44, + }, + { + "category": "Pet", + "configData": { + "id": "Obsidian Griffin", + }, + "value": 63, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Happy Computer", + "pt": 2, + }, + "value": 229909004, + }, + { + "category": "Pet", + "configData": { + "id": "Gamer Shiba", + "pt": 1, + }, + "value": 321, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dark Lord", + }, + "value": 79849374, + }, + { + "category": "Pet", + "configData": { + "id": "Fairy Bee", + "pt": 2, + }, + "value": 5130, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Telescope Owl", + "pt": 2, + }, + "value": 192104473, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Arcade Dragon", + }, + "value": 60294746, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Deer", + }, + "value": 67, + }, + { + "category": "Pet", + "configData": { + "id": "Huge LeGoat Ball", + }, + "value": 72447006, + }, + { + "category": "Pet", + "configData": { + "id": "Inferno Stealth Cat", + }, + "value": 75330384, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 38", + }, + "value": 245054658, + }, + { + "category": "Card", + "configData": { + "id": "Anime Lemur Card", + "pt": 2, + "sh": true, + }, + "value": 61784641, + }, + { + "category": "Pet", + "configData": { + "id": "Inferno Stealth Bobcat", + }, + "value": 57575332, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Dragon", + "pt": 1, + "sh": true, + }, + "value": 2396000654, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dog", + }, + "value": 877956044, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 40", + }, + "value": 215454393, + }, + { + "category": "Pet", + "configData": { + "id": "Broomstick Cat", + }, + "value": 15, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 19", + }, + "value": 326854885, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 24", + }, + "value": 302827540, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 45", + }, + "value": 325495283, + }, + { + "category": "Pet", + "configData": { + "id": "Sentry Drake", + }, + "value": 18, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fragmented Golem", + }, + "value": 307111492, + }, + { + "category": "Card", + "configData": { + "id": "Fairy Moth Card", + "pt": 1, + }, + "value": 1990, + }, + { + "category": "Card", + "configData": { + "id": "Camo Axolotl Card", + "pt": 1, + }, + "value": 2118, + }, + { + "category": "Misc", + "configData": { + "id": "Void Key Upper Half", + }, + "value": 4765, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Night Terror Cat", + "pt": 1, + }, + "value": 128288566, + }, + { + "category": "Pet", + "configData": { + "id": "Black Hole Immortuus", + }, + "value": 15342612, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Corrupt Butterfly", + "pt": 2, + }, + "value": 221020622, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Crown Corgi", + "sh": true, + }, + "value": 294721411, + }, + { + "category": "Egg", + "configData": { + "id": "Active Huge Egg", + }, + "value": 324886973, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glowy the Ghost", + "pt": 1, + }, + "value": 70579722, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Bunny", + "pt": 2, + }, + "value": 324, + }, + { + "category": "Card", + "configData": { + "id": "Huge Anime Scorpion Card", + "pt": 2, + }, + "value": 47083799, + }, + { + "category": "Card", + "configData": { + "id": "Hippomelon Card", + }, + "value": 3183745, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crocodile", + "pt": 2, + }, + "value": 140477393, + }, + { + "category": "Card", + "configData": { + "id": "Noob Card", + }, + "value": 1949848, + }, + { + "category": "Enchant", + "configData": { + "id": "Diamonds", + "tn": 6, + }, + "value": 55, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mr Krabs", + }, + "value": 1071993472, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lit Cat", + "pt": 2, + }, + "value": 149927108, + }, + { + "category": "Pet", + "configData": { + "id": "Cappuccina Brainrot", + "pt": 2, + }, + "value": 22944576, + }, + { + "category": "Booth", + "configData": { + "id": "Nightmare Cat", + }, + "value": 196295186, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Robot Ball", + }, + "value": 24939063, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 31", + }, + "value": 885264848, + }, + { + "category": "Booth", + "configData": { + "id": "Pumpkin Cat", + }, + "value": 16813213, + }, + { + "category": "Potion", + "configData": { + "id": "Coins", + "tn": 11, + }, + "value": 56765, + }, + { + "category": "Pet", + "configData": { + "id": "Exquisite Parrot", + }, + "value": 16247182, + }, + { + "category": "Pet", + "configData": { + "id": "Machete Dog", + }, + "value": 28659669, + }, + { + "category": "Pet", + "configData": { + "id": "Stacked Dominus", + "pt": 2, + "sh": true, + }, + "value": 497, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shadow Pegasus", + }, + "value": 36232360, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Marshmallow Agony", + "pt": 1, + }, + "value": 160155342, + }, + { + "category": "Lootbox", + "configData": { + "id": "Clan Gift", + }, + "value": 9960165, + }, + { + "category": "Pet", + "configData": { + "id": "Ghostly Fox", + "pt": 2, + }, + "value": 23505208, + }, + { + "category": "Enchant", + "configData": { + "id": "Angelic", + "tn": 1, + }, + "value": 8576787, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sapphire Phoenix", + "pt": 1, + }, + "value": 382200329, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Poinsettia Peacock", + "pt": 2, + }, + "value": 162348335, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Diamond Bunny", + }, + "value": 6349143496, + }, + { + "category": "Pet", + "configData": { + "id": "Obsidian Griffin", + "pt": 2, + }, + "value": 373, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Web", + }, + "value": 35561055, + }, + { + "category": "Pet", + "configData": { + "id": "Peacock", + }, + "value": 18, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Emoji Monkey", + }, + "value": 562942583, + }, + { + "category": "Ultimate", + "configData": { + "id": "Black Hole", + }, + "value": 8218133578, + }, + { + "category": "Pet", + "configData": { + "id": "Llama", + }, + "value": 227160, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Crown Corgi", + "pt": 2, + }, + "value": 275984511, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sloth", + "pt": 2, + }, + "value": 338503348, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Corgi", + }, + "value": 14542614, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mantis Shrimp", + }, + "value": 38977567, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bloo Cat", + "pt": 1, + }, + "value": 279044967, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rhino", + "pt": 1, + }, + "value": 52709378, + }, + { + "category": "Pet", + "configData": { + "id": "Balloon Axolotl", + }, + "value": 37051595, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Error Cat", + }, + "value": 99999229, + }, + { + "category": "Pet", + "configData": { + "id": "Doll Cat", + }, + "value": 43, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mosaic Lamb", + }, + "value": 51973628, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Santa Monkey", + }, + "value": 1549633250, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Disco Ball Dragon", + }, + "value": 82153714, + }, + { + "category": "Pet", + "configData": { + "id": "Ducky", + }, + "value": 8, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shark Cat", + }, + "value": 1350359186, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Panda", + }, + "value": 30730618, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skeleton Shark", + }, + "value": 145996949, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Hydra", + "pt": 1, + }, + "value": 1149, + }, + { + "category": "Pet", + "configData": { + "id": "Player Gecko", + "pt": 2, + }, + "value": 39, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bloo Cat", + }, + "value": 696554839, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Noob", + }, + "value": 10165323694, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Ram", + }, + "value": 33, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Treasure Scorpion", + "sh": true, + }, + "value": 293262994, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Serpents", + }, + "value": 50, + }, + { + "category": "Pet", + "configData": { + "id": "Haxigator", + "pt": 2, + }, + "value": 34492, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Axolotl", + }, + "value": 109750927, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Googly Corgi", + }, + "value": 185011738, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luau Cat", + }, + "value": 84074442, + }, + { + "category": "Pet", + "configData": { + "id": "Astronaut Cat Ball", + "pt": 2, + }, + "value": 203, + }, + { + "category": "Pet", + "configData": { + "id": "Midnight Cat", + }, + "value": 8552634, + }, + { + "category": "Card", + "configData": { + "id": "Huge Arcane Dominus Card", + }, + "value": 127416551, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Atomic Monkey Ball", + }, + "value": 36500664, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Zombie Pig", + "pt": 1, + }, + "value": 22458087, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Aura Fox", + }, + "value": 50848624, + }, + { + "category": "Pet", + "configData": { + "id": "Happy Computer", + }, + "value": 19, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Axolotl", + }, + "value": 9228736, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cosmic Axolotl", + "pt": 2, + }, + "value": 2634632364, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Dragon", + "pt": 1, + }, + "value": 30491461, + }, + { + "category": "Lootbox", + "configData": { + "id": "Autumn Gift", + }, + "value": 393936, + }, + { + "category": "Pet", + "configData": { + "id": "Potion Poodle", + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Griffin", + "pt": 2, + }, + "value": 17, + }, + { + "category": "Pet", + "configData": { + "id": "Super Corgi", + }, + "value": 10574029, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Yee-haw Cat", + }, + "value": 56850465, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Santa Dragon", + }, + "value": 777399073, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Llama", + }, + "value": 22350378, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Yee-haw Cat", + "pt": 2, + }, + "value": 223458402, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cupcake", + }, + "value": 366075221, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 34", + }, + "value": 862186714, + }, + { + "category": "Pet", + "configData": { + "id": "Floatie Cat", + "pt": 2, + }, + "value": 100, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Midnight Cat", + "pt": 2, + }, + "value": 1261539444, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Midnight Cat", + "sh": true, + }, + "value": 763675310, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Moray Eel", + }, + "value": 26976344, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elegant Eagle", + }, + "value": 21735028, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Scary Corgi", + }, + "value": 87903293, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shattered Heart Agony", + }, + "value": 63512063, + }, + { + "category": "Card", + "configData": { + "id": "Ghostly Bunny Card", + "sh": true, + }, + "value": 7868134, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Griffin", + "pt": 1, + }, + "value": 26425592, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Corrupt Butterfly", + "pt": 2, + "sh": true, + }, + "value": 2356908378, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pastel Elephant", + }, + "value": 55527937, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guard Dragon", + "pt": 1, + }, + "value": 73999331, + }, + { + "category": "Lootbox", + "configData": { + "id": "2024 Gargantuan Christmas Present", + }, + "value": 373806644, + }, + { + "category": "Egg", + "configData": { + "id": "Series 1 Legendary Gift", + }, + "value": 484797473, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Sloth", + }, + "value": 71408124, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Floatie Penguin", + }, + "value": 89138346, + }, + { + "category": "Card", + "configData": { + "id": "Huge Ghostly Dragon Card", + "pt": 2, + }, + "value": 140139182, + }, + { + "category": "Pet", + "configData": { + "id": "Inferno Stealth Dragon", + }, + "value": 63769741, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Meebo The Alien Ball", + }, + "value": 108836823, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Divinus", + "pt": 2, + }, + "value": 659782128, + }, + { + "category": "Lootbox", + "configData": { + "id": "2024 New Years Gift", + }, + "value": 28472877, + }, + { + "category": "Enchant", + "configData": { + "id": "Mini Chest Fortune", + "tn": 1, + }, + "value": 7781615, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kawaii Tiger", + }, + "value": 179784568, + }, + { + "category": "Lootbox", + "configData": { + "id": "Summer Gift", + }, + "value": 948782, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Flamingo Cat", + }, + "value": 25870653, + }, + { + "category": "Pet", + "configData": { + "id": "Yin-Yang Griffin", + }, + "value": 13751872, + }, + { + "category": "Pet", + "configData": { + "id": "Treasure Scorpion", + }, + "value": 6770497, + }, + { + "category": "Pet", + "configData": { + "id": "Scorpion", + }, + "value": 16, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Basketball Corgi", + "pt": 1, + }, + "value": 26600917, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kawaii Dragon Ball", + "pt": 1, + }, + "value": 49158855, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Balloon", + }, + "value": 188027773, + }, + { + "category": "Pet", + "configData": { + "id": "Atlantean Orca", + }, + "value": 9545155, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Robber Cat", + "pt": 2, + }, + "value": 657752659, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Dove", + }, + "value": 10091133, + }, + { + "category": "Pet", + "configData": { + "id": "Stealth Bobcat", + }, + "value": 14712732, + }, + { + "category": "Card", + "configData": { + "id": "Huge Sea Dragon Card", + "sh": true, + }, + "value": 49435308, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Silver Bison", + "pt": 1, + }, + "value": 350441287, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Sea Dragon Card", + "pt": 1, + }, + "value": 640532825, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Reindeer Cat", + "pt": 2, + }, + "value": 23675295499, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 46", + }, + "value": 334618618, + }, + { + "category": "Lootbox", + "configData": { + "id": "Tower Defense Gift 2", + }, + "value": 329129, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Moth", + "pt": 2, + "sh": true, + }, + "value": 1670, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Icy Phoenix", + }, + "value": 30186940, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Zombie Pig", + }, + "value": 25500400, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Abyssal Jellyfish", + "pt": 2, + "sh": true, + }, + "value": 2132219403, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Cream Cone", + }, + "value": 31666827, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 41", + }, + "value": 225035992, + }, + { + "category": "Card", + "configData": { + "id": "Tech Chest Mimic Card", + "pt": 2, + }, + "value": 39282, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Void Alien", + "pt": 2, + }, + "value": 115264818, + }, + { + "category": "Lootbox", + "configData": { + "id": "Pumpkin Gift", + }, + "value": 495488, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Scary Cat", + "pt": 2, + }, + "value": 567887711, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Orca", + }, + "value": 243399462, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mechatronic Robot", + "pt": 1, + }, + "value": 31264085, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Pegasus", + }, + "value": 13, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Forged Robot", + }, + "value": 420368434, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Firefighter Dalmation", + "pt": 1, + }, + "value": 197202905, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Moth", + }, + "value": 48, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Anteater", + }, + "value": 43729696, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Axolotl", + "pt": 2, + }, + "value": 5767, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wishing Dragon", + "sh": true, + }, + "value": 516701732, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blue Lucky Block", + "pt": 1, + }, + "value": 31594643, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fancy Axolotl", + }, + "value": 27700638, + }, + { + "category": "Pet", + "configData": { + "id": "Rainbow Unicorn", + }, + "value": 17223281, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Dog", + }, + "value": 183, + }, + { + "category": "Pet", + "configData": { + "id": "Hydra", + }, + "value": 103, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doll Cat", + "pt": 1, + }, + "value": 41660236, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Scary Cat", + }, + "value": 103533296, + }, + { + "category": "Misc", + "configData": { + "id": "Squeaky Toy", + }, + "value": 20, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Treasure Mimic", + }, + "value": 6431548878, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Prison Cat", + "pt": 1, + }, + "value": 30691857, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Butterfly", + }, + "value": 50989900, + }, + { + "category": "Enchant", + "configData": { + "id": "Coins", + "tn": 2, + }, + "value": 81, + }, + { + "category": "Lootbox", + "configData": { + "id": "Ghostface Gift", + }, + "value": 9424077, + }, + { + "category": "Pet", + "configData": { + "id": "Stunt Raccoon", + "pt": 1, + }, + "value": 14343, + }, + { + "category": "Pet", + "configData": { + "id": "Stacked King Slime", + }, + "value": 654, + }, + { + "category": "Pet", + "configData": { + "id": "Jurassic Crocodile", + }, + "value": 7236119, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Polar Bear", + }, + "value": 49, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Loveserker", + }, + "value": 36301546, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Bunny", + "sh": true, + }, + "value": 184, + }, + { + "category": "Pet", + "configData": { + "id": "Beagle", + "pt": 1, + }, + "value": 12467, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bee", + }, + "value": 29129977, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Happy Rock", + "pt": 2, + }, + "value": 223504360, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chad Bunny", + }, + "value": 351204847, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Corgi", + }, + "value": 44584968, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blurred Owl", + "pt": 2, + }, + "value": 140006959, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Exquisite Cat", + }, + "value": 119350116, + }, + { + "category": "Pet", + "configData": { + "id": "Aura Dominus", + }, + "value": 16161719, + }, + { + "category": "Pet", + "configData": { + "id": "Keyboard Cat", + }, + "value": 20724208, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ancient Dragon", + }, + "value": 185581995, + }, + { + "category": "Pet", + "configData": { + "id": "Cupcake Unicorn", + "pt": 1, + }, + "value": 12, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Minecart Hamster", + "pt": 1, + }, + "value": 27682610, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Griffin", + "pt": 1, + }, + "value": 27652090, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fancy Axolotl", + "sh": true, + }, + "value": 112387425, + }, + { + "category": "Card", + "configData": { + "id": "Anime Wolf Card", + "sh": true, + }, + "value": 4078966, + }, + { + "category": "Potion", + "configData": { + "id": "Treasure Hunter", + "tn": 11, + }, + "value": 499640, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Inferno Stealth Bobcat", + "sh": true, + }, + "value": 315264481, + }, + { + "category": "Pet", + "configData": { + "id": "Chad Bunny", + }, + "value": 13479195, + }, + { + "category": "Pet", + "configData": { + "id": "Dragonfruit Dragon", + }, + "value": 21645847, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Nightmare", + }, + "value": 354265207, + }, + { + "category": "Pet", + "configData": { + "id": "Peacock", + "pt": 1, + }, + "value": 2960, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stingray", + "pt": 1, + "sh": true, + }, + "value": 272577207, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Apple Capybara", + }, + "value": 1337867554, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 36", + }, + "value": 559861079, + }, + { + "category": "Booth", + "configData": { + "id": "Blurred", + }, + "value": 368130951, + }, + { + "category": "Pet", + "configData": { + "id": "Orange Squirrel", + }, + "value": 14, + }, + { + "category": "Pet", + "configData": { + "id": "Fairy Grasshopper", + }, + "value": 38, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Storm Axolotl Ball", + }, + "value": 5891823068, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Elephant", + }, + "value": 54, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Keyboard Cat", + }, + "value": 7495361298, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mosaic Lamb", + "pt": 1, + }, + "value": 87754330, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spotted Elephant", + "pt": 2, + }, + "value": 123770063, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tralala Brainrot", + "pt": 2, + }, + "value": 1568782409, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Abyssal Jellyfish", + "pt": 2, + }, + "value": 149315334, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mining Robot", + }, + "value": 23669935, + }, + { + "category": "Egg", + "configData": { + "id": "Event Egg 1", + }, + "value": 128735577, + }, + { + "category": "Pet", + "configData": { + "id": "Guest Noob", + }, + "value": 385293012, + }, + { + "category": "Lootbox", + "configData": { + "id": "Rave Gift", + }, + "value": 461067, + }, + { + "category": "Card", + "configData": { + "id": "Fairy Moth Card", + }, + "value": 772, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Ducky", + "pt": 2, + }, + "value": 316, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Nyan Cat", + "pt": 2, + }, + "value": 27096812892, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Capybara", + }, + "value": 310277490, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Griffin", + "pt": 2, + }, + "value": 135738710, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Cupcake Pegasus", + "pt": 1, + }, + "value": 8816277975, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Exquisite Elephant", + "pt": 2, + }, + "value": 15918802252, + }, + { + "category": "Pet", + "configData": { + "id": "Super Seal", + }, + "value": 7394725, + }, + { + "category": "Pet", + "configData": { + "id": "Chesnut Chipmunk", + }, + "value": 53, + }, + { + "category": "Card", + "configData": { + "id": "Lumi Axolotl Card", + }, + "value": 505, + }, + { + "category": "Pet", + "configData": { + "id": "Matryoshka Dino", + }, + "value": 14704936, + }, + { + "category": "Pet", + "configData": { + "id": "Super Coral Whale", + }, + "value": 11293144, + }, + { + "category": "Pet", + "configData": { + "id": "Super Coral Hydra", + }, + "value": 23385676, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hippo", + }, + "value": 43431771, + }, + { + "category": "Tower", + "configData": { + "id": "Flamethrower Spider", + }, + "value": 62, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pastel Sock Bunny", + "pt": 2, + "sh": true, + }, + "value": 7652640000, + }, + { + "category": "Pet", + "configData": { + "id": "Poison Turtle", + }, + "value": 64, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vibrant Toucan", + }, + "value": 25339277, + }, + { + "category": "Potion", + "configData": { + "id": "Coins", + "tn": 1, + }, + "value": 45, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blurred Axolotl", + "pt": 2, + }, + "value": 402507756, + }, + { + "category": "Pet", + "configData": { + "id": "Snowman", + }, + "value": 14, + }, + { + "category": "Pet", + "configData": { + "id": "Leprechaun Dog", + }, + "value": 18, + }, + { + "category": "Pet", + "configData": { + "id": "Poseidon Corgi", + }, + "value": 121, + }, + { + "category": "Booth", + "configData": { + "id": "Holographic", + }, + "value": 152083958, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shuriken Corgi", + "pt": 1, + "sh": true, + }, + "value": 323621475, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pufferfish", + }, + "value": 1882491007, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Kangaroo", + }, + "value": 75341958, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fire Horse", + "pt": 1, + }, + "value": 159327598, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sand Turtle", + }, + "value": 22954517, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bee", + "pt": 2, + }, + "value": 141581426, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guest Noob", + "pt": 1, + }, + "value": 61102888, + }, + { + "category": "Pet", + "configData": { + "id": "Dino Bear", + }, + "value": 8743, + }, + { + "category": "Card", + "configData": { + "id": "Huge Blurred Axolotl Card", + }, + "value": 11729973, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Cat", + "pt": 2, + }, + "value": 41, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Abyssal Axolotl", + "pt": 1, + }, + "value": 93669646, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Corgi", + "pt": 1, + }, + "value": 58183781, + }, + { + "category": "Pet", + "configData": { + "id": "Palace Pooka", + "sh": true, + }, + "value": 20116996, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sticky Lamb", + "pt": 1, + }, + "value": 23374820, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Parrot", + }, + "value": 64847171, + }, + { + "category": "Pet", + "configData": { + "id": "Dino Corgi", + }, + "value": 8051951, + }, + { + "category": "Pet", + "configData": { + "id": "Abstract Dragon", + "pt": 2, + }, + "value": 65, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Happy Computer", + "sh": true, + }, + "value": 159220373, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Frog", + "pt": 2, + }, + "value": 679, + }, + { + "category": "Pet", + "configData": { + "id": "Super Bat", + }, + "value": 9771337, + }, + { + "category": "Pet", + "configData": { + "id": "Patchwork Bunny", + }, + "value": 8047697, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Angel Dragon", + "pt": 2, + }, + "value": 386215108, + }, + { + "category": "Lootbox", + "configData": { + "id": "Love Gift", + }, + "value": 504447, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lumi Axolotl", + }, + "value": 48124431, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anime Agony", + "pt": 2, + }, + "value": 20449146099, + }, + { + "category": "Pet", + "configData": { + "id": "Coconut Flamingo", + "pt": 2, + "sh": true, + }, + "value": 6598, + }, + { + "category": "Pet", + "configData": { + "id": "Flamingo Cat", + "pt": 2, + }, + "value": 149, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Sea Dragon Card", + "pt": 2, + }, + "value": 1729810388, + }, + { + "category": "Consumable", + "configData": { + "id": "Mining TNT", + "tn": 1, + }, + "value": 1007, + }, + { + "category": "Lootbox", + "configData": { + "id": "Cosmic Basketball Gift", + }, + "value": 407671, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rose Cat", + }, + "value": 74128424, + }, + { + "category": "Card", + "configData": { + "id": "Huge Sea Dragon Card", + "pt": 2, + }, + "value": 23795270, + }, + { + "category": "Pet", + "configData": { + "id": "Molten Pumpkin Cat", + "sh": true, + }, + "value": 31301053, + }, + { + "category": "Pet", + "configData": { + "id": "Super Cat", + }, + "value": 9482207, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pop Cat", + }, + "value": 22272879440, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Maple Owl", + "pt": 2, + }, + "value": 120905370, + }, + { + "category": "Card", + "configData": { + "id": "Tech Chest Mimic Card", + }, + "value": 12398, + }, + { + "category": "Pet", + "configData": { + "id": "Nutcracker Bunny", + "pt": 1, + }, + "value": 60, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sticky Lamb", + "pt": 2, + }, + "value": 133082082, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gingerbread Angelus", + "pt": 2, + }, + "value": 649893295, + }, + { + "category": "Pet", + "configData": { + "id": "Googly Corgi", + }, + "value": 7410312, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Poinsettia Peacock", + }, + "value": 29452749, + }, + { + "category": "Pet", + "configData": { + "id": "Painter Dog", + "pt": 2, + }, + "value": 6052, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Hamster", + "pt": 2, + }, + "value": 1481, + }, + { + "category": "Pet", + "configData": { + "id": "Red Wolf", + "pt": 2, + "sh": true, + }, + "value": 2368, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skelemelon", + "pt": 1, + }, + "value": 47072145, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jurassic Crocodile", + }, + "value": 75177502, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Black Balloon Cat", + }, + "value": 116375050700, + }, + { + "category": "Pet", + "configData": { + "id": "Parachute Monkey", + "pt": 2, + }, + "value": 2485, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Bunny Ball", + "pt": 2, + }, + "value": 119, + }, + { + "category": "Pet", + "configData": { + "id": "Brain Ball", + "pt": 2, + }, + "value": 50, + }, + { + "category": "Pet", + "configData": { + "id": "Coach Hippo", + "sh": true, + }, + "value": 1324, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Police", + }, + "value": 9710234, + }, + { + "category": "Pet", + "configData": { + "id": "Happy Cyclops", + "pt": 2, + }, + "value": 72, + }, + { + "category": "Card", + "configData": { + "id": "Huge Arcade Dog Card", + "pt": 1, + }, + "value": 9520523, + }, + { + "category": "Pet", + "configData": { + "id": "Archivist Ferret", + "pt": 2, + }, + "value": 624, + }, + { + "category": "Pet", + "configData": { + "id": "Coconut Flamingo", + "pt": 1, + "sh": true, + }, + "value": 170473, + }, + { + "category": "Card", + "configData": { + "id": "Huge Arcade Dog Card", + }, + "value": 8681894, + }, + { + "category": "Egg", + "configData": { + "id": "Series 2 Mythical Gift", + }, + "value": 693002828, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Midnight Cat", + }, + "value": 225911390, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Angelus", + }, + "value": 24500086, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cosmic Agony", + "pt": 2, + }, + "value": 5250680163, + }, + { + "category": "Pet", + "configData": { + "id": "Heartbreak Fairy", + "pt": 2, + "sh": true, + }, + "value": 303, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Corgi", + "pt": 1, + }, + "value": 1265703342, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 39", + }, + "value": 219390396, + }, + { + "category": "Booth", + "configData": { + "id": "Neon Twilight", + }, + "value": 297605549, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guest Noob", + }, + "value": 71837864, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Surfboard Corgi", + "pt": 1, + }, + "value": 6534275512, + }, + { + "category": "Pet", + "configData": { + "id": "Psychic Seal", + "pt": 2, + }, + "value": 68, + }, + { + "category": "Pet", + "configData": { + "cv": 5, + "id": "Huge Chroma Snail", + "pt": 2, + }, + "value": 2672217961, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holiday Owl", + "pt": 2, + "sh": true, + }, + "value": 2023463925, + }, + { + "category": "Pet", + "configData": { + "id": "Obsidian Griffin", + "pt": 1, + }, + "value": 249, + }, + { + "category": "Egg", + "configData": { + "id": "Series 3 Epic Gift", + }, + "value": 134890639, + }, + { + "category": "Pet", + "configData": { + "id": "Hippomelon", + "pt": 2, + }, + "value": 127705057, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Love Corgi", + "pt": 2, + }, + "value": 241828973, + }, + { + "category": "Pet", + "configData": { + "id": "Coconut Flamingo", + }, + "value": 70, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Rainbow", + }, + "value": 4807633, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Hologram Cat", + }, + "value": 26908641558, + }, + { + "category": "Pet", + "configData": { + "id": "Gecko", + "pt": 2, + }, + "value": 148068, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Hologram", + }, + "value": 26702538, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sleigh Axolotl", + "pt": 2, + }, + "value": 580586474, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gym Unicorn", + }, + "value": 6011237827, + }, + { + "category": "Pet", + "configData": { + "id": "Desert Ram", + }, + "value": 177, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Easter Lamb", + }, + "value": 58608530, + }, + { + "category": "Pet", + "configData": { + "id": "Blazing Corgi", + }, + "value": 11185138, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Peacock", + "pt": 1, + }, + "value": 34353140, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Cat", + "pt": 2, + }, + "value": 219821354, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Parrot", + "sh": true, + }, + "value": 98539778, + }, + { + "category": "Pet", + "configData": { + "id": "Sad Cat", + }, + "value": 717548088, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Surfboard Axolotl", + "sh": true, + }, + "value": 303291214, + }, + { + "category": "Pet", + "configData": { + "id": "Gamer Shiba", + }, + "value": 533, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Dominus", + "pt": 1, + "sh": true, + }, + "value": 722947603, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wild Frost Agony", + "pt": 2, + "sh": true, + }, + "value": 7432441989, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Starry Eye Bunny", + "sh": true, + }, + "value": 124167991, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pumpkin Spice Cat", + "pt": 1, + }, + "value": 49700450, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Super Wolf Card", + }, + "value": 2910680141, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Shiba", + "sh": true, + }, + "value": 30596192, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Red Balloon Cat", + }, + "value": 32164196218, + }, + { + "category": "Pet", + "configData": { + "id": "Cupcake Unicorn", + "pt": 2, + }, + "value": 38, + }, + { + "category": "Pet", + "configData": { + "id": "Jurassic Elephant", + }, + "value": 16490240, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Error Cat", + "pt": 1, + }, + "value": 75564315, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Witch Wolf", + }, + "value": 92403526, + }, + { + "category": "Pet", + "configData": { + "id": "Huge 404 Demon", + }, + "value": 399769475, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Dominus", + "pt": 2, + }, + "value": 504392357, + }, + { + "category": "Pet", + "configData": { + "id": "Classic Bunny", + }, + "value": 14344356, + }, + { + "category": "Pet", + "configData": { + "id": "Neon Twilight Wolf", + }, + "value": 11365236, + }, + { + "category": "Pet", + "configData": { + "id": "Tralala Brainrot", + "pt": 2, + }, + "value": 53246735, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Holiday Owl", + "pt": 1, + }, + "value": 15291996801, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Angel Dragon", + "pt": 1, + }, + "value": 68262967, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lemur", + }, + "value": 23947186, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Yee-haw Cat", + "pt": 1, + }, + "value": 151590930, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Arcade Angelus", + "pt": 1, + }, + "value": 80898075, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Crown Corgi", + "pt": 1, + }, + "value": 47115231, + }, + { + "category": "Pet", + "configData": { + "id": "Lion", + }, + "value": 774, + }, + { + "category": "Pet", + "configData": { + "id": "Ender Hades", + "pt": 2, + }, + "value": 51765, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chest Mimic", + }, + "value": 2121952845, + }, + { + "category": "Pet", + "configData": { + "id": "Nutcracker Squirrel", + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Chesnut Chipmunk", + }, + "value": 5503792895, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skeleton", + }, + "value": 66983857, + }, + { + "category": "Pet", + "configData": { + "id": "Gingerbread Cat", + }, + "value": 618312, + }, + { + "category": "Pet", + "configData": { + "id": "Paintbot Spider", + "pt": 2, + "sh": true, + }, + "value": 114, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jolly Penguin", + "pt": 1, + }, + "value": 79988099, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Sock Monkey", + }, + "value": 13355886526, + }, + { + "category": "Pet", + "configData": { + "id": "Valkyrie Wolf", + }, + "value": 14775065, + }, + { + "category": "Misc", + "configData": { + "id": "Ultra Lucky Tile", + }, + "value": 24576, + }, + { + "category": "Pet", + "configData": { + "id": "Flamingo Hippo", + }, + "value": 93, + }, + { + "category": "Misc", + "configData": { + "id": "Bucket", + }, + "value": 28986, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gorilla", + }, + "value": 38417404, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lit Cat", + }, + "value": 33856180, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Clown", + }, + "value": 441068661, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightmare Dog", + }, + "value": 150153456, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Beaver", + }, + "value": 42383028, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Anteater", + "pt": 2, + }, + "value": 311594555, + }, + { + "category": "Booth", + "configData": { + "id": "Silver", + }, + "value": 282073329, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Air Balloon Dog", + }, + "value": 62, + }, + { + "category": "Booth", + "configData": { + "id": "Black Hole", + }, + "value": 1643429042, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doll Cat", + "sh": true, + }, + "value": 200720166, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Dark Fox", + "pt": 2, + "sh": true, + }, + "value": 15000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Temporal Owl", + "pt": 2, + }, + "value": 191226692, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shuriken Corgi", + "pt": 2, + }, + "value": 155199039, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hippomint", + "pt": 1, + "sh": true, + }, + "value": 532252211, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hologram Shark", + }, + "value": 249513434, + }, + { + "category": "Consumable", + "configData": { + "id": "Factory Damage Booster", + "tn": 1, + }, + "value": 117, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Minecart Hamster", + "pt": 2, + }, + "value": 148115028, + }, + { + "category": "Pet", + "configData": { + "id": "Dino Monkey", + }, + "value": 36951, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Squirrel", + }, + "value": 5, + }, + { + "category": "Booth", + "configData": { + "id": "Egg", + }, + "value": 265776, + }, + { + "category": "Pet", + "configData": { + "id": "Gecko", + }, + "value": 36960, + }, + { + "category": "Pet", + "configData": { + "id": "Detective Cat", + "pt": 2, + }, + "value": 16, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Husky", + }, + "value": 17, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mechatronic Robot", + "sh": true, + }, + "value": 145135232, + }, + { + "category": "Pet", + "configData": { + "id": "North Pole Unicorn", + "pt": 2, + "sh": true, + }, + "value": 932, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Globe Corgi", + }, + "value": 8541290, + }, + { + "category": "Card", + "configData": { + "id": "Pog Dog Card", + }, + "value": 770, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Abyssal Jellyfish", + "pt": 1, + "sh": true, + }, + "value": 344638056, + }, + { + "category": "Pet", + "configData": { + "id": "Present Chest Mimic", + }, + "value": 24312718, + }, + { + "category": "Enchant", + "configData": { + "id": "Criticals", + "tn": 1, + }, + "value": 78, + }, + { + "category": "Pet", + "configData": { + "id": "Vibrant Cobra", + "pt": 2, + }, + "value": 71, + }, + { + "category": "Pet", + "configData": { + "id": "Wireframe Dog", + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chad Elephant", + }, + "value": 115314076, + }, + { + "category": "Pet", + "configData": { + "id": "Fiddlefern Cat", + "pt": 2, + }, + "value": 69, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Parrot", + "pt": 1, + }, + "value": 27667401, + }, + { + "category": "Pet", + "configData": { + "id": "Red Wolf", + "pt": 2, + }, + "value": 37, + }, + { + "category": "Pet", + "configData": { + "id": "Hologram Tiger", + }, + "value": 15121923, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Festive Cat", + "pt": 1, + }, + "value": 417738019, + }, + { + "category": "Seed", + "configData": { + "id": "Gift", + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pinata Cat", + }, + "value": 1462545976, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Monkey", + "pt": 2, + }, + "value": 392614807, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Runebound Bobcat", + "sh": true, + }, + "value": 422654087, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Hippomint", + "pt": 1, + }, + "value": 5770083560, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guard Dragon", + }, + "value": 76473108, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Emoji Cat", + }, + "value": 300418387, + }, + { + "category": "Pet", + "configData": { + "id": "Treasure Scorpion", + "pt": 2, + }, + "value": 16659172, + }, + { + "category": "Pet", + "configData": { + "id": "Treasure Scorpion", + "sh": true, + }, + "value": 20025971, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Festive Walrus", + "pt": 2, + }, + "value": 468325280, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gorilla", + "pt": 1, + }, + "value": 82247515, + }, + { + "category": "Pet", + "configData": { + "id": "Humble Hen", + }, + "value": 184, + }, + { + "category": "Pet", + "configData": { + "id": "Old Wizard Corgi", + "pt": 1, + }, + "value": 40926390, + }, + { + "category": "Card", + "configData": { + "id": "Hydra Cat Card", + "pt": 1, + }, + "value": 14810, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Panther", + }, + "value": 189761727, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elephant", + "pt": 1, + }, + "value": 29410992, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Beaver", + "pt": 2, + }, + "value": 133664291, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guard Dominus", + "pt": 2, + }, + "value": 211204172, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Pumpkin Cat", + }, + "value": 36291963, + }, + { + "category": "Pet", + "configData": { + "id": "Starry Eye Bunny", + }, + "value": 30, + }, + { + "category": "Pet", + "configData": { + "id": "Super Coral Axolotl", + }, + "value": 8108878, + }, + { + "category": "Pet", + "configData": { + "id": "Robot Ball", + "pt": 2, + }, + "value": 4292, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ice Cube Penguin", + "sh": true, + }, + "value": 255977503, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Parrot", + "pt": 1, + "sh": true, + }, + "value": 374130090, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Unicorn", + "pt": 1, + }, + "value": 118937929, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Enchanted Deer", + }, + "value": 84961062, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ice Snake", + }, + "value": 5896338608, + }, + { + "category": "Pet", + "configData": { + "id": "M-10 PROTOTYPE", + }, + "value": 509, + }, + { + "category": "Pet", + "configData": { + "id": "M-10 PROTOTYPE", + "pt": 1, + }, + "value": 399, + }, + { + "category": "Booth", + "configData": { + "id": "Corgi", + }, + "value": 9531955, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Noob", + }, + "value": 167087994, + }, + { + "category": "Pet", + "configData": { + "id": "Ghostly Cat", + "sh": true, + }, + "value": 36537801, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ninja Axolotl", + }, + "value": 386097554, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Happy Computer", + "pt": 1, + }, + "value": 53329148, + }, + { + "category": "Pet", + "configData": { + "id": "Umbrella Bear", + "pt": 1, + }, + "value": 43617, + }, + { + "category": "Pet", + "configData": { + "id": "Soul Bat", + "pt": 2, + }, + "value": 18703451, + }, + { + "category": "Pet", + "configData": { + "id": "Old Wizard Corgi", + }, + "value": 10278937, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Dragon", + "pt": 2, + }, + "value": 289, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Monkey", + "pt": 1, + }, + "value": 107851359, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Colorful Wisp", + }, + "value": 31455882, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cupcake", + "pt": 1, + }, + "value": 283823276, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pog Cat", + "pt": 1, + }, + "value": 384782960, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mummy Cow", + "pt": 1, + }, + "value": 514932493, + }, + { + "category": "Pet", + "configData": { + "id": "Inkwell Wisp", + "pt": 2, + }, + "value": 70, + }, + { + "category": "Pet", + "configData": { + "id": "Anime Unicorn", + }, + "value": 14055301, + }, + { + "category": "Pet", + "configData": { + "id": "Player Gecko", + }, + "value": 12, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Obsidian Griffin", + }, + "value": 59111249, + }, + { + "category": "Pet", + "configData": { + "id": "Glowy the Ghost", + "pt": 2, + }, + "value": 776, + }, + { + "category": "Pet", + "configData": { + "id": "Pumpkin Cat", + "pt": 1, + }, + "value": 815, + }, + { + "category": "Pet", + "configData": { + "id": "Pumpkin Cat", + "pt": 2, + }, + "value": 515, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Griffin", + "pt": 2, + }, + "value": 142121391, + }, + { + "category": "Lootbox", + "configData": { + "id": "Clan Gift 2", + }, + "value": 20426539, + }, + { + "category": "Misc", + "configData": { + "id": "Lightning Cannon", + }, + "value": 251, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Abomination", + }, + "value": 54777776, + }, + { + "category": "Card", + "configData": { + "id": "Super Axolotl Card", + }, + "value": 1020396, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ice Snake", + }, + "value": 28207649, + }, + { + "category": "Card", + "configData": { + "id": "Super Seal Card", + }, + "value": 907016, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Hedgehog", + "pt": 1, + }, + "value": 8, + }, + { + "category": "Pet", + "configData": { + "id": "Dot Matrix Cat", + }, + "value": 8384910, + }, + { + "category": "Pet", + "configData": { + "id": "Charred Dragon", + "pt": 1, + }, + "value": 381, + }, + { + "category": "Pet", + "configData": { + "id": "Huge North Pole Unicorn", + "pt": 1, + }, + "value": 22555949, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Arcane Dominus", + "pt": 1, + }, + "value": 164832597, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Lucki Angelus", + }, + "value": 7968551815, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Cat", + }, + "value": 24987974, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Supercar", + }, + "value": 1440492108, + }, + { + "category": "Tower", + "configData": { + "id": "Arcade Meebo in a Spaceship", + }, + "value": 1070129, + }, + { + "category": "Card", + "configData": { + "id": "Huge Super Spider Card", + }, + "value": 18249244, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Cat", + }, + "value": 26130949, + }, + { + "category": "Pet", + "configData": { + "id": "Candycane Kitsune", + "pt": 1, + }, + "value": 1173140, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Surfboard Axolotl", + "pt": 1, + }, + "value": 35331387, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Marshmallow Kitsune", + "sh": true, + }, + "value": 115418239, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elegant Eagle", + "sh": true, + }, + "value": 165077041, + }, + { + "category": "Pet", + "configData": { + "cv": 2, + "id": "Huge Chroma Tiger", + }, + "value": 125067065, + }, + { + "category": "Egg", + "configData": { + "id": "Dark Unit Egg", + }, + "value": 175744637, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mechatronic Robot", + "pt": 1, + "sh": true, + }, + "value": 374959170, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Dominus", + "sh": true, + }, + "value": 2702, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Snowman", + "pt": 2, + }, + "value": 477, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Red Wolf", + "pt": 2, + }, + "value": 148062124, + }, + { + "category": "Pet", + "configData": { + "id": "Old Wizard Owl", + }, + "value": 18300471, + }, + { + "category": "Pet", + "configData": { + "id": "Snuggle Beast", + }, + "value": 9447902, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Cheerful Yeti", + }, + "value": 10033490421, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Yin-Yang Bunny", + }, + "value": 111649286, + }, + { + "category": "Pet", + "configData": { + "id": "Fairy Grasshopper", + "pt": 2, + }, + "value": 297, + }, + { + "category": "Card", + "configData": { + "id": "Huge Anime Scorpion Card", + "pt": 2, + "sh": true, + }, + "value": 3162681587, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiedye Corgi", + "sh": true, + }, + "value": 1010461498, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ooze Axolotl", + "pt": 2, + "sh": true, + }, + "value": 2268859394, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gazelle", + "pt": 2, + }, + "value": 185690752, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Cat", + }, + "value": 324817363, + }, + { + "category": "Pet", + "configData": { + "id": "Lovemelon", + }, + "value": 16534330, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Trojan Horse", + }, + "value": 78393591, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 54", + }, + "value": 289844923, + }, + { + "category": "Booth", + "configData": { + "id": "Ghost Cat", + }, + "value": 309554464, + }, + { + "category": "Hoverboard", + "configData": { + "id": "High Tech", + }, + "value": 90812285, + }, + { + "category": "Card", + "configData": { + "id": "Anime Tanuki Card", + "sh": true, + }, + "value": 4347194, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mechatronic Robot", + "pt": 2, + }, + "value": 150454767, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valentines Axolotl", + "pt": 1, + }, + "value": 38743108, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Snow Elf", + "pt": 1, + }, + "value": 6329207796, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Cat", + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Poseidon Axolotl", + }, + "value": 30186998, + }, + { + "category": "Pet", + "configData": { + "id": "Wicked Empyrean Dragon", + }, + "value": 78484058, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Krampus", + "pt": 1, + }, + "value": 66226035, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Otter", + }, + "value": 1186494739, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nutcracker Bunny", + "pt": 2, + }, + "value": 187459184, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pineapple Monkey", + "sh": true, + }, + "value": 353287642, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rhino", + "sh": true, + }, + "value": 272665614, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Bear", + "pt": 2, + "sh": true, + }, + "value": 10583467776, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Night Terror Cat", + "pt": 1, + "sh": true, + }, + "value": 956700698, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Badger", + "pt": 1, + }, + "value": 28624399, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Squirrel", + }, + "value": 38782155, + }, + { + "category": "Pet", + "configData": { + "id": "Koala", + }, + "value": 12119811, + }, + { + "category": "Pet", + "configData": { + "id": "Starfall Dragon", + }, + "value": 48876893, + }, + { + "category": "Pet", + "configData": { + "id": "Cartoon Bunny", + }, + "value": 8658867, + }, + { + "category": "Pet", + "configData": { + "id": "Wireframe Dog", + "pt": 1, + }, + "value": 12, + }, + { + "category": "Pet", + "configData": { + "id": "Hacked Computer", + "sh": true, + }, + "value": 452, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rogue Squid", + "sh": true, + }, + "value": 120693542, + }, + { + "category": "Pet", + "configData": { + "id": "Apollo Raven", + "sh": true, + }, + "value": 515746, + }, + { + "category": "Pet", + "configData": { + "id": "Sacred Boar", + "sh": true, + }, + "value": 38, + }, + { + "category": "Pet", + "configData": { + "id": "Cloud Cat", + "sh": true, + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Leafy Seahorse", + }, + "value": 8715369479, + }, + { + "category": "Pet", + "configData": { + "id": "Soul Bat", + }, + "value": 13732987, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holiday Hedgehog", + "pt": 2, + }, + "value": 418148493, + }, + { + "category": "Pet", + "configData": { + "id": "UV Kitsune", + "pt": 1, + "sh": true, + }, + "value": 4307010, + }, + { + "category": "Pet", + "configData": { + "id": "Exquisite Parrot", + "pt": 2, + }, + "value": 123112023, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 21", + }, + "value": 423278086, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Punksky", + "pt": 2, + }, + "value": 149921362, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Krampus", + }, + "value": 118045751383, + }, + { + "category": "Enchant", + "configData": { + "id": "Treasure Hunter", + "tn": 6, + }, + "value": 57, + }, + { + "category": "Pet", + "configData": { + "id": "Abstract Agony", + "pt": 2, + }, + "value": 64, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Cosmic Pegasus", + }, + "value": 35065929417, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Yee-haw Cat", + }, + "value": 6561195129, + }, + { + "category": "Pet", + "configData": { + "id": "Sandcastle Kraken", + }, + "value": 57, + }, + { + "category": "Potion", + "configData": { + "id": "Diamonds", + "tn": 6, + }, + "value": 82, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Anime Cat Card", + "pt": 2, + }, + "value": 2437675210, + }, + { + "category": "Pet", + "configData": { + "id": "Husky", + }, + "value": 60, + }, + { + "category": "Pet", + "configData": { + "id": "Puurple Cat", + "pt": 1, + }, + "value": 27265203, + }, + { + "category": "Pet", + "configData": { + "id": "Inferno Dominus", + }, + "value": 26709672, + }, + { + "category": "Pet", + "configData": { + "id": "Good vs Evil Cat", + "pt": 2, + }, + "value": 22354351, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Abstract Dominus", + "pt": 1, + }, + "value": 83197927, + }, + { + "category": "Pet", + "configData": { + "id": "Shark", + }, + "value": 78, + }, + { + "category": "Enchant", + "configData": { + "id": "Criticals", + "tn": 5, + }, + "value": 50, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Snowman", + "pt": 1, + }, + "value": 1097, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Squirrel", + "pt": 1, + }, + "value": 83280276, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Willow Wisp", + }, + "value": 43490156, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guard Dragon", + "pt": 2, + }, + "value": 289821665, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sad Doge", + }, + "value": 544179035, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Forest Wyvern", + }, + "value": 1687212570, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hacked Reaper", + "pt": 2, + }, + "value": 546391682, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Lucki Angelus", + "pt": 2, + }, + "value": 28930036950, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sea Dragon", + "pt": 1, + }, + "value": 42729955, + }, + { + "category": "Pet", + "configData": { + "id": "Autumn Red Panda", + "pt": 2, + }, + "value": 59, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gym Shark", + "pt": 1, + }, + "value": 6564377414, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Butterfly", + }, + "value": 400584096, + }, + { + "category": "Pet", + "configData": { + "id": "Nightmare Bear", + "pt": 2, + }, + "value": 26364343, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rhino", + "pt": 2, + }, + "value": 186081582, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Good vs Evil Cat", + }, + "value": 69424266, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sloth", + }, + "value": 58863298, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Otter", + "pt": 2, + }, + "value": 147771443, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Llama", + "pt": 2, + }, + "value": 142553090, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Icy Phoenix", + "pt": 2, + }, + "value": 158732132, + }, + { + "category": "Pet", + "configData": { + "id": "Wizard Westie", + "pt": 2, + }, + "value": 74, + }, + { + "category": "Pet", + "configData": { + "id": "Cloud Cat", + "pt": 2, + "sh": true, + }, + "value": 405, + }, + { + "category": "Pet", + "configData": { + "id": "Apollo Raven", + "pt": 1, + "sh": true, + }, + "value": 12883, + }, + { + "category": "Pet", + "configData": { + "id": "Poison Turtle", + "sh": true, + }, + "value": 7557, + }, + { + "category": "Pet", + "configData": { + "id": "Grass Bunny", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Bunny", + "pt": 2, + "sh": true, + }, + "value": 43933, + }, + { + "category": "Pet", + "configData": { + "id": "Umbrella Bear", + "pt": 2, + "sh": true, + }, + "value": 505, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Cat", + "pt": 2, + "sh": true, + }, + "value": 999, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Bunny", + "pt": 1, + "sh": true, + }, + "value": 6136, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anglerfish", + "sh": true, + }, + "value": 182184204, + }, + { + "category": "Pet", + "configData": { + "id": "Umbrella Bear", + "pt": 1, + "sh": true, + }, + "value": 1505, + }, + { + "category": "Pet", + "configData": { + "id": "Cloud Cat", + "pt": 1, + "sh": true, + }, + "value": 274, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Squirrel", + "pt": 1, + "sh": true, + }, + "value": 14, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Dominus", + }, + "value": 157, + }, + { + "category": "Pet", + "configData": { + "id": "Flamingo Hippo", + "pt": 2, + "sh": true, + }, + "value": 1164, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Divinus", + "pt": 1, + }, + "value": 74723453, + }, + { + "category": "Pet", + "configData": { + "id": "Tropical Parrot", + }, + "value": 10061077, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Oversized", + }, + "value": 405134583, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Monkey", + }, + "value": 847977489, + }, + { + "category": "Pet", + "configData": { + "id": "Emerald Monkey", + "sh": true, + }, + "value": 9727395, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gingerbread Corgi", + }, + "value": 8511353873, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Balloon Cat", + "pt": 1, + }, + "value": 753034965, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fiddlefern Cat", + "pt": 2, + "sh": true, + }, + "value": 2241706752, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leafy Deer", + "pt": 2, + }, + "value": 598607332, + }, + { + "category": "Pet", + "configData": { + "id": "Raccoon", + }, + "value": 11025, + }, + { + "category": "Pet", + "configData": { + "id": "Flower Gecko", + }, + "value": 11, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Inferno Stealth Cat", + "pt": 1, + }, + "value": 84913263, + }, + { + "category": "Enchant", + "configData": { + "id": "Diamond Orb", + "tn": 1, + }, + "value": 3377460435, + }, + { + "category": "Pet", + "configData": { + "id": "Raining Love Dog", + "pt": 2, + }, + "value": 23, + }, + { + "category": "Pet", + "configData": { + "id": "Dino", + }, + "value": 30, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Autumn Teddy Bear", + "pt": 2, + }, + "value": 19068425159, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doodle Dragon", + "pt": 2, + }, + "value": 430650681, + }, + { + "category": "Pet", + "configData": { + "id": "Jester Dog", + "sh": true, + }, + "value": 18792527, + }, + { + "category": "Pet", + "configData": { + "id": "Player Fox", + "pt": 2, + }, + "value": 60, + }, + { + "category": "Egg", + "configData": { + "id": "Magma Unit Egg", + }, + "value": 183505003, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pot of Gold Cat", + "pt": 1, + }, + "value": 88082963, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Frontman Jellyfish", + }, + "value": 11868809284, + }, + { + "category": "Pet", + "configData": { + "id": "Wizard Westie", + }, + "value": 104938, + }, + { + "category": "Booth", + "configData": { + "id": "UFO", + }, + "value": 266917619, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crackling Dragon", + }, + "value": 2693829424, + }, + { + "category": "Pet", + "configData": { + "id": "Feral Beast", + }, + "value": 15643484, + }, + { + "category": "Pet", + "configData": { + "id": "Pentangelus", + }, + "value": 411, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiedye Corgi", + }, + "value": 110716222, + }, + { + "category": "Lootbox", + "configData": { + "id": "Large Christmas Present", + }, + "value": 5122777, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Matryoshka Dino", + "sh": true, + }, + "value": 3883375713, + }, + { + "category": "Pet", + "configData": { + "id": "Beach Ball Monkey", + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Poseidon Dog", + }, + "value": 21, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Persimmony Cricket", + }, + "value": 5132070375, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Raptor", + "pt": 1, + }, + "value": 156325670, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 33", + }, + "value": 215469673, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Floatie Cat", + "pt": 1, + }, + "value": 56944898, + }, + { + "category": "Tower", + "configData": { + "id": "Ronin Piggy", + }, + "value": 38, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skeleton", + "pt": 1, + }, + "value": 96330744, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Scarecrow Dog", + }, + "value": 43720295, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Turtle", + "pt": 2, + }, + "value": 133422634, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Wild Fire Agony", + }, + "value": 14046847153, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tropical Toucan", + "pt": 2, + }, + "value": 259456610, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nutcracker Cat", + }, + "value": 30114801, + }, + { + "category": "Pet", + "configData": { + "id": "Sailor Shark", + }, + "value": 11, + }, + { + "category": "Pet", + "configData": { + "id": "Turtle in a Bucket", + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Fish in a Bucket", + }, + "value": 54, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Reindeer Cat", + }, + "value": 7980329056, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Cat", + "sh": true, + }, + "value": 207627880, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pixel Agony", + }, + "value": 7448633515, + }, + { + "category": "Pet", + "configData": { + "id": "Seal", + }, + "value": 17, + }, + { + "category": "Pet", + "configData": { + "id": "Super Axolotl", + }, + "value": 14209817, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Angry Yeti", + "pt": 1, + }, + "value": 23687796, + }, + { + "category": "Potion", + "configData": { + "id": "Treasure Hunter", + "tn": 10, + }, + "value": 68451, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chesnut Chipmunk", + "sh": true, + }, + "value": 170997148, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holly Corgi", + }, + "value": 26353817, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rootkin Fox", + }, + "value": 45838702, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blazing Bat", + }, + "value": 241819925, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Temporal Owl", + "sh": true, + }, + "value": 144483547, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Quokka", + "pt": 1, + }, + "value": 5044991809, + }, + { + "category": "Pet", + "configData": { + "id": "Blossom Spirit", + }, + "value": 8843429, + }, + { + "category": "Card", + "configData": { + "id": "Pixel Dragon Card", + "pt": 1, + }, + "value": 1862, + }, + { + "category": "Pet", + "configData": { + "cv": 3, + "id": "Huge Chroma Phoenix", + }, + "value": 60166748, + }, + { + "category": "Pet", + "configData": { + "id": "Gary the Snail", + "sh": true, + }, + "value": 33703682, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shuriken Corgi", + "sh": true, + }, + "value": 147068783, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sleigh Axolotl", + "sh": true, + }, + "value": 491725295, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kaiju Hydra", + }, + "value": 342532094, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Griffin", + "pt": 1, + "sh": true, + }, + "value": 252517296, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kawaii Dragon", + }, + "value": 164698102, + }, + { + "category": "Pet", + "configData": { + "id": "Snowflake Dragon", + "pt": 1, + }, + "value": 75440, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ladybug", + "pt": 2, + }, + "value": 158505541, + }, + { + "category": "Pet", + "configData": { + "cv": 2, + "id": "Huge Chroma Snail", + "pt": 2, + }, + "value": 695386709, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gecko", + "pt": 2, + }, + "value": 482771017, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pot of Gold Cat", + "pt": 2, + }, + "value": 553212538, + }, + { + "category": "Pet", + "configData": { + "id": "Pog Dragon", + }, + "value": 309828, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valentines Cat", + }, + "value": 701379468, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wicked Angelus", + "pt": 1, + }, + "value": 111677724, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Bee", + "pt": 1, + }, + "value": 145123851, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Angel Dragon", + }, + "value": 49122691, + }, + { + "category": "Pet", + "configData": { + "id": "Hippomint", + "pt": 1, + }, + "value": 1486628, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Coach Hippo", + "pt": 2, + }, + "value": 308512273, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Elephant", + "pt": 2, + }, + "value": 148947520, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spitting Dino", + "pt": 1, + }, + "value": 117901522, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Dragon", + "pt": 2, + }, + "value": 166393852, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Coach Hippo", + }, + "value": 27711435, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Sandcastle", + }, + "value": 3624483, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Dolphin", + }, + "value": 10374320021, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doodle Cat", + }, + "value": 251080871, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Dragon", + "pt": 2, + }, + "value": 204731548, + }, + { + "category": "Lootbox", + "configData": { + "id": "Doodle Gift", + }, + "value": 8727078, + }, + { + "category": "Pet", + "configData": { + "id": "Wicked Empyrean Dominus", + }, + "value": 53, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Coconut Corgi", + "pt": 1, + }, + "value": 50661327, + }, + { + "category": "Booth", + "configData": { + "id": "Aura", + }, + "value": 3606930, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Robber Pug", + "pt": 1, + }, + "value": 29196781, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 11", + }, + "value": 890108680, + }, + { + "category": "Pet", + "configData": { + "id": "Patchwork Bunny", + "pt": 2, + }, + "value": 21917314, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blurred Bear Ball", + "pt": 1, + }, + "value": 25362567, + }, + { + "category": "Pet", + "configData": { + "id": "Fairy Moth", + "pt": 2, + "sh": true, + }, + "value": 1574986, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Panda", + }, + "value": 80, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Safari Cat", + }, + "value": 363126089, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gazelle", + "pt": 1, + }, + "value": 68423641, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cyborg Capybara", + }, + "value": 2370986802, + }, + { + "category": "Pet", + "configData": { + "id": "Elegant Eagle", + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Bear", + }, + "value": 16, + }, + { + "category": "Pet", + "configData": { + "id": "Astral Axolotl", + }, + "value": 30, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Hippomelon", + "pt": 2, + "sh": true, + }, + "value": 8226, + }, + { + "category": "Pet", + "configData": { + "id": "Anime Tanuki", + "pt": 2, + }, + "value": 64229761, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 48", + }, + "value": 413318940, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Crown Hippomelon", + "pt": 1, + }, + "value": 84700760, + }, + { + "category": "Card", + "configData": { + "id": "Camo Axolotl Card", + }, + "value": 1565, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Golem", + }, + "value": 109825180, + }, + { + "category": "Pet", + "configData": { + "id": "Dragonfruit Dragon", + "pt": 2, + "sh": true, + }, + "value": 955646393, + }, + { + "category": "Pet", + "configData": { + "id": "Psychic Seal", + "pt": 1, + }, + "value": 12, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dog", + "sh": true, + }, + "value": 2565185088, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Grim Reaper", + }, + "value": 1812221902, + }, + { + "category": "Pet", + "configData": { + "id": "Research Dog", + }, + "value": 39, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bat", + "sh": true, + }, + "value": 195251451, + }, + { + "category": "Pet", + "configData": { + "id": "Player Corgi", + "sh": true, + }, + "value": 42, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Egg Dino", + }, + "value": 51519945, + }, + { + "category": "Pet", + "configData": { + "id": "Toy Duck", + }, + "value": 289, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Agony", + }, + "value": 76, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Aura Kitsune", + }, + "value": 13786760025, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Kitsune Fox", + "pt": 1, + }, + "value": 12825727327, + }, + { + "category": "Pet", + "configData": { + "id": "Sea Dragon", + }, + "value": 37512621, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Bunny", + "pt": 1, + }, + "value": 62512516, + }, + { + "category": "Pet", + "configData": { + "id": "Snowflake Dragon", + "pt": 2, + }, + "value": 148129, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Polar Bear", + "pt": 1, + }, + "value": 23921293, + }, + { + "category": "Lootbox", + "configData": { + "id": "Meteor Gift", + }, + "value": 399494, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Owl", + "pt": 2, + "sh": true, + }, + "value": 4208226, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Nightfall Pegasus", + }, + "value": 22512342725, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Snow Elf", + }, + "value": 5810674340, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Computer", + }, + "value": 39, + }, + { + "category": "Pet", + "configData": { + "id": "Puurple Cat", + }, + "value": 10755712, + }, + { + "category": "Enchant", + "configData": { + "id": "Lucky Eggs", + "tn": 6, + }, + "value": 134, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Watermelon Golem", + "pt": 1, + }, + "value": 112389977, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Balloon Corgi", + }, + "value": 873851300, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sketch Corgi", + }, + "value": 158525170, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Jurassic Feline", + }, + "value": 10556760896, + }, + { + "category": "Pet", + "configData": { + "id": "Anime Agony", + }, + "value": 64342261, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Storm Agony", + "pt": 1, + }, + "value": 3827858705, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Storm Agony", + "pt": 2, + }, + "value": 6491062927, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Dragon", + "pt": 2, + }, + "value": 110, + }, + { + "category": "Pet", + "configData": { + "id": "Super Tiger", + }, + "value": 22726815, + }, + { + "category": "Enchant", + "configData": { + "id": "Coins", + "tn": 1, + }, + "value": 44, + }, + { + "category": "Booth", + "configData": { + "id": "Parrot", + }, + "value": 4693676, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Phantom Wolf", + }, + "value": 305747363, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fox", + }, + "value": 232367564, + }, + { + "category": "Pet", + "configData": { + "id": "Watermelon Golem", + }, + "value": 568326, + }, + { + "category": "Pet", + "configData": { + "id": "Stunt Unicorn", + }, + "value": 1973412039, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clown Cat", + "pt": 1, + }, + "value": 1580415268, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Giraffe", + "pt": 2, + "sh": true, + }, + "value": 1937369247, + }, + { + "category": "Booth", + "configData": { + "id": "Merchant", + }, + "value": 712918, + }, + { + "category": "Pet", + "configData": { + "id": "Bear", + }, + "value": 1721, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lightning Bat", + }, + "value": 30467632, + }, + { + "category": "Card", + "configData": { + "id": "Immortuus Card", + }, + "value": 393, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Knight Beagle", + "pt": 1, + }, + "value": 30153371, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Bunny Ball", + }, + "value": 37526368, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hacker Axolotl", + "pt": 1, + }, + "value": 53154417, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pterodactyl", + "pt": 1, + }, + "value": 101900357, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cyborg Dragon", + "pt": 2, + }, + "value": 1080123017, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Atomic Monkey Ball", + "pt": 2, + }, + "value": 156137836, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Devil Tasmanian", + "pt": 2, + }, + "value": 432107409, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Spider", + "sh": true, + }, + "value": 71881, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Monkey", + "pt": 2, + }, + "value": 6429, + }, + { + "category": "Pet", + "configData": { + "id": "Astronaut Cat Ball", + }, + "value": 40, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Cat", + }, + "value": 2541728566, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valentines Dominus", + }, + "value": 52941448, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cupcake Pegasus", + "pt": 2, + "sh": true, + }, + "value": 3791888219, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soul Dragon", + }, + "value": 302609145, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Shadow Griffin", + }, + "value": 44372538, + }, + { + "category": "Pet", + "configData": { + "id": "Marshmallow Kitsune", + }, + "value": 37, + }, + { + "category": "Pet", + "configData": { + "id": "Merry Manatee", + "pt": 2, + }, + "value": 17, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dark Fox", + }, + "value": 39744768, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Goat", + "pt": 2, + }, + "value": 4, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Yeti", + "pt": 2, + }, + "value": 458, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Deerserker", + "pt": 1, + }, + "value": 37744200, + }, + { + "category": "Pet", + "configData": { + "id": "Atomic Axolotl", + "pt": 1, + }, + "value": 108, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Frostbyte Griffin", + "pt": 1, + }, + "value": 23929545, + }, + { + "category": "Booth", + "configData": { + "id": "Reaper", + }, + "value": 202195962, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Old Wizard Cat", + "pt": 1, + }, + "value": 25926316, + }, + { + "category": "Pet", + "configData": { + "id": "Crackling Dragon", + }, + "value": 594, + }, + { + "category": "Pet", + "configData": { + "id": "Leafy Deer", + "sh": true, + }, + "value": 2396958771, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Grim Reaper", + "pt": 1, + }, + "value": 1456138039, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chocolate Bunny", + "pt": 1, + }, + "value": 31120561, + }, + { + "category": "Booth", + "configData": { + "id": "Axolotl", + }, + "value": 26377164, + }, + { + "category": "Pet", + "configData": { + "id": "Sleipnir", + }, + "value": 46752977, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Pixel Cat", + }, + "value": 628427971, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Hippomint", + "sh": true, + }, + "value": 14366976683, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snow Crab", + "pt": 1, + }, + "value": 51627212, + }, + { + "category": "Card", + "configData": { + "id": "Super Seal Card", + "sh": true, + }, + "value": 6307147, + }, + { + "category": "Pet", + "configData": { + "id": "Dino Dog", + }, + "value": 127, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jolly Dino", + "pt": 1, + "sh": true, + }, + "value": 342438192, + }, + { + "category": "Pet", + "configData": { + "id": "Anime Wolf", + "sh": true, + }, + "value": 28783513, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crystal Spider", + }, + "value": 36294592, + }, + { + "category": "Pet", + "configData": { + "id": "Wireframe Cat", + "pt": 2, + }, + "value": 15, + }, + { + "category": "Pet", + "configData": { + "id": "Reaper Cat", + "pt": 2, + }, + "value": 168, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Dragon", + }, + "value": 76799289, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Strawberry Cow", + }, + "value": 360235871, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Knight Beagle", + "pt": 1, + "sh": true, + }, + "value": 237778328, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Dino", + }, + "value": 1994151, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crystal Spider", + "pt": 1, + }, + "value": 50917410, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Colorful Wisp", + "pt": 1, + }, + "value": 68364633, + }, + { + "category": "Pet", + "configData": { + "id": "Patchwork Bunny", + "sh": true, + }, + "value": 29127145, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Dragon", + "pt": 1, + }, + "value": 75641721, + }, + { + "category": "Pet", + "configData": { + "cv": 2, + "id": "Huge Chroma Phoenix", + }, + "value": 71185550, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Golem", + }, + "value": 117702899, + }, + { + "category": "Card", + "configData": { + "id": "Chill Axolotl Card", + }, + "value": 482, + }, + { + "category": "Pet", + "configData": { + "id": "Cannibal Meerkat", + "sh": true, + }, + "value": 10406481, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bubble Hydra", + "pt": 1, + }, + "value": 112204594, + }, + { + "category": "Enchant", + "configData": { + "id": "Rainbow Eggs", + "tn": 1, + }, + "value": 34613635412, + }, + { + "category": "Misc", + "configData": { + "id": "Basic Item Jar", + }, + "value": 7236, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nutcracker Bunny", + "sh": true, + }, + "value": 317816482, + }, + { + "category": "Booth", + "configData": { + "id": "Night Terror", + }, + "value": 1880817, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Ruler", + }, + "value": 7608264, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Hologram", + "sh": true, + }, + "value": 1589531323, + }, + { + "category": "Lootbox", + "configData": { + "id": "Buff Gym Gift", + }, + "value": 199256, + }, + { + "category": "Pet", + "configData": { + "id": "Nightmare Bear", + }, + "value": 13822687, + }, + { + "category": "Pet", + "configData": { + "id": "Jurassic Elephant", + "sh": true, + }, + "value": 8390825, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cupid Corgi", + "pt": 1, + }, + "value": 55540947, + }, + { + "category": "Pet", + "configData": { + "id": "Luchador Axolotl", + }, + "value": 12374957, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snow Crab", + "pt": 2, + }, + "value": 276205121, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Cat", + "pt": 1, + }, + "value": 30989659, + }, + { + "category": "Pet", + "configData": { + "id": "Cloud Monkey", + }, + "value": 16, + }, + { + "category": "Pet", + "configData": { + "id": "Wizard Cat", + }, + "value": 187, + }, + { + "category": "Pet", + "configData": { + "id": "Vibrant Cobra", + }, + "value": 28, + }, + { + "category": "Lootbox", + "configData": { + "id": "Wooden Gift", + }, + "value": 1007201, + }, + { + "category": "Pet", + "configData": { + "id": "Raining Love Dog", + "pt": 1, + }, + "value": 41, + }, + { + "category": "Pet", + "configData": { + "id": "Tropical Toucan", + }, + "value": 15146693, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Axolotl", + "pt": 1, + }, + "value": 3250, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Easter Cat", + }, + "value": 7695697330, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Empyrean Agony", + "pt": 1, + }, + "value": 116961085, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Neon Twilight Dragon", + }, + "value": 2853437168, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Panda", + }, + "value": 14113924, + }, + { + "category": "Pet", + "configData": { + "id": "Cosmic Dragon", + "sh": true, + }, + "value": 24642056, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Scarecrow Cat", + "pt": 2, + }, + "value": 460626266, + }, + { + "category": "Pet", + "configData": { + "id": "Starry Tail Anteater", + }, + "value": 34, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gingerbread Angelus", + "pt": 1, + }, + "value": 7463171300, + }, + { + "category": "Misc", + "configData": { + "id": "Golden Shovel", + }, + "value": 62168, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Nuclear Dominus", + }, + "value": 5355902719, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cyber Agony", + "pt": 2, + }, + "value": 215326529, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Detective Terrier", + "pt": 1, + }, + "value": 30670112, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Goblin", + "pt": 1, + }, + "value": 22358875, + }, + { + "category": "Pet", + "configData": { + "id": "Leafstorm Wolf", + "pt": 2, + }, + "value": 31042860, + }, + { + "category": "Pet", + "configData": { + "cv": 6, + "id": "Huge Chroma Tiger", + }, + "value": 77396655, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Crown Hippomelon", + "pt": 2, + }, + "value": 540574240, + }, + { + "category": "Pet", + "configData": { + "id": "Naughty Dominus", + }, + "value": 10352562, + }, + { + "category": "Booth", + "configData": { + "id": "Forcefield", + }, + "value": 150328647, + }, + { + "category": "Pet", + "configData": { + "id": "North Pole Unicorn", + "pt": 2, + }, + "value": 61, + }, + { + "category": "Pet", + "configData": { + "id": "White Tiger", + }, + "value": 3, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Splash Angelus", + "pt": 1, + }, + "value": 16056651946, + }, + { + "category": "Pet", + "configData": { + "id": "Imp", + "sh": true, + }, + "value": 3616, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nutcracker Cat", + "pt": 2, + }, + "value": 132923316, + }, + { + "category": "Pet", + "configData": { + "id": "Matryoshka Capybara", + "pt": 2, + }, + "value": 19287613, + }, + { + "category": "Pet", + "configData": { + "id": "Storm Griffin", + "pt": 1, + }, + "value": 23295, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Sandcastle Kraken", + }, + "value": 6249916314, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Robber Pug", + "pt": 2, + }, + "value": 147512624, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bee", + "sh": true, + }, + "value": 94645947, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fragmented Dominus Ball", + }, + "value": 40888550, + }, + { + "category": "Pet", + "configData": { + "id": "Soul Dragon", + }, + "value": 20790025, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Willow Wisp", + "sh": true, + }, + "value": 236625189, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Lamb", + "pt": 2, + }, + "value": 4163, + }, + { + "category": "Egg", + "configData": { + "id": "Series 1 Basic Gift", + }, + "value": 403525774, + }, + { + "category": "Pet", + "configData": { + "id": "Hi-Tech Parrot", + }, + "value": 48277, + }, + { + "category": "Egg", + "configData": { + "id": "Buff Gym Egg", + }, + "value": 243407813, + }, + { + "category": "Lootbox", + "configData": { + "id": "Graffiti Gift", + }, + "value": 302230, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ninja Axolotl", + "sh": true, + }, + "value": 650147814, + }, + { + "category": "Booth", + "configData": { + "id": "Comet", + }, + "value": 265619004, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dino Dog", + "pt": 2, + }, + "value": 222024503, + }, + { + "category": "Pet", + "configData": { + "id": "Marzipan Piggy", + "pt": 2, + }, + "value": 1155, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cyborg Cat", + }, + "value": 346442317, + }, + { + "category": "Pet", + "configData": { + "id": "Hacked Raccoon", + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Fluffy Cat", + }, + "value": 10, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Starlight Pony", + "pt": 1, + }, + "value": 5616763437, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Egg Dino", + "sh": true, + }, + "value": 207589549, + }, + { + "category": "Pet", + "configData": { + "cv": 1, + "id": "Huge Chroma Swan", + }, + "value": 154018920, + }, + { + "category": "Booth", + "configData": { + "id": "Evil", + }, + "value": 389199637, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valentines Bear", + "pt": 2, + }, + "value": 170812371, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holiday Bearserker", + "pt": 2, + }, + "value": 214132157, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lifeguard Shark", + }, + "value": 41149322, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Poseidon Dog", + }, + "value": 92764443, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Unicorn Dragon", + }, + "value": 176748392, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Elemental", + }, + "value": 3515245, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vibrant Toucan", + "pt": 1, + }, + "value": 73276584, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cartoon Bunny", + }, + "value": 230562835, + }, + { + "category": "Pet", + "configData": { + "id": "Hippomint", + "pt": 2, + }, + "value": 1825388, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dark Lord", + "pt": 1, + }, + "value": 50795182, + }, + { + "category": "Pet", + "configData": { + "id": "Glade Griffin", + "pt": 2, + }, + "value": 61, + }, + { + "category": "Pet", + "configData": { + "id": "Huge UV Kitsune Ball", + }, + "value": 518026406, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Super Wolf", + }, + "value": 6690868017, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Yin-Yang Grim Reaper", + }, + "value": 22228383439, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pink Kitsune Fox", + }, + "value": 13404517676, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ice Snake", + "pt": 1, + }, + "value": 6147614535, + }, + { + "category": "Tower", + "configData": { + "id": "Cyborg Kitsune", + }, + "value": 10659, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Kitsune", + "pt": 1, + }, + "value": 82862981, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Dragon", + "pt": 2, + }, + "value": 206, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lunar Moth", + "pt": 1, + }, + "value": 35226909, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Forged Cyclops", + }, + "value": 171963874, + }, + { + "category": "Tower", + "configData": { + "id": "Knight Chicken", + }, + "value": 5206, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Signature BIG Maskot Card", + "pt": 2, + }, + "value": 23014937202, + }, + { + "category": "Tower", + "configData": { + "id": "Demolition Panda", + }, + "value": 7452, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Tiger", + "pt": 2, + }, + "value": 295035026, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Red Wolf", + }, + "value": 35978264, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chroma Doodle Axolotl", + }, + "value": 46697409, + }, + { + "category": "Pet", + "configData": { + "id": "Inkwell Wisp", + "pt": 1, + }, + "value": 27, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Arcane Dominus", + }, + "value": 430625462, + }, + { + "category": "Tower", + "configData": { + "id": "Comet Dragon", + }, + "value": 4153, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 17", + }, + "value": 423998404, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Cat", + }, + "value": 17, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pumpkin Cat", + }, + "value": 22143937531, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Sea Dragon", + "pt": 1, + }, + "value": 5686333580, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Detective Terrier", + "pt": 1, + "sh": true, + }, + "value": 614342649, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 18", + }, + "value": 316100799, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Dino", + }, + "value": 38892302, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Slasher Sloth", + }, + "value": 84525959, + }, + { + "category": "Pet", + "configData": { + "id": "Lit Loris", + "pt": 1, + "sh": true, + }, + "value": 254946, + }, + { + "category": "Misc", + "configData": { + "id": "Banana Peel", + }, + "value": 4728, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elephant", + "pt": 1, + "sh": true, + }, + "value": 280755311, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Axolotl", + }, + "value": 59, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shadow Dominus", + "pt": 1, + }, + "value": 38178694, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Triceratops", + }, + "value": 188603027, + }, + { + "category": "Pet", + "configData": { + "id": "Trojan Horse", + "pt": 1, + "sh": true, + }, + "value": 165, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kangaroo", + "pt": 2, + }, + "value": 149880223, + }, + { + "category": "Pet", + "configData": { + "id": "Apollo Raven", + "pt": 2, + "sh": true, + }, + "value": 1000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Atomic Forged Shark", + }, + "value": 67721030, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Three Headed Dragon", + }, + "value": 1089964136, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Red Panda", + "sh": true, + }, + "value": 133402677, + }, + { + "category": "Pet", + "configData": { + "id": "Bejeweled Deer", + }, + "value": 10286711, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gym Piggy", + }, + "value": 6586265273, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snowflake Pegasus", + "pt": 1, + "sh": true, + }, + "value": 283621717, + }, + { + "category": "Pet", + "configData": { + "id": "Seal", + "pt": 2, + }, + "value": 1629, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Fairy", + }, + "value": 112020239, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Huge Chroma Swan", + }, + "value": 167553895, + }, + { + "category": "Pet", + "configData": { + "id": "Hi-Tech Monkey", + "sh": true, + }, + "value": 882, + }, + { + "category": "Pet", + "configData": { + "id": "Hi-Tech Tiger", + }, + "value": 512, + }, + { + "category": "Pet", + "configData": { + "id": "Hi-Tech Sloth", + }, + "value": 26, + }, + { + "category": "Pet", + "configData": { + "id": "Hi-Tech Parrot", + "sh": true, + }, + "value": 9027, + }, + { + "category": "Pet", + "configData": { + "id": "Hi-Tech Sloth", + "pt": 1, + }, + "value": 6927, + }, + { + "category": "Pet", + "configData": { + "id": "Hi-Tech Parrot", + "pt": 1, + }, + "value": 1034, + }, + { + "category": "Enchant", + "configData": { + "id": "Lucky Eggs", + "tn": 1, + }, + "value": 29, + }, + { + "category": "Pet", + "configData": { + "id": "Hi-Tech Monkey", + "pt": 2, + }, + "value": 166560413, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Cyclops", + }, + "value": 8, + }, + { + "category": "Pet", + "configData": { + "id": "Hi-Tech Tiger", + "pt": 1, + }, + "value": 2752, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Cow", + "sh": true, + }, + "value": 35, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gingerbread Lion", + "pt": 1, + "sh": true, + }, + "value": 294672398, + }, + { + "category": "Pet", + "configData": { + "id": "Hi-Tech Sloth", + "pt": 2, + }, + "value": 114694, + }, + { + "category": "Pet", + "configData": { + "id": "Hi-Tech Parrot", + "pt": 2, + }, + "value": 272, + }, + { + "category": "Tower", + "configData": { + "id": "Poseidon Axolotl", + }, + "value": 933158, + }, + { + "category": "Pet", + "configData": { + "id": "Fairy Ladybug", + }, + "value": 23110, + }, + { + "category": "Pet", + "configData": { + "id": "Jurassic Elephant", + "pt": 2, + }, + "value": 23509406, + }, + { + "category": "Booth", + "configData": { + "id": "Clown", + }, + "value": 358578127, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Axolotl", + }, + "value": 33, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Dragon", + }, + "value": 9859068, + }, + { + "category": "Pet", + "configData": { + "id": "Research Cat", + }, + "value": 13, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Dino", + }, + "value": 52, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Seal", + }, + "value": 812, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 44", + }, + "value": 314465877, + }, + { + "category": "Pet", + "configData": { + "id": "Black Hole Kitsune", + }, + "value": 25875196, + }, + { + "category": "Pet", + "configData": { + "id": "Stunt Raccoon", + "pt": 2, + }, + "value": 656, + }, + { + "category": "Pet", + "configData": { + "id": "Light Spirit", + }, + "value": 12966416, + }, + { + "category": "Pet", + "configData": { + "id": "Ghostly Bunny", + "sh": true, + }, + "value": 41148747, + }, + { + "category": "Pet", + "configData": { + "id": "Candycorn Unicorn", + "sh": true, + }, + "value": 13120819, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Troll", + "pt": 1, + "sh": true, + }, + "value": 720, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Telescope Owl", + "pt": 2, + "sh": true, + }, + "value": 7010566631, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Axolotl", + }, + "value": 19, + }, + { + "category": "Pet", + "configData": { + "id": "Old Wizard Owl", + "pt": 1, + }, + "value": 20499222, + }, + { + "category": "Pet", + "configData": { + "id": "Old Wizard Dragon", + "pt": 1, + }, + "value": 25338664, + }, + { + "category": "Pet", + "configData": { + "id": "Mech Dino", + }, + "value": 2969, + }, + { + "category": "Pet", + "configData": { + "id": "Cloud Cat", + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Dino", + }, + "value": 6805, + }, + { + "category": "Pet", + "configData": { + "id": "Lit Cat", + "pt": 2, + }, + "value": 938, + }, + { + "category": "Card", + "configData": { + "id": "Lumi Axolotl Card", + "sh": true, + }, + "value": 2459, + }, + { + "category": "Enchant", + "configData": { + "id": "Chest Mimic", + "tn": 1, + }, + "value": 7611480794, + }, + { + "category": "Pet", + "configData": { + "id": "Kawaii Dragon Ball", + "pt": 1, + }, + "value": 138, + }, + { + "category": "Pet", + "configData": { + "id": "UV Kitsune", + "pt": 1, + }, + "value": 611, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Husky", + }, + "value": 505355940, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Spitting Dino", + }, + "value": 114, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Triceratops", + }, + "value": 3155, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pineapple Monkey", + }, + "value": 31485297, + }, + { + "category": "Pet", + "configData": { + "id": "Cotton Candy Cow", + }, + "value": 1384, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Bunny", + "pt": 1, + "sh": true, + }, + "value": 6406, + }, + { + "category": "Pet", + "configData": { + "id": "Safari Cat", + }, + "value": 21, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Dragon", + }, + "value": 979302394, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Jaguar", + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Stegosaurus", + }, + "value": 202, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Present Dragon", + "pt": 1, + }, + "value": 64669252, + }, + { + "category": "Pet", + "configData": { + "id": "Raptor", + }, + "value": 187, + }, + { + "category": "Pet", + "configData": { + "id": "Dino Monkey", + "sh": true, + }, + "value": 2984576, + }, + { + "category": "Pet", + "configData": { + "id": "Molten Wisp", + }, + "value": 12, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Cat", + "sh": true, + }, + "value": 3354, + }, + { + "category": "Pet", + "configData": { + "id": "Kawaii Cat", + }, + "value": 36, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Unicorn", + }, + "value": 202, + }, + { + "category": "Pet", + "configData": { + "id": "Glade Griffin", + }, + "value": 26, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Meebo in a Spaceship", + "pt": 1, + }, + "value": 6086, + }, + { + "category": "Pet", + "configData": { + "id": "Dino Axolotl", + "pt": 1, + }, + "value": 7773, + }, + { + "category": "Pet", + "configData": { + "id": "Anime Lemur", + "sh": true, + }, + "value": 25544809, + }, + { + "category": "Pet", + "configData": { + "id": "Owl", + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Axolotl", + "sh": true, + }, + "value": 316, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Butterfly", + }, + "value": 125, + }, + { + "category": "Pet", + "configData": { + "id": "Safari Cat", + "pt": 2, + }, + "value": 64, + }, + { + "category": "Pet", + "configData": { + "id": "Safari Dog", + "pt": 1, + }, + "value": 1709, + }, + { + "category": "Pet", + "configData": { + "id": "Dino Monkey", + "pt": 1, + }, + "value": 6944811, + }, + { + "category": "Pet", + "configData": { + "id": "Gazelle", + }, + "value": 36, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Corrupt Butterfly", + "sh": true, + }, + "value": 231525115, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Scorpion", + }, + "value": 11, + }, + { + "category": "Pet", + "configData": { + "id": "Quokka", + }, + "value": 5936, + }, + { + "category": "Pet", + "configData": { + "id": "Encrusted Wolf", + }, + "value": 58, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Chick", + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ooze Cat", + "pt": 2, + }, + "value": 129457842, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doodle Dragon", + }, + "value": 70906155, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Serpents", + "pt": 2, + }, + "value": 866, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Painted Cat", + "pt": 1, + }, + "value": 63422442, + }, + { + "category": "Fruit", + "configData": { + "id": "Orange", + "sh": true, + }, + "value": 183, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Jaguar", + "sh": true, + }, + "value": 1243, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pinecone Porcupine", + }, + "value": 30513868, + }, + { + "category": "Pet", + "configData": { + "id": "Stegosaurus", + "sh": true, + }, + "value": 450, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Troll", + "pt": 2, + "sh": true, + }, + "value": 131, + }, + { + "category": "Pet", + "configData": { + "id": "Safari Cat", + "sh": true, + }, + "value": 249, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Cat", + "pt": 1, + }, + "value": 673, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Spitting Dino", + "sh": true, + }, + "value": 83, + }, + { + "category": "Pet", + "configData": { + "id": "Stunt Raccoon", + }, + "value": 56, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snow Globe Corgi", + }, + "value": 284930166, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leafstorm Wolf", + }, + "value": 67669543, + }, + { + "category": "Pet", + "configData": { + "id": "Mortuus", + }, + "value": 50, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Reindeer Cat", + "sh": true, + }, + "value": 128570629, + }, + { + "category": "Pet", + "configData": { + "id": "Camel", + }, + "value": 2676, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ninja Dalmatian", + "sh": true, + }, + "value": 124821523, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Green Cobra", + "sh": true, + }, + "value": 105502738, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anglerfish", + "pt": 2, + }, + "value": 148661119, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blossom Spirit", + "sh": true, + }, + "value": 952599673, + }, + { + "category": "Pet", + "configData": { + "id": "Yin-Yang Dragon", + "pt": 2, + }, + "value": 31935850, + }, + { + "category": "Pet", + "configData": { + "id": "Cloud Cat", + "pt": 1, + }, + "value": 147, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Unicorn", + "sh": true, + }, + "value": 4294, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Monkey", + }, + "value": 1705, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Dino", + "pt": 1, + }, + "value": 665, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Penguin", + }, + "value": 105, + }, + { + "category": "Pet", + "configData": { + "id": "Flex Tiger", + }, + "value": 13838106, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shadow Pegasus", + "pt": 1, + }, + "value": 107710018, + }, + { + "category": "Booth", + "configData": { + "id": "Blimp Dragon", + }, + "value": 193476211, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Starlight Pony", + "pt": 2, + }, + "value": 17557247392, + }, + { + "category": "Pet", + "configData": { + "id": "Anime Wolf", + "pt": 2, + }, + "value": 34228306, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guard Hydra", + "pt": 1, + }, + "value": 66035515, + }, + { + "category": "Pet", + "configData": { + "id": "Anime Lemur", + "pt": 2, + }, + "value": 21770583, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hedgehog", + }, + "value": 1584300568, + }, + { + "category": "Pet", + "configData": { + "id": "Scary Corgi", + }, + "value": 1035, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chocolate Bunny", + "pt": 2, + }, + "value": 174709513, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nyan Cat", + "pt": 1, + }, + "value": 179031468, + }, + { + "category": "Pet", + "configData": { + "id": "Chef Monkey", + "sh": true, + }, + "value": 18, + }, + { + "category": "Booth", + "configData": { + "id": "Christmas", + }, + "value": 1171856, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Cow", + }, + "value": 42680097, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soul Cat", + }, + "value": 131853071, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Hell Rock", + }, + "value": 83576776, + }, + { + "category": "Pet", + "configData": { + "cv": 2, + "id": "Huge Chroma Snail", + }, + "value": 79968026, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lifeguard Shark", + "pt": 1, + }, + "value": 62311260, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snowflake Dominus", + "sh": true, + }, + "value": 130440671, + }, + { + "category": "Pet", + "configData": { + "id": "Minecart Hamster", + }, + "value": 70, + }, + { + "category": "Pet", + "configData": { + "id": "Anime Tanuki", + "sh": true, + }, + "value": 42435167, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Surfboard", + }, + "value": 2523167, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tropical Flamingo", + "pt": 1, + }, + "value": 137307942, + }, + { + "category": "Pet", + "configData": { + "id": "Huge UV Kitsune", + "pt": 1, + }, + "value": 55967375, + }, + { + "category": "Pet", + "configData": { + "id": "Atomic Monkey", + "pt": 1, + }, + "value": 126, + }, + { + "category": "Card", + "configData": { + "id": "Hellhound Card", + "pt": 1, + "sh": true, + }, + "value": 17656, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snow Elf", + "pt": 1, + }, + "value": 25350327, + }, + { + "category": "Pet", + "configData": { + "id": "Naughty Dominus", + "pt": 2, + }, + "value": 38325170, + }, + { + "category": "Booth", + "configData": { + "id": "Cat", + }, + "value": 3859576, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evergreen Unicorn", + "sh": true, + }, + "value": 106857527, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Bearserker", + "sh": true, + }, + "value": 16452666, + }, + { + "category": "Pet", + "configData": { + "id": "Hypnotic Griffin", + }, + "value": 7631098, + }, + { + "category": "Card", + "configData": { + "id": "Hellhound Card", + "sh": true, + }, + "value": 935, + }, + { + "category": "Card", + "configData": { + "id": "Ninja Snake Card", + }, + "value": 2083, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jolly Owl", + }, + "value": 81501330, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Corgi", + }, + "value": 46828122, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Troll", + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Corrupt Butterfly", + "pt": 1, + "sh": true, + }, + "value": 303981416, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skeleton Cat", + }, + "value": 28325581, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bearserker", + "pt": 1, + }, + "value": 133688513, + }, + { + "category": "Pet", + "configData": { + "id": "Valkyrie Dragon", + }, + "value": 10466081, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Spirit Mushroom", + }, + "value": 6069088195, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Present Dragon", + "sh": true, + }, + "value": 3798168001, + }, + { + "category": "Pet", + "configData": { + "id": "Mermaid Cat", + "sh": true, + }, + "value": 160000943, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tech Chest Mimic", + "pt": 1, + }, + "value": 113461845, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Atlantean Orca", + }, + "value": 702272619, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Werewolf", + }, + "value": 2381, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Hydra Axolotl", + "pt": 2, + }, + "value": 17785153322, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Dog", + "pt": 2, + }, + "value": 94, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Minecart Piggy", + "pt": 1, + }, + "value": 131501807, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Mining Monkey", + "pt": 2, + }, + "value": 155607748, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spectral Deer", + }, + "value": 98739884, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holiday Pegasus", + }, + "value": 69576646, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pirate Dog", + }, + "value": 50491928, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glitched Unicorn Ball", + "sh": true, + }, + "value": 138666849, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Sphinx", + }, + "value": 1007793404, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Corgi", + "sh": true, + }, + "value": 454287213, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Sun Angelus", + }, + "value": 283647578, + }, + { + "category": "Pet", + "configData": { + "id": "Bleebo The Alien", + "pt": 1, + "sh": true, + }, + "value": 21704, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lit Loris", + }, + "value": 185183596, + }, + { + "category": "Pet", + "configData": { + "id": "Flex Bear", + "sh": true, + }, + "value": 11146154, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guard Dominus", + "pt": 1, + }, + "value": 36842465, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Griffin", + "sh": true, + }, + "value": 107715962, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Vampire Bat", + }, + "value": 4277787, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Watermelon Golem", + }, + "value": 142685681, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Candy Cane", + }, + "value": 3439169, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Spider", + "pt": 1, + }, + "value": 3685, + }, + { + "category": "Pet", + "configData": { + "cv": 6, + "id": "Huge Chroma Butterfly", + }, + "value": 88578268, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Chick", + "pt": 1, + }, + "value": 55, + }, + { + "category": "Pet", + "configData": { + "id": "Three Headed Dragon", + }, + "value": 14, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pumpkin Cat", + "pt": 1, + }, + "value": 601506895, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Glitched", + }, + "value": 19449467, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Flamingo Cat", + "pt": 2, + }, + "value": 112740242, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Jelly", + }, + "value": 10214424, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Tie Dye", + }, + "value": 290891116, + }, + { + "category": "Pet", + "configData": { + "id": "Hound of Hades", + }, + "value": 1383, + }, + { + "category": "Pet", + "configData": { + "id": "Phoenix", + "pt": 1, + }, + "value": 2692, + }, + { + "category": "Pet", + "configData": { + "id": "Moray Eel", + "pt": 1, + }, + "value": 100392, + }, + { + "category": "Pet", + "configData": { + "id": "Sloth", + }, + "value": 43309, + }, + { + "category": "Card", + "configData": { + "id": "Wicked Agony Card", + }, + "value": 36814, + }, + { + "category": "Pet", + "configData": { + "id": "Safari Dog", + "pt": 2, + }, + "value": 681, + }, + { + "category": "Pet", + "configData": { + "id": "Leafstorm Wolf", + "sh": true, + }, + "value": 30313110, + }, + { + "category": "Pet", + "configData": { + "id": "Cow", + }, + "value": 24, + }, + { + "category": "Pet", + "configData": { + "id": "Exquisite Parrot", + "sh": true, + }, + "value": 60257087, + }, + { + "category": "Misc", + "configData": { + "id": "Quartz Gem", + }, + "value": 1656, + }, + { + "category": "Pet", + "configData": { + "id": "M-2 PROTOTYPE", + }, + "value": 454, + }, + { + "category": "Misc", + "configData": { + "id": "Topaz Gem", + }, + "value": 13771, + }, + { + "category": "Pet", + "configData": { + "id": "Pony", + }, + "value": 17519416, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Flamingo Hippo", + "pt": 2, + }, + "value": 330612535, + }, + { + "category": "Pet", + "configData": { + "id": "Hypnotic Dragon", + }, + "value": 13419815, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rich Cat", + }, + "value": 52187807, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Patrick Star", + }, + "value": 2265425901, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Cat", + "pt": 1, + }, + "value": 25923279, + }, + { + "category": "Booth", + "configData": { + "id": "Panda", + }, + "value": 5297474, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Bunny", + "pt": 1, + }, + "value": 69, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rose Cat", + "pt": 1, + }, + "value": 56042201, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Huge Chroma Unicorn", + }, + "value": 51770343, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Koi Fish", + "pt": 2, + }, + "value": 153698406, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elegant Eagle", + "pt": 1, + }, + "value": 31546391, + }, + { + "category": "Pet", + "configData": { + "id": "Three Headed Dragon", + "pt": 1, + }, + "value": 1973, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Spider", + }, + "value": 30, + }, + { + "category": "Pet", + "configData": { + "id": "Angry Yeti", + "pt": 1, + }, + "value": 708, + }, + { + "category": "Pet", + "configData": { + "id": "Blossom Spirit", + "sh": true, + }, + "value": 14509985, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rose Cat", + "pt": 2, + }, + "value": 352593625, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jetpack Tiger", + }, + "value": 49437215, + }, + { + "category": "Card", + "configData": { + "id": "Wicked Agony Card", + "pt": 1, + }, + "value": 136445, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dark Fox", + "pt": 2, + }, + "value": 204248002, + }, + { + "category": "Misc", + "configData": { + "id": "Confetti Cannon", + }, + "value": 8083, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ice Snake", + "pt": 2, + }, + "value": 144973152, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stunt Cat", + "sh": true, + }, + "value": 141377611, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Good vs Evil Dragon", + "sh": true, + }, + "value": 145742343392, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Bee", + "pt": 2, + }, + "value": 79, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cupcake Pegasus", + "sh": true, + }, + "value": 148265999, + }, + { + "category": "Pet", + "configData": { + "id": "Bloo Cat", + }, + "value": 27279374, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mosaic Griffin", + "pt": 1, + }, + "value": 80987015, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Agony", + }, + "value": 73338116, + }, + { + "category": "Pet", + "configData": { + "id": "Hacked Computer", + "pt": 1, + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Athena Owl", + "pt": 1, + "sh": true, + }, + "value": 176, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rainbow Unicorn", + "pt": 1, + }, + "value": 709932452, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blazing Shark", + }, + "value": 132682669, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Bunny Ball", + "sh": true, + }, + "value": 188322386, + }, + { + "category": "Pet", + "configData": { + "id": "Lava Slime", + "pt": 1, + }, + "value": 1929, + }, + { + "category": "Pet", + "configData": { + "id": "Hypnotic Cat", + }, + "value": 8108191, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Scorpion", + "pt": 1, + }, + "value": 779367118, + }, + { + "category": "Pet", + "configData": { + "id": "Pop Cat", + "pt": 2, + }, + "value": 344945113, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Wolf", + "sh": true, + }, + "value": 69, + }, + { + "category": "Card", + "configData": { + "id": "Chill Axolotl Card", + "pt": 1, + }, + "value": 17576, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fluffy Cat", + "pt": 2, + }, + "value": 192800269, + }, + { + "category": "Pet", + "configData": { + "id": "Blazing Shark", + "sh": true, + }, + "value": 10499556, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Candycane Unicorn", + "pt": 1, + "sh": true, + }, + "value": 2832589604, + }, + { + "category": "Pet", + "configData": { + "id": "Grimoire Agony", + "sh": true, + }, + "value": 34, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lightning Bat", + "pt": 1, + }, + "value": 46513903, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gym Shark", + }, + "value": 6392713425, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Infernus", + "pt": 2, + }, + "value": 52, + }, + { + "category": "Misc", + "configData": { + "id": "Firework Cannon", + }, + "value": 866255, + }, + { + "category": "Pet", + "configData": { + "id": "Good vs Evil Dragon", + "pt": 2, + }, + "value": 111, + }, + { + "category": "Booth", + "configData": { + "id": "Strawberry", + }, + "value": 14207901, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Peacock", + "pt": 2, + }, + "value": 334269080, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Raptor", + "sh": true, + }, + "value": 24641324374, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Player Panda", + }, + "value": 28293175, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sloth", + "pt": 1, + "sh": true, + }, + "value": 2900000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wild Galaxy Agony", + "pt": 1, + }, + "value": 85631830, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Bunny", + "sh": true, + }, + "value": 1613, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Cosmic Basketball", + }, + "value": 5913709, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Santa Paws", + "pt": 2, + }, + "value": 7871446191, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Dragon", + "pt": 1, + }, + "value": 7809023, + }, + { + "category": "Card", + "configData": { + "id": "Chill Axolotl Card", + "pt": 2, + }, + "value": 25536, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Poseidon Corgi", + }, + "value": 36076492, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Obsidian Dragon", + }, + "value": 12167536847, + }, + { + "category": "Pet", + "configData": { + "id": "Torpedo Shepherd", + "pt": 1, + }, + "value": 79, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Bison", + }, + "value": 72556979, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Yeti", + "pt": 1, + }, + "value": 80125164, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nyan Cat", + "pt": 2, + }, + "value": 1013982304, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sleigh Cat", + "pt": 2, + }, + "value": 195000981, + }, + { + "category": "Tool", + "configData": { + "id": "Solar Pickaxe", + }, + "value": 4262555, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiedye Bunny", + }, + "value": 69848307, + }, + { + "category": "Pet", + "configData": { + "id": "Pog Dog", + }, + "value": 60881, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leafy Deer", + }, + "value": 46267062, + }, + { + "category": "Fruit", + "configData": { + "id": "Apple", + "sh": true, + }, + "value": 567, + }, + { + "category": "Fruit", + "configData": { + "id": "Banana", + "sh": true, + }, + "value": 247, + }, + { + "category": "Pet", + "configData": { + "id": "Neon Dog", + }, + "value": 15694697, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Corgi", + "pt": 2, + }, + "value": 5387272789, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Love Lamb", + }, + "value": 1223239027, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Zebra", + "pt": 1, + }, + "value": 29507803, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Corgi", + }, + "value": 12081829818, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hacker Axolotl", + }, + "value": 45399092, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spotted Elephant", + "pt": 1, + "sh": true, + }, + "value": 258462084, + }, + { + "category": "Enchant", + "configData": { + "id": "Lucky Block", + "tn": 1, + }, + "value": 205942649, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Green Cobra", + "pt": 1, + }, + "value": 30283906, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pumpkin Spice Cat", + "pt": 2, + }, + "value": 187265538, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Meebo in a Spaceship", + "pt": 2, + }, + "value": 211242073, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glitched Unicorn Ball", + "pt": 1, + }, + "value": 28169963, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Flamethrower Spider", + }, + "value": 69593662, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Giraffe", + }, + "value": 15248085910, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Darkwing", + }, + "value": 1489894365, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Parrot", + }, + "value": 92, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Axolotl", + }, + "value": 14420027, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Crayon", + }, + "value": 6894923, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guest Noob", + "pt": 2, + }, + "value": 216908275, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 47", + }, + "value": 347837043, + }, + { + "category": "Pet", + "configData": { + "id": "Dolphin", + }, + "value": 107, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Super Coral Hydra", + }, + "value": 203999928, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Bunny Ball", + "pt": 1, + }, + "value": 622, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Treasure Golem", + }, + "value": 110523766, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Monkey", + }, + "value": 621132327, + }, + { + "category": "Pet", + "configData": { + "id": "Player Gecko", + "pt": 1, + }, + "value": 57, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Super Tiger", + }, + "value": 442403768, + }, + { + "category": "Pet", + "configData": { + "id": "Princess Dragon", + }, + "value": 65, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Poseidon Axolotl", + }, + "value": 896594989, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Helicopter Corgi", + }, + "value": 6049236951, + }, + { + "category": "Pet", + "configData": { + "id": "Hooded Monkey", + "pt": 1, + }, + "value": 245, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 6", + }, + "value": 3675612570, + }, + { + "category": "Pet", + "configData": { + "id": "Alien Parasite", + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Candycorn Unicorn", + "pt": 1, + "sh": true, + }, + "value": 121679699, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Zebra", + "sh": true, + }, + "value": 102265902, + }, + { + "category": "Pet", + "configData": { + "id": "Baby Piglet", + }, + "value": 45, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pineapple Cat", + }, + "value": 75103618, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Floatie Cat", + }, + "value": 23431103, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Chesnut Chipmunk", + "pt": 1, + }, + "value": 8316999979, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mining Monkey", + "pt": 2, + "sh": true, + }, + "value": 2024010429, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valentines Angelus", + }, + "value": 429812049, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Party Panda", + }, + "value": 13147928874, + }, + { + "category": "Lootbox", + "configData": { + "id": "Elemental Gift", + }, + "value": 995418, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Midnight Lion", + }, + "value": 24683723446, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Coconut Corgi", + }, + "value": 38615785, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gecko", + }, + "value": 50326924, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holly Corgi", + "pt": 1, + }, + "value": 58321903, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic DJ Shark", + }, + "value": 12574718419, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Bear", + "pt": 2, + }, + "value": 557524345, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pumpkin Scarecrow", + }, + "value": 61990707, + }, + { + "category": "Pet", + "configData": { + "id": "Chest Mimic", + }, + "value": 833547335, + }, + { + "category": "Booth", + "configData": { + "id": "Sphinx", + }, + "value": 264959073, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Bunny", + }, + "value": 71960674, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Merry Mule", + "pt": 2, + "sh": true, + }, + "value": 12607808000, + }, + { + "category": "Booth", + "configData": { + "id": "Hacker", + }, + "value": 3985230, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Fire Dragon", + }, + "value": 24600344100, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Boxing Elephant", + }, + "value": 86684313, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Parrot", + "pt": 1, + }, + "value": 46536603, + }, + { + "category": "Card", + "configData": { + "id": "Pog Monkey Card", + }, + "value": 8119, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Werewolf", + }, + "value": 71932699, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Water Zebra", + "pt": 2, + }, + "value": 209287508, + }, + { + "category": "Pet", + "configData": { + "id": "Sad Doge", + "pt": 2, + }, + "value": 59607983, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snowflake Dragon", + "sh": true, + }, + "value": 1487848725, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Dolphin", + "pt": 2, + }, + "value": 857, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bejeweled Unicorn", + }, + "value": 124472502, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pinecone Porcupine", + "pt": 1, + }, + "value": 99366687, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Guilded Raven", + "pt": 2, + }, + "value": 18663028071, + }, + { + "category": "Pet", + "configData": { + "id": "Sad Hamster", + }, + "value": 50247160, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wild Galaxy Agony", + }, + "value": 208076474, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gorgon", + }, + "value": 34905984, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pterodactyl", + }, + "value": 61682362, + }, + { + "category": "Consumable", + "configData": { + "id": "Easter Chest Points Booster", + "tn": 1, + }, + "value": 17226, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fiddlefern Cat", + "pt": 1, + "sh": true, + }, + "value": 405048962, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Stallion", + }, + "value": 15, + }, + { + "category": "Pet", + "configData": { + "id": "Cheerful Yeti", + }, + "value": 965, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Elephant", + "pt": 1, + }, + "value": 16967143, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Balloon Cat", + "pt": 2, + }, + "value": 28757906, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Axolotl", + }, + "value": 11, + }, + { + "category": "Pet", + "configData": { + "id": "Plague Dragon", + }, + "value": 93919, + }, + { + "category": "Pet", + "configData": { + "id": "Anime Monkey", + }, + "value": 16546802, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Sleigh", + }, + "value": 699097149, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vampire Agony", + "pt": 1, + }, + "value": 1194216955, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Corgi", + }, + "value": 688465653, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leafstorm Wolf", + "pt": 2, + }, + "value": 745635601, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixie Fox", + }, + "value": 46994120, + }, + { + "category": "Enchant", + "configData": { + "id": "Active Huge Overload", + "tn": 1, + }, + "value": 5128857932, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Candycane Unicorn", + "sh": true, + }, + "value": 453351858, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Love Corgi", + "pt": 1, + }, + "value": 50830254, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Squirrel", + "pt": 1, + }, + "value": 7466, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Candycane Kitsune", + "sh": true, + }, + "value": 307031490, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 35", + }, + "value": 229074342, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cupid Corgi", + }, + "value": 111143360, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Wolf", + "pt": 2, + }, + "value": 151, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Chest Mimic", + }, + "value": 8592731793, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Imp", + "pt": 2, + }, + "value": 43, + }, + { + "category": "Pet", + "configData": { + "id": "Lemur", + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cappuccina Brainrot", + "pt": 2, + }, + "value": 585364838, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hippomelon", + }, + "value": 1012188656, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Nyan Cat", + "pt": 1, + }, + "value": 8114970855, + }, + { + "category": "Booth", + "configData": { + "id": "Candy Cane", + }, + "value": 1141145, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Kitsune", + }, + "value": 532316162, + }, + { + "category": "Charm", + "configData": { + "id": "Treasure", + "tn": 1, + }, + "value": 4359373225, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sailor Shark", + }, + "value": 331377677, + }, + { + "category": "Pet", + "configData": { + "cv": 6, + "id": "Huge Chroma Unicorn", + }, + "value": 71824768, + }, + { + "category": "Ultimate", + "configData": { + "id": "Hidden Treasure", + }, + "value": 25229449164, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Devil Tasmanian", + }, + "value": 43886650, + }, + { + "category": "Card", + "configData": { + "id": "Hydra Cat Card", + }, + "value": 2270, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Temporal Owl", + "pt": 1, + "sh": true, + }, + "value": 337895356, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Cat", + }, + "value": 373786716, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stunt Cat", + "pt": 2, + }, + "value": 157111976, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mermaid Cat", + "pt": 2, + }, + "value": 143009668, + }, + { + "category": "Card", + "configData": { + "id": "Phantom Wolf Card", + }, + "value": 18568, + }, + { + "category": "Pet", + "configData": { + "id": "Corn Cat", + "pt": 2, + }, + "value": 694, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Basketball Cat", + }, + "value": 6151592832, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hologram Axolotl", + }, + "value": 544539081, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Shiba", + }, + "value": 12564917711, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Yee-haw Cat", + "pt": 1, + }, + "value": 6949471380, + }, + { + "category": "Card", + "configData": { + "id": "Ghostly Fox Card", + "pt": 2, + "sh": true, + }, + "value": 89496370, + }, + { + "category": "Pet", + "configData": { + "id": "Runebound Bobcat", + "pt": 2, + }, + "value": 169, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holiday Bearserker", + }, + "value": 26346506, + }, + { + "category": "Pet", + "configData": { + "id": "Surfboard Corgi", + }, + "value": 10, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dot Matrix Cat", + }, + "value": 164550847, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Starfall Dragon", + }, + "value": 21698054168, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Starry Eye Bunny", + "pt": 1, + "sh": true, + }, + "value": 301141042, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Piggy", + }, + "value": 28501206, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Cat", + }, + "value": 10305815, + }, + { + "category": "Pet", + "configData": { + "id": "Gary the Snail", + "pt": 2, + }, + "value": 26554704, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Teacher Cat", + "pt": 1, + }, + "value": 96361688, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Icy Phoenix", + "sh": true, + }, + "value": 138826196, + }, + { + "category": "Pet", + "configData": { + "cv": 6, + "id": "Huge Chroma Phoenix", + "pt": 2, + }, + "value": 363839171, + }, + { + "category": "Pet", + "configData": { + "id": "Anime Agony", + "pt": 2, + }, + "value": 306280764, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leafstorm Wolf", + "sh": true, + }, + "value": 606265306, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Monkey", + }, + "value": 59956620, + }, + { + "category": "Pet", + "configData": { + "id": "Blazing Shark", + "pt": 2, + }, + "value": 23649200, + }, + { + "category": "Pet", + "configData": { + "id": "UV Kitsune Ball", + "pt": 2, + }, + "value": 78, + }, + { + "category": "Pet", + "configData": { + "id": "Red Dragon", + "pt": 2, + }, + "value": 24884, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sleipnir", + "pt": 2, + }, + "value": 4366090081, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Horse", + "pt": 1, + }, + "value": 46930231, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Patchwork Bunny", + "sh": true, + }, + "value": 478189986, + }, + { + "category": "Pet", + "configData": { + "id": "Huge North Pole Unicorn", + "sh": true, + }, + "value": 178056704, + }, + { + "category": "Pet", + "configData": { + "id": "Trojan Horse", + "sh": true, + }, + "value": 760, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mantis Shrimp", + "pt": 1, + "sh": true, + }, + "value": 1520862091, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 4", + }, + "value": 6179450833, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fancy Axolotl", + "pt": 2, + }, + "value": 137194692, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Flex Fluffy Cat", + }, + "value": 92325893, + }, + { + "category": "Pet", + "configData": { + "cv": 1, + "id": "Huge Chroma Phoenix", + }, + "value": 58610348, + }, + { + "category": "Pet", + "configData": { + "id": "Lilypad Cat", + }, + "value": 16, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mining Monkey", + "pt": 1, + "sh": true, + }, + "value": 295366094, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tropical Parrot", + "sh": true, + }, + "value": 343760369, + }, + { + "category": "Pet", + "configData": { + "id": "Bloo Cat", + "pt": 1, + }, + "value": 37576895, + }, + { + "category": "Pet", + "configData": { + "id": "Candycane Kitsune", + "pt": 2, + }, + "value": 1524938, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Reindeer Dog", + }, + "value": 872061355, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Pizza", + "sh": true, + }, + "value": 1665024760, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Googly Shark", + }, + "value": 473662330, + }, + { + "category": "Pet", + "configData": { + "id": "Snowflake Lattice Tiger", + "pt": 2, + "sh": true, + }, + "value": 272875884, + }, + { + "category": "Pet", + "configData": { + "id": "Lit Cat", + "pt": 1, + }, + "value": 220, + }, + { + "category": "Pet", + "configData": { + "id": "Honey Bear", + "pt": 2, + "sh": true, + }, + "value": 303680401, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Rich", + }, + "value": 177077137, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Party Crown Corgi", + }, + "value": 7442021968, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mechatronic Robot", + "pt": 2, + "sh": true, + }, + "value": 2104370572, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Techno Cat", + "pt": 1, + }, + "value": 302826545, + }, + { + "category": "Pet", + "configData": { + "id": "Happy Cyclops", + }, + "value": 14, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Angry Yeti", + "sh": true, + }, + "value": 128352751, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Millionaire", + }, + "value": 978734, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiedye Axolotl", + "pt": 1, + }, + "value": 163542502, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Storm Dominus", + }, + "value": 438747006, + }, + { + "category": "Pet", + "configData": { + "id": "Gamer Shiba", + "pt": 2, + }, + "value": 1009, + }, + { + "category": "Pet", + "configData": { + "id": "Patapim Brainrot", + "pt": 2, + }, + "value": 36281577, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pumpkin Dog", + "pt": 1, + }, + "value": 70847331, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snow Elf", + "pt": 2, + }, + "value": 120113768, + }, + { + "category": "Misc", + "configData": { + "id": "Graffiti Can", + }, + "value": 4, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Bear", + "sh": true, + }, + "value": 278999815, + }, + { + "category": "Pet", + "configData": { + "id": "Ember Vulture", + }, + "value": 31, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kaiju Sea Dragon", + }, + "value": 156137054, + }, + { + "category": "Enchant", + "configData": { + "id": "Mega Chest Breaker", + "tn": 1, + }, + "value": 17882364428, + }, + { + "category": "Enchant", + "configData": { + "id": "Lightning Orb", + "tn": 1, + }, + "value": 4313036099, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sombrero Chihuahua", + "pt": 1, + }, + "value": 728900911, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holographic Cat", + "pt": 1, + }, + "value": 27330021, + }, + { + "category": "Card", + "configData": { + "id": "Immortuus Card", + "pt": 2, + }, + "value": 8592, + }, + { + "category": "Card", + "configData": { + "id": "Hot Dooooog Card", + }, + "value": 7055498, + }, + { + "category": "Pet", + "configData": { + "id": "Pink Poodle", + "pt": 2, + }, + "value": 442, + }, + { + "category": "Pet", + "configData": { + "id": "Wild Frost Agony", + }, + "value": 18, + }, + { + "category": "Pet", + "configData": { + "id": "Huge African Wild Dog", + "pt": 1, + "sh": true, + }, + "value": 896637511, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sun Angelus", + "pt": 1, + }, + "value": 461430502, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Badger", + "pt": 2, + }, + "value": 134836397, + }, + { + "category": "Pet", + "configData": { + "id": "Frontman Jellyfish", + "pt": 2, + }, + "value": 635, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lumi Axolotl", + "pt": 2, + }, + "value": 389504786, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pineapple Monkey", + "pt": 1, + }, + "value": 43574036, + }, + { + "category": "Card", + "configData": { + "id": "Red Balloon Panda Card", + "pt": 2, + }, + "value": 67938, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Chad Gorilla", + }, + "value": 18141577796, + }, + { + "category": "Card", + "configData": { + "id": "Huge Sea Dragon Card", + "pt": 1, + "sh": true, + }, + "value": 161192751, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Cupcake", + }, + "value": 437173191, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Penguin", + }, + "value": 422064046, + }, + { + "category": "Pet", + "configData": { + "id": "Huge White Tiger", + }, + "value": 472683405, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Quokka", + "pt": 2, + }, + "value": 13859008154, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shattered Heart Agony", + "pt": 2, + }, + "value": 318189875, + }, + { + "category": "Pet", + "configData": { + "id": "Totem Cat", + }, + "value": 18389158, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vampire Agony", + }, + "value": 580136403, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Yeti", + "pt": 1, + }, + "value": 102601051, + }, + { + "category": "Egg", + "configData": { + "id": "Huge Machine Egg 2", + }, + "value": 1214780863, + }, + { + "category": "Pet", + "configData": { + "id": "Sailor Shark", + "pt": 2, + }, + "value": 1516, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Parachute Monkey", + }, + "value": 25314751, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nutcracker Squirrel", + "pt": 1, + }, + "value": 38644682, + }, + { + "category": "Egg", + "configData": { + "id": "Series 3 Rare Gift", + }, + "value": 406600902, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Sea Dragon", + "sh": true, + }, + "value": 25788867483, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gym Piggy", + "pt": 1, + }, + "value": 7267046791, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pineapple Cat", + }, + "value": 9867653329, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Nyan Cat", + }, + "value": 11360982490, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elf Cat", + "sh": true, + }, + "value": 354079497, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mining Penguin", + "sh": true, + }, + "value": 125096577, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dove", + }, + "value": 167761035, + }, + { + "category": "Pet", + "configData": { + "id": "Patchwork Yeti", + "pt": 2, + }, + "value": 22134060, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elf Dog", + "pt": 2, + }, + "value": 635865482, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Totem Wolf", + "sh": true, + }, + "value": 901971849, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vampire Bat", + }, + "value": 196631670, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Persimmony Cricket", + "pt": 2, + }, + "value": 25719322178, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dark Dragon", + }, + "value": 111005223, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Totem Cat", + }, + "value": 166251277, + }, + { + "category": "Pet", + "configData": { + "id": "Artemis Bear", + "sh": true, + }, + "value": 220745, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Sloth", + }, + "value": 43, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Diamond Dragon", + }, + "value": 2247148970, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vibrant Toucan", + "pt": 1, + "sh": true, + }, + "value": 499831685, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wizard Westie", + "pt": 1, + }, + "value": 31503721, + }, + { + "category": "Pet", + "configData": { + "id": "Stingray", + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Soul Bat", + "sh": true, + }, + "value": 17363368, + }, + { + "category": "Pet", + "configData": { + "id": "Torpedo Shepherd", + "pt": 2, + "sh": true, + }, + "value": 153, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tropical Parrot", + "pt": 1, + }, + "value": 63039284, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Agony", + "pt": 1, + }, + "value": 7063, + }, + { + "category": "Pet", + "configData": { + "id": "Sailor Seal", + }, + "value": 8, + }, + { + "category": "Tool", + "configData": { + "id": "Molten Pickaxe", + }, + "value": 40876794, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Deer", + "pt": 2, + }, + "value": 29312909, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Specter Owl", + "pt": 1, + }, + "value": 606558321, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Red Wolf", + "pt": 2, + "sh": true, + }, + "value": 1903926421, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Basketball Cat", + "pt": 1, + }, + "value": 6320992741, + }, + { + "category": "Pet", + "configData": { + "id": "Little Melty", + }, + "value": 47, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Enchanted Deer", + "pt": 2, + }, + "value": 441331664, + }, + { + "category": "Pet", + "configData": { + "id": "Blueberry Cow", + "sh": true, + }, + "value": 14770292, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pixel Angelus", + "pt": 2, + }, + "value": 26542453136, + }, + { + "category": "Card", + "configData": { + "id": "Ninja Otter Card", + "sh": true, + }, + "value": 414716, + }, + { + "category": "Card", + "configData": { + "id": "Gamer Shiba Card", + "pt": 1, + "sh": true, + }, + "value": 48330, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiedye Cat", + "pt": 2, + }, + "value": 1220676595, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Mortuus", + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Punksky", + "pt": 1, + "sh": true, + }, + "value": 246312966, + }, + { + "category": "Pet", + "configData": { + "id": "Lucky Cat", + }, + "value": 117487629, + }, + { + "category": "Pet", + "configData": { + "id": "Luchador Eagle", + }, + "value": 9655149, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Cat", + }, + "value": 117679655, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Blobenstein", + "pt": 1, + }, + "value": 9166429226, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hydra Axolotl", + }, + "value": 38130792, + }, + { + "category": "Pet", + "configData": { + "id": "Colorful Fish", + }, + "value": 245, + }, + { + "category": "Pet", + "configData": { + "id": "Domortuus Astra", + }, + "value": 2513179269, + }, + { + "category": "Pet", + "configData": { + "id": "Plane Dragon", + "pt": 1, + "sh": true, + }, + "value": 783, + }, + { + "category": "Card", + "configData": { + "id": "Lumi Axolotl Card", + "pt": 1, + }, + "value": 19675, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gargoyle Dragon", + "pt": 1, + }, + "value": 1481340536, + }, + { + "category": "Pet", + "configData": { + "id": "Galaxy Dragon", + }, + "value": 838646725, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Atomic Axolotl", + "pt": 1, + }, + "value": 157714914, + }, + { + "category": "Misc", + "configData": { + "id": "Treasure Hideout Key Lower Half", + }, + "value": 32, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tarantula", + }, + "value": 141614954, + }, + { + "category": "Pet", + "configData": { + "id": "Elegant Eagle", + "pt": 1, + }, + "value": 13, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Kitsune", + "pt": 2, + }, + "value": 17661, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Chick", + }, + "value": 604155896, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Toy Duck", + }, + "value": 147103340, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stunt Corgi", + }, + "value": 24371338, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Bee", + "pt": 1, + }, + "value": 24468834, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dominus Darkwing", + "pt": 2, + }, + "value": 2802413917, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dominus Darkwing", + "pt": 2, + "sh": true, + }, + "value": 18000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Night Terror Cat", + "pt": 2, + }, + "value": 463, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Love Corgi", + "sh": true, + }, + "value": 308010061, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Pyro Cat", + }, + "value": 67506322267, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Wicked Angelus", + }, + "value": 16872106497, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Shark", + }, + "value": 429, + }, + { + "category": "Pet", + "configData": { + "id": "Sock Corgi", + }, + "value": 128287111, + }, + { + "category": "Pet", + "configData": { + "id": "Gargoyle Dragon", + }, + "value": 24048038, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Helicopter", + }, + "value": 1808505887, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luxe Peacock", + }, + "value": 37352100, + }, + { + "category": "Pet", + "configData": { + "id": "Immortuus", + }, + "value": 1719, + }, + { + "category": "Pet", + "configData": { + "id": "Snowflake Dragon", + "sh": true, + }, + "value": 204550, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic M-14 PROTOTYPE", + }, + "value": 20285710932, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Toilet", + "sh": true, + }, + "value": 3803661930, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Starfall Dragon", + }, + "value": 407840960000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jolly Dino", + "pt": 1, + }, + "value": 22771928, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Black Hole Axolotl", + "pt": 2, + }, + "value": 715483254, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Totem Owl", + }, + "value": 9855755118, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hoverboard Cat", + "sh": true, + }, + "value": 3310550145, + }, + { + "category": "Pet", + "configData": { + "id": "Crash Dummy Noob", + "pt": 2, + }, + "value": 650, + }, + { + "category": "Pet", + "configData": { + "id": "Icy Phoenix", + "pt": 1, + }, + "value": 681, + }, + { + "category": "Pet", + "configData": { + "id": "Chesnut Chipmunk", + "pt": 1, + "sh": true, + }, + "value": 244640, + }, + { + "category": "Lootbox", + "configData": { + "id": "Pog Pack", + }, + "value": 4212209, + }, + { + "category": "Misc", + "configData": { + "id": "Mystery Ticket", + }, + "value": 226418283, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lightning Bat", + "pt": 2, + }, + "value": 331023533, + }, + { + "category": "Pet", + "configData": { + "id": "Scarecrow Dog", + "pt": 2, + }, + "value": 32, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Gingerbread Angelus", + }, + "value": 117406974200, + }, + { + "category": "Pet", + "configData": { + "id": "Flamingo Cat", + "pt": 1, + }, + "value": 733, + }, + { + "category": "Pet", + "configData": { + "id": "Punkey", + }, + "value": 93099325, + }, + { + "category": "Card", + "configData": { + "id": "Ghostly Bunny Card", + "pt": 2, + "sh": true, + }, + "value": 188135561, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Anime Cat", + "sh": true, + }, + "value": 20222301784, + }, + { + "category": "Pet", + "configData": { + "id": "Bobcat", + }, + "value": 972, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Panda", + "pt": 1, + }, + "value": 110125042, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Panther", + "pt": 1, + }, + "value": 395082553, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiedye Dog", + }, + "value": 983804214, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mining Robot", + "pt": 1, + }, + "value": 36044815, + }, + { + "category": "Pet", + "configData": { + "id": "Cool Dragon", + }, + "value": 19761304, + }, + { + "category": "Booth", + "configData": { + "id": "Basketball", + }, + "value": 6738329, + }, + { + "category": "Pet", + "configData": { + "id": "Lamb", + "sh": true, + }, + "value": 1768, + }, + { + "category": "Pet", + "configData": { + "id": "Valkyrie Dog", + "pt": 2, + }, + "value": 14294568, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gamer Shiba", + }, + "value": 2080191274, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Sloth", + "pt": 1, + }, + "value": 100, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Police Cat", + }, + "value": 69559855, + }, + { + "category": "Pet", + "configData": { + "id": "Nightmare Kraken", + }, + "value": 33796925, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Anime Cat Card", + "sh": true, + }, + "value": 2078089460, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wild Galaxy Agony", + "pt": 2, + }, + "value": 850067448, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Teacher Cat", + }, + "value": 6416392780, + }, + { + "category": "Lootbox", + "configData": { + "id": "Ninja Pack", + }, + "value": 8487964, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Puurple Cat", + }, + "value": 869926806, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Dog", + "pt": 2, + }, + "value": 139, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Empyrean Agony", + "sh": true, + }, + "value": 1732834300, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wild Frost Agony", + "pt": 2, + }, + "value": 183517324, + }, + { + "category": "Card", + "configData": { + "id": "Tech Chest Mimic Card", + "pt": 1, + }, + "value": 53782, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Unicorn Ball", + }, + "value": 103, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Punksky", + "pt": 1, + }, + "value": 29154974, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leprechaun Corgi", + }, + "value": 104785449, + }, + { + "category": "Pet", + "configData": { + "id": "Archivist Ferret", + }, + "value": 56, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dark Lord", + "sh": true, + }, + "value": 322076888, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Parrot", + }, + "value": 11439043133, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elf Cat", + }, + "value": 87176306, + }, + { + "category": "Pet", + "configData": { + "id": "Jetpack Tiger", + "pt": 2, + }, + "value": 38, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Emoji Cat", + "sh": true, + }, + "value": 1003540308, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Griffin", + "pt": 1, + }, + "value": 29004316, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Black Hole Kitsune", + }, + "value": 786902809, + }, + { + "category": "Pet", + "configData": { + "id": "Noob", + "sh": true, + }, + "value": 60382691, + }, + { + "category": "Pet", + "configData": { + "id": "Shimmering Octopus", + }, + "value": 1167, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lit Octopus", + }, + "value": 846559958, + }, + { + "category": "Pet", + "configData": { + "id": "Totem Wolf", + "pt": 2, + }, + "value": 24893069, + }, + { + "category": "Enchant", + "configData": { + "id": "Walkspeed", + "tn": 1, + }, + "value": 40, + }, + { + "category": "Pet", + "configData": { + "id": "Treasure Unicorn", + "pt": 2, + }, + "value": 24502381, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Water Zebra", + }, + "value": 40371616, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Loveserker", + "pt": 2, + }, + "value": 197847589, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Panda", + "pt": 2, + }, + "value": 144438965, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Unicorn", + }, + "value": 101945424, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rainbow Slime", + "pt": 1, + }, + "value": 72391445, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Enchanted Deer", + "sh": true, + }, + "value": 334891283, + }, + { + "category": "Pet", + "configData": { + "id": "Sacred Boar", + }, + "value": 111, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Peppermint Angelus", + }, + "value": 441248628, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Tiger", + "pt": 2, + }, + "value": 107, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dove", + "pt": 1, + }, + "value": 317221377, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Electric Guitar", + }, + "value": 180618005, + }, + { + "category": "Card", + "configData": { + "id": "Pixel Dragon Card", + "pt": 2, + }, + "value": 14930, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mining Robot", + "pt": 2, + }, + "value": 171600845, + }, + { + "category": "Pet", + "configData": { + "id": "Sapphire Carbuncle", + }, + "value": 11, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Hamster", + "pt": 1, + }, + "value": 4727, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Huge Chroma Ink Blob", + }, + "value": 81206921, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Prickly Panda", + "pt": 1, + }, + "value": 3230546730, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Lucki Angelus", + "pt": 1, + }, + "value": 7751762732, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fluffy Cat", + "pt": 1, + }, + "value": 30596446, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Egg Dino", + "pt": 1, + }, + "value": 32270733, + }, + { + "category": "Pet", + "configData": { + "id": "Nature Dragon", + }, + "value": 36593164, + }, + { + "category": "Pet", + "configData": { + "id": "Huge LeGoat Ball", + "pt": 2, + }, + "value": 789509934, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dark Fox", + "pt": 1, + }, + "value": 83022214, + }, + { + "category": "Pet", + "configData": { + "cv": 5, + "id": "Huge Chroma Doodle Axolotl", + }, + "value": 82578002, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Diamond Cat", + }, + "value": 2098419305, + }, + { + "category": "Pet", + "configData": { + "id": "Matryoshka Fox", + "pt": 2, + }, + "value": 21994357, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Pterodactyl", + }, + "value": 198960616, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leafy Deer", + "sh": true, + }, + "value": 1392102636, + }, + { + "category": "Pet", + "configData": { + "id": "Kaiju Volcano", + }, + "value": 14844139, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Minecart Piggy", + }, + "value": 61795740, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pineapple Monkey", + "pt": 2, + }, + "value": 202426769, + }, + { + "category": "Pet", + "configData": { + "id": "Hologram Axolotl", + "pt": 2, + }, + "value": 71893112, + }, + { + "category": "Card", + "configData": { + "id": "Fairy Moth Card", + "pt": 2, + "sh": true, + }, + "value": 919457, + }, + { + "category": "Pet", + "configData": { + "id": "Turtle", + }, + "value": 30950, + }, + { + "category": "Pet", + "configData": { + "id": "Emoji Dog", + "pt": 2, + }, + "value": 18952287, + }, + { + "category": "Enchant", + "configData": { + "id": "Demonic", + "tn": 1, + }, + "value": 24086149, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Raccoon", + }, + "value": 7, + }, + { + "category": "Enchant", + "configData": { + "id": "Walkspeed", + "tn": 5, + }, + "value": 45, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chest Mimic", + "pt": 1, + }, + "value": 1507014225, + }, + { + "category": "Pet", + "configData": { + "id": "Crash Dummy Noob", + }, + "value": 81, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Runebound Bobcat", + }, + "value": 119635215, + }, + { + "category": "Card", + "configData": { + "id": "Huge Hubert Card", + }, + "value": 371715441, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Easter Axolotl", + }, + "value": 6312183587, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Grinch Cat", + }, + "value": 10483067776, + }, + { + "category": "Pet", + "configData": { + "id": "Sock Monkey", + }, + "value": 447723103, + }, + { + "category": "Booth", + "configData": { + "id": "Nightfall", + }, + "value": 151661599, + }, + { + "category": "Pet", + "configData": { + "id": "Heartbreak Fairy", + }, + "value": 69, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Basket Bunny", + "pt": 2, + }, + "value": 200635738, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Samurai Cat", + }, + "value": 32, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Electric Werewolf", + }, + "value": 15457824881, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holly Corgi", + "pt": 1, + "sh": true, + }, + "value": 2193642330, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Beaver", + "pt": 2, + }, + "value": 599, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Raining Love Dog", + }, + "value": 62651198, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Crown Hippomelon", + "pt": 1, + "sh": true, + }, + "value": 3410880000, + }, + { + "category": "Pet", + "configData": { + "id": "Surfboard Corgi", + "pt": 2, + }, + "value": 216, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mining Penguin", + "pt": 2, + "sh": true, + }, + "value": 2021045873, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pilgrim Turkey", + }, + "value": 6395022633, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Inferno Cat", + }, + "value": 3991798595, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ninja Dalmatian", + "pt": 1, + "sh": true, + }, + "value": 381213377, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Lamb", + "pt": 1, + "sh": true, + }, + "value": 86740575, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holiday Dove", + }, + "value": 45488567, + }, + { + "category": "Pet", + "configData": { + "cv": 1, + "id": "Huge Chroma Ink Blob", + }, + "value": 192039163, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Dragon", + "pt": 1, + }, + "value": 841, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Orca", + "pt": 2, + }, + "value": 2221207000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Egg Chick", + }, + "value": 93415990, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Storm Axolotl Ball", + "pt": 1, + }, + "value": 121327419, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Exquisite Elephant", + "pt": 1, + }, + "value": 6004434924, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Penguin", + "pt": 2, + }, + "value": 153824463, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Hell Rock", + "sh": true, + }, + "value": 883236840, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leafy Deer", + "pt": 1, + }, + "value": 48759731, + }, + { + "category": "Pet", + "configData": { + "id": "Sapphire Phoenix", + }, + "value": 367313597, + }, + { + "category": "Pet", + "configData": { + "id": "Charred Dragon", + }, + "value": 23, + }, + { + "category": "Misc", + "configData": { + "id": "Pixel Prism", + }, + "value": 26599, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hoverboard Cat", + }, + "value": 729359880, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 1", + }, + "value": 11500767155, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Dark Dragon", + }, + "value": 223264289029, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gazelle", + "sh": true, + }, + "value": 350724945, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mining Raccoon", + "pt": 2, + "sh": true, + }, + "value": 1943380489, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Love Corgi", + }, + "value": 13159066200, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Minotaur", + "pt": 2, + "sh": true, + }, + "value": 2229, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Squirrel", + "pt": 1, + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Love Lamb", + }, + "value": 21274492942, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Masked Fox", + }, + "value": 133781912, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Clover Butterfly", + }, + "value": 8083981194, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Error Cat", + "pt": 2, + }, + "value": 452578057, + }, + { + "category": "Pet", + "configData": { + "cv": 5, + "id": "Huge Chroma Butterfly", + }, + "value": 90834153, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Frostbyte Snowman", + "pt": 1, + "sh": true, + }, + "value": 2205872307, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Dark Fox", + }, + "value": 8359027156, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Flamingo Cat", + "pt": 1, + }, + "value": 23015453, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evil Deer", + }, + "value": 1455386180, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fragmented Dominus Ball", + "pt": 2, + }, + "value": 323124157, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ghost Axolotl", + "sh": true, + }, + "value": 18124821250, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Huge Chroma Butterfly", + }, + "value": 84993019, + }, + { + "category": "Pet", + "configData": { + "id": "Huge UV Cat", + "pt": 2, + }, + "value": 299100681, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cappuccina Brainrot", + "sh": true, + }, + "value": 381522606, + }, + { + "category": "Pet", + "configData": { + "id": "Cowboy Dog", + }, + "value": 6843, + }, + { + "category": "Pet", + "configData": { + "id": "Horse", + }, + "value": 168044, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Festive Walrus", + "pt": 1, + }, + "value": 223015346, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snow Elf", + "sh": true, + }, + "value": 155962243, + }, + { + "category": "Egg", + "configData": { + "id": "Huge Machine Egg 3", + }, + "value": 991763270, + }, + { + "category": "Booth", + "configData": { + "id": "Galaxy", + }, + "value": 383541776, + }, + { + "category": "Card", + "configData": { + "id": "Pog Dragon Card", + }, + "value": 10783, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cinnamon Bunny", + "pt": 2, + }, + "value": 534332006, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elf Cat", + "pt": 1, + }, + "value": 142423723, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Warrior Wolf", + }, + "value": 57001147, + }, + { + "category": "Pet", + "configData": { + "id": "Plane Dragon", + "pt": 2, + "sh": true, + }, + "value": 259, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cartoon Demon", + }, + "value": 354357510, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Huge Chroma Tiger", + }, + "value": 99543288, + }, + { + "category": "Pet", + "configData": { + "id": "Mummy Bunny", + "pt": 2, + }, + "value": 143, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Dragon", + "pt": 1, + "sh": true, + }, + "value": 74893, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Atomic Axolotl", + "pt": 2, + }, + "value": 759158527, + }, + { + "category": "Pet", + "configData": { + "id": "Emoji Monkey", + "sh": true, + }, + "value": 40672404, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Griffin", + "pt": 2, + "sh": true, + }, + "value": 2206419457, + }, + { + "category": "Pet", + "configData": { + "id": "Naughty Dominus", + "sh": true, + }, + "value": 11589195, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holly Capybara", + "pt": 1, + "sh": true, + }, + "value": 473303250, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jungle Golem", + }, + "value": 204151141, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rich Cat", + "pt": 1, + }, + "value": 43366929, + }, + { + "category": "Pet", + "configData": { + "id": "Bloo Cat", + "sh": true, + }, + "value": 21764915, + }, + { + "category": "Card", + "configData": { + "id": "Huge Nightmare Dog Card", + "pt": 2, + }, + "value": 117388385, + }, + { + "category": "Pet", + "configData": { + "id": "Molten Werelynx", + }, + "value": 15, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wyvern of Hades", + "pt": 2, + }, + "value": 6464667735, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Exquisite Cat", + "pt": 1, + }, + "value": 6421959817, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cheerful Yeti", + }, + "value": 162287729, + }, + { + "category": "Card", + "configData": { + "id": "Huge Ninja Capybara Card", + "pt": 1, + }, + "value": 769554391, + }, + { + "category": "Pet", + "configData": { + "id": "Totem Cat", + "sh": true, + }, + "value": 27666416, + }, + { + "category": "Pet", + "configData": { + "id": "Goat", + }, + "value": 77447, + }, + { + "category": "Pet", + "configData": { + "id": "Basketball Retriever", + }, + "value": 146, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Hippomint", + "pt": 2, + }, + "value": 16236972620, + }, + { + "category": "Pet", + "configData": { + "id": "Jetpack Tiger", + }, + "value": 13, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Plague Dragon", + "pt": 2, + }, + "value": 292895891, + }, + { + "category": "Pet", + "configData": { + "id": "Molten Gecko", + }, + "value": 941, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sombrero Chihuahua", + }, + "value": 2894706898, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Festive Cat", + "pt": 2, + }, + "value": 2978033705, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hippo", + "sh": true, + }, + "value": 528717909, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Monkey", + }, + "value": 42, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Virus Griffin", + "sh": true, + }, + "value": 889834193, + }, + { + "category": "Pet", + "configData": { + "id": "UV Kitsune Ball", + "pt": 1, + }, + "value": 91, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Huge Chroma Ink Blob", + "sh": true, + }, + "value": 1029154030, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cyber Agony", + "pt": 1, + }, + "value": 43847879, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hypnotic Dragon", + }, + "value": 389818983, + }, + { + "category": "Pet", + "configData": { + "id": "Puurple Cat", + "pt": 2, + }, + "value": 72005816, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pastel Sock Dragon", + }, + "value": 566525329, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dark Lord", + "pt": 2, + }, + "value": 394606563, + }, + { + "category": "Booth", + "configData": { + "id": "Glitched", + }, + "value": 130046896, + }, + { + "category": "Pet", + "configData": { + "id": "Stunt Cat", + "pt": 1, + }, + "value": 1141940, + }, + { + "category": "Pet", + "configData": { + "id": "Beaver", + "pt": 2, + }, + "value": 4951, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Walrus", + "pt": 2, + }, + "value": 128728571, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Flex Fluffy Cat", + "pt": 2, + }, + "value": 624245116, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Bunny", + "pt": 1, + }, + "value": 15256983, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Bunny", + "pt": 2, + "sh": true, + }, + "value": 557, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Monkey", + }, + "value": 96457354, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Meebo in a Spaceship", + "pt": 1, + }, + "value": 36015157, + }, + { + "category": "Pet", + "configData": { + "id": "Coach Tiger", + }, + "value": 30, + }, + { + "category": "Pet", + "configData": { + "id": "Floatie Ducky", + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blossom Spirit", + }, + "value": 95493092, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Doll Cat", + }, + "value": 8511173276, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snow Globe Corgi", + "pt": 2, + }, + "value": 1490372209, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Cube Penguin", + "pt": 2, + "sh": true, + }, + "value": 222778039, + }, + { + "category": "Pet", + "configData": { + "id": "Trojan Horse", + }, + "value": 12, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Dog", + }, + "value": 264192680, + }, + { + "category": "Pet", + "configData": { + "id": "Angry Yeti", + }, + "value": 60, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Crown Ducky", + "pt": 1, + }, + "value": 262932557, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Cat", + "sh": true, + }, + "value": 122941684, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Specter Owl", + "pt": 2, + }, + "value": 3804532980, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Wild Frost Agony", + }, + "value": 23010842538, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Scorpion", + }, + "value": 80858319, + }, + { + "category": "Pet", + "configData": { + "id": "Machete Dog", + "pt": 2, + }, + "value": 62578474, + }, + { + "category": "Pet", + "configData": { + "id": "Charred Bat", + }, + "value": 22, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Avenging Griffin", + "pt": 1, + }, + "value": 54326852, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Dino", + "pt": 2, + }, + "value": 330483348, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 26", + }, + "value": 209219312, + }, + { + "category": "Pet", + "configData": { + "id": "Nightfall Wolf", + }, + "value": 28883898, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gingerbread Cat", + }, + "value": 10033342752, + }, + { + "category": "Pet", + "configData": { + "id": "Prickly Panda", + }, + "value": 53149422, + }, + { + "category": "Pet", + "configData": { + "id": "Palace Pooka", + "pt": 1, + }, + "value": 1997408, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Cat", + "pt": 1, + }, + "value": 44, + }, + { + "category": "Pet", + "configData": { + "id": "Cool Corgi", + "sh": true, + }, + "value": 118092816, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Dominus", + "pt": 1, + }, + "value": 797, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Reindeer Axolotl", + }, + "value": 863030560, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holiday Bearserker", + "sh": true, + }, + "value": 102721401, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jetpack Cat", + }, + "value": 74975946, + }, + { + "category": "Pet", + "configData": { + "id": "Painted King Crab", + "pt": 2, + }, + "value": 31, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Cat", + "pt": 2, + }, + "value": 158415328, + }, + { + "category": "Pet", + "configData": { + "id": "Storm Wolf", + }, + "value": 923729585, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Crown Ducky", + }, + "value": 270944188, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holly Corgi", + "pt": 2, + }, + "value": 116168842, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Starry Eye Bunny", + "pt": 2, + "sh": true, + }, + "value": 2264286609, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Blobenstein", + }, + "value": 9417618120, + }, + { + "category": "Pet", + "configData": { + "id": "Nightfall Ram", + "pt": 2, + "sh": true, + }, + "value": 1860000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Robber Pug", + "pt": 2, + "sh": true, + }, + "value": 1532134260, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valentines Unicorn", + "pt": 2, + }, + "value": 440042799, + }, + { + "category": "Pet", + "configData": { + "id": "Psychic Seal", + "sh": true, + }, + "value": 1074, + }, + { + "category": "Pet", + "configData": { + "id": "Flower Cat", + "pt": 2, + }, + "value": 42, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Corgi", + }, + "value": 8560018, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Jelly Dragon", + }, + "value": 50889046227, + }, + { + "category": "Enchant", + "configData": { + "id": "Double Coins", + "tn": 1, + }, + "value": 6206299574, + }, + { + "category": "Pet", + "configData": { + "id": "Emoji Monkey", + }, + "value": 24210571, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lemur", + "sh": true, + }, + "value": 301490233, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pastel Sock Bear", + }, + "value": 73465761, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Arcade Angelus", + "pt": 2, + }, + "value": 485451376, + }, + { + "category": "Pet", + "configData": { + "cv": 5, + "id": "Huge Chroma Snail", + }, + "value": 73229845, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doodle Fairy", + "pt": 1, + }, + "value": 107993204, + }, + { + "category": "Pet", + "configData": { + "id": "Yee-haw Cat", + }, + "value": 57011110, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Chad Gorilla", + "sh": true, + }, + "value": 201920000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fairy", + }, + "value": 255869094, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Bee", + "pt": 2, + }, + "value": 296032824, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Squirrel", + "sh": true, + }, + "value": 245979660, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Basket Bunny", + "pt": 2, + "sh": true, + }, + "value": 1761705536, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Player Corgi", + "pt": 2, + }, + "value": 120434772, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Icy Phoenix", + }, + "value": 7894829876, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luchador Eagle", + "pt": 2, + }, + "value": 4742060282, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Bee", + "pt": 1, + }, + "value": 31514733, + }, + { + "category": "Pet", + "configData": { + "id": "Sketch Cow", + "pt": 2, + }, + "value": 21118853, + }, + { + "category": "Pet", + "configData": { + "id": "Dog", + "pt": 1, + }, + "value": 84, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Sad Cat", + }, + "value": 431340340, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiedye Axolotl", + }, + "value": 82873315, + }, + { + "category": "Booth", + "configData": { + "id": "Pixel", + }, + "value": 146127310, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Valentines Cat", + }, + "value": 21835633538, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Peacock", + "pt": 2, + }, + "value": 74, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dominus Darkwing", + "pt": 1, + }, + "value": 150691752, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Cat", + }, + "value": 8, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Jolly Cat", + }, + "value": 43387345548, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valentines Bear", + "pt": 1, + }, + "value": 26376262, + }, + { + "category": "Misc", + "configData": { + "id": "Pixel Rainbow Shard", + }, + "value": 2811, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sleigh Cat", + "pt": 1, + "sh": true, + }, + "value": 992181931, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pastel Deer", + "pt": 2, + }, + "value": 124290028, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Diamond Dog", + }, + "value": 14715855563, + }, + { + "category": "Pet", + "configData": { + "id": "Matryoshka Fox", + }, + "value": 10469487, + }, + { + "category": "Pet", + "configData": { + "id": "Redstone Cat", + "pt": 2, + }, + "value": 27644003, + }, + { + "category": "Pet", + "configData": { + "id": "Floatie Cat", + "pt": 1, + }, + "value": 38, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Painted Cat", + }, + "value": 106016861, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Quantum Agony", + "pt": 2, + }, + "value": 543240297, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fragmented Golem", + "pt": 1, + }, + "value": 210606090, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bejeweled Lion", + }, + "value": 192975035, + }, + { + "category": "Pet", + "configData": { + "id": "Honey Golem", + "pt": 2, + }, + "value": 1627, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cupcake Pegasus", + "pt": 1, + "sh": true, + }, + "value": 397906117, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Santa Paws", + "pt": 1, + }, + "value": 2390913954, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Dragon", + "pt": 2, + "sh": true, + }, + "value": 3324, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mummy Bunny", + }, + "value": 5005666083, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mining Penguin", + "pt": 1, + "sh": true, + }, + "value": 277265349, + }, + { + "category": "Pet", + "configData": { + "id": "Kitsune Fox", + "pt": 2, + }, + "value": 531, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Basketball Corgi", + "pt": 2, + }, + "value": 134333591, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Junkyard Hound", + }, + "value": 604221889, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Empyrean Agony", + "pt": 2, + }, + "value": 1674082755, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Strawhat Tanuki", + "sh": true, + }, + "value": 441379512, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Matrix Monkey", + "pt": 2, + }, + "value": 1117717035, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Koi Fish", + }, + "value": 11513368918, + }, + { + "category": "Card", + "configData": { + "id": "Huge Blurred Axolotl Card", + "pt": 1, + }, + "value": 18566736, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Comet Agony", + }, + "value": 2216444571, + }, + { + "category": "Pet", + "configData": { + "id": "Hacked Computer", + "pt": 2, + "sh": true, + }, + "value": 41, + }, + { + "category": "Pet", + "configData": { + "id": "Tropical Flamingo", + }, + "value": 9689432, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blurred Agony", + "pt": 2, + }, + "value": 4938369682, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Angelus", + "pt": 2, + }, + "value": 655466441, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Exquisite Elephant", + "sh": true, + }, + "value": 24738470851, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Party Corgi", + }, + "value": 7654436272, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Storm Axolotl Ball", + "pt": 2, + }, + "value": 599644661, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightmare Sludge", + }, + "value": 115058235, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hacker Axolotl", + "sh": true, + }, + "value": 374755924, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Deerserker", + "sh": true, + }, + "value": 761980151, + }, + { + "category": "Pet", + "configData": { + "id": "Retro Bulldog", + }, + "value": 11557, + }, + { + "category": "Pet", + "configData": { + "id": "Narwhal", + }, + "value": 5263, + }, + { + "category": "Pet", + "configData": { + "id": "Subzero Cat", + }, + "value": 136391694, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Old Wizard Owl", + "pt": 1, + }, + "value": 72173253, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel M-2 PROTOTYPE", + "pt": 1, + }, + "value": 316280015, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Dark Fox", + "pt": 1, + }, + "value": 7206351631, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Comet Cyclops", + }, + "value": 375122185, + }, + { + "category": "Pet", + "configData": { + "id": "Huge UV Cat", + }, + "value": 46238306, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Mining Monkey", + "sh": true, + }, + "value": 172624234, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wild Fire Agony", + "pt": 2, + }, + "value": 4643133688, + }, + { + "category": "Pet", + "configData": { + "id": "Kitsune Fox", + "pt": 1, + }, + "value": 173410, + }, + { + "category": "Tower", + "configData": { + "id": "Frostbyte Griffin", + }, + "value": 6494, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snowflake Pegasus", + "pt": 1, + }, + "value": 24757441, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Virus Griffin", + }, + "value": 113937408, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Kitsune", + "sh": true, + }, + "value": 6571488766, + }, + { + "category": "Pet", + "configData": { + "id": "Fire Bat", + }, + "value": 17, + }, + { + "category": "Pet", + "configData": { + "id": "Puffin", + }, + "value": 1313, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mining Robot", + "sh": true, + }, + "value": 575804919, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Emoji Corgi", + }, + "value": 25172704521, + }, + { + "category": "Pet", + "configData": { + "id": "Snuggle Beast", + "pt": 2, + }, + "value": 26969593, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sun Agony", + "pt": 2, + }, + "value": 1921485279, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Slime", + "pt": 2, + }, + "value": 310532067, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Dragon", + "sh": true, + }, + "value": 144660, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jolly Penguin", + "pt": 2, + }, + "value": 401373259, + }, + { + "category": "Pet", + "configData": { + "id": "Encrusted Wolf", + "pt": 2, + }, + "value": 582, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Player Penguin", + }, + "value": 43298646, + }, + { + "category": "Card", + "configData": { + "id": "Red Balloon Panda Card", + "pt": 1, + }, + "value": 5077, + }, + { + "category": "Pet", + "configData": { + "id": "Black Hole Axolotl", + "pt": 2, + }, + "value": 18329143, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Scary Corgi", + }, + "value": 14023253918, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Atomic Forged Shark", + "pt": 1, + }, + "value": 61782704, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Nightmare Cat", + }, + "value": 116111395023, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Wild Corrupt Agony", + }, + "value": 105723463444, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Glitched Cat Ball", + }, + "value": 5750870118, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Shadow Griffin", + }, + "value": 17298578705, + }, + { + "category": "Enchant", + "configData": { + "id": "Hacker Key Hunter", + "tn": 1, + }, + "value": 40129357, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Corrupt", + "sh": true, + }, + "value": 2228624507, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cinnamon Bunny", + "pt": 1, + }, + "value": 64932169, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elemental Phoenix", + "pt": 2, + }, + "value": 210760787, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Easter Axolotl", + "pt": 1, + }, + "value": 6844275533, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Glitched Cat Ball", + "pt": 1, + }, + "value": 6518485401, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jaguar", + }, + "value": 66370857, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Firegel Dragon", + "pt": 1, + }, + "value": 23392610870, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wild Fire Agony", + }, + "value": 546820066, + }, + { + "category": "Pet", + "configData": { + "id": "Fairy", + }, + "value": 281, + }, + { + "category": "Pet", + "configData": { + "id": "Devil Agony", + "pt": 2, + }, + "value": 100, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Matryoshka Capybara", + }, + "value": 432600419, + }, + { + "category": "Pet", + "configData": { + "id": "Neon Twilight Cat", + }, + "value": 14935934, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Festive Elf", + "pt": 1, + }, + "value": 34478633, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Strawberry Cow", + }, + "value": 31734861313, + }, + { + "category": "Pet", + "configData": { + "id": "Inferno Stealth Dragon", + "pt": 1, + }, + "value": 315578062, + }, + { + "category": "Pet", + "configData": { + "id": "Kawaii Dragon Ball", + "pt": 2, + }, + "value": 1570, + }, + { + "category": "Lootbox", + "configData": { + "id": "Adoption Gift", + }, + "value": 302650, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wyvern of Hades", + }, + "value": 2699417185, + }, + { + "category": "Pet", + "configData": { + "id": "Strawberry Cow Ball", + "pt": 2, + }, + "value": 20678, + }, + { + "category": "Pet", + "configData": { + "id": "Black Hole Angelus", + "pt": 2, + }, + "value": 967608, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Beaver", + "pt": 2, + }, + "value": 198271520, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Unicorn", + }, + "value": 67345232, + }, + { + "category": "Card", + "configData": { + "id": "Lumi Axolotl Card", + "pt": 2, + }, + "value": 8187, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Storm Axolotl", + }, + "value": 233468467, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixie Bee", + "pt": 1, + }, + "value": 194282611, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Icy Phoenix", + }, + "value": 85580110, + }, + { + "category": "Pet", + "configData": { + "id": "Lightning Bat", + }, + "value": 52237741, + }, + { + "category": "Pet", + "configData": { + "id": "Leprechaun Cat", + }, + "value": 276, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gingerbread Lion", + "pt": 2, + "sh": true, + }, + "value": 2452565270, + }, + { + "category": "Card", + "configData": { + "id": "Fairy Moth Card", + "pt": 2, + }, + "value": 23403, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Black Hole Angelus Ball", + }, + "value": 10823376507, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Paw Print", + }, + "value": 2021940, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Parrot", + "pt": 2, + }, + "value": 287972106, + }, + { + "category": "Card", + "configData": { + "id": "Huge Arcade Dog Card", + "sh": true, + }, + "value": 28055499, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiki Dominus", + }, + "value": 794335501, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sketch Dragon", + }, + "value": 260202188, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jetpack Tiger", + "pt": 1, + }, + "value": 74463993, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Sun Griffin", + }, + "value": 7655459269, + }, + { + "category": "Pet", + "configData": { + "id": "Stacked Doge Noob", + }, + "value": 326966335, + }, + { + "category": "Pet", + "configData": { + "id": "Cannibal Meerkat", + "pt": 2, + }, + "value": 19152402, + }, + { + "category": "Pet", + "configData": { + "id": "Luchador Axolotl", + "pt": 2, + }, + "value": 10470313, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Temporal Owl", + "pt": 2, + "sh": true, + }, + "value": 2195604745, + }, + { + "category": "Pet", + "configData": { + "id": "Meebo The Alien Ball", + }, + "value": 53, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Sad Cat", + "pt": 2, + }, + "value": 3201835024, + }, + { + "category": "Pet", + "configData": { + "id": "Elf Golem", + "sh": true, + }, + "value": 23330355, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snowman", + "pt": 1, + }, + "value": 992514882, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blossom Spirit", + "pt": 2, + "sh": true, + }, + "value": 6900000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Strawberry Cow", + "pt": 2, + }, + "value": 2443155684, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Orange Axolotl", + }, + "value": 12785579168, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Kraken", + }, + "value": 7671376140, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 7", + }, + "value": 3611183569, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Neon Agony", + }, + "value": 65961532967, + }, + { + "category": "Card", + "configData": { + "id": "Hellhound Card", + "pt": 1, + }, + "value": 934, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightmare Spirit", + }, + "value": 245572339, + }, + { + "category": "Card", + "configData": { + "id": "Immortuus Card", + "pt": 1, + }, + "value": 2472, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Black Hole Angelus Ball", + "sh": true, + }, + "value": 135283003677, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Griffin", + "pt": 2, + }, + "value": 13677611, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Storm Axolotl Ball", + }, + "value": 148835575, + }, + { + "category": "Pet", + "configData": { + "id": "Cartoon Corgi", + "pt": 2, + }, + "value": 25606803, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Disco Ball Dragon", + "pt": 1, + "sh": true, + }, + "value": 2420513400, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rudolf", + "pt": 1, + }, + "value": 27087447, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Lucki", + }, + "value": 20377764706, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Rock", + }, + "value": 12, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Abstract Dominus", + }, + "value": 183816936, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Dooooog", + "sh": true, + }, + "value": 216715709, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hippo", + "pt": 1, + }, + "value": 225568502, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Obsidian Griffin", + "pt": 2, + }, + "value": 325241925, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Butterfly", + "pt": 1, + }, + "value": 367505013, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 27", + }, + "value": 268332261, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Axolotl", + "pt": 1, + }, + "value": 69683023, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bat", + "pt": 1, + }, + "value": 60670680, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Corgi", + "pt": 2, + }, + "value": 227820577, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Dragon", + }, + "value": 11, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Fire Dragon", + }, + "value": 838279712, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doodle Dragon", + "pt": 1, + }, + "value": 81135584, + }, + { + "category": "Pet", + "configData": { + "id": "Beaver", + }, + "value": 525, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightmare Cyclops", + }, + "value": 597944738, + }, + { + "category": "Misc", + "configData": { + "id": "Fantasy Fragment", + }, + "value": 299744, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Agony", + }, + "value": 476685520, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holly Fawn", + }, + "value": 30378027, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Beaver", + "pt": 1, + }, + "value": 102108974, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Steampunk", + }, + "value": 42433695, + }, + { + "category": "Card", + "configData": { + "id": "Anime Wolf Card", + "pt": 2, + "sh": true, + }, + "value": 136543383, + }, + { + "category": "Pet", + "configData": { + "id": "Gorgon", + "pt": 2, + }, + "value": 1079, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hi-Tech Tiger", + "pt": 2, + }, + "value": 747459733, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snowflake Dragon", + "pt": 2, + }, + "value": 706255770, + }, + { + "category": "Pet", + "configData": { + "id": "Butterfly Llama", + "pt": 2, + }, + "value": 1841, + }, + { + "category": "Card", + "configData": { + "id": "Pog Shark Card", + "pt": 1, + }, + "value": 18691, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stunt Corgi", + "sh": true, + }, + "value": 186010872, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hippo", + "pt": 2, + }, + "value": 804515464, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Amethyst Dragon", + "pt": 2, + }, + "value": 3396682672, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dog", + "pt": 1, + }, + "value": 1199198725, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Candycane", + }, + "value": 65476234, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Spider", + "pt": 2, + }, + "value": 839, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Spider", + "pt": 1, + }, + "value": 299, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chroma Lucky Block Mimic", + }, + "value": 302915546, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chef Monkey", + }, + "value": 131425062, + }, + { + "category": "Pet", + "configData": { + "id": "Patapim Brainrot", + "sh": true, + }, + "value": 20468824, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mech Dino", + }, + "value": 67742741, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Fawn", + }, + "value": 10185866450, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Dog", + }, + "value": 7551680, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fairy", + "pt": 1, + }, + "value": 312738110, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bee", + "pt": 1, + }, + "value": 27822036, + }, + { + "category": "Pet", + "configData": { + "id": "Floatie Penguin", + }, + "value": 60, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Hydra Axolotl", + }, + "value": 6347596182, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skeleton Shark", + "pt": 1, + }, + "value": 219932373, + }, + { + "category": "Pet", + "configData": { + "id": "Exquisite Elephant", + }, + "value": 11833464, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anime Scorpion", + "pt": 2, + }, + "value": 596586529, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 9", + }, + "value": 3226934150, + }, + { + "category": "Pet", + "configData": { + "id": "Turkey", + }, + "value": 249, + }, + { + "category": "Pet", + "configData": { + "id": "Hologram Axolotl", + }, + "value": 24228765, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Cookie Cut Cat", + }, + "value": 113511428241, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cinnamon Bunny", + "sh": true, + }, + "value": 366985508, + }, + { + "category": "Pet", + "configData": { + "id": "Patchwork Teddy Bear", + "pt": 2, + "sh": true, + }, + "value": 1224270472, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Forged Robot", + "pt": 2, + }, + "value": 1865468873, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Treasure Turtle", + }, + "value": 144441628, + }, + { + "category": "Pet", + "configData": { + "id": "Icy Phoenix", + }, + "value": 14, + }, + { + "category": "Consumable", + "configData": { + "id": "Lucky Raid Damage Booster", + "tn": 1, + }, + "value": 46404, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Krampus", + "sh": true, + }, + "value": 887100769, + }, + { + "category": "Pet", + "configData": { + "id": "Abstract Dragon", + }, + "value": 18, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Infernus", + }, + "value": 16, + }, + { + "category": "Lootbox", + "configData": { + "id": "Super Hero Pack", + }, + "value": 428447300, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Minotaur", + }, + "value": 10, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Wishing Dragon", + }, + "value": 8890771788, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Orange Balloon Cat", + }, + "value": 2079166343, + }, + { + "category": "Pet", + "configData": { + "id": "Black Hole Immortuus", + "sh": true, + }, + "value": 27821929, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom King", + }, + "value": 1131417946, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Kitsune", + "pt": 2, + }, + "value": 454473890, + }, + { + "category": "Pet", + "configData": { + "id": "Elegant Eagle", + "pt": 2, + }, + "value": 16, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wave Spirit", + "sh": true, + }, + "value": 725043090, + }, + { + "category": "Pet", + "configData": { + "id": "Baby Piglet", + "pt": 2, + }, + "value": 129, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Capybara", + "pt": 1, + }, + "value": 290963136, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Basketball Corgi", + "sh": true, + }, + "value": 150775691, + }, + { + "category": "Pet", + "configData": { + "id": "Corn Cat", + }, + "value": 131, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Owl", + "pt": 2, + }, + "value": 19580682163, + }, + { + "category": "Pet", + "configData": { + "id": "Runic Agony", + "pt": 1, + }, + "value": 15738, + }, + { + "category": "Pet", + "configData": { + "id": "Runic Agony", + }, + "value": 256, + }, + { + "category": "Pet", + "configData": { + "id": "Tome Owl", + }, + "value": 20, + }, + { + "category": "Pet", + "configData": { + "id": "Lit Loris", + "pt": 2, + "sh": true, + }, + "value": 646, + }, + { + "category": "Pet", + "configData": { + "id": "Raining Love Dog", + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Corgi", + }, + "value": 32097, + }, + { + "category": "Pet", + "configData": { + "id": "Persimmony Cricket", + "sh": true, + }, + "value": 68, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tropical Toucan", + }, + "value": 29235460, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Sad Cat", + }, + "value": 82773791420, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Strawberry Cow", + "pt": 1, + }, + "value": 189438502, + }, + { + "category": "Booth", + "configData": { + "id": "Empyrean", + }, + "value": 343068038, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Frankenpup Dog", + }, + "value": 194371588505, + }, + { + "category": "Pet", + "configData": { + "id": "Rhino", + }, + "value": 36, + }, + { + "category": "Card", + "configData": { + "id": "Pixel Dragon Card", + "sh": true, + }, + "value": 1384, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Giraffe", + "pt": 1, + }, + "value": 27303008, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Llama", + "pt": 1, + }, + "value": 21725597, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 20", + }, + "value": 280557345, + }, + { + "category": "Pet", + "configData": { + "id": "Skunk", + }, + "value": 27, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Hippomelon", + }, + "value": 92, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Festive Seal", + "pt": 1, + "sh": true, + }, + "value": 484076648, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Knight Slime", + "pt": 1, + }, + "value": 119308451, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Cat", + "pt": 2, + "sh": true, + }, + "value": 2031373936, + }, + { + "category": "Pet", + "configData": { + "id": "Balloon Corgi", + "pt": 2, + }, + "value": 24618351, + }, + { + "category": "Pet", + "configData": { + "id": "Midnight Zebra", + }, + "value": 14749178, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mermaid Cat", + "pt": 1, + }, + "value": 33150673, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Sloth", + "pt": 1, + }, + "value": 57, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Lion", + }, + "value": 55, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Kraken", + "pt": 1, + }, + "value": 7931299961, + }, + { + "category": "Pet", + "configData": { + "id": "Midnight Deer", + }, + "value": 9062249, + }, + { + "category": "Pet", + "configData": { + "id": "Neon Twilight Dragon", + }, + "value": 50550307, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Raccoon", + "pt": 2, + }, + "value": 123109641, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Egg Dino", + "pt": 2, + }, + "value": 142849188, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Cat", + }, + "value": 51243157941, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Love Peacock", + }, + "value": 95124305, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guard Hydra", + }, + "value": 80329832, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Angelus", + "sh": true, + }, + "value": 357826259, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Moth", + "pt": 2, + }, + "value": 82, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Propeller Cat", + "pt": 1, + }, + "value": 44977059, + }, + { + "category": "Booth", + "configData": { + "id": "Bubble", + }, + "value": 474398867, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Anteater", + "pt": 1, + }, + "value": 126, + }, + { + "category": "Pet", + "configData": { + "id": "Bejeweled Unicorn", + "pt": 2, + }, + "value": 21631766, + }, + { + "category": "Pet", + "configData": { + "id": "Bleebo The Alien", + "pt": 2, + }, + "value": 26, + }, + { + "category": "Pet", + "configData": { + "id": "Inkwell Wisp", + "sh": true, + }, + "value": 44, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Surfboard Axolotl", + "pt": 2, + }, + "value": 132420952, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Treasure Angelus", + }, + "value": 123655785084, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Dominus Astra", + }, + "value": 25224814249, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Butterfly", + "pt": 2, + }, + "value": 274444752, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Raccoon", + "pt": 2, + }, + "value": 190, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Kaiju Moth", + }, + "value": 18432366941, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leprechaun Corgi", + "pt": 2, + }, + "value": 526026417, + }, + { + "category": "Pet", + "configData": { + "id": "Gingerbread Angelus", + "pt": 1, + "sh": true, + }, + "value": 8825300, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Corgi", + }, + "value": 802238269, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bobcat", + "pt": 1, + }, + "value": 56062873, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Bejeweled Griffin", + }, + "value": 18629546761, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Camel", + "pt": 2, + }, + "value": 3225, + }, + { + "category": "Pet", + "configData": { + "id": "Torpedo Shepherd", + }, + "value": 20, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Raccoon", + }, + "value": 27, + }, + { + "category": "Pet", + "configData": { + "id": "Marshmallow Kitsune", + "pt": 1, + }, + "value": 29, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Snow Globe Cat", + }, + "value": 19820096880, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cupcake", + "sh": true, + }, + "value": 1267356255, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Angel Cat", + }, + "value": 2228880834, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hubert", + "pt": 2, + }, + "value": 4849311426, + }, + { + "category": "Pet", + "configData": { + "id": "Marshmallow Agony", + "pt": 2, + }, + "value": 490922, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Yeti", + }, + "value": 85255379, + }, + { + "category": "Consumable", + "configData": { + "id": "Mining Bomb", + "tn": 1, + }, + "value": 297, + }, + { + "category": "Pet", + "configData": { + "id": "Feral Beast", + "pt": 2, + }, + "value": 39473219, + }, + { + "category": "Pet", + "configData": { + "id": "Plane Dragon", + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Zeus Bear", + }, + "value": 269831866, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Zombie Pig", + "sh": true, + }, + "value": 248067709, + }, + { + "category": "Pet", + "configData": { + "id": "Flower Cat", + }, + "value": 5, + }, + { + "category": "Tower", + "configData": { + "id": "Electric Eel", + }, + "value": 30587, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Slimezilla", + "pt": 2, + }, + "value": 177254827, + }, + { + "category": "Pet", + "configData": { + "id": "Knife Cat", + "pt": 2, + }, + "value": 39000333, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Tiedye Dragon", + }, + "value": 19273463083, + }, + { + "category": "Pet", + "configData": { + "cv": 1, + "id": "Huge Chroma Tiger", + }, + "value": 79715851, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Angelus", + "pt": 2, + }, + "value": 424103985, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hell Spider", + }, + "value": 52980326, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Shark", + "pt": 2, + }, + "value": 375, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Coconut Flamingo", + }, + "value": 32636731, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ninja Capybara", + }, + "value": 4377478106, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jolly Dino", + "pt": 2, + }, + "value": 136155903, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ghost Axolotl", + "pt": 2, + }, + "value": 15316335918, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Cat", + "pt": 1, + }, + "value": 215563525, + }, + { + "category": "Card", + "configData": { + "id": "Ghoul Horse Card", + "pt": 2, + }, + "value": 67655, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Axolotl", + }, + "value": 11301199965, + }, + { + "category": "Pet", + "configData": { + "id": "UV Kitsune", + "pt": 2, + }, + "value": 292, + }, + { + "category": "Pet", + "configData": { + "id": "Player Gecko", + "pt": 2, + "sh": true, + }, + "value": 413, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pirate Parrot", + }, + "value": 198455643, + }, + { + "category": "Pet", + "configData": { + "id": "Student Corgi", + }, + "value": 67, + }, + { + "category": "Pet", + "configData": { + "id": "Flowers Hedgehog", + "pt": 1, + }, + "value": 9632, + }, + { + "category": "Pet", + "configData": { + "id": "Monkey", + }, + "value": 36, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Samurai Dragon", + }, + "value": 18122641959, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Crocodile", + "pt": 2, + }, + "value": 84, + }, + { + "category": "Pet", + "configData": { + "id": "Divinus", + }, + "value": 201, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tropical Toucan", + "sh": true, + }, + "value": 178962489, + }, + { + "category": "Card", + "configData": { + "id": "Huge Pog Cat Card", + }, + "value": 255826881, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Witch Wolf", + "pt": 1, + }, + "value": 71789162, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghoul Horse", + "sh": true, + }, + "value": 964303393, + }, + { + "category": "Card", + "configData": { + "id": "Ninja Otter Card", + "pt": 1, + }, + "value": 14446, + }, + { + "category": "Pet", + "configData": { + "id": "Jester Dog", + "pt": 2, + "sh": true, + }, + "value": 187104727, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Avenging Griffin", + "pt": 2, + }, + "value": 505803354, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glowy the Ghost", + "pt": 2, + }, + "value": 253929712, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Corgi", + "pt": 2, + }, + "value": 273825194, + }, + { + "category": "Pet", + "configData": { + "id": "Huge UV Kitsune", + "pt": 2, + }, + "value": 319926311, + }, + { + "category": "Lootbox", + "configData": { + "id": "Glitched Gift", + }, + "value": 23920179, + }, + { + "category": "Pet", + "configData": { + "id": "A-36", + }, + "value": 22, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skateboard Bulldog", + "pt": 1, + "sh": true, + }, + "value": 225409175, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fluffy Cat", + "pt": 2, + "sh": true, + }, + "value": 2438483047, + }, + { + "category": "Pet", + "configData": { + "id": "Sprout Pegasus", + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Hypnotic Monkey", + }, + "value": 14763646230, + }, + { + "category": "Card", + "configData": { + "id": "Ghoul Horse Card", + "pt": 1, + "sh": true, + }, + "value": 279686, + }, + { + "category": "Card", + "configData": { + "id": "Ninja Otter Card", + }, + "value": 91090, + }, + { + "category": "Booth", + "configData": { + "id": "Millionaire", + }, + "value": 11776426, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Party Cat", + }, + "value": 13456680978, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Diamond Dog", + }, + "value": 177516163, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixie Bee", + }, + "value": 110973968, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Egg Chick", + "pt": 1, + }, + "value": 84492290, + }, + { + "category": "Pet", + "configData": { + "id": "Graffiti Dino", + "pt": 2, + "sh": true, + }, + "value": 548, + }, + { + "category": "Card", + "configData": { + "id": "Retro Bulldog Card", + "pt": 1, + }, + "value": 2230, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Storm Axolotl", + "pt": 1, + }, + "value": 171628047, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Electric Guitar", + "sh": true, + }, + "value": 2292931042, + }, + { + "category": "Pet", + "configData": { + "id": "Candycane Shake Shark", + }, + "value": 15774, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pineapple Cat", + "pt": 1, + }, + "value": 96676585, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rainbow Unicorn", + "pt": 2, + }, + "value": 2334859038, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doodle Cat", + "pt": 2, + }, + "value": 1073660290, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gym Dragon", + }, + "value": 6909000167, + }, + { + "category": "Pet", + "configData": { + "id": "Chesnut Chipmunk", + "pt": 1, + }, + "value": 529, + }, + { + "category": "Card", + "configData": { + "id": "Ghoul Horse Card", + "pt": 1, + }, + "value": 5359, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pixel Monkey", + }, + "value": 7131275541, + }, + { + "category": "Enchant", + "configData": { + "id": "Diamond Chest Mimic", + "tn": 1, + }, + "value": 1222641684, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holiday Hedgehog", + }, + "value": 33916889, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Plague Dragon", + "pt": 1, + }, + "value": 70175244, + }, + { + "category": "Card", + "configData": { + "id": "Hydra Cat Card", + "pt": 2, + }, + "value": 881, + }, + { + "category": "Pet", + "configData": { + "id": "Dot Matrix Snail", + }, + "value": 12518697, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Detective Terrier", + "pt": 2, + }, + "value": 133318728, + }, + { + "category": "Pet", + "configData": { + "id": "Storm Griffin", + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Abyss Carbuncle", + }, + "value": 8072648473, + }, + { + "category": "Pet", + "configData": { + "id": "Pop Cat", + "sh": true, + }, + "value": 503251060, + }, + { + "category": "Misc", + "configData": { + "id": "Onyx Gem", + }, + "value": 39540, + }, + { + "category": "Pet", + "configData": { + "id": "Shimmering Octopus", + "pt": 2, + }, + "value": 171, + }, + { + "category": "Pet", + "configData": { + "id": "Rock Monkey", + "pt": 2, + }, + "value": 131, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stingray", + "pt": 2, + "sh": true, + }, + "value": 2062094645, + }, + { + "category": "Pet", + "configData": { + "id": "Atomic Monkey", + }, + "value": 37, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 16", + }, + "value": 733373356, + }, + { + "category": "Pet", + "configData": { + "cv": 2, + "id": "Huge Chroma Swan", + }, + "value": 412196263, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Patchwork", + }, + "value": 240985477, + }, + { + "category": "Pet", + "configData": { + "id": "Player Fox", + }, + "value": 21, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Angelus", + "pt": 1, + }, + "value": 80570815, + }, + { + "category": "Pet", + "configData": { + "id": "Stargazing Wolf", + "pt": 2, + }, + "value": 17598524, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Elephant", + }, + "value": 79566260, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Axolotl", + }, + "value": 659398074, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Safari Monkey", + "pt": 2, + }, + "value": 136922042, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snuggle Beast", + }, + "value": 198020836, + }, + { + "category": "Misc", + "configData": { + "id": "Tropical Flower", + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Patchwork Teddy Bear", + "sh": true, + }, + "value": 33920910, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sage Axolotl", + }, + "value": 61632072, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Maskot", + }, + "value": 31, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pixel Agony", + "pt": 1, + }, + "value": 7102061007, + }, + { + "category": "Pet", + "configData": { + "id": "Pixie Fox", + }, + "value": 1073, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Santa Paws", + }, + "value": 222331789576, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Bee", + }, + "value": 26859521, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Deerserker", + "pt": 2, + }, + "value": 281080318, + }, + { + "category": "Pet", + "configData": { + "id": "Tralala Brainrot", + "sh": true, + }, + "value": 28495727, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Agony", + }, + "value": 15, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Popcat", + }, + "value": 219733912, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 22", + }, + "value": 388298613, + }, + { + "category": "Pet", + "configData": { + "id": "Sketch Corgi", + "pt": 2, + "sh": true, + }, + "value": 141824087, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lumi Axolotl", + "pt": 1, + }, + "value": 75497188, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Wolf", + }, + "value": 1078, + }, + { + "category": "Tool", + "configData": { + "id": "Diamond Pickaxe", + }, + "value": 952272, + }, + { + "category": "Pet", + "configData": { + "id": "Alien Axolotl", + "pt": 2, + }, + "value": 30, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Rocket", + }, + "value": 903127313, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Turtle", + }, + "value": 13, + }, + { + "category": "Pet", + "configData": { + "id": "Baby Kitten", + "pt": 2, + }, + "value": 208, + }, + { + "category": "Tower", + "configData": { + "id": "Mechanical Griffin", + }, + "value": 241516887, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Abomination", + "sh": true, + }, + "value": 527908191, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Candycane", + "pt": 1, + }, + "value": 61622842, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Seal", + }, + "value": 61, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Forcefield Cat", + }, + "value": 282956802, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tropical Flamingo", + "sh": true, + }, + "value": 185621772, + }, + { + "category": "Pet", + "configData": { + "id": "Good vs Evil Dragon", + }, + "value": 45, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hypnotic Cat", + "sh": true, + }, + "value": 748575806, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lit Loris", + "pt": 2, + }, + "value": 6501604661, + }, + { + "category": "Tower", + "configData": { + "id": "DJ Shark", + }, + "value": 284, + }, + { + "category": "Card", + "configData": { + "id": "Ninja Snake Card", + "pt": 1, + }, + "value": 65226, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Athena Owl", + }, + "value": 450255855, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pterodactyl", + "sh": true, + }, + "value": 296994988, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guard Bunny", + }, + "value": 2995816119, + }, + { + "category": "Pet", + "configData": { + "id": "Blimp Dragon", + }, + "value": 303, + }, + { + "category": "Pet", + "configData": { + "cv": 5, + "id": "Huge Chroma Ink Blob", + }, + "value": 49507670, + }, + { + "category": "Pet", + "configData": { + "id": "Player Penguin", + }, + "value": 111, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chest Mimic", + "pt": 2, + }, + "value": 9568449416, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Bearserker", + "pt": 2, + }, + "value": 14476548, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doodle Agony", + "pt": 1, + }, + "value": 709147151, + }, + { + "category": "Consumable", + "configData": { + "id": "Mining Nuclear TNT Crate", + "tn": 1, + }, + "value": 835224, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pilgrim Turkey", + "pt": 1, + }, + "value": 6589457913, + }, + { + "category": "Pet", + "configData": { + "id": "Nightfall Tiger", + }, + "value": 22298879, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Icy Phoenix", + "pt": 2, + }, + "value": 729491246, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Cow", + "pt": 2, + }, + "value": 12, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stunt Corgi", + "pt": 1, + }, + "value": 41167058, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Safari Dog", + }, + "value": 941927214, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Slimezilla", + "pt": 1, + }, + "value": 49111712, + }, + { + "category": "Pet", + "configData": { + "id": "Playful Seal", + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Dolphin", + "pt": 1, + }, + "value": 100, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Sea Dragon Card", + "sh": true, + }, + "value": 2318404155, + }, + { + "category": "Pet", + "configData": { + "id": "Cool Corgi", + "pt": 1, + }, + "value": 19315329, + }, + { + "category": "Pet", + "configData": { + "id": "Alien Parasite", + "pt": 2, + }, + "value": 67, + }, + { + "category": "Pet", + "configData": { + "id": "Mrs. Claws", + }, + "value": 26980915, + }, + { + "category": "Pet", + "configData": { + "cv": 2, + "id": "Huge Chroma Swan", + "pt": 2, + }, + "value": 933980684, + }, + { + "category": "Pet", + "configData": { + "id": "Palace Pooka", + "pt": 1, + "sh": true, + }, + "value": 15415217, + }, + { + "category": "Consumable", + "configData": { + "id": "Cannon Corruption", + "tn": 1, + }, + "value": 67149, + }, + { + "category": "Pet", + "configData": { + "id": "Hi-Tech Tiger", + "sh": true, + }, + "value": 18338, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Fairy", + "pt": 2, + }, + "value": 767971350, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evil Deer", + "pt": 1, + }, + "value": 893423000, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Yeti", + "pt": 2, + }, + "value": 4403, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dragon", + "sh": true, + }, + "value": 2680860759, + }, + { + "category": "Pet", + "configData": { + "id": "Yin-Yang Griffin", + "pt": 2, + }, + "value": 30298885, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mrs. Claws", + "pt": 2, + }, + "value": 813092879, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cat", + }, + "value": 16578985432, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nutcracker Bunny", + "pt": 2, + "sh": true, + }, + "value": 15000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Cat", + "pt": 1, + }, + "value": 15095688, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Blueberry Cow", + }, + "value": 126624256801, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Arcade Dog", + "sh": true, + }, + "value": 126997517, + }, + { + "category": "Lootbox", + "configData": { + "id": "Meme Pack", + }, + "value": 1145127672, + }, + { + "category": "Pet", + "configData": { + "id": "Obsidian Griffin", + "pt": 2, + "sh": true, + }, + "value": 719, + }, + { + "category": "Pet", + "configData": { + "id": "Dragonfruit Dragon", + "pt": 2, + }, + "value": 31880496, + }, + { + "category": "Booth", + "configData": { + "id": "M10", + }, + "value": 289505331, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Turtle", + "pt": 2, + }, + "value": 26521, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Forged Robot", + "pt": 1, + }, + "value": 510652255, + }, + { + "category": "Pet", + "configData": { + "id": "Totem Bear", + }, + "value": 10406127, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anime Scorpion", + "sh": true, + }, + "value": 522003934, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valkyrie Dog", + "pt": 2, + }, + "value": 1866715722, + }, + { + "category": "Pet", + "configData": { + "id": "Vampire Bat", + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Poseidon Dog", + "pt": 1, + }, + "value": 245578201, + }, + { + "category": "Pet", + "configData": { + "id": "Flower Panda", + }, + "value": 42, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Wizard", + }, + "value": 50872192, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Hydra", + }, + "value": 275376122, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crash Dummy Noob", + }, + "value": 66340066, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dragon", + "pt": 1, + }, + "value": 536444486, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dark Lord", + "pt": 2, + "sh": true, + }, + "value": 9833138368, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Player Panda", + "pt": 2, + "sh": true, + }, + "value": 3852521840, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightfall Wolf", + "pt": 1, + }, + "value": 418859187, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kitsune Fox", + "pt": 2, + }, + "value": 384353806, + }, + { + "category": "Pet", + "configData": { + "id": "Black Hole Kitsune", + "pt": 2, + }, + "value": 106779037, + }, + { + "category": "Pet", + "configData": { + "id": "Dot Matrix Axolotl", + "pt": 2, + }, + "value": 117543865, + }, + { + "category": "Pet", + "configData": { + "id": "Research Cat", + "pt": 2, + }, + "value": 70, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Shadow Griffin", + "pt": 2, + }, + "value": 337829741, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Angry Yeti", + }, + "value": 23798481506, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Axolotl", + "pt": 1, + }, + "value": 10740917, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Librarian Beaver", + }, + "value": 61331369, + }, + { + "category": "Pet", + "configData": { + "id": "Atomic Axolotl", + }, + "value": 71, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Capybara", + }, + "value": 21061496511, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Player Fox", + "pt": 2, + }, + "value": 357863083, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Coach Tiger", + "pt": 2, + }, + "value": 307744600, + }, + { + "category": "Consumable", + "configData": { + "id": "Tower Luck Booster", + "tn": 1, + }, + "value": 2168, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Masked Owl", + }, + "value": 175597165, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chroma Lucki", + "sh": true, + }, + "value": 896230139, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Heart Balloon Cat", + }, + "value": 1516201848, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Diamond Bunny", + "pt": 2, + }, + "value": 135383734, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crocodile", + "pt": 1, + }, + "value": 28580181, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valkyrie Wolf", + "sh": true, + }, + "value": 2005482622, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Jackalope", + }, + "value": 42, + }, + { + "category": "Booth", + "configData": { + "id": "Cupcake", + }, + "value": 474344039, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixie Bee", + "pt": 2, + }, + "value": 2702642017, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gorgon", + "pt": 2, + }, + "value": 243101117, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elemental Phoenix", + "pt": 1, + }, + "value": 73485118, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pristine Snake", + "pt": 2, + }, + "value": 211005185, + }, + { + "category": "Pet", + "configData": { + "id": "Moose", + }, + "value": 9891, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Abyss Carbuncle", + "pt": 1, + }, + "value": 6949269102, + }, + { + "category": "Pet", + "configData": { + "id": "Floatie Cat", + "sh": true, + }, + "value": 107, + }, + { + "category": "Pet", + "configData": { + "id": "Storm Griffin", + "pt": 2, + }, + "value": 931, + }, + { + "category": "Pet", + "configData": { + "id": "Yin-Yang Bunny", + }, + "value": 24225184, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Strawhat Tanuki", + "pt": 2, + }, + "value": 1143819418, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Super Corgi", + "pt": 1, + }, + "value": 808017447, + }, + { + "category": "Pet", + "configData": { + "id": "Blueberry Cow", + "pt": 2, + }, + "value": 50183979, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pinata Cat", + "pt": 1, + }, + "value": 814643542, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Cat", + }, + "value": 102, + }, + { + "category": "Pet", + "configData": { + "id": "Galaxy Fox", + }, + "value": 131, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jetpack Cat", + "pt": 1, + }, + "value": 65096843, + }, + { + "category": "Pet", + "configData": { + "id": "Huge North Pole Unicorn", + "pt": 1, + "sh": true, + }, + "value": 1371570038, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Flex Fluffy Cat", + "sh": true, + }, + "value": 389737120, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightfall Pegasus", + "pt": 1, + }, + "value": 375240933, + }, + { + "category": "Pet", + "configData": { + "id": "Stacked Dominus", + }, + "value": 15, + }, + { + "category": "Pet", + "configData": { + "id": "Error Cat", + "pt": 2, + "sh": true, + }, + "value": 1114448, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Bee", + "pt": 1, + "sh": true, + }, + "value": 329630828, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Axolotl", + "pt": 1, + }, + "value": 75, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ladybug", + "sh": true, + }, + "value": 130148754, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Cat", + "pt": 2, + }, + "value": 71, + }, + { + "category": "Pet", + "configData": { + "id": "Flamingo Cat", + "sh": true, + }, + "value": 61357, + }, + { + "category": "Pet", + "configData": { + "id": "Totem Bear", + "pt": 2, + "sh": true, + }, + "value": 379369326, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Walrus", + "pt": 1, + }, + "value": 44589669, + }, + { + "category": "Pet", + "configData": { + "id": "Cool Cat", + "pt": 1, + }, + "value": 7158930, + }, + { + "category": "Booth", + "configData": { + "id": "Hotdog", + }, + "value": 354063360, + }, + { + "category": "Pet", + "configData": { + "id": "Zombie Deer", + "pt": 1, + }, + "value": 110, + }, + { + "category": "Booth", + "configData": { + "id": "Cardboard", + }, + "value": 400882493, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Atomic Forged Shark", + "pt": 2, + }, + "value": 323493408, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rainbow Unicorn", + }, + "value": 676342859, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Bunny", + "pt": 2, + }, + "value": 975238867, + }, + { + "category": "Pet", + "configData": { + "cv": 1, + "id": "Huge Chroma Snail", + }, + "value": 84939185, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Huge Chroma Snail", + }, + "value": 80212563, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elf Golem", + "pt": 2, + }, + "value": 741840243, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bubble Hydra", + }, + "value": 147598103, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Jaguar", + "pt": 1, + "sh": true, + }, + "value": 2063, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Monkey", + "pt": 1, + }, + "value": 115549, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hot Dog", + "pt": 2, + }, + "value": 1875654871, + }, + { + "category": "Card", + "configData": { + "id": "Fairy Moth Card", + "pt": 1, + "sh": true, + }, + "value": 100389, + }, + { + "category": "Pet", + "configData": { + "id": "Black Hole Axolotl", + "pt": 2, + "sh": true, + }, + "value": 354124230, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shadow Dominus", + "pt": 2, + "sh": true, + }, + "value": 2248001131, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Badger", + "sh": true, + }, + "value": 95236519, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stargazing Axolotl", + }, + "value": 156019746, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Scuba Dog", + "pt": 2, + }, + "value": 1475666429, + }, + { + "category": "Card", + "configData": { + "id": "Huge Arcade Dog Card", + "pt": 2, + }, + "value": 38925701, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Flamingo Hippo", + "pt": 1, + }, + "value": 20985586, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spitting Dino", + "pt": 2, + "sh": true, + }, + "value": 249801579520, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Raccoon", + }, + "value": 368, + }, + { + "category": "Pet", + "configData": { + "id": "Zombie Deer", + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Detective Terrier", + "pt": 2, + "sh": true, + }, + "value": 3547281326, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Inferno Stealth Bobcat", + "pt": 1, + "sh": true, + }, + "value": 1261332153, + }, + { + "category": "Pet", + "configData": { + "id": "Neon Twilight Tiger", + }, + "value": 23351274, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pony", + "pt": 1, + }, + "value": 1556333088, + }, + { + "category": "Tower", + "configData": { + "id": "Abyssal Turtle", + }, + "value": 105526, + }, + { + "category": "Pet", + "configData": { + "id": "Domortuus", + }, + "value": 36, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Flex Cat", + }, + "value": 17910102900, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Abomination", + "pt": 1, + }, + "value": 62644339, + }, + { + "category": "Pet", + "configData": { + "id": "Kaiju Volcano", + "pt": 2, + "sh": true, + }, + "value": 521120270, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vibrant Toucan", + "pt": 2, + }, + "value": 121002991, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ladybug", + "pt": 1, + "sh": true, + }, + "value": 798390497, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Bunny", + }, + "value": 27242495, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Corn Cat", + "pt": 1, + }, + "value": 740772367, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Tiger", + }, + "value": 118120527, + }, + { + "category": "Tower", + "configData": { + "id": "Arcade Angelus", + }, + "value": 421783, + }, + { + "category": "Pet", + "configData": { + "id": "Player Piggy", + "pt": 2, + }, + "value": 92, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Crown Hippomelon", + "sh": true, + }, + "value": 2364124945, + }, + { + "category": "Booth", + "configData": { + "id": "Police", + }, + "value": 68853029, + }, + { + "category": "Pet", + "configData": { + "id": "Blue BIG Maskot", + "sh": true, + }, + "value": 127501589, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Llama", + "pt": 2, + "sh": true, + }, + "value": 2293494217, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Baby Kitten", + "pt": 2, + }, + "value": 251296223, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hubert", + "sh": true, + }, + "value": 3047224553, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Cat", + "pt": 1, + }, + "value": 30616969, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jaguar", + "pt": 1, + }, + "value": 433660110, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Old Wizard Corgi", + "pt": 1, + }, + "value": 69415554, + }, + { + "category": "Pet", + "configData": { + "id": "Wicked Angelus", + }, + "value": 922605322, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doodle Fairy", + "sh": true, + }, + "value": 539432964, + }, + { + "category": "Pet", + "configData": { + "cv": 6, + "id": "Huge Chroma Tiger", + "pt": 2, + }, + "value": 543022025, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Cat", + "pt": 1, + }, + "value": 31687713135, + }, + { + "category": "Pet", + "configData": { + "id": "Balloon Dragon", + "pt": 2, + "sh": true, + }, + "value": 1266715752, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gym Axolotl", + }, + "value": 6957334627, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kawaii Dragon", + "sh": true, + }, + "value": 1445931879, + }, + { + "category": "Tower", + "configData": { + "id": "Crystal Giraffe", + }, + "value": 1733482, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Hydra", + "sh": true, + }, + "value": 16779811, + }, + { + "category": "Pet", + "configData": { + "id": "Forged Hedgehog", + }, + "value": 49, + }, + { + "category": "Pet", + "configData": { + "id": "Hippomelon", + "sh": true, + }, + "value": 88203639, + }, + { + "category": "Booth", + "configData": { + "id": "Wicked", + }, + "value": 570303421, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Captain Octopus", + }, + "value": 7463446049, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Cappuccino Brainrot", + }, + "value": 122464720505, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Cat", + "pt": 2, + }, + "value": 147342436, + }, + { + "category": "Pet", + "configData": { + "cv": 1, + "id": "Chroma Tiger", + }, + "value": 25029, + }, + { + "category": "Pet", + "configData": { + "id": "Owl", + "pt": 2, + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sage Axolotl", + "pt": 2, + }, + "value": 417963683, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mosaic Corgi", + "pt": 1, + }, + "value": 85152877, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Strawberry", + }, + "value": 3708826, + }, + { + "category": "Booth", + "configData": { + "id": "TNT", + }, + "value": 3532768, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Poinsettia Peacock", + "pt": 1, + }, + "value": 46513521, + }, + { + "category": "Pet", + "configData": { + "id": "Knife Cat", + "sh": true, + }, + "value": 14858837, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Flamethrower Spider", + "pt": 1, + }, + "value": 171185991, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ghostly Wolf", + "pt": 2, + }, + "value": 18123015868, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Old Wizard Cat", + "sh": true, + }, + "value": 284412709, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blurred Axolotl", + }, + "value": 38563107, + }, + { + "category": "Pet", + "configData": { + "id": "Treasure Unicorn", + "sh": true, + }, + "value": 24890062, + }, + { + "category": "Pet", + "configData": { + "id": "Huge King Cobra", + }, + "value": 56084213, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Owl", + "pt": 1, + }, + "value": 8880861490, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kawaii Dragon", + "pt": 1, + }, + "value": 122896670, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kitsune Fox", + "pt": 1, + }, + "value": 44920530, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Good vs Evil Dragon", + }, + "value": 280366744, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Koi Fish", + "pt": 1, + "sh": true, + }, + "value": 301584532, + }, + { + "category": "Pet", + "configData": { + "id": "Hypnotic Griffin", + "pt": 2, + }, + "value": 16597799, + }, + { + "category": "Pet", + "configData": { + "id": "Football Tiger", + "pt": 1, + }, + "value": 538, + }, + { + "category": "Pet", + "configData": { + "id": "Exquisite Cat", + "pt": 1, + "sh": true, + }, + "value": 882784469, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jolly Penguin", + "pt": 1, + "sh": true, + }, + "value": 813327904, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valkyrie Dog", + "sh": true, + }, + "value": 1576749606, + }, + { + "category": "Pet", + "configData": { + "id": "Cool Dragon", + "pt": 1, + }, + "value": 14337920, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Angelus", + "pt": 2, + }, + "value": 82147003, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pajamas Shark", + "pt": 2, + "sh": true, + }, + "value": 3338064285, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Love Lamb", + "pt": 1, + }, + "value": 451399892, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Enchanted Deer", + "pt": 1, + }, + "value": 60826638, + }, + { + "category": "Card", + "configData": { + "id": "Super Seal Card", + "pt": 2, + }, + "value": 2387823, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Bread Shiba", + }, + "value": 27786410653, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jolly Dino", + "sh": true, + }, + "value": 106907598, + }, + { + "category": "Card", + "configData": { + "id": "Pog Shark Card", + }, + "value": 39271, + }, + { + "category": "Pet", + "configData": { + "id": "Huge African Wild Dog", + "sh": true, + }, + "value": 358310014, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiedye Bunny", + "pt": 1, + }, + "value": 144929255, + }, + { + "category": "Pet", + "configData": { + "id": "Soccer Terrier", + "pt": 1, + }, + "value": 97, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Telescope Owl", + "sh": true, + }, + "value": 198009549, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Hotdog", + "sh": true, + }, + "value": 1828302924, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Poseidon Corgi", + "pt": 2, + }, + "value": 172176007, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Scary Corgi", + "pt": 2, + }, + "value": 627163815, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Autumn Chest Mimic", + }, + "value": 438895464, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Holographic", + }, + "value": 269284408, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shadow Dominus", + "pt": 1, + "sh": true, + }, + "value": 275345356, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Flamingo Hippo", + }, + "value": 25617459, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Wolf", + }, + "value": 756259174, + }, + { + "category": "Consumable", + "configData": { + "id": "Cannon Damage Booster", + "tn": 1, + }, + "value": 8186, + }, + { + "category": "Pet", + "configData": { + "id": "Anime Corgi", + "pt": 2, + }, + "value": 129221398, + }, + { + "category": "Pet", + "configData": { + "id": "Stargazing Axolotl", + }, + "value": 17548186, + }, + { + "category": "Pet", + "configData": { + "id": "Froggy", + }, + "value": 10682, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lemur", + "pt": 1, + "sh": true, + }, + "value": 1439996837, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Sloth", + "sh": true, + }, + "value": 418, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom King", + "pt": 1, + }, + "value": 1098126110, + }, + { + "category": "Pet", + "configData": { + "id": "Banana", + }, + "value": 11060119090, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Banana Cat", + }, + "value": 18179032491, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Easter Golem", + }, + "value": 7577242887, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pumpkin Dog", + "sh": true, + }, + "value": 330633746, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blurred Owl", + "pt": 1, + "sh": true, + }, + "value": 633710390, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Koi Fish", + "pt": 2, + "sh": true, + }, + "value": 1886470659, + }, + { + "category": "Pet", + "configData": { + "id": "Player Piggy", + "pt": 1, + }, + "value": 897, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ancient Dragon", + "pt": 2, + }, + "value": 1235464789, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Jelly Kitsune", + }, + "value": 14121308417, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tech Chest Mimic", + "pt": 2, + }, + "value": 861890187, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Devil Dominus", + }, + "value": 126654062, + }, + { + "category": "Pet", + "configData": { + "id": "Lumi Axolotl", + "pt": 2, + }, + "value": 1702998, + }, + { + "category": "Pet", + "configData": { + "id": "Minecart Hamster", + "pt": 1, + }, + "value": 168, + }, + { + "category": "Pet", + "configData": { + "id": "Snowflake Dominus", + }, + "value": 263, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Black Hole Axolotl", + }, + "value": 212069901, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Dog", + "pt": 1, + }, + "value": 6644781, + }, + { + "category": "Consumable", + "configData": { + "id": "Gym Shake", + "tn": 1, + }, + "value": 24731, + }, + { + "category": "Pet", + "configData": { + "id": "Chick", + }, + "value": 4, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evil Snowman", + }, + "value": 95569286, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shiba", + }, + "value": 1945943693, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ancient Dragon", + }, + "value": 16544903575, + }, + { + "category": "Pet", + "configData": { + "id": "Vibrant Toucan", + }, + "value": 69732, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Fossil Dragon", + }, + "value": 16175429655, + }, + { + "category": "Pet", + "configData": { + "id": "Fireball Cat", + "pt": 2, + }, + "value": 4945, + }, + { + "category": "Pet", + "configData": { + "id": "Ghoul Horse", + }, + "value": 6868, + }, + { + "category": "Pet", + "configData": { + "id": "Red Wolf", + "sh": true, + }, + "value": 326, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Monkey", + "pt": 1, + }, + "value": 2383272376, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Specter Owl", + }, + "value": 664273788, + }, + { + "category": "Pet", + "configData": { + "id": "Neon Twilight Cat", + "pt": 2, + }, + "value": 109915255, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Silver Bison", + "pt": 2, + }, + "value": 3075168120, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Turtle", + }, + "value": 93535323, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Disco Ball Dragon", + "pt": 1, + }, + "value": 78472126, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fluffy Cat", + "sh": true, + }, + "value": 147882113, + }, + { + "category": "Pet", + "configData": { + "id": "Imp", + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Dalmatian", + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Scribe Squirrel", + "pt": 1, + }, + "value": 37462247, + }, + { + "category": "Pet", + "configData": { + "cv": 6, + "id": "Huge Chroma Snail", + }, + "value": 91106767, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chameleon", + }, + "value": 132027417, + }, + { + "category": "Consumable", + "configData": { + "id": "Super Gym Gloves", + "tn": 1, + }, + "value": 154665, + }, + { + "category": "Consumable", + "configData": { + "id": "Easter Chest Tokens Booster", + "tn": 1, + }, + "value": 3624, + }, + { + "category": "Pet", + "configData": { + "id": "Cupcake Hamster", + "pt": 1, + }, + "value": 162, + }, + { + "category": "Pet", + "configData": { + "id": "Rocket Shark", + }, + "value": 36, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 23", + }, + "value": 282497377, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wizard Westie", + "pt": 2, + }, + "value": 113816460, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ice Snake", + "pt": 1, + "sh": true, + }, + "value": 1253758898, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guard Wolf", + "pt": 1, + }, + "value": 85287161, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shark Cat", + "pt": 1, + }, + "value": 1477276185, + }, + { + "category": "Pet", + "configData": { + "id": "Lifeguard Shark", + }, + "value": 47, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Dominus", + "pt": 2, + "sh": true, + }, + "value": 256663507, + }, + { + "category": "Pet", + "configData": { + "id": "Coach Hippo", + }, + "value": 21, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mrs. Claws", + "pt": 1, + }, + "value": 274007374, + }, + { + "category": "Pet", + "configData": { + "id": "King Cow", + "pt": 1, + }, + "value": 787, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Axolotl", + "pt": 2, + }, + "value": 285508504, + }, + { + "category": "Pet", + "configData": { + "id": "Pumpkin Scarecrow", + "pt": 1, + }, + "value": 3341, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Disco Ball Agony", + "pt": 1, + }, + "value": 7679153792, + }, + { + "category": "Pet", + "configData": { + "id": "Molten Pumpkin Cat", + "pt": 2, + "sh": true, + }, + "value": 344853889, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Colorful Wisp", + "pt": 2, + }, + "value": 317835260, + }, + { + "category": "Pet", + "configData": { + "id": "Basketball Corgi", + }, + "value": 785, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Agony", + "pt": 2, + }, + "value": 116, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Supercar", + "sh": true, + }, + "value": 6959244476, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Yee-haw Cat", + "sh": true, + }, + "value": 327300537, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Agony", + }, + "value": 64, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Loveserker", + "pt": 1, + }, + "value": 39776602, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hacked Skeleton", + }, + "value": 483410450, + }, + { + "category": "Booth", + "configData": { + "id": "Pirate", + }, + "value": 316337196, + }, + { + "category": "Pet", + "configData": { + "id": "Hologram Tiger", + "pt": 2, + }, + "value": 29549911, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Brain Ball", + }, + "value": 7392896890, + }, + { + "category": "Pet", + "configData": { + "id": "Soccer Terrier", + }, + "value": 33, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Prickly Panda", + }, + "value": 2707280883, + }, + { + "category": "Misc", + "configData": { + "id": "Pixel Bloom", + }, + "value": 860, + }, + { + "category": "Pet", + "configData": { + "id": "Super Coral Whale", + "pt": 2, + "sh": true, + }, + "value": 560158170, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Moray Eel", + "pt": 2, + }, + "value": 218180203, + }, + { + "category": "Tower", + "configData": { + "id": "Nightmare Cyclops", + }, + "value": 2522144, + }, + { + "category": "Pet", + "configData": { + "id": "Soul Dragon", + "pt": 2, + "sh": true, + }, + "value": 762701007, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guard Dominus", + "sh": true, + }, + "value": 109208510, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Mosaic Cat", + }, + "value": 13186546424, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Raccoon", + "pt": 1, + }, + "value": 12597, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Autumn Teddy Bear", + }, + "value": 8081161080, + }, + { + "category": "Pet", + "configData": { + "id": "Kaiju Sea Dragon", + "sh": true, + }, + "value": 12609731, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Parachute Monkey", + "pt": 2, + }, + "value": 206475829, + }, + { + "category": "Pet", + "configData": { + "id": "Toy Chest Mimic", + "pt": 1, + }, + "value": 4090, + }, + { + "category": "Pet", + "configData": { + "id": "Koi Fish", + }, + "value": 343, + }, + { + "category": "Pet", + "configData": { + "id": "Inferno Stealth Cat", + "pt": 1, + }, + "value": 556156138, + }, + { + "category": "Pet", + "configData": { + "id": "Brain Ball", + }, + "value": 37, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Balloon Dragon", + "sh": true, + }, + "value": 850824541, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Autumn Red Panda", + "pt": 1, + }, + "value": 64154216, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Mining Penguin", + "pt": 2, + }, + "value": 232230961, + }, + { + "category": "Card", + "configData": { + "id": "Nature Axolotl Card", + }, + "value": 12146, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Detective Terrier", + "sh": true, + }, + "value": 116234903, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Poseidon Corgi", + "pt": 1, + }, + "value": 35907163, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Bear", + "pt": 2, + "sh": true, + }, + "value": 465651, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chest Mimic", + "pt": 1, + "sh": true, + }, + "value": 1000000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dragon", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Old Wizard Dragon", + "pt": 2, + }, + "value": 320676417, + }, + { + "category": "Pet", + "configData": { + "id": "Error Cat", + "pt": 1, + }, + "value": 3100, + }, + { + "category": "Pet", + "configData": { + "id": "Steampunk Bat", + }, + "value": 269, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doodle Fairy", + "pt": 2, + }, + "value": 614323081, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 37", + }, + "value": 426953562, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Blue Balloon Cat", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Disco Ball Dragon", + "pt": 2, + }, + "value": 458282522, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kawaii Dragon Ball", + "pt": 2, + }, + "value": 202761032, + }, + { + "category": "Pet", + "configData": { + "id": "Axolotuus", + }, + "value": 43, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Icy Phoenix", + "pt": 2, + "sh": true, + }, + "value": 302852906916, + }, + { + "category": "Card", + "configData": { + "id": "Camo Axolotl Card", + "pt": 2, + }, + "value": 1181, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rich Corgi", + }, + "value": 298482744, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Elephant", + "sh": true, + }, + "value": 199487328, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tech Samurai Cat", + }, + "value": 330560049, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Empyrean Owl", + }, + "value": 13715920040, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightmare Dog", + "pt": 2, + }, + "value": 979163003, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Cat", + "pt": 2, + }, + "value": 47, + }, + { + "category": "Card", + "configData": { + "id": "Error Cat Card", + "sh": true, + }, + "value": 230, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nutcracker Cat", + "sh": true, + }, + "value": 200291774, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Elf Golem", + }, + "value": 123350931112, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Goblin", + "sh": true, + }, + "value": 162868653, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mech Dino", + "pt": 2, + }, + "value": 221516657, + }, + { + "category": "Card", + "configData": { + "id": "Nature Axolotl Card", + "pt": 1, + }, + "value": 182746, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Bunny Ball", + }, + "value": 43, + }, + { + "category": "Card", + "configData": { + "id": "Pog Dog Card", + "sh": true, + }, + "value": 2886, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Baby Kitten", + "sh": true, + }, + "value": 413692148, + }, + { + "category": "Pet", + "configData": { + "id": "Recruiter Axolotl", + "pt": 2, + "sh": true, + }, + "value": 65596717, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Poinsettia Peacock", + "sh": true, + }, + "value": 330703965, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Dog", + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wishing Dragon", + }, + "value": 89848463, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holographic Monkey", + }, + "value": 800427767, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Royal Peacock", + "sh": true, + }, + "value": 321830553, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightmare Cyclops", + "pt": 1, + }, + "value": 298907193, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Classic Dragon", + "pt": 2, + }, + "value": 1000368347, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Penguin", + "pt": 1, + }, + "value": 22499645, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leprechaun Dog", + }, + "value": 210285315, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Corgi", + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Imp", + }, + "value": 12, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mosaic Lamb", + "pt": 2, + }, + "value": 372605559, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dark Dragon", + "pt": 1, + }, + "value": 179603670, + }, + { + "category": "Pet", + "configData": { + "id": "Yin-Yang Bunny", + "pt": 2, + }, + "value": 47873204, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spectral Deer", + "sh": true, + }, + "value": 1597859671, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Troll", + }, + "value": 38534922, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Raccoon", + "sh": true, + }, + "value": 2932672, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Toy Chest Mimic", + "sh": true, + }, + "value": 96026617, + }, + { + "category": "Pet", + "configData": { + "id": "Exquisite Cat", + "pt": 1, + }, + "value": 28812848, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Treasure Golem", + "sh": true, + }, + "value": 549378595, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Zebra", + "pt": 2, + "sh": true, + }, + "value": 1930939086, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shattered Heart Agony", + "pt": 1, + }, + "value": 69263642, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Dino Cat", + }, + "value": 13972570924, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiedye Bunny", + "sh": true, + }, + "value": 584376616, + }, + { + "category": "Booth", + "configData": { + "id": "Fishing", + }, + "value": 444154, + }, + { + "category": "Pet", + "configData": { + "id": "Balloon Corgi", + "sh": true, + }, + "value": 18358886, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Scary Cat", + "pt": 1, + }, + "value": 115370354, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Diamond Dog", + "pt": 1, + }, + "value": 626204825, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kangaroo", + "sh": true, + }, + "value": 100291731, + }, + { + "category": "Pet", + "configData": { + "id": "Graffiti Raccoon", + "pt": 2, + "sh": true, + }, + "value": 850, + }, + { + "category": "Card", + "configData": { + "id": "Empyrean Lion Card", + "pt": 2, + }, + "value": 5166, + }, + { + "category": "Card", + "configData": { + "id": "Immortuus Card", + "pt": 1, + "sh": true, + }, + "value": 17668, + }, + { + "category": "Pet", + "configData": { + "id": "Yin-Yang Griffin", + "sh": true, + }, + "value": 27573065, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Grim Reaper", + }, + "value": 175245683537, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Blue Balloon Cat", + }, + "value": 30829187160, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Throne", + "sh": true, + }, + "value": 5756768213, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Exquisite Parrot", + "pt": 1, + }, + "value": 89501590, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leprechaun Cat", + "sh": true, + }, + "value": 297031577, + }, + { + "category": "Card", + "configData": { + "id": "Anime Tanuki Card", + "pt": 2, + "sh": true, + }, + "value": 149357437, + }, + { + "category": "Pet", + "configData": { + "id": "Cloud Penguin", + "pt": 2, + }, + "value": 750, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shadow Griffin", + }, + "value": 435965225, + }, + { + "category": "Pet", + "configData": { + "id": "Sock Cat", + }, + "value": 171484530, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Devil Dominus", + "pt": 2, + }, + "value": 319895985, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pastel Sock Bunny", + "sh": true, + }, + "value": 342814357, + }, + { + "category": "Lootbox", + "configData": { + "id": "Jolly Gift", + }, + "value": 471553, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Autumn Red Panda", + "pt": 2, + }, + "value": 200754713, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Floatie Penguin", + "pt": 1, + }, + "value": 322659942, + }, + { + "category": "Pet", + "configData": { + "id": "Capybara", + "pt": 2, + }, + "value": 131546792, + }, + { + "category": "Pet", + "configData": { + "id": "Super Capybara", + "pt": 2, + }, + "value": 64509458, + }, + { + "category": "Pet", + "configData": { + "cv": 3, + "id": "Huge Chroma Tiger", + }, + "value": 99867206, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Griffin", + "sh": true, + }, + "value": 54846903, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Dog", + "sh": true, + }, + "value": 17048642, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Lion", + }, + "value": 46002, + }, + { + "category": "Pet", + "configData": { + "id": "Old Wizard Owl", + "sh": true, + }, + "value": 584948397, + }, + { + "category": "Pet", + "configData": { + "id": "Mr. Love Cat", + "pt": 2, + "sh": true, + }, + "value": 354, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Peacock", + }, + "value": 153746094, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sea Dragon", + "sh": true, + }, + "value": 523512430, + }, + { + "category": "Pet", + "configData": { + "id": "Rainbow Swirl", + }, + "value": 14686872990, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snowflake Dominus", + "pt": 2, + }, + "value": 209789282, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mermaid Cat", + "sh": true, + }, + "value": 91764763, + }, + { + "category": "Pet", + "configData": { + "id": "Emerald Monkey", + "pt": 2, + }, + "value": 33047265, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Unicorn", + }, + "value": 23, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luau Cat", + "pt": 1, + }, + "value": 311005276, + }, + { + "category": "Pet", + "configData": { + "id": "Dot Matrix Cat", + "pt": 2, + "sh": true, + }, + "value": 555197287, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Sloth", + "pt": 2, + }, + "value": 305493429, + }, + { + "category": "Booth", + "configData": { + "id": "Bee", + }, + "value": 166411556, + }, + { + "category": "Pet", + "configData": { + "id": "Sentry Drake", + "pt": 2, + }, + "value": 580, + }, + { + "category": "Pet", + "configData": { + "id": "Emoji Cat", + "sh": true, + }, + "value": 27019732, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Dominus", + "sh": true, + }, + "value": 21715091, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Tiger", + "pt": 1, + }, + "value": 40091650, + }, + { + "category": "Pet", + "configData": { + "cv": 1, + "id": "Huge Chroma Unicorn", + }, + "value": 157042070, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Slasher Sloth", + "sh": true, + }, + "value": 776676666, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hacked Reaper", + "sh": true, + }, + "value": 928854823, + }, + { + "category": "Pet", + "configData": { + "id": "Lilypad Cat", + "pt": 1, + }, + "value": 846, + }, + { + "category": "Pet", + "configData": { + "id": "Spotted Elephant", + "pt": 1, + }, + "value": 3182, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Snail", + }, + "value": 23, + }, + { + "category": "Pet", + "configData": { + "id": "Player Fox", + "pt": 2, + "sh": true, + }, + "value": 73, + }, + { + "category": "Pet", + "configData": { + "id": "Nurse Shark", + }, + "value": 158, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Shadow Griffin", + "sh": true, + }, + "value": 970247473007, + }, + { + "category": "Pet", + "configData": { + "id": "Willow Wisp", + }, + "value": 963773, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Moray Eel", + "pt": 1, + }, + "value": 85591468, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Amethyst Dragon", + "sh": true, + }, + "value": 1535573332, + }, + { + "category": "Pet", + "configData": { + "id": "Research Cat", + "pt": 1, + }, + "value": 492, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lunar Moth", + }, + "value": 26671814, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Krampus", + "pt": 2, + "sh": true, + }, + "value": 27235200000, + }, + { + "category": "Booth", + "configData": { + "id": "Reversed", + }, + "value": 817250847, + }, + { + "category": "Pet", + "configData": { + "cv": 2, + "id": "Huge Chroma Ink Blob", + "pt": 2, + }, + "value": 1156630277, + }, + { + "category": "Pet", + "configData": { + "cv": 1, + "id": "Huge Chroma Ink Blob", + "pt": 2, + }, + "value": 1582039984, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Atomic Monkey Ball", + "sh": true, + }, + "value": 95288158, + }, + { + "category": "Card", + "configData": { + "id": "Phantom Wolf Card", + "sh": true, + }, + "value": 691735, + }, + { + "category": "Pet", + "configData": { + "id": "Nightfall Pegasus", + }, + "value": 43479437, + }, + { + "category": "Pet", + "configData": { + "id": "Flamingo Hippo", + "pt": 2, + }, + "value": 264, + }, + { + "category": "Pet", + "configData": { + "id": "Athena Owl", + }, + "value": 15, + }, + { + "category": "Pet", + "configData": { + "id": "Boxing Elephant", + }, + "value": 57, + }, + { + "category": "Pet", + "configData": { + "id": "Inferno Stealth Bobcat", + "pt": 1, + }, + "value": 414760671, + }, + { + "category": "Booth", + "configData": { + "id": "Crayon", + }, + "value": 3315815, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mosaic Griffin", + "pt": 2, + }, + "value": 502024959, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Cat", + "pt": 1, + }, + "value": 682, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Night Terror Cat", + "pt": 2, + }, + "value": 482886698, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Monkey", + }, + "value": 11551740411, + }, + { + "category": "Pet", + "configData": { + "id": "Aura Bull", + "sh": true, + }, + "value": 16381346, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Slime", + "pt": 1, + }, + "value": 91505773, + }, + { + "category": "Pet", + "configData": { + "id": "Sandcastle Dog", + }, + "value": 16, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Emoji Cat", + "pt": 2, + }, + "value": 1193585727, + }, + { + "category": "Pet", + "configData": { + "id": "Graffiti Raccoon", + "pt": 1, + }, + "value": 24, + }, + { + "category": "Pet", + "configData": { + "id": "Cartoon Corgi", + }, + "value": 14287340, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gorilla", + "pt": 2, + }, + "value": 192768299, + }, + { + "category": "Pet", + "configData": { + "id": "Firefly", + "pt": 1, + }, + "value": 2638, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Diamond Bunny", + "pt": 1, + "sh": true, + }, + "value": 1180957662, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Devil Dominus", + "pt": 1, + }, + "value": 71908354, + }, + { + "category": "Card", + "configData": { + "id": "Ninja Otter Card", + "pt": 1, + "sh": true, + }, + "value": 3273262, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Exquisite Cat", + "pt": 1, + }, + "value": 154670860, + }, + { + "category": "Pet", + "configData": { + "id": "Grinch Cat", + "pt": 2, + }, + "value": 100275575, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Red Wolf", + "sh": true, + }, + "value": 171688480, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Love Lamb", + "pt": 2, + }, + "value": 88723202210, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Elephant", + "pt": 2, + "sh": true, + }, + "value": 918774177, + }, + { + "category": "Pet", + "configData": { + "id": "Blue Fluffy", + }, + "value": 4, + }, + { + "category": "Pet", + "configData": { + "id": "Cold Firefly", + }, + "value": 18, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chest Mimic", + "sh": true, + }, + "value": 7699621806, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Butterfly", + }, + "value": 17679837897, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Dragon", + "pt": 2, + "sh": true, + }, + "value": 3091904556, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Scorpion", + "pt": 2, + }, + "value": 52, + }, + { + "category": "Pet", + "configData": { + "id": "Stargazing Bear", + }, + "value": 9088368, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Black Hole Axolotl", + "sh": true, + }, + "value": 494365592, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Blazing Dragon", + }, + "value": 29520221592, + }, + { + "category": "Pet", + "configData": { + "id": "Ronin Panda", + }, + "value": 161, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stargazing Wolf", + "sh": true, + }, + "value": 765945529, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Silver Stag", + "pt": 1, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Frontman Jellyfish", + "pt": 1, + }, + "value": 8888854082, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Tiedye Cat", + }, + "value": 19219439479, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gleebo The Alien", + "pt": 2, + }, + "value": 5844674360, + }, + { + "category": "Pet", + "configData": { + "id": "Dot Matrix Axolotl", + }, + "value": 11777493, + }, + { + "category": "Pet", + "configData": { + "cv": 3, + "id": "Huge Chroma Swan", + "pt": 2, + }, + "value": 922380353, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Claw Beast", + }, + "value": 422372246, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Student Corgi", + "pt": 1, + }, + "value": 81247312, + }, + { + "category": "Pet", + "configData": { + "id": "Orange Axolotl", + "sh": true, + }, + "value": 21283998, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cupid Corgi", + "pt": 2, + }, + "value": 406899215, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rich Corgi", + "pt": 1, + }, + "value": 814307232, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Icy Phoenix", + "pt": 1, + "sh": true, + }, + "value": 333609604, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stealth Bobcat", + "pt": 1, + }, + "value": 100532794, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pineapple Cat", + "pt": 2, + }, + "value": 410616241, + }, + { + "category": "Pet", + "configData": { + "id": "Luchador Axolotl", + "sh": true, + }, + "value": 7568749, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Candycane Kitsune", + "pt": 1, + "sh": true, + }, + "value": 1521207158, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Toy Chest Mimic", + "pt": 1, + }, + "value": 36620126, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghoul Horse", + "pt": 1, + }, + "value": 183767078, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Bunny", + "pt": 1, + "sh": true, + }, + "value": 486538608, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Yeti", + "pt": 2, + }, + "value": 626800172, + }, + { + "category": "Pet", + "configData": { + "id": "Clout Cat", + "pt": 2, + }, + "value": 22996408, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved King Cobra", + }, + "value": 166364351, + }, + { + "category": "Pet", + "configData": { + "id": "Flex Bear", + "pt": 2, + }, + "value": 27924983, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Sandcastle Kraken", + "pt": 1, + }, + "value": 6097990292, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Hubert", + }, + "value": 37875743137, + }, + { + "category": "Pet", + "configData": { + "id": "Princess Dragon", + "pt": 2, + }, + "value": 3252, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Bear", + "pt": 2, + }, + "value": 8, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Yeti", + }, + "value": 230235871, + }, + { + "category": "Pet", + "configData": { + "id": "Cartoon Demon", + "pt": 2, + }, + "value": 30670279, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Minecart Piggy", + "pt": 2, + }, + "value": 336347553, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Poison Turtle", + }, + "value": 322348285, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Squirrel", + }, + "value": 13, + }, + { + "category": "Pet", + "configData": { + "id": "Hi-Tech Elephant", + }, + "value": 42, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Panda", + "pt": 1, + "sh": true, + }, + "value": 906096031, + }, + { + "category": "Pet", + "configData": { + "id": "Robber Goblin", + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Diamond Bunny", + "sh": true, + }, + "value": 126355961, + }, + { + "category": "Pet", + "configData": { + "id": "Merry Manatee", + }, + "value": 35, + }, + { + "category": "Consumable", + "configData": { + "id": "Easter Chest Points Booster", + "tn": 2, + }, + "value": 91640, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Matrix Monkey", + }, + "value": 323767108, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shattered Heart Agony", + "sh": true, + }, + "value": 536520394, + }, + { + "category": "Egg", + "configData": { + "id": "Series 1 Mythical Gift", + }, + "value": 1022183756, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gorilla", + "sh": true, + }, + "value": 373654896, + }, + { + "category": "Pet", + "configData": { + "id": "Queen Piggy", + }, + "value": 13, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hot Cocoa Bear", + "pt": 2, + "sh": true, + }, + "value": 3614164942, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Bunny", + "pt": 2, + }, + "value": 85, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Pixel Cat", + "sh": true, + }, + "value": 3035271737, + }, + { + "category": "Card", + "configData": { + "id": "Pog Dragon Card", + "pt": 1, + }, + "value": 861, + }, + { + "category": "Lootbox", + "configData": { + "id": "Tower Defense Gift 3", + }, + "value": 430227, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Fox", + }, + "value": 1088, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Basketball Retriever", + }, + "value": 2390827441, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Golem", + "pt": 1, + }, + "value": 95694344, + }, + { + "category": "Booth", + "configData": { + "id": "Sun Angelus", + }, + "value": 51300561, + }, + { + "category": "Pet", + "configData": { + "id": "Light Spirit", + "sh": true, + }, + "value": 31848639, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Old Wizard Cat", + "pt": 1, + }, + "value": 6943893045, + }, + { + "category": "Pet", + "configData": { + "id": "Pirate Cat", + }, + "value": 8, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Panda", + "pt": 2, + }, + "value": 172183053, + }, + { + "category": "Enchant", + "configData": { + "id": "Starfall", + "tn": 1, + }, + "value": 8786982, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Sock Corgi", + }, + "value": 485640, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Crown Corgi", + "pt": 1, + "sh": true, + }, + "value": 1104326641, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Axolotl", + "pt": 2, + }, + "value": 42, + }, + { + "category": "Pet", + "configData": { + "id": "Hippomint", + "sh": true, + }, + "value": 15278929, + }, + { + "category": "Pet", + "configData": { + "id": "Balloon Dragon", + "pt": 2, + }, + "value": 17572086, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Dragon", + "pt": 1, + }, + "value": 6050, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Patchwork Capybara", + "pt": 2, + }, + "value": 65141540733, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pink Marshmallow Chick", + "pt": 1, + }, + "value": 533427140, + }, + { + "category": "Booth", + "configData": { + "id": "Present", + }, + "value": 1700855419, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Red Fluffy", + "pt": 1, + }, + "value": 348916525, + }, + { + "category": "Pet", + "configData": { + "id": "Candycane Kitsune", + "sh": true, + }, + "value": 4705050, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 32", + }, + "value": 228693387, + }, + { + "category": "Pet", + "configData": { + "id": "Carnival Elephant", + }, + "value": 258, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Reindeer Agony", + "pt": 2, + }, + "value": 432124421, + }, + { + "category": "Pet", + "configData": { + "id": "Storm Axolotl Ball", + "pt": 2, + }, + "value": 140, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Slime", + }, + "value": 58, + }, + { + "category": "Pet", + "configData": { + "id": "Huge White Balloon Cat", + }, + "value": 3157051461, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Monkey", + "pt": 1, + }, + "value": 67901726, + }, + { + "category": "Pet", + "configData": { + "id": "Nutcracker Bunny", + "pt": 2, + }, + "value": 39, + }, + { + "category": "Booth", + "configData": { + "id": "Jelly", + }, + "value": 3990082, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Love Lamb", + "sh": true, + }, + "value": 3652675026, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Treasure Golem", + "pt": 2, + }, + "value": 656980177, + }, + { + "category": "Pet", + "configData": { + "id": "Neon Griffin", + "pt": 2, + }, + "value": 53081275, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Jaguar", + "pt": 2, + }, + "value": 161916823, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cat", + "pt": 2, + }, + "value": 33199389907, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Merry Manatee", + }, + "value": 49870104, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightfall Wolf", + "sh": true, + }, + "value": 2048636934, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valentines Angelus", + "sh": true, + }, + "value": 4461782528, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 30", + }, + "value": 273475408, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Rabbit", + }, + "value": 44, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Dragon", + "pt": 1, + }, + "value": 292087200, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mantis Shrimp", + "pt": 1, + }, + "value": 64399049, + }, + { + "category": "Pet", + "configData": { + "id": "Sandcastle Kraken", + "pt": 1, + }, + "value": 67, + }, + { + "category": "Pet", + "configData": { + "id": "Nutcracker Squirrel", + "pt": 2, + }, + "value": 26, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ice Snake", + "sh": true, + }, + "value": 177516071, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stacked Dominus", + "pt": 2, + }, + "value": 2836611641, + }, + { + "category": "Pet", + "configData": { + "id": "Lunar Moth", + }, + "value": 2350, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Fox", + }, + "value": 1615, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anime Agony", + }, + "value": 3976608916, + }, + { + "category": "Pet", + "configData": { + "id": "Hydra Dino", + }, + "value": 8505, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blazing Bat", + "pt": 2, + }, + "value": 1134210515, + }, + { + "category": "Pet", + "configData": { + "id": "Orange Parrot", + }, + "value": 61, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Safari Cat", + "pt": 1, + }, + "value": 598349438, + }, + { + "category": "Pet", + "configData": { + "id": "Coconut Corgi", + "pt": 1, + }, + "value": 890, + }, + { + "category": "Pet", + "configData": { + "id": "Tennis Squirrel", + "pt": 1, + }, + "value": 1827, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Phantom Wolf", + "pt": 1, + }, + "value": 94160471, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gecko", + "pt": 1, + }, + "value": 132065313, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Umbrella Cat", + "pt": 1, + }, + "value": 700754115, + }, + { + "category": "Pet", + "configData": { + "id": "Candycane Kitsune", + "pt": 1, + "sh": true, + }, + "value": 20000000, + }, + { + "category": "Pet", + "configData": { + "id": "Robot Ball", + }, + "value": 59, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghost", + "pt": 1, + }, + "value": 70131676, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Nutcracker Cat", + "pt": 1, + }, + "value": 6456207860, + }, + { + "category": "Pet", + "configData": { + "id": "Lovemelon", + "pt": 2, + }, + "value": 63245612, + }, + { + "category": "Pet", + "configData": { + "id": "Kawaii Dragon", + "pt": 2, + }, + "value": 8695, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Balloon Axolotl", + "pt": 2, + }, + "value": 3567122254, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Guard Dominus", + }, + "value": 10721277940, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Strawhat Tanuki", + "pt": 1, + }, + "value": 220210719, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spitting Dino", + "sh": true, + }, + "value": 431136044, + }, + { + "category": "Pet", + "configData": { + "id": "Jetpack Tiger", + "pt": 1, + }, + "value": 22, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Scribe Squirrel", + "pt": 2, + }, + "value": 296778523, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mosaic Corgi", + "pt": 1, + "sh": true, + }, + "value": 830124466, + }, + { + "category": "Card", + "configData": { + "id": "Kung Fu Monkey Card", + }, + "value": 2306, + }, + { + "category": "Pet", + "configData": { + "id": "Chesnut Chipmunk", + "pt": 2, + }, + "value": 39, + }, + { + "category": "Pet", + "configData": { + "id": "Alien Axolotl", + "pt": 1, + }, + "value": 39, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Jaguar", + "pt": 2, + }, + "value": 22, + }, + { + "category": "Pet", + "configData": { + "id": "Heart Balloon Cat", + "pt": 2, + }, + "value": 127102142, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Bear", + "pt": 2, + }, + "value": 75853192, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Raccoon", + }, + "value": 42, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Polar Bear", + "pt": 1, + "sh": true, + }, + "value": 383934328, + }, + { + "category": "Pet", + "configData": { + "id": "Love Cow", + }, + "value": 24, + }, + { + "category": "Misc", + "configData": { + "id": "Adoption Token Boost", + }, + "value": 9386, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Piggy", + }, + "value": 15, + }, + { + "category": "Pet", + "configData": { + "id": "Cartoon Demon", + }, + "value": 24327786, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Leafy Seahorse", + "pt": 1, + }, + "value": 9389906498, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Llama", + "sh": true, + }, + "value": 91277250, + }, + { + "category": "Pet", + "configData": { + "id": "Reindeer Cat", + }, + "value": 2026805, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Dominus", + }, + "value": 62, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Chest Mimic", + "pt": 1, + }, + "value": 7555608307, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Cat", + "sh": true, + }, + "value": 123756652, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic SpongeBob SquarePants", + }, + "value": 66213951639, + }, + { + "category": "Pet", + "configData": { + "id": "Grumpy Cat", + }, + "value": 274958135, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Monkey", + "sh": true, + }, + "value": 471920652698, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Krampus", + "pt": 1, + "sh": true, + }, + "value": 3221441949, + }, + { + "category": "Card", + "configData": { + "id": "Immortuus Card", + "sh": true, + }, + "value": 4980, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucky Cat", + "pt": 1, + }, + "value": 2562244184, + }, + { + "category": "Pet", + "configData": { + "id": "Irish Corgi", + "pt": 2, + }, + "value": 3009, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Matryoshka Cat", + }, + "value": 12256704980, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Egg Chick", + "pt": 2, + }, + "value": 275992605, + }, + { + "category": "Pet", + "configData": { + "id": "Plane Dragon", + "sh": true, + }, + "value": 69527, + }, + { + "category": "Pet", + "configData": { + "id": "Rock Dog", + }, + "value": 24, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Peacock", + "sh": true, + }, + "value": 270126750, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Deer", + }, + "value": 85, + }, + { + "category": "Pet", + "configData": { + "id": "Chimera", + }, + "value": 124, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Butterfly", + }, + "value": 53689040, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Fox", + }, + "value": 265, + }, + { + "category": "Consumable", + "configData": { + "id": "Springy Shoes", + "tn": 1, + }, + "value": 181, + }, + { + "category": "Pet", + "configData": { + "cv": 2, + "id": "Huge Chroma Butterfly", + }, + "value": 95331883, + }, + { + "category": "Pet", + "configData": { + "id": "Ghost Cat", + }, + "value": 186, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pineapple Cat", + "pt": 1, + "sh": true, + }, + "value": 910098131, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Meebo in a Spaceship", + "pt": 1, + }, + "value": 101798507, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Mystic Corgi", + }, + "value": 28661574708, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Marshmallow Agony", + "pt": 1, + "sh": true, + }, + "value": 1154820787, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pajamas Shark", + "pt": 1, + "sh": true, + }, + "value": 1302052060, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Chest Mimic", + "pt": 2, + }, + "value": 143984, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ooze Cat", + "sh": true, + }, + "value": 108498477, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crystal Bat", + }, + "value": 51225649, + }, + { + "category": "Pet", + "configData": { + "id": "Dark Lord", + "pt": 2, + }, + "value": 7755, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Vampire Agony", + }, + "value": 19782645643, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Dominus", + "pt": 2, + }, + "value": 98, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Beaver", + "pt": 1, + }, + "value": 23502362, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Bunny", + }, + "value": 77, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Agony", + "pt": 1, + }, + "value": 70566014, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spitting Dino", + "pt": 2, + }, + "value": 442503730, + }, + { + "category": "Pet", + "configData": { + "id": "Cat", + "pt": 2, + "sh": true, + }, + "value": 962391, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hell Spider", + "pt": 1, + "sh": true, + }, + "value": 9184857600, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dino Dog", + "pt": 1, + }, + "value": 55257487, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Axolotl", + }, + "value": 1826330577, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Valentines Axolotl", + }, + "value": 9253909235, + }, + { + "category": "Pet", + "configData": { + "id": "Luchador Coyote", + "sh": true, + }, + "value": 19801302, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Capybara", + "pt": 2, + }, + "value": 5897477095, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Punksky", + "pt": 2, + "sh": true, + }, + "value": 1608698410, + }, + { + "category": "Pet", + "configData": { + "id": "Boxing Elephant", + "pt": 2, + }, + "value": 29332, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Holographic Axolotl Ball", + }, + "value": 7358528656, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doll Cat", + "pt": 1, + "sh": true, + }, + "value": 280240376, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Rave Crab", + }, + "value": 602230445, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mystical Fox", + }, + "value": 6334473235, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Cat", + "pt": 2, + }, + "value": 2674466256, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Cow", + "pt": 2, + }, + "value": 448205550, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anglerfish", + "pt": 1, + "sh": true, + }, + "value": 893991467, + }, + { + "category": "Pet", + "configData": { + "id": "Pajamas Shark", + "pt": 1, + "sh": true, + }, + "value": 10649, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Lion", + "pt": 1, + }, + "value": 79260536, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stacked Dominus", + "sh": true, + }, + "value": 1928706149, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Agony", + "pt": 2, + }, + "value": 2188, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiedye Cat", + "pt": 1, + }, + "value": 318062195, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightmare Dog", + "pt": 1, + }, + "value": 87771418, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Fox", + }, + "value": 76, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Axolotl", + "pt": 2, + }, + "value": 5090, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sandcastle Cat", + }, + "value": 683220005, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sleigh Axolotl", + "pt": 2, + "sh": true, + }, + "value": 3407887584, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Googly Shark", + "sh": true, + }, + "value": 5897711159, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fairy", + "sh": true, + }, + "value": 922026271, + }, + { + "category": "Pet", + "configData": { + "id": "Hydra Cat", + }, + "value": 100128, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Lamb", + "pt": 2, + }, + "value": 251, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Chest Mimic", + "pt": 1, + }, + "value": 23436, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Dominus", + "pt": 2, + }, + "value": 17204906, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Axolotl", + "pt": 2, + }, + "value": 351, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wild Corrupt Agony", + "pt": 2, + }, + "value": 1079790323, + }, + { + "category": "Consumable", + "configData": { + "id": "Super Basketball Hoop", + "tn": 1, + }, + "value": 294365, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Treasure Golem", + "pt": 2, + "sh": true, + }, + "value": 3647727894, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Quokka", + "sh": true, + }, + "value": 14638754594, + }, + { + "category": "Card", + "configData": { + "id": "Sensei Penguin Card", + }, + "value": 856383, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hoverboard Cat", + "pt": 2, + }, + "value": 5324156043, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Coach Tiger", + "sh": true, + }, + "value": 2197933017, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Angelus", + "pt": 1, + }, + "value": 54731206, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Phoenix", + }, + "value": 13869, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Piggy", + "pt": 2, + }, + "value": 99928311, + }, + { + "category": "Misc", + "configData": { + "id": "Pixel Rainbow Gem", + }, + "value": 8913, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 13", + }, + "value": 781169528, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Naughty Dominus", + "pt": 2, + }, + "value": 1264171067, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Naughty Cat", + "pt": 2, + }, + "value": 2875627483, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Meebo The Alien Ball", + "sh": true, + }, + "value": 3219546894, + }, + { + "category": "Pet", + "configData": { + "id": "Reaper Cat", + "pt": 2, + "sh": true, + }, + "value": 787, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blurred Axolotl", + "pt": 1, + }, + "value": 59060744, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Polar Bear", + "sh": true, + }, + "value": 114185592, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hot Cocoa Bear", + "pt": 1, + "sh": true, + }, + "value": 377466806, + }, + { + "category": "Pet", + "configData": { + "id": "Totem Bear", + "pt": 2, + }, + "value": 34843210, + }, + { + "category": "Pet", + "configData": { + "id": "Patrick Star", + "pt": 2, + }, + "value": 172447557, + }, + { + "category": "Pet", + "configData": { + "id": "Jurassic Crocodile", + "pt": 2, + "sh": true, + }, + "value": 463973436, + }, + { + "category": "Pet", + "configData": { + "id": "UV Kitsune", + }, + "value": 29, + }, + { + "category": "Pet", + "configData": { + "id": "Googly Corgi", + "pt": 2, + "sh": true, + }, + "value": 374670506, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Arcade Meebo in a Spaceship", + "sh": true, + }, + "value": 516881914, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Techno Cat", + "pt": 1, + "sh": true, + }, + "value": 8061917967, + }, + { + "category": "Pet", + "configData": { + "id": "Inkwell Wisp", + "pt": 2, + "sh": true, + }, + "value": 741, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Red Fluffy", + }, + "value": 175562658, + }, + { + "category": "Pet", + "configData": { + "id": "Little Melty", + "pt": 2, + }, + "value": 539, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mr Krabs", + "pt": 2, + }, + "value": 2846547829, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bread Shiba", + }, + "value": 10020774549, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Golem", + "pt": 2, + }, + "value": 518423008, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Basketball", + }, + "value": 9615454, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chef Monkey", + "pt": 1, + }, + "value": 279031020, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jetpack Cat", + "pt": 2, + }, + "value": 444848599, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Baby Piglet", + }, + "value": 343220381, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Bat", + "pt": 2, + "sh": true, + }, + "value": 337, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Relic Deer", + }, + "value": 33099592, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Old Wizard Corgi", + "sh": true, + }, + "value": 212628305, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Kraken", + }, + "value": 94, + }, + { + "category": "Pet", + "configData": { + "id": "Player Penguin", + "pt": 1, + }, + "value": 6109, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Cowboy Cat", + }, + "value": 23, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vampire Dragon", + }, + "value": 369375744, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stealth Bobcat", + }, + "value": 59246523, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lifeguard Shark", + "pt": 2, + }, + "value": 154667296, + }, + { + "category": "Pet", + "configData": { + "id": "Cannibal Meerkat", + }, + "value": 5701244, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Angel Dragon", + "pt": 1, + "sh": true, + }, + "value": 1483768739, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Fox", + "pt": 2, + "sh": true, + }, + "value": 4483620577, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Bull", + }, + "value": 547, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blurred Agony", + }, + "value": 1291617919, + }, + { + "category": "Pet", + "configData": { + "id": "Super Bat", + "pt": 2, + "sh": true, + }, + "value": 870169344, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Axolotl", + }, + "value": 48, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccer Terrier", + }, + "value": 97464353, + }, + { + "category": "Pet", + "configData": { + "id": "Leafy Deer", + "pt": 1, + "sh": true, + }, + "value": 140302789, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sketch Dragon", + "sh": true, + }, + "value": 1233385555, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sphinx", + }, + "value": 888131318, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Bee", + "sh": true, + }, + "value": 5673, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Sandcastle Kraken", + "pt": 2, + }, + "value": 17745044829, + }, + { + "category": "Fruit", + "configData": { + "id": "Watermelon", + "sh": true, + }, + "value": 697, + }, + { + "category": "Pet", + "configData": { + "id": "Dot Matrix Snail", + "sh": true, + }, + "value": 43372394, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Evil Scarecrow Pumpkin", + }, + "value": 130132827375, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Panda", + "sh": true, + }, + "value": 222137086, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Nightfall Wolf", + }, + "value": 18797873410, + }, + { + "category": "Pet", + "configData": { + "id": "Neon Twilight Tiger", + "pt": 2, + }, + "value": 267810455, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Bear", + "sh": true, + }, + "value": 24387730, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leprechaun Dog", + "pt": 2, + }, + "value": 3630241258, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Jaguar", + "pt": 1, + }, + "value": 31138694, + }, + { + "category": "Pet", + "configData": { + "id": "Poofy Pixie", + }, + "value": 16, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Turtle", + "sh": true, + }, + "value": 776965029, + }, + { + "category": "Pet", + "configData": { + "id": "Stegosaurus", + "pt": 2, + }, + "value": 53, + }, + { + "category": "Card", + "configData": { + "id": "Empyrean Lion Card", + "pt": 2, + "sh": true, + }, + "value": 494837, + }, + { + "category": "Pet", + "configData": { + "id": "Snowflake Dragon", + "pt": 2, + "sh": true, + }, + "value": 1773760, + }, + { + "category": "Pet", + "configData": { + "id": "Shattered Heart Agony", + }, + "value": 2663, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Scuba Dog", + }, + "value": 599376188, + }, + { + "category": "Misc", + "configData": { + "id": "Pixel Sprout", + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Marshmallow Kitsune", + "pt": 1, + "sh": true, + }, + "value": 808656729, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Aura Fox", + "pt": 2, + }, + "value": 330243095, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Dominus", + }, + "value": 2606, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Chest Mimic", + }, + "value": 27847, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Chick", + "pt": 1, + }, + "value": 331665192, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Dragon", + }, + "value": 736, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Sloth", + "pt": 1, + }, + "value": 79253832, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Merry Manatee", + "pt": 2, + }, + "value": 298006433, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doodle Agony", + "pt": 2, + }, + "value": 3867024493, + }, + { + "category": "Pet", + "configData": { + "id": "Midnight Deer", + "pt": 2, + "sh": true, + }, + "value": 197289441, + }, + { + "category": "Pet", + "configData": { + "id": "Kaiju Hydra", + "pt": 2, + }, + "value": 54385804, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Corgi", + "sh": true, + }, + "value": 713297758, + }, + { + "category": "Pet", + "configData": { + "id": "Ember Vulture", + "pt": 2, + }, + "value": 78, + }, + { + "category": "Pet", + "configData": { + "id": "Chesnut Chipmunk", + "sh": true, + }, + "value": 1847, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Autumn Retriever", + "pt": 1, + }, + "value": 58075866, + }, + { + "category": "Pet", + "configData": { + "id": "Inferno Cat", + }, + "value": 156767359, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Corn Cat", + }, + "value": 351097274, + }, + { + "category": "Pet", + "configData": { + "id": "Ender Bunny", + "pt": 2, + }, + "value": 1395, + }, + { + "category": "Booth", + "configData": { + "id": "Booster", + }, + "value": 1378992, + }, + { + "category": "Pet", + "configData": { + "id": "Nine Eyed Lion", + "pt": 1, + }, + "value": 695, + }, + { + "category": "Pet", + "configData": { + "cv": 5, + "id": "Huge Chroma Unicorn", + "pt": 2, + }, + "value": 275491184, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pot of Gold Cat", + }, + "value": 130050302, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Safari Monkey", + "pt": 1, + }, + "value": 25585157, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Bear", + "pt": 2, + }, + "value": 34, + }, + { + "category": "Pet", + "configData": { + "id": "Circuit Griffin", + }, + "value": 239, + }, + { + "category": "Pet", + "configData": { + "id": "Classic Bunny", + "pt": 2, + }, + "value": 14218779, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Reaper Cat", + }, + "value": 723835405, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Abyssal Axolotl", + "pt": 2, + }, + "value": 656135643, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pineapple Dog", + "pt": 1, + }, + "value": 5844031188, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Frostbyte Griffin", + "sh": true, + }, + "value": 291235192, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Pegasus", + "sh": true, + }, + "value": 22093689, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crash Dummy Noob", + "pt": 2, + }, + "value": 765130694, + }, + { + "category": "Pet", + "configData": { + "id": "Anime Monkey", + "pt": 2, + }, + "value": 72361728, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pony", + "pt": 2, + }, + "value": 3158314076, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Puurple Cat", + "pt": 2, + }, + "value": 3927896690, + }, + { + "category": "Pet", + "configData": { + "id": "Cloud Bat", + }, + "value": 59, + }, + { + "category": "Pet", + "configData": { + "id": "Gorilla", + }, + "value": 37, + }, + { + "category": "Pet", + "configData": { + "id": "Frontman Jellyfish", + "sh": true, + }, + "value": 1886, + }, + { + "category": "Pet", + "configData": { + "cv": 2, + "id": "Huge Chroma Butterfly", + "pt": 2, + }, + "value": 1239871318, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chad Elephant", + "pt": 2, + }, + "value": 966263856, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sun Griffin", + "pt": 1, + }, + "value": 813799160, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ooze Cat", + "pt": 1, + }, + "value": 6555605950, + }, + { + "category": "Pet", + "configData": { + "id": "Emerald Owl", + "sh": true, + }, + "value": 49953, + }, + { + "category": "Pet", + "configData": { + "id": "Detective Terrier", + "sh": true, + }, + "value": 5639, + }, + { + "category": "Card", + "configData": { + "id": "Retro Bulldog Card", + "pt": 2, + "sh": true, + }, + "value": 2440817, + }, + { + "category": "Pet", + "configData": { + "id": "Hippokin", + "pt": 2, + }, + "value": 924635, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Golem", + }, + "value": 28360254, + }, + { + "category": "Pet", + "configData": { + "id": "Walrus", + "pt": 1, + }, + "value": 2674, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Super Corgi", + }, + "value": 15489165900, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shadow Griffin", + "pt": 1, + "sh": true, + }, + "value": 1000000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Player Panda", + "pt": 1, + }, + "value": 103786835, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Chick", + "pt": 2, + }, + "value": 1378330484, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Love Lion", + "pt": 1, + }, + "value": 191357229, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Bunny", + "pt": 2, + }, + "value": 14852059, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Loveserker", + "pt": 1, + }, + "value": 7628429251, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Samurai Dragon", + }, + "value": 140, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Snowflake Angelus", + "pt": 2, + }, + "value": 37168729027, + }, + { + "category": "Pet", + "configData": { + "id": "Autumn Red Panda", + "pt": 1, + }, + "value": 80, + }, + { + "category": "Pet", + "configData": { + "id": "Green Cobra", + "sh": true, + }, + "value": 114, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Cat", + "pt": 2, + }, + "value": 2240078819, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Old Wizard Corgi", + "pt": 2, + }, + "value": 219846068, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Witch Wolf", + "pt": 2, + }, + "value": 543101188, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Reversed Cat", + }, + "value": 2268326034, + }, + { + "category": "Pet", + "configData": { + "id": "Grimoire Agony", + "pt": 2, + "sh": true, + }, + "value": 192, + }, + { + "category": "Card", + "configData": { + "id": "Nature Axolotl Card", + "pt": 2, + }, + "value": 67223, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Bunny Ball", + "pt": 2, + }, + "value": 251340444, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Coconut Corgi", + "pt": 2, + }, + "value": 317772881, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Peacock", + "pt": 2, + }, + "value": 143530251, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Angelus", + "pt": 1, + "sh": true, + }, + "value": 1614942732, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pink Marshmallow Chick", + }, + "value": 842495364, + }, + { + "category": "Pet", + "configData": { + "id": "Super Coral Hydra", + "pt": 2, + }, + "value": 72469062, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cheerful Yeti", + "pt": 1, + }, + "value": 176131688, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fireball Cat", + "pt": 1, + }, + "value": 68893226, + }, + { + "category": "Pet", + "configData": { + "id": "Leprechaun Corgi", + }, + "value": 123, + }, + { + "category": "Pet", + "configData": { + "id": "Sailor Dolphin", + }, + "value": 1328, + }, + { + "category": "Pet", + "configData": { + "id": "M-10 PROTOTYPE", + "sh": true, + }, + "value": 169219, + }, + { + "category": "Pet", + "configData": { + "id": "Luau Seal", + }, + "value": 34, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Enchanted Dog", + }, + "value": 74495897, + }, + { + "category": "Pet", + "configData": { + "id": "Kawaii Dragon Ball", + "sh": true, + }, + "value": 24195, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ancient Dragon", + "pt": 1, + }, + "value": 128770293, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Police Cat", + "pt": 1, + }, + "value": 108089283, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Painted Cat", + "pt": 2, + }, + "value": 426248524, + }, + { + "category": "Pet", + "configData": { + "id": "Cinnamon Bunny", + "pt": 2, + }, + "value": 252389, + }, + { + "category": "Pet", + "configData": { + "id": "Super Coral Axolotl", + "sh": true, + }, + "value": 24596426, + }, + { + "category": "Pet", + "configData": { + "id": "Basket Bunny", + "sh": true, + }, + "value": 160188, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elf Dog", + "pt": 1, + }, + "value": 394532510, + }, + { + "category": "Card", + "configData": { + "id": "Error Cat Card", + "pt": 1, + "sh": true, + }, + "value": 2226, + }, + { + "category": "Pet", + "configData": { + "id": "Glow Worm", + }, + "value": 148, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Snake", + }, + "value": 37, + }, + { + "category": "Pet", + "configData": { + "id": "Rift Dragon", + "pt": 2, + }, + "value": 26626264, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Pencil", + "sh": true, + }, + "value": 1611402382, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Inferno Stealth Bobcat", + "pt": 2, + }, + "value": 339584072, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Mining Dog", + }, + "value": 170, + }, + { + "category": "Pet", + "configData": { + "id": "Colorful Firefly", + }, + "value": 273, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chesnut Chipmunk", + "pt": 1, + "sh": true, + }, + "value": 571410165, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Bunny", + }, + "value": 26, + }, + { + "category": "Pet", + "configData": { + "id": "Cupcake", + }, + "value": 335, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Fairy", + }, + "value": 38, + }, + { + "category": "Pet", + "configData": { + "id": "Huge M-10 PROTOTYPE", + "sh": true, + }, + "value": 3336184524, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Party Crown Hippomelon", + "pt": 1, + }, + "value": 14897262505, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nuclear Wild Dog", + "pt": 1, + "sh": true, + }, + "value": 327514902, + }, + { + "category": "Pet", + "configData": { + "id": "Beach Ball Monkey", + "pt": 2, + }, + "value": 666, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 8", + }, + "value": 2321260566, + }, + { + "category": "Pet", + "configData": { + "id": "Inferno Dominus", + "sh": true, + }, + "value": 16375973, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Horse", + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Wizard", + "pt": 2, + }, + "value": 668474356, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Dragon", + "pt": 2, + "sh": true, + }, + "value": 25644, + }, + { + "category": "Pet", + "configData": { + "id": "Strawberry Cow", + }, + "value": 4215, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Floppa", + "pt": 1, + }, + "value": 484309992, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kangaroo", + "pt": 2, + "sh": true, + }, + "value": 2288252154, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Pterodactyl", + "pt": 2, + }, + "value": 700153059, + }, + { + "category": "Card", + "configData": { + "id": "Fancy Axolotl Card", + "pt": 2, + }, + "value": 826891, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Agony", + "pt": 2, + }, + "value": 283, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ice Cream Cone", + "pt": 2, + }, + "value": 4833954837, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Maple Owl", + "pt": 1, + "sh": true, + }, + "value": 404179461, + }, + { + "category": "Pet", + "configData": { + "id": "Pog Dog", + "pt": 2, + "sh": true, + }, + "value": 16359805, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sun Griffin", + }, + "value": 300313240, + }, + { + "category": "Pet", + "configData": { + "id": "Meebo The Alien Ball", + "pt": 2, + }, + "value": 385, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Dog", + "pt": 2, + }, + "value": 5232, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evergreen Unicorn", + "pt": 1, + "sh": true, + }, + "value": 335164038, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Wizard", + "pt": 2, + "sh": true, + }, + "value": 4470372323, + }, + { + "category": "Pet", + "configData": { + "cv": 6, + "id": "Huge Chroma Phoenix", + }, + "value": 94130805, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Balloon Monkey", + }, + "value": 37354938785, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holiday Hedgehog", + "pt": 1, + }, + "value": 50783887, + }, + { + "category": "Card", + "configData": { + "id": "Tech Chest Mimic Card", + "sh": true, + }, + "value": 34989, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wild Frost Agony", + "sh": true, + }, + "value": 208420782, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Arcade Cat", + "sh": true, + }, + "value": 4052061211, + }, + { + "category": "Pet", + "configData": { + "id": "Basketball Monkey", + }, + "value": 180, + }, + { + "category": "Pet", + "configData": { + "id": "Graffiti Dino", + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Peacock", + "pt": 1, + }, + "value": 80453066, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Persimmony Cricket", + "pt": 1, + }, + "value": 7320332178, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kawaii Cat", + "pt": 1, + }, + "value": 1129578623, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Cat", + "pt": 1, + }, + "value": 114639188, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hacked Cat", + "pt": 2, + }, + "value": 1936483019, + }, + { + "category": "Pet", + "configData": { + "id": "Sandcastle Kraken", + "pt": 2, + "sh": true, + }, + "value": 389, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sketch Corgi", + "pt": 2, + }, + "value": 1158114691, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Brain Ball", + "pt": 1, + }, + "value": 7524169149, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hacker Axolotl", + "pt": 2, + }, + "value": 208244828, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Diamond Bunny", + "pt": 1, + }, + "value": 43973340, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Fawn", + "pt": 2, + }, + "value": 6009, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hoverboard Dog", + }, + "value": 5790481711, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sombrero Chihuahua", + "pt": 2, + }, + "value": 10611224986, + }, + { + "category": "Pet", + "configData": { + "id": "Hooded Piggy", + "pt": 1, + }, + "value": 68621, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightmare Sludge", + "pt": 2, + }, + "value": 568686436, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chocolate Bunny", + "sh": true, + }, + "value": 276935597, + }, + { + "category": "Pet", + "configData": { + "id": "Corrupt Octopus", + "pt": 2, + }, + "value": 1904, + }, + { + "category": "Misc", + "configData": { + "id": "Pixel Rainbow Dust", + }, + "value": 4980, + }, + { + "category": "Booth", + "configData": { + "id": "Fragmented", + }, + "value": 161070056, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Troll", + "pt": 1, + }, + "value": 80548234, + }, + { + "category": "Pet", + "configData": { + "id": "Old Wizard Dragon", + "sh": true, + }, + "value": 233612446, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Helicopter Cat", + "pt": 2, + "sh": true, + }, + "value": 2082489787, + }, + { + "category": "Pet", + "configData": { + "id": "Dog", + "pt": 2, + "sh": true, + }, + "value": 1128005, + }, + { + "category": "Pet", + "configData": { + "cv": 3, + "id": "Huge Chroma Butterfly", + }, + "value": 91972872, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Cat", + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Coach Hippo", + "pt": 1, + }, + "value": 54, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Witch Wolf", + }, + "value": 15260295663, + }, + { + "category": "Pet", + "configData": { + "id": "Chocolate Bunny", + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Horse", + "sh": true, + }, + "value": 271113758, + }, + { + "category": "Pet", + "configData": { + "id": "Skeleton", + }, + "value": 110, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crocodile", + "sh": true, + }, + "value": 91333366, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Hydra", + }, + "value": 1757, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Coconut Flamingo", + "pt": 1, + }, + "value": 82287060, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hell Monkey", + "pt": 2, + }, + "value": 595917815, + }, + { + "category": "Pet", + "configData": { + "id": "Strawhat Tanuki", + "pt": 1, + }, + "value": 191, + }, + { + "category": "Pet", + "configData": { + "id": "Ducky", + "pt": 2, + "sh": true, + }, + "value": 29512, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tarantula", + "pt": 2, + }, + "value": 809689884, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiedye Bunny", + "pt": 2, + }, + "value": 782643944, + }, + { + "category": "Pet", + "configData": { + "id": "Fragmented Dominus", + }, + "value": 48, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Principal Anteater", + }, + "value": 2601430886, + }, + { + "category": "Pet", + "configData": { + "id": "Cannibal Meerkat", + "pt": 2, + "sh": true, + }, + "value": 1227689878, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hydra Axolotl", + "pt": 2, + }, + "value": 208488972, + }, + { + "category": "Pet", + "configData": { + "id": "Tiger", + "pt": 2, + "sh": true, + }, + "value": 2788, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ladybug", + "pt": 2, + "sh": true, + }, + "value": 2901063293, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Bear", + }, + "value": 7575446, + }, + { + "category": "Pet", + "configData": { + "id": "Turkey", + "pt": 2, + "sh": true, + }, + "value": 5000, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Shark", + "pt": 2, + }, + "value": 233925, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Baby Kitten", + "pt": 1, + }, + "value": 60511908, + }, + { + "category": "Pet", + "configData": { + "id": "Hi-Tech Ladybug", + }, + "value": 186, + }, + { + "category": "Pet", + "configData": { + "id": "Bubble Hydra", + "pt": 2, + }, + "value": 622, + }, + { + "category": "Pet", + "configData": { + "id": "Agony", + }, + "value": 78, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Cat", + "pt": 1, + }, + "value": 374, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Classic Dragon", + }, + "value": 199522005, + }, + { + "category": "Pet", + "configData": { + "id": "Kaiju Hydra", + }, + "value": 22291995, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Arcade Dragon", + "pt": 2, + }, + "value": 2750461331, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Bear", + "pt": 2, + }, + "value": 20, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pirate Dog", + "pt": 1, + }, + "value": 197897780, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guard Wolf", + }, + "value": 70574273, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Leprechaun Dog", + "pt": 1, + }, + "value": 6387040372, + }, + { + "category": "Booth", + "configData": { + "id": "Rave Crab", + }, + "value": 228399928, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Bunny", + }, + "value": 383, + }, + { + "category": "Pet", + "configData": { + "id": "Lit Cat", + "pt": 1, + "sh": true, + }, + "value": 336842, + }, + { + "category": "Pet", + "configData": { + "id": "Sacred Boar", + "pt": 2, + }, + "value": 30679, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fireball Cat", + "pt": 2, + }, + "value": 400692841, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Bat", + }, + "value": 185, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Helicopter Cat", + "pt": 1, + "sh": true, + }, + "value": 262480411, + }, + { + "category": "Pet", + "configData": { + "id": "Strawberry Cow", + "pt": 2, + }, + "value": 2730, + }, + { + "category": "Pet", + "configData": { + "id": "Lion", + "pt": 1, + }, + "value": 7169, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Corgi", + }, + "value": 506, + }, + { + "category": "Tower", + "configData": { + "id": "TNT Capybara", + }, + "value": 12069836, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Party Crown Hippomelon", + }, + "value": 13531035218, + }, + { + "category": "Card", + "configData": { + "id": "Super Bat Card", + "pt": 2, + "sh": true, + }, + "value": 291983216, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Slimezilla", + "sh": true, + }, + "value": 489358123, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gym Piggy", + "pt": 2, + }, + "value": 34447165027, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Slime", + "sh": true, + }, + "value": 583679606, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ghostface Cat", + }, + "value": 95703910348, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pristine Snake", + }, + "value": 53592706, + }, + { + "category": "Pet", + "configData": { + "id": "Train Conductor Cat", + }, + "value": 45, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Love Corgi", + "pt": 2, + }, + "value": 28094616702, + }, + { + "category": "Pet", + "configData": { + "id": "Atomic Monkey", + "pt": 2, + "sh": true, + }, + "value": 2873032, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Candycane", + "pt": 2, + }, + "value": 343967575, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Bat", + "pt": 1, + }, + "value": 11205, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holly Capybara", + "pt": 2, + "sh": true, + }, + "value": 2964623223, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gamer Shiba", + }, + "value": 13756610250, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pastel Sock Dragon", + "pt": 1, + }, + "value": 464864443, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Player Penguin", + "pt": 2, + }, + "value": 521472521, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ghostly Wolf", + "sh": true, + }, + "value": 14585425928, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Shadow Griffin", + "pt": 1, + }, + "value": 94257775, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dot Matrix Axolotl", + "sh": true, + }, + "value": 4994201303, + }, + { + "category": "Pet", + "configData": { + "id": "Athena Owl", + "pt": 2, + }, + "value": 62, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Meebo The Alien Ball", + "pt": 1, + }, + "value": 115381949, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Doge", + }, + "value": 166523540259, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Firefly", + }, + "value": 547572437, + }, + { + "category": "Pet", + "configData": { + "id": "Grim Reaper", + "pt": 1, + }, + "value": 7738, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Marshmallow Agony", + "pt": 2, + }, + "value": 479480909, + }, + { + "category": "Pet", + "configData": { + "cv": 5, + "id": "Huge Chroma Doodle Axolotl", + "sh": true, + }, + "value": 3090785234, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doll Cat", + "pt": 2, + }, + "value": 297280272, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Kangaroo", + "pt": 2, + }, + "value": 271540497, + }, + { + "category": "Pet", + "configData": { + "cv": 2, + "id": "Huge Chroma Ink Blob", + }, + "value": 139294819, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Axolotl", + "pt": 2, + }, + "value": 41039949, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Chick", + "sh": true, + }, + "value": 887, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Blimp Dragon", + }, + "value": 757869951, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Capybara", + "sh": true, + }, + "value": 16479600000, + }, + { + "category": "Pet", + "configData": { + "id": "Haxolotl", + "pt": 2, + }, + "value": 872, + }, + { + "category": "Card", + "configData": { + "id": "Ninja Snake Card", + "pt": 2, + "sh": true, + }, + "value": 1462125, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rootkin Fox", + "pt": 1, + }, + "value": 143344155, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Robot Ball", + "sh": true, + }, + "value": 206766590, + }, + { + "category": "Pet", + "configData": { + "id": "Cat", + "sh": true, + }, + "value": 881, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kawaii Tiger", + "pt": 1, + }, + "value": 177098721, + }, + { + "category": "Pet", + "configData": { + "id": "Soul Cat", + "pt": 2, + }, + "value": 14144854, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Heartbreak Fairy", + "pt": 1, + "sh": true, + }, + "value": 333332381, + }, + { + "category": "Pet", + "configData": { + "id": "Aura Dominus", + "sh": true, + }, + "value": 36043581, + }, + { + "category": "Pet", + "configData": { + "id": "Kaiju Volcano", + "pt": 2, + }, + "value": 30473688, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sapphire Phoenix", + "sh": true, + }, + "value": 1526648749, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightfall Wolf", + "pt": 2, + }, + "value": 2642833418, + }, + { + "category": "Booth", + "configData": { + "id": "Diamond", + }, + "value": 471760289, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Lamb", + "pt": 2, + }, + "value": 14210253, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Raining Love Dog", + "pt": 2, + }, + "value": 459163334, + }, + { + "category": "Pet", + "configData": { + "id": "Thunder Bear", + "pt": 2, + }, + "value": 10467367, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chroma Phoenix", + }, + "value": 43869425, + }, + { + "category": "Pet", + "configData": { + "id": "Flying Piggy", + }, + "value": 411, + }, + { + "category": "Pet", + "configData": { + "id": "Mummy Bunny", + "sh": true, + }, + "value": 841, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Merry Manatee", + "pt": 1, + }, + "value": 131406481, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holly Corgi", + "sh": true, + }, + "value": 121467874, + }, + { + "category": "Pet", + "configData": { + "id": "Flower Cat", + "pt": 2, + "sh": true, + }, + "value": 6262, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Triceratops", + "pt": 1, + }, + "value": 19578, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Umbrella Cat", + }, + "value": 192573161, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skeleton Snake", + "sh": true, + }, + "value": 3806595354, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Barbell", + }, + "value": 42086796, + }, + { + "category": "Pet", + "configData": { + "id": "Sapphire Carbuncle", + "pt": 2, + "sh": true, + }, + "value": 1, + }, + { + "category": "Booth", + "configData": { + "id": "Alien", + }, + "value": 198661121, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiedye Cat", + }, + "value": 91410662, + }, + { + "category": "Pet", + "configData": { + "id": "Hacked Cat", + "sh": true, + }, + "value": 987, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Popcat", + "sh": true, + }, + "value": 2425584076, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Cosmic", + }, + "value": 12489237283, + }, + { + "category": "Pet", + "configData": { + "id": "Prickly Panda", + "pt": 2, + }, + "value": 1186453065, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blimp Dragon", + }, + "value": 854155529, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Fragmented", + }, + "value": 432186761, + }, + { + "category": "Pet", + "configData": { + "id": "Storm Dragon", + }, + "value": 421987593, + }, + { + "category": "Pet", + "configData": { + "id": "Coin", + }, + "value": 8779277283, + }, + { + "category": "Pet", + "configData": { + "id": "Avenging Griffin", + }, + "value": 54, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Ghost", + }, + "value": 701506552, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Unicorn", + "sh": true, + }, + "value": 3110, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Cow", + "pt": 2, + "sh": true, + }, + "value": 157, + }, + { + "category": "Pet", + "configData": { + "cv": 5, + "id": "Huge Chroma Phoenix", + }, + "value": 53100256, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Dragon", + }, + "value": 47, + }, + { + "category": "Booth", + "configData": { + "id": "Mushroom", + }, + "value": 845221510, + }, + { + "category": "Pet", + "configData": { + "cv": 3, + "id": "Huge Chroma Phoenix", + "pt": 2, + }, + "value": 351383864, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Masked Owl", + "pt": 1, + }, + "value": 173910038, + }, + { + "category": "Pet", + "configData": { + "id": "Super Coral Axolotl", + "pt": 2, + }, + "value": 22159146, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Lion", + }, + "value": 60969455, + }, + { + "category": "Pet", + "configData": { + "id": "Slasher Sloth", + "pt": 2, + }, + "value": 28474922, + }, + { + "category": "Pet", + "configData": { + "id": "Red Fluffy", + }, + "value": 30, + }, + { + "category": "Card", + "configData": { + "id": "Phantom Wolf Card", + "pt": 2, + }, + "value": 80156, + }, + { + "category": "Pet", + "configData": { + "id": "Red Woofy", + }, + "value": 651, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Watermelon Golem", + "sh": true, + }, + "value": 142818974659, + }, + { + "category": "Pet", + "configData": { + "id": "Toy Chest Mimic", + }, + "value": 424, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Cow", + }, + "value": 87, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nice Cat", + }, + "value": 367658799, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hot Dog", + "sh": true, + }, + "value": 2268046166, + }, + { + "category": "Pet", + "configData": { + "id": "King Cow", + }, + "value": 32, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Skelemelon", + }, + "value": 145111449438, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Scorpion", + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Easter Lamb", + "sh": true, + }, + "value": 415585350, + }, + { + "category": "Pet", + "configData": { + "id": "Trojan Horse", + "pt": 1, + }, + "value": 11, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tralala Brainrot", + "sh": true, + }, + "value": 1236126485, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Reindeer Agony", + "pt": 1, + }, + "value": 102472742, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Cow", + "sh": true, + }, + "value": 9637, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Black Hole Angelus", + }, + "value": 61756734183, + }, + { + "category": "Pet", + "configData": { + "id": "Playful Seal", + "sh": true, + }, + "value": 241738, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Horse", + "pt": 2, + "sh": true, + }, + "value": 3060958590, + }, + { + "category": "Pet", + "configData": { + "id": "Valkyrie Wolf", + "pt": 2, + }, + "value": 44560871, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guard Hydra", + "pt": 2, + }, + "value": 300575690, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Hell Rock", + "pt": 2, + }, + "value": 337742367, + }, + { + "category": "Pet", + "configData": { + "id": "Alien Octopus", + "pt": 2, + }, + "value": 1511, + }, + { + "category": "Pet", + "configData": { + "id": "Sabretooth Tiger", + }, + "value": 33, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Basket Bunny", + "sh": true, + }, + "value": 116242536, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gingerbread Dragon", + "sh": true, + }, + "value": 25529799317, + }, + { + "category": "Misc", + "configData": { + "id": "Rainbow Gem", + }, + "value": 113, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Turtle", + "pt": 2, + }, + "value": 162, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hell Monkey", + }, + "value": 80094316, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Bear", + }, + "value": 53, + }, + { + "category": "Pet", + "configData": { + "id": "Blossom Koi Fish", + }, + "value": 540, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Air Balloon Dog", + "pt": 2, + }, + "value": 149, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Bat Cat", + }, + "value": 37270957652, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pop Cat", + "pt": 2, + }, + "value": 14987101276, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pop Cat", + "pt": 2, + }, + "value": 108098419200, + }, + { + "category": "Pet", + "configData": { + "id": "Nightmare Spirit", + "pt": 2, + "sh": true, + }, + "value": 912235275, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Silver Dragon", + }, + "value": 38695015711, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Little Melty", + }, + "value": 292544883, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Dog", + }, + "value": 39584985, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Devil Tasmanian", + "sh": true, + }, + "value": 6332038564, + }, + { + "category": "Card", + "configData": { + "id": "Pog Monkey Card", + "pt": 1, + }, + "value": 69949, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pink Balloon", + }, + "value": 264713004561, + }, + { + "category": "Pet", + "configData": { + "id": "Dark Dragon", + "pt": 2, + }, + "value": 602, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pumpkin Cat", + "pt": 1, + }, + "value": 16642371094, + }, + { + "category": "Pet", + "configData": { + "id": "Junkyard Hound Ball", + "pt": 2, + }, + "value": 431, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Dot Matrix Kitsune", + }, + "value": 21148735383, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Relic Deer", + "sh": true, + }, + "value": 1165998844, + }, + { + "category": "Misc", + "configData": { + "id": "Leprechaun Key", + }, + "value": 69520, + }, + { + "category": "Pet", + "configData": { + "id": "Nightfall Wolf", + "pt": 1, + "sh": true, + }, + "value": 649249205, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Slime", + }, + "value": 935951555, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Machete Dog", + "pt": 2, + }, + "value": 3290493232, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hippomelon", + "sh": true, + }, + "value": 2933631660, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Cat", + }, + "value": 425, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holly Fawn", + "pt": 1, + }, + "value": 53340403, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Matrix Monkey", + "pt": 1, + }, + "value": 196355023, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Present Chest Mimic", + "sh": true, + }, + "value": 2163493320, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Frostbyte Griffin", + "pt": 2, + }, + "value": 137905705, + }, + { + "category": "Pet", + "configData": { + "id": "Piggy", + "pt": 2, + "sh": true, + }, + "value": 800, + }, + { + "category": "Pet", + "configData": { + "id": "Fox", + "pt": 2, + "sh": true, + }, + "value": 3000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Old Wizard Corgi", + "pt": 1, + "sh": true, + }, + "value": 1423764299, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mosaic Griffin", + "sh": true, + }, + "value": 340284375, + }, + { + "category": "Pet", + "configData": { + "id": "Steampunk Crocodile", + "pt": 2, + }, + "value": 1495, + }, + { + "category": "Pet", + "configData": { + "id": "Skeleton Cat", + "pt": 2, + }, + "value": 55, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Corgi", + "pt": 2, + }, + "value": 60993473, + }, + { + "category": "Pet", + "configData": { + "id": "Triceratops", + }, + "value": 769, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Good vs Evil Dragon", + "pt": 2, + }, + "value": 1644074132, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Globe Corgi", + "pt": 2, + }, + "value": 20113403, + }, + { + "category": "Pet", + "configData": { + "id": "Buff Doge", + "pt": 2, + }, + "value": 27413752, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Beach Ball Capybara", + "pt": 2, + }, + "value": 18888496464, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Griffin", + "sh": true, + }, + "value": 133885360, + }, + { + "category": "Pet", + "configData": { + "id": "Coconut Crab", + "pt": 1, + }, + "value": 50, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Dragon", + "pt": 2, + }, + "value": 188939, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Anteater", + "pt": 1, + }, + "value": 56120431, + }, + { + "category": "Pet", + "configData": { + "id": "Happy Cyclops", + "pt": 1, + }, + "value": 23, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jungle Golem", + "pt": 1, + }, + "value": 188667470, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightmare Kraken", + "sh": true, + }, + "value": 1693864674, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Wood Spirit", + "pt": 2, + }, + "value": 32307052384, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiedye Bunny", + "pt": 1, + "sh": true, + }, + "value": 2148534861, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Devil Dominus", + "sh": true, + }, + "value": 489474188, + }, + { + "category": "Pet", + "configData": { + "id": "Raining Love Dog", + "sh": true, + }, + "value": 1270598, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cupcake", + "pt": 2, + }, + "value": 2171942737, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Capybara", + "pt": 2, + }, + "value": 343246207, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gym Unicorn", + "pt": 1, + }, + "value": 6447953575, + }, + { + "category": "Pet", + "configData": { + "cv": 2, + "id": "Huge Chroma Doodle Axolotl", + }, + "value": 166136115, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Safari Monkey", + "sh": true, + }, + "value": 214676303, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Nuclear Dominus", + "sh": true, + }, + "value": 22257658789, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Three Headed Dragon", + "pt": 2, + }, + "value": 16646365184, + }, + { + "category": "Consumable", + "configData": { + "id": "Lucky Raid Damage Booster", + "tn": 2, + }, + "value": 550486, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Torpedo Shepherd", + "pt": 2, + }, + "value": 251411951, + }, + { + "category": "Pet", + "configData": { + "id": "Splash Angelus", + }, + "value": 19049, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Panda", + "sh": true, + }, + "value": 459869794, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Snake", + "pt": 1, + }, + "value": 2046296, + }, + { + "category": "Pet", + "configData": { + "id": "Chroma Tiger", + "pt": 1, + }, + "value": 318, + }, + { + "category": "Pet", + "configData": { + "id": "Tome Owl", + "pt": 1, + }, + "value": 3819, + }, + { + "category": "Pet", + "configData": { + "id": "Monkey", + "pt": 2, + }, + "value": 93081, + }, + { + "category": "Pet", + "configData": { + "id": "Blue Slime", + }, + "value": 1367, + }, + { + "category": "Pet", + "configData": { + "id": "Black Hole Immortuus", + "pt": 2, + }, + "value": 40801575, + }, + { + "category": "Pet", + "configData": { + "id": "Flex Tiger", + "sh": true, + }, + "value": 11571409, + }, + { + "category": "Pet", + "configData": { + "id": "Totem Cub", + }, + "value": 21, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mystical Whale", + "pt": 2, + }, + "value": 420734750, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Techno Cat", + "sh": true, + }, + "value": 1392793778, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fox", + "pt": 1, + }, + "value": 249754207, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Axolotl", + "sh": true, + }, + "value": 1446371742, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Super Coral Stingray", + }, + "value": 11086334415, + }, + { + "category": "Pet", + "configData": { + "id": "Classic Dragon", + "pt": 2, + }, + "value": 33501434, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Purple Dragon", + "pt": 2, + }, + "value": 1160669474, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snowman", + "sh": true, + }, + "value": 4677362845, + }, + { + "category": "Card", + "configData": { + "id": "Fairy Moth Card", + "sh": true, + }, + "value": 1853, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guard Hydra", + "sh": true, + }, + "value": 863101880, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glitched Cat", + }, + "value": 2235324242, + }, + { + "category": "Pet", + "configData": { + "id": "Googly Corgi", + "pt": 2, + }, + "value": 22501281, + }, + { + "category": "Booth", + "configData": { + "id": "Ice Cream", + }, + "value": 305878753, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Axolotl", + "sh": true, + }, + "value": 268349, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Cheerful Yeti", + "sh": true, + }, + "value": 60296000000, + }, + { + "category": "Pet", + "configData": { + "id": "Player Corgi", + }, + "value": 40, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glowy the Ghost", + "pt": 2, + "sh": true, + }, + "value": 2498892607, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Redstone Cat", + "pt": 2, + }, + "value": 1855001590, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wave Spirit", + }, + "value": 84881734, + }, + { + "category": "Pet", + "configData": { + "id": "Bejeweled Lion", + "sh": true, + }, + "value": 72676013, + }, + { + "category": "Card", + "configData": { + "id": "Fancy Axolotl Card", + }, + "value": 17130, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Snowflake Dominus", + "pt": 2, + }, + "value": 68728320000, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Ghostly Wolf Card", + "sh": true, + }, + "value": 5105957330, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Relic Deer", + "pt": 1, + }, + "value": 52097399, + }, + { + "category": "Pet", + "configData": { + "id": "Basketball Cat", + "pt": 1, + }, + "value": 406607, + }, + { + "category": "Pet", + "configData": { + "id": "Astronaut Cat Ball", + "pt": 1, + }, + "value": 96, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Dragon", + "sh": true, + }, + "value": 133632694, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Werewolf", + "pt": 2, + }, + "value": 321685036, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Inferno Stealth Cat", + "pt": 2, + }, + "value": 329688913, + }, + { + "category": "Pet", + "configData": { + "id": "Huge King Cobra", + "sh": true, + }, + "value": 788286089, + }, + { + "category": "Pet", + "configData": { + "id": "Baby Piglet", + "pt": 1, + }, + "value": 24690, + }, + { + "category": "Pet", + "configData": { + "id": "North Pole Unicorn", + "pt": 1, + }, + "value": 2319, + }, + { + "category": "Pet", + "configData": { + "id": "Soul Cat", + "pt": 2, + "sh": true, + }, + "value": 922922896, + }, + { + "category": "Pet", + "configData": { + "id": "Storm Axolotl Ball", + "pt": 1, + }, + "value": 165, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Owl", + "sh": true, + }, + "value": 1360317, + }, + { + "category": "Pet", + "configData": { + "id": "Kawaii Dragon", + }, + "value": 2391, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Raptor", + }, + "value": 124748293, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fragmented Dominus", + "pt": 1, + }, + "value": 990863932, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Comet Cyclops", + "pt": 2, + }, + "value": 3107853080, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Leafy Deer", + }, + "value": 158715446581, + }, + { + "category": "Pet", + "configData": { + "id": "Cold Ladybug", + }, + "value": 362, + }, + { + "category": "Pet", + "configData": { + "id": "Coconut Crab", + "pt": 2, + "sh": true, + }, + "value": 15023150021, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soul Cat", + "sh": true, + }, + "value": 740085391, + }, + { + "category": "Pet", + "configData": { + "id": "Nyan Cat", + }, + "value": 1977419463, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Dragon", + }, + "value": 95, + }, + { + "category": "Pet", + "configData": { + "id": "Kitsune Fox", + "sh": true, + }, + "value": 669, + }, + { + "category": "Pet", + "configData": { + "id": "Demon Cyclops", + "pt": 2, + }, + "value": 482476, + }, + { + "category": "Card", + "configData": { + "id": "Immortuus Card", + "pt": 2, + "sh": true, + }, + "value": 513547, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Green Cobra", + "pt": 2, + "sh": true, + }, + "value": 1977658122, + }, + { + "category": "Pet", + "configData": { + "id": "DJ Panda", + }, + "value": 103, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holiday Dove", + "pt": 2, + }, + "value": 604005986, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Good vs Evil Cat", + "pt": 1, + }, + "value": 98095913, + }, + { + "category": "Pet", + "configData": { + "id": "Blobfish", + }, + "value": 471201886, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Calico Cat", + }, + "value": 12993873049, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Alien Arachnid", + }, + "value": 17763125412, + }, + { + "category": "Pet", + "configData": { + "id": "Fire Cat", + }, + "value": 14, + }, + { + "category": "Pet", + "configData": { + "id": "Orange Squirrel", + "pt": 2, + }, + "value": 34, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Sea Dragon", + "pt": 2, + }, + "value": 16370769787, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fragmented Dominus Ball", + "sh": true, + }, + "value": 192415735, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rainbow Slime", + "sh": true, + }, + "value": 209339384, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jetpack Tiger", + "pt": 2, + }, + "value": 327908901, + }, + { + "category": "Pet", + "configData": { + "id": "Pink Marshmallow Chick", + }, + "value": 61, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Heartbreak Fairy", + "pt": 2, + "sh": true, + }, + "value": 2140682140, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lit Cat", + "sh": true, + }, + "value": 176283343, + }, + { + "category": "Pet", + "configData": { + "id": "Hologram Shark", + "sh": true, + }, + "value": 11399696, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shuriken Corgi", + "pt": 2, + "sh": true, + }, + "value": 2170458603, + }, + { + "category": "Consumable", + "configData": { + "id": "Super Gym Shake", + "tn": 1, + }, + "value": 45708, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cyborg Cat", + "sh": true, + }, + "value": 3064584643, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nyan Cat", + "pt": 1, + "sh": true, + }, + "value": 1325677344, + }, + { + "category": "Pet", + "configData": { + "id": "Cupcake Hamster", + "sh": true, + }, + "value": 24088, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Cat", + "pt": 1, + }, + "value": 861, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kawaii Tiger", + "pt": 2, + }, + "value": 1353697004, + }, + { + "category": "Pet", + "configData": { + "id": "Gemstone Gargoyle Dragon", + }, + "value": 118, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Monkey", + "sh": true, + }, + "value": 3056, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghost", + "pt": 2, + }, + "value": 284092297, + }, + { + "category": "Pet", + "configData": { + "id": "Fairy Moth", + }, + "value": 9768, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gorgon", + "pt": 1, + }, + "value": 90252620, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Fox", + }, + "value": 68, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cow", + }, + "value": 1137408662, + }, + { + "category": "Pet", + "configData": { + "id": "Fairy Moth", + "pt": 2, + }, + "value": 18156046, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Parrot", + "sh": true, + }, + "value": 1894, + }, + { + "category": "Pet", + "configData": { + "id": "Coconut Flamingo", + "sh": true, + }, + "value": 17059, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Super Coral Hydra", + "sh": true, + }, + "value": 1176578036, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Inferno Cat", + "pt": 2, + }, + "value": 12351069391, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Owl", + "pt": 1, + "sh": true, + }, + "value": 894400, + }, + { + "category": "Pet", + "configData": { + "cv": 6, + "id": "Huge Chroma Snail", + "pt": 2, + }, + "value": 1482919069, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Patrick Star", + "sh": true, + }, + "value": 5078239673, + }, + { + "category": "Pet", + "configData": { + "id": "Honey Golem", + "pt": 1, + }, + "value": 1776, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Atomic Monkey Ball", + "pt": 1, + "sh": true, + }, + "value": 283478982, + }, + { + "category": "Pet", + "configData": { + "id": "Hypnotic Griffin", + "pt": 2, + "sh": true, + }, + "value": 598050790, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Comet Agony", + "pt": 2, + }, + "value": 11672393561, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghost", + "pt": 1, + "sh": true, + }, + "value": 1305672151, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Butterfly", + "pt": 1, + }, + "value": 21162951837, + }, + { + "category": "Pet", + "configData": { + "id": "Dark Dragon", + "pt": 1, + }, + "value": 5225, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Gingerbread", + }, + "value": 887956588, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Comet Cyclops", + "pt": 1, + }, + "value": 633521265, + }, + { + "category": "Pet", + "configData": { + "cv": 5, + "id": "Huge Chroma Swan", + }, + "value": 208163342, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Scarecrow Dog", + "pt": 2, + "sh": true, + }, + "value": 1974064908, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Llama", + "pt": 1, + "sh": true, + }, + "value": 263061880, + }, + { + "category": "Pet", + "configData": { + "id": "Corn Cat", + "pt": 1, + }, + "value": 4404, + }, + { + "category": "Booth", + "configData": { + "id": "Unicorn", + }, + "value": 30983642, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tech Chest Mimic", + "sh": true, + }, + "value": 757889116, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Valkyrie Pegasus", + }, + "value": 36379756543, + }, + { + "category": "Pet", + "configData": { + "id": "Bubble Cat", + }, + "value": 2280, + }, + { + "category": "Pet", + "configData": { + "id": "Flamingo Cat", + "pt": 1, + "sh": true, + }, + "value": 27055, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Squirrel", + "pt": 2, + }, + "value": 262928527, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Griffin", + }, + "value": 411, + }, + { + "category": "Tower", + "configData": { + "id": "Forged Armadillo", + }, + "value": 26640, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Robber Pug", + "sh": true, + }, + "value": 105733008, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Hellish Axolotl", + }, + "value": 334625025763, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Storm Dominus", + "sh": true, + }, + "value": 774832496, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Sea Dragon Card", + "pt": 1, + "sh": true, + }, + "value": 4388626742, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Abstract Dominus", + "pt": 2, + }, + "value": 386926215, + }, + { + "category": "Pet", + "configData": { + "id": "Noobortuus", + }, + "value": 2345896908, + }, + { + "category": "Pet", + "configData": { + "id": "Chef Monkey", + "pt": 2, + "sh": true, + }, + "value": 389, + }, + { + "category": "Pet", + "configData": { + "id": "Circuit Slime", + }, + "value": 534, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Huge Chroma Ink Blob", + "pt": 2, + }, + "value": 336135151, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doodle Bee", + }, + "value": 477777717, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Hydra", + }, + "value": 2758, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Kraken", + }, + "value": 16, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holiday Pegasus", + "pt": 2, + }, + "value": 995742943, + }, + { + "category": "Pet", + "configData": { + "id": "Cat Magician", + }, + "value": 714, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Monkey", + "pt": 2, + "sh": true, + }, + "value": 4296, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Inferno Dominus", + "sh": true, + }, + "value": 1974736284, + }, + { + "category": "Pet", + "configData": { + "id": "Ladybug", + }, + "value": 16502, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Loveserker", + }, + "value": 8292426957, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cosmic Axolotl", + "sh": true, + }, + "value": 1184235708, + }, + { + "category": "Misc", + "configData": { + "id": "Treasure Hideout Key Upper Half", + }, + "value": 9649, + }, + { + "category": "Pet", + "configData": { + "id": "Chimera", + "pt": 1, + }, + "value": 2088, + }, + { + "category": "Pet", + "configData": { + "id": "Googly Cat", + "pt": 2, + }, + "value": 24698667, + }, + { + "category": "Pet", + "configData": { + "id": "Forged Cyclops", + }, + "value": 65, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Yin-Yang Dragon", + "sh": true, + }, + "value": 631985752, + }, + { + "category": "Pet", + "configData": { + "id": "Sprout Wyrmling", + "pt": 1, + }, + "value": 25680, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hydra Axolotl", + "pt": 1, + }, + "value": 42639396, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Bear", + }, + "value": 19, + }, + { + "category": "Pet", + "configData": { + "id": "Potion Poodle", + "pt": 2, + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Patchwork Teddy Bear", + "pt": 2, + }, + "value": 41467703, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pirate Parrot", + "sh": true, + }, + "value": 1294719289, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Balloon Cat", + "sh": true, + }, + "value": 3115375498, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Husky", + "pt": 1, + }, + "value": 441218547, + }, + { + "category": "Pet", + "configData": { + "id": "Plushie Elephant", + }, + "value": 51, + }, + { + "category": "Pet", + "configData": { + "id": "Fancy Axolotl", + }, + "value": 1194832, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Forcefield Cat", + "sh": true, + }, + "value": 1202532016, + }, + { + "category": "Pet", + "configData": { + "id": "Kawaii Cat", + "pt": 1, + }, + "value": 55931, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Angry Yeti", + "pt": 2, + "sh": true, + }, + "value": 7132392116, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Red Wolf", + "sh": true, + }, + "value": 92122643, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Giraffe", + "sh": true, + }, + "value": 108951835, + }, + { + "category": "Pet", + "configData": { + "id": "Bejeweled Deer", + "sh": true, + }, + "value": 9903481, + }, + { + "category": "Pet", + "configData": { + "id": "Cartoon Bunny", + "pt": 2, + }, + "value": 27582166, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Santa Dragon", + "pt": 1, + }, + "value": 1423833028, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chroma Lucki", + "pt": 2, + }, + "value": 1540479941, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Robber Cat", + }, + "value": 128304337, + }, + { + "category": "Pet", + "configData": { + "id": "Love Lion", + "pt": 2, + }, + "value": 64, + }, + { + "category": "Pet", + "configData": { + "id": "Floatie Penguin", + "pt": 2, + "sh": true, + }, + "value": 648, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dino Cat", + }, + "value": 1969051870, + }, + { + "category": "Pet", + "configData": { + "id": "Strawhat Tanuki", + "sh": true, + }, + "value": 27224, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Buff Tiger", + }, + "value": 19172786120, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sapphire Phoenix", + "pt": 2, + }, + "value": 2946733997, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gingerbread Angelus", + "sh": true, + }, + "value": 1704055906, + }, + { + "category": "Pet", + "configData": { + "id": "Red Fluffy", + "pt": 1, + }, + "value": 6217, + }, + { + "category": "Pet", + "configData": { + "id": "Comet Agony", + "pt": 1, + }, + "value": 1359, + }, + { + "category": "Pet", + "configData": { + "id": "Cosmic Agony", + "pt": 2, + "sh": true, + }, + "value": 2708395747, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Cat", + "sh": true, + }, + "value": 455366441, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Soul Owl", + }, + "value": 24958026645, + }, + { + "category": "Pet", + "configData": { + "id": "Surfboard Axolotl", + "pt": 2, + }, + "value": 12, + }, + { + "category": "Pet", + "configData": { + "id": "Splash Angelus", + "pt": 2, + }, + "value": 5972, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Super Spider", + "pt": 2, + }, + "value": 392212217, + }, + { + "category": "Pet", + "configData": { + "id": "Haxolotl", + "pt": 1, + }, + "value": 2277, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Cupcake Pegasus", + }, + "value": 10523264184, + }, + { + "category": "Pet", + "configData": { + "id": "Minecart Hamster", + "pt": 2, + }, + "value": 245, + }, + { + "category": "Pet", + "configData": { + "id": "Claw Beast", + "sh": true, + }, + "value": 101246275, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Wood Spirit", + }, + "value": 11144023996, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bubble Hydra", + "pt": 2, + }, + "value": 853917698, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Sloth", + "pt": 2, + "sh": true, + }, + "value": 12794728, + }, + { + "category": "Pet", + "configData": { + "id": "Merry Manatee", + "pt": 2, + "sh": true, + }, + "value": 103619, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Dragon", + "pt": 1, + }, + "value": 8, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Anime Cat", + "pt": 2, + }, + "value": 22799245190, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Balloon Cat", + "pt": 2, + }, + "value": 4646496610, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Player Fox", + }, + "value": 54365620, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccer Terrier", + "pt": 1, + }, + "value": 226717000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Butterfly", + "pt": 1, + }, + "value": 71943282, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Coconut Flamingo", + "pt": 2, + }, + "value": 233234159, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dove", + "pt": 2, + }, + "value": 6241115042, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gingerbread Angelus", + "pt": 2, + "sh": true, + }, + "value": 27000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pixel M-2 PROTOTYPE", + }, + "value": 21623475241, + }, + { + "category": "Pet", + "configData": { + "id": "Santa Paws", + }, + "value": 7298514, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crystal Dog", + "sh": true, + }, + "value": 339279657, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mosaic Corgi", + "pt": 2, + }, + "value": 432554534, + }, + { + "category": "Pet", + "configData": { + "id": "Clout Cat", + "sh": true, + }, + "value": 9813297, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Patchwork Teddy Bear", + }, + "value": 136710734, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skeleton", + "pt": 1, + "sh": true, + }, + "value": 3851580071, + }, + { + "category": "Pet", + "configData": { + "id": "Wicked Empyrean Dominus", + "pt": 2, + }, + "value": 6591, + }, + { + "category": "Pet", + "configData": { + "id": "Fragmented Pterodactyl", + }, + "value": 1705, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Corgi", + "sh": true, + }, + "value": 248180524, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Treasure Scorpion", + "pt": 2, + }, + "value": 399174369, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pot of Gold Cat", + "sh": true, + }, + "value": 751462600, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jurassic Crocodile", + "sh": true, + }, + "value": 396930131, + }, + { + "category": "Pet", + "configData": { + "id": "Love Cow", + "pt": 2, + "sh": true, + }, + "value": 182, + }, + { + "category": "Pet", + "configData": { + "id": "Beach Ball Capybara", + }, + "value": 3148, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elegant Eagle", + "pt": 2, + }, + "value": 161601381, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kawaii Cat", + }, + "value": 2611096479, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rhino", + "pt": 2, + "sh": true, + }, + "value": 3244936902, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Raccoon", + "pt": 1, + }, + "value": 42375345, + }, + { + "category": "Pet", + "configData": { + "id": "Cosmic Dragon", + "pt": 2, + "sh": true, + }, + "value": 227553345, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Emerald Owl", + "pt": 2, + }, + "value": 203869863, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Hydra", + "pt": 2, + }, + "value": 993, + }, + { + "category": "Pet", + "configData": { + "id": "Librarian Beaver", + }, + "value": 23660, + }, + { + "category": "Pet", + "configData": { + "id": "Inferno Dominus", + "pt": 2, + }, + "value": 48236277, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shark", + }, + "value": 408807231, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Patchwork Agony", + }, + "value": 292103649638, + }, + { + "category": "Pet", + "configData": { + "id": "Firefossil Wolf", + }, + "value": 17038, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Fox", + "sh": true, + }, + "value": 100388094, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Camel", + }, + "value": 38, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Floppa", + "pt": 2, + }, + "value": 4075540274, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Basketball Retriever", + "pt": 1, + }, + "value": 1617630097, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Teacher Cat", + "pt": 2, + }, + "value": 23743197624, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Dog", + "pt": 1, + }, + "value": 281, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Elephant", + "sh": true, + }, + "value": 10500257, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Shark", + "sh": true, + }, + "value": 164810752, + }, + { + "category": "Pet", + "configData": { + "id": "Circuit Corgi", + }, + "value": 29, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snow Crab", + "sh": true, + }, + "value": 1131471536, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Masked Owl", + "sh": true, + }, + "value": 1938116674, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Safari Cat", + "sh": true, + }, + "value": 1992428655, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Graffiti Raccoon", + }, + "value": 141340176, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Kawaii Cat", + }, + "value": 41067310204, + }, + { + "category": "Pet", + "configData": { + "id": "Midnight Zebra", + "sh": true, + }, + "value": 31899583, + }, + { + "category": "Card", + "configData": { + "id": "Pog Monkey Card", + "pt": 2, + }, + "value": 20282, + }, + { + "category": "Pet", + "configData": { + "id": "Strawberry Cow Ball", + "sh": true, + }, + "value": 491839, + }, + { + "category": "Pet", + "configData": { + "id": "Totem Wolf", + "sh": true, + }, + "value": 21404145, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Krampus", + "pt": 1, + }, + "value": 125782343680, + }, + { + "category": "Pet", + "configData": { + "id": "Basketball Monkey", + "pt": 1, + }, + "value": 1628, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gym Shark", + "pt": 2, + }, + "value": 17011637332, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Dog", + "pt": 1, + "sh": true, + }, + "value": 204543525, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Corgi", + "pt": 2, + "sh": true, + }, + "value": 1238224536, + }, + { + "category": "Pet", + "configData": { + "id": "Toy Duck", + "pt": 1, + }, + "value": 862, + }, + { + "category": "Pet", + "configData": { + "id": "Kaiju Sea Dragon", + "pt": 2, + }, + "value": 20893405, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jolly Owl", + "pt": 1, + }, + "value": 112334278, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Penguin", + }, + "value": 1553, + }, + { + "category": "Pet", + "configData": { + "id": "Scuba Dog", + }, + "value": 19, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skelemelon", + "pt": 2, + }, + "value": 390381397, + }, + { + "category": "Card", + "configData": { + "id": "Pog Monkey Card", + "sh": true, + }, + "value": 304726, + }, + { + "category": "Pet", + "configData": { + "id": "Leafstorm Wolf", + "pt": 2, + "sh": true, + }, + "value": 696684463, + }, + { + "category": "Pet", + "configData": { + "id": "Beegle Dog", + }, + "value": 12, + }, + { + "category": "Pet", + "configData": { + "id": "Ember Vulture", + "pt": 2, + "sh": true, + }, + "value": 262, + }, + { + "category": "Card", + "configData": { + "id": "Pog Shark Card", + "pt": 2, + }, + "value": 296971, + }, + { + "category": "Pet", + "configData": { + "id": "Scroll Dragon", + }, + "value": 23, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holographic Cat", + "pt": 2, + }, + "value": 174205216, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Jelly Wizard", + }, + "value": 7631482334, + }, + { + "category": "Card", + "configData": { + "id": "Noob Card", + "pt": 2, + }, + "value": 7084556, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Safety Cat", + }, + "value": 896806336, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Fox", + "pt": 1, + }, + "value": 346, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Parrot", + "pt": 2, + }, + "value": 19, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiki Dominus", + "pt": 1, + }, + "value": 807229952, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Shark", + "pt": 1, + }, + "value": 184, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Werewolf", + "pt": 1, + }, + "value": 81359520, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Cupcake", + "sh": true, + }, + "value": 2470408289, + }, + { + "category": "Pet", + "configData": { + "id": "Green Fish", + }, + "value": 93, + }, + { + "category": "Pet", + "configData": { + "id": "Glade Griffin", + "pt": 1, + "sh": true, + }, + "value": 3492, + }, + { + "category": "Pet", + "configData": { + "id": "Hacker Axolotl", + }, + "value": 77, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stargazing Wolf", + }, + "value": 184325419, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Balloon Corgi", + "pt": 2, + }, + "value": 2799885862, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Unicorn", + "pt": 2, + }, + "value": 3035, + }, + { + "category": "Pet", + "configData": { + "id": "Walrus", + }, + "value": 104, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Nutcracker Cat", + "pt": 2, + }, + "value": 16366345457, + }, + { + "category": "Pet", + "configData": { + "id": "Cosmic Axolotl", + "pt": 2, + "sh": true, + }, + "value": 262990232, + }, + { + "category": "Pet", + "configData": { + "id": "Angelus", + "pt": 2, + }, + "value": 1436, + }, + { + "category": "Pet", + "configData": { + "id": "Hyena", + "pt": 1, + }, + "value": 77, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lit Octopus", + "pt": 1, + }, + "value": 737485830, + }, + { + "category": "Pet", + "configData": { + "id": "Glade Griffin", + "pt": 2, + "sh": true, + }, + "value": 892, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Silver Stag", + }, + "value": 37777017709, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Spirit Mushroom", + "pt": 2, + }, + "value": 23971078318, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Griffin", + "pt": 2, + "sh": true, + }, + "value": 2246938159, + }, + { + "category": "Pet", + "configData": { + "id": "Creepy Wolf", + "pt": 2, + }, + "value": 806, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Stargazing Bull", + }, + "value": 27265919388, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pinecone Porcupine", + "pt": 2, + }, + "value": 455563619, + }, + { + "category": "Pet", + "configData": { + "id": "Pog Dragon", + "pt": 1, + }, + "value": 11983, + }, + { + "category": "Card", + "configData": { + "id": "Huge Ghostly Dragon Card", + "pt": 2, + "sh": true, + }, + "value": 5471990289, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Heart Balloon Cat", + "sh": true, + }, + "value": 5287742289, + }, + { + "category": "Pet", + "configData": { + "id": "Scribe Squirrel", + }, + "value": 26, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Diamond Bunny", + "pt": 2, + }, + "value": 27352530654, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghost Cat", + }, + "value": 2491467974, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Bat", + "sh": true, + }, + "value": 1181100, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Wolf", + }, + "value": 46, + }, + { + "category": "Pet", + "configData": { + "id": "Molten Gecko", + "pt": 2, + }, + "value": 2123643752, + }, + { + "category": "Pet", + "configData": { + "id": "Wild Frost Agony", + "pt": 1, + "sh": true, + }, + "value": 2035036, + }, + { + "category": "Pet", + "configData": { + "id": "Heavenly Dove", + }, + "value": 109, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Shark", + }, + "value": 131, + }, + { + "category": "Pet", + "configData": { + "id": "Floatie Cat", + "pt": 2, + "sh": true, + }, + "value": 1190, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Runebound Bobcat", + "pt": 1, + }, + "value": 555958515, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Scorpion", + "pt": 1, + }, + "value": 71, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Angelus", + }, + "value": 11203439896, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jester Dog", + "sh": true, + }, + "value": 442630353, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Bee", + "sh": true, + }, + "value": 109127873, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Junkyard Hound", + "pt": 1, + }, + "value": 336546540, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Snowman", + }, + "value": 167, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Love Corgi", + "pt": 1, + }, + "value": 13379645464, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ooze Cat", + "pt": 2, + "sh": true, + }, + "value": 3164217274, + }, + { + "category": "Pet", + "configData": { + "id": "Seedling Squirrel", + }, + "value": 99036, + }, + { + "category": "Pet", + "configData": { + "id": "Cosmic Agony", + "pt": 2, + }, + "value": 195036051, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pristine Snake", + "pt": 1, + }, + "value": 169971273, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sphinx", + "pt": 2, + }, + "value": 3222407506, + }, + { + "category": "Pet", + "configData": { + "id": "Mr Krabs", + "sh": true, + }, + "value": 43164109, + }, + { + "category": "Pet", + "configData": { + "id": "Huge UV Kitsune", + "sh": true, + }, + "value": 448630558, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rich Corgi", + "pt": 1, + "sh": true, + }, + "value": 6610803200, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Corgi", + "pt": 2, + "sh": true, + }, + "value": 84734166370, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Sock Cat", + }, + "value": 14698170843, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Strawberry Corgi", + "pt": 2, + "sh": true, + }, + "value": 306551403383, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Parrot", + "pt": 1, + }, + "value": 17018875813, + }, + { + "category": "Pet", + "configData": { + "id": "Baseball Dolphin", + }, + "value": 16, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Cat", + }, + "value": 144, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Night Terror Cat", + "sh": true, + }, + "value": 429158875, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Floatie Cat", + "pt": 2, + }, + "value": 226144384, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Penguin", + "pt": 2, + }, + "value": 9383976128, + }, + { + "category": "Pet", + "configData": { + "id": "Heavenly Dove", + "pt": 2, + }, + "value": 2599, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ice Cream Cone", + }, + "value": 2205526221, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blazing Shark", + "sh": true, + }, + "value": 480322423, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luxe Peacock", + "pt": 1, + }, + "value": 37085576, + }, + { + "category": "Pet", + "configData": { + "cv": 1, + "id": "Huge Chroma Phoenix", + "pt": 2, + }, + "value": 317601616, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Patchwork Bunny", + "pt": 2, + }, + "value": 480693693, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Pop Cat Card", + }, + "value": 6439771818, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Player Fox", + "sh": true, + }, + "value": 638075547, + }, + { + "category": "Consumable", + "configData": { + "id": "Mining TNT Crate", + "tn": 1, + }, + "value": 751, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Griffin", + "pt": 2, + }, + "value": 264, + }, + { + "category": "Pet", + "configData": { + "id": "Lunar Bat", + }, + "value": 5721, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Santa Monkey", + "pt": 1, + }, + "value": 1934745393, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stealth Dragon", + "pt": 1, + "sh": true, + }, + "value": 889456743, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Cat", + }, + "value": 138, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kawaii Cat", + "sh": true, + }, + "value": 16941262202, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Meebo in a Spaceship", + "sh": true, + }, + "value": 238010019, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stacked Dominus", + "pt": 1, + }, + "value": 750702415, + }, + { + "category": "Pet", + "configData": { + "id": "Devil Agony", + }, + "value": 8892, + }, + { + "category": "Pet", + "configData": { + "id": "Elegant Eagle", + "sh": true, + }, + "value": 18, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ancient Dragon", + "sh": true, + }, + "value": 834514595, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Panda", + "pt": 2, + }, + "value": 1031, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Reversed Cat", + "pt": 2, + }, + "value": 5397914678, + }, + { + "category": "Pet", + "configData": { + "id": "Sailor Seal", + "pt": 1, + }, + "value": 23, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Dog", + "pt": 1, + }, + "value": 33346580, + }, + { + "category": "Pet", + "configData": { + "id": "Nightfall Tiger", + "sh": true, + }, + "value": 76368241, + }, + { + "category": "Pet", + "configData": { + "id": "Sphinx", + }, + "value": 1531, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pastel Sock Bunny", + "pt": 2, + }, + "value": 122051465, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fire Horse", + }, + "value": 99509872, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sloth", + "pt": 2, + "sh": true, + }, + "value": 18550400000, + }, + { + "category": "Pet", + "configData": { + "id": "Butterfly Llama", + }, + "value": 145, + }, + { + "category": "Pet", + "configData": { + "id": "M-10 PROTOTYPE", + "pt": 2, + }, + "value": 2102, + }, + { + "category": "Pet", + "configData": { + "id": "Samurai Dragon", + }, + "value": 23, + }, + { + "category": "Pet", + "configData": { + "id": "Pog Monkey", + }, + "value": 2473265, + }, + { + "category": "Pet", + "configData": { + "id": "M-B PROTOTYPE", + }, + "value": 340, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Guard Dominus", + "pt": 1, + }, + "value": 8848504119, + }, + { + "category": "Pet", + "configData": { + "id": "Rootkin Fox", + }, + "value": 15, + }, + { + "category": "Pet", + "configData": { + "id": "Boulder Boar", + "pt": 1, + "sh": true, + }, + "value": 3, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Coach Tiger", + "pt": 1, + }, + "value": 101532652, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Triceratops", + "pt": 2, + }, + "value": 3746317476, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Cat", + "pt": 2, + }, + "value": 55341700, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Goblin", + "pt": 2, + }, + "value": 193043443, + }, + { + "category": "Pet", + "configData": { + "id": "Starry Tail Anteater", + "pt": 1, + }, + "value": 4354, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Evil", + }, + "value": 1014803783, + }, + { + "category": "Pet", + "configData": { + "id": "Valkyrie Wolf", + "pt": 2, + "sh": true, + }, + "value": 2900744128, + }, + { + "category": "Pet", + "configData": { + "id": "Fortress Dog", + }, + "value": 106966, + }, + { + "category": "Pet", + "configData": { + "id": "Sacred Deer", + }, + "value": 14, + }, + { + "category": "Pet", + "configData": { + "cv": 1, + "id": "Huge Chroma Snail", + "pt": 2, + }, + "value": 668637406, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Emoji Monkey", + "pt": 2, + }, + "value": 1897238261, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Pyro Cat", + "pt": 2, + }, + "value": 219598110409, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Corgi", + }, + "value": 15920, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Candycane Kitsune", + "pt": 2, + "sh": true, + }, + "value": 7256010427, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Bear", + "pt": 1, + }, + "value": 262, + }, + { + "category": "Pet", + "configData": { + "id": "Puurple Cat", + "pt": 1, + "sh": true, + }, + "value": 80906732, + }, + { + "category": "Pet", + "configData": { + "id": "Naughty Cat", + "pt": 2, + }, + "value": 169, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rainbow Slime", + "pt": 2, + }, + "value": 211791556, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Doge", + "pt": 1, + }, + "value": 187999800000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Walrus", + "sh": true, + }, + "value": 222939215, + }, + { + "category": "Pet", + "configData": { + "id": "Stunt Chick", + }, + "value": 2109514294, + }, + { + "category": "Pet", + "configData": { + "id": "Baby Piglet", + "sh": true, + }, + "value": 6067, + }, + { + "category": "Pet", + "configData": { + "id": "Apollo Raven", + "pt": 2, + }, + "value": 1132, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Orca", + "pt": 1, + }, + "value": 508276806, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Red Wolf", + "pt": 1, + "sh": true, + }, + "value": 235643315, + }, + { + "category": "Pet", + "configData": { + "id": "Glimmer Goat", + }, + "value": 4673, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pirate Dog", + "sh": true, + }, + "value": 888845363, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghost Cat", + "pt": 1, + }, + "value": 1648878436, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Hamster", + }, + "value": 52, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pirate Parrot", + "pt": 2, + }, + "value": 1835635178, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Diamond Dragon", + "pt": 1, + }, + "value": 1608535205, + }, + { + "category": "Pet", + "configData": { + "id": "Cool Corgi", + "pt": 2, + }, + "value": 20352639, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Unicorn", + }, + "value": 24, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Axolotl", + "pt": 2, + }, + "value": 70, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valentines Axolotl", + "sh": true, + }, + "value": 116399859, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Pterodactyl", + "sh": true, + }, + "value": 965348429, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Jackalope", + "pt": 1, + }, + "value": 106, + }, + { + "category": "Pet", + "configData": { + "id": "Robber Goblin", + "pt": 2, + }, + "value": 20469, + }, + { + "category": "Pet", + "configData": { + "id": "Jurassic Crocodile", + "sh": true, + }, + "value": 21002917, + }, + { + "category": "Booth", + "configData": { + "id": "Nuclear", + }, + "value": 56763503, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nuclear Wild Dog", + "pt": 2, + "sh": true, + }, + "value": 2119772190, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nutcracker Cat", + "pt": 1, + }, + "value": 47258312, + }, + { + "category": "Pet", + "configData": { + "id": "Stealth Cat", + "pt": 1, + }, + "value": 21931182, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Corgi", + "pt": 1, + }, + "value": 14924260, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valentines Angelus", + "pt": 2, + }, + "value": 2150756906, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crowned Cat", + }, + "value": 55068712121, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Scribe Squirrel", + "sh": true, + }, + "value": 158271862, + }, + { + "category": "Pet", + "configData": { + "cv": 3, + "id": "Chroma Tiger", + }, + "value": 31325, + }, + { + "category": "Pet", + "configData": { + "id": "Gummy Bear", + "sh": true, + }, + "value": 23791, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Flamethrower Spider", + "pt": 2, + }, + "value": 647527396, + }, + { + "category": "Pet", + "configData": { + "id": "Chroma Phoenix", + "pt": 1, + }, + "value": 3407483, + }, + { + "category": "Pet", + "configData": { + "id": "Axolotl", + "sh": true, + }, + "value": 4789, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hologram Axolotl", + "sh": true, + }, + "value": 3286655481, + }, + { + "category": "Pet", + "configData": { + "id": "Princess Dragon", + "pt": 1, + }, + "value": 109, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lightning Bat", + "sh": true, + }, + "value": 805909252, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Unicorn", + "pt": 1, + "sh": true, + }, + "value": 2349793588, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Relic Deer", + "pt": 2, + }, + "value": 141699361, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Fox", + }, + "value": 54, + }, + { + "category": "Pet", + "configData": { + "id": "Wild Fire Agony", + "pt": 2, + }, + "value": 279, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Snow Elf", + "pt": 2, + }, + "value": 18191649946, + }, + { + "category": "Pet", + "configData": { + "id": "Wireframe Dog", + "pt": 2, + "sh": true, + }, + "value": 768, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sun Agony", + }, + "value": 227547067, + }, + { + "category": "Pet", + "configData": { + "id": "Valkyrie Wolf", + "sh": true, + }, + "value": 31189242, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fox", + "sh": true, + }, + "value": 2662742399, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Giraffe", + "pt": 1, + "sh": true, + }, + "value": 220782043, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Dragon", + "sh": true, + }, + "value": 446190730, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Bunny", + }, + "value": 32889, + }, + { + "category": "Pet", + "configData": { + "id": "Player Fox", + "sh": true, + }, + "value": 2335, + }, + { + "category": "Pet", + "configData": { + "id": "Fire Bat", + "pt": 2, + "sh": true, + }, + "value": 13421, + }, + { + "category": "Pet", + "configData": { + "id": "Cupcake Unicorn", + "pt": 1, + "sh": true, + }, + "value": 1096, + }, + { + "category": "Pet", + "configData": { + "id": "Storm Axolotl Ball", + "pt": 1, + "sh": true, + }, + "value": 26649, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Sad Cat", + "pt": 1, + }, + "value": 221682115, + }, + { + "category": "Pet", + "configData": { + "id": "Mechanical Spider", + }, + "value": 663, + }, + { + "category": "Pet", + "configData": { + "id": "Autumn Red Panda", + }, + "value": 10, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Bleebo The Alien", + }, + "value": 3368535443, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Dominus", + "pt": 2, + }, + "value": 31219339, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Frostbyte Griffin", + "pt": 1, + "sh": true, + }, + "value": 779156583, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Ice Cream", + }, + "value": 523184561, + }, + { + "category": "Pet", + "configData": { + "id": "Hyena", + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Icy Phoenix", + "pt": 2, + }, + "value": 275, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chad Bunny", + "sh": true, + }, + "value": 906613196, + }, + { + "category": "Pet", + "configData": { + "id": "Rootkin Fox", + "pt": 2, + }, + "value": 7325, + }, + { + "category": "Pet", + "configData": { + "id": "Fragmented Dominus Ball", + "pt": 2, + }, + "value": 37971237, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Arcade Dragon", + "pt": 1, + }, + "value": 293377735, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Devil Agony", + "sh": true, + }, + "value": 3987930519, + }, + { + "category": "Pet", + "configData": { + "id": "Persimmony Cricket", + "pt": 2, + "sh": true, + }, + "value": 821735, + }, + { + "category": "Pet", + "configData": { + "id": "Jurassic Crocodile", + "pt": 2, + }, + "value": 12622401, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Beach Ball Capybara", + "pt": 1, + }, + "value": 6548356802, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Safari Dog", + "pt": 1, + }, + "value": 93594689902, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bobcat", + "sh": true, + }, + "value": 1324489483, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leprechaun Cat", + "pt": 2, + }, + "value": 424864623, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Goblin", + "pt": 1, + }, + "value": 78793633, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Bear", + "pt": 1, + }, + "value": 1859, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Husky", + "pt": 2, + }, + "value": 21, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Wicked", + }, + "value": 1386966435, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Axolotl", + }, + "value": 4169, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Firefighter Dalmation", + "pt": 2, + }, + "value": 1492794168, + }, + { + "category": "Pet", + "configData": { + "id": "African Wild Dog", + }, + "value": 87951, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Agony", + "pt": 1, + "sh": true, + }, + "value": 770, + }, + { + "category": "Pet", + "configData": { + "id": "Slime", + }, + "value": 56154, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Unicorn", + }, + "value": 15, + }, + { + "category": "Pet", + "configData": { + "id": "Aura Bull", + "pt": 2, + "sh": true, + }, + "value": 585794775, + }, + { + "category": "Pet", + "configData": { + "id": "Dark Dragon", + }, + "value": 428, + }, + { + "category": "Pet", + "configData": { + "id": "Silver Moose", + }, + "value": 17, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gym Unicorn", + "pt": 2, + }, + "value": 16489809238, + }, + { + "category": "Pet", + "configData": { + "id": "Plague Dragon", + "pt": 2, + }, + "value": 3043, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Dragon", + "pt": 2, + "sh": true, + }, + "value": 325, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Elephant", + "sh": true, + }, + "value": 640521257, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holly Fawn", + "pt": 1, + "sh": true, + }, + "value": 1583409491, + }, + { + "category": "Pet", + "configData": { + "id": "Lunar Fox", + }, + "value": 14, + }, + { + "category": "Pet", + "configData": { + "id": "Storm Axolotl Ball", + "pt": 2, + "sh": true, + }, + "value": 4356, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Rhino", + "pt": 2, + "sh": true, + }, + "value": 74000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ooze Corgi", + "sh": true, + }, + "value": 13562419646, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Marshmallow Agony", + "sh": true, + }, + "value": 455004050, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Panda", + "sh": true, + }, + "value": 22280553, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Diamond Dog", + "pt": 1, + "sh": true, + }, + "value": 13200000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rhino", + "pt": 1, + "sh": true, + }, + "value": 1231384220, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Obsidian Dragon", + "pt": 2, + }, + "value": 22139168217, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Festive Elf", + "sh": true, + }, + "value": 113067399, + }, + { + "category": "Pet", + "configData": { + "id": "Cold Butterfly", + }, + "value": 77, + }, + { + "category": "Pet", + "configData": { + "id": "Nightfall Ram", + "pt": 1, + }, + "value": 27265641, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sun Angelus", + "sh": true, + }, + "value": 4024027367, + }, + { + "category": "Pet", + "configData": { + "id": "Grim Reaper", + "sh": true, + }, + "value": 55414, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Knight Beagle", + "sh": true, + }, + "value": 79886918, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mantis Shrimp", + "sh": true, + }, + "value": 116941534, + }, + { + "category": "Pet", + "configData": { + "id": "Huge LeGoat Ball", + "sh": true, + }, + "value": 402450502, + }, + { + "category": "Pet", + "configData": { + "id": "Obsidian Griffin", + "sh": true, + }, + "value": 1011, + }, + { + "category": "Pet", + "configData": { + "id": "Virus Griffin", + }, + "value": 10179, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blazing Shark", + "pt": 2, + }, + "value": 804359952, + }, + { + "category": "Pet", + "configData": { + "id": "Classic Bunny", + "sh": true, + }, + "value": 9715942, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Helicopter Cat", + "sh": true, + }, + "value": 122858248, + }, + { + "category": "Pet", + "configData": { + "id": "Silver Stag", + }, + "value": 10526140, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Dragonfruit Dragon", + }, + "value": 14418710905, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Huge Chroma Butterfly", + "pt": 2, + }, + "value": 855408650, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Slime", + }, + "value": 2183, + }, + { + "category": "Pet", + "configData": { + "id": "Present Cat", + }, + "value": 4505826, + }, + { + "category": "Pet", + "configData": { + "id": "Exquisite Cat", + "pt": 2, + }, + "value": 123602429, + }, + { + "category": "Card", + "configData": { + "id": "Gamer Shiba Card", + "pt": 2, + "sh": true, + }, + "value": 66035, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tropical Flamingo", + "pt": 2, + }, + "value": 269249354, + }, + { + "category": "Pet", + "configData": { + "id": "Patrick Star", + "sh": true, + }, + "value": 38996328, + }, + { + "category": "Pet", + "configData": { + "id": "Golf Griffin", + }, + "value": 65, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mr Krabs", + "sh": true, + }, + "value": 2419372315, + }, + { + "category": "Pet", + "configData": { + "id": "Amethyst Dragon", + "pt": 2, + }, + "value": 102251864, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Warrior Wolf", + "pt": 2, + }, + "value": 239847431, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Lamb", + "pt": 1, + }, + "value": 19283485, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Prickly Panda", + "pt": 2, + }, + "value": 16291115631, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Cat", + "pt": 1, + "sh": true, + }, + "value": 381774660, + }, + { + "category": "Pet", + "configData": { + "id": "Hippomelon Ball", + "pt": 2, + }, + "value": 98437168, + }, + { + "category": "Pet", + "configData": { + "id": "Inferno Stealth Bobcat", + "pt": 2, + }, + "value": 3840000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Autumn Chest Mimic", + "pt": 1, + }, + "value": 258684036, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cow", + "pt": 1, + }, + "value": 627607918, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Bear", + }, + "value": 52, + }, + { + "category": "Pet", + "configData": { + "id": "Aura Dominus", + "pt": 2, + "sh": true, + }, + "value": 1728455608, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Cat", + "pt": 2, + }, + "value": 16, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Nightmare", + "sh": true, + }, + "value": 4658351633, + }, + { + "category": "Pet", + "configData": { + "id": "Marshmallow Kitsune", + "pt": 2, + "sh": true, + }, + "value": 413, + }, + { + "category": "Pet", + "configData": { + "id": "Glow Worm", + "pt": 1, + }, + "value": 6377, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Lamb", + }, + "value": 121, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luchador Coyote", + "pt": 2, + }, + "value": 675485133, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Inferno Dominus", + "pt": 2, + }, + "value": 2759358698, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Sea Dragon", + "pt": 1, + "sh": true, + }, + "value": 208787987200, + }, + { + "category": "Pet", + "configData": { + "id": "Fox", + }, + "value": 5132, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Hippomelon", + "pt": 1, + }, + "value": 215, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pink Marshmallow Chick", + "sh": true, + }, + "value": 6126463041, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Unicorn", + "pt": 2, + }, + "value": 4581589616, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Yin-Yang Dragon", + "pt": 2, + }, + "value": 1202119791, + }, + { + "category": "Misc", + "configData": { + "id": "Water Gun", + }, + "value": 6692306, + }, + { + "category": "Pet", + "configData": { + "id": "North Pole Bunny", + "pt": 2, + }, + "value": 914, + }, + { + "category": "Pet", + "configData": { + "id": "Flex Fluffy Cat", + "pt": 2, + "sh": true, + }, + "value": 341738345, + }, + { + "category": "Pet", + "configData": { + "id": "Coach Tiger", + "pt": 2, + }, + "value": 656, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Wolf", + "pt": 2, + "sh": true, + }, + "value": 653, + }, + { + "category": "Pet", + "configData": { + "id": "Cosmic Axolotl", + "pt": 2, + }, + "value": 23163668, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Emoji Monkey", + "sh": true, + }, + "value": 1325935891, + }, + { + "category": "Pet", + "configData": { + "id": "Colorful Dragon", + }, + "value": 67, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Matryoshka Bear", + }, + "value": 204598325335, + }, + { + "category": "Pet", + "configData": { + "cv": 6, + "id": "Huge Chroma Ink Blob", + "sh": true, + }, + "value": 2238306515, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Robot Ball", + "pt": 1, + "sh": true, + }, + "value": 1166492783, + }, + { + "category": "Pet", + "configData": { + "id": "Corrupt Skeleton", + "sh": true, + }, + "value": 649, + }, + { + "category": "Pet", + "configData": { + "id": "Comet Agony", + "pt": 2, + }, + "value": 1248, + }, + { + "category": "Pet", + "configData": { + "id": "Stealth Bobcat", + "pt": 1, + "sh": true, + }, + "value": 192949025, + }, + { + "category": "Pet", + "configData": { + "cv": 1, + "id": "Huge Chroma Butterfly", + "pt": 2, + }, + "value": 854758515, + }, + { + "category": "Pet", + "configData": { + "id": "Matryoshka Capybara", + "pt": 2, + "sh": true, + }, + "value": 523819667, + }, + { + "category": "Pet", + "configData": { + "cv": 5, + "id": "Huge Chroma Unicorn", + "sh": true, + }, + "value": 509230943, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Storm Axolotl Ball", + "sh": true, + }, + "value": 2221166187, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mech Dino", + "pt": 1, + "sh": true, + }, + "value": 2995362304, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vampire Bat", + "pt": 2, + }, + "value": 3400147656, + }, + { + "category": "Consumable", + "configData": { + "id": "Factory Damage Booster", + "tn": 2, + }, + "value": 60, + }, + { + "category": "Pet", + "configData": { + "id": "Painted Balloon", + "pt": 2, + }, + "value": 94, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vampire Bat", + "sh": true, + }, + "value": 903404810, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Dino", + "pt": 1, + }, + "value": 57309318, + }, + { + "category": "Pet", + "configData": { + "id": "Albino Bat", + }, + "value": 44, + }, + { + "category": "Pet", + "configData": { + "id": "M-2 PROTOTYPE", + "pt": 2, + }, + "value": 2728, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Toy Chest Mimic", + "pt": 1, + "sh": true, + }, + "value": 388890184, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gingerbread Dragon", + "pt": 1, + }, + "value": 1290839237, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Wolf", + "pt": 2, + "sh": true, + }, + "value": 391, + }, + { + "category": "Pet", + "configData": { + "id": "Storm Dominus", + "sh": true, + }, + "value": 18808133, + }, + { + "category": "Pet", + "configData": { + "id": "Neon Cat", + "sh": true, + }, + "value": 19102932, + }, + { + "category": "Pet", + "configData": { + "id": "Cupcake", + "pt": 2, + }, + "value": 486, + }, + { + "category": "Pet", + "configData": { + "id": "Griffin", + }, + "value": 38, + }, + { + "category": "Pet", + "configData": { + "id": "Three Headed Dragon", + "pt": 2, + }, + "value": 770, + }, + { + "category": "Pet", + "configData": { + "id": "Blurred Bear Ball", + "pt": 2, + }, + "value": 201, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Good vs Evil Dragon", + "pt": 1, + }, + "value": 533817321, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Corgi", + }, + "value": 739, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Stunt Cat", + }, + "value": 13853460251, + }, + { + "category": "Pet", + "configData": { + "id": "Mossy Lamb", + "pt": 2, + }, + "value": 4334, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Cat", + "sh": true, + }, + "value": 13455990, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Scarecrow Dog", + "sh": true, + }, + "value": 206108095, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snow Crab", + "pt": 1, + "sh": true, + }, + "value": 5307912240, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Deer", + "sh": true, + }, + "value": 2126, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Strawberry Corgi", + "sh": true, + }, + "value": 397436060, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Coach Tiger", + "pt": 1, + "sh": true, + }, + "value": 10518048251, + }, + { + "category": "Pet", + "configData": { + "id": "Runebound Bobcat", + "pt": 1, + }, + "value": 29, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghoul Horse", + "pt": 2, + }, + "value": 934429970, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Crab", + }, + "value": 1257498381, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Dark Fox", + "pt": 2, + }, + "value": 27225972027, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Baby Piglet", + "pt": 2, + }, + "value": 4750456734, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Angel Cat", + "pt": 1, + }, + "value": 1814682754, + }, + { + "category": "Pet", + "configData": { + "id": "The Easter Bunny", + "pt": 1, + }, + "value": 50608, + }, + { + "category": "Pet", + "configData": { + "id": "Crackling Dragon", + "pt": 2, + "sh": true, + }, + "value": 1715650, + }, + { + "category": "Pet", + "configData": { + "id": "Cosmic Dragon", + "pt": 2, + }, + "value": 79094841, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evil Snowman", + "pt": 1, + }, + "value": 82179224, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Unicorn", + }, + "value": 266317471, + }, + { + "category": "Pet", + "configData": { + "id": "Orange Squirrel", + "pt": 1, + }, + "value": 312, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fluffy Cat", + "pt": 1, + "sh": true, + }, + "value": 283225203, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Polar Bear", + "pt": 2, + }, + "value": 950, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiedye Dog", + "pt": 2, + }, + "value": 4309043622, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Raining Love Dog", + "pt": 1, + }, + "value": 55827764, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Puurple Cat", + "pt": 1, + }, + "value": 350942524, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Seal", + "pt": 1, + }, + "value": 15197, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Deer", + "pt": 1, + }, + "value": 5026, + }, + { + "category": "Pet", + "configData": { + "id": "Redstone Cat", + "sh": true, + }, + "value": 33585257, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soul Cat", + "pt": 2, + }, + "value": 1142765035, + }, + { + "category": "Pet", + "configData": { + "id": "Scribe Squirrel", + "pt": 2, + }, + "value": 671, + }, + { + "category": "Pet", + "configData": { + "id": "Googly Cat", + "sh": true, + }, + "value": 8359652, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Bearserker", + "pt": 2, + "sh": true, + }, + "value": 167175779, + }, + { + "category": "Pet", + "configData": { + "id": "Sad Bunny", + "sh": true, + }, + "value": 11571094, + }, + { + "category": "Pet", + "configData": { + "id": "Scary Cat", + }, + "value": 1066, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Signature BIG Maskot Card", + }, + "value": 5847452030, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Inferno Stealth Bobcat", + "pt": 1, + }, + "value": 78671052, + }, + { + "category": "Pet", + "configData": { + "id": "Zombie Squirrel", + }, + "value": 3915, + }, + { + "category": "Pet", + "configData": { + "id": "Glade Griffin", + "sh": true, + }, + "value": 3275, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Basketball Corgi", + "pt": 1, + "sh": true, + }, + "value": 680640489, + }, + { + "category": "Card", + "configData": { + "id": "Huge Sea Dragon Card", + "pt": 2, + "sh": true, + }, + "value": 705191116, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Sloth", + "pt": 2, + }, + "value": 52, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Exquisite Parrot", + "pt": 1, + "sh": true, + }, + "value": 3100283092, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pumpkin Dog", + "pt": 1, + "sh": true, + }, + "value": 1370775090, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doodle Cat", + "pt": 1, + }, + "value": 79885068, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Penguin", + }, + "value": 5745, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Neon Twilight Wolf", + "pt": 2, + }, + "value": 12343138999, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fragmented Dominus", + "pt": 2, + }, + "value": 3700029588, + }, + { + "category": "Pet", + "configData": { + "id": "Red Fox", + "pt": 1, + }, + "value": 585, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bloo Cat", + "pt": 2, + }, + "value": 2126070669, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blue Balloon Cat", + }, + "value": 12810194517, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blurred Owl", + "pt": 2, + "sh": true, + }, + "value": 2572952785, + }, + { + "category": "Pet", + "configData": { + "id": "Huge M-10 PROTOTYPE", + "pt": 2, + }, + "value": 6755768629, + }, + { + "category": "Pet", + "configData": { + "id": "Astronaut Cat", + }, + "value": 13, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Elephant", + }, + "value": 19483, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stealth Dragon", + "pt": 2, + }, + "value": 474277410, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Yin-Yang Bunny", + "pt": 2, + "sh": true, + }, + "value": 6315581303, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Dragon", + "pt": 1, + }, + "value": 29, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fancy Axolotl", + "pt": 1, + "sh": true, + }, + "value": 223641933, + }, + { + "category": "Pet", + "configData": { + "id": "Blazing Corgi", + "pt": 2, + }, + "value": 24036053, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Anteater", + "pt": 2, + }, + "value": 64, + }, + { + "category": "Pet", + "configData": { + "id": "Present Chest Mimic", + "sh": true, + }, + "value": 23574927, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anime Unicorn", + "pt": 2, + }, + "value": 4684971493, + }, + { + "category": "Pet", + "configData": { + "id": "Sprout Wyrmling", + }, + "value": 84, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Monkey", + "pt": 1, + }, + "value": 2479191926, + }, + { + "category": "Pet", + "configData": { + "id": "Parrot", + }, + "value": 8, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Spitting Dino", + "pt": 1, + }, + "value": 59, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Fairy", + "pt": 1, + }, + "value": 217014157, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Corgi", + "pt": 2, + }, + "value": 7753145951, + }, + { + "category": "Booth", + "configData": { + "id": "Safety", + }, + "value": 226274406, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Owl", + }, + "value": 11, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Bunny", + "pt": 2, + }, + "value": 95, + }, + { + "category": "Pet", + "configData": { + "id": "Nebula Dragon", + }, + "value": 1339991870, + }, + { + "category": "Pet", + "configData": { + "id": "Alien Octopus", + }, + "value": 14, + }, + { + "category": "Pet", + "configData": { + "id": "Ghostly Cat", + "pt": 2, + "sh": true, + }, + "value": 426383033, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Raccoon", + "sh": true, + }, + "value": 77601734, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Flex Cat", + "sh": true, + }, + "value": 401154047590, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sphinx", + "pt": 1, + }, + "value": 831095197, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Dominus", + "pt": 2, + }, + "value": 44758, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bison", + "pt": 2, + "sh": true, + }, + "value": 2232443171, + }, + { + "category": "Pet", + "configData": { + "id": "Molten Wisp", + "pt": 1, + }, + "value": 855, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Prison Cat", + "pt": 2, + }, + "value": 158877574, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Bunny", + "pt": 2, + }, + "value": 1375, + }, + { + "category": "Pet", + "configData": { + "id": "M-10 PROTOTYPE", + "pt": 1, + "sh": true, + }, + "value": 210308, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Starlight Pony", + "sh": true, + }, + "value": 26985755087, + }, + { + "category": "Pet", + "configData": { + "id": "Retro Bulldog", + "pt": 2, + }, + "value": 1022868, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Scary Corgi", + "pt": 1, + }, + "value": 96155804, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Holiday Owl", + "pt": 2, + }, + "value": 155143200000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Clover Butterfly", + "pt": 2, + }, + "value": 33434876165, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Minecart Hamster", + "pt": 1, + "sh": true, + }, + "value": 402715721, + }, + { + "category": "Pet", + "configData": { + "id": "Lovemelon", + "sh": true, + }, + "value": 63896853, + }, + { + "category": "Pet", + "configData": { + "id": "Wild Frost Agony", + "pt": 2, + "sh": true, + }, + "value": 81, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evil Imp", + "pt": 2, + }, + "value": 254274554, + }, + { + "category": "Misc", + "configData": { + "id": "Hellfire Core", + }, + "value": 3659, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Balloon Axolotl", + "sh": true, + }, + "value": 3068544045, + }, + { + "category": "Pet", + "configData": { + "id": "Bleebo The Alien", + }, + "value": 54, + }, + { + "category": "Pet", + "configData": { + "id": "Treasure Scorpion", + "pt": 2, + "sh": true, + }, + "value": 302545249, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mermaid Cat", + "pt": 1, + "sh": true, + }, + "value": 310284016, + }, + { + "category": "Pet", + "configData": { + "id": "Midnight Cat", + "pt": 2, + "sh": true, + }, + "value": 53714400984, + }, + { + "category": "Pet", + "configData": { + "id": "Turbo Cheetah", + "pt": 2, + }, + "value": 146, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snow Globe Hamster", + "pt": 2, + }, + "value": 1817615384, + }, + { + "category": "Card", + "configData": { + "id": "Pog Dragon Card", + "pt": 2, + }, + "value": 9424, + }, + { + "category": "Pet", + "configData": { + "id": "Blazing Bat", + "sh": true, + }, + "value": 11566397, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ducky", + "pt": 2, + }, + "value": 1602225561, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sun Agony", + "sh": true, + }, + "value": 2721456637, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Unicorn Ball", + "pt": 2, + }, + "value": 155, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Party Cat", + "pt": 1, + }, + "value": 15334417268, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Peppermint Angelus", + "pt": 2, + }, + "value": 4347024748, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Guilded Raven", + "sh": true, + }, + "value": 19269494102, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Alien", + }, + "value": 3006, + }, + { + "category": "Pet", + "configData": { + "cv": 2, + "id": "Huge Chroma Unicorn", + "sh": true, + }, + "value": 1359978752, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Panther", + "sh": true, + }, + "value": 4511991800, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 2", + }, + "value": 10506910624, + }, + { + "category": "Pet", + "configData": { + "id": "Pumpkin Scarecrow", + "pt": 2, + }, + "value": 1198, + }, + { + "category": "Pet", + "configData": { + "id": "Cosmic Axolotl", + "sh": true, + }, + "value": 14580176, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Otter", + "pt": 1, + "sh": true, + }, + "value": 532424482, + }, + { + "category": "Pet", + "configData": { + "id": "Silver Moose", + "pt": 1, + }, + "value": 332, + }, + { + "category": "Pet", + "configData": { + "id": "The Easter Bunny", + "pt": 2, + }, + "value": 50, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Valentines Axolotl", + "pt": 2, + }, + "value": 73672000000, + }, + { + "category": "Pet", + "configData": { + "id": "Stealth Bobcat", + "pt": 1, + }, + "value": 11602744, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Mushroom", + }, + "value": 667042230, + }, + { + "category": "Pet", + "configData": { + "id": "Potion Poodle", + "pt": 1, + }, + "value": 2398, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Corgi", + "pt": 2, + }, + "value": 48400000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Torpedo Shepherd", + "pt": 1, + }, + "value": 48143031, + }, + { + "category": "Pet", + "configData": { + "id": "Fossil Dragon", + }, + "value": 1427, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tropical Toucan", + "pt": 1, + }, + "value": 49597754, + }, + { + "category": "Pet", + "configData": { + "id": "Demolition Cat", + }, + "value": 23, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Candycane Unicorn", + "pt": 2, + "sh": true, + }, + "value": 23200000000, + }, + { + "category": "Pet", + "configData": { + "id": "Googly Cat", + "pt": 2, + "sh": true, + }, + "value": 966204844, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Festive Elf", + "pt": 1, + "sh": true, + }, + "value": 595298278, + }, + { + "category": "Pet", + "configData": { + "id": "Lit Cat", + "sh": true, + }, + "value": 45121, + }, + { + "category": "Pet", + "configData": { + "id": "Old Wizard Dragon", + }, + "value": 14083795, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Robber Cat", + "pt": 1, + }, + "value": 262434472, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Dragon", + }, + "value": 29, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blurred Bear Ball", + "sh": true, + }, + "value": 102373149, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Aura Cat", + }, + "value": 213889552864, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sloth", + "sh": true, + }, + "value": 803880648, + }, + { + "category": "Pet", + "configData": { + "id": "Axolotl", + "pt": 1, + }, + "value": 128, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Dominus", + "sh": true, + }, + "value": 406109, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Bison", + "pt": 2, + "sh": true, + }, + "value": 11421470720, + }, + { + "category": "Pet", + "configData": { + "id": "Cat", + "pt": 2, + }, + "value": 444, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Scarecrow Dog", + "pt": 1, + "sh": true, + }, + "value": 239731409, + }, + { + "category": "Pet", + "configData": { + "id": "Lit Cat", + "pt": 2, + "sh": true, + }, + "value": 240440, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sage Axolotl", + "pt": 1, + }, + "value": 54897437, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Samurai Dragon", + "pt": 1, + }, + "value": 288096254, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Yin-Yang Bunny", + "pt": 2, + }, + "value": 1554268772, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Torpedo Shepherd", + "sh": true, + }, + "value": 348486553, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Bee", + "pt": 2, + }, + "value": 256789358, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Scarecrow Cat", + "pt": 1, + }, + "value": 80073396, + }, + { + "category": "Pet", + "configData": { + "id": "Present Chest Mimic", + "pt": 2, + "sh": true, + }, + "value": 1287453084, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Meebo in a Spaceship", + "pt": 2, + }, + "value": 569304094, + }, + { + "category": "Pet", + "configData": { + "id": "Hippomelon Ball", + }, + "value": 8841775, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Axolotl", + "sh": true, + }, + "value": 564699714, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Dino", + "pt": 2, + }, + "value": 1675, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Cat", + "pt": 2, + }, + "value": 538, + }, + { + "category": "Pet", + "configData": { + "id": "Player Panda", + }, + "value": 54, + }, + { + "category": "Pet", + "configData": { + "id": "Abstract Dragon", + "sh": true, + }, + "value": 81456, + }, + { + "category": "Pet", + "configData": { + "id": "Bread Shiba", + "pt": 2, + }, + "value": 3862, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Festive Walrus", + "sh": true, + }, + "value": 712995345, + }, + { + "category": "Pet", + "configData": { + "id": "Nightmare Kraken", + "sh": true, + }, + "value": 31726198, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Willow Wisp", + "pt": 1, + }, + "value": 122677172, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Midnight Zebra", + "pt": 2, + }, + "value": 7270557923, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Axolotl", + "sh": true, + }, + "value": 26800487, + }, + { + "category": "Pet", + "configData": { + "id": "Stealth Dragon", + "sh": true, + }, + "value": 15893748, + }, + { + "category": "Booth", + "configData": { + "id": "Money", + }, + "value": 263002816, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blue Lucky Block", + "sh": true, + }, + "value": 1229976026, + }, + { + "category": "Pet", + "configData": { + "id": "Baby Kitten", + "sh": true, + }, + "value": 62, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wicked Empyrean Dragon", + "pt": 1, + }, + "value": 1590834944, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Globe Axolotl", + "pt": 2, + }, + "value": 19260051, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gorilla", + "pt": 1, + "sh": true, + }, + "value": 3701600000, + }, + { + "category": "Pet", + "configData": { + "id": "Nutcracker Cat", + }, + "value": 1891230, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Dragon", + }, + "value": 4036583, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Fairy", + "pt": 2, + }, + "value": 207040, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Goblin", + "pt": 1, + }, + "value": 106738, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tropical Parrot", + "pt": 2, + }, + "value": 190284666, + }, + { + "category": "Pet", + "configData": { + "id": "Leafy Deer", + "pt": 2, + "sh": true, + }, + "value": 485040000, + }, + { + "category": "Pet", + "configData": { + "id": "Pumpkin Scarecrow", + }, + "value": 54, + }, + { + "category": "Consumable", + "configData": { + "id": "Super Springy Shoes", + "tn": 1, + }, + "value": 187687, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Rich Cat", + }, + "value": 17919737512, + }, + { + "category": "Booth", + "configData": { + "id": "Gingerbread", + }, + "value": 363965398, + }, + { + "category": "Pet", + "configData": { + "id": "Matryoshka Capybara", + "sh": true, + }, + "value": 16998105, + }, + { + "category": "Tower", + "configData": { + "id": "Disco Ball Agony", + }, + "value": 199832, + }, + { + "category": "Pet", + "configData": { + "id": "Emerald Owl", + }, + "value": 37, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 5", + }, + "value": 3383301453, + }, + { + "category": "Pet", + "configData": { + "id": "Treasure Golem", + "pt": 2, + }, + "value": 48840094, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cappuccina Brainrot", + "pt": 2, + "sh": true, + }, + "value": 360435200000, + }, + { + "category": "Pet", + "configData": { + "id": "Coconut Crab", + "pt": 2, + }, + "value": 116, + }, + { + "category": "Pet", + "configData": { + "id": "Runebound Bobcat", + }, + "value": 12, + }, + { + "category": "Pet", + "configData": { + "id": "Midnight Axolotl", + }, + "value": 58, + }, + { + "category": "Pet", + "configData": { + "id": "Quantum Goat", + }, + "value": 1850, + }, + { + "category": "Pet", + "configData": { + "id": "Fireball Cat", + }, + "value": 346, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Reversed", + }, + "value": 750703050, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Treasure Turtle", + "pt": 1, + }, + "value": 254640658, + }, + { + "category": "Pet", + "configData": { + "id": "Kawaii Mushroom Fox", + }, + "value": 11936, + }, + { + "category": "Pet", + "configData": { + "id": "Tropical Parrot", + "pt": 2, + }, + "value": 967666326, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Green Balloon Cat", + "pt": 2, + }, + "value": 4250499006, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Axolotl", + "pt": 2, + }, + "value": 4570449377, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sensei Penguin", + }, + "value": 12541318204, + }, + { + "category": "Card", + "configData": { + "id": "Wicked Agony Card", + "pt": 1, + "sh": true, + }, + "value": 5103053, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holly Fawn", + "pt": 2, + }, + "value": 127084374, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Piggy", + "pt": 2, + }, + "value": 8266499756, + }, + { + "category": "Pet", + "configData": { + "id": "Super Tiger", + "sh": true, + }, + "value": 16292993, + }, + { + "category": "Card", + "configData": { + "id": "Huge Storm Axolotl Card", + "pt": 1, + }, + "value": 41361711, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Googly Corgi", + "pt": 2, + }, + "value": 1186984241, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chroma Phoenix", + "sh": true, + }, + "value": 692898249, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Raccoon", + "sh": true, + }, + "value": 304355, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Forcefield Cat", + "pt": 2, + }, + "value": 2117487682, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stargazing Wolf", + "pt": 2, + }, + "value": 1090939358, + }, + { + "category": "Pet", + "configData": { + "id": "Frontman Jellyfish", + "pt": 1, + }, + "value": 1370, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Obsidian Dragon", + "pt": 1, + }, + "value": 8485462778, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Bat", + }, + "value": 645, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Tiger", + "pt": 1, + }, + "value": 83587287, + }, + { + "category": "Card", + "configData": { + "id": "Wicked Agony Card", + "pt": 2, + }, + "value": 103991, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Huge Chroma Phoenix", + "sh": true, + }, + "value": 523403295, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Easter Golem", + "pt": 2, + "sh": true, + }, + "value": 1000000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Devil Agony", + "pt": 2, + }, + "value": 851756463, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cyborg Dragon", + "pt": 1, + }, + "value": 290304420, + }, + { + "category": "Pet", + "configData": { + "id": "Nightfall Pegasus", + "pt": 1, + }, + "value": 23582417, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Butterfly", + "pt": 2, + }, + "value": 2505355636, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valentines Axolotl", + "pt": 2, + }, + "value": 122622647, + }, + { + "category": "Card", + "configData": { + "id": "Camo Axolotl Card", + "sh": true, + }, + "value": 10831, + }, + { + "category": "Pet", + "configData": { + "id": "Corgi", + "sh": true, + }, + "value": 2870, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Captain Octopus", + "pt": 1, + "sh": true, + }, + "value": 120584000000, + }, + { + "category": "Pet", + "configData": { + "id": "Skeleton Cat", + }, + "value": 10, + }, + { + "category": "Pet", + "configData": { + "id": "Sun Griffin", + "pt": 1, + "sh": true, + }, + "value": 1267657, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mosaic Lamb", + "sh": true, + }, + "value": 265013318, + }, + { + "category": "Pet", + "configData": { + "id": "Angry Dino", + "pt": 2, + }, + "value": 73, + }, + { + "category": "Pet", + "configData": { + "id": "Cupcake Unicorn", + "sh": true, + }, + "value": 60, + }, + { + "category": "Pet", + "configData": { + "id": "Celestial Dragon", + "sh": true, + }, + "value": 456888752, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Crab", + "pt": 1, + }, + "value": 852838623, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tropical Flamingo", + "pt": 2, + "sh": true, + }, + "value": 122140779998, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Student Corgi", + "sh": true, + }, + "value": 213957312, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crystal Bat", + "pt": 2, + }, + "value": 371059244, + }, + { + "category": "Pet", + "configData": { + "id": "Totem Cat", + "pt": 2, + }, + "value": 104476314, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Surfboard Corgi", + "sh": true, + }, + "value": 15407456033, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wicked Empyrean Dragon", + "pt": 2, + }, + "value": 10240838104, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Shark", + }, + "value": 9984743909, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Basketball Retriever", + "pt": 1, + "sh": true, + }, + "value": 82580000000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Kitsune Fox", + }, + "value": 16541861545, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Classic Dragon", + "sh": true, + }, + "value": 777317456, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Cartoon Cat", + }, + "value": 40143516110, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hologram Shark", + "pt": 2, + }, + "value": 1549746170, + }, + { + "category": "Pet", + "configData": { + "id": "Tropical Flamingo", + "pt": 1, + }, + "value": 35270721, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anime Scorpion", + "pt": 2, + "sh": true, + }, + "value": 1000000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Otter", + "pt": 1, + }, + "value": 630423915, + }, + { + "category": "Pet", + "configData": { + "id": "Hippokin", + "pt": 2, + "sh": true, + }, + "value": 190115, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Axolotl", + }, + "value": 14, + }, + { + "category": "Pet", + "configData": { + "id": "Love Lion", + "pt": 2, + "sh": true, + }, + "value": 1125461, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Dog", + }, + "value": 39, + }, + { + "category": "Pet", + "configData": { + "id": "Angry Dino", + }, + "value": 18, + }, + { + "category": "Pet", + "configData": { + "id": "Hologram Axolotl", + "sh": true, + }, + "value": 11968213, + }, + { + "category": "Pet", + "configData": { + "id": "Night Terror Dog", + "pt": 2, + }, + "value": 419, + }, + { + "category": "Pet", + "configData": { + "id": "Hypnotic Dragon", + "pt": 2, + }, + "value": 45606180, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rootkin Fox", + "pt": 2, + }, + "value": 326331045, + }, + { + "category": "Pet", + "configData": { + "id": "Hedgehog", + }, + "value": 4253, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Pegasus", + "pt": 2, + }, + "value": 122, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Librarian Beaver", + "pt": 1, + }, + "value": 81748017, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Fish", + }, + "value": 16, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Orange Balloon Cat", + "pt": 2, + }, + "value": 6956679271, + }, + { + "category": "Pet", + "configData": { + "id": "Hellhound", + }, + "value": 341, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Enchanted Dog", + "pt": 1, + }, + "value": 145673804, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crash Dummy Noob", + "pt": 1, + }, + "value": 123012208, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Monkey", + }, + "value": 36, + }, + { + "category": "Pet", + "configData": { + "id": "Minecart Piggy", + }, + "value": 54, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Bunny", + "pt": 2, + }, + "value": 54888, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hi-Tech Tiger", + "pt": 1, + }, + "value": 135608852, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Jurassic Dragon", + }, + "value": 291871701513, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shark", + "pt": 2, + }, + "value": 6635841231, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Treasure Mimic", + "sh": true, + }, + "value": 70164307623, + }, + { + "category": "Pet", + "configData": { + "id": "Paintbot Spider", + "pt": 1, + }, + "value": 54, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evil Snowman", + "sh": true, + }, + "value": 990598575, + }, + { + "category": "Pet", + "configData": { + "id": "Grass Bunny", + }, + "value": 98, + }, + { + "category": "Pet", + "configData": { + "id": "Quartz Fox", + }, + "value": 45902, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vibrant Toucan", + "sh": true, + }, + "value": 104638233, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Hydra Axolotl", + "pt": 1, + }, + "value": 6430423744, + }, + { + "category": "Pet", + "configData": { + "id": "Bee", + "pt": 1, + }, + "value": 871, + }, + { + "category": "Pet", + "configData": { + "id": "Strawhat Tanuki", + "pt": 2, + "sh": true, + }, + "value": 3078313, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Quantum Agony", + "sh": true, + }, + "value": 358872963, + }, + { + "category": "Pet", + "configData": { + "id": "Leprechaun Dog", + "pt": 1, + }, + "value": 26, + }, + { + "category": "Pet", + "configData": { + "id": "Love Lion", + }, + "value": 408, + }, + { + "category": "Pet", + "configData": { + "cv": 5, + "id": "Huge Chroma Butterfly", + "pt": 2, + }, + "value": 753655619, + }, + { + "category": "Pet", + "configData": { + "cv": 1, + "id": "Huge Chroma Phoenix", + "sh": true, + }, + "value": 854201710, + }, + { + "category": "Pet", + "configData": { + "id": "Bearserker", + }, + "value": 2351, + }, + { + "category": "Pet", + "configData": { + "id": "Pristine Snake", + }, + "value": 44135, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Corgi", + "pt": 1, + "sh": true, + }, + "value": 2478003855, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pilgrim Turkey", + "pt": 2, + }, + "value": 16498271654, + }, + { + "category": "Pet", + "configData": { + "id": "Calico Cat", + }, + "value": 23806, + }, + { + "category": "Pet", + "configData": { + "id": "Soul Cat", + "sh": true, + }, + "value": 9784732, + }, + { + "category": "Pet", + "configData": { + "id": "Cartoon Demon", + "sh": true, + }, + "value": 32999544, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Virus Griffin", + "pt": 2, + }, + "value": 710269403, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Squirrel", + "pt": 2, + "sh": true, + }, + "value": 7354709299, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Angelus", + "sh": true, + }, + "value": 791747057, + }, + { + "category": "Pet", + "configData": { + "id": "Train Conductor Dog", + }, + "value": 1242, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Cat", + "pt": 2, + }, + "value": 4519398569, + }, + { + "category": "Pet", + "configData": { + "id": "Avenging Griffin", + "pt": 2, + "sh": true, + }, + "value": 1679, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Huge Chroma Unicorn", + "sh": true, + }, + "value": 682286353, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stealth Dragon", + "pt": 1, + }, + "value": 48747520, + }, + { + "category": "Pet", + "configData": { + "id": "Sage Axolotl", + "pt": 2, + "sh": true, + }, + "value": 10441, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Unicorn", + "pt": 1, + }, + "value": 433224968, + }, + { + "category": "Pet", + "configData": { + "id": "Astronaut Cat", + "pt": 1, + }, + "value": 6272831, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Green Cobra", + "pt": 1, + "sh": true, + }, + "value": 268233965, + }, + { + "category": "Pet", + "configData": { + "id": "Runic Wolf", + }, + "value": 32, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Griffin", + "pt": 1, + "sh": true, + }, + "value": 1108762084, + }, + { + "category": "Pet", + "configData": { + "id": "Beegle Dog", + "pt": 1, + }, + "value": 36546, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Player Penguin", + "pt": 1, + }, + "value": 95486856, + }, + { + "category": "Pet", + "configData": { + "id": "Gleebo The Alien", + }, + "value": 284, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Party Panda", + "pt": 1, + }, + "value": 26101508347, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valentines Bear", + "sh": true, + }, + "value": 144132146, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Neon Griffin", + "sh": true, + }, + "value": 3156634846, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Obsidian Griffin", + "sh": true, + }, + "value": 317877700, + }, + { + "category": "Pet", + "configData": { + "id": "Boulder Boar", + }, + "value": 182, + }, + { + "category": "Pet", + "configData": { + "id": "Mech Dino", + "pt": 2, + "sh": true, + }, + "value": 14174636, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Hamster", + "pt": 2, + "sh": true, + }, + "value": 130283, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skeleton Snake", + "pt": 1, + "sh": true, + }, + "value": 1607996800, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Werewolf", + "pt": 2, + }, + "value": 30594, + }, + { + "category": "Pet", + "configData": { + "id": "Fragmented Golem", + "pt": 1, + "sh": true, + }, + "value": 876887, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Reaper Cat", + "pt": 1, + }, + "value": 423049525, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tralala Brainrot", + "pt": 2, + "sh": true, + }, + "value": 207554293760, + }, + { + "category": "Card", + "configData": { + "id": "Pixel Dragon Card", + "pt": 1, + "sh": true, + }, + "value": 552262, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Corgi", + "pt": 1, + "sh": true, + }, + "value": 1124972, + }, + { + "category": "Pet", + "configData": { + "id": "Treasure Turtle", + }, + "value": 1087014, + }, + { + "category": "Pet", + "configData": { + "id": "Forged Turtle", + }, + "value": 1511, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lit Cat", + "pt": 1, + }, + "value": 60023218, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Coach Tiger", + }, + "value": 90647518, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Dog", + "pt": 1, + }, + "value": 7900, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Old Wizard Owl", + "pt": 2, + }, + "value": 321107194, + }, + { + "category": "Pet", + "configData": { + "id": "Royal Cloud Corgi", + }, + "value": 528, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Hacked Cat", + "pt": 2, + }, + "value": 1714671772, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skeleton", + "sh": true, + }, + "value": 531373023, + }, + { + "category": "Pet", + "configData": { + "id": "Student Corgi", + "pt": 1, + }, + "value": 5823, + }, + { + "category": "Pet", + "configData": { + "id": "Blurred Monkey", + "pt": 2, + }, + "value": 4858, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Moray Eel", + "pt": 1, + "sh": true, + }, + "value": 1792271178, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 3", + }, + "value": 7920668953, + }, + { + "category": "Fruit", + "configData": { + "id": "Pineapple", + "sh": true, + }, + "value": 99, + }, + { + "category": "Pet", + "configData": { + "id": "Good vs Evil Cat", + }, + "value": 100, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Penguin", + "sh": true, + }, + "value": 3101, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skeleton", + "pt": 2, + }, + "value": 719942390, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hydra Dino", + "pt": 1, + }, + "value": 81023394, + }, + { + "category": "Pet", + "configData": { + "id": "Good vs Evil Cat", + "sh": true, + }, + "value": 9693, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Hydra", + "pt": 2, + }, + "value": 14494, + }, + { + "category": "Pet", + "configData": { + "id": "Tralala Brainrot", + "pt": 2, + "sh": true, + }, + "value": 1021877007, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Cat", + "pt": 2, + }, + "value": 123, + }, + { + "category": "Pet", + "configData": { + "id": "Werewolf", + }, + "value": 714, + }, + { + "category": "Pet", + "configData": { + "id": "Splash Angelus", + "pt": 2, + "sh": true, + }, + "value": 1030633, + }, + { + "category": "Pet", + "configData": { + "id": "Chroma Phoenix", + "pt": 1, + "sh": true, + }, + "value": 1712165, + }, + { + "category": "Pet", + "configData": { + "id": "Patchwork Bunny", + "pt": 2, + "sh": true, + }, + "value": 287497016, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Crocodile", + "pt": 1, + }, + "value": 45, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Snowflake Dominus", + }, + "value": 11024412484, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kitsune Fox", + "sh": true, + }, + "value": 303836011, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Walrus", + "pt": 1, + }, + "value": 181740, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Dominus", + "pt": 2, + "sh": true, + }, + "value": 272208013, + }, + { + "category": "Pet", + "configData": { + "id": "Bloo Cat", + "pt": 1, + "sh": true, + }, + "value": 101520588, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Machete Dog", + "sh": true, + }, + "value": 2074621733, + }, + { + "category": "Card", + "configData": { + "id": "Lumi Axolotl Card", + "pt": 2, + "sh": true, + }, + "value": 89616, + }, + { + "category": "Pet", + "configData": { + "id": "M-2 PROTOTYPE", + "pt": 1, + "sh": true, + }, + "value": 670537, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Arcane Dominus", + "pt": 2, + }, + "value": 1983360648, + }, + { + "category": "Pet", + "configData": { + "id": "Sprout Pegasus", + "pt": 1, + }, + "value": 2585, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Raccoon", + }, + "value": 47, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nice Cat", + "pt": 2, + }, + "value": 3462545294, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pirate Dog", + "pt": 2, + }, + "value": 452414089, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Penguin", + "pt": 1, + }, + "value": 37864, + }, + { + "category": "Pet", + "configData": { + "id": "Crash Dummy Noob", + "sh": true, + }, + "value": 162599, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Water Zebra", + "pt": 1, + }, + "value": 71741123, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Piggy", + "pt": 2, + }, + "value": 787247, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wisp Deer", + }, + "value": 20094652196, + }, + { + "category": "Pet", + "configData": { + "id": "Tennis Squirrel", + }, + "value": 33, + }, + { + "category": "Pet", + "configData": { + "id": "Spitting Dino", + "pt": 2, + "sh": true, + }, + "value": 41649, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blimp Dragon", + "pt": 1, + }, + "value": 840929381, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mrs. Claws", + "pt": 1, + "sh": true, + }, + "value": 1263848573, + }, + { + "category": "Pet", + "configData": { + "id": "Totem Cub", + "pt": 1, + }, + "value": 1949, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gazelle", + "pt": 2, + "sh": true, + }, + "value": 7968427280, + }, + { + "category": "Pet", + "configData": { + "id": "Colorful Rock", + }, + "value": 621, + }, + { + "category": "Pet", + "configData": { + "id": "Crackling Dragon", + "pt": 1, + "sh": true, + }, + "value": 1788967, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evil Deer", + "pt": 2, + }, + "value": 4495851820, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fireball Cat", + "sh": true, + }, + "value": 537365420, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lunar Moth", + "sh": true, + }, + "value": 309403174, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Dolphin", + "pt": 1, + }, + "value": 3105, + }, + { + "category": "Pet", + "configData": { + "id": "Cinnamon Bunny", + "pt": 2, + "sh": true, + }, + "value": 4512320, + }, + { + "category": "Pet", + "configData": { + "id": "Coconut Flamingo", + "pt": 1, + }, + "value": 17, + }, + { + "category": "Pet", + "configData": { + "id": "Lunar Bat", + "pt": 2, + "sh": true, + }, + "value": 10677, + }, + { + "category": "Pet", + "configData": { + "id": "Immortuus", + "pt": 2, + }, + "value": 2271442, + }, + { + "category": "Pet", + "configData": { + "id": "Firefossil Wolf", + "pt": 2, + "sh": true, + }, + "value": 10422269, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Emerald Owl", + "sh": true, + }, + "value": 464618115, + }, + { + "category": "Pet", + "configData": { + "id": "Alien Parasite", + "pt": 1, + }, + "value": 484, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Slimezilla", + "pt": 1, + "sh": true, + }, + "value": 26202539295, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shark", + "pt": 1, + }, + "value": 335364684, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved King Cobra", + "pt": 2, + }, + "value": 1113997331, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Telescope Owl", + "pt": 1, + "sh": true, + }, + "value": 785928367, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Santa Dragon", + "sh": true, + }, + "value": 6062306340, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Dragon", + "pt": 1, + }, + "value": 2075, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crocodile", + "pt": 1, + "sh": true, + }, + "value": 215294578, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Penguin", + "pt": 2, + }, + "value": 3704, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Elephant", + }, + "value": 260, + }, + { + "category": "Pet", + "configData": { + "id": "Stacked Dominus", + "sh": true, + }, + "value": 2085, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luchador Coyote", + "sh": true, + }, + "value": 504185326, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mrs. Claws", + "sh": true, + }, + "value": 694276513, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Agony", + "pt": 2, + }, + "value": 7264342600, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dominus Lucki", + "sh": true, + }, + "value": 4955260366, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Wolf", + "pt": 1, + }, + "value": 3319, + }, + { + "category": "Pet", + "configData": { + "id": "Robot", + }, + "value": 122, + }, + { + "category": "Pet", + "configData": { + "id": "Fiddlefern Cat", + "sh": true, + }, + "value": 113965, + }, + { + "category": "Pet", + "configData": { + "id": "Royal Peacock", + }, + "value": 91, + }, + { + "category": "Pet", + "configData": { + "id": "Doll Cat", + "pt": 2, + }, + "value": 1386, + }, + { + "category": "Pet", + "configData": { + "id": "Ghost Axolotl", + "pt": 2, + }, + "value": 354, + }, + { + "category": "Tower", + "configData": { + "id": "Old Wizard Cat", + }, + "value": 3416, + }, + { + "category": "Consumable", + "configData": { + "id": "Tower Stacking Booster", + "tn": 1, + }, + "value": 49, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ninja Dalmatian", + "pt": 2, + "sh": true, + }, + "value": 1701014343, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Bear", + }, + "value": 49, + }, + { + "category": "Pet", + "configData": { + "id": "Treasure Unicorn", + "pt": 2, + "sh": true, + }, + "value": 270706459, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crocodile", + "pt": 2, + "sh": true, + }, + "value": 2087084155, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Loveserker", + "pt": 2, + }, + "value": 21157521365, + }, + { + "category": "Pet", + "configData": { + "id": "Puffin", + "pt": 2, + }, + "value": 1252, + }, + { + "category": "Misc", + "configData": { + "id": "Nuclear Cannon", + }, + "value": 13537194, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Sock Bunny", + "pt": 2, + }, + "value": 690, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sad Hamster", + "sh": true, + }, + "value": 5662209137, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Watermelon Golem", + "pt": 2, + }, + "value": 600195608, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cosmic Agony", + "sh": true, + }, + "value": 3229295392, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Devil Agony", + "pt": 1, + }, + "value": 83023870, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hacked Reaper", + "pt": 1, + "sh": true, + }, + "value": 1763452110, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pixel Agony", + "pt": 2, + }, + "value": 25345300820, + }, + { + "category": "Pet", + "configData": { + "id": "Forged Turtle", + "pt": 1, + }, + "value": 133281, + }, + { + "category": "Pet", + "configData": { + "id": "M-B PROTOTYPE", + "pt": 2, + }, + "value": 5183, + }, + { + "category": "Pet", + "configData": { + "id": "Floatie Ducky", + "sh": true, + }, + "value": 2439, + }, + { + "category": "Pet", + "configData": { + "id": "Mortuus", + "pt": 2, + "sh": true, + }, + "value": 40000, + }, + { + "category": "Pet", + "configData": { + "id": "Clown Cat", + }, + "value": 28, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Safari Monkey", + "pt": 1, + "sh": true, + }, + "value": 5944760703, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Classic Dog", + "sh": true, + }, + "value": 537039049, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Yee-haw Cat", + "pt": 2, + }, + "value": 20451639668, + }, + { + "category": "Pet", + "configData": { + "id": "Candycorn Unicorn", + "pt": 2, + "sh": true, + }, + "value": 480369404, + }, + { + "category": "Card", + "configData": { + "id": "Blue BIG Maskot Card", + "pt": 1, + "sh": true, + }, + "value": 9473408, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cinnamon Bunny", + "pt": 2, + "sh": true, + }, + "value": 7816000000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Quokka", + "pt": 1, + "sh": true, + }, + "value": 425990240000, + }, + { + "category": "Card", + "configData": { + "id": "Blue BIG Maskot Card", + "pt": 2, + "sh": true, + }, + "value": 180260055, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Dominus", + }, + "value": 1389, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cheerful Yeti", + "sh": true, + }, + "value": 1790632043, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Panda", + "sh": true, + }, + "value": 7400000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bison", + "sh": true, + }, + "value": 123702865, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blurred Bear Ball", + "pt": 2, + }, + "value": 253998862, + }, + { + "category": "Pet", + "configData": { + "id": "Maple Owl", + }, + "value": 301321, + }, + { + "category": "Pet", + "configData": { + "id": "Cat Magician", + "pt": 1, + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Unicorn Dragon", + "pt": 2, + }, + "value": 1127606258, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Griffin", + }, + "value": 23, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cyborg Cat", + "pt": 1, + }, + "value": 323787966, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Dooooog", + "pt": 2, + }, + "value": 262668552, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Knife Cat", + "sh": true, + }, + "value": 1456049765, + }, + { + "category": "Pet", + "configData": { + "id": "Chad Elephant", + "pt": 2, + }, + "value": 9292884, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Easter Cat", + "pt": 2, + }, + "value": 31018651605, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Exquisite Cat", + "pt": 2, + }, + "value": 23407116972, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Axolotl Ball", + "pt": 1, + "sh": true, + }, + "value": 69710672, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cartoon Bunny", + "sh": true, + }, + "value": 922062158, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gingerbread Dragon", + }, + "value": 2048019656, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hell Spider", + "pt": 1, + }, + "value": 72652479, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Super Wolf", + "sh": true, + }, + "value": 23587223681, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wave Spirit", + "pt": 2, + }, + "value": 1187490364, + }, + { + "category": "Pet", + "configData": { + "id": "Bull", + }, + "value": 1066, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Knight Slime", + "pt": 2, + }, + "value": 1079983715, + }, + { + "category": "Pet", + "configData": { + "id": "Hypnotic Griffin", + "sh": true, + }, + "value": 24722837, + }, + { + "category": "Pet", + "configData": { + "id": "Robot Ball", + "pt": 1, + }, + "value": 62, + }, + { + "category": "Misc", + "configData": { + "id": "Ultra Pet Token Boost", + }, + "value": 48840, + }, + { + "category": "Pet", + "configData": { + "id": "Puma", + "pt": 2, + }, + "value": 1113, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Bee", + }, + "value": 927032996, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Scorpion", + "pt": 1, + "sh": true, + }, + "value": 211038, + }, + { + "category": "Pet", + "configData": { + "cv": 6, + "id": "Huge Chroma Ink Blob", + "pt": 2, + }, + "value": 745855535, + }, + { + "category": "Pet", + "configData": { + "id": "Glade Griffin", + "pt": 1, + }, + "value": 14, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pumpkin Scarecrow", + "pt": 1, + }, + "value": 106944149, + }, + { + "category": "Pet", + "configData": { + "id": "Quantum Bunny", + }, + "value": 38, + }, + { + "category": "Pet", + "configData": { + "id": "Snuggle Beast", + "sh": true, + }, + "value": 26002068, + }, + { + "category": "Pet", + "configData": { + "id": "Snowman", + "pt": 2, + "sh": true, + }, + "value": 56546, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Fairy", + }, + "value": 5029, + }, + { + "category": "Pet", + "configData": { + "id": "Storm Dominus", + "pt": 2, + }, + "value": 17679771, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skeleton Cat", + "pt": 2, + }, + "value": 131111523, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sad Doge", + "pt": 2, + }, + "value": 1297257863, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Black Hole Kitsune", + "sh": true, + }, + "value": 1781069700, + }, + { + "category": "Pet", + "configData": { + "id": "Super Seal", + "pt": 2, + }, + "value": 11506583, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Werewolf", + "sh": true, + }, + "value": 399643820, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Coach Hippo", + "pt": 1, + }, + "value": 264614864, + }, + { + "category": "Egg", + "configData": { + "id": "Series 1 Epic Gift", + }, + "value": 203478183, + }, + { + "category": "Pet", + "configData": { + "id": "Samurai Bull", + }, + "value": 77, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Snow Globe Snowman", + "pt": 2, + }, + "value": 24148246085, + }, + { + "category": "Pet", + "configData": { + "id": "Golden Retriever", + }, + "value": 12048, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ooze Axolotl", + "sh": true, + }, + "value": 106122205, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pastel Sock Bear", + "pt": 1, + }, + "value": 91088355, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Dragon", + "pt": 1, + }, + "value": 396320113, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Mortuus", + "pt": 1, + }, + "value": 664, + }, + { + "category": "Pet", + "configData": { + "id": "Dot Matrix Cat", + "sh": true, + }, + "value": 9213560, + }, + { + "category": "Pet", + "configData": { + "id": "Hypnotic Cat", + "pt": 2, + }, + "value": 14764809, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Hydra", + "pt": 2, + }, + "value": 759931278, + }, + { + "category": "Pet", + "configData": { + "cv": 2, + "id": "Huge Chroma Unicorn", + "pt": 2, + }, + "value": 638804089, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Slime", + "sh": true, + }, + "value": 40210, + }, + { + "category": "Pet", + "configData": { + "cv": 2, + "id": "Huge Chroma Unicorn", + }, + "value": 92697983, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Shark", + }, + "value": 250, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crystal Dog", + "pt": 1, + }, + "value": 83199505, + }, + { + "category": "Pet", + "configData": { + "id": "Gummy Fox", + }, + "value": 33, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Monkey", + "sh": true, + }, + "value": 1779259198, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Exquisite Elephant", + "pt": 2, + }, + "value": 135574461, + }, + { + "category": "Pet", + "configData": { + "id": "Colorful Fish", + "pt": 1, + }, + "value": 87, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skeleton Snake", + "pt": 2, + "sh": true, + }, + "value": 2680416000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Super Corgi", + "pt": 2, + }, + "value": 2906616013, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Bat", + }, + "value": 41, + }, + { + "category": "Pet", + "configData": { + "id": "Blue BIG Maskot", + }, + "value": 2492249, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guest Noob", + "pt": 1, + "sh": true, + }, + "value": 2053633072, + }, + { + "category": "Pet", + "configData": { + "id": "Fire Dog", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Vampire Agony", + "pt": 1, + }, + "value": 17217187723, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blimp Dragon", + "pt": 2, + }, + "value": 4091473136, + }, + { + "category": "Consumable", + "configData": { + "id": "Mining Bejeweled TNT Crate", + "tn": 1, + }, + "value": 2470961, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Wolf", + "pt": 1, + }, + "value": 214, + }, + { + "category": "Pet", + "configData": { + "id": "Basket Bunny", + }, + "value": 182, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Signature BIG Maskot", + }, + "value": 18321284241, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cupcake Unicorn", + "pt": 2, + }, + "value": 65975270207, + }, + { + "category": "Pet", + "configData": { + "id": "Googly Shark", + "pt": 2, + }, + "value": 35234133, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Parrot", + }, + "value": 24, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Lovemelon", + }, + "value": 40769771209, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mining Raccoon", + "pt": 1, + "sh": true, + }, + "value": 499961023, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixie Fox", + "pt": 1, + }, + "value": 113613762, + }, + { + "category": "Pet", + "configData": { + "id": "Totem Cat", + "pt": 2, + "sh": true, + }, + "value": 511897600, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Angelus", + "sh": true, + }, + "value": 1614, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sticky Lamb", + "sh": true, + }, + "value": 106492852, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lemur", + "pt": 2, + "sh": true, + }, + "value": 2839394022, + }, + { + "category": "Pet", + "configData": { + "id": "Steampunk Fish", + }, + "value": 1266, + }, + { + "category": "Pet", + "configData": { + "id": "Luxe Axolotl", + "pt": 2, + }, + "value": 7226, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Captain Octopus", + "sh": true, + }, + "value": 167115425349, + }, + { + "category": "Pet", + "configData": { + "id": "Kitsune Fox", + "pt": 2, + "sh": true, + }, + "value": 20447, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Raccoon", + "pt": 1, + "sh": true, + }, + "value": 302144616, + }, + { + "category": "Pet", + "configData": { + "id": "Persimmony Cricket", + "pt": 1, + "sh": true, + }, + "value": 29738, + }, + { + "category": "Pet", + "configData": { + "id": "Arctic Fox", + }, + "value": 23641, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hippomint", + "pt": 2, + "sh": true, + }, + "value": 5114416701, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Safety Cat", + "pt": 1, + }, + "value": 886480575, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Happy Rock", + "sh": true, + }, + "value": 185443713, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wicked Empyrean Dragon", + }, + "value": 3665450816, + }, + { + "category": "Pet", + "configData": { + "id": "UV Cat", + }, + "value": 126, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Wishing Dragon", + "pt": 2, + }, + "value": 44752718236, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wyvern of Hades", + "pt": 1, + }, + "value": 1476151550, + }, + { + "category": "Card", + "configData": { + "id": "Empyrean Lion Card", + "pt": 1, + "sh": true, + }, + "value": 47951, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hydra Dino", + "pt": 2, + }, + "value": 362190840, + }, + { + "category": "Pet", + "configData": { + "id": "Stealth Cat", + "sh": true, + }, + "value": 24230308, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pixel Dominus Astra", + "pt": 2, + }, + "value": 17976565387, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Moray Eel", + "sh": true, + }, + "value": 457548144, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stealth Bobcat", + "pt": 2, + }, + "value": 564243413, + }, + { + "category": "Pet", + "configData": { + "id": "Rock Dragon", + }, + "value": 238, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Luchador Cat", + }, + "value": 16564298710, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kitsune Fox", + "pt": 1, + "sh": true, + }, + "value": 741747006, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Maple Owl", + "pt": 2, + "sh": true, + }, + "value": 2148367144, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Axolotl", + "pt": 2, + }, + "value": 26197824000, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Pegasus", + }, + "value": 9461505391, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chameleon", + "sh": true, + }, + "value": 1794896252, + }, + { + "category": "Pet", + "configData": { + "id": "Chad Elephant", + "pt": 2, + "sh": true, + }, + "value": 605130245, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Corgi", + "pt": 1, + "sh": true, + }, + "value": 858469273, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Dragonfruit Dragon", + "sh": true, + }, + "value": 61770880000, + }, + { + "category": "Pet", + "configData": { + "id": "Deer", + "pt": 1, + }, + "value": 1534, + }, + { + "category": "Pet", + "configData": { + "id": "Black Hole Angelus Ball", + "pt": 2, + }, + "value": 147975757, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blazing Bat", + "sh": true, + }, + "value": 777512904, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Wolf", + "pt": 1, + }, + "value": 887278004, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jurassic Crocodile", + "pt": 2, + }, + "value": 591907756, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Werewolf", + "pt": 1, + "sh": true, + }, + "value": 3067120000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Fossil Dragon", + "sh": true, + }, + "value": 196992000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Surfboard Axolotl", + "pt": 1, + "sh": true, + }, + "value": 870194513, + }, + { + "category": "Card", + "configData": { + "id": "Fancy Axolotl Card", + "pt": 1, + }, + "value": 40543, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mosaic Corgi", + "sh": true, + }, + "value": 426375771, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Storm Axolotl", + "pt": 2, + }, + "value": 2696317431, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dot Matrix Cat", + "sh": true, + }, + "value": 829905545, + }, + { + "category": "Pet", + "configData": { + "id": "Fiddlefern Cat", + "pt": 1, + "sh": true, + }, + "value": 660, + }, + { + "category": "Pet", + "configData": { + "id": "Ghostly Fox", + "pt": 2, + "sh": true, + }, + "value": 298188128, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Globe Hamster", + "pt": 2, + "sh": true, + }, + "value": 2566720299, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Hydra", + }, + "value": 3793, + }, + { + "category": "Pet", + "configData": { + "id": "Black Hole Angelus", + }, + "value": 436735, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Loveserker", + "sh": true, + }, + "value": 197483283, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pixel Angelus", + "pt": 1, + }, + "value": 7512583760, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Parrot", + "pt": 2, + "sh": true, + }, + "value": 7085, + }, + { + "category": "Card", + "configData": { + "id": "Super Bat Card", + "sh": true, + }, + "value": 2436499, + }, + { + "category": "Pet", + "configData": { + "id": "Ender Hades", + }, + "value": 224506, + }, + { + "category": "Pet", + "configData": { + "id": "Neon Griffin", + "sh": true, + }, + "value": 1062041711, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Tiger", + "pt": 2, + }, + "value": 745184906, + }, + { + "category": "Tower", + "configData": { + "id": "Tech Samurai Axolotl", + }, + "value": 616, + }, + { + "category": "Pet", + "configData": { + "id": "Nightmare Spirit", + "sh": true, + }, + "value": 12717663, + }, + { + "category": "Card", + "configData": { + "id": "Super Bat Card", + "pt": 2, + }, + "value": 3677274, + }, + { + "category": "Pet", + "configData": { + "id": "Psychic Seal", + "pt": 2, + "sh": true, + }, + "value": 384, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Sock Bunny", + }, + "value": 77, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Husky", + "pt": 1, + }, + "value": 1809, + }, + { + "category": "Pet", + "configData": { + "id": "Beaver", + "pt": 1, + }, + "value": 4949981, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Kraken", + "pt": 2, + }, + "value": 20004828, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Shark", + "pt": 1, + "sh": true, + }, + "value": 580499672, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Leprechaun Dog", + "sh": true, + }, + "value": 179534873600, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Love Peacock", + "pt": 1, + }, + "value": 64044768, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Strawberry Corgi", + }, + "value": 11988760762, + }, + { + "category": "Pet", + "configData": { + "id": "Flex Tiger", + "pt": 2, + }, + "value": 36935059, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Deer", + "pt": 2, + }, + "value": 4770, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ice Cube Penguin", + "pt": 2, + "sh": true, + }, + "value": 7018182543, + }, + { + "category": "Pet", + "configData": { + "id": "Gazelle", + "pt": 1, + }, + "value": 984, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Easter Golem", + "pt": 2, + }, + "value": 50124736000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ice Cream Cone", + "pt": 1, + }, + "value": 1162592345, + }, + { + "category": "Pet", + "configData": { + "id": "Fragmented Dominus", + "pt": 2, + "sh": true, + }, + "value": 510815, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghost Cat", + "pt": 2, + }, + "value": 7978812308, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Dragon", + "pt": 1, + "sh": true, + }, + "value": 566649762, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Bunny", + }, + "value": 67, + }, + { + "category": "Card", + "configData": { + "id": "Huge Storm Axolotl Card", + }, + "value": 43300863, + }, + { + "category": "Pet", + "configData": { + "id": "Flex Bear", + "pt": 2, + "sh": true, + }, + "value": 247659483, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Forcefield Cat", + "pt": 1, + }, + "value": 261499890, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Autumn Retriever", + "pt": 2, + }, + "value": 187860365, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tennis Squirrel", + "sh": true, + }, + "value": 158448587, + }, + { + "category": "Pet", + "configData": { + "id": "Matryoshka Dino", + "sh": true, + }, + "value": 22368589, + }, + { + "category": "Pet", + "configData": { + "id": "Poofy Pixie", + "pt": 2, + }, + "value": 194, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crystal Dog", + "pt": 1, + "sh": true, + }, + "value": 2868860274, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sailor Shark", + "pt": 1, + }, + "value": 1083859837, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Bear", + "pt": 2, + }, + "value": 5510, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Bison", + "pt": 2, + }, + "value": 224474301, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Cat", + "pt": 1, + }, + "value": 48, + }, + { + "category": "Pet", + "configData": { + "id": "Alien Parasite", + "pt": 2, + "sh": true, + }, + "value": 14875, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kawaii Tiger", + "pt": 1, + "sh": true, + }, + "value": 762600000000, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Monkey", + "pt": 2, + }, + "value": 101976168, + }, + { + "category": "Pet", + "configData": { + "id": "Slasher Sloth", + "sh": true, + }, + "value": 10339520, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Love Corgi", + "pt": 1, + "sh": true, + }, + "value": 1077962868, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Love Lion", + "pt": 2, + }, + "value": 397880835, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Patchwork Capybara", + "sh": true, + }, + "value": 154771818240, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nutcracker Cat", + "pt": 1, + "sh": true, + }, + "value": 1560115331, + }, + { + "category": "Pet", + "configData": { + "id": "Treasure Golem", + "sh": true, + }, + "value": 31907318, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blue Lucky Block", + "pt": 1, + "sh": true, + }, + "value": 4485461493, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skelemelon", + "pt": 1, + "sh": true, + }, + "value": 1560780700, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Happy Rock", + "pt": 1, + }, + "value": 679544626, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Aura Dominus", + "pt": 2, + }, + "value": 2190909297, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Koi Fish", + "pt": 2, + }, + "value": 64000000000, + }, + { + "category": "Consumable", + "configData": { + "id": "Easter Heroic Chest", + "tn": 1, + }, + "value": 965488, + }, + { + "category": "Card", + "configData": { + "id": "Wicked Agony Card", + "pt": 2, + "sh": true, + }, + "value": 53848815, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Torpedo Shepherd", + "pt": 1, + "sh": true, + }, + "value": 1085938026, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Robot Ball", + "pt": 2, + }, + "value": 163516819, + }, + { + "category": "Pet", + "configData": { + "id": "Night Terror Cat", + "sh": true, + }, + "value": 13514, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snow Crab", + "pt": 2, + "sh": true, + }, + "value": 16105600000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Grinch Cat", + "pt": 1, + }, + "value": 8454065065, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Goblin", + "pt": 2, + "sh": true, + }, + "value": 4648736930, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dominus Darkwing", + "sh": true, + }, + "value": 33930592263, + }, + { + "category": "Pet", + "configData": { + "id": "Scarecrow Dog", + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Crab", + "pt": 2, + }, + "value": 3134067534, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Scorpion", + "pt": 1, + }, + "value": 119, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hydra Axolotl", + "sh": true, + }, + "value": 422750449, + }, + { + "category": "Pet", + "configData": { + "id": "Thunder Bear", + "sh": true, + }, + "value": 11242282, + }, + { + "category": "Pet", + "configData": { + "id": "Balloon Dragon", + "sh": true, + }, + "value": 14253300, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gym Piggy", + "sh": true, + }, + "value": 182200160000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Propeller Cat", + "pt": 2, + }, + "value": 325163150, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luau Cat", + "sh": true, + }, + "value": 1416348669, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vampire Bat", + "pt": 1, + }, + "value": 178818503, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Spider", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Turtle", + "pt": 2, + }, + "value": 11372, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Unicorn", + "pt": 2, + }, + "value": 1205, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Dragon", + }, + "value": 805, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Patchwork Teddy Bear", + "sh": true, + }, + "value": 1401684822, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Parachute Monkey", + "pt": 1, + }, + "value": 48717027, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Dog", + "pt": 1, + "sh": true, + }, + "value": 252553, + }, + { + "category": "Pet", + "configData": { + "id": "Monkey", + "pt": 2, + "sh": true, + }, + "value": 6395863, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Scuba Dog", + "pt": 1, + }, + "value": 577403009, + }, + { + "category": "Pet", + "configData": { + "id": "Sophisticated Fox", + "pt": 1, + }, + "value": 4927, + }, + { + "category": "Pet", + "configData": { + "id": "Archivist Ferret", + "pt": 1, + }, + "value": 280, + }, + { + "category": "Pet", + "configData": { + "cv": 2, + "id": "Chroma Phoenix", + }, + "value": 6144, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Egg Dino", + "pt": 1, + "sh": true, + }, + "value": 265097599, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pixel Angelus", + "sh": true, + }, + "value": 209160000000, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Diamond", + }, + "value": 2745387614, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Deerserker", + "pt": 1, + "sh": true, + }, + "value": 1981879926, + }, + { + "category": "Pet", + "configData": { + "id": "Red Fox", + }, + "value": 71543, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Seal", + "pt": 2, + }, + "value": 6927, + }, + { + "category": "Pet", + "configData": { + "id": "Leafy Deer", + "pt": 2, + }, + "value": 23541026, + }, + { + "category": "Card", + "configData": { + "id": "Huge Blurred Axolotl Card", + "sh": true, + }, + "value": 315343876, + }, + { + "category": "Pet", + "configData": { + "id": "Spotted Elephant", + "sh": true, + }, + "value": 21146, + }, + { + "category": "Pet", + "configData": { + "id": "Cold Firefly", + "pt": 2, + }, + "value": 2653, + }, + { + "category": "Pet", + "configData": { + "id": "Bleebo The Alien", + "pt": 1, + }, + "value": 33331, + }, + { + "category": "Pet", + "configData": { + "id": "Super Cat", + "pt": 2, + }, + "value": 68365915, + }, + { + "category": "Pet", + "configData": { + "id": "Demon Serpents", + }, + "value": 1223, + }, + { + "category": "Pet", + "configData": { + "id": "Chad Bunny", + "sh": true, + }, + "value": 77184562, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Yee-haw Cat", + "sh": true, + }, + "value": 82224332564, + }, + { + "category": "Pet", + "configData": { + "cv": 3, + "id": "Huge Chroma Doodle Axolotl", + "sh": true, + }, + "value": 321643833, + }, + { + "category": "Consumable", + "configData": { + "id": "Cannon Speed Booster", + "tn": 1, + }, + "value": 1475, + }, + { + "category": "Pet", + "configData": { + "id": "Jetpack Tiger", + "pt": 2, + "sh": true, + }, + "value": 3449, + }, + { + "category": "Pet", + "configData": { + "id": "Painter Cat", + }, + "value": 53, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Exquisite Cat", + "pt": 1, + "sh": true, + }, + "value": 3303311801, + }, + { + "category": "Pet", + "configData": { + "id": "Holly Corgi", + "pt": 2, + }, + "value": 183, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Dragonfruit Dragon", + "pt": 2, + }, + "value": 36008000000, + }, + { + "category": "Pet", + "configData": { + "id": "Silver Moose", + "pt": 2, + "sh": true, + }, + "value": 44227, + }, + { + "category": "Consumable", + "configData": { + "id": "Lucky Raid XP Booster", + "tn": 2, + }, + "value": 727813, + }, + { + "category": "Pet", + "configData": { + "id": "Corgi", + "pt": 2, + "sh": true, + }, + "value": 22660591, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bearserker", + }, + "value": 57353425, + }, + { + "category": "Pet", + "configData": { + "id": "Snuggle Beast", + "pt": 2, + "sh": true, + }, + "value": 556864599, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skelemelon", + "sh": true, + }, + "value": 2731160961, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sleigh Cat", + "sh": true, + }, + "value": 197146616, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Elephant", + "pt": 2, + }, + "value": 258623940, + }, + { + "category": "Pet", + "configData": { + "id": "Hacker Axolotl", + "pt": 1, + }, + "value": 699, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Unicorn Dragon", + "sh": true, + }, + "value": 7871735684, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Virus Griffin", + "pt": 1, + }, + "value": 148506935, + }, + { + "category": "Pet", + "configData": { + "cv": 6, + "id": "Chroma Tiger", + }, + "value": 57297, + }, + { + "category": "Pet", + "configData": { + "id": "Recruiter Axolotl", + "pt": 2, + }, + "value": 126, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Deer", + }, + "value": 89, + }, + { + "category": "Pet", + "configData": { + "id": "Painted Cat", + "pt": 2, + }, + "value": 501, + }, + { + "category": "Pet", + "configData": { + "id": "Hi-Tech Flamingo", + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightmare Spirit", + "sh": true, + }, + "value": 2375585871, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cyborg Dragon", + "sh": true, + }, + "value": 903718924, + }, + { + "category": "Card", + "configData": { + "id": "Huge Super Spider Card", + "sh": true, + }, + "value": 146763748, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Squirrel", + "pt": 2, + }, + "value": 581, + }, + { + "category": "Pet", + "configData": { + "id": "Lifeguard Shark", + "pt": 1, + }, + "value": 1976, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Monkey", + "pt": 2, + }, + "value": 248767574, + }, + { + "category": "Pet", + "configData": { + "id": "Rock Dog", + "pt": 2, + "sh": true, + }, + "value": 13150, + }, + { + "category": "Pet", + "configData": { + "id": "Gemstone Gargoyle Dragon", + "pt": 2, + }, + "value": 1765, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightmare Sludge", + "sh": true, + }, + "value": 906800553, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Ducky", + }, + "value": 47, + }, + { + "category": "Pet", + "configData": { + "id": "Cappuccina Brainrot", + "pt": 2, + "sh": true, + }, + "value": 288776979, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Starfall Dragon", + "pt": 1, + }, + "value": 15576846032, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Autumn Retriever", + "sh": true, + }, + "value": 441734492, + }, + { + "category": "Pet", + "configData": { + "id": "Colorful Slime", + }, + "value": 31, + }, + { + "category": "Pet", + "configData": { + "cv": 5, + "id": "Huge Chroma Ink Blob", + "pt": 2, + }, + "value": 280488127, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Red Panda", + "pt": 1, + "sh": true, + }, + "value": 290927750, + }, + { + "category": "Pet", + "configData": { + "id": "Stunt Corgi", + "pt": 2, + }, + "value": 88115, + }, + { + "category": "Pet", + "configData": { + "id": "Inferno Stealth Dragon", + "sh": true, + }, + "value": 984668392, + }, + { + "category": "Pet", + "configData": { + "id": "Pineapple Monkey", + "pt": 1, + }, + "value": 168, + }, + { + "category": "Pet", + "configData": { + "id": "Painted Balloon", + }, + "value": 183, + }, + { + "category": "Pet", + "configData": { + "id": "Jaguar", + }, + "value": 121, + }, + { + "category": "Pet", + "configData": { + "id": "Pog Monkey", + "pt": 2, + "sh": true, + }, + "value": 436140000, + }, + { + "category": "Pet", + "configData": { + "id": "Mech Dino", + "pt": 2, + }, + "value": 5102, + }, + { + "category": "Pet", + "configData": { + "id": "Love Corgi", + "pt": 2, + }, + "value": 41614, + }, + { + "category": "Pet", + "configData": { + "id": "Anime Monkey", + "sh": true, + }, + "value": 106166979, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gorgon", + "sh": true, + }, + "value": 284624183, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Boxing Elephant", + "pt": 1, + }, + "value": 66897845, + }, + { + "category": "Pet", + "configData": { + "id": "Inferno Stealth Dragon", + "pt": 2, + }, + "value": 849344000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Merry Mule", + "pt": 1, + "sh": true, + }, + "value": 600000000, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Shark", + "pt": 2, + "sh": true, + }, + "value": 18678, + }, + { + "category": "Pet", + "configData": { + "id": "Plasma Bull", + "pt": 2, + "sh": true, + }, + "value": 1006, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rich Cat", + "sh": true, + }, + "value": 368822419, + }, + { + "category": "Pet", + "configData": { + "id": "Kaiju Volcano", + "sh": true, + }, + "value": 17219926, + }, + { + "category": "Pet", + "configData": { + "id": "Love Peacock", + }, + "value": 210, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Rich Cat", + "pt": 1, + }, + "value": 29123310429, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Seal", + "pt": 2, + }, + "value": 1690, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Ghost", + }, + "value": 2409, + }, + { + "category": "Pet", + "configData": { + "id": "Gummy Raccoon", + }, + "value": 21, + }, + { + "category": "Pet", + "configData": { + "id": "Crash Dummy Noob", + "pt": 1, + }, + "value": 602, + }, + { + "category": "Pet", + "configData": { + "id": "Shiba", + }, + "value": 37, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Unicorn", + "pt": 1, + }, + "value": 2749, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Deer", + "pt": 1, + }, + "value": 339, + }, + { + "category": "Pet", + "configData": { + "id": "Molten Wisp", + "pt": 2, + }, + "value": 2233, + }, + { + "category": "Pet", + "configData": { + "id": "Super Coral Hydra", + "sh": true, + }, + "value": 100030523, + }, + { + "category": "Card", + "configData": { + "id": "Empyrean Lion Card", + "sh": true, + }, + "value": 18286, + }, + { + "category": "Pet", + "configData": { + "cv": 6, + "id": "Huge Chroma Ink Blob", + }, + "value": 135941266, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Pixel Cat", + "pt": 2, + }, + "value": 1799240779, + }, + { + "category": "Card", + "configData": { + "id": "Phantom Wolf Card", + "pt": 2, + "sh": true, + }, + "value": 777762136, + }, + { + "category": "Pet", + "configData": { + "id": "Neon Dog", + "sh": true, + }, + "value": 15417509, + }, + { + "category": "Pet", + "configData": { + "id": "Dark Fox", + }, + "value": 24686, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Huge Chroma Unicorn", + "pt": 2, + }, + "value": 233297661, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Trojan Horse", + "pt": 2, + }, + "value": 408389173, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hypnotic Cat", + "pt": 2, + }, + "value": 971036098, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Red Panda", + "pt": 2, + "sh": true, + }, + "value": 2205609497, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gym Dragon", + "sh": true, + }, + "value": 20272971188, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Festive Elf", + "pt": 2, + "sh": true, + }, + "value": 2034934147, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dark Fox", + "sh": true, + }, + "value": 1158236917, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Werewolf", + "pt": 2, + "sh": true, + }, + "value": 16100, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Super Coral Hydra", + "pt": 2, + "sh": true, + }, + "value": 5520000000, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Bunny", + "sh": true, + }, + "value": 17505786, + }, + { + "category": "Pet", + "configData": { + "id": "Super Axolotl", + "pt": 2, + }, + "value": 90686805, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dino Dog", + "pt": 2, + "sh": true, + }, + "value": 3127953133, + }, + { + "category": "Pet", + "configData": { + "id": "Chocolate Frog", + }, + "value": 90, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wicked Angelus", + "pt": 2, + }, + "value": 772657577, + }, + { + "category": "Pet", + "configData": { + "id": "Rose Butterfly", + }, + "value": 52, + }, + { + "category": "Card", + "configData": { + "id": "Pog Dragon Card", + "pt": 1, + "sh": true, + }, + "value": 515376, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Griffin", + }, + "value": 1686, + }, + { + "category": "Pet", + "configData": { + "id": "Demolition Cat", + "pt": 2, + "sh": true, + }, + "value": 59200, + }, + { + "category": "Card", + "configData": { + "id": "Huge Pog Cat Card", + "pt": 2, + }, + "value": 261233890, + }, + { + "category": "Pet", + "configData": { + "id": "Wave Spirit", + "sh": true, + }, + "value": 41779568, + }, + { + "category": "Pet", + "configData": { + "id": "Platypus", + }, + "value": 8, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Narwhal", + "sh": true, + }, + "value": 28, + }, + { + "category": "Pet", + "configData": { + "id": "Dino", + "pt": 2, + }, + "value": 243, + }, + { + "category": "Pet", + "configData": { + "id": "Pog Dragon", + "pt": 2, + }, + "value": 721757, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Willow Wisp", + "pt": 2, + }, + "value": 343205321, + }, + { + "category": "Pet", + "configData": { + "id": "Toy Duck", + "pt": 2, + }, + "value": 9487, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Narwhal", + "pt": 1, + "sh": true, + }, + "value": 1124, + }, + { + "category": "Pet", + "configData": { + "id": "Zombie Squirrel", + "pt": 2, + "sh": true, + }, + "value": 180000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skeleton Shark", + "pt": 2, + }, + "value": 805201883, + }, + { + "category": "Pet", + "configData": { + "id": "Fire Horse", + }, + "value": 682, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Good vs Evil Cat", + "pt": 2, + }, + "value": 708244250, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Neon Twilight Wolf", + "pt": 1, + }, + "value": 36309828267, + }, + { + "category": "Pet", + "configData": { + "id": "Midnight Deer", + "pt": 2, + }, + "value": 24162478, + }, + { + "category": "Pet", + "configData": { + "id": "Chad Elephant", + "sh": true, + }, + "value": 10393740, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evil Imp", + "pt": 1, + "sh": true, + }, + "value": 820517561, + }, + { + "category": "Pet", + "configData": { + "id": "Dino", + "pt": 1, + "sh": true, + }, + "value": 2822, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leafy Deer", + "pt": 1, + "sh": true, + }, + "value": 3061184000, + }, + { + "category": "Pet", + "configData": { + "id": "Blimp Dragon", + "pt": 1, + }, + "value": 5698, + }, + { + "category": "Pet", + "configData": { + "id": "Turbo Cheetah", + "pt": 2, + "sh": true, + }, + "value": 33185, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Pyro Cat", + "sh": true, + }, + "value": 41839232000, + }, + { + "category": "Pet", + "configData": { + "id": "Red Dragon", + }, + "value": 185, + }, + { + "category": "Pet", + "configData": { + "id": "Royal Cloud Corgi", + "pt": 1, + }, + "value": 1011, + }, + { + "category": "Pet", + "configData": { + "id": "Anime Wolf", + "pt": 2, + "sh": true, + }, + "value": 1403198207, + }, + { + "category": "Pet", + "configData": { + "id": "Fossil Dragon", + "pt": 2, + }, + "value": 2031, + }, + { + "category": "Pet", + "configData": { + "id": "Royal Cloud Corgi", + "pt": 1, + "sh": true, + }, + "value": 65876, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Masked Fox", + "pt": 1, + }, + "value": 109099314, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Bee", + "sh": true, + }, + "value": 422125533, + }, + { + "category": "Pet", + "configData": { + "id": "Mr. Love Cat", + }, + "value": 105, + }, + { + "category": "Pet", + "configData": { + "id": "Strawhat Tanuki", + "pt": 1, + "sh": true, + }, + "value": 924146, + }, + { + "category": "Pet", + "configData": { + "id": "Midnight Deer", + "sh": true, + }, + "value": 10971966, + }, + { + "category": "Misc", + "configData": { + "id": "Dino Lab Keycard", + }, + "value": 1775, + }, + { + "category": "Pet", + "configData": { + "id": "Chimera", + "pt": 2, + }, + "value": 5575, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guard Dragon", + "sh": true, + }, + "value": 955005414, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Monkey", + "pt": 2, + "sh": true, + }, + "value": 3088, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Chroma Phoenix", + }, + "value": 192086, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anglerfish", + "pt": 2, + "sh": true, + }, + "value": 3574932365, + }, + { + "category": "Pet", + "configData": { + "id": "Sailor Seal", + "pt": 2, + }, + "value": 23, + }, + { + "category": "Pet", + "configData": { + "id": "Tropical Flamingo", + "pt": 2, + }, + "value": 251944413, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Deer", + "pt": 1, + }, + "value": 1152, + }, + { + "category": "Pet", + "configData": { + "id": "Red Wolf", + }, + "value": 18, + }, + { + "category": "Pet", + "configData": { + "id": "Pumpkin Cat", + "pt": 2, + "sh": true, + }, + "value": 3535657, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Goat", + }, + "value": 77, + }, + { + "category": "Pet", + "configData": { + "id": "Garden Cat", + "sh": true, + }, + "value": 1795, + }, + { + "category": "Pet", + "configData": { + "id": "Soccer Terrier", + "sh": true, + }, + "value": 1677, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Heart Balloon Cat", + "pt": 2, + }, + "value": 10516019272, + }, + { + "category": "Pet", + "configData": { + "id": "Detective Terrier", + }, + "value": 566, + }, + { + "category": "Pet", + "configData": { + "id": "Axolotl", + "pt": 2, + "sh": true, + }, + "value": 196308, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Shark", + "pt": 2, + "sh": true, + }, + "value": 1986178951, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Dragon", + "pt": 2, + "sh": true, + }, + "value": 9523654, + }, + { + "category": "Pet", + "configData": { + "id": "Stealth Bobcat", + "sh": true, + }, + "value": 17908552, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Bunny", + "sh": true, + }, + "value": 3763, + }, + { + "category": "Tower", + "configData": { + "id": "Potion Penguin", + }, + "value": 35478, + }, + { + "category": "Pet", + "configData": { + "cv": 1, + "id": "Huge Chroma Tiger", + "pt": 2, + }, + "value": 500911589, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Baby Puppy", + "pt": 2, + }, + "value": 3096612000, + }, + { + "category": "Pet", + "configData": { + "id": "Pineapple Monkey", + }, + "value": 85, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snow Globe Corgi", + "sh": true, + }, + "value": 589097668, + }, + { + "category": "Pet", + "configData": { + "id": "Pufferfish", + }, + "value": 1163, + }, + { + "category": "Pet", + "configData": { + "id": "Clown Cat", + "pt": 2, + }, + "value": 1045, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Claw Beast", + "sh": true, + }, + "value": 4627097907, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Noob", + "pt": 1, + }, + "value": 14316035626, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Sun Griffin", + "pt": 2, + }, + "value": 37476448997, + }, + { + "category": "Tower", + "configData": { + "id": "Zeus Bear", + }, + "value": 59724923, + }, + { + "category": "Consumable", + "configData": { + "id": "Gym Gloves", + "tn": 1, + }, + "value": 6467, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Clover Butterfly", + "sh": true, + }, + "value": 29360000000, + }, + { + "category": "Pet", + "configData": { + "id": "Storm Dominus", + "pt": 2, + "sh": true, + }, + "value": 403329784, + }, + { + "category": "Card", + "configData": { + "id": "Pog Monkey Card", + "pt": 1, + "sh": true, + }, + "value": 1285418, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Wolf", + "pt": 2, + "sh": true, + }, + "value": 137, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Super Coral Axolotl", + "sh": true, + }, + "value": 806985054, + }, + { + "category": "Pet", + "configData": { + "id": "Ender Hades", + "pt": 1, + }, + "value": 86171, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Athena Owl", + "pt": 1, + }, + "value": 398915681, + }, + { + "category": "Pet", + "configData": { + "id": "Sacred Deer", + "pt": 2, + }, + "value": 362, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nutcracker Bunny", + "pt": 1, + "sh": true, + }, + "value": 4404955448, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Flamethrower Spider", + "sh": true, + }, + "value": 2413223424, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hippomelon", + "pt": 2, + }, + "value": 4050773869, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Runebound Bobcat", + "pt": 2, + }, + "value": 294658639, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Toy Duck", + "pt": 1, + }, + "value": 140033620, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Cat", + }, + "value": 47, + }, + { + "category": "Pet", + "configData": { + "id": "Fortress Owl", + "pt": 2, + }, + "value": 233594, + }, + { + "category": "Pet", + "configData": { + "id": "Graffiti Raccoon", + "pt": 1, + "sh": true, + }, + "value": 8752, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rogue Squid", + "pt": 2, + "sh": true, + }, + "value": 1534429678, + }, + { + "category": "Pet", + "configData": { + "id": "Dog", + "sh": true, + }, + "value": 17332, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Jelly Kitsune", + "pt": 1, + }, + "value": 12085044465, + }, + { + "category": "Card", + "configData": { + "id": "Pog Dog Card", + "pt": 1, + "sh": true, + }, + "value": 12253, + }, + { + "category": "Pet", + "configData": { + "id": "Inferno Stealth Bobcat", + "sh": true, + }, + "value": 32300000001, + }, + { + "category": "Pet", + "configData": { + "id": "A-36", + "pt": 2, + "sh": true, + }, + "value": 405309, + }, + { + "category": "Consumable", + "configData": { + "id": "Easter Diamond Egg Booster", + "tn": 1, + }, + "value": 320811, + }, + { + "category": "Pet", + "configData": { + "cv": 3, + "id": "Huge Chroma Phoenix", + "sh": true, + }, + "value": 1076257923, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Diamond Dog", + "pt": 2, + }, + "value": 2835435136, + }, + { + "category": "Pet", + "configData": { + "id": "Hamster", + }, + "value": 116, + }, + { + "category": "Pet", + "configData": { + "id": "Huge African Wild Dog", + "pt": 2, + "sh": true, + }, + "value": 6945600000, + }, + { + "category": "Pet", + "configData": { + "id": "Ocean Horse", + }, + "value": 44, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Patrick Star", + "pt": 2, + }, + "value": 8857467217, + }, + { + "category": "Pet", + "configData": { + "id": "Exquisite Cat", + "sh": true, + }, + "value": 41149390, + }, + { + "category": "Pet", + "configData": { + "id": "Heartbreak Fairy", + "pt": 1, + }, + "value": 90, + }, + { + "category": "Consumable", + "configData": { + "id": "Basketball Orb Frenzy", + "tn": 1, + }, + "value": 22552, + }, + { + "category": "Pet", + "configData": { + "id": "Wicked Agony", + }, + "value": 516345, + }, + { + "category": "Pet", + "configData": { + "id": "Player Gecko", + "sh": true, + }, + "value": 2672, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Baby Puppy", + "pt": 1, + }, + "value": 180888201, + }, + { + "category": "Pet", + "configData": { + "id": "Painter Dog", + }, + "value": 3133, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blurred Agony", + "pt": 1, + }, + "value": 1197486560, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Fairy", + "pt": 1, + "sh": true, + }, + "value": 525, + }, + { + "category": "Pet", + "configData": { + "id": "Plague Cow", + }, + "value": 3024, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Golem", + "pt": 2, + }, + "value": 490809587, + }, + { + "category": "Consumable", + "configData": { + "id": "Cannon Luck Booster", + "tn": 1, + }, + "value": 25960, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Axolotl", + "pt": 2, + "sh": true, + }, + "value": 8054263, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Cat", + }, + "value": 458, + }, + { + "category": "Pet", + "configData": { + "id": "Coach Tiger", + "pt": 1, + }, + "value": 107360, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Lion", + "pt": 1, + "sh": true, + }, + "value": 4891200, + }, + { + "category": "Pet", + "configData": { + "id": "Marzipan Piggy", + }, + "value": 23, + }, + { + "category": "Pet", + "configData": { + "cv": 6, + "id": "Huge Chroma Phoenix", + "sh": true, + }, + "value": 900397516, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Fox", + "pt": 1, + }, + "value": 502, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chef Monkey", + "pt": 2, + }, + "value": 320344808, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Spider", + }, + "value": 200, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Narwhal", + "pt": 2, + "sh": true, + }, + "value": 2711, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Basket Bunny", + "sh": true, + }, + "value": 311913062, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Candycane", + "sh": true, + }, + "value": 561785038, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jaguar", + "pt": 2, + }, + "value": 3005697527, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Husky", + }, + "value": 83, + }, + { + "category": "Pet", + "configData": { + "id": "Sketch Cow", + "pt": 2, + "sh": true, + }, + "value": 451164515, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Reindeer Cat", + "sh": true, + }, + "value": 35000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Beaver", + "pt": 1, + }, + "value": 170, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Zombie Pig", + "pt": 1, + "sh": true, + }, + "value": 725634076, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightfall Pegasus", + "pt": 1, + "sh": true, + }, + "value": 18568993894, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Axolotl", + }, + "value": 3556, + }, + { + "category": "Pet", + "configData": { + "id": "Abstract Agony", + "sh": true, + }, + "value": 12276, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wild Fire Agony", + "pt": 1, + }, + "value": 319559211, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gingerbread Angelus", + "pt": 2, + }, + "value": 21999337009, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Pop Cat Card", + "pt": 2, + }, + "value": 23231848724, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nutcracker Squirrel", + "pt": 1, + "sh": true, + }, + "value": 462394187, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Mole", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Bunny", + "pt": 1, + }, + "value": 134910234, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skeleton Snake", + "pt": 1, + }, + "value": 1452938880, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Crown Ducky", + "sh": true, + }, + "value": 2552475526, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luchador Eagle", + "sh": true, + }, + "value": 1101999726, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Reindeer Cat", + "pt": 1, + "sh": true, + }, + "value": 150000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bat", + "pt": 2, + }, + "value": 294382425, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Bubble", + }, + "value": 2998980388, + }, + { + "category": "Pet", + "configData": { + "id": "M-B PROTOTYPE", + "pt": 1, + }, + "value": 1513, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Matryoshka Capybara", + "pt": 2, + }, + "value": 2272989821, + }, + { + "category": "Pet", + "configData": { + "id": "Happy Rock", + "pt": 1, + }, + "value": 4510, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hologram Shark", + "sh": true, + }, + "value": 885141125, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Spirit Mushroom", + "sh": true, + }, + "value": 16685364411, + }, + { + "category": "Pet", + "configData": { + "id": "Unicorn Dragon", + "pt": 2, + }, + "value": 24819824, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wild Corrupt Agony", + "sh": true, + }, + "value": 1536194857, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Polar Bear", + "pt": 2, + "sh": true, + }, + "value": 1938562240, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elf Dog", + "sh": true, + }, + "value": 457871431, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sleigh Cat", + "pt": 2, + "sh": true, + }, + "value": 10293208202, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Player Panda", + "pt": 2, + }, + "value": 127364877, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Aura Fox", + "pt": 2, + "sh": true, + }, + "value": 13022204892, + }, + { + "category": "Pet", + "configData": { + "id": "Bread Shiba", + "pt": 1, + }, + "value": 2826, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Cowboy Cat", + "sh": true, + }, + "value": 200968, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Dragon", + "pt": 1, + }, + "value": 3894, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rich Corgi", + "pt": 2, + }, + "value": 2484432472, + }, + { + "category": "Pet", + "configData": { + "id": "Hacked Skeleton", + }, + "value": 1059, + }, + { + "category": "Pet", + "configData": { + "id": "Chocolate Hippo", + }, + "value": 275, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doodle Cat", + "sh": true, + }, + "value": 990168360, + }, + { + "category": "Pet", + "configData": { + "id": "Watermelon Golem", + "pt": 2, + }, + "value": 67148, + }, + { + "category": "Pet", + "configData": { + "id": "Police Dog", + "pt": 2, + }, + "value": 784, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lunar Moth", + "pt": 2, + }, + "value": 253054665, + }, + { + "category": "Pet", + "configData": { + "id": "Rabbit", + }, + "value": 284464, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luxe Peacock", + "pt": 2, + }, + "value": 192333409, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Hedgehog", + "sh": true, + }, + "value": 28648, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blurred Axolotl", + "sh": true, + }, + "value": 2324919134, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Aura Dominus", + "sh": true, + }, + "value": 864213439, + }, + { + "category": "Pet", + "configData": { + "id": "Abstract Dragon", + "pt": 2, + "sh": true, + }, + "value": 4769, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elemental Phoenix", + "sh": true, + }, + "value": 253183364, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Noob", + "pt": 2, + }, + "value": 51027456000, + }, + { + "category": "Pet", + "configData": { + "id": "Super Axolotl", + "sh": true, + }, + "value": 27349521, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Corgi", + "pt": 2, + }, + "value": 27197056, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Dominus", + "sh": true, + }, + "value": 327262927, + }, + { + "category": "Pet", + "configData": { + "id": "Umbrella Bear", + "pt": 2, + }, + "value": 19, + }, + { + "category": "Pet", + "configData": { + "id": "Fortress Owl", + "sh": true, + }, + "value": 110946460, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tropical Toucan", + "pt": 1, + "sh": true, + }, + "value": 2029331464, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gingerbread Corgi", + "pt": 2, + }, + "value": 24467023442, + }, + { + "category": "Pet", + "configData": { + "id": "Fireball Cat", + "pt": 1, + }, + "value": 697, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Reindeer Agony", + "sh": true, + }, + "value": 2027565528, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rich Cat", + "pt": 2, + "sh": true, + }, + "value": 45455353600, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Agony", + "sh": true, + }, + "value": 2581059794, + }, + { + "category": "Pet", + "configData": { + "id": "Classic Dog", + "sh": true, + }, + "value": 9307334, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Boxing Elephant", + "pt": 2, + }, + "value": 764063821, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elegant Eagle", + "pt": 1, + "sh": true, + }, + "value": 1035528597, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Monkey", + "pt": 1, + }, + "value": 390, + }, + { + "category": "Pet", + "configData": { + "id": "Kaiju Hydra", + "sh": true, + }, + "value": 29091203, + }, + { + "category": "Pet", + "configData": { + "id": "Vampire Bat", + "pt": 2, + }, + "value": 1041, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Minecart Piggy", + "pt": 1, + "sh": true, + }, + "value": 18631888450, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leprechaun Cat", + "pt": 1, + "sh": true, + }, + "value": 484705701, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Monkey", + "pt": 1, + "sh": true, + }, + "value": 151360, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Immortuus", + "pt": 2, + "sh": true, + }, + "value": 15671408, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holly Fawn", + "pt": 2, + "sh": true, + }, + "value": 8343520000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Obsidian Griffin", + "pt": 1, + }, + "value": 116893269, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Totem Wolf", + "pt": 2, + }, + "value": 747990542, + }, + { + "category": "Booth", + "configData": { + "id": "Tie Dye", + }, + "value": 182622366, + }, + { + "category": "Pet", + "configData": { + "id": "Fire Bat", + "pt": 1, + }, + "value": 1538, + }, + { + "category": "Pet", + "configData": { + "id": "Merry Manatee", + "sh": true, + }, + "value": 2263, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Strawberry Corgi", + "pt": 2, + }, + "value": 511141644, + }, + { + "category": "Pet", + "configData": { + "id": "Candycane Kitsune", + "pt": 2, + "sh": true, + }, + "value": 162360000, + }, + { + "category": "Pet", + "configData": { + "id": "Hypnotic Cat", + "sh": true, + }, + "value": 6510935, + }, + { + "category": "Pet", + "configData": { + "id": "Bee", + }, + "value": 23, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spectral Deer", + "pt": 2, + }, + "value": 1656839406, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Triceratops", + "pt": 1, + }, + "value": 294055695, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Ducky", + }, + "value": 191, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shadow Pegasus", + "pt": 2, + }, + "value": 262571857, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Peacock", + "pt": 2, + "sh": true, + }, + "value": 10471040000, + }, + { + "category": "Pet", + "configData": { + "id": "Valkyrie Dog", + "pt": 2, + "sh": true, + }, + "value": 421843379, + }, + { + "category": "Pet", + "configData": { + "id": "Aura Fox", + "pt": 2, + "sh": true, + }, + "value": 343732186, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Griffin", + "sh": true, + }, + "value": 16198, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Chick", + "pt": 1, + }, + "value": 175, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Cat", + "pt": 2, + "sh": true, + }, + "value": 698, + }, + { + "category": "Pet", + "configData": { + "id": "Yin-Yang Dragon", + "pt": 2, + "sh": true, + }, + "value": 384367419, + }, + { + "category": "Pet", + "configData": { + "id": "Student Corgi", + "pt": 2, + }, + "value": 7371, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Sketch Cat", + }, + "value": 36922679687, + }, + { + "category": "Card", + "configData": { + "id": "Noob Card", + "pt": 2, + "sh": true, + }, + "value": 289046840, + }, + { + "category": "Pet", + "configData": { + "id": "Junkyard Hound", + "pt": 2, + "sh": true, + }, + "value": 40000, + }, + { + "category": "Pet", + "configData": { + "id": "Maple Owl", + "pt": 2, + }, + "value": 1055425, + }, + { + "category": "Pet", + "configData": { + "id": "Molten Werelynx", + "pt": 1, + }, + "value": 4082, + }, + { + "category": "Pet", + "configData": { + "id": "Junkyard Hound", + "pt": 1, + "sh": true, + }, + "value": 100, + }, + { + "category": "Pet", + "configData": { + "id": "Angelus", + "pt": 1, + }, + "value": 3432, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Diamond Bunny", + "pt": 2, + "sh": true, + }, + "value": 3714358288, + }, + { + "category": "Pet", + "configData": { + "id": "Charred Dragon", + "sh": true, + }, + "value": 16081, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Bear", + "sh": true, + }, + "value": 450, + }, + { + "category": "Pet", + "configData": { + "id": "Fire Bat", + "sh": true, + }, + "value": 5863, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skateboard Bulldog", + "pt": 2, + "sh": true, + }, + "value": 1800403962, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiedye Corgi", + "pt": 1, + }, + "value": 212662712, + }, + { + "category": "Pet", + "configData": { + "id": "Ghostly Bunny", + "pt": 2, + "sh": true, + }, + "value": 597338257, + }, + { + "category": "Pet", + "configData": { + "id": "The Easter Bunny", + "pt": 1, + "sh": true, + }, + "value": 3680514, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Tank", + "sh": true, + }, + "value": 3670301271, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Agony", + "pt": 1, + }, + "value": 1719, + }, + { + "category": "Pet", + "configData": { + "id": "Comet Cyclops", + "pt": 2, + }, + "value": 2570, + }, + { + "category": "Pet", + "configData": { + "id": "Wise Cat", + "pt": 2, + }, + "value": 17691, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Peppermint Angelus", + "sh": true, + }, + "value": 1558095113, + }, + { + "category": "Pet", + "configData": { + "id": "Lovemelon", + "pt": 2, + "sh": true, + }, + "value": 1068158823, + }, + { + "category": "Pet", + "configData": { + "id": "Cool Dragon", + "pt": 2, + }, + "value": 119597143, + }, + { + "category": "Pet", + "configData": { + "id": "Anime Tanuki", + "pt": 2, + "sh": true, + }, + "value": 1724723140, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Troll", + "pt": 2, + }, + "value": 204268697, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Teacher Cat", + "pt": 1, + "sh": true, + }, + "value": 672552356, + }, + { + "category": "Pet", + "configData": { + "cv": 5, + "id": "Huge Chroma Phoenix", + "sh": true, + }, + "value": 1032850310, + }, + { + "category": "Pet", + "configData": { + "id": "Gingerbread Corgi", + "pt": 1, + "sh": true, + }, + "value": 138697882, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sketch Corgi", + "sh": true, + }, + "value": 457477299, + }, + { + "category": "Pet", + "configData": { + "id": "Knife Cat", + "pt": 2, + "sh": true, + }, + "value": 845365322, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Minecart Hamster", + "sh": true, + }, + "value": 123696351, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kangaroo", + "pt": 1, + "sh": true, + }, + "value": 234265047, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Dragon", + "pt": 2, + }, + "value": 1212, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Cocoa Bear", + "pt": 2, + }, + "value": 5318, + }, + { + "category": "Pet", + "configData": { + "id": "Huge BIG Maskot", + "pt": 2, + }, + "value": 2581605535, + }, + { + "category": "Pet", + "configData": { + "id": "Exquisite Elephant", + "pt": 1, + }, + "value": 20848529, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snuggle Beast", + "sh": true, + }, + "value": 1048878912, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic North Pole Unicorn", + "sh": true, + }, + "value": 32675198000, + }, + { + "category": "Pet", + "configData": { + "id": "Pristine Poodle", + }, + "value": 12230, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Pixel Dragon", + }, + "value": 905169319, + }, + { + "category": "Card", + "configData": { + "id": "Nature Axolotl Card", + "sh": true, + }, + "value": 336284, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Turtle", + "sh": true, + }, + "value": 1108, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Scarecrow Dog", + "sh": true, + }, + "value": 153457144, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sun Griffin", + "pt": 2, + }, + "value": 2148612646, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valkyrie Wolf", + "pt": 2, + }, + "value": 4972259491, + }, + { + "category": "Pet", + "configData": { + "id": "Happy Rock", + "sh": true, + }, + "value": 9064, + }, + { + "category": "Pet", + "configData": { + "id": "Patchwork Yeti", + "sh": true, + }, + "value": 19076833, + }, + { + "category": "Pet", + "configData": { + "id": "Gem Mole", + "pt": 2, + }, + "value": 1782, + }, + { + "category": "Pet", + "configData": { + "id": "Prince Donkey", + "sh": true, + }, + "value": 1205, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Bear", + "pt": 1, + }, + "value": 9277, + }, + { + "category": "Pet", + "configData": { + "id": "Colorful Wisp", + }, + "value": 20, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skeleton Shark", + "sh": true, + }, + "value": 6386103382, + }, + { + "category": "Card", + "configData": { + "id": "Pog Dragon Card", + "pt": 2, + "sh": true, + }, + "value": 243163, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Little Melty", + "pt": 1, + }, + "value": 178850700, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Bee", + "sh": true, + }, + "value": 248014057, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Teacher Cat", + "sh": true, + }, + "value": 124533443, + }, + { + "category": "Pet", + "configData": { + "id": "Silver Dragon", + "pt": 1, + }, + "value": 68008000, + }, + { + "category": "Consumable", + "configData": { + "id": "Factory Speed Booster", + "tn": 3, + }, + "value": 27075053, + }, + { + "category": "Pet", + "configData": { + "id": "Cupid Corgi", + "sh": true, + }, + "value": 33051929, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Spitting Dino", + "pt": 2, + }, + "value": 6655, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valentines Bear", + "pt": 2, + "sh": true, + }, + "value": 2206932595, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lit Loris", + "sh": true, + }, + "value": 17178155520, + }, + { + "category": "Pet", + "configData": { + "id": "Watermelon Golem", + "sh": true, + }, + "value": 1777909, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Knight Beagle", + "pt": 2, + "sh": true, + }, + "value": 1176606459, + }, + { + "category": "Pet", + "configData": { + "id": "Gingerbread Corgi", + }, + "value": 653121, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valentines Dominus", + "sh": true, + }, + "value": 578698822, + }, + { + "category": "Pet", + "configData": { + "id": "Wise Cat", + }, + "value": 1216, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stunt Corgi", + "pt": 2, + }, + "value": 124882350, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Cat", + "pt": 1, + }, + "value": 1618905976, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Mining Cat", + "pt": 2, + }, + "value": 3209, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Hydra", + "pt": 2, + "sh": true, + }, + "value": 727936, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Athena Owl", + "pt": 2, + }, + "value": 2461693799, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Scorpion", + "pt": 1, + }, + "value": 950, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ancient Dragon", + "pt": 1, + "sh": true, + }, + "value": 6553216000, + }, + { + "category": "Pet", + "configData": { + "id": "Pog Dog", + "pt": 1, + }, + "value": 1456396, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tennis Squirrel", + "pt": 2, + }, + "value": 137331801, + }, + { + "category": "Pet", + "configData": { + "id": "Sun Parrot", + "pt": 2, + "sh": true, + }, + "value": 1775699, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Masked Fox", + "pt": 2, + }, + "value": 435507350, + }, + { + "category": "Pet", + "configData": { + "id": "Totem Cub", + "pt": 2, + "sh": true, + }, + "value": 1400, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Egg Dino", + "pt": 2, + "sh": true, + }, + "value": 2314074392, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Techno Cat", + "pt": 2, + }, + "value": 1754575764, + }, + { + "category": "Pet", + "configData": { + "id": "Kangaroo", + }, + "value": 30146, + }, + { + "category": "Pet", + "configData": { + "id": "Golf Griffin", + "pt": 2, + "sh": true, + }, + "value": 7264, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Shiba", + "pt": 2, + }, + "value": 87440834, + }, + { + "category": "Pet", + "configData": { + "id": "Meteor Mole", + "pt": 1, + }, + "value": 23326, + }, + { + "category": "Pet", + "configData": { + "id": "Nurse Shark", + "pt": 1, + }, + "value": 4437, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Snowman", + "pt": 2, + }, + "value": 4573, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leprechaun Corgi", + "pt": 1, + }, + "value": 79539473, + }, + { + "category": "Pet", + "configData": { + "id": "Water Zebra", + "pt": 1, + }, + "value": 7392030, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Super Corgi", + "pt": 1, + }, + "value": 72424673234, + }, + { + "category": "Pet", + "configData": { + "id": "Hypnotic Cat", + "pt": 2, + "sh": true, + }, + "value": 611252719, + }, + { + "category": "Pet", + "configData": { + "id": "Dino Cat", + "pt": 2, + "sh": true, + }, + "value": 47759974, + }, + { + "category": "Pet", + "configData": { + "id": "Tiki Dominus", + }, + "value": 1148, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Golem", + "pt": 2, + }, + "value": 100995515, + }, + { + "category": "Pet", + "configData": { + "id": "Bunny", + "sh": true, + }, + "value": 274635, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel M-2 PROTOTYPE", + "pt": 2, + }, + "value": 2575240571, + }, + { + "category": "Pet", + "configData": { + "id": "Pajamas Dog", + "pt": 2, + }, + "value": 13, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snow Elf", + "pt": 1, + "sh": true, + }, + "value": 947814004, + }, + { + "category": "Pet", + "configData": { + "id": "Coconut Crab", + "sh": true, + }, + "value": 239, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Monkey", + "pt": 1, + "sh": true, + }, + "value": 3344, + }, + { + "category": "Pet", + "configData": { + "id": "Splash Angelus", + "sh": true, + }, + "value": 555364, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Axolotl", + "pt": 1, + }, + "value": 211208175, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pumpkin Scarecrow", + "sh": true, + }, + "value": 669179988, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiedye Cat", + "sh": true, + }, + "value": 1164853372, + }, + { + "category": "Pet", + "configData": { + "id": "Galaxy Fox", + "pt": 1, + }, + "value": 72087, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blossom Spirit", + "pt": 2, + }, + "value": 593369467, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Dragon", + "sh": true, + }, + "value": 245947957, + }, + { + "category": "Pet", + "configData": { + "id": "Rock Cat", + }, + "value": 49214, + }, + { + "category": "Pet", + "configData": { + "id": "Silver Stag", + "pt": 1, + }, + "value": 24983488, + }, + { + "category": "Pet", + "configData": { + "id": "Charred Dragon", + "pt": 2, + }, + "value": 7355, + }, + { + "category": "Pet", + "configData": { + "id": "Ocean Horse", + "pt": 2, + }, + "value": 962, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Griffin", + "pt": 1, + }, + "value": 69, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Corgi", + "pt": 2, + }, + "value": 1827, + }, + { + "category": "Tool", + "configData": { + "id": "Comet Pickaxe", + }, + "value": 1000, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Tiger", + "sh": true, + }, + "value": 16083, + }, + { + "category": "Pet", + "configData": { + "id": "Atomic Monkey Ball", + "pt": 2, + }, + "value": 270, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Panther", + "pt": 2, + }, + "value": 2567718596, + }, + { + "category": "Pet", + "configData": { + "id": "King Cow", + "pt": 2, + }, + "value": 868, + }, + { + "category": "Pet", + "configData": { + "id": "Luchador Axolotl", + "pt": 2, + "sh": true, + }, + "value": 812347430, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Unicorn", + }, + "value": 193266, + }, + { + "category": "Pet", + "configData": { + "id": "Snowflake Dragon", + "pt": 1, + "sh": true, + }, + "value": 4057600, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Parrot", + "sh": true, + }, + "value": 2386249473, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glowy the Ghost", + "sh": true, + }, + "value": 120023245, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Exquisite Parrot", + "pt": 2, + "sh": true, + }, + "value": 5676930560, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Player Corgi", + "pt": 1, + "sh": true, + }, + "value": 688271338, + }, + { + "category": "Pet", + "configData": { + "id": "Floatie Penguin", + "sh": true, + }, + "value": 9832, + }, + { + "category": "Pet", + "configData": { + "id": "Super Coral Whale", + "pt": 2, + }, + "value": 46671299, + }, + { + "category": "Pet", + "configData": { + "cv": 6, + "id": "Huge Chroma Unicorn", + "pt": 2, + }, + "value": 425550674, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Pufferfish", + "sh": true, + }, + "value": 12001, + }, + { + "category": "Pet", + "configData": { + "id": "Comet Cyclops", + }, + "value": 8, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Ducky", + "pt": 1, + }, + "value": 2063, + }, + { + "category": "Pet", + "configData": { + "id": "Cyclops", + "sh": true, + }, + "value": 206, + }, + { + "category": "Pet", + "configData": { + "id": "Mouse", + "pt": 1, + }, + "value": 863570, + }, + { + "category": "Pet", + "configData": { + "id": "Love Corgi", + "sh": true, + }, + "value": 14010, + }, + { + "category": "Pet", + "configData": { + "id": "Stunt Cat", + "pt": 2, + }, + "value": 5095, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crystal Spider", + "pt": 2, + }, + "value": 347222415, + }, + { + "category": "Pet", + "configData": { + "id": "Totem Cub", + "pt": 1, + "sh": true, + }, + "value": 15, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Fox", + }, + "value": 138, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Globe Corgi", + "sh": true, + }, + "value": 9271643, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pixel Monkey", + "pt": 1, + }, + "value": 7312409909, + }, + { + "category": "Pet", + "configData": { + "id": "Spotted Elephant", + "pt": 2, + }, + "value": 6550, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Blobfish", + }, + "value": 92082165848, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Player Corgi", + "sh": true, + }, + "value": 252430404, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Exquisite Cat", + "sh": true, + }, + "value": 15713278312, + }, + { + "category": "Misc", + "configData": { + "id": "Golden Paw Ticket", + }, + "value": 149980, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Dragon", + "pt": 2, + }, + "value": 5540074916, + }, + { + "category": "Pet", + "configData": { + "id": "Floatie Flamingo", + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pastel Elephant", + "pt": 1, + }, + "value": 216390100, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bee", + "pt": 1, + "sh": true, + }, + "value": 228776490, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Teacher Cat", + "pt": 2, + }, + "value": 153469292, + }, + { + "category": "Pet", + "configData": { + "cv": 6, + "id": "Huge Chroma Swan", + "pt": 2, + }, + "value": 807941491, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Axolotl", + "sh": true, + }, + "value": 26525407, + }, + { + "category": "Pet", + "configData": { + "id": "Bunny", + "pt": 2, + }, + "value": 8329, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Shiba", + "pt": 2, + "sh": true, + }, + "value": 592910100, + }, + { + "category": "Pet", + "configData": { + "id": "Sketch Dragon", + "pt": 2, + }, + "value": 20465374, + }, + { + "category": "Pet", + "configData": { + "id": "Scary Corgi", + "pt": 2, + }, + "value": 3950, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Bee", + "pt": 2, + }, + "value": 4655, + }, + { + "category": "Pet", + "configData": { + "id": "Tulip Hedgehog", + }, + "value": 123, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cyborg Capybara", + "pt": 2, + }, + "value": 8246376332, + }, + { + "category": "Pet", + "configData": { + "cv": 5, + "id": "Huge Chroma Tiger", + }, + "value": 93670951, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chef Monkey", + "sh": true, + }, + "value": 590656093, + }, + { + "category": "Card", + "configData": { + "id": "Tech Chest Mimic Card", + "pt": 1, + "sh": true, + }, + "value": 206864, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Arcade Dog", + "pt": 1, + "sh": true, + }, + "value": 321734555, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elephant", + "sh": true, + }, + "value": 95465740, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Jackalope", + "pt": 2, + }, + "value": 606, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Meebo in a Spaceship", + "pt": 2, + }, + "value": 1109, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nice Cat", + "pt": 1, + }, + "value": 352018863, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Bobcat", + "pt": 2, + }, + "value": 97960000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glitched Unicorn Ball", + "pt": 1, + "sh": true, + }, + "value": 319578906, + }, + { + "category": "Pet", + "configData": { + "id": "Runebound Bobcat", + "sh": true, + }, + "value": 1014, + }, + { + "category": "Pet", + "configData": { + "id": "Banana", + "pt": 2, + }, + "value": 32104645632, + }, + { + "category": "Pet", + "configData": { + "id": "Zeus Bull", + "pt": 1, + "sh": true, + }, + "value": 1361024, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Polar Bear", + "sh": true, + }, + "value": 338667, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Elephant", + "pt": 2, + "sh": true, + }, + "value": 9445980416, + }, + { + "category": "Pet", + "configData": { + "id": "Crackling Dragon", + "pt": 2, + }, + "value": 166971, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Wyvern of Hades", + }, + "value": 2165198825, + }, + { + "category": "Pet", + "configData": { + "id": "Cat", + "pt": 1, + "sh": true, + }, + "value": 6904606, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Unicorn", + "pt": 1, + }, + "value": 896214, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dragon", + "pt": 2, + }, + "value": 3906895763, + }, + { + "category": "Pet", + "configData": { + "id": "Exquisite Parrot", + "pt": 1, + }, + "value": 15016361, + }, + { + "category": "Pet", + "configData": { + "id": "Flex Fluffy Cat", + "sh": true, + }, + "value": 9578686, + }, + { + "category": "Card", + "configData": { + "id": "Huge Hubert Card", + "pt": 2, + }, + "value": 895867159, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Panther", + }, + "value": 55851, + }, + { + "category": "Pet", + "configData": { + "id": "Midnight Zebra", + "pt": 2, + }, + "value": 21453791, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pristine Snake", + "sh": true, + }, + "value": 413985160, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Leprechaun Dog", + "pt": 2, + }, + "value": 17834778854, + }, + { + "category": "Pet", + "configData": { + "id": "Junkyard Bat", + }, + "value": 643, + }, + { + "category": "Pet", + "configData": { + "id": "Scarecrow Dog", + "pt": 2, + "sh": true, + }, + "value": 13457, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rose Cat", + "sh": true, + }, + "value": 1041469614, + }, + { + "category": "Pet", + "configData": { + "id": "Vampire Dragon", + "pt": 2, + }, + "value": 666, + }, + { + "category": "Pet", + "configData": { + "id": "Leprechaun Dog", + "pt": 2, + }, + "value": 216, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Warrior Beast", + }, + "value": 14933608702, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Cat", + "pt": 1, + }, + "value": 377, + }, + { + "category": "Pet", + "configData": { + "id": "Brain", + }, + "value": 60, + }, + { + "category": "Pet", + "configData": { + "id": "Popcorn Cat", + "pt": 1, + }, + "value": 20881, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Tiger", + }, + "value": 38, + }, + { + "category": "Consumable", + "configData": { + "id": "Factory Speed Booster", + "tn": 2, + }, + "value": 1336, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Bat", + }, + "value": 33, + }, + { + "category": "Consumable", + "configData": { + "id": "Basketball Hoop", + "tn": 1, + }, + "value": 1895, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Player Fox", + "sh": true, + }, + "value": 97861638, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Police Cat", + "pt": 2, + }, + "value": 369684926, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Golem", + "sh": true, + }, + "value": 2663012320, + }, + { + "category": "Pet", + "configData": { + "id": "Sandcastle Kraken", + "pt": 1, + "sh": true, + }, + "value": 62280, + }, + { + "category": "Pet", + "configData": { + "id": "Dino Cat", + "sh": true, + }, + "value": 31540710, + }, + { + "category": "Pet", + "configData": { + "id": "Cotton Candy Lamb", + }, + "value": 37, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elf Cat", + "pt": 2, + }, + "value": 491858029, + }, + { + "category": "Pet", + "configData": { + "id": "Jurassic Beaver", + "pt": 2, + }, + "value": 29537279, + }, + { + "category": "Pet", + "configData": { + "id": "Demon Cat", + }, + "value": 27901, + }, + { + "category": "Pet", + "configData": { + "id": "Knight Slime", + }, + "value": 390, + }, + { + "category": "Pet", + "configData": { + "id": "Dark Lord", + }, + "value": 164, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Wolf", + "pt": 1, + "sh": true, + }, + "value": 137953, + }, + { + "category": "Pet", + "configData": { + "id": "Turtle in a Bucket", + "sh": true, + }, + "value": 17042, + }, + { + "category": "Pet", + "configData": { + "id": "Sunflower Lion", + }, + "value": 1974, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Tiger", + }, + "value": 122, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Toy Chest Mimic", + "pt": 2, + "sh": true, + }, + "value": 2749942839, + }, + { + "category": "Pet", + "configData": { + "id": "Imp", + "pt": 1, + }, + "value": 130, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Golem", + "pt": 2, + "sh": true, + }, + "value": 4295943757, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Monkey", + "sh": true, + }, + "value": 22462952, + }, + { + "category": "Pet", + "configData": { + "id": "Rootkin Fox", + "pt": 2, + "sh": true, + }, + "value": 111000, + }, + { + "category": "Card", + "configData": { + "id": "Error Cat Card", + "pt": 2, + "sh": true, + }, + "value": 22696, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pumpkin Cat", + "sh": true, + }, + "value": 2348813220, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Deer", + "pt": 1, + "sh": true, + }, + "value": 325, + }, + { + "category": "Pet", + "configData": { + "id": "Tabby Cat", + }, + "value": 10234, + }, + { + "category": "Pet", + "configData": { + "id": "Buff Tiger", + }, + "value": 39892832, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Super Spider", + "sh": true, + }, + "value": 479645016, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Super Tiger", + "sh": true, + }, + "value": 915114304, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Snow Globe Cat", + "pt": 2, + }, + "value": 294968227205, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Grinch Cat", + "sh": true, + }, + "value": 3144213084, + }, + { + "category": "Pet", + "configData": { + "id": "Royal Peacock", + "pt": 1, + }, + "value": 439, + }, + { + "category": "Tower", + "configData": { + "id": "Rich Corgi", + }, + "value": 199980, + }, + { + "category": "Pet", + "configData": { + "id": "Red Panda", + }, + "value": 2033, + }, + { + "category": "Pet", + "configData": { + "id": "Wireframe Cat", + "sh": true, + }, + "value": 994, + }, + { + "category": "Pet", + "configData": { + "id": "Baseball Dolphin", + "pt": 2, + }, + "value": 2580, + }, + { + "category": "Pet", + "configData": { + "id": "Pineapple Dog", + "pt": 2, + }, + "value": 386, + }, + { + "category": "Pet", + "configData": { + "id": "North Pole Bunny", + "pt": 1, + }, + "value": 360, + }, + { + "category": "Tower", + "configData": { + "id": "Nuclear Dominus", + }, + "value": 412953, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Balloon Dragon", + "pt": 2, + }, + "value": 2883384932, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Forest Wyvern", + }, + "value": 235654680681, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Specter Owl", + "sh": true, + }, + "value": 383461376000, + }, + { + "category": "Pet", + "configData": { + "id": "Ducky Magician", + "pt": 2, + }, + "value": 2144, + }, + { + "category": "Pet", + "configData": { + "id": "Firegel Dragon", + }, + "value": 578, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Minecart Hamster", + "pt": 2, + "sh": true, + }, + "value": 1989185752, + }, + { + "category": "Pet", + "configData": { + "id": "Comet Agony", + }, + "value": 74, + }, + { + "category": "Pet", + "configData": { + "id": "Circuit Cat", + "pt": 1, + }, + "value": 6466, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Butterfly", + "pt": 2, + "sh": true, + }, + "value": 8931757252, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Ram", + }, + "value": 828, + }, + { + "category": "Pet", + "configData": { + "id": "Humble Hen", + "pt": 1, + }, + "value": 50, + }, + { + "category": "Pet", + "configData": { + "id": "Angelus", + "sh": true, + }, + "value": 14203, + }, + { + "category": "Pet", + "configData": { + "id": "Marshmallow Kitsune", + "sh": true, + }, + "value": 517, + }, + { + "category": "Pet", + "configData": { + "id": "Puurple Cat", + "pt": 2, + "sh": true, + }, + "value": 803968295, + }, + { + "category": "Pet", + "configData": { + "id": "Basketball Cat", + "pt": 2, + }, + "value": 49325, + }, + { + "category": "Pet", + "configData": { + "id": "Quantum Griffin", + }, + "value": 112, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Dragon", + "pt": 2, + }, + "value": 194, + }, + { + "category": "Pet", + "configData": { + "id": "Unicorn Kitten", + }, + "value": 235, + }, + { + "category": "Pet", + "configData": { + "id": "Albino Bat", + "pt": 1, + }, + "value": 103431, + }, + { + "category": "Pet", + "configData": { + "cv": 6, + "id": "Huge Chroma Tiger", + "sh": true, + }, + "value": 831849139, + }, + { + "category": "Pet", + "configData": { + "id": "Mossy Lamb", + }, + "value": 32, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Axolotl", + "pt": 2, + "sh": true, + }, + "value": 81043, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Old Wizard Cat", + "pt": 2, + }, + "value": 16108786411, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elf Cat", + "pt": 1, + "sh": true, + }, + "value": 3352343355, + }, + { + "category": "Pet", + "configData": { + "id": "Ooze Corgi", + }, + "value": 672, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elf Dog", + "pt": 1, + "sh": true, + }, + "value": 2542211334, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dark Dragon", + "sh": true, + }, + "value": 2012988200, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hell Spider", + "pt": 2, + }, + "value": 203350414, + }, + { + "category": "Pet", + "configData": { + "id": "Turbo Cheetah", + }, + "value": 56, + }, + { + "category": "Pet", + "configData": { + "id": "Knight Cat", + }, + "value": 153, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Cat", + "pt": 1, + }, + "value": 6587, + }, + { + "category": "Pet", + "configData": { + "id": "Flowers Hedgehog", + }, + "value": 29, + }, + { + "category": "Pet", + "configData": { + "id": "Elegant Eagle", + "pt": 1, + "sh": true, + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Blobenstein", + "sh": true, + }, + "value": 6039994880, + }, + { + "category": "Pet", + "configData": { + "id": "UV Kitsune", + "sh": true, + }, + "value": 4951, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pufferfish", + "pt": 2, + }, + "value": 21312172646, + }, + { + "category": "Pet", + "configData": { + "id": "Quantum Bunny", + "pt": 1, + }, + "value": 619, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Seal", + "pt": 1, + }, + "value": 215, + }, + { + "category": "Pet", + "configData": { + "id": "Train Conductor Cat", + "pt": 2, + }, + "value": 92, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Dog", + }, + "value": 159, + }, + { + "category": "Pet", + "configData": { + "id": "Cotton Candy Cow", + "pt": 1, + }, + "value": 156, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holly Fawn", + "sh": true, + }, + "value": 896152257, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Icy Phoenix", + "sh": true, + }, + "value": 694585748, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Wolf", + "sh": true, + }, + "value": 1123, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shiba", + "pt": 1, + }, + "value": 4105287704, + }, + { + "category": "Pet", + "configData": { + "id": "Pink Poodle", + "pt": 1, + }, + "value": 3801, + }, + { + "category": "Pet", + "configData": { + "id": "Paintbot Spider", + "sh": true, + }, + "value": 132, + }, + { + "category": "Tool", + "configData": { + "id": "Amethyst Pickaxe", + }, + "value": 3537176, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Piggy", + "pt": 2, + }, + "value": 293, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Agony", + "pt": 1, + }, + "value": 83335, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bearserker", + "pt": 2, + }, + "value": 296823063, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Trojan Horse", + "pt": 1, + }, + "value": 176788399, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spitting Dino", + "pt": 1, + "sh": true, + }, + "value": 2223228581, + }, + { + "category": "Pet", + "configData": { + "id": "Hi-Tech Bee", + }, + "value": 19, + }, + { + "category": "Pet", + "configData": { + "id": "Flowers Hedgehog", + "pt": 2, + }, + "value": 1782, + }, + { + "category": "Pet", + "configData": { + "id": "Artemis Bear", + "pt": 2, + }, + "value": 4012, + }, + { + "category": "Pet", + "configData": { + "id": "Whale Shark", + }, + "value": 5712, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Bat", + "pt": 1, + }, + "value": 3205, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Agony", + }, + "value": 1768378409, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Corgi", + }, + "value": 2658, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Tiger", + "sh": true, + }, + "value": 612340426, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Merry Manatee", + "sh": true, + }, + "value": 3015451210, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Exquisite Cat", + "pt": 2, + }, + "value": 897500141, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crystal Bat", + "pt": 1, + }, + "value": 64936877, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stunt Corgi", + "pt": 1, + "sh": true, + }, + "value": 499057200, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Unicorn", + "pt": 2, + }, + "value": 500469991, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pog Cat", + "pt": 2, + }, + "value": 2394233161, + }, + { + "category": "Pet", + "configData": { + "id": "Bubble Cat", + "pt": 2, + }, + "value": 8395, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gamer Shiba", + "pt": 1, + }, + "value": 1870103727, + }, + { + "category": "Pet", + "configData": { + "id": "Cartoon Corgi", + "sh": true, + }, + "value": 12735488, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Cat", + }, + "value": 181218, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Dragon", + "pt": 1, + "sh": true, + }, + "value": 2560360, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pufferfish", + "pt": 1, + }, + "value": 958000377, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gleebo The Alien", + "pt": 1, + }, + "value": 12233910394, + }, + { + "category": "Pet", + "configData": { + "id": "Squirrel", + "pt": 2, + }, + "value": 1886, + }, + { + "category": "Pet", + "configData": { + "id": "Glimmer Goat", + "pt": 2, + "sh": true, + }, + "value": 12283388, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Ninja Giraffe", + }, + "value": 2881167, + }, + { + "category": "Pet", + "configData": { + "id": "Nightmare Sludge", + }, + "value": 2653690, + }, + { + "category": "Pet", + "configData": { + "id": "Police Dog", + }, + "value": 469, + }, + { + "category": "Card", + "configData": { + "id": "Hydra Cat Card", + "sh": true, + }, + "value": 22165, + }, + { + "category": "Pet", + "configData": { + "id": "Atomic Monkey Ball", + }, + "value": 309, + }, + { + "category": "Pet", + "configData": { + "id": "Snowflake Pegasus", + }, + "value": 8814950, + }, + { + "category": "Pet", + "configData": { + "id": "Fairy Bee", + }, + "value": 14, + }, + { + "category": "Pet", + "configData": { + "id": "Inferno Stealth Cat", + "sh": true, + }, + "value": 592080000, + }, + { + "category": "Pet", + "configData": { + "id": "Lamb", + "pt": 2, + }, + "value": 16533, + }, + { + "category": "Pet", + "configData": { + "id": "Matryoshka Fox", + "sh": true, + }, + "value": 13606277, + }, + { + "category": "Consumable", + "configData": { + "id": "Cannon Critical Booster", + "tn": 1, + }, + "value": 7050, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hedgehog", + "pt": 1, + }, + "value": 334120000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ooze Corgi", + "pt": 1, + }, + "value": 169119940, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixie Bee", + "sh": true, + }, + "value": 189595040000, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Globe Hamster", + "pt": 2, + }, + "value": 32073677, + }, + { + "category": "Pet", + "configData": { + "id": "Reindeer Corgi", + }, + "value": 1944542, + }, + { + "category": "Pet", + "configData": { + "cv": 5, + "id": "Huge Chroma Swan", + "pt": 2, + }, + "value": 457097171, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Dove", + }, + "value": 3777, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Divinus", + "pt": 1, + "sh": true, + }, + "value": 1044410334, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Keyboard Cat", + "sh": true, + }, + "value": 35000291130, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Dolphin", + }, + "value": 39, + }, + { + "category": "Pet", + "configData": { + "id": "Sapphire Carbuncle", + "sh": true, + }, + "value": 604, + }, + { + "category": "Pet", + "configData": { + "id": "Firefossil Wolf", + "pt": 1, + "sh": true, + }, + "value": 1295635, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Corgi", + }, + "value": 246, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Anime Cat Card", + "pt": 2, + "sh": true, + }, + "value": 98648460800, + }, + { + "category": "Pet", + "configData": { + "id": "Jurassic Beaver", + "sh": true, + }, + "value": 33096896, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucky Cat", + "pt": 2, + }, + "value": 7001903772, + }, + { + "category": "Pet", + "configData": { + "id": "Huge King Cobra", + "pt": 2, + }, + "value": 294207696, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Dragon", + "pt": 2, + "sh": true, + }, + "value": 6798, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Super Coral Stingray", + "pt": 2, + }, + "value": 66368000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Corgi", + "pt": 2, + "sh": true, + }, + "value": 9208747150, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Agony", + "pt": 2, + }, + "value": 343953803, + }, + { + "category": "Pet", + "configData": { + "id": "Meebo The Alien Ball", + "pt": 1, + }, + "value": 266, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Huge Chroma Phoenix", + "pt": 2, + }, + "value": 289960396, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Cat", + "pt": 2, + "sh": true, + }, + "value": 1900233846, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Obsidian Griffin", + "pt": 1, + "sh": true, + }, + "value": 2288256000, + }, + { + "category": "Pet", + "configData": { + "id": "Recruiter Axolotl", + }, + "value": 44, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Treasure Turtle", + "pt": 2, + }, + "value": 1032010270, + }, + { + "category": "Pet", + "configData": { + "id": "Pegasus", + "pt": 2, + }, + "value": 2600, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Arcade Cat", + "pt": 1, + }, + "value": 639663777, + }, + { + "category": "Pet", + "configData": { + "id": "Neon Twilight Dragon", + "pt": 2, + }, + "value": 361729830, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Bunny", + "pt": 2, + }, + "value": 796908, + }, + { + "category": "Pet", + "configData": { + "id": "Safari Cat", + "pt": 1, + }, + "value": 604, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Pegasus", + "sh": true, + }, + "value": 5060, + }, + { + "category": "Pet", + "configData": { + "id": "Nutcracker Squirrel", + "pt": 1, + }, + "value": 16, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Axolotl", + "pt": 2, + }, + "value": 139, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Peacock", + }, + "value": 3093, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Penguin", + "pt": 1, + }, + "value": 270732319, + }, + { + "category": "Pet", + "configData": { + "id": "Basketball Retriever", + "pt": 1, + }, + "value": 243, + }, + { + "category": "Tower", + "configData": { + "id": "Helicopter Corgi", + }, + "value": 22396399, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glitched Cat", + "pt": 1, + }, + "value": 1087831224, + }, + { + "category": "Pet", + "configData": { + "id": "Beegle Dog", + "pt": 2, + "sh": true, + }, + "value": 75934, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Blobenstein", + "pt": 2, + }, + "value": 22164763321, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Valentines Axolotl", + "pt": 1, + }, + "value": 9349117427, + }, + { + "category": "Pet", + "configData": { + "id": "Patapim Brainrot", + "pt": 2, + "sh": true, + }, + "value": 518984801, + }, + { + "category": "Pet", + "configData": { + "id": "Tropical Parrot", + "pt": 1, + }, + "value": 39536039, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Maskot", + "pt": 2, + }, + "value": 1750, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Happy Computer", + "pt": 1, + "sh": true, + }, + "value": 306712539, + }, + { + "category": "Pet", + "configData": { + "id": "Star Surfer", + "pt": 2, + }, + "value": 24598, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Fawn", + "pt": 1, + }, + "value": 693, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Dragon", + "pt": 2, + "sh": true, + }, + "value": 208000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ooze Cat", + "pt": 1, + "sh": true, + }, + "value": 334415857, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Cow", + "sh": true, + }, + "value": 364199943, + }, + { + "category": "Pet", + "configData": { + "id": "Giraffe", + }, + "value": 40, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Dino Cat", + "pt": 2, + }, + "value": 34159408333, + }, + { + "category": "Pet", + "configData": { + "id": "Nightfall Pegasus", + "pt": 2, + }, + "value": 179835260, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Butterfly", + "pt": 2, + }, + "value": 499592133, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fox", + "pt": 1, + "sh": true, + }, + "value": 7116479999, + }, + { + "category": "Pet", + "configData": { + "id": "Pixel Dragon", + "pt": 2, + }, + "value": 169277, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wishing Dragon", + "pt": 2, + "sh": true, + }, + "value": 2733760000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Axolotl", + "pt": 1, + "sh": true, + }, + "value": 2080000000, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Peacock", + "sh": true, + }, + "value": 1556467, + }, + { + "category": "Pet", + "configData": { + "id": "Pink Poodle", + "sh": true, + }, + "value": 99336, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Axolotl", + "pt": 1, + }, + "value": 1014, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Signature BIG Maskot", + "pt": 1, + }, + "value": 17949973360, + }, + { + "category": "Pet", + "configData": { + "id": "Yin-Yang Dragon", + "sh": true, + }, + "value": 24299327, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Firefly", + "pt": 1, + }, + "value": 738667431, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hell Monkey", + "pt": 1, + }, + "value": 122743418, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Abomination", + "pt": 2, + }, + "value": 265454592, + }, + { + "category": "Pet", + "configData": { + "id": "Wise Cat", + "pt": 2, + "sh": true, + }, + "value": 3274761, + }, + { + "category": "Pet", + "configData": { + "id": "Raining Love Dog", + "pt": 2, + "sh": true, + }, + "value": 94202, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tropical Toucan", + "pt": 2, + "sh": true, + }, + "value": 11096144000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jetpack Cat", + "sh": true, + }, + "value": 2162205698, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Penguin", + "sh": true, + }, + "value": 1497, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Pegasus", + "pt": 2, + "sh": true, + }, + "value": 1610, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Seal", + "sh": true, + }, + "value": 6332989, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sad Doge", + "sh": true, + }, + "value": 1267163759, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valentines Dominus", + "pt": 2, + }, + "value": 530808369, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Cat", + "pt": 2, + }, + "value": 68658281, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Old Wizard Owl", + "pt": 1, + "sh": true, + }, + "value": 1566672799, + }, + { + "category": "Pet", + "configData": { + "id": "Tarantula", + }, + "value": 119, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Googly Shark", + "pt": 2, + }, + "value": 16787948423, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Bunny", + "pt": 2, + }, + "value": 31291, + }, + { + "category": "Pet", + "configData": { + "id": "Stealth Dragon", + "pt": 1, + "sh": true, + }, + "value": 179413539, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Hydra", + "sh": true, + }, + "value": 53633, + }, + { + "category": "Pet", + "configData": { + "id": "Luau Cat", + "pt": 2, + }, + "value": 324, + }, + { + "category": "Pet", + "configData": { + "id": "Divinus", + "pt": 2, + }, + "value": 11421, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Huge Chroma Snail", + "pt": 2, + }, + "value": 440154432, + }, + { + "category": "Pet", + "configData": { + "id": "Dot Matrix Axolotl", + "sh": true, + }, + "value": 44045620, + }, + { + "category": "Pet", + "configData": { + "id": "Dino Cat", + "pt": 1, + "sh": true, + }, + "value": 34088667, + }, + { + "category": "Pet", + "configData": { + "id": "Graffiti Raccoon", + "sh": true, + }, + "value": 2923, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rootkin Fox", + "sh": true, + }, + "value": 936896787, + }, + { + "category": "Pet", + "configData": { + "id": "Bubble Cat", + "pt": 1, + }, + "value": 5880, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shadow Dominus", + "sh": true, + }, + "value": 115982361, + }, + { + "category": "Pet", + "configData": { + "id": "M-6 PROTOTYPE", + }, + "value": 479124, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Agony", + }, + "value": 377, + }, + { + "category": "Pet", + "configData": { + "cv": 1, + "id": "Huge Chroma Unicorn", + "sh": true, + }, + "value": 2269024119, + }, + { + "category": "Pet", + "configData": { + "id": "Dino", + "sh": true, + }, + "value": 140, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Bee", + "pt": 1, + "sh": true, + }, + "value": 1075427250, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Valkyrie Pegasus", + "sh": true, + }, + "value": 535003200000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anime Agony", + "pt": 1, + }, + "value": 6786062580, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evil Snowman", + "pt": 2, + }, + "value": 273749053, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Dragon", + "pt": 2, + }, + "value": 71254615, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Player Panda", + "sh": true, + }, + "value": 424532280, + }, + { + "category": "Pet", + "configData": { + "id": "Cosmic Agony", + "sh": true, + }, + "value": 39421522, + }, + { + "category": "Misc", + "configData": { + "id": "Lucky Raid Boss Key Upper Half", + }, + "value": 3408, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiedye Axolotl", + "pt": 2, + }, + "value": 922933428, + }, + { + "category": "Card", + "configData": { + "id": "Super Axolotl Card", + "sh": true, + }, + "value": 5365026, + }, + { + "category": "Pet", + "configData": { + "id": "Nurse Shark", + "pt": 2, + }, + "value": 281, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Bunny", + "pt": 1, + }, + "value": 98, + }, + { + "category": "Pet", + "configData": { + "id": "Nine Eyed Lion", + }, + "value": 115, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Old Wizard Owl", + "sh": true, + }, + "value": 215168930, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Mosaic Cat", + "pt": 1, + }, + "value": 13808291894, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gym Axolotl", + "pt": 1, + }, + "value": 6115129338, + }, + { + "category": "Pet", + "configData": { + "id": "Shattered Heart Agony", + "pt": 2, + }, + "value": 7234, + }, + { + "category": "Pet", + "configData": { + "cv": 5, + "id": "Huge Chroma Phoenix", + "pt": 2, + }, + "value": 494787912, + }, + { + "category": "Pet", + "configData": { + "id": "Owl", + "pt": 2, + "sh": true, + }, + "value": 741, + }, + { + "category": "Pet", + "configData": { + "id": "Cool Cat", + "sh": true, + }, + "value": 9768903, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doodle Dragon", + "sh": true, + }, + "value": 982579935, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki", + "pt": 2, + }, + "value": 21308432333, + }, + { + "category": "Pet", + "configData": { + "id": "Neon Twilight Wolf", + "pt": 2, + }, + "value": 64870709, + }, + { + "category": "Pet", + "configData": { + "id": "Parachute Monkey", + "pt": 1, + }, + "value": 463, + }, + { + "category": "Pet", + "configData": { + "id": "Blurred Monkey", + "pt": 2, + "sh": true, + }, + "value": 985118, + }, + { + "category": "Pet", + "configData": { + "id": "Matrix Monkey", + }, + "value": 6956, + }, + { + "category": "Pet", + "configData": { + "cv": 5, + "id": "Chroma Phoenix", + }, + "value": 14888, + }, + { + "category": "Pet", + "configData": { + "id": "Turbo Cheetah", + "pt": 1, + }, + "value": 1777, + }, + { + "category": "Pet", + "configData": { + "id": "Ghost", + }, + "value": 3465, + }, + { + "category": "Pet", + "configData": { + "id": "Sun Parrot", + "pt": 2, + }, + "value": 46760, + }, + { + "category": "Pet", + "configData": { + "id": "Stealth Cat", + "pt": 1, + "sh": true, + }, + "value": 385768768, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jolly Penguin", + "sh": true, + }, + "value": 397513654, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Fox", + "pt": 1, + "sh": true, + }, + "value": 405794401, + }, + { + "category": "Pet", + "configData": { + "id": "Huge UV Cat", + "pt": 1, + }, + "value": 77646402, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Treasure Mimic", + "pt": 2, + }, + "value": 24492959142, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Cat", + "pt": 2, + }, + "value": 513955469, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Gecko", + }, + "value": 82, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Peacock", + "pt": 2, + "sh": true, + }, + "value": 991946, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Angel Dragon", + "sh": true, + }, + "value": 819850307, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soul Dragon", + "sh": true, + }, + "value": 2642962116, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Super Wolf Card", + "pt": 2, + }, + "value": 7849147380, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Toy Duck", + "sh": true, + }, + "value": 989473910, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stealth Bobcat", + "pt": 2, + "sh": true, + }, + "value": 6654080000, + }, + { + "category": "Pet", + "configData": { + "id": "Loveserker", + "pt": 2, + }, + "value": 269470, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Easter Cat", + "pt": 1, + }, + "value": 9048917284, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pog Cat", + "sh": true, + }, + "value": 4399715398, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pumpkin Cat", + "pt": 1, + "sh": true, + }, + "value": 4332328852, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Super Coral Axolotl", + "pt": 2, + }, + "value": 937609336, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holiday Dove", + "pt": 1, + }, + "value": 70083912, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sandcastle Cat", + "pt": 1, + }, + "value": 3343001152, + }, + { + "category": "Pet", + "configData": { + "id": "Surfboard Axolotl", + "pt": 2, + "sh": true, + }, + "value": 1061, + }, + { + "category": "Pet", + "configData": { + "id": "Surfboard Axolotl", + "sh": true, + }, + "value": 641, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doodle Cat", + "pt": 1, + "sh": true, + }, + "value": 1265738918, + }, + { + "category": "Pet", + "configData": { + "id": "Dove", + }, + "value": 388, + }, + { + "category": "Pet", + "configData": { + "id": "Rock Monkey", + }, + "value": 23, + }, + { + "category": "Pet", + "configData": { + "id": "Panda", + }, + "value": 118, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doodle Fairy", + "pt": 1, + "sh": true, + }, + "value": 2609769148, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Peacock", + "sh": true, + }, + "value": 676743714, + }, + { + "category": "Tower", + "configData": { + "id": "Torpedo Cat", + }, + "value": 11806, + }, + { + "category": "Consumable", + "configData": { + "id": "Easter Chest Tokens Booster", + "tn": 2, + }, + "value": 20836, + }, + { + "category": "Pet", + "configData": { + "id": "Irish Corgi", + }, + "value": 352, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Dominus", + "sh": true, + }, + "value": 14708125, + }, + { + "category": "Pet", + "configData": { + "id": "Night Terror Cat", + "pt": 1, + }, + "value": 14782, + }, + { + "category": "Pet", + "configData": { + "id": "Grim Reaper", + "pt": 2, + }, + "value": 1345, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Bunny", + }, + "value": 73, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Ducky", + }, + "value": 8884, + }, + { + "category": "Pet", + "configData": { + "cv": 5, + "id": "Huge Chroma Ink Blob", + "sh": true, + }, + "value": 1118881997, + }, + { + "category": "Pet", + "configData": { + "id": "Royal Cloud Cat", + "sh": true, + }, + "value": 1836, + }, + { + "category": "Pet", + "configData": { + "id": "Treasure Golem", + "pt": 2, + "sh": true, + }, + "value": 851697407, + }, + { + "category": "Pet", + "configData": { + "id": "Machete Dog", + "sh": true, + }, + "value": 35831996, + }, + { + "category": "Pet", + "configData": { + "id": "Parachute Monkey", + }, + "value": 791, + }, + { + "category": "Pet", + "configData": { + "id": "Water Zebra", + "pt": 2, + }, + "value": 32698, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Poseidon Dog", + "pt": 2, + }, + "value": 547520621, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ducky", + "pt": 1, + "sh": true, + }, + "value": 144774359040, + }, + { + "category": "Pet", + "configData": { + "id": "North Pole Wolf", + "pt": 2, + }, + "value": 125574400, + }, + { + "category": "Pet", + "configData": { + "id": "Pegasus", + "pt": 1, + }, + "value": 917, + }, + { + "category": "Pet", + "configData": { + "id": "Sensei Penguin", + "pt": 2, + }, + "value": 210514432, + }, + { + "category": "Pet", + "configData": { + "id": "Luxe Axolotl", + }, + "value": 9935, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Loveserker", + "pt": 2, + "sh": true, + }, + "value": 4565984648, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Cat", + "sh": true, + }, + "value": 141, + }, + { + "category": "Pet", + "configData": { + "id": "Surfboard Corgi", + "pt": 1, + }, + "value": 168, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Totem Cat", + "pt": 2, + }, + "value": 1501787681, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chroma Doodle Axolotl", + "pt": 2, + }, + "value": 182491127, + }, + { + "category": "Pet", + "configData": { + "id": "Athena Owl", + "pt": 2, + "sh": true, + }, + "value": 9985, + }, + { + "category": "Misc", + "configData": { + "id": "Rainbow Pencil", + }, + "value": 163384, + }, + { + "category": "Pet", + "configData": { + "id": "Zeus Bull", + }, + "value": 1061, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stunt Cat", + "pt": 2, + "sh": true, + }, + "value": 5324672831, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pink Kitsune Fox", + "sh": true, + }, + "value": 34242794240, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doodle Dragon", + "pt": 1, + "sh": true, + }, + "value": 37136000000, + }, + { + "category": "Pet", + "configData": { + "id": "Tome Owl", + "pt": 2, + }, + "value": 390954, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Cat", + "sh": true, + }, + "value": 151164, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Diamond Cat", + "pt": 1, + }, + "value": 2558073995, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Avenging Griffin", + "sh": true, + }, + "value": 346704607, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Dog", + "pt": 2, + }, + "value": 20193707, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glowy the Ghost", + "pt": 1, + "sh": true, + }, + "value": 740451120, + }, + { + "category": "Pet", + "configData": { + "id": "Nightmare Spirit", + "pt": 2, + }, + "value": 40164089, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Player Fox", + "pt": 2, + "sh": true, + }, + "value": 5667200000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jester Dog", + "pt": 2, + }, + "value": 619179849, + }, + { + "category": "Pet", + "configData": { + "id": "Ghost Axolotl", + }, + "value": 1574, + }, + { + "category": "Pet", + "configData": { + "id": "Doll Cat", + "sh": true, + }, + "value": 24669, + }, + { + "category": "Pet", + "configData": { + "id": "Surfboard Axolotl", + "pt": 1, + "sh": true, + }, + "value": 231, + }, + { + "category": "Pet", + "configData": { + "id": "Autumn Retriever", + }, + "value": 460, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Flex Tiger", + "sh": true, + }, + "value": 689288914, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Santa Dragon", + "pt": 2, + }, + "value": 7862507023, + }, + { + "category": "Pet", + "configData": { + "id": "Comet Cyclops Ball", + "pt": 2, + }, + "value": 2925699, + }, + { + "category": "Pet", + "configData": { + "id": "Inferno Stealth Dragon", + "pt": 1, + "sh": true, + }, + "value": 5000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Rudolf", + }, + "value": 762363, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Bunny", + "pt": 1, + "sh": true, + }, + "value": 2232, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Butterfly", + }, + "value": 10195068168, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Bat", + "pt": 2, + "sh": true, + }, + "value": 7321, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Peacock", + "sh": true, + }, + "value": 301265377, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Corgi", + "sh": true, + }, + "value": 21588, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Bison", + "sh": true, + }, + "value": 612206550, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Bear", + }, + "value": 870, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holographic Corgi", + }, + "value": 25400000000, + }, + { + "category": "Pet", + "configData": { + "cv": 6, + "id": "Huge Chroma Butterfly", + "pt": 2, + }, + "value": 1012848314, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Teacher Cat", + "pt": 2, + "sh": true, + }, + "value": 2923807010, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Goblin", + "sh": true, + }, + "value": 186005639, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Huge Chroma Phoenix", + "pt": 2, + "sh": true, + }, + "value": 6698806301, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Slime", + "pt": 2, + }, + "value": 138972, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Runic Wolf", + }, + "value": 15387040000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Inferno Stealth Cat", + "pt": 1, + "sh": true, + }, + "value": 3305773242, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Plague Dragon", + "sh": true, + }, + "value": 250346724, + }, + { + "category": "Pet", + "configData": { + "id": "Starry Owl", + }, + "value": 114, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pumpkin Scarecrow", + "pt": 2, + }, + "value": 388161114, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Unicorn", + "pt": 2, + }, + "value": 528, + }, + { + "category": "Pet", + "configData": { + "id": "Safari Cat", + "pt": 2, + "sh": true, + }, + "value": 9895, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Corgi", + "sh": true, + }, + "value": 15900038, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ooze Corgi", + }, + "value": 62408914, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gazelle", + "pt": 1, + "sh": true, + }, + "value": 1146456250, + }, + { + "category": "Pet", + "configData": { + "id": "Stingray", + "sh": true, + }, + "value": 3649, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Player Fox", + "pt": 1, + "sh": true, + }, + "value": 290948417, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Minecart Piggy", + "sh": true, + }, + "value": 1296847015, + }, + { + "category": "Pet", + "configData": { + "id": "Boxing Elephant", + "pt": 1, + }, + "value": 260, + }, + { + "category": "Pet", + "configData": { + "id": "Super Coral Whale", + "sh": true, + }, + "value": 41086085, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mosaic Lamb", + "pt": 2, + "sh": true, + }, + "value": 10213747123, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Axolotl", + "pt": 2, + }, + "value": 1111891152, + }, + { + "category": "Pet", + "configData": { + "id": "Artemis Bear", + }, + "value": 188, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Sock Dragon", + }, + "value": 595, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Bee", + "pt": 2, + "sh": true, + }, + "value": 2297151764, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Snake", + "pt": 2, + "sh": true, + }, + "value": 33210872, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sailor Shark", + "pt": 2, + }, + "value": 2074045291, + }, + { + "category": "Pet", + "configData": { + "id": "Sleipnir", + "pt": 2, + }, + "value": 941743196, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Inferno Cat", + "pt": 1, + }, + "value": 2726342550, + }, + { + "category": "Pet", + "configData": { + "id": "Claw Beast", + "pt": 2, + }, + "value": 42961165, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Lion", + "pt": 2, + }, + "value": 243, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Deer", + "pt": 2, + }, + "value": 250, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Unicorn", + "pt": 2, + }, + "value": 96, + }, + { + "category": "Pet", + "configData": { + "id": "Cartoon Bunny", + "sh": true, + }, + "value": 10105602, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel M-2 PROTOTYPE", + "sh": true, + }, + "value": 4528999989, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Balloon Cat", + "sh": true, + }, + "value": 19284490, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wicked Angelus", + "sh": true, + }, + "value": 1086506283, + }, + { + "category": "Pet", + "configData": { + "id": "Flamingo", + }, + "value": 1315297, + }, + { + "category": "Card", + "configData": { + "id": "Kung Fu Monkey Card", + "pt": 1, + "sh": true, + }, + "value": 8827207, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stealth Dragon", + "pt": 2, + "sh": true, + }, + "value": 127388131224, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiki Dominus", + "sh": true, + }, + "value": 4733852447, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jungle Golem", + "pt": 2, + }, + "value": 1319846550, + }, + { + "category": "Pet", + "configData": { + "id": "Nutcracker Squirrel", + "pt": 2, + "sh": true, + }, + "value": 226, + }, + { + "category": "Pet", + "configData": { + "id": "Floatie Flamingo", + "pt": 1, + }, + "value": 142, + }, + { + "category": "Pet", + "configData": { + "id": "Flower Cat", + "pt": 1, + }, + "value": 113, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Witch Wolf", + "sh": true, + }, + "value": 913053040, + }, + { + "category": "Pet", + "configData": { + "id": "M-2 PROTOTYPE", + "pt": 1, + }, + "value": 1265, + }, + { + "category": "Pet", + "configData": { + "id": "Froggy", + "pt": 1, + }, + "value": 1212, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sleipnir", + "pt": 1, + }, + "value": 2100075525, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Balloon Corgi", + "pt": 1, + }, + "value": 517866173, + }, + { + "category": "Consumable", + "configData": { + "id": "Mining Damage Booster", + "tn": 2, + }, + "value": 23267, + }, + { + "category": "Pet", + "configData": { + "id": "Hacked Skeleton", + "pt": 1, + }, + "value": 156, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Nuclear Dominus", + "pt": 2, + }, + "value": 17128280824, + }, + { + "category": "Pet", + "configData": { + "id": "Hellish Axolotl", + "pt": 2, + "sh": true, + }, + "value": 7200000, + }, + { + "category": "Consumable", + "configData": { + "id": "Mining Speed Booster", + "tn": 2, + }, + "value": 11147, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Grim Reaper", + "pt": 2, + }, + "value": 6388832948, + }, + { + "category": "Pet", + "configData": { + "id": "Scroll Dragon", + "pt": 2, + "sh": true, + }, + "value": 346, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Inferno Stealth Cat", + "sh": true, + }, + "value": 242188895, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Penguin", + "pt": 2, + }, + "value": 400, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Masked Fox", + "sh": true, + }, + "value": 2094162577, + }, + { + "category": "Pet", + "configData": { + "id": "Lifeguard Shark", + "pt": 2, + "sh": true, + }, + "value": 17868, + }, + { + "category": "Pet", + "configData": { + "id": "Pog Monkey", + "sh": true, + }, + "value": 8400000, + }, + { + "category": "Pet", + "configData": { + "id": "Calico Cat", + "sh": true, + }, + "value": 6846, + }, + { + "category": "Pet", + "configData": { + "id": "Plushie Fox", + "pt": 2, + "sh": true, + }, + "value": 46651640, + }, + { + "category": "Pet", + "configData": { + "id": "Fancy Axolotl", + "pt": 1, + "sh": true, + }, + "value": 126160000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Puurple Cat", + "sh": true, + }, + "value": 3331158186, + }, + { + "category": "Pet", + "configData": { + "id": "Pineapple Monkey", + "pt": 2, + }, + "value": 6996, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Slasher Sloth", + "pt": 2, + }, + "value": 1330925043, + }, + { + "category": "Pet", + "configData": { + "id": "Neon Cat", + "pt": 2, + }, + "value": 74294473, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Apple Capybara", + "sh": true, + }, + "value": 3309127543, + }, + { + "category": "Pet", + "configData": { + "id": "Tulip Hedgehog", + "pt": 1, + }, + "value": 90908, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Walrus", + "pt": 1, + "sh": true, + }, + "value": 635919686, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Chest Mimic", + "pt": 2, + }, + "value": 24147369385, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Pegasus", + "pt": 2, + }, + "value": 23709844, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Pufferfish", + "pt": 2, + }, + "value": 5482, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pop Cat", + "sh": true, + }, + "value": 45488546193, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Dragon", + "pt": 2, + }, + "value": 296, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Doll Cat", + "pt": 1, + }, + "value": 10801670545, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blurred Dominus", + }, + "value": 4237717556, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cyborg Dragon", + "pt": 1, + "sh": true, + }, + "value": 4670025419, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Obsidian Dragon", + "sh": true, + }, + "value": 147800000000, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Dominus", + "pt": 1, + }, + "value": 3837, + }, + { + "category": "Pet", + "configData": { + "id": "Painter Cat", + "pt": 2, + }, + "value": 229, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghost", + "sh": true, + }, + "value": 199578124, + }, + { + "category": "Pet", + "configData": { + "id": "Albino Bat", + "pt": 2, + }, + "value": 1470, + }, + { + "category": "Pet", + "configData": { + "id": "Dark Lord", + "pt": 1, + "sh": true, + }, + "value": 439148, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Poison Turtle", + "pt": 2, + }, + "value": 1289333115, + }, + { + "category": "Pet", + "configData": { + "id": "Pegasus", + "sh": true, + }, + "value": 3690, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Party Crown Corgi", + "pt": 1, + }, + "value": 7600991912, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Dragon", + "sh": true, + }, + "value": 3556, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Axolotl", + "sh": true, + }, + "value": 163436, + }, + { + "category": "Pet", + "configData": { + "id": "Mummy Bunny", + "pt": 1, + }, + "value": 23, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Captain Octopus", + "pt": 2, + "sh": true, + }, + "value": 306894937600, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Hydra Axolotl", + "sh": true, + }, + "value": 17134723649, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Cat", + }, + "value": 1240, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tennis Squirrel", + "pt": 1, + "sh": true, + }, + "value": 3201927725, + }, + { + "category": "Pet", + "configData": { + "id": "Sad Hamster", + "pt": 2, + "sh": true, + }, + "value": 2768547953, + }, + { + "category": "Pet", + "configData": { + "id": "Detective Cat", + "pt": 2, + "sh": true, + }, + "value": 114443, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Capybara", + "sh": true, + }, + "value": 90287148728, + }, + { + "category": "Pet", + "configData": { + "id": "Sad Bunny", + "pt": 2, + "sh": true, + }, + "value": 1604483217, + }, + { + "category": "Pet", + "configData": { + "id": "Sad Doge", + "sh": true, + }, + "value": 16071720, + }, + { + "category": "Pet", + "configData": { + "id": "Love Cow", + "pt": 1, + }, + "value": 22, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Wolf", + "pt": 1, + }, + "value": 17, + }, + { + "category": "Pet", + "configData": { + "id": "Quantum Bunny", + "pt": 2, + }, + "value": 3949, + }, + { + "category": "Pet", + "configData": { + "id": "Safari Dog", + }, + "value": 1314, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Penguin", + "pt": 1, + }, + "value": 14254, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Librarian Beaver", + "pt": 2, + }, + "value": 487994857, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Kangaroo", + "sh": true, + }, + "value": 349388041, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Bunny", + "pt": 2, + }, + "value": 1598, + }, + { + "category": "Pet", + "configData": { + "id": "Love Cow", + "sh": true, + }, + "value": 176, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snowflake Dragon", + "pt": 1, + "sh": true, + }, + "value": 5540000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Exquisite Parrot", + "pt": 2, + }, + "value": 500411262, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bread Shiba", + "pt": 1, + }, + "value": 6371803552, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ooze Corgi", + "pt": 2, + }, + "value": 325941887, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Basket Bunny", + "pt": 1, + "sh": true, + }, + "value": 299730169, + }, + { + "category": "Pet", + "configData": { + "id": "Mouse", + }, + "value": 1386, + }, + { + "category": "Pet", + "configData": { + "id": "Teddy Bear", + }, + "value": 3538, + }, + { + "category": "Pet", + "configData": { + "id": "Anime Lemur", + "pt": 2, + "sh": true, + }, + "value": 735123566, + }, + { + "category": "Pet", + "configData": { + "id": "Alien Axolotl", + "sh": true, + }, + "value": 55765, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Jelly Kitsune", + "pt": 2, + }, + "value": 73188805813, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Globe Axolotl", + "sh": true, + }, + "value": 8767299, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snuggle Beast", + "pt": 2, + }, + "value": 1783381531, + }, + { + "category": "Pet", + "configData": { + "id": "Happy Computer", + "pt": 2, + }, + "value": 1151, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gym Dragon", + "pt": 2, + }, + "value": 28619638499, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ice Snake", + "pt": 2, + }, + "value": 17105957597, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Bunny", + "pt": 2, + }, + "value": 719607, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightmare Spirit", + "pt": 2, + }, + "value": 2689531922, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Celestial Dragon", + "pt": 2, + }, + "value": 4067250276, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Sphinx", + }, + "value": 1246, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Party Corgi", + "pt": 1, + }, + "value": 8299438718, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lit Cat", + "pt": 2, + "sh": true, + }, + "value": 3003908002, + }, + { + "category": "Pet", + "configData": { + "id": "Lumi Axolotl", + "pt": 1, + }, + "value": 9452, + }, + { + "category": "Pet", + "configData": { + "id": "Present Dragon", + "sh": true, + }, + "value": 251846, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Demon", + }, + "value": 29078000000, + }, + { + "category": "Pet", + "configData": { + "id": "Sandcastle Dog", + "sh": true, + }, + "value": 8403, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Wood Spirit", + "sh": true, + }, + "value": 326881837327, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Griffin", + "pt": 1, + }, + "value": 7836745, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sun Angelus", + "pt": 2, + }, + "value": 2409439112, + }, + { + "category": "Pet", + "configData": { + "id": "Sun Griffin", + }, + "value": 328, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ducky", + "pt": 1, + }, + "value": 671284117, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Samurai Dragon", + "sh": true, + }, + "value": 27897409511, + }, + { + "category": "Pet", + "configData": { + "id": "Knight Beagle", + "pt": 1, + }, + "value": 620, + }, + { + "category": "Pet", + "configData": { + "id": "Shark", + "pt": 2, + }, + "value": 607, + }, + { + "category": "Pet", + "configData": { + "id": "Happy Cyclops", + "pt": 2, + "sh": true, + }, + "value": 535, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Storm Dominus", + "pt": 2, + }, + "value": 1296778076, + }, + { + "category": "Pet", + "configData": { + "cv": 3, + "id": "Huge Chroma Swan", + }, + "value": 131697853, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Fox", + "pt": 1, + }, + "value": 1579, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sun Agony", + "pt": 1, + }, + "value": 180251806, + }, + { + "category": "Pet", + "configData": { + "id": "Starlight Pony", + }, + "value": 163586, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Classic Dog", + "pt": 2, + }, + "value": 521785865, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Elephant", + "pt": 1, + "sh": true, + }, + "value": 2578226542, + }, + { + "category": "Pet", + "configData": { + "id": "Flower Gecko", + "pt": 2, + }, + "value": 271, + }, + { + "category": "Pet", + "configData": { + "id": "Stargazing Axolotl", + "pt": 2, + }, + "value": 55863399, + }, + { + "category": "Pet", + "configData": { + "id": "Honey Golem", + "sh": true, + }, + "value": 385856, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Bear", + "pt": 1, + }, + "value": 14189146, + }, + { + "category": "Pet", + "configData": { + "id": "Emerald Owl", + "pt": 2, + "sh": true, + }, + "value": 9880, + }, + { + "category": "Pet", + "configData": { + "id": "Elf Golem", + "pt": 1, + "sh": true, + }, + "value": 320477568, + }, + { + "category": "Pet", + "configData": { + "id": "Tarantula", + "pt": 2, + }, + "value": 58223, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Sloth", + "sh": true, + }, + "value": 470011, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Crocodilo Brainrot", + "pt": 2, + }, + "value": 23194092589, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Lamb", + "sh": true, + }, + "value": 10060780, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Holographic Axolotl Ball", + "pt": 2, + }, + "value": 52377383834, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Otter", + "pt": 1, + }, + "value": 364800, + }, + { + "category": "Pet", + "configData": { + "id": "Masked Fox", + "pt": 2, + "sh": true, + }, + "value": 1555626, + }, + { + "category": "Pet", + "configData": { + "id": "Midnight Cat", + "pt": 2, + }, + "value": 14135823, + }, + { + "category": "Pet", + "configData": { + "id": "Meebo The Alien Ball", + "pt": 2, + "sh": true, + }, + "value": 1953, + }, + { + "category": "Pet", + "configData": { + "id": "Gingerbread Corgi", + "sh": true, + }, + "value": 1726454, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Present Dragon", + "pt": 1, + "sh": true, + }, + "value": 35138400000, + }, + { + "category": "Pet", + "configData": { + "id": "Triceratops", + "pt": 1, + }, + "value": 727, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Gorilla", + "pt": 2, + }, + "value": 501, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shark", + "sh": true, + }, + "value": 4730010235, + }, + { + "category": "Pet", + "configData": { + "id": "Present Cat", + "pt": 1, + "sh": true, + }, + "value": 159018271, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wild Fire Agony", + "sh": true, + }, + "value": 3503070423, + }, + { + "category": "Pet", + "configData": { + "id": "Grass Bunny", + "pt": 1, + }, + "value": 4754620, + }, + { + "category": "Pet", + "configData": { + "id": "King Cobra", + }, + "value": 1234, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Bear", + "pt": 1, + "sh": true, + }, + "value": 49999, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Cow", + "pt": 2, + "sh": true, + }, + "value": 690, + }, + { + "category": "Pet", + "configData": { + "id": "Peppermint Angelus", + "pt": 2, + }, + "value": 33016563, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sea Dragon", + "pt": 1, + "sh": true, + }, + "value": 1512815957, + }, + { + "category": "Pet", + "configData": { + "id": "Bread Shiba", + }, + "value": 36, + }, + { + "category": "Pet", + "configData": { + "id": "Candycane", + "pt": 1, + "sh": true, + }, + "value": 223758361, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Stallion", + "pt": 2, + }, + "value": 159, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nyan Cat", + "sh": true, + }, + "value": 811257312, + }, + { + "category": "Pet", + "configData": { + "id": "Hacker Corgi", + "pt": 1, + "sh": true, + }, + "value": 560, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Nutcracker Cat", + "sh": true, + }, + "value": 16756537502, + }, + { + "category": "Pet", + "configData": { + "id": "Queen Slime", + "pt": 2, + "sh": true, + }, + "value": 180000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rich Cat", + "pt": 1, + "sh": true, + }, + "value": 1013550163, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Error Cat", + "sh": true, + }, + "value": 483649139, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evergreen Unicorn", + "pt": 2, + "sh": true, + }, + "value": 2138218656, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Painted Cat", + "sh": true, + }, + "value": 1141954716, + }, + { + "category": "Card", + "configData": { + "id": "Red Balloon Panda Card", + "sh": true, + }, + "value": 240656, + }, + { + "category": "Pet", + "configData": { + "id": "Pristine Poodle", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valentines Bear", + "pt": 1, + "sh": true, + }, + "value": 336139072, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Hubert", + "sh": true, + }, + "value": 95473190400, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiedye Corgi", + "pt": 2, + }, + "value": 865211850, + }, + { + "category": "Pet", + "configData": { + "id": "Broomstick Cat", + "pt": 1, + }, + "value": 135, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Cupcake", + "pt": 2, + }, + "value": 1937383682, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Axolotl", + "sh": true, + }, + "value": 973, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cyborg Capybara", + "pt": 1, + }, + "value": 1953490628, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Corgi", + "pt": 2, + }, + "value": 20446, + }, + { + "category": "Pet", + "configData": { + "id": "Bejeweled Lion", + "pt": 2, + }, + "value": 18864017, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Robber Pug", + "pt": 1, + "sh": true, + }, + "value": 252321903, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Cow", + "pt": 1, + "sh": true, + }, + "value": 290, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Lemur", + "pt": 1, + "sh": true, + }, + "value": 9591, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gingerbread Angelus", + "pt": 1, + "sh": true, + }, + "value": 2780712150, + }, + { + "category": "Pet", + "configData": { + "id": "Rocket Shark", + "sh": true, + }, + "value": 20133740, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Matryoshka Capybara", + "sh": true, + }, + "value": 747741690, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guest Noob", + "sh": true, + }, + "value": 291231244, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rudolf", + "sh": true, + }, + "value": 97905635, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Badger", + "pt": 1, + "sh": true, + }, + "value": 293397465, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Snow Elf", + "sh": true, + }, + "value": 22547869395, + }, + { + "category": "Pet", + "configData": { + "id": "Meebo The Alien", + }, + "value": 66, + }, + { + "category": "Pet", + "configData": { + "id": "Fragmented Dominus Ball", + "sh": true, + }, + "value": 132291021, + }, + { + "category": "Pet", + "configData": { + "id": "Trojan Horse", + "pt": 2, + "sh": true, + }, + "value": 288, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Ninja Cow", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leprechaun Dog", + "pt": 1, + }, + "value": 358100635, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Cardinal", + "sh": true, + }, + "value": 2147543, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Disco Ball Agony", + "pt": 2, + }, + "value": 20942011582, + }, + { + "category": "Pet", + "configData": { + "id": "Elegant Eagle", + "pt": 2, + "sh": true, + }, + "value": 41, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Imp", + "pt": 1, + }, + "value": 179, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Redstone Cat", + "sh": true, + }, + "value": 920385060, + }, + { + "category": "Card", + "configData": { + "id": "Huge Super Spider Card", + "pt": 2, + }, + "value": 114047821, + }, + { + "category": "Pet", + "configData": { + "id": "404 Demon", + "pt": 1, + }, + "value": 4544, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Kitsune", + "sh": true, + }, + "value": 866426575, + }, + { + "category": "Pet", + "configData": { + "id": "Red Fluffy", + "pt": 2, + }, + "value": 1997, + }, + { + "category": "Pet", + "configData": { + "id": "Quokka", + "pt": 1, + }, + "value": 408169, + }, + { + "category": "Pet", + "configData": { + "id": "Huge White Balloon Cat", + "pt": 2, + }, + "value": 29027973074, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kawaii Tiger", + "sh": true, + }, + "value": 4259427686, + }, + { + "category": "Pet", + "configData": { + "id": "Glimmercap Turtle", + }, + "value": 111, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vampire Agony", + "pt": 2, + }, + "value": 15061373178, + }, + { + "category": "Pet", + "configData": { + "id": "Apollo Raven", + }, + "value": 29, + }, + { + "category": "Card", + "configData": { + "id": "Huge Pog Cat Card", + "pt": 1, + }, + "value": 86899510, + }, + { + "category": "Pet", + "configData": { + "id": "Gummy Fox", + "pt": 1, + }, + "value": 1525, + }, + { + "category": "Pet", + "configData": { + "id": "Plasma Bull", + "pt": 2, + }, + "value": 44109, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Coach Hippo", + "sh": true, + }, + "value": 459474639, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spotted Elephant", + "pt": 2, + "sh": true, + }, + "value": 2176248036, + }, + { + "category": "Pet", + "configData": { + "id": "Cool Cat", + "pt": 2, + }, + "value": 16551025, + }, + { + "category": "Pet", + "configData": { + "id": "Beach Ball Monkey", + "pt": 1, + }, + "value": 44290, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hell Spider", + "sh": true, + }, + "value": 838413150, + }, + { + "category": "Pet", + "configData": { + "id": "Queen Piggy", + "pt": 2, + }, + "value": 798, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Elephant", + "pt": 1, + }, + "value": 145896223, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mystical Whale", + "sh": true, + }, + "value": 4572206619, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stacked Dominus", + "pt": 1, + "sh": true, + }, + "value": 7836000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Little Melty", + "pt": 2, + }, + "value": 3425719582, + }, + { + "category": "Pet", + "configData": { + "id": "Stunt Bobcat", + }, + "value": 997003131, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Cat", + "pt": 1, + "sh": true, + }, + "value": 1442670060, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lit Loris", + "pt": 2, + "sh": true, + }, + "value": 110000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Atomic Forged Shark", + "sh": true, + }, + "value": 339897567, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Agony", + "pt": 2, + }, + "value": 301, + }, + { + "category": "Pet", + "configData": { + "id": "Witch Cat", + "pt": 2, + }, + "value": 141, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Diamond Cat", + "pt": 2, + }, + "value": 14692075554, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Spectral Deer", + "pt": 1, + }, + "value": 35040000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holiday Hedgehog", + "sh": true, + }, + "value": 1826002610, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Walrus", + "pt": 2, + "sh": true, + }, + "value": 4566405088, + }, + { + "category": "Pet", + "configData": { + "id": "Valkyrie Dragon", + "pt": 2, + "sh": true, + }, + "value": 1747418881, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Sun Angelus", + }, + "value": 33013392894, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Witch Wolf", + "pt": 1, + "sh": true, + }, + "value": 1864799872, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holly Corgi", + "pt": 2, + "sh": true, + }, + "value": 2636313703, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mermaid Cat", + "pt": 2, + "sh": true, + }, + "value": 1136079857, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Bunny", + "sh": true, + }, + "value": 421643397, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Bear", + "pt": 1, + "sh": true, + }, + "value": 14918, + }, + { + "category": "Pet", + "configData": { + "id": "Player Corgi", + "pt": 2, + "sh": true, + }, + "value": 45632, + }, + { + "category": "Pet", + "configData": { + "id": "Hologram Tiger", + "pt": 2, + "sh": true, + }, + "value": 279885549, + }, + { + "category": "Pet", + "configData": { + "id": "Shark", + "pt": 1, + }, + "value": 3002, + }, + { + "category": "Pet", + "configData": { + "cv": 3, + "id": "Huge Chroma Snail", + "pt": 2, + }, + "value": 641247284, + }, + { + "category": "Pet", + "configData": { + "id": "Corrupt Octopus", + "pt": 1, + }, + "value": 925, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nutcracker Squirrel", + "pt": 2, + "sh": true, + }, + "value": 2356363771, + }, + { + "category": "Pet", + "configData": { + "id": "Brain Ball", + "sh": true, + }, + "value": 8349, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ooze Cat", + "pt": 2, + }, + "value": 23110688239, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightmare Sludge", + "pt": 2, + "sh": true, + }, + "value": 4100567101, + }, + { + "category": "Pet", + "configData": { + "id": "Lava Slime", + "sh": true, + }, + "value": 484, + }, + { + "category": "Pet", + "configData": { + "id": "Tropical Toucan", + "sh": true, + }, + "value": 4104676557, + }, + { + "category": "Pet", + "configData": { + "id": "Hippo", + }, + "value": 37304, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mosaic Griffin", + "pt": 2, + "sh": true, + }, + "value": 8369167360, + }, + { + "category": "Pet", + "configData": { + "id": "Minecart Piggy", + "pt": 2, + "sh": true, + }, + "value": 14580, + }, + { + "category": "Pet", + "configData": { + "id": "Blueberry Cow", + "pt": 2, + "sh": true, + }, + "value": 820510630, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Love Corgi", + "pt": 2, + "sh": true, + }, + "value": 2886682308, + }, + { + "category": "Pet", + "configData": { + "id": "Mrs. Claws", + "pt": 2, + }, + "value": 4000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Sprout Pegasus", + "pt": 2, + }, + "value": 233, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Scorpion", + "pt": 1, + "sh": true, + }, + "value": 321222353611, + }, + { + "category": "Pet", + "configData": { + "id": "Plasma Bull", + "sh": true, + }, + "value": 1153, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pterodactyl", + "pt": 2, + }, + "value": 357841172, + }, + { + "category": "Pet", + "configData": { + "id": "Beegle Dog", + "pt": 2, + }, + "value": 443, + }, + { + "category": "Pet", + "configData": { + "id": "Kraken", + "sh": true, + }, + "value": 20466, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hydra Axolotl", + "pt": 2, + "sh": true, + }, + "value": 7944000000, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Unicorn Ball", + "sh": true, + }, + "value": 6618, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guard Bunny", + "sh": true, + }, + "value": 22222720000, + }, + { + "category": "Pet", + "configData": { + "id": "Reaper", + }, + "value": 89, + }, + { + "category": "Pet", + "configData": { + "id": "Jolly Cat", + "pt": 2, + }, + "value": 59391, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ice Snake", + "sh": true, + }, + "value": 15380629291, + }, + { + "category": "Pet", + "configData": { + "id": "Minecart Piggy", + "pt": 1, + "sh": true, + }, + "value": 9522, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Lamb", + "pt": 1, + "sh": true, + }, + "value": 15, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Hydra", + "pt": 2, + }, + "value": 530468, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Warrior Wolf", + "sh": true, + }, + "value": 371737737, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luxe Peacock", + "sh": true, + }, + "value": 332796026, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Cat", + "pt": 1, + "sh": true, + }, + "value": 580000, + }, + { + "category": "Card", + "configData": { + "id": "Ninja Snake Card", + "pt": 2, + }, + "value": 28015, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Brain Ball", + "pt": 2, + }, + "value": 20832696072, + }, + { + "category": "Pet", + "configData": { + "id": "Hamster", + "pt": 2, + }, + "value": 3301, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Agony", + "pt": 1, + }, + "value": 2071156412, + }, + { + "category": "Pet", + "configData": { + "id": "Love Peacock", + "pt": 2, + "sh": true, + }, + "value": 41204, + }, + { + "category": "Pet", + "configData": { + "id": "Runic Wolf", + "pt": 1, + }, + "value": 208, + }, + { + "category": "Pet", + "configData": { + "id": "Angry Dino", + "pt": 1, + }, + "value": 4945, + }, + { + "category": "Pet", + "configData": { + "id": "Hacked Raccoon", + "pt": 1, + }, + "value": 4463, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Poison Turtle", + "pt": 1, + }, + "value": 244763396, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Firefighter Dalmation", + "sh": true, + }, + "value": 1296284482, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Axolotl", + "pt": 1, + }, + "value": 456, + }, + { + "category": "Pet", + "configData": { + "id": "Pixel Dragon", + "sh": true, + }, + "value": 1626532, + }, + { + "category": "Pet", + "configData": { + "id": "Fiddlefern Cat", + "pt": 2, + "sh": true, + }, + "value": 19680, + }, + { + "category": "Pet", + "configData": { + "id": "Pentangelus", + "pt": 1, + }, + "value": 5606, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cartoon Demon", + "sh": true, + }, + "value": 2516756779, + }, + { + "category": "Tower", + "configData": { + "id": "Umbrella Elephant", + }, + "value": 9624, + }, + { + "category": "Pet", + "configData": { + "id": "Mouse", + "pt": 2, + }, + "value": 510, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Treasure Turtle", + "pt": 2, + "sh": true, + }, + "value": 2129167352, + }, + { + "category": "Pet", + "configData": { + "id": "Super Bat", + "sh": true, + }, + "value": 8763885, + }, + { + "category": "Pet", + "configData": { + "id": "Lemur", + "pt": 1, + }, + "value": 1307, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Cat", + "pt": 1, + }, + "value": 6400, + }, + { + "category": "Pet", + "configData": { + "id": "Pixie Bee", + }, + "value": 264, + }, + { + "category": "Pet", + "configData": { + "id": "Husky", + "pt": 1, + }, + "value": 310, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cheerful Yeti", + "pt": 2, + "sh": true, + }, + "value": 51307604480, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Arcane Dominus", + "sh": true, + }, + "value": 6650266642, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pop Cat", + "sh": true, + }, + "value": 10150083487, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Butterfly", + "pt": 2, + }, + "value": 1008, + }, + { + "category": "Pet", + "configData": { + "id": "Red Wolf", + "pt": 1, + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "Cotton Candy Unicorn", + }, + "value": 45263, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Cow", + "pt": 1, + }, + "value": 100, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Diamond Dog", + "sh": true, + }, + "value": 1928819641, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elemental Phoenix", + "pt": 1, + "sh": true, + }, + "value": 1613045637, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clown Cat", + }, + "value": 2227524548, + }, + { + "category": "Pet", + "configData": { + "id": "Candycane", + }, + "value": 881725, + }, + { + "category": "Pet", + "configData": { + "id": "Bejeweled Deer", + "pt": 2, + "sh": true, + }, + "value": 550789157, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Parachute Monkey", + "sh": true, + }, + "value": 234640574, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Corn Cat", + "pt": 2, + }, + "value": 1568569831, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Cocoa Bear", + "pt": 1, + }, + "value": 1485, + }, + { + "category": "Pet", + "configData": { + "id": "Old Wizard Corgi", + "sh": true, + }, + "value": 631374674, + }, + { + "category": "Pet", + "configData": { + "id": "Athena Owl", + "pt": 1, + }, + "value": 53, + }, + { + "category": "Pet", + "configData": { + "id": "Ghost Axolotl", + "sh": true, + }, + "value": 92494, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Reversed Cat", + "pt": 1, + }, + "value": 982491565, + }, + { + "category": "Pet", + "configData": { + "id": "Sad Hamster", + "pt": 2, + }, + "value": 31529363, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Snake", + "pt": 2, + }, + "value": 172469, + }, + { + "category": "Pet", + "configData": { + "id": "Sailor Narwhal", + "pt": 1, + }, + "value": 6237, + }, + { + "category": "Pet", + "configData": { + "id": "Present Cat", + "pt": 2, + "sh": true, + }, + "value": 2750000000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Frontman Jellyfish", + "pt": 2, + }, + "value": 25687141873, + }, + { + "category": "Pet", + "configData": { + "id": "Honey Golem", + "pt": 1, + "sh": true, + }, + "value": 159400, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Fox", + }, + "value": 77, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Meebo in a Spaceship", + "pt": 1, + "sh": true, + }, + "value": 1012253129, + }, + { + "category": "Card", + "configData": { + "id": "Noob Card", + "sh": true, + }, + "value": 21520950, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dog", + "pt": 2, + }, + "value": 4723150053, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Abstract Dominus", + "pt": 1, + "sh": true, + }, + "value": 1474066769, + }, + { + "category": "Pet", + "configData": { + "id": "Kawaii Cat", + "pt": 2, + }, + "value": 30272, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Axolotl", + "pt": 1, + }, + "value": 634235315, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stealth Bobcat", + "sh": true, + }, + "value": 279089342, + }, + { + "category": "Pet", + "configData": { + "id": "Sketch Cow", + "sh": true, + }, + "value": 26786445, + }, + { + "category": "Pet", + "configData": { + "id": "Totem Bear", + "sh": true, + }, + "value": 35078166, + }, + { + "category": "Pet", + "configData": { + "id": "Panther", + }, + "value": 645, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Dragon", + "pt": 1, + }, + "value": 9888, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Wolverine", + }, + "value": 2669, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guard Wolf", + "pt": 2, + }, + "value": 364829697, + }, + { + "category": "Pet", + "configData": { + "id": "Huge White Tiger", + "sh": true, + }, + "value": 6047089531, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Fox", + "sh": true, + }, + "value": 14760, + }, + { + "category": "Pet", + "configData": { + "id": "Creepy Wolf", + }, + "value": 671, + }, + { + "category": "Pet", + "configData": { + "id": "Pot of Gold Cat", + }, + "value": 322, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Jelly Kitsune", + "sh": true, + }, + "value": 193779200000, + }, + { + "category": "Tower", + "configData": { + "id": "Blurred Owl", + }, + "value": 2029107, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Turtle", + }, + "value": 30, + }, + { + "category": "Pet", + "configData": { + "id": "Comet Cyclops", + "pt": 1, + }, + "value": 377, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Safety", + }, + "value": 323937959, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Disco Ball Dragon", + "sh": true, + }, + "value": 565867338, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Crown Ducky", + "pt": 2, + }, + "value": 2314351800, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Agony", + "pt": 2, + "sh": true, + }, + "value": 58107024, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Turtle", + "pt": 1, + }, + "value": 229322100, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Jelly Dragon", + "pt": 2, + }, + "value": 838720000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pineapple Cat", + "sh": true, + }, + "value": 546478922, + }, + { + "category": "Pet", + "configData": { + "id": "Lumi Axolotl", + "pt": 1, + "sh": true, + }, + "value": 9047768, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Jackalope", + "sh": true, + }, + "value": 9921, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Yee-haw Cat", + "pt": 2, + "sh": true, + }, + "value": 12543487989, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Cupcake Pegasus Card", + "pt": 2, + }, + "value": 23990211129, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glitched Unicorn Ball", + "pt": 2, + "sh": true, + }, + "value": 2189993218, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Luxe Axolotl", + }, + "value": 163564772626, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Love Peacock", + "sh": true, + }, + "value": 826819562, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Frog", + "pt": 1, + "sh": true, + }, + "value": 840, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Dominus Darkwing", + }, + "value": 104985490455, + }, + { + "category": "Pet", + "configData": { + "id": "Totem Cub", + "pt": 2, + }, + "value": 7383, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Ninja Red Panda", + "pt": 2, + }, + "value": 14111, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Love Lamb", + "sh": true, + }, + "value": 72186918195, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Lemur", + }, + "value": 4500, + }, + { + "category": "Pet", + "configData": { + "id": "Research Cat", + "sh": true, + }, + "value": 10913, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Patchwork Bunny", + "pt": 2, + "sh": true, + }, + "value": 12410886279, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Snowflake Angelus", + "sh": true, + }, + "value": 70492487107, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Meebo The Alien Ball", + "pt": 2, + }, + "value": 645096542, + }, + { + "category": "Pet", + "configData": { + "id": "Hippomint", + "pt": 2, + "sh": true, + }, + "value": 297680000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Student Corgi", + "pt": 2, + }, + "value": 249022877, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luxe Peacock", + "pt": 2, + "sh": true, + }, + "value": 8817331200, + }, + { + "category": "Pet", + "configData": { + "id": "Artemis Bear", + "pt": 1, + }, + "value": 1830, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Exquisite Elephant", + "pt": 2, + "sh": true, + }, + "value": 5033417399, + }, + { + "category": "Card", + "configData": { + "id": "Lumi Axolotl Card", + "pt": 1, + "sh": true, + }, + "value": 6077, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Mortuus", + "pt": 2, + }, + "value": 306, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Strawberry Cow", + "pt": 1, + "sh": true, + }, + "value": 3878191240, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Parrot", + "pt": 1, + }, + "value": 1009, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Fox", + "pt": 2, + }, + "value": 711, + }, + { + "category": "Pet", + "configData": { + "id": "Tropical Toucan", + "pt": 1, + }, + "value": 139865461, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Matryoshka Dino", + "pt": 2, + }, + "value": 537734778725, + }, + { + "category": "Pet", + "configData": { + "id": "Starry Eye Bunny", + "pt": 2, + }, + "value": 4888, + }, + { + "category": "Pet", + "configData": { + "id": "Peppermint Angelus", + "sh": true, + }, + "value": 23429671, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Cat", + "pt": 1, + "sh": true, + }, + "value": 53607051910, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Mining Monkey", + "pt": 2, + "sh": true, + }, + "value": 3081535190, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tropical Parrot", + "pt": 1, + "sh": true, + }, + "value": 1456562377, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Dolphin", + "sh": true, + }, + "value": 1846, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Parrot", + "pt": 2, + "sh": true, + }, + "value": 47310400000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Autumn Red Panda", + "sh": true, + }, + "value": 464365951, + }, + { + "category": "Pet", + "configData": { + "id": "Scroll Dragon", + "sh": true, + }, + "value": 342, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Lion", + "pt": 2, + "sh": true, + }, + "value": 413341, + }, + { + "category": "Pet", + "configData": { + "id": "Soul Dragon", + "pt": 2, + }, + "value": 12133955, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pink Marshmallow Chick", + "pt": 2, + }, + "value": 9012449992, + }, + { + "category": "Pet", + "configData": { + "id": "Honey Badger", + }, + "value": 28550, + }, + { + "category": "Pet", + "configData": { + "id": "Wise Cat", + "pt": 1, + "sh": true, + }, + "value": 1121213, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pufferfish", + "pt": 1, + "sh": true, + }, + "value": 100000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Dragon", + "pt": 2, + }, + "value": 30599, + }, + { + "category": "Pet", + "configData": { + "id": "Flamingo Cat", + "pt": 2, + "sh": true, + }, + "value": 378, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Bear", + "sh": true, + }, + "value": 47378, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Frog", + "pt": 2, + "sh": true, + }, + "value": 1393931, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiedye Axolotl", + "sh": true, + }, + "value": 429412955, + }, + { + "category": "Pet", + "configData": { + "id": "Gingerbread Cat", + "sh": true, + }, + "value": 917792, + }, + { + "category": "Pet", + "configData": { + "id": "Pumpkin Scarecrow", + "pt": 2, + "sh": true, + }, + "value": 1297024, + }, + { + "category": "Pet", + "configData": { + "id": "Candycane Unicorn", + }, + "value": 206442, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Knight Slime", + "sh": true, + }, + "value": 10682942643, + }, + { + "category": "Card", + "configData": { + "id": "Pog Shark Card", + "pt": 1, + "sh": true, + }, + "value": 21346185, + }, + { + "category": "Pet", + "configData": { + "id": "Heart Balloon Cat", + "sh": true, + }, + "value": 20087540, + }, + { + "category": "Pet", + "configData": { + "id": "Pixel Dragon", + "pt": 1, + }, + "value": 4266, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Lamb", + }, + "value": 2966, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jolly Owl", + "pt": 2, + }, + "value": 874909724, + }, + { + "category": "Pet", + "configData": { + "id": "Mechanical Spider", + "pt": 2, + }, + "value": 62182, + }, + { + "category": "Pet", + "configData": { + "id": "Huge UV Kitsune", + "pt": 1, + "sh": true, + }, + "value": 2925831414, + }, + { + "category": "Pet", + "configData": { + "id": "Spitting Dino", + "sh": true, + }, + "value": 7112, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Monkey", + }, + "value": 18, + }, + { + "category": "Pet", + "configData": { + "id": "Naughty Cat", + }, + "value": 36, + }, + { + "category": "Pet", + "configData": { + "id": "Sketch Corgi", + "sh": true, + }, + "value": 22215007, + }, + { + "category": "Pet", + "configData": { + "id": "Blurred Monkey", + }, + "value": 107, + }, + { + "category": "Pet", + "configData": { + "id": "Player Fox", + "pt": 1, + "sh": true, + }, + "value": 6518, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Crocodile", + "pt": 2, + "sh": true, + }, + "value": 4907, + }, + { + "category": "Pet", + "configData": { + "id": "Pumpkin Cat", + "sh": true, + }, + "value": 12791, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Shadow Griffin", + "pt": 2, + "sh": true, + }, + "value": 15855443200, + }, + { + "category": "Pet", + "configData": { + "id": "Robot", + "pt": 1, + }, + "value": 434, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tech Chest Mimic", + "pt": 1, + "sh": true, + }, + "value": 2243688351, + }, + { + "category": "Pet", + "configData": { + "cv": 3, + "id": "Huge Chroma Butterfly", + "pt": 2, + }, + "value": 1493066514, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Griffin", + "pt": 1, + "sh": true, + }, + "value": 293942696, + }, + { + "category": "Pet", + "configData": { + "id": "Charred Bat", + "pt": 2, + }, + "value": 9092, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Yin-Yang Bunny", + "sh": true, + }, + "value": 791969565, + }, + { + "category": "Pet", + "configData": { + "cv": 6, + "id": "Huge Chroma Unicorn", + "sh": true, + }, + "value": 1631158346, + }, + { + "category": "Pet", + "configData": { + "id": "M-10 PROTOTYPE", + "pt": 2, + "sh": true, + }, + "value": 80389, + }, + { + "category": "Pet", + "configData": { + "id": "Emoji Dog", + "sh": true, + }, + "value": 30613406, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Bull", + }, + "value": 256, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holographic Monkey", + "pt": 1, + }, + "value": 876704568, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Dog", + "pt": 1, + "sh": true, + }, + "value": 106542, + }, + { + "category": "Pet", + "configData": { + "id": "Encrusted Dragon", + "sh": true, + }, + "value": 7602, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Corgi", + "pt": 1, + }, + "value": 23883419, + }, + { + "category": "Pet", + "configData": { + "id": "Wicked Empyrean Dominus", + "pt": 1, + }, + "value": 484, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Fairy", + "pt": 2, + "sh": true, + }, + "value": 55680200, + }, + { + "category": "Pet", + "configData": { + "id": "Red Panda", + "pt": 2, + }, + "value": 815, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Emerald Owl", + "pt": 1, + "sh": true, + }, + "value": 3512362980, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Wizard", + "sh": true, + }, + "value": 718996883, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Meerkat", + }, + "value": 1141, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Cat", + "pt": 1, + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Redstone Cat", + "pt": 2, + "sh": true, + }, + "value": 143766910, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Cocoa Bear", + "sh": true, + }, + "value": 15702, + }, + { + "category": "Pet", + "configData": { + "id": "Galaxy Fox", + "pt": 2, + }, + "value": 1482, + }, + { + "category": "Pet", + "configData": { + "id": "Forged Turtle", + "pt": 2, + "sh": true, + }, + "value": 939999, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gingerbread Cat", + "pt": 2, + }, + "value": 22610224050, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Cat", + "pt": 1, + }, + "value": 251702078, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Abyss Carbuncle", + "pt": 2, + }, + "value": 22322249708, + }, + { + "category": "Pet", + "configData": { + "id": "Icemortuus", + }, + "value": 246, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Cow", + "pt": 1, + }, + "value": 9819, + }, + { + "category": "Pet", + "configData": { + "id": "Cinnamon Bunny", + }, + "value": 19200, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vampire Dragon", + "pt": 1, + }, + "value": 321332665, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Umbrella Cat", + "pt": 2, + }, + "value": 3760108651, + }, + { + "category": "Pet", + "configData": { + "id": "Silver Dragon", + }, + "value": 8973177, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Emerald Owl", + "pt": 2, + "sh": true, + }, + "value": 6723517818, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Dog", + }, + "value": 652, + }, + { + "category": "Pet", + "configData": { + "id": "Lunar Bat", + "pt": 1, + "sh": true, + }, + "value": 29383048, + }, + { + "category": "Pet", + "configData": { + "id": "Stacked Dominus", + "pt": 1, + }, + "value": 448, + }, + { + "category": "Pet", + "configData": { + "id": "Classic Dog", + "pt": 2, + "sh": true, + }, + "value": 231391190, + }, + { + "category": "Pet", + "configData": { + "id": "Matryoshka Dino", + "pt": 2, + "sh": true, + }, + "value": 2313490489, + }, + { + "category": "Pet", + "configData": { + "id": "Anime Agony", + "sh": true, + }, + "value": 146571628, + }, + { + "category": "Pet", + "configData": { + "id": "Leprechaun Cat", + "pt": 2, + }, + "value": 860, + }, + { + "category": "Pet", + "configData": { + "id": "Reindeer Cat", + "pt": 2, + "sh": true, + }, + "value": 1203488000, + }, + { + "category": "Pet", + "configData": { + "id": "Stunt Cat", + }, + "value": 734132, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sticky Lamb", + "pt": 2, + "sh": true, + }, + "value": 2961607750, + }, + { + "category": "Pet", + "configData": { + "id": "M-B PROTOTYPE", + "sh": true, + }, + "value": 7086, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixie Fox", + "sh": true, + }, + "value": 1254359606, + }, + { + "category": "Pet", + "configData": { + "id": "Tiki Dominus", + "pt": 2, + }, + "value": 2349, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Nightmare Sludge", + "pt": 2, + }, + "value": 44550066466, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Immortuus", + "pt": 2, + }, + "value": 4150, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Agony", + "pt": 2, + "sh": true, + }, + "value": 9065, + }, + { + "category": "Pet", + "configData": { + "id": "Feral Beast", + "sh": true, + }, + "value": 26247415, + }, + { + "category": "Misc", + "configData": { + "id": "Ultra Adoption Token Boost", + }, + "value": 80387, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Orca", + "sh": true, + }, + "value": 1020320789, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cyborg Cat", + "pt": 2, + }, + "value": 5314928928, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Pyro Cat", + "pt": 1, + }, + "value": 33477147640, + }, + { + "category": "Card", + "configData": { + "id": "Ghoul Horse Card", + "sh": true, + }, + "value": 27562, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Meebo The Alien Ball", + "pt": 1, + "sh": true, + }, + "value": 6424000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cupid Corgi", + "pt": 1, + "sh": true, + }, + "value": 477250652, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Cat", + "pt": 1, + "sh": true, + }, + "value": 543775, + }, + { + "category": "Card", + "configData": { + "id": "Huge Blurred Axolotl Card", + "pt": 2, + }, + "value": 101460602, + }, + { + "category": "Pet", + "configData": { + "id": "Charred Bat", + "pt": 1, + }, + "value": 3051, + }, + { + "category": "Pet", + "configData": { + "id": "Cat Magician", + "pt": 2, + "sh": true, + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Hippomint", + "pt": 2, + "sh": true, + }, + "value": 68860000000, + }, + { + "category": "Pet", + "configData": { + "id": "Old Wizard Corgi", + "pt": 2, + }, + "value": 415087458, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Starlight Pony", + "pt": 2, + "sh": true, + }, + "value": 747600000000, + }, + { + "category": "Pet", + "configData": { + "id": "Princess Dragon", + "pt": 1, + "sh": true, + }, + "value": 733, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Bear", + "pt": 1, + }, + "value": 2303, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Icy Phoenix", + "pt": 2, + }, + "value": 25093360571, + }, + { + "category": "Pet", + "configData": { + "id": "Stunt Corgi", + "pt": 1, + }, + "value": 573512, + }, + { + "category": "Pet", + "configData": { + "id": "Hypnotic Dragon", + "sh": true, + }, + "value": 27635346, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Axolotl", + "sh": true, + }, + "value": 465020996, + }, + { + "category": "Pet", + "configData": { + "id": "North Pole Wolf", + }, + "value": 5659, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightfall Wolf", + "pt": 1, + "sh": true, + }, + "value": 3970168388, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Quokka", + "pt": 2, + "sh": true, + }, + "value": 1000000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doll Cat", + "pt": 2, + "sh": true, + }, + "value": 2132473734, + }, + { + "category": "Pet", + "configData": { + "id": "Basket Bunny", + "pt": 2, + }, + "value": 624, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Bat", + "pt": 2, + }, + "value": 279, + }, + { + "category": "Pet", + "configData": { + "id": "Grimoire Agony", + "pt": 1, + "sh": true, + }, + "value": 173, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Kitsune", + "pt": 1, + "sh": true, + }, + "value": 2230129080, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Tiger", + "pt": 2, + }, + "value": 2331963, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiedye Dog", + "pt": 1, + }, + "value": 756982041, + }, + { + "category": "Pet", + "configData": { + "id": "Reindeer Corgi", + "pt": 1, + "sh": true, + }, + "value": 124071999, + }, + { + "category": "Pet", + "configData": { + "id": "Pumpkin Scarecrow", + "sh": true, + }, + "value": 198860, + }, + { + "category": "Pet", + "configData": { + "id": "Gingerbread Cat", + "pt": 1, + "sh": true, + }, + "value": 54670725, + }, + { + "category": "Card", + "configData": { + "id": "Huge Nightmare Dog Card", + "pt": 1, + }, + "value": 29707654, + }, + { + "category": "Pet", + "configData": { + "id": "Balloon Axolotl", + "sh": true, + }, + "value": 13763750, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Marshmallow Kitsune", + "pt": 2, + "sh": true, + }, + "value": 3035733738, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Shark", + "pt": 1, + }, + "value": 5643256, + }, + { + "category": "Pet", + "configData": { + "cv": 1, + "id": "Huge Chroma Tiger", + "sh": true, + }, + "value": 785945542, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Unicorn", + "sh": true, + }, + "value": 2880854887, + }, + { + "category": "Pet", + "configData": { + "id": "Fire Kitsune", + "pt": 1, + }, + "value": 7492667, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dark Fox", + "pt": 2, + "sh": true, + }, + "value": 14000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Camo Axolotl", + }, + "value": 32927, + }, + { + "category": "Pet", + "configData": { + "id": "Maple Owl", + "pt": 1, + }, + "value": 960000, + }, + { + "category": "Pet", + "configData": { + "id": "Autumn Chest Mimic", + }, + "value": 45391, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Cow", + "sh": true, + }, + "value": 821, + }, + { + "category": "Pet", + "configData": { + "id": "Hyena", + "sh": true, + }, + "value": 317, + }, + { + "category": "Pet", + "configData": { + "id": "Calico Cat", + "pt": 2, + }, + "value": 17367, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Jaguar", + "sh": true, + }, + "value": 244879199, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tarantula", + "pt": 1, + }, + "value": 130740327, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Troll", + "sh": true, + }, + "value": 873083440, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rudolf", + "pt": 1, + "sh": true, + }, + "value": 535212986, + }, + { + "category": "Pet", + "configData": { + "id": "Pot of Gold Cat", + "sh": true, + }, + "value": 41230, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dino Dog", + "pt": 1, + "sh": true, + }, + "value": 1117604703, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Basketball Cat", + "sh": true, + }, + "value": 444400000000, + }, + { + "category": "Pet", + "configData": { + "id": "Divinus", + "sh": true, + }, + "value": 21994, + }, + { + "category": "Consumable", + "configData": { + "id": "Mining Coins Booster", + "tn": 2, + }, + "value": 1350, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Knife Cat", + "pt": 2, + }, + "value": 2705526984, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gym Cat", + "pt": 2, + }, + "value": 96784939780, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Plague Dragon", + "pt": 1, + "sh": true, + }, + "value": 694596137, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Surfboard Axolotl", + "pt": 2, + "sh": true, + }, + "value": 6826735360, + }, + { + "category": "Pet", + "configData": { + "id": "Good vs Evil Cat", + "pt": 1, + }, + "value": 2440, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Snowflake Dominus", + "pt": 1, + }, + "value": 10950651593, + }, + { + "category": "Pet", + "configData": { + "id": "Jungle Golem", + "sh": true, + }, + "value": 29849, + }, + { + "category": "Pet", + "configData": { + "id": "Player Penguin", + "sh": true, + }, + "value": 44361, + }, + { + "category": "Pet", + "configData": { + "id": "Imp", + "pt": 2, + }, + "value": 5079, + }, + { + "category": "Pet", + "configData": { + "id": "Ocean Horse", + "pt": 1, + }, + "value": 781, + }, + { + "category": "Pet", + "configData": { + "id": "Quantum Fox", + }, + "value": 1007, + }, + { + "category": "Pet", + "configData": { + "id": "Leprechaun Dog", + "sh": true, + }, + "value": 897, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Fish", + "pt": 1, + }, + "value": 716, + }, + { + "category": "Pet", + "configData": { + "id": "Super Coral Axolotl", + "pt": 2, + "sh": true, + }, + "value": 391041542, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Corgi", + }, + "value": 602009, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Piggy", + "pt": 1, + }, + "value": 469069, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Dog", + "pt": 2, + }, + "value": 29519785, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Rich", + "sh": true, + }, + "value": 2505041505, + }, + { + "category": "Pet", + "configData": { + "id": "Alien Arachnid", + "pt": 1, + }, + "value": 1391, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snow Globe Hamster", + "sh": true, + }, + "value": 1626393216, + }, + { + "category": "Pet", + "configData": { + "id": "Comet Pony", + "pt": 2, + }, + "value": 26444, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Old Wizard Cat", + "pt": 2, + "sh": true, + }, + "value": 4308803338, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pumpkin Dog", + "pt": 2, + "sh": true, + }, + "value": 7329447680, + }, + { + "category": "Pet", + "configData": { + "id": "Painted King Crab", + }, + "value": 66, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Aura Fox", + "pt": 1, + "sh": true, + }, + "value": 9760251379, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Dragon", + "sh": true, + }, + "value": 12903, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pinecone Porcupine", + "sh": true, + }, + "value": 1045548567, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Hell Rock", + "pt": 2, + "sh": true, + }, + "value": 3880217908, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bloo Cat", + "sh": true, + }, + "value": 1819239898, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Griffin", + }, + "value": 1281, + }, + { + "category": "Pet", + "configData": { + "id": "UV Kitsune Ball", + "sh": true, + }, + "value": 1531, + }, + { + "category": "Pet", + "configData": { + "id": "Knight Slime", + "pt": 1, + }, + "value": 165678, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rogue Squid", + "pt": 1, + "sh": true, + }, + "value": 281222144, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Monkey", + "pt": 2, + }, + "value": 659, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lit Octopus", + "pt": 2, + }, + "value": 7304729600, + }, + { + "category": "Pet", + "configData": { + "id": "Noob", + "pt": 2, + "sh": true, + }, + "value": 2255219477, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Willow Wisp", + "pt": 1, + "sh": true, + }, + "value": 731691867, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bear", + "pt": 1, + }, + "value": 216814224, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Chesnut Chipmunk", + "pt": 2, + }, + "value": 25965534706, + }, + { + "category": "Pet", + "configData": { + "id": "Zombie Deer", + "sh": true, + }, + "value": 1496, + }, + { + "category": "Pet", + "configData": { + "id": "Nightmare Sludge", + "pt": 2, + "sh": true, + }, + "value": 449272000, + }, + { + "category": "Pet", + "configData": { + "id": "Pirate Cat", + "sh": true, + }, + "value": 1696, + }, + { + "category": "Pet", + "configData": { + "id": "Stargazing Axolotl", + "sh": true, + }, + "value": 20018990, + }, + { + "category": "Pet", + "configData": { + "id": "Googly Shark", + "sh": true, + }, + "value": 17968248, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Elephant", + "pt": 1, + "sh": true, + }, + "value": 95095845, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Cat", + "pt": 2, + "sh": true, + }, + "value": 10771327, + }, + { + "category": "Pet", + "configData": { + "id": "Jellyfish", + "pt": 2, + }, + "value": 221570, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Monkey", + "sh": true, + }, + "value": 12549183478, + }, + { + "category": "Pet", + "configData": { + "id": "Umbrella Bear", + }, + "value": 221, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom King", + "pt": 2, + }, + "value": 4467347745, + }, + { + "category": "Pet", + "configData": { + "id": "Chroma Tiger", + "pt": 2, + }, + "value": 2489, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Deer", + "pt": 1, + "sh": true, + }, + "value": 60828404, + }, + { + "category": "Pet", + "configData": { + "id": "Night Terror Dog", + "sh": true, + }, + "value": 36749, + }, + { + "category": "Pet", + "configData": { + "id": "Silver Bison", + }, + "value": 585, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Autumn Chest Mimic", + "pt": 2, + }, + "value": 972765434, + }, + { + "category": "Pet", + "configData": { + "id": "Comet Pony", + "pt": 2, + "sh": true, + }, + "value": 16035, + }, + { + "category": "Pet", + "configData": { + "id": "Sprout Wyrmling", + "pt": 2, + }, + "value": 39089935, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Bat", + "pt": 2, + }, + "value": 415, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chad Elephant", + "sh": true, + }, + "value": 519663291, + }, + { + "category": "Pet", + "configData": { + "id": "Bejeweled Unicorn", + "pt": 2, + "sh": true, + }, + "value": 603212111, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Badger", + "pt": 2, + "sh": true, + }, + "value": 1864050246, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mining Robot", + "pt": 2, + "sh": true, + }, + "value": 4771200000, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Moth", + "pt": 1, + }, + "value": 146, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Ninja Panda", + }, + "value": 173, + }, + { + "category": "Card", + "configData": { + "id": "Ninja Otter Card", + "pt": 2, + }, + "value": 50133, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Dragon", + "pt": 1, + "sh": true, + }, + "value": 25048698505, + }, + { + "category": "Pet", + "configData": { + "id": "Scribe Squirrel", + "pt": 1, + }, + "value": 195, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Imp", + "sh": true, + }, + "value": 594, + }, + { + "category": "Pet", + "configData": { + "id": "Cloud Dog", + "pt": 2, + }, + "value": 4233, + }, + { + "category": "Pet", + "configData": { + "id": "Flamingo", + "sh": true, + }, + "value": 74393, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Old Wizard Cat", + "sh": true, + }, + "value": 49458869146, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Skelemelon", + "pt": 2, + }, + "value": 1000000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Dragon", + "sh": true, + }, + "value": 79012262, + }, + { + "category": "Pet", + "configData": { + "id": "Ender Goat", + "pt": 2, + }, + "value": 95, + }, + { + "category": "Pet", + "configData": { + "id": "Penguin", + }, + "value": 12, + }, + { + "category": "Pet", + "configData": { + "id": "Parrot", + "pt": 1, + }, + "value": 136182, + }, + { + "category": "Pet", + "configData": { + "id": "Abstract Agony", + "pt": 1, + }, + "value": 1543, + }, + { + "category": "Pet", + "configData": { + "id": "Baseball Dolphin", + "pt": 1, + }, + "value": 1692, + }, + { + "category": "Pet", + "configData": { + "id": "Little Melty", + "pt": 1, + }, + "value": 2348, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Aura Kitsune", + "pt": 2, + }, + "value": 39217972102, + }, + { + "category": "Pet", + "configData": { + "id": "Inferno Cat", + "pt": 2, + }, + "value": 1159643889, + }, + { + "category": "Pet", + "configData": { + "id": "Cloud Bat", + "sh": true, + }, + "value": 1254, + }, + { + "category": "Pet", + "configData": { + "id": "Robber Cat", + "sh": true, + }, + "value": 2554618, + }, + { + "category": "Pet", + "configData": { + "id": "Atlantean Dolphin", + "pt": 2, + }, + "value": 31722194, + }, + { + "category": "Pet", + "configData": { + "id": "Flower Gecko", + "pt": 1, + }, + "value": 946, + }, + { + "category": "Pet", + "configData": { + "id": "Poison Turtle", + "pt": 2, + }, + "value": 158, + }, + { + "category": "Pet", + "configData": { + "id": "Flamingo", + "pt": 2, + "sh": true, + }, + "value": 18800, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Deer", + "sh": true, + }, + "value": 6883342, + }, + { + "category": "Pet", + "configData": { + "id": "Dragon", + }, + "value": 1010, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Fox", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Nightfall Tiger", + "pt": 1, + }, + "value": 11924828, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wave Spirit", + "pt": 2, + "sh": true, + }, + "value": 3821353269, + }, + { + "category": "Pet", + "configData": { + "id": "Humble Rabbit", + }, + "value": 4940, + }, + { + "category": "Pet", + "configData": { + "id": "Marzipan Piggy", + "pt": 2, + "sh": true, + }, + "value": 66743, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jolly Owl", + "sh": true, + }, + "value": 4619632508, + }, + { + "category": "Pet", + "configData": { + "id": "Ancient Dragon", + "pt": 1, + "sh": true, + }, + "value": 20000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Exquisite Elephant", + "pt": 1, + "sh": true, + }, + "value": 2079285071, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hacked Skeleton", + "pt": 1, + }, + "value": 1288907387, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bobcat", + "pt": 1, + "sh": true, + }, + "value": 188864000000, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Cowboy Cat", + "pt": 1, + }, + "value": 283, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Poseidon Axolotl", + "sh": true, + }, + "value": 14589321784, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Luchador Cat", + "sh": true, + }, + "value": 103841119800, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Monkey", + "pt": 2, + }, + "value": 40, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Dragon", + }, + "value": 93, + }, + { + "category": "Pet", + "configData": { + "id": "Glimmercap Turtle", + "pt": 2, + }, + "value": 680, + }, + { + "category": "Pet", + "configData": { + "id": "Knight Beagle", + }, + "value": 507, + }, + { + "category": "Pet", + "configData": { + "id": "Leprechaun Dog", + "pt": 2, + "sh": true, + }, + "value": 1212970, + }, + { + "category": "Pet", + "configData": { + "id": "Runic Agony", + "pt": 2, + }, + "value": 24998, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Parrot", + "pt": 2, + "sh": true, + }, + "value": 1793369291, + }, + { + "category": "Pet", + "configData": { + "id": "Rocket Shark", + "pt": 1, + }, + "value": 459, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Night Terror Cat", + "pt": 2, + "sh": true, + }, + "value": 142181542875, + }, + { + "category": "Pet", + "configData": { + "id": "Dino Cat", + }, + "value": 55067, + }, + { + "category": "Pet", + "configData": { + "id": "Lit Octopus", + }, + "value": 152312, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evil Imp", + "sh": true, + }, + "value": 337790078, + }, + { + "category": "Pet", + "configData": { + "id": "Emerald Owl", + "pt": 1, + }, + "value": 830, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jaguar", + "sh": true, + }, + "value": 2291156395, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Moray Eel", + "pt": 2, + "sh": true, + }, + "value": 6961440353, + }, + { + "category": "Pet", + "configData": { + "id": "Monkey", + "pt": 1, + "sh": true, + }, + "value": 419712, + }, + { + "category": "Pet", + "configData": { + "id": "Holly Corgi", + "sh": true, + }, + "value": 337505, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jurassic Beaver", + "sh": true, + }, + "value": 1327890509, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chesnut Chipmunk", + "pt": 2, + "sh": true, + }, + "value": 3730912000, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Snowman", + }, + "value": 12178, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Coach Hippo", + "pt": 1, + "sh": true, + }, + "value": 3591269120, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Atlantean Orca", + "sh": true, + }, + "value": 913945093, + }, + { + "category": "Pet", + "configData": { + "id": "Chroma Tiger", + }, + "value": 558293, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Cat", + }, + "value": 98159649299, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Reindeer Dog", + "pt": 1, + }, + "value": 673630823, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elegant Eagle", + "pt": 2, + "sh": true, + }, + "value": 2990632932, + }, + { + "category": "Pet", + "configData": { + "id": "Tarantula", + "sh": true, + }, + "value": 1488, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Fish", + "sh": true, + }, + "value": 20071, + }, + { + "category": "Pet", + "configData": { + "id": "Runic Agony", + "pt": 2, + "sh": true, + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elephant", + "pt": 2, + "sh": true, + }, + "value": 1840637755, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gorgon", + "pt": 1, + "sh": true, + }, + "value": 1547354112, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Basketball Cat", + "pt": 2, + }, + "value": 21170605771, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Beaver", + "sh": true, + }, + "value": 60800, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cupcake Unicorn", + }, + "value": 3581218103, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Hydra", + "sh": true, + }, + "value": 1947821185, + }, + { + "category": "Pet", + "configData": { + "id": "Strawberry Cow Ball", + "pt": 2, + "sh": true, + }, + "value": 15648000, + }, + { + "category": "Pet", + "configData": { + "id": "Lightning Bat", + "pt": 2, + }, + "value": 1002240295, + }, + { + "category": "Pet", + "configData": { + "id": "Patchwork Yeti", + "pt": 2, + "sh": true, + }, + "value": 391519671, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Flamingo Hippo", + "sh": true, + }, + "value": 1291422731, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Sock Bear", + }, + "value": 52, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Monkey", + "pt": 1, + }, + "value": 41685, + }, + { + "category": "Pet", + "configData": { + "id": "Pog Dog", + "pt": 2, + }, + "value": 632080, + }, + { + "category": "Tower", + "configData": { + "id": "Shadow Pegasus", + }, + "value": 1849, + }, + { + "category": "Pet", + "configData": { + "id": "Rootkin Fox", + "pt": 1, + }, + "value": 329, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Willow Wisp", + "pt": 2, + "sh": true, + }, + "value": 3701128279, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Capybara", + "pt": 1, + }, + "value": 2128091002, + }, + { + "category": "Pet", + "configData": { + "id": "Astral Axolotl", + "pt": 2, + }, + "value": 1226, + }, + { + "category": "Card", + "configData": { + "id": "Pog Dragon Card", + "sh": true, + }, + "value": 36424, + }, + { + "category": "Pet", + "configData": { + "id": "Gary the Snail", + "pt": 2, + "sh": true, + }, + "value": 1413229734, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Butterfly", + "pt": 1, + "sh": true, + }, + "value": 1030896004, + }, + { + "category": "Pet", + "configData": { + "id": "Junkyard Hound", + }, + "value": 4460, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pineapple Monkey", + "pt": 1, + "sh": true, + }, + "value": 810799124, + }, + { + "category": "Pet", + "configData": { + "id": "Player Panda", + "sh": true, + }, + "value": 5161, + }, + { + "category": "Pet", + "configData": { + "id": "Gingerbread Lion", + "pt": 1, + }, + "value": 14021, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shadow Griffin", + "sh": true, + }, + "value": 7378055782, + }, + { + "category": "Pet", + "configData": { + "id": "Student Corgi", + "sh": true, + }, + "value": 2152, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Exquisite Cat", + "sh": true, + }, + "value": 506510116, + }, + { + "category": "Pet", + "configData": { + "id": "Bunny", + "pt": 2, + "sh": true, + }, + "value": 259250, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kaiju Hydra", + "sh": true, + }, + "value": 6220031725, + }, + { + "category": "Pet", + "configData": { + "id": "Jolly Penguin", + "pt": 2, + }, + "value": 107, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Fox", + "pt": 2, + }, + "value": 14717455, + }, + { + "category": "Pet", + "configData": { + "id": "Meebo in a Spaceship", + "pt": 2, + }, + "value": 26497, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Bee", + "pt": 2, + "sh": true, + }, + "value": 7905022764, + }, + { + "category": "Pet", + "configData": { + "id": "Luxe Axolotl", + "pt": 2, + "sh": true, + }, + "value": 113432, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kaiju Sea Dragon", + "pt": 2, + }, + "value": 957933305, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Piggy", + "sh": true, + }, + "value": 20927672, + }, + { + "category": "Pet", + "configData": { + "id": "Painter Cat", + "sh": true, + }, + "value": 314, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Butterfly", + "pt": 2, + }, + "value": 1680, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Safari Cat", + "pt": 2, + }, + "value": 5625383943, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Three Headed Dragon", + "pt": 1, + }, + "value": 16720000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stargazing Axolotl", + "pt": 2, + }, + "value": 1045607512, + }, + { + "category": "Pet", + "configData": { + "id": "Spitting Dino", + "pt": 1, + "sh": true, + }, + "value": 19200, + }, + { + "category": "Pet", + "configData": { + "id": "Luau Seal", + "pt": 1, + }, + "value": 3120, + }, + { + "category": "Pet", + "configData": { + "id": "Fortress Dog", + "pt": 1, + }, + "value": 1120458, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Glitched Cat Ball", + "sh": true, + }, + "value": 15625968782, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved King Cobra", + "sh": true, + }, + "value": 2209472173, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Elephant", + "pt": 2, + }, + "value": 1480391, + }, + { + "category": "Pet", + "configData": { + "id": "Sphinx", + "pt": 2, + "sh": true, + }, + "value": 4080610, + }, + { + "category": "Pet", + "configData": { + "id": "Snowflake Pegasus", + "pt": 1, + "sh": true, + }, + "value": 313920000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccer Terrier", + "pt": 2, + }, + "value": 619458738, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Masked Owl", + "pt": 1, + "sh": true, + }, + "value": 140311520000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Golem", + "sh": true, + }, + "value": 819729669, + }, + { + "category": "Pet", + "configData": { + "id": "Domortuus", + "sh": true, + }, + "value": 5331, + }, + { + "category": "Pet", + "configData": { + "id": "North Pole Bunny", + }, + "value": 85, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Snowman", + "pt": 2, + }, + "value": 1220, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Hippomelon", + "pt": 1, + "sh": true, + }, + "value": 954, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Dog", + "sh": true, + }, + "value": 1094727542, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Sock Corgi", + "sh": true, + }, + "value": 6348, + }, + { + "category": "Pet", + "configData": { + "id": "Hamster", + "sh": true, + }, + "value": 2648, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Hacked Cat", + "pt": 2, + "sh": true, + }, + "value": 14700000000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Jelly Cat", + "sh": true, + }, + "value": 177934796800, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Dog", + "pt": 2, + "sh": true, + }, + "value": 215115, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Enchanted Dog", + "pt": 2, + }, + "value": 1806959387, + }, + { + "category": "Pet", + "configData": { + "id": "Blazing Corgi", + "pt": 2, + "sh": true, + }, + "value": 543342068, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Hacked Cat", + "sh": true, + }, + "value": 35485368360, + }, + { + "category": "Card", + "configData": { + "id": "Hydra Cat Card", + "pt": 2, + "sh": true, + }, + "value": 4417283, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guard Dragon", + "pt": 1, + "sh": true, + }, + "value": 1725131280, + }, + { + "category": "Consumable", + "configData": { + "id": "Factory Coins Booster", + "tn": 2, + }, + "value": 29310, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Sad Cat", + "sh": true, + }, + "value": 5902317005, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Keyboard Cat", + "pt": 1, + }, + "value": 8042890113, + }, + { + "category": "Pet", + "configData": { + "id": "Vibrant Toucan", + "pt": 1, + }, + "value": 525, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Griffin", + "pt": 1, + "sh": true, + }, + "value": 122304, + }, + { + "category": "Pet", + "configData": { + "id": "Flamingo Hippo", + "pt": 1, + }, + "value": 28458, + }, + { + "category": "Pet", + "configData": { + "id": "Blurred Bear Ball", + }, + "value": 94, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valentines Cat", + "sh": true, + }, + "value": 2420184005, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Devil Tasmanian", + "pt": 1, + "sh": true, + }, + "value": 1982809600, + }, + { + "category": "Pet", + "configData": { + "id": "Red Dragon", + "sh": true, + }, + "value": 14266, + }, + { + "category": "Pet", + "configData": { + "id": "Vampire Dragon", + }, + "value": 913, + }, + { + "category": "Pet", + "configData": { + "id": "Quantum Griffin", + "pt": 2, + }, + "value": 1491, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Elf Golem", + "pt": 1, + }, + "value": 100000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Super Coral Hydra", + "pt": 2, + }, + "value": 1881170558, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Cupcake Pegasus Card", + "pt": 1, + "sh": true, + }, + "value": 25210000000, + }, + { + "category": "Pet", + "configData": { + "id": "Queen Slime", + }, + "value": 5293, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Shark", + "pt": 1, + }, + "value": 9015799, + }, + { + "category": "Pet", + "configData": { + "cv": 1, + "id": "Chroma Phoenix", + }, + "value": 16059, + }, + { + "category": "Pet", + "configData": { + "id": "Cloud Hedgehog", + "pt": 1, + }, + "value": 1325, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiedye Corgi", + "pt": 1, + "sh": true, + }, + "value": 5769982062, + }, + { + "category": "Pet", + "configData": { + "cv": 5, + "id": "Huge Chroma Doodle Axolotl", + "pt": 2, + }, + "value": 1297284284, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wild Frost Agony", + "pt": 1, + "sh": true, + }, + "value": 472704825, + }, + { + "category": "Pet", + "configData": { + "id": "Nightmare Bear", + "sh": true, + }, + "value": 9933662, + }, + { + "category": "Pet", + "configData": { + "id": "Chick", + "pt": 1, + }, + "value": 440, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Dog", + "pt": 1, + }, + "value": 183939998, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Deer", + "pt": 2, + "sh": true, + }, + "value": 51568, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Pony", + "pt": 2, + "sh": true, + }, + "value": 781, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Santa Monkey", + "pt": 2, + }, + "value": 10108981629, + }, + { + "category": "Pet", + "configData": { + "id": "Hyena", + "pt": 2, + }, + "value": 43, + }, + { + "category": "Pet", + "configData": { + "id": "Gemstone Gargoyle Dragon", + "pt": 1, + }, + "value": 3005, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Divinus", + "sh": true, + }, + "value": 381514417, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Masked Fox", + "pt": 1, + "sh": true, + }, + "value": 2517833830, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rainbow Slime", + "pt": 2, + "sh": true, + }, + "value": 3240560000, + }, + { + "category": "Pet", + "configData": { + "id": "Stegosaurus", + "pt": 1, + }, + "value": 16, + }, + { + "category": "Card", + "configData": { + "id": "Huge Ninja Capybara Card", + }, + "value": 560500631, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pumpkin Spice Cat", + "sh": true, + }, + "value": 842813442, + }, + { + "category": "Pet", + "configData": { + "id": "Witch Cat", + }, + "value": 8751, + }, + { + "category": "Egg", + "configData": { + "id": "Series 1 Rare Gift", + }, + "value": 118868481, + }, + { + "category": "Pet", + "configData": { + "id": "Quantum Tiger", + "pt": 1, + }, + "value": 167794, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Beaver", + "pt": 1, + "sh": true, + }, + "value": 271616861, + }, + { + "category": "Pet", + "configData": { + "id": "Firefossil Wolf", + "pt": 2, + }, + "value": 14568, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hypnotic Dragon", + "sh": true, + }, + "value": 1906337288, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Agony", + }, + "value": 68, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Parrot", + "pt": 1, + "sh": true, + }, + "value": 8000, + }, + { + "category": "Pet", + "configData": { + "id": "Fluffy Cat", + "sh": true, + }, + "value": 1092, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cow", + "pt": 2, + }, + "value": 6215247688, + }, + { + "category": "Pet", + "configData": { + "id": "Honey Golem", + "pt": 2, + "sh": true, + }, + "value": 800015, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Old Wizard Cat", + "pt": 1, + "sh": true, + }, + "value": 782226247, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Turtle", + "pt": 2, + "sh": true, + }, + "value": 10450, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leafstorm Wolf", + "pt": 2, + "sh": true, + }, + "value": 15840000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Monkey", + "pt": 2, + }, + "value": 2217019600, + }, + { + "category": "Pet", + "configData": { + "id": "Skunk", + "sh": true, + }, + "value": 308, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Quantum Agony", + "pt": 1, + "sh": true, + }, + "value": 1316673961, + }, + { + "category": "Pet", + "configData": { + "id": "Dot Matrix Snail", + "pt": 2, + "sh": true, + }, + "value": 752018841, + }, + { + "category": "Pet", + "configData": { + "id": "Glimmercap Turtle", + "pt": 1, + }, + "value": 3827, + }, + { + "category": "Pet", + "configData": { + "id": "Beagle", + "pt": 2, + }, + "value": 556244, + }, + { + "category": "Pet", + "configData": { + "id": "Hippokin", + }, + "value": 2729, + }, + { + "category": "Pet", + "configData": { + "id": "Cupid Corgi", + "pt": 2, + "sh": true, + }, + "value": 772208736, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Painted Cat", + "pt": 1, + "sh": true, + }, + "value": 450420589, + }, + { + "category": "Pet", + "configData": { + "id": "Pirate Parrot", + }, + "value": 45, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Butterfly", + "sh": true, + }, + "value": 1025695918, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fancy Axolotl", + "pt": 2, + "sh": true, + }, + "value": 1355859453, + }, + { + "category": "Consumable", + "configData": { + "id": "Lucky Raid XP Booster V2", + "tn": 1, + }, + "value": 890, + }, + { + "category": "Misc", + "configData": { + "id": "Leprechaun Key V2", + }, + "value": 197, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 59", + }, + "value": 199402532, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Snake", + }, + "value": 32, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Horseshoe Capybara", + "pt": 2, + }, + "value": 164772261, + }, + { + "category": "Consumable", + "configData": { + "id": "Lucky Raid Damage Booster V2", + "tn": 1, + }, + "value": 3917, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Dominus", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Glass Crocodile", + }, + "value": 8597454, + }, + { + "category": "Pet", + "configData": { + "id": "Glass Dominus", + }, + "value": 22856089, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Horseshoe Capybara", + }, + "value": 31269137, + }, + { + "category": "Pet", + "configData": { + "id": "Glass Kraken", + "pt": 2, + }, + "value": 35789337, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bluebird", + }, + "value": 19652356, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Snake", + "pt": 1, + }, + "value": 68, + }, + { + "category": "Pet", + "configData": { + "id": "Leprechaun Kitsune", + "pt": 2, + }, + "value": 50, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Penguin", + "pt": 2, + "sh": true, + }, + "value": 6910, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Lamb", + }, + "value": 21, + }, + { + "category": "Pet", + "configData": { + "id": "Glass Kraken", + }, + "value": 16372516, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Tiedye Corgi", + }, + "value": 4914468491, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glass Dominus", + }, + "value": 302909299, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Pot of Gold", + }, + "value": 4877249, + }, + { + "category": "Lootbox", + "configData": { + "id": "Horseshoe Gift", + }, + "value": 534293, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Horseshoe Capybara", + "pt": 1, + }, + "value": 39662033, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glass Crocodile", + }, + "value": 99869024, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bluebird", + "pt": 2, + }, + "value": 170313294, + }, + { + "category": "Pet", + "configData": { + "id": "Leprechaun Kitsune", + }, + "value": 46, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bluebird", + "sh": true, + }, + "value": 121438909, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Prickly Panda", + }, + "value": 4818744501, + }, + { + "category": "Pet", + "configData": { + "id": "Glass Crocodile", + "sh": true, + }, + "value": 24127166, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Chest Mimic", + "pt": 2, + }, + "value": 1534722, + }, + { + "category": "Misc", + "configData": { + "id": "Lucky Raid Boss Key V2", + }, + "value": 197, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Horse", + }, + "value": 25, + }, + { + "category": "Pet", + "configData": { + "id": "Horseshoe Capybara", + }, + "value": 38, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Dragon", + }, + "value": 345, + }, + { + "category": "Pet", + "configData": { + "id": "Glass Crocodile", + "pt": 2, + }, + "value": 21684515, + }, + { + "category": "Pet", + "configData": { + "id": "Glass Kraken", + "sh": true, + }, + "value": 28842740, + }, + { + "category": "Pet", + "configData": { + "id": "Leprechaun Kitsune", + "pt": 2, + "sh": true, + }, + "value": 272, + }, + { + "category": "Consumable", + "configData": { + "id": "Lucky Raid Damage Booster V2", + "tn": 2, + }, + "value": 58883, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Golem", + }, + "value": 1832412, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Penguin", + "pt": 1, + }, + "value": 33979478, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Chest Mimic", + }, + "value": 109577, + }, + { + "category": "Consumable", + "configData": { + "id": "Lucky Raid XP Booster V2", + "tn": 2, + }, + "value": 94853, + }, + { + "category": "Pet", + "configData": { + "id": "Pot of Gold Corgi", + "pt": 2, + }, + "value": 74, + }, + { + "category": "Pet", + "configData": { + "id": "Glass Dominus", + "pt": 2, + }, + "value": 54395476, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Horse", + "pt": 2, + }, + "value": 189, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Snake", + "sh": true, + }, + "value": 515, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Lamb", + }, + "value": 23417653, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glass Dominus", + "pt": 2, + }, + "value": 1418389845, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Tiedye Corgi", + "sh": true, + }, + "value": 15378869607, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Phoenix", + "pt": 2, + }, + "value": 182, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Penguin", + "pt": 2, + }, + "value": 182, + }, + { + "category": "Pet", + "configData": { + "id": "Leprechaun Kitsune", + "sh": true, + }, + "value": 34, + }, + { + "category": "Pet", + "configData": { + "id": "Horseshoe Capybara", + "pt": 1, + }, + "value": 47, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Lamb", + "pt": 2, + }, + "value": 397, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Penguin", + "pt": 1, + }, + "value": 135, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Penguin", + }, + "value": 39, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Deer", + "pt": 1, + }, + "value": 96, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Owl", + }, + "value": 99, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Golem", + "pt": 2, + }, + "value": 41800356, + }, + { + "category": "Pet", + "configData": { + "id": "Horseshoe Capybara", + "pt": 2, + }, + "value": 414, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Nightfall Tiger", + }, + "value": 113395407311, + }, + { + "category": "Booth", + "configData": { + "id": "Pot of Gold", + }, + "value": 2654865, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Horse", + }, + "value": 19822999, + }, + { + "category": "Pet", + "configData": { + "id": "Pirate Panda", + }, + "value": 164, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Golem", + "pt": 1, + }, + "value": 24736235, + }, + { + "category": "Misc", + "configData": { + "id": "Lucky Raid Boss Key Lower Half V2", + }, + "value": 97, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Chest Mimic", + "pt": 1, + }, + "value": 1141778, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Phoenix", + }, + "value": 44, + }, + { + "category": "Pet", + "configData": { + "id": "Leafy Deer", + }, + "value": 6068770, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Owl", + "pt": 1, + }, + "value": 69, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Deer", + }, + "value": 37, + }, + { + "category": "Pet", + "configData": { + "id": "Horseshoe Capybara", + "sh": true, + }, + "value": 224, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Phoenix", + "pt": 1, + }, + "value": 30, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Horseshoe Capybara", + "pt": 1, + "sh": true, + }, + "value": 402477696, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Dog", + "sh": true, + }, + "value": 46583, + }, + { + "category": "Pet", + "configData": { + "id": "Pot of Gold Corgi", + }, + "value": 23, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Phoenix", + "sh": true, + }, + "value": 277, + }, + { + "category": "Misc", + "configData": { + "id": "Lucky Raid Boss Key Upper Half V2", + }, + "value": 233, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Deer", + "pt": 2, + }, + "value": 450, + }, + { + "category": "Pet", + "configData": { + "id": "Pot of Gold Corgi", + "pt": 1, + }, + "value": 27, + }, + { + "category": "Pet", + "configData": { + "id": "Pot of Gold Corgi", + "pt": 2, + "sh": true, + }, + "value": 5194, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Horse", + "sh": true, + }, + "value": 93, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pastel Sock Bunny", + "pt": 1, + "sh": true, + }, + "value": 1171196477, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Deer", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Lamb", + "sh": true, + }, + "value": 64, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Dominus", + "pt": 1, + }, + "value": 807436068, + }, + { + "category": "Pet", + "configData": { + "id": "Corgi", + "pt": 1, + "sh": true, + }, + "value": 16646, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Glass Blobfish", + }, + "value": 8667571435, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Dominus", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Dominus", + }, + "value": 894843707, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Horse", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Leprechaun Kitsune", + "pt": 1, + }, + "value": 26, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Deer", + "pt": 2, + }, + "value": 153429047, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Owl", + "pt": 2, + "sh": true, + }, + "value": 987074, + }, + { + "category": "Pet", + "configData": { + "id": "Armadillo", + }, + "value": 2057, + }, + { + "category": "Pet", + "configData": { + "id": "Horseshoe Capybara", + "pt": 2, + "sh": true, + }, + "value": 15291, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Deer", + }, + "value": 18642680, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Horse", + "pt": 1, + }, + "value": 87, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Horseshoe Capybara", + "sh": true, + }, + "value": 227378155, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Horse", + "pt": 1, + }, + "value": 27203471, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Deer", + "pt": 1, + }, + "value": 27718729, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Snake", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Leprechaun Kitsune", + "pt": 1, + "sh": true, + }, + "value": 597, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Lamb", + "sh": true, + }, + "value": 120959561, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pot of Gold Corgi", + }, + "value": 161317162, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Owl", + "pt": 2, + }, + "value": 411, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Horse", + "pt": 2, + }, + "value": 142225165, + }, + { + "category": "Pet", + "configData": { + "id": "Autumn Red Panda", + "pt": 2, + "sh": true, + }, + "value": 7127028, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glass Crocodile", + "pt": 2, + }, + "value": 712128079, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Leprechaun Kitsune", + }, + "value": 8453910573, + }, + { + "category": "Pet", + "configData": { + "id": "Pot of Gold Corgi", + "pt": 1, + "sh": true, + }, + "value": 333, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Deer", + "pt": 1, + "sh": true, + }, + "value": 308262573, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Lamb", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Penguin", + "sh": true, + }, + "value": 50, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Deer", + "sh": true, + }, + "value": 116653905, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Penguin", + }, + "value": 26356389, + }, + { + "category": "Pet", + "configData": { + "id": "Glass Dominus", + "sh": true, + }, + "value": 48041181, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Inferno Cat", + }, + "value": 5504454351, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Phoenix", + }, + "value": 19554036, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Infernus", + "pt": 1, + "sh": true, + }, + "value": 174, + }, + { + "category": "Pet", + "configData": { + "id": "Astronaut Cat Ball", + "pt": 1, + "sh": true, + }, + "value": 150770, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Lucki Chest Mimic", + }, + "value": 4813903879, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Dove", + "pt": 1, + "sh": true, + }, + "value": 182227453, + }, + { + "category": "Pet", + "configData": { + "id": "Luchador Eagle", + "sh": true, + }, + "value": 20031427, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Snake", + "pt": 2, + }, + "value": 201, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glass Crocodile", + "sh": true, + }, + "value": 428090957, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Horseshoe Capybara", + "pt": 2, + "sh": true, + }, + "value": 6429354650, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Phoenix", + "pt": 1, + }, + "value": 26079693, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Deer", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Owl", + "sh": true, + }, + "value": 175, + }, + { + "category": "Pet", + "configData": { + "id": "Pot of Gold Corgi", + "sh": true, + }, + "value": 32, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Penguin", + "pt": 2, + }, + "value": 286062444, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kaiju Hydra", + "pt": 2, + }, + "value": 4882792190, + }, + { + "category": "Pet", + "configData": { + "id": "Holly Corgi", + "pt": 1, + }, + "value": 45123, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Axolotl", + "pt": 2, + }, + "value": 30243, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Lamb", + "pt": 1, + }, + "value": 74, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Axolotl", + "sh": true, + }, + "value": 826, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Elephant", + "pt": 1, + }, + "value": 7895465, + }, + { + "category": "Pet", + "configData": { + "id": "Beagle", + "sh": true, + }, + "value": 1424, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Horseshoe Capybara", + }, + "value": 4583922735, + }, + { + "category": "Pet", + "configData": { + "id": "Pog Shark", + "pt": 2, + "sh": true, + }, + "value": 405006720, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doodle Bee", + "pt": 1, + }, + "value": 666726092, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Phoenix", + "sh": true, + }, + "value": 115934938, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Bunny", + "pt": 1, + "sh": true, + }, + "value": 104229348, + }, + { + "category": "Pet", + "configData": { + "id": "Graffiti Dino", + "pt": 1, + }, + "value": 24, + }, + { + "category": "Pet", + "configData": { + "id": "Molten Werelynx", + "pt": 2, + }, + "value": 382, + }, + { + "category": "Pet", + "configData": { + "id": "Masked Fox", + "pt": 1, + "sh": true, + }, + "value": 695590, + }, + { + "category": "Pet", + "configData": { + "id": "Sun Parrot", + }, + "value": 314, + }, + { + "category": "Pet", + "configData": { + "id": "Hacked Cat", + "pt": 2, + }, + "value": 170, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dark Dragon", + "pt": 2, + }, + "value": 574599477, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Wolf", + }, + "value": 48165279, + }, + { + "category": "Pet", + "configData": { + "id": "Starry Tail Anteater", + "pt": 2, + }, + "value": 433, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Axolotl Ball", + }, + "value": 147774, + }, + { + "category": "Pet", + "configData": { + "id": "Glass Crocodile", + "pt": 2, + "sh": true, + }, + "value": 295065833, + }, + { + "category": "Pet", + "configData": { + "id": "Glass Kraken", + "pt": 2, + "sh": true, + }, + "value": 460666823, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Tiedye Corgi", + "pt": 2, + }, + "value": 18549799443, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Axolotl", + "sh": true, + }, + "value": 19288, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cartoon Bunny", + "pt": 2, + }, + "value": 1199634407, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Huge Chroma Tiger", + "pt": 2, + }, + "value": 452775134, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Horseshoe Capybara", + "pt": 1, + }, + "value": 4960112447, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Wolf", + "pt": 2, + }, + "value": 388467046, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Lamb", + "pt": 1, + }, + "value": 22121896, + }, + { + "category": "Pet", + "configData": { + "id": "Lit Octopus", + "pt": 2, + }, + "value": 20343, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Dove", + "pt": 1, + }, + "value": 8578842, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Cow", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bat", + "pt": 1, + "sh": true, + }, + "value": 1593798208, + }, + { + "category": "Pet", + "configData": { + "id": "Demon Cyclops", + }, + "value": 2484, + }, + { + "category": "Pet", + "configData": { + "id": "Pinecone Porcupine", + "pt": 1, + }, + "value": 1584783, + }, + { + "category": "Card", + "configData": { + "id": "Tech Chest Mimic Card", + "pt": 2, + "sh": true, + }, + "value": 962081, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Lucki Chest Mimic", + "pt": 1, + }, + "value": 5222693177, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anime Unicorn", + "sh": true, + }, + "value": 1205641722, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Chest Mimic", + "pt": 2, + "sh": true, + }, + "value": 122424315, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Lamb", + "pt": 2, + }, + "value": 123661529, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Deer", + "pt": 2, + }, + "value": 65756, + }, + { + "category": "Pet", + "configData": { + "id": "Royal Cloud Cat", + "pt": 1, + }, + "value": 1443, + }, + { + "category": "Pet", + "configData": { + "id": "Hellish Axolotl", + }, + "value": 8864, + }, + { + "category": "Pet", + "configData": { + "id": "Masked Fox", + }, + "value": 2884, + }, + { + "category": "Pet", + "configData": { + "id": "Leprechaun Corgi", + "pt": 2, + }, + "value": 974, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Panda", + "pt": 1, + }, + "value": 235, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Deer", + "sh": true, + }, + "value": 153, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glass Dominus", + "sh": true, + }, + "value": 982315246, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Strawberry Cow", + "sh": true, + }, + "value": 508861152, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Horseshoe Capybara", + "pt": 2, + }, + "value": 14807576419, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Chest Mimic", + "pt": 1, + "sh": true, + }, + "value": 20771143, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Present Chest Mimic", + "pt": 2, + }, + "value": 2869209522, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Phoenix", + "pt": 2, + }, + "value": 135155416, + }, + { + "category": "Pet", + "configData": { + "id": "Peacock", + "pt": 2, + }, + "value": 3959, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Maskot", + "sh": true, + }, + "value": 81241, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Horse", + "pt": 1, + "sh": true, + }, + "value": 398577516, + }, + { + "category": "Pet", + "configData": { + "id": "Firegel Dragon", + "pt": 2, + }, + "value": 364676, + }, + { + "category": "Pet", + "configData": { + "id": "Demon", + }, + "value": 1442, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Bunny", + "pt": 1, + }, + "value": 517, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Reaper Cat", + "pt": 2, + }, + "value": 3585441323, + }, + { + "category": "Pet", + "configData": { + "id": "Watermelon Golem", + "pt": 1, + }, + "value": 166038, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Watermelon Golem", + "pt": 1, + "sh": true, + }, + "value": 7400000000, + }, + { + "category": "Pet", + "configData": { + "id": "Blazing Corgi", + "sh": true, + }, + "value": 9024286, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Cappuccino Brainrot", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Yeti", + "pt": 2, + }, + "value": 695677105, + }, + { + "category": "Pet", + "configData": { + "id": "Atomic Monkey Ball", + "pt": 2, + "sh": true, + }, + "value": 12165, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Doge", + "pt": 2, + }, + "value": 40000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Lamb", + "pt": 2, + "sh": true, + }, + "value": 2209357500, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Scorpion", + "pt": 2, + }, + "value": 2005, + }, + { + "category": "Pet", + "configData": { + "id": "Humble Rabbit", + "pt": 2, + }, + "value": 456, + }, + { + "category": "Pet", + "configData": { + "id": "Fortress Owl", + "pt": 1, + }, + "value": 139, + }, + { + "category": "Pet", + "configData": { + "id": "Comet Cyclops Ball", + "pt": 2, + "sh": true, + }, + "value": 322503302, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Abstract Dominus", + "sh": true, + }, + "value": 476610589, + }, + { + "category": "Pet", + "configData": { + "id": "Hacked Cat", + "pt": 1, + }, + "value": 437, + }, + { + "category": "Pet", + "configData": { + "id": "Circuit Corgi", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Horse", + "sh": true, + }, + "value": 117777378, + }, + { + "category": "Pet", + "configData": { + "id": "Lamb", + "pt": 1, + }, + "value": 7170, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Bat", + }, + "value": 258, + }, + { + "category": "Pet", + "configData": { + "id": "Frontman Jellyfish", + "pt": 1, + "sh": true, + }, + "value": 71277, + }, + { + "category": "Pet", + "configData": { + "id": "Matrix Monkey", + "pt": 2, + }, + "value": 47233, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Cardinal", + }, + "value": 595167, + }, + { + "category": "Pet", + "configData": { + "id": "Melted Slime", + "pt": 2, + }, + "value": 2839, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Phoenix", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Wolf", + }, + "value": 12, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Signature BIG Maskot", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Fairy Grasshopper", + "pt": 1, + "sh": true, + }, + "value": 2283, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Jackalope", + "pt": 2, + "sh": true, + }, + "value": 38407, + }, + { + "category": "Pet", + "configData": { + "id": "Sabretooth Tiger", + "pt": 2, + }, + "value": 663, + }, + { + "category": "Pet", + "configData": { + "id": "Werewolf", + "pt": 1, + }, + "value": 2342, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Golem", + "pt": 1, + "sh": true, + }, + "value": 597680637, + }, + { + "category": "Pet", + "configData": { + "id": "Glowy the Ghost", + }, + "value": 1540, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Axolotl", + "pt": 1, + }, + "value": 161157, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Angelus", + }, + "value": 278787, + }, + { + "category": "Card", + "configData": { + "id": "Blue BIG Maskot Card", + "sh": true, + }, + "value": 2578625, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki", + "pt": 1, + }, + "value": 740796215, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pot of Gold Corgi", + "pt": 1, + }, + "value": 336684599, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Owl", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Luau Seal", + "sh": true, + }, + "value": 6117, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Bunny", + "pt": 2, + "sh": true, + }, + "value": 764, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Bee", + "pt": 2, + "sh": true, + }, + "value": 11979057, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Globe Hamster", + "sh": true, + }, + "value": 11887328, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Butterfly", + }, + "value": 12327, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Yee-haw Cat", + "pt": 1, + "sh": true, + }, + "value": 2835871038, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Scarecrow Dog", + "pt": 2, + "sh": true, + }, + "value": 5276678729, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Elephant", + "sh": true, + }, + "value": 18377, + }, + { + "category": "Pet", + "configData": { + "id": "Alien Octopus", + "pt": 1, + }, + "value": 567, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Lucki Chest Mimic", + "pt": 2, + }, + "value": 15913543352, + }, + { + "category": "Pet", + "configData": { + "id": "Googly Corgi", + "sh": true, + }, + "value": 8566433, + }, + { + "category": "Pet", + "configData": { + "id": "Horseshoe Capybara", + "pt": 1, + "sh": true, + }, + "value": 16876, + }, + { + "category": "Pet", + "configData": { + "id": "Buff Doge", + "sh": true, + }, + "value": 9968050, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Leprechaun Kitsune", + "pt": 1, + }, + "value": 8533626832, + }, + { + "category": "Pet", + "configData": { + "id": "Flowers Fox", + }, + "value": 99, + }, + { + "category": "Pet", + "configData": { + "id": "UV Cat", + "pt": 1, + }, + "value": 3058, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shattered Heart Agony", + "pt": 1, + "sh": true, + }, + "value": 1686885276, + }, + { + "category": "Pet", + "configData": { + "id": "Phantom Wolf", + }, + "value": 60443, + }, + { + "category": "Pet", + "configData": { + "id": "Figgy Fox", + "sh": true, + }, + "value": 5519, + }, + { + "category": "Pet", + "configData": { + "id": "Flex Tiger", + "pt": 2, + "sh": true, + }, + "value": 836428643, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Dominus", + }, + "value": 6512, + }, + { + "category": "Pet", + "configData": { + "id": "Player Panda", + "pt": 2, + }, + "value": 16112, + }, + { + "category": "Pet", + "configData": { + "id": "Alien Arachnid", + }, + "value": 130, + }, + { + "category": "Pet", + "configData": { + "id": "Huge King Cobra", + "pt": 1, + }, + "value": 183773441, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Wolf", + "pt": 1, + }, + "value": 64991, + }, + { + "category": "Pet", + "configData": { + "id": "Abyss Carbuncle", + "pt": 1, + }, + "value": 36262, + }, + { + "category": "Pet", + "configData": { + "id": "Plushie Elephant", + "pt": 2, + }, + "value": 1607, + }, + { + "category": "Pet", + "configData": { + "id": "Blurred Bear Ball", + "pt": 1, + "sh": true, + }, + "value": 143891, + }, + { + "category": "Pet", + "configData": { + "id": "Stargazing Bear", + "sh": true, + }, + "value": 9691687, + }, + { + "category": "Pet", + "configData": { + "id": "Bunny", + "pt": 1, + }, + "value": 30, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stealth Bobcat", + "pt": 1, + "sh": true, + }, + "value": 4426555255, + }, + { + "category": "Pet", + "configData": { + "id": "Icy Phoenix", + "pt": 1, + "sh": true, + }, + "value": 118092, + }, + { + "category": "Pet", + "configData": { + "id": "Fragmented Golem", + "pt": 2, + }, + "value": 1586748, + }, + { + "category": "Card", + "configData": { + "id": "Super Seal Card", + "pt": 2, + "sh": true, + }, + "value": 153373600, + }, + { + "category": "Pet", + "configData": { + "id": "Basketball Monkey", + "pt": 2, + }, + "value": 15431, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Celestial Dragon", + "sh": true, + }, + "value": 12409820842, + }, + { + "category": "Pet", + "configData": { + "id": "Leprechaun Cat", + "pt": 2, + "sh": true, + }, + "value": 1107, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Goblin", + "pt": 1, + "sh": true, + }, + "value": 493865245, + }, + { + "category": "Pet", + "configData": { + "id": "Rock Monkey", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Mole", + "pt": 1, + }, + "value": 602, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Golem", + "pt": 2, + "sh": true, + }, + "value": 3941640899, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Goblin", + "pt": 1, + "sh": true, + }, + "value": 1663227912, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holographic Monkey", + "pt": 2, + }, + "value": 5213437986, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Lamb", + "pt": 1, + }, + "value": 1686, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Horseshoe Capybara", + "sh": true, + }, + "value": 14651332112, + }, + { + "category": "Pet", + "configData": { + "id": "Junkyard Hound Ball", + "sh": true, + }, + "value": 896, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Pegasus", + "pt": 1, + }, + "value": 66, + }, + { + "category": "Pet", + "configData": { + "id": "Bunny", + "pt": 1, + "sh": true, + }, + "value": 900144, + }, + { + "category": "Pet", + "configData": { + "id": "Baseball Dolphin", + "pt": 1, + "sh": true, + }, + "value": 164, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mantis Shrimp", + "pt": 2, + }, + "value": 196177572, + }, + { + "category": "Pet", + "configData": { + "id": "Chick", + "pt": 2, + "sh": true, + }, + "value": 202112, + }, + { + "category": "Pet", + "configData": { + "id": "Chick", + "pt": 1, + "sh": true, + }, + "value": 3000, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Axolotl", + }, + "value": 17988, + }, + { + "category": "Pet", + "configData": { + "id": "Chick", + "sh": true, + }, + "value": 2292, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Dolphin", + }, + "value": 4075, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Wolf", + "sh": true, + }, + "value": 622408355, + }, + { + "category": "Pet", + "configData": { + "id": "The Easter Bunny", + }, + "value": 53, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Graffiti Raccoon", + "pt": 1, + }, + "value": 174197462, + }, + { + "category": "Pet", + "configData": { + "id": "Hacker Cat", + }, + "value": 53, + }, + { + "category": "Pet", + "configData": { + "id": "Sailor Seal", + "pt": 2, + "sh": true, + }, + "value": 239, + }, + { + "category": "Pet", + "configData": { + "id": "Scorpion", + "sh": true, + }, + "value": 471, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Lucki Chest Mimic", + "sh": true, + }, + "value": 17711156228, + }, + { + "category": "Pet", + "configData": { + "id": "Boxing Elephant", + "sh": true, + }, + "value": 178039, + }, + { + "category": "Pet", + "configData": { + "id": "Glow Worm", + "pt": 1, + "sh": true, + }, + "value": 20000, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Minotaur", + "pt": 1, + }, + "value": 37594, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Phoenix", + "pt": 1, + "sh": true, + }, + "value": 312126470, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Phoenix", + "pt": 2, + "sh": true, + }, + "value": 2451315691, + }, + { + "category": "Pet", + "configData": { + "id": "Chocolate Dog", + }, + "value": 2633, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Beaver", + "pt": 2, + "sh": true, + }, + "value": 1536109400, + }, + { + "category": "Pet", + "configData": { + "id": "Demon Cyclops", + "sh": true, + }, + "value": 78157, + }, + { + "category": "Pet", + "configData": { + "id": "Paintbot Spider", + "pt": 1, + "sh": true, + }, + "value": 1294, + }, + { + "category": "Pet", + "configData": { + "id": "Dalmatian", + "pt": 2, + "sh": true, + }, + "value": 36611, + }, + { + "category": "Pet", + "configData": { + "id": "Dalmatian", + "pt": 2, + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Dalmatian", + "sh": true, + }, + "value": 202637, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Plague Dragon", + "pt": 2, + "sh": true, + }, + "value": 3742436784, + }, + { + "category": "Card", + "configData": { + "id": "Huge Hubert Card", + "sh": true, + }, + "value": 497991413, + }, + { + "category": "Pet", + "configData": { + "id": "Happy Cyclops", + "pt": 1, + "sh": true, + }, + "value": 347, + }, + { + "category": "Pet", + "configData": { + "id": "Pineapple Dog", + "pt": 2, + "sh": true, + }, + "value": 9206, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Dragon", + }, + "value": 4634, + }, + { + "category": "Pet", + "configData": { + "id": "Vibrant Cobra", + "pt": 1, + }, + "value": 79130, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Toy Duck", + "pt": 1, + "sh": true, + }, + "value": 6292125440, + }, + { + "category": "Pet", + "configData": { + "id": "Dragon", + "pt": 2, + }, + "value": 15469, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shadow Griffin", + "pt": 1, + }, + "value": 301452771, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Horse", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Card", + "configData": { + "id": "Sensei Penguin Card", + "pt": 2, + }, + "value": 5574551, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Midnight Zebra", + "sh": true, + }, + "value": 1087894697, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Dino", + "pt": 1, + "sh": true, + }, + "value": 2415668439, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Cow", + }, + "value": 189, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightmare Kraken", + "pt": 2, + }, + "value": 5795154513, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Alien", + "pt": 2, + }, + "value": 1658, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Deer", + "pt": 2, + "sh": true, + }, + "value": 2238616272, + }, + { + "category": "Pet", + "configData": { + "id": "Valkyrie Dragon", + "sh": true, + }, + "value": 14261964, + }, + { + "category": "Pet", + "configData": { + "id": "Storm Axolotl Ball", + "sh": true, + }, + "value": 1312, + }, + { + "category": "Pet", + "configData": { + "id": "Snowflake Pegasus", + "pt": 1, + }, + "value": 1319449, + }, + { + "category": "Pet", + "configData": { + "id": "Robber Goblin", + "pt": 1, + }, + "value": 1532, + }, + { + "category": "Pet", + "configData": { + "id": "Graffiti Dino", + "sh": true, + }, + "value": 326, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Wolf", + "pt": 1, + }, + "value": 64831552, + }, + { + "category": "Pet", + "configData": { + "id": "Sunflower Lion", + "pt": 2, + }, + "value": 625, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Dragon", + "pt": 1, + "sh": true, + }, + "value": 12518976000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Lamb", + "pt": 1, + "sh": true, + }, + "value": 544811868, + }, + { + "category": "Pet", + "configData": { + "id": "Tiki Dominus", + "pt": 2, + "sh": true, + }, + "value": 969830, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Boxing Elephant", + "sh": true, + }, + "value": 1146736148, + }, + { + "category": "Consumable", + "configData": { + "id": "Factory Coins Booster", + "tn": 3, + }, + "value": 347297269, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Horseshoe Capybara", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Axolotl", + "pt": 2, + }, + "value": 9200, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Candycane", + "pt": 1, + "sh": true, + }, + "value": 3786711183, + }, + { + "category": "Pet", + "configData": { + "id": "Avenging Griffin", + "sh": true, + }, + "value": 668, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Bull", + "pt": 1, + }, + "value": 649, + }, + { + "category": "Pet", + "configData": { + "id": "Avenging Griffin", + "pt": 1, + }, + "value": 1107, + }, + { + "category": "Pet", + "configData": { + "id": "Desert Cat", + "pt": 1, + }, + "value": 1587, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Turtle", + "pt": 1, + }, + "value": 22109, + }, + { + "category": "Pet", + "configData": { + "id": "Pirate Cat", + "pt": 1, + }, + "value": 201, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elemental Phoenix", + "pt": 2, + "sh": true, + }, + "value": 3247286200, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Troll", + "pt": 1, + "sh": true, + }, + "value": 1621020123, + }, + { + "category": "Pet", + "configData": { + "id": "Mummy Bunny", + "pt": 1, + "sh": true, + }, + "value": 2431226, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chocolate Bunny", + "pt": 1, + "sh": true, + }, + "value": 442729999, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Leprechaun Kitsune", + "pt": 2, + }, + "value": 30315749566, + }, + { + "category": "Pet", + "configData": { + "id": "Abstract Dominus", + "pt": 2, + }, + "value": 2939662, + }, + { + "category": "Card", + "configData": { + "id": "Super Axolotl Card", + "pt": 2, + }, + "value": 4608678, + }, + { + "category": "Pet", + "configData": { + "id": "Garden Cat", + }, + "value": 28, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Dragon", + }, + "value": 23862, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Leprechaun Kitsune", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Atlantean Orca", + "pt": 2, + "sh": true, + }, + "value": 892149813, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Bunny", + "pt": 1, + }, + "value": 1783, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Cow", + "pt": 2, + }, + "value": 49536, + }, + { + "category": "Pet", + "configData": { + "id": "Parrot", + "pt": 2, + "sh": true, + }, + "value": 9768, + }, + { + "category": "Pet", + "configData": { + "id": "Robot Bee", + "sh": true, + }, + "value": 1775, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bluebird", + "pt": 2, + "sh": true, + }, + "value": 2270981145, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Horse", + "pt": 2, + "sh": true, + }, + "value": 2851210920, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Floatie Penguin", + "pt": 2, + }, + "value": 1555719597, + }, + { + "category": "Pet", + "configData": { + "id": "Leprechaun Cat", + "pt": 1, + "sh": true, + }, + "value": 87, + }, + { + "category": "Pet", + "configData": { + "id": "Dark Fox", + "pt": 2, + }, + "value": 280, + }, + { + "category": "Pet", + "configData": { + "id": "Golf Griffin", + "pt": 2, + }, + "value": 869, + }, + { + "category": "Pet", + "configData": { + "id": "Axolotuus", + "pt": 2, + }, + "value": 2857, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Horseshoe Capybara", + "pt": 1, + "sh": true, + }, + "value": 32527440228, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Prickly Panda", + "pt": 1, + }, + "value": 7115744404, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Wolf", + "pt": 1, + "sh": true, + }, + "value": 8324, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Bunny", + "sh": true, + }, + "value": 51309, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Lucki Chest Mimic", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Nutcracker Bunny", + "sh": true, + }, + "value": 7095, + }, + { + "category": "Pet", + "configData": { + "id": "Atlantean Orca", + "sh": true, + }, + "value": 15469109, + }, + { + "category": "Pet", + "configData": { + "id": "Orange Squirrel", + "pt": 2, + "sh": true, + }, + "value": 472, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Fox", + "pt": 2, + }, + "value": 217960, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Dragon", + "sh": true, + }, + "value": 7496, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Goat", + "sh": true, + }, + "value": 2164, + }, + { + "category": "Pet", + "configData": { + "id": "Molten Werelynx", + "sh": true, + }, + "value": 1806, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Arcade Cat", + "pt": 2, + }, + "value": 5457441627, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Chest Mimic", + "sh": true, + }, + "value": 23719493, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Atlantean Orca", + "pt": 2, + }, + "value": 3129135851, + }, + { + "category": "Pet", + "configData": { + "id": "Unicorn Kitten", + "pt": 1, + }, + "value": 289, + }, + { + "category": "Pet", + "configData": { + "id": "Lumi Axolotl", + "sh": true, + }, + "value": 2134262, + }, + { + "category": "Pet", + "configData": { + "id": "Gem Mole", + }, + "value": 5041, + }, + { + "category": "Pet", + "configData": { + "id": "Meteor Mole", + "pt": 2, + }, + "value": 673, + }, + { + "category": "Pet", + "configData": { + "id": "Griffin", + "pt": 1, + }, + "value": 172, + }, + { + "category": "Pet", + "configData": { + "id": "Minecart Piggy", + "pt": 1, + }, + "value": 3107, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Angelus", + "pt": 2, + "sh": true, + }, + "value": 298816406, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Leopard", + }, + "value": 311, + }, + { + "category": "Pet", + "configData": { + "id": "UV Kitsune Ball", + "pt": 1, + "sh": true, + }, + "value": 56046, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Signature BIG Maskot Card", + "pt": 1, + }, + "value": 3920159073, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Unicorn Ball", + "pt": 2, + "sh": true, + }, + "value": 2059, + }, + { + "category": "Pet", + "configData": { + "id": "Meteor Mole", + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Blossom Spirit", + "pt": 2, + "sh": true, + }, + "value": 255267912, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glass Crocodile", + "pt": 2, + "sh": true, + }, + "value": 10090998532, + }, + { + "category": "Pet", + "configData": { + "id": "Wishing Dragon", + "pt": 2, + }, + "value": 9221531, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Werewolf", + "sh": true, + }, + "value": 1755, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Snail", + "pt": 2, + }, + "value": 20225, + }, + { + "category": "Pet", + "configData": { + "id": "Parrot", + "pt": 1, + "sh": true, + }, + "value": 100639, + }, + { + "category": "Pet", + "configData": { + "id": "Parrot", + "sh": true, + }, + "value": 5817, + }, + { + "category": "Pet", + "configData": { + "id": "Safari Dog", + "sh": true, + }, + "value": 1528, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Zombie Pig", + "pt": 2, + "sh": true, + }, + "value": 11648000000, + }, + { + "category": "Pet", + "configData": { + "id": "Playful Seal", + "pt": 2, + }, + "value": 2315899, + }, + { + "category": "Pet", + "configData": { + "id": "Puma", + "pt": 1, + }, + "value": 151297, + }, + { + "category": "Pet", + "configData": { + "id": "Divinus", + "pt": 1, + }, + "value": 3585, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Meebo in a Spaceship", + "sh": true, + }, + "value": 10660, + }, + { + "category": "Pet", + "configData": { + "id": "Sailor Shark", + "pt": 1, + }, + "value": 245, + }, + { + "category": "Pet", + "configData": { + "id": "Scary Corgi", + "sh": true, + }, + "value": 1207, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Penguin", + "sh": true, + }, + "value": 1114229802, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Totem Cat", + "pt": 2, + "sh": true, + }, + "value": 6043840000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rainbow Slime", + "pt": 1, + "sh": true, + }, + "value": 1540132650, + }, + { + "category": "Pet", + "configData": { + "id": "Colorful Dragon", + "pt": 2, + }, + "value": 4008, + }, + { + "category": "Pet", + "configData": { + "id": "Torpedo Shepherd", + "pt": 1, + "sh": true, + }, + "value": 404, + }, + { + "category": "Pet", + "configData": { + "id": "Pumpkin Spice Cat", + }, + "value": 4523, + }, + { + "category": "Pet", + "configData": { + "id": "Hologram Tiger", + "sh": true, + }, + "value": 10062353, + }, + { + "category": "Pet", + "configData": { + "id": "Corrupt Skeleton", + "pt": 2, + "sh": true, + }, + "value": 205, + }, + { + "category": "Pet", + "configData": { + "id": "Demon Serpents", + "pt": 2, + "sh": true, + }, + "value": 8549, + }, + { + "category": "Pet", + "configData": { + "id": "Cowboy Dog", + "sh": true, + }, + "value": 10000, + }, + { + "category": "Pet", + "configData": { + "id": "Camel", + "pt": 2, + "sh": true, + }, + "value": 10000, + }, + { + "category": "Pet", + "configData": { + "id": "Fire Dog", + "pt": 1, + }, + "value": 414, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gleebo The Alien", + "sh": true, + }, + "value": 3758869983, + }, + { + "category": "Pet", + "configData": { + "id": "Domortuus", + "pt": 2, + }, + "value": 3915, + }, + { + "category": "Pet", + "configData": { + "id": "Sacred Boar", + "pt": 1, + }, + "value": 5560587, + }, + { + "category": "Pet", + "configData": { + "id": "Skunk", + "pt": 2, + }, + "value": 775, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Anteater", + "sh": true, + }, + "value": 1184, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Robot Ball", + "pt": 2, + "sh": true, + }, + "value": 1798413423, + }, + { + "category": "Pet", + "configData": { + "id": "Grass Bunny", + "pt": 2, + }, + "value": 4369, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Bear", + }, + "value": 197, + }, + { + "category": "Pet", + "configData": { + "id": "Color Ruins Parrot", + }, + "value": 91, + }, + { + "category": "Pet", + "configData": { + "id": "Glass Dominus", + "pt": 2, + "sh": true, + }, + "value": 1398658084, + }, + { + "category": "Pet", + "configData": { + "id": "Huge UV Cat", + "sh": true, + }, + "value": 278675663, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Yee-haw Cat", + "pt": 1, + "sh": true, + }, + "value": 43960000000, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Glass Squid", + }, + "value": 146932345775, + }, + { + "category": "Pet", + "configData": { + "id": "Atomic Monkey Ball", + "pt": 1, + }, + "value": 939, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Patchwork Teddy Bear", + "pt": 2, + }, + "value": 1660292756, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Hippomint", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Minecart Hamster", + "sh": true, + }, + "value": 88199, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Junkyard Hound", + "pt": 2, + }, + "value": 1288880988, + }, + { + "category": "Pet", + "configData": { + "id": "Lunar Fox", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Penguin", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Glass Blobfish", + "pt": 2, + }, + "value": 43624174418, + }, + { + "category": "Pet", + "configData": { + "id": "Pajamas Dog", + "sh": true, + }, + "value": 1326, + }, + { + "category": "Pet", + "configData": { + "id": "Starry Eye Bunny", + "pt": 1, + }, + "value": 1585, + }, + { + "category": "Pet", + "configData": { + "id": "Train Conductor Dog", + "sh": true, + }, + "value": 146, + }, + { + "category": "Pet", + "configData": { + "id": "Bleebo The Alien", + "pt": 2, + "sh": true, + }, + "value": 1686, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Present Cat", + }, + "value": 24686318454, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Atomic Forged Shark", + "pt": 1, + "sh": true, + }, + "value": 1729368253, + }, + { + "category": "Pet", + "configData": { + "id": "Flower Panda", + "pt": 1, + }, + "value": 591407, + }, + { + "category": "Tower", + "configData": { + "id": "Jetpack Cat", + }, + "value": 302182, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Dog", + "pt": 1, + }, + "value": 8984290, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Icy Phoenix", + "pt": 1, + }, + "value": 8352810131, + }, + { + "category": "Pet", + "configData": { + "id": "Horse", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Card", + "configData": { + "id": "Huge Arcane Dominus Card", + "pt": 1, + }, + "value": 71459637, + }, + { + "category": "Pet", + "configData": { + "id": "Broomstick Cat", + "sh": true, + }, + "value": 333, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Golem", + "pt": 1, + "sh": true, + }, + "value": 4767202833, + }, + { + "category": "Pet", + "configData": { + "id": "Zombie Corgi", + }, + "value": 485, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Neon Cat", + "sh": true, + }, + "value": 673077748, + }, + { + "category": "Pet", + "configData": { + "id": "Cloud Dog", + }, + "value": 280, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Owl", + "pt": 1, + }, + "value": 1224393, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Flex Tiger", + "pt": 2, + }, + "value": 779456863, + }, + { + "category": "Pet", + "configData": { + "id": "Seedling Squirrel", + "sh": true, + }, + "value": 7000251, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Dragon", + "sh": true, + }, + "value": 2563184256, + }, + { + "category": "Pet", + "configData": { + "id": "Huge UV Cat", + "pt": 1, + "sh": true, + }, + "value": 961786071, + }, + { + "category": "Pet", + "configData": { + "id": "Three Headed Dragon", + "sh": true, + }, + "value": 1786, + }, + { + "category": "Card", + "configData": { + "id": "Chill Axolotl Card", + "sh": true, + }, + "value": 9048, + }, + { + "category": "Pet", + "configData": { + "id": "Astronaut Cat Ball", + "pt": 2, + "sh": true, + }, + "value": 3186, + }, + { + "category": "Pet", + "configData": { + "id": "Sailor Narwhal", + }, + "value": 2082, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Corgi", + "sh": true, + }, + "value": 18197641, + }, + { + "category": "Tower", + "configData": { + "id": "Detective Bunny", + }, + "value": 12686, + }, + { + "category": "Pet", + "configData": { + "id": "Splash Angelus", + "pt": 1, + }, + "value": 7359, + }, + { + "category": "Pet", + "configData": { + "id": "Stargazing Wolf", + "sh": true, + }, + "value": 7066851, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Penguin", + "pt": 1, + "sh": true, + }, + "value": 559520211, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Error Cat", + "pt": 1, + "sh": true, + }, + "value": 1170866741, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shiba", + "pt": 2, + }, + "value": 24574400000, + }, + { + "category": "Pet", + "configData": { + "id": "Chroma Balloon Corgi", + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dino Dog", + "sh": true, + }, + "value": 193426967, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic North Pole Unicorn", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "cv": 3, + "id": "Huge Chroma Doodle Axolotl", + "pt": 2, + }, + "value": 355760173, + }, + { + "category": "Card", + "configData": { + "id": "Retro Bulldog Card", + "pt": 1, + "sh": true, + }, + "value": 203212, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Cocoa Cat", + }, + "value": 968, + }, + { + "category": "Pet", + "configData": { + "id": "Bat", + }, + "value": 59, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Dog", + "sh": true, + }, + "value": 1010, + }, + { + "category": "Pet", + "configData": { + "id": "Nutcracker Bunny", + "pt": 2, + "sh": true, + }, + "value": 806, + }, + { + "category": "Pet", + "configData": { + "id": "Lunar Deer", + }, + "value": 49, + }, + { + "category": "Pet", + "configData": { + "id": "Shimmering Fish", + }, + "value": 31, + }, + { + "category": "Card", + "configData": { + "id": "Retro Bulldog Card", + "sh": true, + }, + "value": 43574, + }, + { + "category": "Pet", + "configData": { + "id": "Huge White Tiger", + "pt": 2, + }, + "value": 4403666645, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Lucki Chest Mimic", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Otter", + "pt": 2, + }, + "value": 7941780079, + }, + { + "category": "Pet", + "configData": { + "id": "Vibrant Cobra", + "sh": true, + }, + "value": 3320, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Troll", + "sh": true, + }, + "value": 249, + }, + { + "category": "Pet", + "configData": { + "id": "Atomic Monkey Ball", + "sh": true, + }, + "value": 14312, + }, + { + "category": "Pet", + "configData": { + "id": "Nightfall Ram", + "sh": true, + }, + "value": 63967916, + }, + { + "category": "Pet", + "configData": { + "id": "Merry Manatee", + "pt": 1, + }, + "value": 1050, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pot of Gold Corgi", + "pt": 2, + }, + "value": 2311019602, + }, + { + "category": "Pet", + "configData": { + "id": "Hellhound", + "pt": 1, + }, + "value": 3880, + }, + { + "category": "Pet", + "configData": { + "id": "Astronaut Dog", + "pt": 2, + }, + "value": 200519233, + }, + { + "category": "Card", + "configData": { + "id": "Kung Fu Monkey Card", + "pt": 2, + }, + "value": 405040, + }, + { + "category": "Pet", + "configData": { + "id": "Polar Bear", + }, + "value": 488, + }, + { + "category": "Pet", + "configData": { + "id": "Pixie Squirrel", + "sh": true, + }, + "value": 803, + }, + { + "category": "Pet", + "configData": { + "id": "Valkyrie Dog", + "sh": true, + }, + "value": 9452182, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stargazing Axolotl", + "sh": true, + }, + "value": 782564173, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Poseidon Axolotl", + }, + "value": 52473981771, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Axolotl", + "pt": 1, + }, + "value": 1769, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Floppa", + }, + "value": 151839576701, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Peacock", + "pt": 1, + "sh": true, + }, + "value": 1525234659, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hoverboard Cat", + "pt": 1, + }, + "value": 327609819, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Seal", + "sh": true, + }, + "value": 463988, + }, + { + "category": "Pet", + "configData": { + "id": "Soul Dragon", + "sh": true, + }, + "value": 26330173, + }, + { + "category": "Pet", + "configData": { + "id": "Irish Corgi", + "sh": true, + }, + "value": 7578, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Scorpion", + "pt": 2, + "sh": true, + }, + "value": 4782, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Scary Corgi", + "sh": true, + }, + "value": 13101056000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wild Galaxy Agony", + "pt": 1, + "sh": true, + }, + "value": 2117700768, + }, + { + "category": "Pet", + "configData": { + "id": "Apollo Raven", + "pt": 1, + }, + "value": 812806, + }, + { + "category": "Pet", + "configData": { + "id": "Retro Bulldog", + "pt": 1, + }, + "value": 604218, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Holographic Axolotl Ball", + "pt": 1, + }, + "value": 5142446041, + }, + { + "category": "Pet", + "configData": { + "id": "Figgy Fox", + }, + "value": 2935, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Infernus", + "pt": 1, + }, + "value": 70, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gecko", + "sh": true, + }, + "value": 396698691, + }, + { + "category": "Pet", + "configData": { + "id": "Atomic Axolotl", + "pt": 2, + }, + "value": 1488, + }, + { + "category": "Pet", + "configData": { + "id": "Basketball Cat", + "sh": true, + }, + "value": 32132, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pot of Gold Corgi", + "sh": true, + }, + "value": 9520436266, + }, + { + "category": "Pet", + "configData": { + "id": "Librarian Beaver", + "pt": 2, + }, + "value": 22951, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Hydra", + "pt": 1, + "sh": true, + }, + "value": 104381584936, + }, + { + "category": "Pet", + "configData": { + "id": "Tropical Flamingo", + "pt": 1, + "sh": true, + }, + "value": 8292480000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Happy Computer", + "pt": 2, + "sh": true, + }, + "value": 2063824559, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Bunny", + "pt": 2, + "sh": true, + }, + "value": 2698, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Hydra", + "pt": 2, + "sh": true, + }, + "value": 266567715, + }, + { + "category": "Pet", + "configData": { + "id": "Mossy Lamb", + "pt": 1, + }, + "value": 4780, + }, + { + "category": "Pet", + "configData": { + "id": "North Pole Unicorn", + "sh": true, + }, + "value": 8090, + }, + { + "category": "Pet", + "configData": { + "id": "UV Cat", + "sh": true, + }, + "value": 1031, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mech Dino", + "sh": true, + }, + "value": 318236638, + }, + { + "category": "Pet", + "configData": { + "id": "Pineapple Dog", + }, + "value": 500, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Corgi", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Axolotl", + "pt": 1, + "sh": true, + }, + "value": 8905221, + }, + { + "category": "Pet", + "configData": { + "id": "Cloud Penguin", + "sh": true, + }, + "value": 13611, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Starfall Dragon", + "pt": 1, + "sh": true, + }, + "value": 190000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Autumn Chest Mimic", + "pt": 1, + }, + "value": 47024, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Axolotl", + "pt": 2, + "sh": true, + }, + "value": 2024, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Helicopter", + "sh": true, + }, + "value": 5210204079, + }, + { + "category": "Pet", + "configData": { + "id": "Naughty Cat", + "sh": true, + }, + "value": 11633, + }, + { + "category": "Pet", + "configData": { + "id": "Good vs Evil Dragon", + "sh": true, + }, + "value": 12018, + }, + { + "category": "Pet", + "configData": { + "id": "Dark Lord", + "pt": 1, + }, + "value": 1603, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Agony", + "pt": 2, + "sh": true, + }, + "value": 4492096000, + }, + { + "category": "Pet", + "configData": { + "id": "Naughty Dominus", + "pt": 2, + "sh": true, + }, + "value": 510656655, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Dog", + "pt": 2, + }, + "value": 486680325, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Fairy", + "pt": 1, + }, + "value": 1910307, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Angelus", + "pt": 2, + }, + "value": 12482629, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Horse", + "pt": 2, + }, + "value": 1767, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Lamb", + "pt": 1, + }, + "value": 7162, + }, + { + "category": "Pet", + "configData": { + "id": "Dragonfruit Dragon", + "sh": true, + }, + "value": 20360790, + }, + { + "category": "Pet", + "configData": { + "id": "Wireframe Dog", + "sh": true, + }, + "value": 1071233, + }, + { + "category": "Pet", + "configData": { + "id": "Buff Doge", + "pt": 2, + "sh": true, + }, + "value": 441919008, + }, + { + "category": "Pet", + "configData": { + "id": "Soul Bat", + "pt": 2, + "sh": true, + }, + "value": 861489208, + }, + { + "category": "Pet", + "configData": { + "id": "Blue Fish", + "pt": 1, + }, + "value": 68279, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Butterfly", + "sh": true, + }, + "value": 394551805, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Bull", + "pt": 2, + }, + "value": 1349, + }, + { + "category": "Pet", + "configData": { + "id": "Rhino", + "pt": 1, + }, + "value": 374, + }, + { + "category": "Pet", + "configData": { + "id": "Scorpion", + "pt": 1, + }, + "value": 1668, + }, + { + "category": "Pet", + "configData": { + "id": "Skeleton Cat", + "pt": 2, + "sh": true, + }, + "value": 2298, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Empyrean Agony", + "pt": 1, + "sh": true, + }, + "value": 1958498878, + }, + { + "category": "Pet", + "configData": { + "id": "Old Wizard Owl", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Prickly Panda", + "sh": true, + }, + "value": 18461362258, + }, + { + "category": "Pet", + "configData": { + "id": "Wise Cat", + "pt": 1, + }, + "value": 53007, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Bear", + "pt": 1, + }, + "value": 4890, + }, + { + "category": "Pet", + "configData": { + "id": "Forged Robot", + }, + "value": 2488, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Lamb", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Card", + "configData": { + "id": "Wicked Agony Card", + "sh": true, + }, + "value": 747681, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glass Dominus", + "pt": 2, + "sh": true, + }, + "value": 8028263986, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Panda", + "pt": 2, + "sh": true, + }, + "value": 2834803111, + }, + { + "category": "Pet", + "configData": { + "id": "Mortuus", + "pt": 1, + }, + "value": 1738, + }, + { + "category": "Pet", + "configData": { + "id": "Gorilla", + "sh": true, + }, + "value": 302, + }, + { + "category": "Pet", + "configData": { + "id": "Silver Bison", + "pt": 2, + }, + "value": 3053, + }, + { + "category": "Pet", + "configData": { + "id": "Pajamas Dog", + "pt": 1, + "sh": true, + }, + "value": 3597, + }, + { + "category": "Pet", + "configData": { + "id": "Painted King Crab", + "pt": 1, + }, + "value": 551, + }, + { + "category": "Pet", + "configData": { + "id": "Quantum Griffin", + "pt": 1, + }, + "value": 344, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crystal Spider", + "sh": true, + }, + "value": 3838990070, + }, + { + "category": "Pet", + "configData": { + "id": "Piggy", + "pt": 1, + }, + "value": 84426, + }, + { + "category": "Pet", + "configData": { + "id": "Coconut Corgi", + "pt": 2, + }, + "value": 19744, + }, + { + "category": "Pet", + "configData": { + "id": "Jungle Golem", + "pt": 2, + "sh": true, + }, + "value": 2511825, + }, + { + "category": "Pet", + "configData": { + "id": "Monkey", + "pt": 1, + }, + "value": 121307, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Inferno Cat", + "pt": 1, + }, + "value": 8741247444, + }, + { + "category": "Pet", + "configData": { + "id": "Flying Piggy", + "pt": 2, + }, + "value": 796372, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chef Monkey", + "pt": 2, + "sh": true, + }, + "value": 5483450150, + }, + { + "category": "Pet", + "configData": { + "id": "Deer", + "sh": true, + }, + "value": 1278, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lit Cat", + "pt": 1, + "sh": true, + }, + "value": 885905472, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Snowman", + "sh": true, + }, + "value": 1536, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Turtle", + "pt": 1, + }, + "value": 2743, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pumpkin Spice Cat", + "pt": 1, + "sh": true, + }, + "value": 1800347541, + }, + { + "category": "Pet", + "configData": { + "id": "Fire Kitsune", + "pt": 2, + "sh": true, + }, + "value": 530638469, + }, + { + "category": "Pet", + "configData": { + "id": "Happy Cyclops", + "sh": true, + }, + "value": 57, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Rhino", + "pt": 2, + }, + "value": 16448, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bearserker", + "sh": true, + }, + "value": 780896287, + }, + { + "category": "Pet", + "configData": { + "id": "Marzipan Piggy", + "sh": true, + }, + "value": 5539, + }, + { + "category": "Pet", + "configData": { + "id": "Reaper Cat", + "sh": true, + }, + "value": 1135, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Cowboy Dog", + }, + "value": 139, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Comet Cyclops", + "sh": true, + }, + "value": 1136671511, + }, + { + "category": "Pet", + "configData": { + "id": "Cool Cat", + "pt": 2, + "sh": true, + }, + "value": 1585095196, + }, + { + "category": "Pet", + "configData": { + "id": "Royal Cloud Corgi", + "sh": true, + }, + "value": 10859, + }, + { + "category": "Pet", + "configData": { + "id": "Glow Worm", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Robot Ball", + "sh": true, + }, + "value": 19810, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sea Dragon", + "pt": 2, + "sh": true, + }, + "value": 3108400000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Lion", + "pt": 2, + }, + "value": 449957533, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Snow Ram", + }, + "value": 2957, + }, + { + "category": "Pet", + "configData": { + "id": "Naughty Cat", + "pt": 1, + }, + "value": 664, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Bunny", + "pt": 1, + }, + "value": 149103, + }, + { + "category": "Pet", + "configData": { + "id": "Mortuus", + "sh": true, + }, + "value": 3004, + }, + { + "category": "Pet", + "configData": { + "id": "Scorpion", + "pt": 2, + "sh": true, + }, + "value": 18160, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Rhino", + }, + "value": 90279, + }, + { + "category": "Pet", + "configData": { + "id": "Plushie Elephant", + "pt": 1, + }, + "value": 2394, + }, + { + "category": "Pet", + "configData": { + "id": "Player Corgi", + "pt": 1, + }, + "value": 16045, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Dominus", + "sh": true, + }, + "value": 180548, + }, + { + "category": "Pet", + "configData": { + "id": "Armadillo", + "sh": true, + }, + "value": 400882, + }, + { + "category": "Pet", + "configData": { + "id": "White Bunny", + "pt": 1, + }, + "value": 10565, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Cat", + "sh": true, + }, + "value": 188323, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Nightfall Tiger", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Leafy Deer", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Dino", + "pt": 1, + }, + "value": 832, + }, + { + "category": "Pet", + "configData": { + "id": "Pixie Bee", + "pt": 1, + }, + "value": 4827889, + }, + { + "category": "Pet", + "configData": { + "id": "Red Panda", + "sh": true, + }, + "value": 1058, + }, + { + "category": "Pet", + "configData": { + "id": "Playful Seal", + "pt": 1, + }, + "value": 1186, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Player Fox", + "pt": 2, + "sh": true, + }, + "value": 1719442991, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Raccoon", + "pt": 1, + }, + "value": 194, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Unicorn", + "sh": true, + }, + "value": 2721, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Axolotl", + }, + "value": 1596, + }, + { + "category": "Pet", + "configData": { + "id": "Haxigator", + "pt": 1, + }, + "value": 2913, + }, + { + "category": "Pet", + "configData": { + "id": "Water Zebra", + }, + "value": 8272, + }, + { + "category": "Pet", + "configData": { + "id": "Blimp Dragon", + "sh": true, + }, + "value": 7617, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Cat", + "pt": 2, + "sh": true, + }, + "value": 1338582128, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Husky", + "pt": 2, + }, + "value": 891, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kaiju Sea Dragon", + "sh": true, + }, + "value": 639914405, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Red Panda", + "pt": 2, + }, + "value": 25000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Matryoshka Cat", + "pt": 2, + }, + "value": 42466187837, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cool Cat", + "pt": 2, + }, + "value": 2961791883, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bear", + "pt": 2, + }, + "value": 5519618697, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mummy Cow", + "pt": 2, + }, + "value": 5070770875, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Present Dragon", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Present Cat", + "pt": 1, + }, + "value": 485545, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Crown Corgi", + "pt": 2, + "sh": true, + }, + "value": 8866720000, + }, + { + "category": "Pet", + "configData": { + "id": "Sensei Penguin", + "pt": 1, + }, + "value": 47360000, + }, + { + "category": "Pet", + "configData": { + "id": "Candycane", + "sh": true, + }, + "value": 119991, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Corgi", + }, + "value": 66, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Immortuus", + "sh": true, + }, + "value": 27721, + }, + { + "category": "Pet", + "configData": { + "cv": 5, + "id": "Huge Chroma Tiger", + "sh": true, + }, + "value": 659258474, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blurred Bear Ball", + "pt": 1, + "sh": true, + }, + "value": 946397655, + }, + { + "category": "Tool", + "configData": { + "id": "Obsidian Pickaxe", + }, + "value": 827584, + }, + { + "category": "Pet", + "configData": { + "id": "Runic Wolf", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Basketball Retriever", + "pt": 2, + }, + "value": 6772688343, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Dino", + "sh": true, + }, + "value": 551133127, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Aura Dominus", + "pt": 2, + "sh": true, + }, + "value": 6322099200, + }, + { + "category": "Pet", + "configData": { + "id": "Black Hole Angelus", + "pt": 1, + }, + "value": 353317, + }, + { + "category": "Pet", + "configData": { + "id": "Flying Piggy", + "pt": 1, + }, + "value": 99529, + }, + { + "category": "Consumable", + "configData": { + "id": "Factory Damage Booster", + "tn": 3, + }, + "value": 15014374, + }, + { + "category": "Pet", + "configData": { + "id": "Husky", + "sh": true, + }, + "value": 3874, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Cyclops", + "sh": true, + }, + "value": 7216, + }, + { + "category": "Pet", + "configData": { + "id": "Teacher Cat", + "sh": true, + }, + "value": 3028746, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Owl", + }, + "value": 66868, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Cyclops", + "pt": 2, + }, + "value": 1593, + }, + { + "category": "Pet", + "configData": { + "id": "Train Conductor Dog", + "pt": 2, + }, + "value": 473, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Panda", + "pt": 1, + "sh": true, + }, + "value": 421988, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Safety Cat", + "pt": 2, + }, + "value": 2634636494, + }, + { + "category": "Card", + "configData": { + "id": "Red Balloon Panda Card", + "pt": 2, + "sh": true, + }, + "value": 11595593, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Raccoon", + "pt": 2, + }, + "value": 451840, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pastel Sock Bear", + "pt": 2, + }, + "value": 1137359624, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wild Galaxy Agony", + "sh": true, + }, + "value": 1481856052, + }, + { + "category": "Pet", + "configData": { + "id": "Encrusted Dragon", + }, + "value": 228, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kawaii Dragon", + "pt": 2, + }, + "value": 1537058813, + }, + { + "category": "Pet", + "configData": { + "id": "African Wild Dog", + "pt": 1, + }, + "value": 128437, + }, + { + "category": "Pet", + "configData": { + "id": "Seedling Squirrel", + "pt": 1, + }, + "value": 894, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bat", + "pt": 2, + "sh": true, + }, + "value": 3024143213, + }, + { + "category": "Pet", + "configData": { + "id": "Junkyard Bat", + "sh": true, + }, + "value": 366, + }, + { + "category": "Pet", + "configData": { + "id": "Rock Dog", + "pt": 1, + }, + "value": 321, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Meerkat", + "pt": 1, + }, + "value": 4145, + }, + { + "category": "Pet", + "configData": { + "id": "Skeleton Cat", + "pt": 1, + }, + "value": 186796, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Moth", + "sh": true, + }, + "value": 575, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Butterfly", + }, + "value": 173, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leprechaun Fox", + }, + "value": 19979445, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Golem", + }, + "value": 93104445, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Golem", + "pt": 1, + }, + "value": 127718826, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Golem", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Hydra", + }, + "value": 19582870, + }, + { + "category": "Pet", + "configData": { + "id": "Astronaut Cat Ball", + "sh": true, + }, + "value": 50013, + }, + { + "category": "Pet", + "configData": { + "id": "Basketball Corgi", + "sh": true, + }, + "value": 19203, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leprechaun Fox", + "pt": 1, + }, + "value": 20542293, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Irish Badger", + }, + "value": 20058332, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Irish Wolfhound", + }, + "value": 4729798645, + }, + { + "category": "Pet", + "configData": { + "id": "Abyss Carbuncle", + }, + "value": 219, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Golem", + "pt": 2, + }, + "value": 482347668, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Red Fluffy", + "pt": 2, + }, + "value": 1934840662, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Cow", + "pt": 2, + "sh": true, + }, + "value": 49125, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Enchanted Deer", + "pt": 1, + "sh": true, + }, + "value": 907868351, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Mucki", + }, + "value": 4716469575, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Hydra", + "pt": 1, + }, + "value": 24864390, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mucki", + }, + "value": 114371798, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Irish Badger", + "pt": 2, + }, + "value": 136462376, + }, + { + "category": "Pet", + "configData": { + "id": "Springy Axolotl", + }, + "value": 105, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Irish Badger", + "pt": 1, + }, + "value": 27279754, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Hydra", + "pt": 1, + "sh": true, + }, + "value": 330321802, + }, + { + "category": "Pet", + "configData": { + "id": "Jellyfish", + "sh": true, + }, + "value": 46954, + }, + { + "category": "Pet", + "configData": { + "id": "Meteor Mole", + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Sphinx", + "pt": 2, + "sh": true, + }, + "value": 14069, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Hydra", + "sh": true, + }, + "value": 123131721, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Irish Wolfhound", + "pt": 2, + }, + "value": 14838138189, + }, + { + "category": "Pet", + "configData": { + "id": "Atomic Monkey Ball", + "pt": 1, + "sh": true, + }, + "value": 117500, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leprechaun Fox", + "pt": 2, + }, + "value": 133238810, + }, + { + "category": "Pet", + "configData": { + "id": "Research Dog", + "pt": 1, + }, + "value": 597, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Irish Wolfhound", + "pt": 1, + }, + "value": 4970310776, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Mucki", + "pt": 1, + }, + "value": 5113108553, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Golem", + "sh": true, + }, + "value": 723215470, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Flex Fluffy Cat", + "pt": 2, + "sh": true, + }, + "value": 17807984000, + }, + { + "category": "Pet", + "configData": { + "id": "Abyss Carbuncle", + "pt": 2, + }, + "value": 4172, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Monkey", + "sh": true, + }, + "value": 243523, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Floppa", + "pt": 1, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Puurple Cat", + "sh": true, + }, + "value": 40520510, + }, + { + "category": "Pet", + "configData": { + "id": "Cheerful Yeti", + "pt": 2, + }, + "value": 78, + }, + { + "category": "Pet", + "configData": { + "cv": 3, + "id": "Huge Chroma Tiger", + "pt": 2, + }, + "value": 513290535, + }, + { + "category": "Pet", + "configData": { + "id": "Broomstick Corgi", + }, + "value": 10751, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Raccoon", + }, + "value": 157, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Hydra", + "pt": 2, + }, + "value": 147251004, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Safari Dog", + "sh": true, + }, + "value": 6603258444, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Raccoon", + "sh": true, + }, + "value": 13025, + }, + { + "category": "Pet", + "configData": { + "id": "Hacker Axolotl", + "sh": true, + }, + "value": 189, + }, + { + "category": "Pet", + "configData": { + "id": "Haxolotl", + "sh": true, + }, + "value": 174394, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mucki", + "pt": 2, + }, + "value": 1228389035, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Griffin", + "sh": true, + }, + "value": 28411, + }, + { + "category": "Pet", + "configData": { + "id": "Demolition Husky", + "pt": 2, + }, + "value": 12036, + }, + { + "category": "Pet", + "configData": { + "id": "Minecart Hamster", + "pt": 2, + "sh": true, + }, + "value": 552354660, + }, + { + "category": "Pet", + "configData": { + "id": "Horseshoe Crab", + "pt": 2, + "sh": true, + }, + "value": 112574, + }, + { + "category": "Pet", + "configData": { + "id": "Lunar Bat", + "pt": 2, + }, + "value": 1212258, + }, + { + "category": "Pet", + "configData": { + "id": "Love Corgi", + "pt": 1, + "sh": true, + }, + "value": 2550, + }, + { + "category": "Pet", + "configData": { + "id": "Painted Cat", + }, + "value": 160, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Bunny", + "pt": 1, + }, + "value": 1676, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vibrant Toucan", + "pt": 2, + "sh": true, + }, + "value": 3148878945, + }, + { + "category": "Pet", + "configData": { + "id": "Vampire Dragon", + "pt": 2, + "sh": true, + }, + "value": 12017, + }, + { + "category": "Pet", + "configData": { + "id": "Midnight Cat", + "sh": true, + }, + "value": 7470222, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Bee", + "pt": 2, + "sh": true, + }, + "value": 6160219499, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Sun Griffin", + "pt": 1, + }, + "value": 13319557135, + }, + { + "category": "Pet", + "configData": { + "id": "Pentangelus", + "sh": true, + }, + "value": 8571, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Snake", + "pt": 1, + }, + "value": 809, + }, + { + "category": "Pet", + "configData": { + "id": "Inkwell Wisp", + "pt": 1, + "sh": true, + }, + "value": 485, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Purple Dragon", + "sh": true, + }, + "value": 1090451235, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Squirrel", + }, + "value": 4410, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leprechaun Fox", + "sh": true, + }, + "value": 120764905, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leprechaun Fox", + "pt": 2, + "sh": true, + }, + "value": 2416515323, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Mucki", + "pt": 1, + "sh": true, + }, + "value": 24614321606, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Mucki", + "sh": true, + }, + "value": 18539394744, + }, + { + "category": "Pet", + "configData": { + "id": "Kawaii Tiger", + "pt": 1, + }, + "value": 1285, + }, + { + "category": "Pet", + "configData": { + "id": "Green Fish", + "sh": true, + }, + "value": 1702, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Irish Wolfhound", + "sh": true, + }, + "value": 17071793156, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Royal Peacock", + "pt": 1, + "sh": true, + }, + "value": 1062291594, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Snake", + "pt": 2, + }, + "value": 4902342, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mucki", + "pt": 1, + }, + "value": 593484119, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Wolf", + "pt": 1, + "sh": true, + }, + "value": 3504802689, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Bunny Ball", + "sh": true, + }, + "value": 2777, + }, + { + "category": "Pet", + "configData": { + "id": "Ducky", + "pt": 2, + }, + "value": 544, + }, + { + "category": "Card", + "configData": { + "id": "Ninja Snake Card", + "pt": 1, + "sh": true, + }, + "value": 696843, + }, + { + "category": "Pet", + "configData": { + "id": "Flower Panda", + "pt": 2, + }, + "value": 3199, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Dominus", + "pt": 1, + "sh": true, + }, + "value": 2371886, + }, + { + "category": "Pet", + "configData": { + "id": "Camel", + "sh": true, + }, + "value": 43308, + }, + { + "category": "Pet", + "configData": { + "id": "Sad Hamster", + "sh": true, + }, + "value": 19685016, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Dragon", + "sh": true, + }, + "value": 3358, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Piggy", + }, + "value": 43280, + }, + { + "category": "Pet", + "configData": { + "cv": 6, + "id": "Huge Chroma Phoenix", + "pt": 2, + "sh": true, + }, + "value": 21100000000, + }, + { + "category": "Pet", + "configData": { + "id": "Corn Cat", + "pt": 1, + "sh": true, + }, + "value": 6727, + }, + { + "category": "Pet", + "configData": { + "id": "Corn Cat", + "sh": true, + }, + "value": 235469, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Cat", + "pt": 2, + }, + "value": 5044, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Ninja Red Panda", + "pt": 1, + }, + "value": 674, + }, + { + "category": "Pet", + "configData": { + "id": "Jungle Golem", + }, + "value": 835, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Dog", + "sh": true, + }, + "value": 23247, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Dog", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leprechaun Fox", + "pt": 1, + "sh": true, + }, + "value": 344691703, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Griffin", + "pt": 1, + }, + "value": 1939800, + }, + { + "category": "Pet", + "configData": { + "cv": 2, + "id": "Huge Chroma Tiger", + "pt": 2, + }, + "value": 543670818, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Poinsettia Peacock", + "pt": 1, + "sh": true, + }, + "value": 1841336858, + }, + { + "category": "Pet", + "configData": { + "id": "Football Tiger", + "sh": true, + }, + "value": 2302, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Mucki", + "pt": 2, + }, + "value": 15152112793, + }, + { + "category": "Pet", + "configData": { + "id": "Toy Chest Mimic", + "pt": 1, + "sh": true, + }, + "value": 195678, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sage Axolotl", + "pt": 1, + "sh": true, + }, + "value": 4920850304, + }, + { + "category": "Pet", + "configData": { + "id": "Nine Eyed Lion", + "pt": 2, + }, + "value": 1440, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Serpents", + "pt": 1, + }, + "value": 74, + }, + { + "category": "Pet", + "configData": { + "id": "Dark Dragon", + "sh": true, + }, + "value": 23686, + }, + { + "category": "Pet", + "configData": { + "id": "Sacred Deer", + "pt": 1, + "sh": true, + }, + "value": 1406000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spectral Deer", + "pt": 1, + "sh": true, + }, + "value": 3697599800, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Cookie Cut Cat", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pastel Sock Dragon", + "sh": true, + }, + "value": 3165225303, + }, + { + "category": "Pet", + "configData": { + "id": "Reaper", + "pt": 1, + }, + "value": 1035, + }, + { + "category": "Pet", + "configData": { + "id": "Lunar Bat", + "sh": true, + }, + "value": 30292, + }, + { + "category": "Pet", + "configData": { + "id": "Astral Axolotl", + "pt": 2, + "sh": true, + }, + "value": 21101, + }, + { + "category": "Pet", + "configData": { + "id": "Tarantula", + "pt": 1, + }, + "value": 1826, + }, + { + "category": "Pet", + "configData": { + "id": "Bat", + "pt": 1, + }, + "value": 86, + }, + { + "category": "Card", + "configData": { + "id": "Hellhound Card", + "pt": 2, + "sh": true, + }, + "value": 116588, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Fawn", + }, + "value": 9106, + }, + { + "category": "Pet", + "configData": { + "id": "Abomination", + }, + "value": 8397, + }, + { + "category": "Pet", + "configData": { + "id": "Neon Dog", + "pt": 2, + }, + "value": 21592382, + }, + { + "category": "Pet", + "configData": { + "id": "Cheetah", + }, + "value": 29838, + }, + { + "category": "Pet", + "configData": { + "id": "Hacked Skeleton", + "pt": 2, + }, + "value": 622, + }, + { + "category": "Pet", + "configData": { + "id": "Squirrel", + "sh": true, + }, + "value": 615, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Dog", + "pt": 1, + }, + "value": 1933, + }, + { + "category": "Pet", + "configData": { + "id": "Gingerbread Cat", + "pt": 1, + }, + "value": 235049, + }, + { + "category": "Pet", + "configData": { + "id": "Reindeer Cat", + "pt": 1, + }, + "value": 479138, + }, + { + "category": "Pet", + "configData": { + "id": "Mossy Lamb", + "sh": true, + }, + "value": 3293, + }, + { + "category": "Pet", + "configData": { + "id": "Humble Hen", + "pt": 2, + }, + "value": 616322, + }, + { + "category": "Card", + "configData": { + "id": "Huge Arcade Dog Card", + "pt": 1, + "sh": true, + }, + "value": 121053158, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Griffin", + "pt": 2, + }, + "value": 3283, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Irish Badger", + "pt": 2, + "sh": true, + }, + "value": 3990455600, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Golem", + "pt": 1, + "sh": true, + }, + "value": 1345477628, + }, + { + "category": "Pet", + "configData": { + "id": "Midnight Axolotl", + "pt": 2, + "sh": true, + }, + "value": 10000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wishing Dragon", + "pt": 2, + }, + "value": 328358900, + }, + { + "category": "Pet", + "configData": { + "id": "Scribe Squirrel", + "pt": 2, + "sh": true, + }, + "value": 45143, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Corgi", + "sh": true, + }, + "value": 1701121003, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Kaiju Moth", + "sh": true, + }, + "value": 95120000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Irish Badger", + "pt": 1, + "sh": true, + }, + "value": 414346640, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Fawn", + "sh": true, + }, + "value": 301, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Tiger", + "pt": 1, + }, + "value": 3421, + }, + { + "category": "Card", + "configData": { + "id": "Chill Axolotl Card", + "pt": 1, + "sh": true, + }, + "value": 535182, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Persimmony Cricket", + "sh": true, + }, + "value": 700000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Balloon Cat", + "pt": 2, + "sh": true, + }, + "value": 280575462, + }, + { + "category": "Pet", + "configData": { + "id": "Tropical Parrot", + "sh": true, + }, + "value": 347361268, + }, + { + "category": "Pet", + "configData": { + "id": "Leprechaun Cat", + "pt": 1, + }, + "value": 5659, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Snowman", + "pt": 1, + }, + "value": 1633, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pirate Dog", + "pt": 2, + "sh": true, + }, + "value": 6886400000, + }, + { + "category": "Card", + "configData": { + "id": "Fancy Axolotl Card", + "sh": true, + }, + "value": 2297081, + }, + { + "category": "Pet", + "configData": { + "id": "Poofy Pixie", + "pt": 1, + "sh": true, + }, + "value": 150, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Imp", + "pt": 1, + "sh": true, + }, + "value": 97, + }, + { + "category": "Pet", + "configData": { + "id": "Dino Dog", + "pt": 1, + }, + "value": 19401, + }, + { + "category": "Pet", + "configData": { + "id": "Robot Bee", + "pt": 1, + }, + "value": 1739, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Snail", + "pt": 1, + }, + "value": 309, + }, + { + "category": "Pet", + "configData": { + "id": "Sailor Shark", + "sh": true, + }, + "value": 2377, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Inferno Cat", + "pt": 2, + }, + "value": 29089719161, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gingerbread Angelus", + "sh": true, + }, + "value": 24272000000, + }, + { + "category": "Card", + "configData": { + "id": "Huge Pog Cat Card", + "pt": 2, + "sh": true, + }, + "value": 3976384000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Bobcat", + "pt": 1, + }, + "value": 19572333106, + }, + { + "category": "Pet", + "configData": { + "id": "Cloud Bat", + "pt": 2, + }, + "value": 10575, + }, + { + "category": "Pet", + "configData": { + "id": "Rootkin Fox", + "pt": 1, + "sh": true, + }, + "value": 5600200, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Slasher Sloth", + "pt": 2, + "sh": true, + }, + "value": 637103872000, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Panda", + "pt": 2, + }, + "value": 33023953, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Sloth", + "sh": true, + }, + "value": 1019942946, + }, + { + "category": "Pet", + "configData": { + "id": "Runic Wolf", + "pt": 2, + }, + "value": 2348, + }, + { + "category": "Card", + "configData": { + "id": "Super Axolotl Card", + "pt": 2, + "sh": true, + }, + "value": 310737439, + }, + { + "category": "Pet", + "configData": { + "id": "Molten Gecko", + "pt": 1, + }, + "value": 1216, + }, + { + "category": "Pet", + "configData": { + "id": "Guilded Raven", + "pt": 1, + }, + "value": 189, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gingerbread Dragon", + "pt": 2, + }, + "value": 30719645357, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Comet Cyclops Ball", + "pt": 2, + }, + "value": 28401173236, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Agony", + "sh": true, + }, + "value": 190976, + }, + { + "category": "Pet", + "configData": { + "id": "Bejeweled Unicorn", + "sh": true, + }, + "value": 9516251, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Penguin", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Cow", + "pt": 2, + }, + "value": 28025, + }, + { + "category": "Pet", + "configData": { + "id": "Brain Ball", + "pt": 1, + }, + "value": 281, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Bee", + "pt": 2, + }, + "value": 1418, + }, + { + "category": "Pet", + "configData": { + "id": "Mortuus", + "pt": 2, + }, + "value": 273, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pineapple Dog", + "pt": 2, + }, + "value": 16076934739, + }, + { + "category": "Pet", + "configData": { + "id": "Demolition Cat", + "pt": 1, + }, + "value": 119, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Monkey", + "sh": true, + }, + "value": 1701905585, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Lucki Chest Mimic", + "pt": 1, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Beaver", + "pt": 2, + "sh": true, + }, + "value": 44432, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Raccoon", + "pt": 2, + "sh": true, + }, + "value": 1235625594, + }, + { + "category": "Pet", + "configData": { + "id": "Pog Shark", + }, + "value": 1540615, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Snake", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Boulder Boar", + "pt": 1, + }, + "value": 50234, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Super Coral Kraken", + }, + "value": 182299046528, + }, + { + "category": "Pet", + "configData": { + "id": "Super Seal", + "sh": true, + }, + "value": 9479322, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Toy Duck", + "pt": 2, + }, + "value": 396673740, + }, + { + "category": "Pet", + "configData": { + "id": "Vampire Bat", + "pt": 1, + }, + "value": 4366, + }, + { + "category": "Pet", + "configData": { + "cv": 2, + "id": "Huge Chroma Doodle Axolotl", + "pt": 2, + }, + "value": 1027483565, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Seal", + }, + "value": 269, + }, + { + "category": "Pet", + "configData": { + "id": "Tropical Flamingo", + "sh": true, + }, + "value": 3095303041, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Irish Badger", + "sh": true, + }, + "value": 125579678, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hacked Skeleton", + "pt": 2, + }, + "value": 4642216503, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hippo", + "pt": 1, + "sh": true, + }, + "value": 2703529984, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Grinch Cat", + "pt": 2, + }, + "value": 4715663387, + }, + { + "category": "Pet", + "configData": { + "id": "Huge King Cobra", + "pt": 1, + "sh": true, + }, + "value": 4000000000, + }, + { + "category": "Card", + "configData": { + "id": "Sensei Penguin Card", + "pt": 1, + }, + "value": 2002816, + }, + { + "category": "Pet", + "configData": { + "id": "Atlantean Dolphin", + "sh": true, + }, + "value": 18315648, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Super Tiger", + "pt": 2, + }, + "value": 1936514753, + }, + { + "category": "Pet", + "configData": { + "id": "Alien Arachnid", + "pt": 1, + "sh": true, + }, + "value": 1988, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gym Cat", + "sh": true, + }, + "value": 79525120000, + }, + { + "category": "Pet", + "configData": { + "id": "Love Corgi", + "pt": 2, + "sh": true, + }, + "value": 24759, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Axolotl", + "pt": 2, + }, + "value": 291549, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Corgi", + "pt": 1, + }, + "value": 23580034, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Monkey", + "pt": 2, + "sh": true, + }, + "value": 221403, + }, + { + "category": "Pet", + "configData": { + "id": "Unicorn Dragon", + "sh": true, + }, + "value": 13024308, + }, + { + "category": "Pet", + "configData": { + "id": "Tropical Toucan", + "pt": 2, + }, + "value": 341197025, + }, + { + "category": "Pet", + "configData": { + "id": "Blue BIG Maskot", + "pt": 1, + "sh": true, + }, + "value": 23589376, + }, + { + "category": "Pet", + "configData": { + "id": "Pixel Dragon", + "pt": 1, + "sh": true, + }, + "value": 6900800, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mucki", + "sh": true, + }, + "value": 2466889530, + }, + { + "category": "Pet", + "configData": { + "id": "Classic Dragon", + "pt": 2, + "sh": true, + }, + "value": 812824593, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiedye Axolotl", + "pt": 1, + "sh": true, + }, + "value": 2966614716, + }, + { + "category": "Pet", + "configData": { + "id": "Strawberry Cow Ball", + "pt": 1, + }, + "value": 3935, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Bat", + "pt": 1, + "sh": true, + }, + "value": 16103, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Grim Reaper", + "sh": true, + }, + "value": 900000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Axolotl", + "pt": 1, + "sh": true, + }, + "value": 2932840942, + }, + { + "category": "Pet", + "configData": { + "id": "Blurred Bear Ball", + "pt": 1, + }, + "value": 1338, + }, + { + "category": "Pet", + "configData": { + "id": "Sacred Deer", + "pt": 1, + }, + "value": 1591, + }, + { + "category": "Pet", + "configData": { + "id": "Ender Goat", + "sh": true, + }, + "value": 435, + }, + { + "category": "Pet", + "configData": { + "id": "Chimpanzee", + "pt": 1, + }, + "value": 232, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Dominus", + "pt": 1, + "sh": true, + }, + "value": 1094597, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Cat", + "pt": 2, + }, + "value": 251, + }, + { + "category": "Pet", + "configData": { + "id": "Sun Griffin", + "pt": 2, + }, + "value": 3568, + }, + { + "category": "Card", + "configData": { + "id": "Red Balloon Panda Card", + "pt": 1, + "sh": true, + }, + "value": 967564, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Scorpion", + "sh": true, + }, + "value": 3195, + }, + { + "category": "Pet", + "configData": { + "id": "Clown Cat", + "pt": 1, + }, + "value": 2092, + }, + { + "category": "Card", + "configData": { + "id": "Hydra Cat Card", + "pt": 1, + "sh": true, + }, + "value": 241477, + }, + { + "category": "Pet", + "configData": { + "id": "Fairy Grasshopper", + "pt": 2, + "sh": true, + }, + "value": 365182, + }, + { + "category": "Pet", + "configData": { + "id": "Coconut Corgi", + "sh": true, + }, + "value": 61328, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Bear", + "pt": 2, + }, + "value": 2776, + }, + { + "category": "Pet", + "configData": { + "id": "Nutcracker Squirrel", + "sh": true, + }, + "value": 35391, + }, + { + "category": "Pet", + "configData": { + "cv": 5, + "id": "Chroma Tiger", + }, + "value": 27890, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Dragon", + "pt": 1, + }, + "value": 3826, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Runebound Bobcat", + "pt": 1, + "sh": true, + }, + "value": 835000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Corgi", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Bear", + "pt": 2, + }, + "value": 27075, + }, + { + "category": "Pet", + "configData": { + "id": "Rose Cat", + "pt": 2, + }, + "value": 5523, + }, + { + "category": "Pet", + "configData": { + "id": "Bison", + }, + "value": 1135, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Bunny", + }, + "value": 38733, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Festive Walrus", + "pt": 2, + "sh": true, + }, + "value": 22000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Potion Poodle", + "sh": true, + }, + "value": 80786, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Autumn Red Panda", + "pt": 1, + "sh": true, + }, + "value": 5085591040, + }, + { + "category": "Card", + "configData": { + "id": "Chill Axolotl Card", + "pt": 2, + "sh": true, + }, + "value": 2341377, + }, + { + "category": "Pet", + "configData": { + "id": "Boulder Boar", + "pt": 2, + }, + "value": 32022, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Agony", + "sh": true, + }, + "value": 9967, + }, + { + "category": "Pet", + "configData": { + "id": "Sketch Dragon", + "sh": true, + }, + "value": 20333931, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Strawhat Tanuki", + "pt": 1, + "sh": true, + }, + "value": 3293120000, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Dominus", + "pt": 2, + }, + "value": 2572, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Masked Owl", + "pt": 2, + }, + "value": 2800460853, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Graffiti Raccoon", + "pt": 2, + }, + "value": 1592674426, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Obsidian Griffin", + "pt": 2, + "sh": true, + }, + "value": 10443740928, + }, + { + "category": "Pet", + "configData": { + "id": "Fish in a Bucket", + "sh": true, + }, + "value": 2230, + }, + { + "category": "Pet", + "configData": { + "id": "Painter Cat", + "pt": 1, + }, + "value": 549, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Axolotl", + }, + "value": 7614, + }, + { + "category": "Pet", + "configData": { + "id": "Ghoul Horse", + "pt": 1, + }, + "value": 70463, + }, + { + "category": "Card", + "configData": { + "id": "Pixel Dragon Card", + "pt": 2, + "sh": true, + }, + "value": 172962, + }, + { + "category": "Pet", + "configData": { + "id": "Ender Bunny", + }, + "value": 765, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rich Corgi", + "sh": true, + }, + "value": 214426189497, + }, + { + "category": "Pet", + "configData": { + "id": "Zeus Bull", + "pt": 2, + }, + "value": 26909, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Enchanted Dog", + "sh": true, + }, + "value": 1712019524, + }, + { + "category": "Pet", + "configData": { + "id": "Sun Angelus", + "pt": 1, + }, + "value": 6401, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Husky", + "sh": true, + }, + "value": 2125165515, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Dominus", + }, + "value": 370, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Baby Kitten", + "pt": 2, + "sh": true, + }, + "value": 3107879633, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Snake", + "pt": 2, + }, + "value": 1559, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bison", + "pt": 1, + "sh": true, + }, + "value": 176997820, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Corgi", + "pt": 2, + }, + "value": 5219, + }, + { + "category": "Pet", + "configData": { + "id": "Nightmare Bear", + "pt": 2, + "sh": true, + }, + "value": 608797584, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Snail", + "pt": 2, + "sh": true, + }, + "value": 910000, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Mining Dog", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Pineapple Dog", + "pt": 1, + }, + "value": 37309, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Dominus", + "pt": 2, + "sh": true, + }, + "value": 1069584001, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Penguin", + "pt": 2, + "sh": true, + }, + "value": 2937782677, + }, + { + "category": "Pet", + "configData": { + "id": "Floatie Cat", + "pt": 1, + "sh": true, + }, + "value": 3730, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Egg Chick", + "sh": true, + }, + "value": 1507175128, + }, + { + "category": "Pet", + "configData": { + "id": "Ooze Axolotl", + "sh": true, + }, + "value": 36499, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Corgi", + "pt": 1, + }, + "value": 8425021, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luau Cat", + "pt": 2, + }, + "value": 1204774976, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Axolotl Ball", + "sh": true, + }, + "value": 12412908, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Dog", + "pt": 2, + "sh": true, + }, + "value": 500, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Dragon", + "pt": 1, + }, + "value": 317, + }, + { + "category": "Pet", + "configData": { + "id": "Baseball Dolphin", + "sh": true, + }, + "value": 15092, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Husky", + "sh": true, + }, + "value": 153, + }, + { + "category": "Pet", + "configData": { + "id": "Ooze Corgi", + "pt": 1, + }, + "value": 7845460, + }, + { + "category": "Pet", + "configData": { + "id": "Ooze Corgi", + "pt": 2, + }, + "value": 20913, + }, + { + "category": "Pet", + "configData": { + "id": "Triceratops", + "pt": 2, + "sh": true, + }, + "value": 1258, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Mining Cat", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Buff Tiger", + "pt": 1, + }, + "value": 175000000, + }, + { + "category": "Pet", + "configData": { + "id": "Black Hole Kitsune", + "sh": true, + }, + "value": 21945824, + }, + { + "category": "Pet", + "configData": { + "id": "Amethyst Dragon", + "sh": true, + }, + "value": 18080811, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Agony", + "sh": true, + }, + "value": 1659734156, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Dominus", + "pt": 1, + }, + "value": 833, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Lion", + "sh": true, + }, + "value": 7163378, + }, + { + "category": "Pet", + "configData": { + "id": "Desert Cat", + "pt": 2, + }, + "value": 11148, + }, + { + "category": "Pet", + "configData": { + "id": "Autumn Chest Mimic", + "pt": 2, + }, + "value": 100300, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Penguin", + "pt": 1, + "sh": true, + }, + "value": 2101856, + }, + { + "category": "Pet", + "configData": { + "id": "Ghost Axolotl", + "pt": 2, + "sh": true, + }, + "value": 170821, + }, + { + "category": "Pet", + "configData": { + "id": "Kaiju Sea Dragon", + "pt": 2, + "sh": true, + }, + "value": 363930087, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Super Wolf", + "pt": 2, + }, + "value": 24645719927, + }, + { + "category": "Pet", + "configData": { + "id": "Ancient Dragon", + }, + "value": 8415, + }, + { + "category": "Pet", + "configData": { + "id": "Zombie Deer", + "pt": 2, + }, + "value": 9656, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Cupcake Pegasus Card", + "pt": 1, + }, + "value": 3082828694, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Angelus", + "pt": 2, + "sh": true, + }, + "value": 14023, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chroma Phoenix", + "pt": 2, + }, + "value": 340328183, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Crocodile", + "pt": 1, + "sh": true, + }, + "value": 1052, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Lucki Chest Mimic", + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Ooze Axolotl", + "pt": 2, + }, + "value": 6144, + }, + { + "category": "Pet", + "configData": { + "id": "Queen Slime", + "sh": true, + }, + "value": 5495, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Alienus", + }, + "value": 2583, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Abomination", + "pt": 1, + "sh": true, + }, + "value": 969966317, + }, + { + "category": "Pet", + "configData": { + "id": "Wizard Unicorn", + }, + "value": 844, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pastel Elephant", + "sh": true, + }, + "value": 300614828, + }, + { + "category": "Pet", + "configData": { + "id": "Wicked Agony", + "pt": 2, + "sh": true, + }, + "value": 97572980, + }, + { + "category": "Pet", + "configData": { + "id": "Brain", + "pt": 2, + }, + "value": 24148, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Parrot", + "pt": 2, + }, + "value": 748, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Puma", + }, + "value": 600, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Bunny Ball", + "pt": 2, + "sh": true, + }, + "value": 1329, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Angelus", + "sh": true, + }, + "value": 21995407, + }, + { + "category": "Pet", + "configData": { + "cv": 6, + "id": "Huge Chroma Doodle Axolotl", + }, + "value": 2517536989, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Agony", + "pt": 1, + }, + "value": 10345, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gorgon", + "pt": 2, + "sh": true, + }, + "value": 2965334973, + }, + { + "category": "Pet", + "configData": { + "id": "Cinnamon Bunny", + "pt": 1, + }, + "value": 12804, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Red Fluffy", + "sh": true, + }, + "value": 787978933, + }, + { + "category": "Pet", + "configData": { + "id": "Hacked Raccoon", + "sh": true, + }, + "value": 20200, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sticky Lamb", + "pt": 1, + "sh": true, + }, + "value": 801246198, + }, + { + "category": "Pet", + "configData": { + "id": "Jolly Cat", + "pt": 1, + }, + "value": 659, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mucki", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghost", + "pt": 2, + "sh": true, + }, + "value": 4712967697, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Axolotl", + }, + "value": 459, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fairy", + "pt": 2, + }, + "value": 2461667062, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dark Fox", + "pt": 1, + "sh": true, + }, + "value": 2235549972, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Hydra", + "pt": 2, + "sh": true, + }, + "value": 2053609326, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Avenging Griffin", + "pt": 2, + "sh": true, + }, + "value": 4866339757, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Devil Dominus", + "pt": 2, + "sh": true, + }, + "value": 7552864000, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Grim Reaper", + "pt": 2, + }, + "value": 830000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Hippomelon", + }, + "value": 662127258835, + }, + { + "category": "Pet", + "configData": { + "id": "M-B PROTOTYPE", + "pt": 2, + "sh": true, + }, + "value": 71874, + }, + { + "category": "Pet", + "configData": { + "id": "Sad Doge", + "pt": 2, + "sh": true, + }, + "value": 377153960890, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Raccoon", + "pt": 1, + }, + "value": 591, + }, + { + "category": "Pet", + "configData": { + "id": "Flowers Hedgehog", + "sh": true, + }, + "value": 13991, + }, + { + "category": "Pet", + "configData": { + "id": "Jungle Golem", + "pt": 1, + }, + "value": 75162, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chroma Lucky Block Mimic", + "sh": true, + }, + "value": 2874942151, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Squirrel", + "sh": true, + }, + "value": 8138, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Elephant", + "pt": 2, + "sh": true, + }, + "value": 2339012, + }, + { + "category": "Pet", + "configData": { + "id": "Demon Cyclops", + "pt": 1, + "sh": true, + }, + "value": 9484, + }, + { + "category": "Pet", + "configData": { + "id": "Cow", + "sh": true, + }, + "value": 202341, + }, + { + "category": "Pet", + "configData": { + "id": "Runebound Bobcat", + "pt": 2, + "sh": true, + }, + "value": 1338, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Cat", + "pt": 1, + }, + "value": 8058, + }, + { + "category": "Pet", + "configData": { + "id": "Beach Ball Monkey", + "pt": 2, + "sh": true, + }, + "value": 100776, + }, + { + "category": "Pet", + "configData": { + "id": "Immortuus", + "pt": 1, + "sh": true, + }, + "value": 12048896, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Phoenix", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Card", + "configData": { + "id": "Ninja Snake Card", + "sh": true, + }, + "value": 86699, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Yeti", + "pt": 2, + "sh": true, + }, + "value": 2236639800, + }, + { + "category": "Pet", + "configData": { + "cv": 3, + "id": "Huge Chroma Unicorn", + "pt": 2, + }, + "value": 3244673012, + }, + { + "category": "Pet", + "configData": { + "id": "Beach Ball Capybara", + "pt": 2, + }, + "value": 827, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Meebo in a Spaceship", + "sh": true, + }, + "value": 3022904909, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Walrus", + "sh": true, + }, + "value": 49214214, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Irish Wolfhound", + "pt": 1, + "sh": true, + }, + "value": 38162836127, + }, + { + "category": "Pet", + "configData": { + "id": "Pineapple Dog", + "pt": 1, + "sh": true, + }, + "value": 500, + }, + { + "category": "Pet", + "configData": { + "id": "Slasher Sloth", + "pt": 2, + "sh": true, + }, + "value": 221673997, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Maskot", + "pt": 1, + }, + "value": 410, + }, + { + "category": "Pet", + "configData": { + "id": "Dino Monkey", + "pt": 2, + }, + "value": 3078915, + }, + { + "category": "Pet", + "configData": { + "id": "Nutcracker Bunny", + "pt": 1, + "sh": true, + }, + "value": 777, + }, + { + "category": "Pet", + "configData": { + "id": "Glow Worm", + "pt": 2, + }, + "value": 1387, + }, + { + "category": "Pet", + "configData": { + "id": "Light Spirit", + "pt": 2, + "sh": true, + }, + "value": 378461133, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Griffin", + "pt": 1, + }, + "value": 295, + }, + { + "category": "Pet", + "configData": { + "id": "Mr. Love Cat", + "pt": 1, + }, + "value": 285, + }, + { + "category": "Pet", + "configData": { + "id": "Red Balloon Panda", + }, + "value": 11363, + }, + { + "category": "Pet", + "configData": { + "cv": 1, + "id": "Huge Chroma Unicorn", + "pt": 2, + }, + "value": 832466914, + }, + { + "category": "Pet", + "configData": { + "id": "Crash Dummy Noob", + "pt": 1, + "sh": true, + }, + "value": 47393, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blurred Bear Ball", + "pt": 2, + "sh": true, + }, + "value": 6700000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cow", + "sh": true, + }, + "value": 11052146893, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mosaic Lamb", + "pt": 1, + "sh": true, + }, + "value": 1012185147, + }, + { + "category": "Pet", + "configData": { + "id": "Minecart Piggy", + "sh": true, + }, + "value": 10836, + }, + { + "category": "Pet", + "configData": { + "id": "Storm Griffin", + "pt": 1, + "sh": true, + }, + "value": 4620, + }, + { + "category": "Pet", + "configData": { + "id": "Orange Axolotl", + "pt": 2, + "sh": true, + }, + "value": 77509388, + }, + { + "category": "Pet", + "configData": { + "id": "Chef Monkey", + "pt": 1, + "sh": true, + }, + "value": 52, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Totem Owl", + "pt": 2, + }, + "value": 110473600000, + }, + { + "category": "Pet", + "configData": { + "id": "Wireframe Cat", + "pt": 2, + "sh": true, + }, + "value": 820, + }, + { + "category": "Pet", + "configData": { + "id": "Queen Piggy", + "sh": true, + }, + "value": 1610, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Peacock", + "pt": 2, + }, + "value": 765135042, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Loveserker", + "pt": 1, + "sh": true, + }, + "value": 5284573463, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Cupcake Pegasus", + "pt": 2, + }, + "value": 323700403200, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Love Peacock", + "pt": 1, + "sh": true, + }, + "value": 800000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Meebo in a Spaceship", + "pt": 2, + "sh": true, + }, + "value": 4989079142, + }, + { + "category": "Pet", + "configData": { + "id": "Yin-Yang Bunny", + "sh": true, + }, + "value": 25265981, + }, + { + "category": "Pet", + "configData": { + "id": "Wild Fire Agony", + }, + "value": 26746, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Cat", + "pt": 2, + }, + "value": 12086, + }, + { + "category": "Pet", + "configData": { + "id": "A-36", + "pt": 1, + }, + "value": 1615, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Dog", + "pt": 1, + "sh": true, + }, + "value": 80616770, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Luchador Cat", + "pt": 2, + }, + "value": 34770198784, + }, + { + "category": "Pet", + "configData": { + "id": "Old Wizard Owl", + "pt": 2, + }, + "value": 171012619, + }, + { + "category": "Pet", + "configData": { + "id": "Cupcake Hamster", + "pt": 2, + "sh": true, + }, + "value": 890642, + }, + { + "category": "Pet", + "configData": { + "id": "M-B PROTOTYPE", + "pt": 1, + "sh": true, + }, + "value": 53681, + }, + { + "category": "Pet", + "configData": { + "id": "A-36", + "pt": 1, + "sh": true, + }, + "value": 15920, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Bunny", + }, + "value": 8101, + }, + { + "category": "Pet", + "configData": { + "id": "Ducky", + "pt": 1, + }, + "value": 243, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Egg Chick", + "pt": 1, + "sh": true, + }, + "value": 5628504320, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mining Robot", + "pt": 1, + "sh": true, + }, + "value": 528720000, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Axolotl", + "pt": 2, + "sh": true, + }, + "value": 1091, + }, + { + "category": "Pet", + "configData": { + "id": "Quantum Dominus", + }, + "value": 2443, + }, + { + "category": "Pet", + "configData": { + "id": "Flower Gecko", + "sh": true, + }, + "value": 1175, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Scribe Squirrel", + "pt": 2, + "sh": true, + }, + "value": 4071209599, + }, + { + "category": "Pet", + "configData": { + "id": "Kraken", + "pt": 1, + }, + "value": 698, + }, + { + "category": "Pet", + "configData": { + "id": "Quantum Tiger", + }, + "value": 14299, + }, + { + "category": "Card", + "configData": { + "id": "Nature Axolotl Card", + "pt": 2, + "sh": true, + }, + "value": 22478230, + }, + { + "category": "Pet", + "configData": { + "id": "Corrupt Cat", + "pt": 2, + }, + "value": 641, + }, + { + "category": "Pet", + "configData": { + "id": "Elemental Phoenix", + "pt": 2, + }, + "value": 26635, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Dolphin", + "sh": true, + }, + "value": 36641, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Clover", + }, + "value": 304340521, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Owl", + }, + "value": 203922832, + }, + { + "category": "Booth", + "configData": { + "id": "Clover", + }, + "value": 95533517, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Clover Owl", + }, + "value": 35106499343, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Owl", + "pt": 1, + }, + "value": 555310104, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Owl", + "pt": 2, + }, + "value": 2933526859, + }, + { + "category": "Pet", + "configData": { + "id": "Sage Axolotl", + }, + "value": 2641, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Wizard", + }, + "value": 967311, + }, + { + "category": "Pet", + "configData": { + "id": "Pentangelus", + "pt": 2, + "sh": true, + }, + "value": 15884, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fragmented Golem", + "pt": 2, + }, + "value": 1725304752, + }, + { + "category": "Pet", + "configData": { + "id": "Ladybug", + "sh": true, + }, + "value": 200001204, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pineapple Monkey", + "pt": 2, + "sh": true, + }, + "value": 4192866963, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Easter Golem", + "sh": true, + }, + "value": 498400000000, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Sock Dragon", + "pt": 2, + }, + "value": 1224, + }, + { + "category": "Pet", + "configData": { + "id": "Demon", + "pt": 1, + }, + "value": 67, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Cat", + "pt": 2, + }, + "value": 1058, + }, + { + "category": "Pet", + "configData": { + "id": "Forged Robot", + "pt": 2, + }, + "value": 13349, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lunar Moth", + "pt": 1, + "sh": true, + }, + "value": 2606630591, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Pony", + }, + "value": 56, + }, + { + "category": "Pet", + "configData": { + "id": "Ancient Dragon", + "pt": 2, + "sh": true, + }, + "value": 100000, + }, + { + "category": "Pet", + "configData": { + "id": "Green Cobra", + "pt": 2, + }, + "value": 5192, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Diamond Bunny", + "pt": 1, + }, + "value": 9466989828, + }, + { + "category": "Pet", + "configData": { + "id": "Poseidon Dog", + "pt": 1, + }, + "value": 8257621, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Unicorn Ball", + "pt": 1, + }, + "value": 788, + }, + { + "category": "Pet", + "configData": { + "id": "Rift Dragon", + "pt": 2, + "sh": true, + }, + "value": 539692800, + }, + { + "category": "Pet", + "configData": { + "id": "North Pole Unicorn", + "pt": 1, + "sh": true, + }, + "value": 1062, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Corgi", + "pt": 2, + }, + "value": 55640665, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Baby Piglet", + "pt": 1, + }, + "value": 342880406, + }, + { + "category": "Pet", + "configData": { + "id": "Anime Corgi", + "sh": true, + }, + "value": 14807745, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Ducky", + "pt": 1, + }, + "value": 43693, + }, + { + "category": "Pet", + "configData": { + "id": "Hologram Shark", + "pt": 2, + "sh": true, + }, + "value": 354889769, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Axolotl", + "sh": true, + }, + "value": 143788849227, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Husky", + "pt": 2, + }, + "value": 3262418658, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Monkey", + "sh": true, + }, + "value": 787525164, + }, + { + "category": "Pet", + "configData": { + "id": "Good vs Evil Dragon", + "pt": 1, + }, + "value": 10058, + }, + { + "category": "Pet", + "configData": { + "id": "Research Cat", + "pt": 1, + "sh": true, + }, + "value": 158, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Robot", + "pt": 2, + }, + "value": 1180756, + }, + { + "category": "Pet", + "configData": { + "id": "Albino Bat", + "sh": true, + }, + "value": 275, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Doll Cat", + "pt": 1, + "sh": true, + }, + "value": 66520000000, + }, + { + "category": "Pet", + "configData": { + "id": "Error Cat", + "sh": true, + }, + "value": 37056, + }, + { + "category": "Pet", + "configData": { + "id": "Pinecone Porcupine", + }, + "value": 46808, + }, + { + "category": "Pet", + "configData": { + "id": "Luau Cat", + "pt": 1, + }, + "value": 825, + }, + { + "category": "Pet", + "configData": { + "id": "Wild Frost Agony", + "pt": 1, + }, + "value": 28, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Griffin", + "pt": 2, + }, + "value": 9334, + }, + { + "category": "Pet", + "configData": { + "id": "Knight Cat", + "pt": 2, + }, + "value": 1827, + }, + { + "category": "Pet", + "configData": { + "id": "Floppa", + "pt": 2, + }, + "value": 46389411, + }, + { + "category": "Pet", + "configData": { + "id": "Dalmatian", + "pt": 1, + "sh": true, + }, + "value": 181280, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Crocodilo Brainrot", + "sh": true, + }, + "value": 28602486956, + }, + { + "category": "Pet", + "configData": { + "id": "Void Alien", + "pt": 2, + }, + "value": 22369, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Party Cat", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Plasma Bull", + }, + "value": 65714, + }, + { + "category": "Pet", + "configData": { + "id": "Kawaii Tiger", + "pt": 2, + "sh": true, + }, + "value": 3916835, + }, + { + "category": "Pet", + "configData": { + "id": "Blimp Dragon", + "pt": 2, + }, + "value": 1454, + }, + { + "category": "Pet", + "configData": { + "id": "Flamortuus", + "pt": 2, + "sh": true, + }, + "value": 17031, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Golem", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Inferno Cat", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Holiday Bearserker", + "pt": 2, + "sh": true, + }, + "value": 5301114535, + }, + { + "category": "Pet", + "configData": { + "id": "Train Conductor Dog", + "pt": 1, + }, + "value": 541, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guest Noob", + "pt": 2, + "sh": true, + }, + "value": 2072063980, + }, + { + "category": "Pet", + "configData": { + "id": "Husky", + "pt": 2, + }, + "value": 565, + }, + { + "category": "Pet", + "configData": { + "id": "Sentry Drake", + "sh": true, + }, + "value": 251925, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Yeti", + }, + "value": 754, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Kitsune", + "pt": 2, + "sh": true, + }, + "value": 595855, + }, + { + "category": "Pet", + "configData": { + "id": "Cupcake", + "pt": 2, + "sh": true, + }, + "value": 132030, + }, + { + "category": "Pet", + "configData": { + "id": "Junkyard Hound Ball", + "pt": 1, + "sh": true, + }, + "value": 3674120, + }, + { + "category": "Pet", + "configData": { + "id": "Bubble Hydra", + }, + "value": 834, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nice Cat", + "sh": true, + }, + "value": 16112480000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Teacher Cat", + "pt": 1, + }, + "value": 9027753346, + }, + { + "category": "Pet", + "configData": { + "id": "Pirate Parrot", + "sh": true, + }, + "value": 23427, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stunt Unicorn", + }, + "value": 18087032394, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Angelus", + "pt": 1, + }, + "value": 5966067507, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Guilded Raven", + "pt": 1, + "sh": true, + }, + "value": 15000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fairy", + "pt": 1, + "sh": true, + }, + "value": 6304668800, + }, + { + "category": "Pet", + "configData": { + "id": "M-2 PROTOTYPE", + "pt": 2, + "sh": true, + }, + "value": 310080, + }, + { + "category": "Pet", + "configData": { + "id": "Cupcake Unicorn", + "pt": 2, + "sh": true, + }, + "value": 32688, + }, + { + "category": "Pet", + "configData": { + "id": "Black Widow", + "sh": true, + }, + "value": 64000521, + }, + { + "category": "Pet", + "configData": { + "id": "Archivist Ferret", + "sh": true, + }, + "value": 700000, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Deer", + }, + "value": 13374, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kraken", + "pt": 1, + }, + "value": 1525227516, + }, + { + "category": "Pet", + "configData": { + "id": "Fragmented Golem", + }, + "value": 370927, + }, + { + "category": "Pet", + "configData": { + "id": "Ghoul Horse", + "pt": 2, + }, + "value": 413221, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shadow Griffin", + "pt": 2, + }, + "value": 4474418033, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Corgi", + "pt": 2, + }, + "value": 369, + }, + { + "category": "Pet", + "configData": { + "id": "Seal", + "sh": true, + }, + "value": 285, + }, + { + "category": "Pet", + "configData": { + "id": "Chimera", + "sh": true, + }, + "value": 3647, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Dog", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Mr Krabs", + "pt": 2, + "sh": true, + }, + "value": 164072440, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Magma Spirit", + }, + "value": 163267212755, + }, + { + "category": "Pet", + "configData": { + "id": "Luxe Axolotl", + "pt": 1, + }, + "value": 4482, + }, + { + "category": "Pet", + "configData": { + "id": "Hydra Cat", + "pt": 2, + }, + "value": 393701, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Red Wolf", + "pt": 2, + "sh": true, + }, + "value": 3862303399, + }, + { + "category": "Pet", + "configData": { + "id": "Comet Cyclops Ball", + }, + "value": 283547, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chameleon", + "pt": 2, + }, + "value": 2680183078, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soul Dragon", + "pt": 2, + }, + "value": 3413849585, + }, + { + "category": "Pet", + "configData": { + "id": "Celestial Dragon", + "pt": 2, + }, + "value": 105500534, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mantis Shrimp", + "pt": 2, + "sh": true, + }, + "value": 68507038527, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Yeti", + "pt": 1, + "sh": true, + }, + "value": 4515279885, + }, + { + "category": "Pet", + "configData": { + "id": "Bloo Cat", + "pt": 2, + "sh": true, + }, + "value": 31635872951, + }, + { + "category": "Pet", + "configData": { + "id": "Ocean Horse", + "pt": 2, + "sh": true, + }, + "value": 887202, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cartoon Demon", + "pt": 2, + }, + "value": 5315471573, + }, + { + "category": "Pet", + "configData": { + "id": "Skeleton", + "sh": true, + }, + "value": 14743, + }, + { + "category": "Pet", + "configData": { + "id": "Present Cat", + "sh": true, + }, + "value": 156259, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Hedgehog", + "pt": 1, + "sh": true, + }, + "value": 617, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Griffin", + "pt": 2, + "sh": true, + }, + "value": 2135820881, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Cardinal", + "pt": 1, + }, + "value": 652326, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Bunny", + "pt": 1, + "sh": true, + }, + "value": 2434524319, + }, + { + "category": "Pet", + "configData": { + "id": "Seal", + "pt": 1, + }, + "value": 269, + }, + { + "category": "Pet", + "configData": { + "id": "Stunt Corgi", + "pt": 2, + "sh": true, + }, + "value": 1755388, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Unicorn", + "pt": 2, + "sh": true, + }, + "value": 737, + }, + { + "category": "Pet", + "configData": { + "id": "Circuit Griffin", + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gingerbread Dragon", + "pt": 2, + }, + "value": 9786922658, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Panda", + "sh": true, + }, + "value": 90061, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wisp Deer", + "pt": 1, + }, + "value": 100000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Poseidon Axolotl", + "pt": 2, + }, + "value": 1174400000, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Bear", + "pt": 2, + "sh": true, + }, + "value": 3689, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Prickly Panda", + "pt": 2, + }, + "value": 28533438935, + }, + { + "category": "Pet", + "configData": { + "id": "Warrior Wolf", + "pt": 2, + }, + "value": 26208, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Ninja Panda", + "pt": 1, + }, + "value": 536, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crackling Dragon", + "pt": 1, + }, + "value": 3075026549, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Snake", + }, + "value": 162, + }, + { + "category": "Pet", + "configData": { + "id": "Pristine Poodle", + "pt": 1, + }, + "value": 213451, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Cupcake Pegasus Card", + }, + "value": 2809056384, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Axolotl", + "pt": 1, + "sh": true, + }, + "value": 124671919, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Warrior Beast", + "sh": true, + }, + "value": 297000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Arcade Angelus", + "pt": 1, + "sh": true, + }, + "value": 2675200000, + }, + { + "category": "Pet", + "configData": { + "cv": 6, + "id": "Chroma Phoenix", + }, + "value": 24362, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Cat", + "pt": 1, + "sh": true, + }, + "value": 128801724760, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Shark", + "pt": 1, + "sh": true, + }, + "value": 22036, + }, + { + "category": "Pet", + "configData": { + "id": "Astronaut Dog", + }, + "value": 4333, + }, + { + "category": "Pet", + "configData": { + "id": "404 Demon", + "pt": 2, + }, + "value": 875, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cupcake Unicorn", + "pt": 1, + }, + "value": 2085369477, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic M-14 PROTOTYPE", + "pt": 2, + }, + "value": 67815062891, + }, + { + "category": "Pet", + "configData": { + "id": "Hacker Cat", + "pt": 2, + }, + "value": 9053, + }, + { + "category": "Pet", + "configData": { + "id": "Immortuus", + "pt": 1, + }, + "value": 787, + }, + { + "category": "Pet", + "configData": { + "id": "Gingerbread Lion", + "pt": 1, + "sh": true, + }, + "value": 2020, + }, + { + "category": "Pet", + "configData": { + "id": "Stegosaurus", + "pt": 2, + "sh": true, + }, + "value": 350, + }, + { + "category": "Pet", + "configData": { + "id": "Orange Squirrel", + "sh": true, + }, + "value": 1401, + }, + { + "category": "Pet", + "configData": { + "id": "Gingerbread Lion", + "pt": 2, + }, + "value": 3157, + }, + { + "category": "Pet", + "configData": { + "id": "Puma", + "sh": true, + }, + "value": 113854, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Balloon Monkey", + "sh": true, + }, + "value": 16128000000, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Walrus", + }, + "value": 585, + }, + { + "category": "Pet", + "configData": { + "id": "Virus Griffin", + "pt": 2, + "sh": true, + }, + "value": 1356902400, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Agony", + "sh": true, + }, + "value": 1014, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Dragon", + "pt": 2, + "sh": true, + }, + "value": 12675200000, + }, + { + "category": "Pet", + "configData": { + "id": "Gingerbread Corgi", + "pt": 2, + }, + "value": 16303447, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Dog", + "pt": 1, + }, + "value": 57720, + }, + { + "category": "Pet", + "configData": { + "id": "Strawberry Cow", + "pt": 1, + }, + "value": 13456166, + }, + { + "category": "Pet", + "configData": { + "id": "Firefossil Wolf", + "pt": 1, + }, + "value": 190194, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Mushrooms", + "pt": 2, + }, + "value": 8072, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valentines Cat", + "pt": 2, + }, + "value": 1635110316, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Wolf", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valentines Dominus", + "pt": 2, + "sh": true, + }, + "value": 2000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Hypnotic Monkey", + "pt": 2, + }, + "value": 59264128000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Zeus Bear", + "sh": true, + }, + "value": 25361426118, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Icy Phoenix", + "pt": 2, + "sh": true, + }, + "value": 1896321874, + }, + { + "category": "Pet", + "configData": { + "id": "Painter Dog", + "pt": 1, + }, + "value": 636, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Jaguar", + "pt": 1, + }, + "value": 75, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chroma Doodle Axolotl", + "sh": true, + }, + "value": 342151087, + }, + { + "category": "Pet", + "configData": { + "id": "Fairy Moth", + "sh": true, + }, + "value": 1109270, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Stallion", + "pt": 1, + }, + "value": 2389, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Blobfish", + }, + "value": 2449941948, + }, + { + "category": "Pet", + "configData": { + "id": "Haxigator", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Irish Corgi", + "pt": 1, + }, + "value": 2620, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cool Cat", + "pt": 1, + }, + "value": 411389764, + }, + { + "category": "Pet", + "configData": { + "id": "Narwhal", + "pt": 1, + }, + "value": 787835, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Griffin", + "sh": true, + }, + "value": 8863620, + }, + { + "category": "Pet", + "configData": { + "id": "North Pole Wolf", + "sh": true, + }, + "value": 3268149, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Tiger", + "pt": 2, + "sh": true, + }, + "value": 7072170, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sapphire Phoenix", + "pt": 1, + "sh": true, + }, + "value": 90931039793, + }, + { + "category": "Pet", + "configData": { + "id": "Koi Fish", + "sh": true, + }, + "value": 2457, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Owl", + "pt": 1, + "sh": true, + }, + "value": 92510000000, + }, + { + "category": "Pet", + "configData": { + "id": "Seedling Squirrel", + "pt": 2, + }, + "value": 656, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Snow Globe Cat", + "sh": true, + }, + "value": 30680000000, + }, + { + "category": "Pet", + "configData": { + "id": "Matrix Monkey", + "pt": 1, + }, + "value": 18691, + }, + { + "category": "Pet", + "configData": { + "id": "Samurai Bull", + "sh": true, + }, + "value": 2273, + }, + { + "category": "Pet", + "configData": { + "id": "Dark Lord", + "sh": true, + }, + "value": 18857, + }, + { + "category": "Card", + "configData": { + "id": "Huge Blurred Axolotl Card", + "pt": 1, + "sh": true, + }, + "value": 668302924, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Safari Dog", + "pt": 2, + }, + "value": 9315243471, + }, + { + "category": "Pet", + "configData": { + "id": "Ember Vulture", + "sh": true, + }, + "value": 112, + }, + { + "category": "Pet", + "configData": { + "id": "Leprechaun Dog", + "pt": 1, + "sh": true, + }, + "value": 37639, + }, + { + "category": "Pet", + "configData": { + "id": "Bubble Hydra", + "pt": 2, + "sh": true, + }, + "value": 12277, + }, + { + "category": "Pet", + "configData": { + "id": "Pajamas Cat", + }, + "value": 23663, + }, + { + "category": "Pet", + "configData": { + "id": "Sandcastle Kraken", + "sh": true, + }, + "value": 3914, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Tiger", + "pt": 1, + }, + "value": 6891034, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Corgi", + "pt": 2, + "sh": true, + }, + "value": 3188800000, + }, + { + "category": "Pet", + "configData": { + "id": "Blue BIG Maskot", + "pt": 2, + }, + "value": 2064205, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Yeti", + "sh": true, + }, + "value": 1586655355, + }, + { + "category": "Pet", + "configData": { + "id": "Lifeguard Shark", + "sh": true, + }, + "value": 33791067, + }, + { + "category": "Pet", + "configData": { + "id": "Cow", + "pt": 1, + }, + "value": 861528, + }, + { + "category": "Pet", + "configData": { + "id": "Corrupt Octopus", + "pt": 2, + "sh": true, + }, + "value": 832, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Dragon", + "pt": 2, + }, + "value": 602404725, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Dominus Darkwing", + "pt": 1, + }, + "value": 195808922659, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Dragon", + }, + "value": 652, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Turtle", + "pt": 1, + "sh": true, + }, + "value": 2821, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snowman", + "pt": 2, + }, + "value": 7143331841, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Huge Chroma Tiger", + "sh": true, + }, + "value": 749054694, + }, + { + "category": "Pet", + "configData": { + "id": "Cheetah", + "sh": true, + }, + "value": 412, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Jaguar", + "pt": 2, + "sh": true, + }, + "value": 4350056411, + }, + { + "category": "Pet", + "configData": { + "id": "Red Woofy", + "pt": 2, + }, + "value": 141561, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Ducky", + "pt": 1, + }, + "value": 501, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pastel Elephant", + "pt": 2, + }, + "value": 414636812, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Kaiju Moth", + "pt": 2, + }, + "value": 92633152000, + }, + { + "category": "Pet", + "configData": { + "id": "Wyvern of Hades", + "pt": 2, + }, + "value": 10663, + }, + { + "category": "Pet", + "configData": { + "cv": 3, + "id": "Huge Chroma Unicorn", + }, + "value": 548545076, + }, + { + "category": "Pet", + "configData": { + "id": "Anime Unicorn", + "sh": true, + }, + "value": 13711441, + }, + { + "category": "Pet", + "configData": { + "id": "Willow Wisp", + "pt": 1, + }, + "value": 152, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sailor Shark", + "sh": true, + }, + "value": 1715198070, + }, + { + "category": "Pet", + "configData": { + "id": "Dove", + "pt": 1, + }, + "value": 1413, + }, + { + "category": "Pet", + "configData": { + "id": "Chocolate Bunny", + "pt": 1, + }, + "value": 21, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shark Cat", + "pt": 2, + }, + "value": 7903488000, + }, + { + "category": "Pet", + "configData": { + "id": "Cloud Penguin", + "pt": 1, + }, + "value": 1052, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Reindeer Dog", + "sh": true, + }, + "value": 11735616765, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Forest Wyvern", + "pt": 1, + }, + "value": 506400000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Student Corgi", + "pt": 1, + "sh": true, + }, + "value": 3143320744, + }, + { + "category": "Pet", + "configData": { + "id": "Blazing Shark", + "pt": 2, + "sh": true, + }, + "value": 262222165, + }, + { + "category": "Pet", + "configData": { + "id": "Corrupt Cat", + }, + "value": 222, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Corgi", + "pt": 1, + }, + "value": 57682, + }, + { + "category": "Pet", + "configData": { + "id": "Reindeer Cat", + "pt": 1, + "sh": true, + }, + "value": 28809792, + }, + { + "category": "Pet", + "configData": { + "id": "Butterfly Llama", + "pt": 1, + }, + "value": 1986, + }, + { + "category": "Pet", + "configData": { + "id": "Nutcracker Squirrel", + "pt": 1, + "sh": true, + }, + "value": 17547, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Hippomelon", + "sh": true, + }, + "value": 11110, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Mushrooms", + }, + "value": 6254, + }, + { + "category": "Pet", + "configData": { + "id": "Hi-Tech Bee", + "pt": 1, + }, + "value": 2040, + }, + { + "category": "Pet", + "configData": { + "id": "Immortuus", + "sh": true, + }, + "value": 7690644, + }, + { + "category": "Pet", + "configData": { + "id": "Stunt Corgi", + }, + "value": 1178, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Huge Chroma Swan", + "pt": 2, + }, + "value": 1105621970, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Captain Octopus", + "pt": 1, + }, + "value": 18968064000, + }, + { + "category": "Pet", + "configData": { + "id": "Floatie Penguin", + "pt": 1, + "sh": true, + }, + "value": 1240189, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Strawberry Corgi", + "pt": 2, + }, + "value": 51638080000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Samurai Dragon", + "pt": 2, + }, + "value": 5556080968, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pristine Snake", + "pt": 2, + "sh": true, + }, + "value": 3161956832, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Ram", + "sh": true, + }, + "value": 1800, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Snow Leopard", + }, + "value": 2003, + }, + { + "category": "Pet", + "configData": { + "id": "Rabbit", + "sh": true, + }, + "value": 899, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Peacock", + "pt": 1, + "sh": true, + }, + "value": 435050271, + }, + { + "category": "Pet", + "configData": { + "id": "Phantom Wolf", + "sh": true, + }, + "value": 22960585, + }, + { + "category": "Pet", + "configData": { + "id": "Steampunk Crocodile", + "sh": true, + }, + "value": 31, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dino Cat", + "sh": true, + }, + "value": 9099440000, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Kitsune", + "sh": true, + }, + "value": 8640004, + }, + { + "category": "Pet", + "configData": { + "id": "Astral Axolotl", + "pt": 1, + }, + "value": 1675, + }, + { + "category": "Pet", + "configData": { + "id": "Owl", + "pt": 1, + }, + "value": 6563, + }, + { + "category": "Card", + "configData": { + "id": "Pog Dog Card", + "pt": 2, + "sh": true, + }, + "value": 84242, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Totem Monkey", + }, + "value": 172417337549, + }, + { + "category": "Pet", + "configData": { + "id": "404 Demon", + "pt": 2, + "sh": true, + }, + "value": 748175, + }, + { + "category": "Pet", + "configData": { + "id": "Black Bear", + "sh": true, + }, + "value": 1068, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guard Hydra", + "pt": 1, + "sh": true, + }, + "value": 23331006080, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Dominus", + "pt": 2, + }, + "value": 3042, + }, + { + "category": "Pet", + "configData": { + "id": "Player Panda", + "pt": 1, + "sh": true, + }, + "value": 80002, + }, + { + "category": "Pet", + "configData": { + "id": "Turtle in a Bucket", + "pt": 1, + }, + "value": 119, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Angelus", + "pt": 2, + "sh": true, + }, + "value": 7160016000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Cat", + "sh": true, + }, + "value": 213843600755, + }, + { + "category": "Pet", + "configData": { + "id": "Astronaut Cat", + "sh": true, + }, + "value": 3107745, + }, + { + "category": "Pet", + "configData": { + "id": "Luchador Coyote", + "pt": 2, + "sh": true, + }, + "value": 320110885, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Lemur", + "pt": 1, + }, + "value": 1801, + }, + { + "category": "Pet", + "configData": { + "id": "Fire Cat", + "pt": 1, + }, + "value": 2770, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crystal Bat", + "sh": true, + }, + "value": 797152146, + }, + { + "category": "Pet", + "configData": { + "id": "Detective Terrier", + "pt": 1, + }, + "value": 708, + }, + { + "category": "Pet", + "configData": { + "id": "Gummy Raccoon", + "pt": 1, + }, + "value": 11326, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bejeweled Lion", + "sh": true, + }, + "value": 2204681176, + }, + { + "category": "Card", + "configData": { + "id": "Hippomelon Card", + "pt": 2, + "sh": true, + }, + "value": 284477938, + }, + { + "category": "Pet", + "configData": { + "id": "Sunflower Lion", + "pt": 1, + }, + "value": 951, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Happy Rock", + "pt": 2, + "sh": true, + }, + "value": 2639885810, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Snake", + }, + "value": 117785, + }, + { + "category": "Pet", + "configData": { + "id": "Fairy Moth", + "pt": 1, + }, + "value": 12646, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Samurai Cat", + "pt": 1, + }, + "value": 746, + }, + { + "category": "Pet", + "configData": { + "id": "Brain Ball", + "pt": 2, + "sh": true, + }, + "value": 5330, + }, + { + "category": "Pet", + "configData": { + "id": "Candycane", + "pt": 1, + }, + "value": 1574424, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Agony", + "pt": 1, + }, + "value": 957568164, + }, + { + "category": "Pet", + "configData": { + "id": "Grinch Cat", + "pt": 2, + "sh": true, + }, + "value": 722485013, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Party Panda", + "pt": 2, + }, + "value": 60000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Party Cat", + "pt": 2, + }, + "value": 39619200000, + }, + { + "category": "Pet", + "configData": { + "id": "Old Wizard Dragon", + "pt": 1, + "sh": true, + }, + "value": 2998000000, + }, + { + "category": "Pet", + "configData": { + "id": "Bubble Hydra", + "pt": 1, + }, + "value": 6037, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cheerful Yeti", + "pt": 2, + }, + "value": 1215362883, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Scribe Squirrel", + "pt": 1, + "sh": true, + }, + "value": 3420240640, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hacker Axolotl", + "pt": 1, + "sh": true, + }, + "value": 3041456640, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Avenging Griffin", + "pt": 1, + "sh": true, + }, + "value": 826404154, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gym Axolotl", + "pt": 2, + }, + "value": 49260954112, + }, + { + "category": "Pet", + "configData": { + "id": "Alien Octopus", + "sh": true, + }, + "value": 1344, + }, + { + "category": "Pet", + "configData": { + "id": "Neon Dog", + "pt": 2, + "sh": true, + }, + "value": 496425599, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Otter", + "sh": true, + }, + "value": 1059087510, + }, + { + "category": "Pet", + "configData": { + "id": "Atomic Axolotl", + "pt": 2, + "sh": true, + }, + "value": 41233, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Bull", + "pt": 2, + }, + "value": 8798, + }, + { + "category": "Pet", + "configData": { + "id": "Robot Bee", + "pt": 2, + }, + "value": 557, + }, + { + "category": "Pet", + "configData": { + "id": "Devil Agony", + "pt": 2, + "sh": true, + }, + "value": 56334, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bubble Dog", + }, + "value": 11727530183, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Cheerful Yeti", + "pt": 2, + }, + "value": 72934560000, + }, + { + "category": "Pet", + "configData": { + "id": "Pixie Squirrel", + "pt": 1, + }, + "value": 252, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Devil Dominus", + "pt": 1, + "sh": true, + }, + "value": 1186184362, + }, + { + "category": "Pet", + "configData": { + "id": "Sophisticated Fox", + }, + "value": 88, + }, + { + "category": "Pet", + "configData": { + "id": "Glowy the Ghost", + "pt": 1, + }, + "value": 7603, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mystical Whale", + "pt": 1, + "sh": true, + }, + "value": 2200278214, + }, + { + "category": "Pet", + "configData": { + "id": "Fossil Dragon", + "sh": true, + }, + "value": 13591, + }, + { + "category": "Pet", + "configData": { + "id": "Wizard Westie", + "pt": 1, + }, + "value": 148, + }, + { + "category": "Pet", + "configData": { + "id": "Nutcracker Cat", + "pt": 1, + "sh": true, + }, + "value": 265000000, + }, + { + "category": "Pet", + "configData": { + "id": "Dino Axolotl", + "pt": 2, + }, + "value": 1633, + }, + { + "category": "Pet", + "configData": { + "id": "Blue Fish", + "sh": true, + }, + "value": 306, + }, + { + "category": "Pet", + "configData": { + "id": "Spitting Dino", + "pt": 2, + }, + "value": 13, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gingerbread Angelus", + "pt": 1, + "sh": true, + }, + "value": 75000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Bunny", + }, + "value": 18174, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dove", + "sh": true, + }, + "value": 3901925397, + }, + { + "category": "Pet", + "configData": { + "id": "Splash Angelus", + "pt": 1, + "sh": true, + }, + "value": 908205, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Pyro Cat", + "pt": 1, + "sh": true, + }, + "value": 49646336000, + }, + { + "category": "Pet", + "configData": { + "id": "Plasma Bull", + "pt": 1, + "sh": true, + }, + "value": 3958, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Griffin", + "pt": 2, + }, + "value": 1446, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jester Dog", + "pt": 2, + "sh": true, + }, + "value": 7805420257, + }, + { + "category": "Pet", + "configData": { + "id": "Shimmering Fish", + "sh": true, + }, + "value": 463, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Parachute Monkey", + "pt": 1, + "sh": true, + }, + "value": 2048887219, + }, + { + "category": "Pet", + "configData": { + "id": "Hydra Axolotl", + "pt": 2, + "sh": true, + }, + "value": 1280000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Treasure Scorpion", + "pt": 2, + "sh": true, + }, + "value": 52534189265, + }, + { + "category": "Pet", + "configData": { + "id": "Cold Butterfly", + "sh": true, + }, + "value": 3281, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ice Snake", + "pt": 2, + "sh": true, + }, + "value": 9784670174, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Cat", + "pt": 2, + }, + "value": 2280, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Dot Matrix Pegasus", + }, + "value": 335140226560, + }, + { + "category": "Pet", + "configData": { + "id": "Archangel Cat", + "pt": 2, + }, + "value": 3529, + }, + { + "category": "Pet", + "configData": { + "id": "Chocolate Bunny", + "sh": true, + }, + "value": 47413, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gorilla", + "pt": 2, + "sh": true, + }, + "value": 4936000000, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Wizard", + "pt": 1, + }, + "value": 640000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Holographic Axolotl Ball", + "sh": true, + }, + "value": 53200000000, + }, + { + "category": "Pet", + "configData": { + "id": "Sprout Wyrmling", + "pt": 2, + "sh": true, + }, + "value": 8464128, + }, + { + "category": "Card", + "configData": { + "id": "Huge Arcane Dominus Card", + "pt": 2, + }, + "value": 292771127, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skeleton Snake", + "pt": 2, + }, + "value": 2295507712, + }, + { + "category": "Pet", + "configData": { + "id": "Demon", + "pt": 2, + "sh": true, + }, + "value": 75000, + }, + { + "category": "Pet", + "configData": { + "id": "Lilypad Cat", + "pt": 2, + }, + "value": 3018, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Devil Agony", + "pt": 1, + "sh": true, + }, + "value": 3488720118, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Irish Wolfhound", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Ducky", + }, + "value": 1277131970, + }, + { + "category": "Pet", + "configData": { + "id": "Glimmercap Turtle", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Card", + "configData": { + "id": "Nature Axolotl Card", + "pt": 1, + "sh": true, + }, + "value": 1467663, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hell Rock", + "sh": true, + }, + "value": 8088166400, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Jurassic Feline", + "sh": true, + }, + "value": 26971328000, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Shark", + "pt": 1, + }, + "value": 4138, + }, + { + "category": "Pet", + "configData": { + "id": "Principal Anteater", + }, + "value": 9156, + }, + { + "category": "Pet", + "configData": { + "cv": 1, + "id": "Huge Chroma Doodle Axolotl", + }, + "value": 233709796, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Kaiju King", + }, + "value": 421998720000, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Huge Chroma Doodle Axolotl", + }, + "value": 1060103447, + }, + { + "category": "Pet", + "configData": { + "id": "Crash Dummy Noob", + "pt": 2, + "sh": true, + }, + "value": 40247654, + }, + { + "category": "Pet", + "configData": { + "id": "Forged Cyclops", + "pt": 1, + }, + "value": 1203, + }, + { + "category": "Pet", + "configData": { + "id": "Baby Piglet", + "pt": 1, + "sh": true, + }, + "value": 21984, + }, + { + "category": "Pet", + "configData": { + "id": "Sun Parrot", + "pt": 1, + "sh": true, + }, + "value": 452422, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Pixel Cat", + "pt": 2, + "sh": true, + }, + "value": 10000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Dino Dog", + "sh": true, + }, + "value": 104353, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Cardinal", + "pt": 1, + "sh": true, + }, + "value": 60000000, + }, + { + "category": "Pet", + "configData": { + "id": "Runebound Bobcat", + "pt": 1, + "sh": true, + }, + "value": 3284, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Bat Cat", + "pt": 2, + }, + "value": 567607680000, + }, + { + "category": "Pet", + "configData": { + "id": "Red Fox", + "sh": true, + }, + "value": 3446, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hydra Dino", + "sh": true, + }, + "value": 1078216420, + }, + { + "category": "Pet", + "configData": { + "id": "Rock Cat", + "pt": 2, + }, + "value": 541, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Seal", + "pt": 2, + }, + "value": 1119, + }, + { + "category": "Pet", + "configData": { + "id": "Grass Bunny", + "pt": 2, + "sh": true, + }, + "value": 704000, + }, + { + "category": "Pet", + "configData": { + "id": "Dino Bear", + "pt": 1, + }, + "value": 1530296, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Cat", + "pt": 1, + }, + "value": 135863, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Jelly Wizard", + "pt": 2, + }, + "value": 36037920000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Glass Blobfish", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Quartz Fox", + "pt": 2, + }, + "value": 2436051, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Raptor", + "pt": 2, + }, + "value": 789093639, + }, + { + "category": "Pet", + "configData": { + "id": "Classic Dragon", + "sh": true, + }, + "value": 12365088, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Axolotl", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Unicorn", + }, + "value": 566257, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Fairy", + "pt": 1, + }, + "value": 3463, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Parrot", + "pt": 1, + }, + "value": 387, + }, + { + "category": "Pet", + "configData": { + "id": "Painted Balloon", + "pt": 2, + "sh": true, + }, + "value": 8020, + }, + { + "category": "Pet", + "configData": { + "id": "Turtle", + "pt": 1, + }, + "value": 32163, + }, + { + "category": "Pet", + "configData": { + "id": "Player Piggy", + "sh": true, + }, + "value": 24091, + }, + { + "category": "Pet", + "configData": { + "id": "Pog Monkey", + "pt": 1, + }, + "value": 467310, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Angel Cat", + "sh": true, + }, + "value": 8470361600, + }, + { + "category": "Pet", + "configData": { + "id": "Autumn Red Panda", + "pt": 1, + "sh": true, + }, + "value": 37923, + }, + { + "category": "Pet", + "configData": { + "id": "Star Surfer", + "pt": 1, + }, + "value": 24177, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Hydra", + "pt": 1, + }, + "value": 582404, + }, + { + "category": "Pet", + "configData": { + "id": "A-36", + "pt": 2, + }, + "value": 1145, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Corgi", + "pt": 1, + "sh": true, + }, + "value": 136316544, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Crocodile", + "sh": true, + }, + "value": 710, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Immortuus", + "pt": 1, + }, + "value": 1850, + }, + { + "category": "Pet", + "configData": { + "id": "Scarecrow Cat", + "pt": 2, + }, + "value": 134, + }, + { + "category": "Pet", + "configData": { + "id": "Flowers Fox", + "pt": 2, + }, + "value": 317, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Cat", + "pt": 2, + "sh": true, + }, + "value": 4040000, + }, + { + "category": "Pet", + "configData": { + "id": "Blue BIG Maskot", + "pt": 1, + }, + "value": 4281335, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bear", + "sh": true, + }, + "value": 3481414804, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Chick", + "pt": 2, + "sh": true, + }, + "value": 6387, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guard Bunny", + "pt": 1, + }, + "value": 1398871247, + }, + { + "category": "Pet", + "configData": { + "id": "Fragmented Pterodactyl", + "pt": 2, + }, + "value": 3513, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Angelus", + "pt": 1, + "sh": true, + }, + "value": 155260, + }, + { + "category": "Card", + "configData": { + "id": "Camo Axolotl Card", + "pt": 2, + "sh": true, + }, + "value": 610149, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Corgi", + "pt": 2, + "sh": true, + }, + "value": 791482477, + }, + { + "category": "Pet", + "configData": { + "id": "Beaver", + "sh": true, + }, + "value": 2462, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Otter", + }, + "value": 2042282, + }, + { + "category": "Pet", + "configData": { + "id": "Wicked Agony", + "pt": 2, + }, + "value": 3409301, + }, + { + "category": "Pet", + "configData": { + "id": "Black Widow", + "pt": 1, + }, + "value": 8196, + }, + { + "category": "Pet", + "configData": { + "id": "Cinnamon Bunny", + "sh": true, + }, + "value": 1000000, + }, + { + "category": "Pet", + "configData": { + "id": "Cotton Candy Unicorn", + "sh": true, + }, + "value": 44963, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Jurassic Feline", + "pt": 2, + }, + "value": 48659042304, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Blurred Dominus", + "pt": 1, + }, + "value": 155868004732, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leprechaun Kitsune", + "pt": 2, + }, + "value": 336971094, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leprechaun Kitsune", + }, + "value": 98533689, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Lucki Golem", + }, + "value": 6534221155, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leprechaun Kitsune", + "pt": 1, + }, + "value": 55463691, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Chest Mimic", + }, + "value": 209689177, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leprechaun Kitsune", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leprechaun Kitsune", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Lucki Golem", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Classic Bunny", + "pt": 2, + "sh": true, + }, + "value": 132956998, + }, + { + "category": "Pet", + "configData": { + "id": "Rootkin Fox", + "sh": true, + }, + "value": 20, + }, + { + "category": "Pet", + "configData": { + "id": "Pristine Snake", + "pt": 1, + }, + "value": 137026, + }, + { + "category": "Pet", + "configData": { + "id": "Charred Dragon", + "pt": 2, + "sh": true, + }, + "value": 1763999, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Chest Mimic", + "pt": 1, + }, + "value": 652807946, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Chest Mimic", + "pt": 2, + }, + "value": 4771800868, + }, + { + "category": "Pet", + "configData": { + "id": "Candycane Shake Shark", + "pt": 2, + "sh": true, + }, + "value": 12586979, + }, + { + "category": "Card", + "configData": { + "id": "Camo Axolotl Card", + "pt": 1, + "sh": true, + }, + "value": 57219, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Zebra", + "pt": 1, + "sh": true, + }, + "value": 189143880, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Lucki Golem", + "pt": 1, + }, + "value": 8023638551, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Angelus", + "pt": 1, + "sh": true, + }, + "value": 5605600000, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Lucki Angelus", + }, + "value": 132119921078, + }, + { + "category": "Pet", + "configData": { + "id": "Owl", + "sh": true, + }, + "value": 303303, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghostly Dragon", + "pt": 2, + "sh": true, + }, + "value": 1000000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Rose Garden Cat", + "sh": true, + }, + "value": 7906, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Dove", + "pt": 2, + }, + "value": 15278602, + }, + { + "category": "Pet", + "configData": { + "id": "Police Dog", + "pt": 2, + "sh": true, + }, + "value": 857372, + }, + { + "category": "Pet", + "configData": { + "id": "Sabretooth Tiger", + "pt": 1, + }, + "value": 86, + }, + { + "category": "Pet", + "configData": { + "id": "Zebra", + }, + "value": 412455, + }, + { + "category": "Pet", + "configData": { + "id": "Void Alien", + }, + "value": 2829, + }, + { + "category": "Pet", + "configData": { + "id": "Peacock", + "sh": true, + }, + "value": 1190, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sketch Dragon", + "pt": 2, + }, + "value": 1521651271, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Starlight Pony", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Fragmented Dominus", + "pt": 2, + }, + "value": 950, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Basket Bunny", + "pt": 2, + "sh": true, + }, + "value": 3054778030, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Bear", + "sh": true, + }, + "value": 2226, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Snail", + "pt": 1, + "sh": true, + }, + "value": 499999, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Capybara", + "pt": 2, + }, + "value": 3368512329, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fragmented Dominus Ball", + "pt": 2, + "sh": true, + }, + "value": 4263232000, + }, + { + "category": "Pet", + "configData": { + "id": "Boulder Boar", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Unicorn", + "pt": 2, + }, + "value": 273923, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Ducky", + "pt": 2, + }, + "value": 79, + }, + { + "category": "Pet", + "configData": { + "id": "Creepy Yeti", + "sh": true, + }, + "value": 6992, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Cat", + "pt": 1, + "sh": true, + }, + "value": 26400, + }, + { + "category": "Pet", + "configData": { + "id": "Red Fluffy", + "sh": true, + }, + "value": 7854, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pirate Parrot", + "pt": 1, + }, + "value": 293403707, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Autumn Retriever", + "pt": 1, + "sh": true, + }, + "value": 7922224000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Wild Frost Agony", + "pt": 2, + }, + "value": 76080000000, + }, + { + "category": "Pet", + "configData": { + "id": "Beegle Dog", + "sh": true, + }, + "value": 500, + }, + { + "category": "Card", + "configData": { + "id": "Ghoul Horse Card", + "pt": 2, + "sh": true, + }, + "value": 3028090, + }, + { + "category": "Card", + "configData": { + "id": "Huge Arcane Dominus Card", + "sh": true, + }, + "value": 990126833, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Panther", + "pt": 1, + "sh": true, + }, + "value": 3200000000, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Rabbit", + "sh": true, + }, + "value": 1084961, + }, + { + "category": "Pet", + "configData": { + "id": "Black Hole Immortuus", + "pt": 2, + "sh": true, + }, + "value": 150693718, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Air Balloon Dog", + "pt": 1, + }, + "value": 5617, + }, + { + "category": "Pet", + "configData": { + "id": "Starry Eye Bunny", + "sh": true, + }, + "value": 77200, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Royal Peacock", + "pt": 2, + "sh": true, + }, + "value": 9166000000, + }, + { + "category": "Pet", + "configData": { + "id": "Pink Poodle", + "pt": 2, + "sh": true, + }, + "value": 1545704, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Cat", + "pt": 2, + }, + "value": 2860, + }, + { + "category": "Pet", + "configData": { + "id": "Thunder Bear", + "pt": 2, + "sh": true, + }, + "value": 166091973, + }, + { + "category": "Pet", + "configData": { + "id": "Pop Cat", + "pt": 2, + "sh": true, + }, + "value": 1807846400, + }, + { + "category": "Pet", + "configData": { + "id": "Agony", + "pt": 1, + "sh": true, + }, + "value": 2000040000, + }, + { + "category": "Pet", + "configData": { + "id": "Silver Moose", + "pt": 2, + }, + "value": 2387, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Frog", + "sh": true, + }, + "value": 13, + }, + { + "category": "Pet", + "configData": { + "id": "Wyvern of Hades", + "pt": 2, + "sh": true, + }, + "value": 6868864, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Triceratops", + "pt": 2, + }, + "value": 1872, + }, + { + "category": "Pet", + "configData": { + "id": "Player Penguin", + "pt": 1, + "sh": true, + }, + "value": 95803, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Wolverine", + "pt": 2, + }, + "value": 226575, + }, + { + "category": "Pet", + "configData": { + "id": "Chocolate Hippo", + "pt": 2, + }, + "value": 4900, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Polar Bear", + "pt": 2, + "sh": true, + }, + "value": 5259643, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Lion", + "pt": 2, + }, + "value": 9340, + }, + { + "category": "Pet", + "configData": { + "id": "Toy Mouse", + }, + "value": 2888, + }, + { + "category": "Pet", + "configData": { + "id": "Love Corgi", + "pt": 1, + }, + "value": 301, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mummy Bunny", + "pt": 1, + }, + "value": 2164924449, + }, + { + "category": "Pet", + "configData": { + "id": "Love Lion", + "pt": 1, + }, + "value": 146, + }, + { + "category": "Pet", + "configData": { + "id": "Angry Dino", + "pt": 1, + "sh": true, + }, + "value": 373, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Cow", + "pt": 1, + "sh": true, + }, + "value": 982370, + }, + { + "category": "Pet", + "configData": { + "id": "Forged Cyclops", + "pt": 2, + }, + "value": 2286, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Lucki Golem", + "pt": 2, + }, + "value": 26209826084, + }, + { + "category": "Pet", + "configData": { + "id": "Raining Love Dog", + "pt": 1, + "sh": true, + }, + "value": 16308, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Matryoshka Cat", + "sh": true, + }, + "value": 59680000000, + }, + { + "category": "Pet", + "configData": { + "id": "Glimmer Goat", + "pt": 1, + }, + "value": 112733, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Hamster", + "sh": true, + }, + "value": 324, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doodle Bee", + "pt": 2, + }, + "value": 3037499437, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Guard Dominus", + "pt": 2, + }, + "value": 69335872000, + }, + { + "category": "Pet", + "configData": { + "id": "Bear", + "pt": 2, + "sh": true, + }, + "value": 46, + }, + { + "category": "Pet", + "configData": { + "id": "Elephant", + "pt": 2, + "sh": true, + }, + "value": 4000, + }, + { + "category": "Pet", + "configData": { + "id": "Pixie Bee", + "pt": 2, + }, + "value": 64778, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Googly Agony", + }, + "value": 264965797375, + }, + { + "category": "Pet", + "configData": { + "id": "Marzipan Piggy", + "pt": 1, + }, + "value": 10282, + }, + { + "category": "Pet", + "configData": { + "id": "Dark Fox", + "pt": 2, + "sh": true, + }, + "value": 2977, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Dog", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Frontman Jellyfish", + "pt": 1, + }, + "value": 2837831517, + }, + { + "category": "Pet", + "configData": { + "id": "Black Bear", + "pt": 2, + }, + "value": 409, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Grinch Cat", + "pt": 2, + }, + "value": 35996195440, + }, + { + "category": "Pet", + "configData": { + "id": "Scarecrow Cat", + "pt": 2, + "sh": true, + }, + "value": 47169, + }, + { + "category": "Pet", + "configData": { + "id": "Cow", + "pt": 2, + "sh": true, + }, + "value": 1601, + }, + { + "category": "Pet", + "configData": { + "id": "Chicken", + "pt": 2, + "sh": true, + }, + "value": 21800, + }, + { + "category": "Pet", + "configData": { + "id": "Rose Garden Cat", + "pt": 1, + "sh": true, + }, + "value": 4141013, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Sloth", + "pt": 2, + "sh": true, + }, + "value": 580739, + }, + { + "category": "Pet", + "configData": { + "id": "Pineapple Monkey", + "sh": true, + }, + "value": 109, + }, + { + "category": "Pet", + "configData": { + "id": "Ugly Duckling", + "pt": 2, + "sh": true, + }, + "value": 73001, + }, + { + "category": "Pet", + "configData": { + "id": "Umbrella Dog", + "pt": 2, + "sh": true, + }, + "value": 7501, + }, + { + "category": "Pet", + "configData": { + "id": "Slime", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Hydra", + "pt": 2, + "sh": true, + }, + "value": 250000, + }, + { + "category": "Pet", + "configData": { + "id": "Wizard Westie", + "pt": 2, + "sh": true, + }, + "value": 1386, + }, + { + "category": "Pet", + "configData": { + "id": "Kraken", + "pt": 2, + "sh": true, + }, + "value": 17692, + }, + { + "category": "Pet", + "configData": { + "id": "Goldfish", + "pt": 2, + "sh": true, + }, + "value": 2500000, + }, + { + "category": "Pet", + "configData": { + "id": "Fire Horse", + "pt": 2, + "sh": true, + }, + "value": 55064, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Panda", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Turtle", + "pt": 2, + "sh": true, + }, + "value": 7734, + }, + { + "category": "Pet", + "configData": { + "id": "Monkey", + "sh": true, + }, + "value": 235017, + }, + { + "category": "Pet", + "configData": { + "id": "Sabretooth Tiger", + "sh": true, + }, + "value": 1698, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guard Hydra", + "pt": 2, + "sh": true, + }, + "value": 2494848000, + }, + { + "category": "Pet", + "configData": { + "id": "Fox", + "pt": 1, + "sh": true, + }, + "value": 777777, + }, + { + "category": "Pet", + "configData": { + "id": "Squirrel", + "pt": 1, + "sh": true, + }, + "value": 4091, + }, + { + "category": "Pet", + "configData": { + "id": "Tiger", + "pt": 1, + "sh": true, + }, + "value": 2000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Axolotl", + "pt": 2, + "sh": true, + }, + "value": 103776000000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Cosmic Pegasus", + "pt": 2, + }, + "value": 36519488000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Atomic Axolotl", + "pt": 1, + "sh": true, + }, + "value": 9400000000, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Wolf", + "pt": 2, + }, + "value": 1756, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Owl", + "pt": 2, + "sh": true, + }, + "value": 2783, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Apple Capybara", + "pt": 2, + }, + "value": 5540378660, + }, + { + "category": "Pet", + "configData": { + "id": "Bear", + "sh": true, + }, + "value": 17074, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Fawn", + "pt": 2, + }, + "value": 48025600000, + }, + { + "category": "Pet", + "configData": { + "id": "Skunk", + "pt": 2, + "sh": true, + }, + "value": 83464, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wisp Deer", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Holiday Owl", + "sh": true, + }, + "value": 110000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Corgi", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Horse", + "pt": 1, + "sh": true, + }, + "value": 1916881080, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Air Balloon Dog", + "sh": true, + }, + "value": 705, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sandcastle Cat", + "pt": 2, + }, + "value": 5603547444, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Bat Cat", + "sh": true, + }, + "value": 63923840000, + }, + { + "category": "Pet", + "configData": { + "id": "Colorful Rock", + "pt": 2, + }, + "value": 885, + }, + { + "category": "Pet", + "configData": { + "id": "Slime", + "pt": 2, + }, + "value": 190, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Nyan Cat", + "pt": 1, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Angry Yeti", + "pt": 1, + }, + "value": 170363737600, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Aura Kitsune", + "sh": true, + }, + "value": 57382848000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Neon Cat", + "pt": 2, + }, + "value": 1099120155, + }, + { + "category": "Card", + "configData": { + "id": "Pog Shark Card", + "sh": true, + }, + "value": 7190415, + }, + { + "category": "Pet", + "configData": { + "id": "Candycane", + "pt": 2, + "sh": true, + }, + "value": 856000000, + }, + { + "category": "Pet", + "configData": { + "id": "Recruiter Axolotl", + "pt": 1, + "sh": true, + }, + "value": 1869494, + }, + { + "category": "Pet", + "configData": { + "id": "Cool Dragon", + "sh": true, + }, + "value": 32005240, + }, + { + "category": "Pet", + "configData": { + "id": "Coach Tiger", + "sh": true, + }, + "value": 10935, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Atomic Axolotl", + "sh": true, + }, + "value": 5634997510, + }, + { + "category": "Pet", + "configData": { + "id": "Hooded Bobcat", + "pt": 1, + }, + "value": 10125, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sandcastle Cat", + "sh": true, + }, + "value": 4622045575, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guard Bunny", + "pt": 1, + "sh": true, + }, + "value": 18000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Scuba Dog", + "pt": 2, + }, + "value": 158416, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Fairy", + "pt": 2, + }, + "value": 6112, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jolly Penguin", + "pt": 2, + "sh": true, + }, + "value": 3383040000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pinata Cat", + "sh": true, + }, + "value": 5861038254, + }, + { + "category": "Pet", + "configData": { + "id": "Hi-Tech Flamingo", + "pt": 1, + }, + "value": 10131, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Comet Agony", + "pt": 1, + }, + "value": 1587268538, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Unicorn", + "pt": 2, + }, + "value": 8418591, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Unicorn", + "pt": 2, + "sh": true, + }, + "value": 4700831856, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Dog", + "pt": 1, + }, + "value": 226, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Tiedye Corgi", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Cat", + "pt": 2, + "sh": true, + }, + "value": 300000, + }, + { + "category": "Pet", + "configData": { + "id": "Flying Piggy", + "pt": 2, + "sh": true, + }, + "value": 8040, + }, + { + "category": "Pet", + "configData": { + "id": "Springy Axolotl", + "pt": 1, + }, + "value": 22093881, + }, + { + "category": "Pet", + "configData": { + "id": "Flying Piggy", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Sentry Drake", + "pt": 2, + "sh": true, + }, + "value": 149183, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Surfboard Corgi", + "pt": 2, + }, + "value": 17773815422, + }, + { + "category": "Pet", + "configData": { + "id": "Bee", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Green Fish", + "pt": 1, + }, + "value": 1783, + }, + { + "category": "Pet", + "configData": { + "id": "Hacked Computer", + "pt": 1, + "sh": true, + }, + "value": 131, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Doll Cat", + "sh": true, + }, + "value": 164824000000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Dolphin", + "sh": true, + }, + "value": 80654353920, + }, + { + "category": "Pet", + "configData": { + "id": "Autumn Retriever", + "pt": 2, + }, + "value": 593, + }, + { + "category": "Pet", + "configData": { + "id": "Atlantean Stingray", + "sh": true, + }, + "value": 10218319, + }, + { + "category": "Pet", + "configData": { + "id": "Nightfall Wolf", + "sh": true, + }, + "value": 49766545, + }, + { + "category": "Pet", + "configData": { + "id": "Hi-Tech Monkey", + "pt": 1, + }, + "value": 2180, + }, + { + "category": "Pet", + "configData": { + "id": "Gummy Bear", + "pt": 1, + }, + "value": 315, + }, + { + "category": "Pet", + "configData": { + "id": "Candycane Shake Shark", + "pt": 1, + }, + "value": 60655, + }, + { + "category": "Card", + "configData": { + "id": "Huge Storm Axolotl Card", + "pt": 2, + }, + "value": 315422065, + }, + { + "category": "Pet", + "configData": { + "id": "Fireball Cat", + "pt": 2, + "sh": true, + }, + "value": 88258, + }, + { + "category": "Pet", + "configData": { + "id": "Icy Phoenix", + "pt": 2, + "sh": true, + }, + "value": 143136, + }, + { + "category": "Pet", + "configData": { + "id": "Abstract Dragon", + "pt": 1, + }, + "value": 628, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Scorpion", + "pt": 2, + "sh": true, + }, + "value": 1482, + }, + { + "category": "Pet", + "configData": { + "id": "Demon Dog", + "sh": true, + }, + "value": 2506, + }, + { + "category": "Pet", + "configData": { + "id": "Cartoon Corgi", + "pt": 2, + "sh": true, + }, + "value": 273679316, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Dog", + "sh": true, + }, + "value": 4899947, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Monkey", + "sh": true, + }, + "value": 2118, + }, + { + "category": "Pet", + "configData": { + "id": "Gingerbread Corgi", + "pt": 1, + }, + "value": 1063652, + }, + { + "category": "Pet", + "configData": { + "id": "Huge UV Cat", + "pt": 2, + "sh": true, + }, + "value": 4609316442, + }, + { + "category": "Pet", + "configData": { + "id": "Candycane", + "pt": 2, + }, + "value": 18603723, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rose Cat", + "pt": 1, + "sh": true, + }, + "value": 2163119368, + }, + { + "category": "Pet", + "configData": { + "id": "Rock Monkey", + "pt": 1, + }, + "value": 220546, + }, + { + "category": "Pet", + "configData": { + "id": "Meebo The Alien Ball", + "sh": true, + }, + "value": 13534, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Penguin", + "sh": true, + }, + "value": 2398458525, + }, + { + "category": "Pet", + "configData": { + "id": "Knight Cat", + "sh": true, + }, + "value": 481323, + }, + { + "category": "Pet", + "configData": { + "id": "Panda", + "sh": true, + }, + "value": 752, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crystal Spider", + "pt": 2, + "sh": true, + }, + "value": 7286400000, + }, + { + "category": "Pet", + "configData": { + "id": "Witch Cat", + "pt": 1, + }, + "value": 681, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Fox", + "pt": 2, + }, + "value": 582, + }, + { + "category": "Pet", + "configData": { + "id": "Graffiti Dino", + "pt": 1, + "sh": true, + }, + "value": 162, + }, + { + "category": "Pet", + "configData": { + "id": "Present Dragon", + "pt": 1, + "sh": true, + }, + "value": 41000000, + }, + { + "category": "Pet", + "configData": { + "id": "Candycane Unicorn", + "pt": 1, + "sh": true, + }, + "value": 44000000, + }, + { + "category": "Pet", + "configData": { + "id": "Candycane Unicorn", + "pt": 1, + }, + "value": 1684282, + }, + { + "category": "Pet", + "configData": { + "id": "Mrs. Claws", + "pt": 1, + "sh": true, + }, + "value": 1820000000, + }, + { + "category": "Pet", + "configData": { + "id": "Mrs. Claws", + "pt": 1, + }, + "value": 154640000, + }, + { + "category": "Pet", + "configData": { + "id": "Kung Fu Monkey", + "pt": 1, + "sh": true, + }, + "value": 67200000, + }, + { + "category": "Pet", + "configData": { + "id": "Meebo in a Spaceship", + "pt": 1, + "sh": true, + }, + "value": 20618560, + }, + { + "category": "Pet", + "configData": { + "id": "Plushie Fox", + "pt": 1, + "sh": true, + }, + "value": 34820000, + }, + { + "category": "Pet", + "configData": { + "id": "Demon Dog", + "pt": 1, + }, + "value": 523, + }, + { + "category": "Pet", + "configData": { + "id": "Inferno Stealth Cat", + "pt": 2, + }, + "value": 1290000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Butterfly", + "pt": 1, + }, + "value": 6526220143, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chef Monkey", + "pt": 1, + "sh": true, + }, + "value": 11926399840, + }, + { + "category": "Pet", + "configData": { + "id": "Ancestor Eagle", + }, + "value": 285871, + }, + { + "category": "Pet", + "configData": { + "id": "Present Dragon", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "North Pole Wolf", + "pt": 1, + "sh": true, + }, + "value": 94344000, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Cat", + "sh": true, + }, + "value": 16415, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Emoji Cat", + "pt": 2, + "sh": true, + }, + "value": 1600256000, + }, + { + "category": "Pet", + "configData": { + "id": "Blue Fluffy", + "sh": true, + }, + "value": 13340278, + }, + { + "category": "Pet", + "configData": { + "id": "Snowflake Dominus", + "pt": 1, + }, + "value": 1778, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixie Fox", + "pt": 1, + "sh": true, + }, + "value": 7656320000, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Walrus", + "pt": 2, + }, + "value": 644668, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Corgi", + "pt": 2, + }, + "value": 9417, + }, + { + "category": "Pet", + "configData": { + "id": "Blossom Squirrel", + "sh": true, + }, + "value": 2897, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Cow", + "pt": 1, + "sh": true, + }, + "value": 2675, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Slime", + "pt": 1, + }, + "value": 281, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Unicorn", + "sh": true, + }, + "value": 277142321, + }, + { + "category": "Pet", + "configData": { + "id": "Wild Fire Agony", + "pt": 2, + "sh": true, + }, + "value": 22180, + }, + { + "category": "Pet", + "configData": { + "id": "Jetpack Tiger", + "sh": true, + }, + "value": 12936, + }, + { + "category": "Pet", + "configData": { + "id": "Sun Angelus", + }, + "value": 7391, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chroma Swan", + }, + "value": 90936341, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pumpkin Scarecrow", + "pt": 2, + "sh": true, + }, + "value": 12697600000, + }, + { + "category": "Pet", + "configData": { + "id": "Feral Beast", + "pt": 2, + "sh": true, + }, + "value": 332469965, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Player Corgi", + "pt": 2, + "sh": true, + }, + "value": 362726746063, + }, + { + "category": "Pet", + "configData": { + "id": "Sun Agony", + "sh": true, + }, + "value": 213406720, + }, + { + "category": "Pet", + "configData": { + "id": "Royal Cloud Cat", + "pt": 2, + }, + "value": 2288, + }, + { + "category": "Pet", + "configData": { + "id": "Gorgon", + "pt": 2, + "sh": true, + }, + "value": 193644, + }, + { + "category": "Pet", + "configData": { + "id": "Steampunk Bat", + "pt": 1, + }, + "value": 383712, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bee", + "pt": 2, + "sh": true, + }, + "value": 1230389072, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Axolotl", + "pt": 1, + }, + "value": 264, + }, + { + "category": "Pet", + "configData": { + "id": "Playful Seal", + "pt": 2, + "sh": true, + }, + "value": 2704, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiedye Cat", + "pt": 2, + "sh": true, + }, + "value": 63760000000, + }, + { + "category": "Pet", + "configData": { + "id": "Sun Angelus", + "pt": 1, + "sh": true, + }, + "value": 2565024, + }, + { + "category": "Pet", + "configData": { + "id": "Starry Tail Anteater", + "sh": true, + }, + "value": 1600200, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Gorilla", + }, + "value": 6086, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Axolotl", + "pt": 2, + }, + "value": 5178, + }, + { + "category": "Pet", + "configData": { + "id": "Pixie Fox", + "pt": 2, + }, + "value": 908, + }, + { + "category": "Pet", + "configData": { + "id": "Nightfall Wolf", + "pt": 1, + }, + "value": 14870344, + }, + { + "category": "Pet", + "configData": { + "id": "Wild Frost Agony", + "sh": true, + }, + "value": 788189, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Owl", + "sh": true, + }, + "value": 631, + }, + { + "category": "Pet", + "configData": { + "id": "Tennis Squirrel", + "pt": 2, + }, + "value": 10062, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wild Corrupt Agony", + "pt": 1, + "sh": true, + }, + "value": 7008000000, + }, + { + "category": "Pet", + "configData": { + "id": "Stunt Cat", + "sh": true, + }, + "value": 70985, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Exquisite Parrot", + }, + "value": 296427988480, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Phantom Wolf", + "sh": true, + }, + "value": 1096322674, + }, + { + "category": "Pet", + "configData": { + "id": "Astronaut Cat", + "pt": 2, + }, + "value": 1617, + }, + { + "category": "Pet", + "configData": { + "id": "Coach Hippo", + "pt": 2, + "sh": true, + }, + "value": 1020, + }, + { + "category": "Pet", + "configData": { + "id": "Virus Griffin", + "sh": true, + }, + "value": 9992420, + }, + { + "category": "Pet", + "configData": { + "id": "Sensei Penguin", + "sh": true, + }, + "value": 924000000, + }, + { + "category": "Pet", + "configData": { + "id": "Police Cat", + "sh": true, + }, + "value": 12762305, + }, + { + "category": "Pet", + "configData": { + "id": "Blurred Monkey", + "pt": 1, + "sh": true, + }, + "value": 10040, + }, + { + "category": "Pet", + "configData": { + "id": "Fragmented Dominus", + "pt": 1, + }, + "value": 1855, + }, + { + "category": "Pet", + "configData": { + "id": "Pog Shark", + "sh": true, + }, + "value": 45320000, + }, + { + "category": "Pet", + "configData": { + "id": "Kung Fu Monkey", + "sh": true, + }, + "value": 105600000, + }, + { + "category": "Pet", + "configData": { + "id": "Meebo in a Spaceship", + "pt": 2, + "sh": true, + }, + "value": 31977946, + }, + { + "category": "Pet", + "configData": { + "id": "Lunar Fox", + "pt": 1, + }, + "value": 326, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Atomic Monkey Ball", + "pt": 2, + "sh": true, + }, + "value": 1943965057, + }, + { + "category": "Pet", + "configData": { + "id": "Chocolate Hippo", + "pt": 2, + "sh": true, + }, + "value": 32448, + }, + { + "category": "Pet", + "configData": { + "id": "Blue Marshmallow Chick", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Nurse Shark", + "pt": 2, + "sh": true, + }, + "value": 17806, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Firefighter Dalmation", + "pt": 2, + "sh": true, + }, + "value": 19000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Meebo The Alien Ball", + "pt": 1, + "sh": true, + }, + "value": 126844, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Lion", + "pt": 1, + }, + "value": 1144940, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Raccoon", + "pt": 2, + "sh": true, + }, + "value": 23271552, + }, + { + "category": "Pet", + "configData": { + "id": "Creepy Wolf", + "pt": 2, + "sh": true, + }, + "value": 18837, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Axolotl", + "sh": true, + }, + "value": 21907, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Anteater", + "pt": 2, + "sh": true, + }, + "value": 563, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hypnotic Cat", + "pt": 2, + "sh": true, + }, + "value": 8611111110, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Strawberry Cow", + "pt": 2, + }, + "value": 116320000000, + }, + { + "category": "Pet", + "configData": { + "id": "Leprechaun Cat", + "sh": true, + }, + "value": 1134, + }, + { + "category": "Pet", + "configData": { + "id": "Mantis Shrimp", + "pt": 1, + }, + "value": 395, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Leprechaun Kitsune", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Moray Eel", + "sh": true, + }, + "value": 423, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bobcat", + "pt": 2, + "sh": true, + }, + "value": 29762048000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Red Balloon Cat", + "pt": 2, + }, + "value": 96000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Wicked Empyrean Dominus", + "pt": 2, + "sh": true, + }, + "value": 465240, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Serpents", + "pt": 2, + "sh": true, + }, + "value": 77764, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dino Cat", + "pt": 2, + }, + "value": 6546782986, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bread Shiba", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pastel Sock Dragon", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Gummy Bear", + "pt": 2, + }, + "value": 819, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Party Corgi", + "pt": 2, + }, + "value": 22372708069, + }, + { + "category": "Pet", + "configData": { + "id": "Robot Bee", + "pt": 2, + "sh": true, + }, + "value": 2002, + }, + { + "category": "Pet", + "configData": { + "id": "Queen Slime", + "pt": 1, + }, + "value": 722, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixie Fox", + "pt": 2, + }, + "value": 504126527, + }, + { + "category": "Pet", + "configData": { + "id": "Glowy the Ghost", + "pt": 2, + "sh": true, + }, + "value": 460, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Monkey", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Desert Cat", + "sh": true, + }, + "value": 1076, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Spider", + "sh": true, + }, + "value": 1086408, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fragmented Golem", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Anime Cat", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mucki", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Disco Ball Dragon", + "pt": 2, + "sh": true, + }, + "value": 38426461, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Bunny", + "pt": 2, + "sh": true, + }, + "value": 76300000, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Unicorn", + "sh": true, + }, + "value": 105, + }, + { + "category": "Pet", + "configData": { + "id": "Quantum Dominus", + "pt": 2, + }, + "value": 3039, + }, + { + "category": "Pet", + "configData": { + "id": "Wild Fire Agony", + "pt": 1, + "sh": true, + }, + "value": 19399, + }, + { + "category": "Pet", + "configData": { + "id": "Recruiter Axolotl", + "sh": true, + }, + "value": 3332, + }, + { + "category": "Pet", + "configData": { + "id": "Sun Griffin", + "pt": 1, + }, + "value": 17850, + }, + { + "category": "Pet", + "configData": { + "id": "Penguin", + "pt": 1, + }, + "value": 297, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pastel Sock Dragon", + "pt": 2, + }, + "value": 5465472164, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Relic Deer", + "pt": 1, + "sh": true, + }, + "value": 27981352305, + }, + { + "category": "Pet", + "configData": { + "cv": 6, + "id": "Chroma Tiger", + "sh": true, + }, + "value": 9185600, + }, + { + "category": "Pet", + "configData": { + "cv": 5, + "id": "Chroma Tiger", + "sh": true, + }, + "value": 7166400, + }, + { + "category": "Pet", + "configData": { + "id": "Kung Fu Monkey", + "pt": 2, + "sh": true, + }, + "value": 307200000, + }, + { + "category": "Pet", + "configData": { + "id": "Retro Bulldog", + "pt": 2, + "sh": true, + }, + "value": 32168190, + }, + { + "category": "Pet", + "configData": { + "id": "Skeleton Cat", + "sh": true, + }, + "value": 1970, + }, + { + "category": "Pet", + "configData": { + "cv": 5, + "id": "Huge Chroma Tiger", + "pt": 2, + }, + "value": 459270024, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Raccoon", + "pt": 1, + "sh": true, + }, + "value": 3400000, + }, + { + "category": "Pet", + "configData": { + "id": "Stunt Raccoon", + "sh": true, + }, + "value": 37208, + }, + { + "category": "Pet", + "configData": { + "cv": 2, + "id": "Huge Chroma Tiger", + "sh": true, + }, + "value": 710542721, + }, + { + "category": "Pet", + "configData": { + "id": "Player Corgi", + "pt": 1, + "sh": true, + }, + "value": 853, + }, + { + "category": "Pet", + "configData": { + "id": "Robot", + "pt": 2, + }, + "value": 1871, + }, + { + "category": "Pet", + "configData": { + "id": "Telescope Owl", + "pt": 1, + }, + "value": 194179, + }, + { + "category": "Pet", + "configData": { + "id": "Color Ruins Parrot", + "sh": true, + }, + "value": 595665, + }, + { + "category": "Pet", + "configData": { + "id": "Tiki Dominus", + "pt": 1, + }, + "value": 8799, + }, + { + "category": "Pet", + "configData": { + "id": "A-36", + "sh": true, + }, + "value": 529005, + }, + { + "category": "Pet", + "configData": { + "id": "Blue Fluffy", + "pt": 2, + }, + "value": 5398, + }, + { + "category": "Pet", + "configData": { + "id": "Corrupt Octopus", + "sh": true, + }, + "value": 1922, + }, + { + "category": "Pet", + "configData": { + "id": "Colorful Dragon", + "pt": 2, + "sh": true, + }, + "value": 148383, + }, + { + "category": "Pet", + "configData": { + "id": "Train Conductor Cat", + "pt": 1, + }, + "value": 10387, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Griffin", + "sh": true, + }, + "value": 5000088, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Raccoon", + "pt": 1, + }, + "value": 767, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Dragon", + "sh": true, + }, + "value": 1001057, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Party Crown Corgi", + "pt": 2, + }, + "value": 31339872000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pterodactyl", + "pt": 1, + "sh": true, + }, + "value": 7292833280, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pufferfish", + "sh": true, + }, + "value": 5285463028, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Yeti", + "sh": true, + }, + "value": 2166333249, + }, + { + "category": "Pet", + "configData": { + "id": "Soccer Terrier", + "pt": 2, + "sh": true, + }, + "value": 480, + }, + { + "category": "Pet", + "configData": { + "id": "Emoji Dog", + "pt": 2, + "sh": true, + }, + "value": 118204228, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Cat", + "pt": 1, + }, + "value": 41801, + }, + { + "category": "Pet", + "configData": { + "id": "Fossil Dragon", + "pt": 1, + }, + "value": 2272, + }, + { + "category": "Pet", + "configData": { + "id": "Meteor Mole", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Dino Cat", + "pt": 1, + }, + "value": 24686, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Yin-Yang Grim Reaper", + "pt": 2, + }, + "value": 443024588800, + }, + { + "category": "Pet", + "configData": { + "id": "Buff Tiger", + "pt": 2, + }, + "value": 31680000, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Jaguar", + "pt": 2, + "sh": true, + }, + "value": 6748, + }, + { + "category": "Pet", + "configData": { + "id": "Gingerbread Cat", + "pt": 2, + }, + "value": 7961586, + }, + { + "category": "Pet", + "configData": { + "id": "Gem Mole", + "pt": 2, + "sh": true, + }, + "value": 969231, + }, + { + "category": "Pet", + "configData": { + "id": "Color Ruins Monkey", + "pt": 2, + }, + "value": 13725, + }, + { + "category": "Pet", + "configData": { + "id": "Chroma Tiger", + "pt": 1, + "sh": true, + }, + "value": 242456, + }, + { + "category": "Pet", + "configData": { + "id": "Stacked Dominus", + "pt": 1, + "sh": true, + }, + "value": 595, + }, + { + "category": "Pet", + "configData": { + "id": "Cheerful Yeti", + "pt": 1, + }, + "value": 3651, + }, + { + "category": "Pet", + "configData": { + "id": "Color Ruins Parrot", + "pt": 2, + "sh": true, + }, + "value": 10692061, + }, + { + "category": "Pet", + "configData": { + "id": "Deer", + "pt": 2, + }, + "value": 623, + }, + { + "category": "Pet", + "configData": { + "id": "Moose", + "pt": 1, + }, + "value": 309, + }, + { + "category": "Pet", + "configData": { + "id": "Color Ruins Parrot", + "pt": 2, + }, + "value": 1485538, + }, + { + "category": "Pet", + "configData": { + "id": "Demon Dog", + }, + "value": 7474, + }, + { + "category": "Pet", + "configData": { + "id": "Neon Cat", + "pt": 2, + "sh": true, + }, + "value": 1356371388, + }, + { + "category": "Pet", + "configData": { + "id": "Butterfly", + "sh": true, + }, + "value": 443, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 60", + }, + "value": 173885149, + }, + { + "category": "Pet", + "configData": { + "id": "Special Ops Skunk", + }, + "value": 15525335, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Diamond Chick", + }, + "value": 24345523, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Empyrean Owl", + }, + "value": 24650918, + }, + { + "category": "Consumable", + "configData": { + "id": "Spring Diamond Egg Booster", + "tn": 1, + }, + "value": 44025, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Empyrean Owl", + "pt": 1, + }, + "value": 30939801, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Diamond Chick", + "sh": true, + }, + "value": 115007608, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Special Ops Ram", + }, + "value": 44850852, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Galaxy Fox", + }, + "value": 26483940, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Galaxy Fox", + "pt": 1, + }, + "value": 24331043, + }, + { + "category": "Lootbox", + "configData": { + "id": "Blossom Gift", + }, + "value": 2530401, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Empyrean Owl", + "pt": 2, + }, + "value": 171668381, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Diamond Chick", + "pt": 1, + }, + "value": 29514973, + }, + { + "category": "Misc", + "configData": { + "id": "Spring Bluebell Token", + }, + "value": 3, + }, + { + "category": "Pet", + "configData": { + "id": "Painter Dog", + "sh": true, + }, + "value": 2562, + }, + { + "category": "Pet", + "configData": { + "id": "Gorilla", + "pt": 2, + }, + "value": 2440, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Special Ops Dog", + }, + "value": 86286573, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Galaxy Fox", + "pt": 2, + }, + "value": 176199661, + }, + { + "category": "Pet", + "configData": { + "id": "Special Ops Ram", + }, + "value": 8465009, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Chick", + "sh": true, + }, + "value": 87, + }, + { + "category": "Pet", + "configData": { + "id": "Bandana Shiba", + }, + "value": 61, + }, + { + "category": "Pet", + "configData": { + "id": "Bunny Cat", + }, + "value": 31, + }, + { + "category": "Pet", + "configData": { + "id": "Special Ops Ram", + "pt": 2, + "sh": true, + }, + "value": 201038554, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Dog", + "pt": 1, + }, + "value": 56, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Dog", + "pt": 1, + "sh": true, + }, + "value": 523, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Dog", + }, + "value": 45, + }, + { + "category": "Pet", + "configData": { + "id": "Special Ops Dog", + }, + "value": 20692702, + }, + { + "category": "Pet", + "configData": { + "id": "Special Ops Skunk", + "sh": true, + }, + "value": 29795848, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Diamond Chick", + "pt": 2, + }, + "value": 152870926, + }, + { + "category": "Pet", + "configData": { + "id": "Bandana Shiba", + "pt": 2, + }, + "value": 69, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Diamond Chick", + }, + "value": 4666622385, + }, + { + "category": "Pet", + "configData": { + "id": "Special Ops Dog", + "pt": 2, + }, + "value": 42754083, + }, + { + "category": "Pet", + "configData": { + "id": "Bunny Cat", + "pt": 1, + }, + "value": 91, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Diamond Chick", + "pt": 1, + "sh": true, + }, + "value": 378861904, + }, + { + "category": "Pet", + "configData": { + "id": "Bandana Shiba", + "pt": 1, + }, + "value": 31, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Dog", + "sh": true, + }, + "value": 44, + }, + { + "category": "Misc", + "configData": { + "id": "Spring Pink Rose Token", + }, + "value": 3, + }, + { + "category": "Misc", + "configData": { + "id": "Spring Yellow Sunflower Token", + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Special Ops Dog", + "pt": 2, + }, + "value": 831913158, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Dog", + "pt": 2, + }, + "value": 131, + }, + { + "category": "Misc", + "configData": { + "id": "Spring Red Tulip Token", + }, + "value": 3, + }, + { + "category": "Pet", + "configData": { + "id": "Special Ops Ram", + "pt": 2, + }, + "value": 23978823, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Quartz Fox", + "pt": 1, + "sh": true, + }, + "value": 982167980, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Empyrean Owl", + "pt": 1, + "sh": true, + }, + "value": 469434099, + }, + { + "category": "Pet", + "configData": { + "id": "Bunny Cat", + "pt": 2, + "sh": true, + }, + "value": 5261, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leafy Yeti", + }, + "value": 24443122, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Dino", + }, + "value": 28541089, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Quartz Fox", + }, + "value": 44803329, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Chick", + "pt": 1, + }, + "value": 52, + }, + { + "category": "Pet", + "configData": { + "id": "Special Ops Ram", + "sh": true, + }, + "value": 23175258, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Special Ops Ram", + "pt": 2, + }, + "value": 536347052, + }, + { + "category": "Pet", + "configData": { + "id": "Bunny Cat", + "sh": true, + }, + "value": 34, + }, + { + "category": "Pet", + "configData": { + "id": "Bunny Cat", + "pt": 2, + }, + "value": 162, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Dog", + "pt": 2, + "sh": true, + }, + "value": 5036, + }, + { + "category": "Pet", + "configData": { + "id": "Bandana Shiba", + "sh": true, + }, + "value": 62, + }, + { + "category": "Pet", + "configData": { + "id": "Special Ops Skunk", + "pt": 2, + }, + "value": 28305990, + }, + { + "category": "Pet", + "configData": { + "id": "Bandana Shiba", + "pt": 2, + "sh": true, + }, + "value": 6425, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Fox", + "pt": 2, + "sh": true, + }, + "value": 18147600, + }, + { + "category": "Pet", + "configData": { + "id": "Tree Frog", + "pt": 2, + "sh": true, + }, + "value": 122530, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Empyrean Owl", + "sh": true, + }, + "value": 176722402, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Snail", + }, + "value": 33307981, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Onion", + }, + "value": 22393393, + }, + { + "category": "Booth", + "configData": { + "id": "Blossom", + }, + "value": 1959627, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Chick", + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Hydra", + "pt": 1, + }, + "value": 56792, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Blossom", + }, + "value": 4919330, + }, + { + "category": "Pet", + "configData": { + "id": "Special Ops Dog", + "sh": true, + }, + "value": 35528159, + }, + { + "category": "Pet", + "configData": { + "id": "Jolly Penguin", + "pt": 1, + }, + "value": 404, + }, + { + "category": "Pet", + "configData": { + "id": "Leafy Deer", + "pt": 1, + }, + "value": 14434215, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Chick", + "pt": 2, + "sh": true, + }, + "value": 1160, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leafy Yeti", + "sh": true, + }, + "value": 122494389, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Onion", + "pt": 1, + }, + "value": 26316272, + }, + { + "category": "Pet", + "configData": { + "id": "Tree Frog", + "pt": 2, + }, + "value": 507, + }, + { + "category": "Pet", + "configData": { + "id": "Special Ops Skunk", + "pt": 2, + "sh": true, + }, + "value": 291849284, + }, + { + "category": "Pet", + "configData": { + "id": "Sunflower Calf", + "pt": 2, + }, + "value": 202, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sunflower Calf", + }, + "value": 30872747, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Dragon", + }, + "value": 32241432, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Chick", + "pt": 2, + }, + "value": 144, + }, + { + "category": "Pet", + "configData": { + "id": "Tree Frog", + "sh": true, + }, + "value": 21, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Diamond Monkey", + }, + "value": 5994984933, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Galaxy Fox", + "pt": 1, + "sh": true, + }, + "value": 573849770, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leafy Yeti", + "pt": 1, + }, + "value": 25553447, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Special Ops Goat", + }, + "value": 6250804917, + }, + { + "category": "Pet", + "configData": { + "id": "Sunflower Calf", + "pt": 2, + "sh": true, + }, + "value": 14050, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Quartz Fox", + "sh": true, + }, + "value": 505732236, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Special Ops Ram", + "sh": true, + }, + "value": 291606115, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Onion", + "pt": 2, + }, + "value": 572, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Red Dragon", + }, + "value": 4401530332, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Diamond Chick", + "pt": 2, + "sh": true, + }, + "value": 3076028647, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Special Ops Dog", + "pt": 2, + "sh": true, + }, + "value": 4637606388, + }, + { + "category": "Pet", + "configData": { + "id": "Tree Frog", + }, + "value": 28, + }, + { + "category": "Pet", + "configData": { + "id": "Hydra Cat", + "sh": true, + }, + "value": 465129, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Bee", + "pt": 1, + "sh": true, + }, + "value": 19062046382, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Dino", + }, + "value": 68, + }, + { + "category": "Pet", + "configData": { + "id": "Exquisite Elephant", + "sh": true, + }, + "value": 27580064, + }, + { + "category": "Pet", + "configData": { + "id": "Bunny Cat", + "pt": 1, + "sh": true, + }, + "value": 100, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Onion", + }, + "value": 27, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Red Dragon", + "pt": 1, + }, + "value": 5050505973, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Onion", + "pt": 2, + "sh": true, + }, + "value": 66242, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Quartz Fox", + "pt": 1, + }, + "value": 31665935, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Onion", + "pt": 1, + "sh": true, + }, + "value": 15174, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Onion", + "sh": true, + }, + "value": 630, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Quartz Fox", + "pt": 2, + }, + "value": 203109605, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Dragon", + "pt": 1, + }, + "value": 353217, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Dino", + "pt": 2, + }, + "value": 297, + }, + { + "category": "Pet", + "configData": { + "id": "Police Cat", + "pt": 1, + }, + "value": 104864, + }, + { + "category": "Pet", + "configData": { + "id": "Neon Griffin", + "pt": 2, + "sh": true, + }, + "value": 2915691520, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Rhino", + "pt": 1, + }, + "value": 70120006, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Dino", + "pt": 2, + "sh": true, + }, + "value": 6009, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Axolotl", + "pt": 1, + }, + "value": 3362, + }, + { + "category": "Pet", + "configData": { + "id": "Hydra Axolotl", + }, + "value": 1016, + }, + { + "category": "Pet", + "configData": { + "id": "Bandana Shiba", + "pt": 1, + "sh": true, + }, + "value": 137, + }, + { + "category": "Pet", + "configData": { + "id": "Sunflower Calf", + }, + "value": 60, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Onion", + "pt": 1, + }, + "value": 62, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Snail", + "sh": true, + }, + "value": 198591182, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Dragon", + "sh": true, + }, + "value": 238135390, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Butterfly Pony", + }, + "value": 26310946, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Dragon", + }, + "value": 30, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Dino", + "sh": true, + }, + "value": 155703685, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Neon Twilight Dragon", + "pt": 1, + }, + "value": 5040191303, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Butterfly Pony", + "pt": 2, + }, + "value": 201331408, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sunflower Calf", + "sh": true, + }, + "value": 186095615, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Axolotl", + "pt": 1, + "sh": true, + }, + "value": 597427, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Galaxy Fox", + "sh": true, + }, + "value": 230932046, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tennis Squirrel", + "pt": 2, + "sh": true, + }, + "value": 4270720000, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Dragon", + "pt": 2, + }, + "value": 222, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Bunny Ball", + "pt": 2, + "sh": true, + }, + "value": 3746269300, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Fluffy Cat", + }, + "value": 130571036653, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Agony", + "pt": 2, + }, + "value": 2125, + }, + { + "category": "Pet", + "configData": { + "id": "Withered Agony", + }, + "value": 44, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Butterfly Pony", + "pt": 1, + }, + "value": 31314385, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Dragon", + "pt": 1, + }, + "value": 35, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Snail", + "pt": 1, + }, + "value": 41782561, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sunflower Calf", + "pt": 1, + }, + "value": 46338323, + }, + { + "category": "Pet", + "configData": { + "id": "Withered Agony", + "pt": 1, + }, + "value": 93, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Dragon", + "pt": 1, + }, + "value": 54908145, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Dino", + "pt": 1, + }, + "value": 40270497, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cinnamon Bunny", + "pt": 1, + "sh": true, + }, + "value": 1000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Red Dragon", + "pt": 2, + }, + "value": 20199486939, + }, + { + "category": "Pet", + "configData": { + "id": "Withered Agony", + "pt": 2, + }, + "value": 542, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Dragon", + "pt": 2, + "sh": true, + }, + "value": 1901, + }, + { + "category": "Pet", + "configData": { + "id": "Withered Agony", + "pt": 2, + "sh": true, + }, + "value": 53054, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Diamond Chick", + "pt": 1, + }, + "value": 5361493528, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Dragon", + "pt": 1, + "sh": true, + }, + "value": 365, + }, + { + "category": "Pet", + "configData": { + "id": "Withered Agony", + "pt": 1, + "sh": true, + }, + "value": 15109, + }, + { + "category": "Pet", + "configData": { + "id": "Withered Agony", + "sh": true, + }, + "value": 269, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Butterfly Pony", + "sh": true, + }, + "value": 141378727, + }, + { + "category": "Pet", + "configData": { + "id": "Butterfly Pony", + "pt": 2, + }, + "value": 798138, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Unicorn", + "pt": 2, + "sh": true, + }, + "value": 138373050, + }, + { + "category": "Pet", + "configData": { + "id": "Nightfall Pegasus", + "sh": true, + }, + "value": 62318146, + }, + { + "category": "Pet", + "configData": { + "id": "Leafy Yeti", + }, + "value": 9945, + }, + { + "category": "Pet", + "configData": { + "id": "Tree Frog", + "pt": 1, + }, + "value": 30, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dawn Phoenix", + }, + "value": 29348963, + }, + { + "category": "Pet", + "configData": { + "id": "Wicked Agony", + "pt": 1, + }, + "value": 1420529, + }, + { + "category": "Pet", + "configData": { + "id": "Sticky Lamb", + "pt": 2, + "sh": true, + }, + "value": 796555, + }, + { + "category": "Pet", + "configData": { + "id": "Leafy Yeti", + "pt": 2, + }, + "value": 219739, + }, + { + "category": "Pet", + "configData": { + "id": "Machete Dog", + "pt": 2, + "sh": true, + }, + "value": 8591998720, + }, + { + "category": "Pet", + "configData": { + "id": "Butterfly Pony", + }, + "value": 102302, + }, + { + "category": "Pet", + "configData": { + "id": "Dawn Phoenix", + "pt": 2, + }, + "value": 12591515, + }, + { + "category": "Pet", + "configData": { + "id": "Player Gecko", + "pt": 1, + "sh": true, + }, + "value": 5523, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dawn Phoenix", + "pt": 2, + }, + "value": 248266126, + }, + { + "category": "Pet", + "configData": { + "id": "Sunflower Calf", + "pt": 1, + "sh": true, + }, + "value": 76, + }, + { + "category": "Pet", + "configData": { + "id": "Fire Horse", + "pt": 2, + }, + "value": 87, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Scribe Squirrel", + "pt": 2, + }, + "value": 16146328414, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Dino", + "pt": 1, + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Chick", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Leafy Yeti", + "pt": 2, + "sh": true, + }, + "value": 2818235, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Special Ops Dog", + "sh": true, + }, + "value": 540171250, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Scribe Squirrel", + }, + "value": 4787943938, + }, + { + "category": "Pet", + "configData": { + "id": "Dawn Phoenix", + }, + "value": 922911, + }, + { + "category": "Pet", + "configData": { + "id": "Slime", + "sh": true, + }, + "value": 301, + }, + { + "category": "Pet", + "configData": { + "id": "Flamortuus", + "pt": 2, + }, + "value": 2275, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Butterfly Pony", + "pt": 1, + "sh": true, + }, + "value": 1151876123, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Dino", + "sh": true, + }, + "value": 35, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dawn Phoenix", + "pt": 2, + "sh": true, + }, + "value": 4628820531, + }, + { + "category": "Pet", + "configData": { + "id": "Circuit Slime", + "pt": 1, + "sh": true, + }, + "value": 70000, + }, + { + "category": "Pet", + "configData": { + "id": "Sprout Pegasus", + "sh": true, + }, + "value": 8015, + }, + { + "category": "Pet", + "configData": { + "id": "Leafy Yeti", + "pt": 1, + }, + "value": 3331, + }, + { + "category": "Pet", + "configData": { + "id": "Dawn Phoenix", + "pt": 1, + }, + "value": 2772282, + }, + { + "category": "Pet", + "configData": { + "id": "Butterfly Pony", + "pt": 2, + "sh": true, + }, + "value": 23828657, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Sock Bear", + "pt": 1, + }, + "value": 1140, + }, + { + "category": "Pet", + "configData": { + "id": "Butterfly Pony", + "sh": true, + }, + "value": 762348, + }, + { + "category": "Pet", + "configData": { + "id": "Phantom Wolf", + "pt": 1, + }, + "value": 3055776, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Withered Agony", + }, + "value": 5288139542, + }, + { + "category": "Pet", + "configData": { + "id": "Dawn Phoenix", + "sh": true, + }, + "value": 4554689, + }, + { + "category": "Pet", + "configData": { + "id": "Demon Cyclops", + "pt": 2, + "sh": true, + }, + "value": 347881, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dawn Phoenix", + "pt": 1, + }, + "value": 39701616, + }, + { + "category": "Pet", + "configData": { + "id": "Butterfly Pony", + "pt": 1, + }, + "value": 687048, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Onion", + "pt": 2, + }, + "value": 154555857, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Butterfly", + "sh": true, + }, + "value": 26396701762, + }, + { + "category": "Pet", + "configData": { + "id": "Leafy Yeti", + "sh": true, + }, + "value": 22954, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Computer", + "pt": 2, + "sh": true, + }, + "value": 396000, + }, + { + "category": "Pet", + "configData": { + "id": "Fire Cat", + "pt": 2, + }, + "value": 5672, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Dragon", + "sh": true, + }, + "value": 74, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dawn Phoenix", + "pt": 1, + "sh": true, + }, + "value": 847050551, + }, + { + "category": "Pet", + "configData": { + "id": "Reaper Cat", + "pt": 1, + "sh": true, + }, + "value": 696861, + }, + { + "category": "Pet", + "configData": { + "id": "Fish in a Bucket", + "pt": 1, + }, + "value": 666, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dot Matrix Cat", + "pt": 2, + "sh": true, + }, + "value": 5548000000, + }, + { + "category": "Pet", + "configData": { + "id": "Sunflower Calf", + "pt": 1, + }, + "value": 37, + }, + { + "category": "Pet", + "configData": { + "id": "Sandcastle Dog", + "pt": 1, + }, + "value": 980, + }, + { + "category": "Pet", + "configData": { + "id": "Shimmering Fish", + "pt": 1, + "sh": true, + }, + "value": 202, + }, + { + "category": "Pet", + "configData": { + "id": "Corrupt Skeleton", + "pt": 1, + }, + "value": 32791, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bunny Cat", + }, + "value": 28916962, + }, + { + "category": "Pet", + "configData": { + "id": "Tree Frog", + "pt": 1, + "sh": true, + }, + "value": 4, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Dino", + "pt": 2, + }, + "value": 474, + }, + { + "category": "Pet", + "configData": { + "id": "Blue Marshmallow Chick", + "pt": 1, + }, + "value": 298, + }, + { + "category": "Pet", + "configData": { + "id": "UV Cat", + "pt": 2, + }, + "value": 10367, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bunny Cat", + "pt": 1, + }, + "value": 28790460, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leafy Yeti", + "pt": 2, + }, + "value": 150950598, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bunny Cat", + "pt": 2, + }, + "value": 171931364, + }, + { + "category": "Pet", + "configData": { + "id": "DJ Panda", + "sh": true, + }, + "value": 1337, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Pony", + "pt": 1, + }, + "value": 119, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Dog", + "sh": true, + }, + "value": 8833, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bloo Cat", + "pt": 1, + "sh": true, + }, + "value": 5802699568, + }, + { + "category": "Pet", + "configData": { + "id": "Special Ops Dog", + "pt": 2, + "sh": true, + }, + "value": 415365252, + }, + { + "category": "Pet", + "configData": { + "id": "Dawn Phoenix", + "pt": 2, + "sh": true, + }, + "value": 309534113, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Abomination", + "pt": 2, + "sh": true, + }, + "value": 6865445888, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Neon Griffin", + "pt": 2, + }, + "value": 5649016665, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dawn Phoenix", + "sh": true, + }, + "value": 167990823, + }, + { + "category": "Pet", + "configData": { + "id": "UV Kitsune Ball", + "pt": 2, + "sh": true, + }, + "value": 65286, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Empyrean Owl", + "pt": 2, + "sh": true, + }, + "value": 3518029275, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Squirrel", + "pt": 1, + "sh": true, + }, + "value": 1722141239, + }, + { + "category": "Pet", + "configData": { + "id": "Hyena", + "pt": 2, + "sh": true, + }, + "value": 725531, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bunny Cat", + "sh": true, + }, + "value": 243793500, + }, + { + "category": "Pet", + "configData": { + "id": "Dawn Phoenix", + "pt": 1, + "sh": true, + }, + "value": 43154606, + }, + { + "category": "Pet", + "configData": { + "id": "Jetpack Tiger", + "pt": 1, + "sh": true, + }, + "value": 2766, + }, + { + "category": "Pet", + "configData": { + "id": "Leafy Yeti", + "pt": 1, + "sh": true, + }, + "value": 1400514, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bunny Cat", + "pt": 1, + "sh": true, + }, + "value": 873753002, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Squirrel", + "pt": 2, + }, + "value": 19070, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Fairy", + "sh": true, + }, + "value": 628164920, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Spider", + "pt": 1, + }, + "value": 2148, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Dog", + "sh": true, + }, + "value": 305563426, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pineapple Cat", + "sh": true, + }, + "value": 25689307238, + }, + { + "category": "Pet", + "configData": { + "id": "Wizard Cat", + "pt": 1, + }, + "value": 2227, + }, + { + "category": "Pet", + "configData": { + "id": "Circuit Corgi", + "pt": 1, + }, + "value": 2085, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Dino", + "pt": 1, + "sh": true, + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Diamond Monkey", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Umbrella Dog", + "sh": true, + }, + "value": 1800, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sunflower Calf", + "pt": 2, + }, + "value": 198082504, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Snail", + "sh": true, + }, + "value": 1000000, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Dawn Phoenix", + }, + "value": 165236460465, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Diamond Chick", + "pt": 2, + }, + "value": 18624189702, + }, + { + "category": "Pet", + "configData": { + "id": "Butterfly Pony", + "pt": 1, + "sh": true, + }, + "value": 1958556, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Cat", + "pt": 1, + }, + "value": 1404082, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Butterfly", + "pt": 2, + "sh": true, + }, + "value": 4428779776, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Snail", + "pt": 2, + }, + "value": 321863627, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Dino", + "pt": 2, + }, + "value": 207044724, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Withered Agony", + "pt": 2, + }, + "value": 22732790069, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Yeti", + "pt": 1, + }, + "value": 3403, + }, + { + "category": "Pet", + "configData": { + "id": "Stunt Corgi", + "sh": true, + }, + "value": 9415, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Quartz Fox", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Kraken", + "pt": 1, + }, + "value": 3910, + }, + { + "category": "Pet", + "configData": { + "id": "Treasure Turtle", + "pt": 2, + }, + "value": 115, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Bear", + "sh": true, + }, + "value": 2471, + }, + { + "category": "Pet", + "configData": { + "id": "Stunt Raccoon", + "pt": 2, + "sh": true, + }, + "value": 177226, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Bunny", + "pt": 1, + }, + "value": 13230357, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Fluffy Cat", + "pt": 1, + }, + "value": 256460370523, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Yeti", + "pt": 1, + "sh": true, + }, + "value": 551569777, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Dragon", + "pt": 2, + }, + "value": 344329449, + }, + { + "category": "Pet", + "configData": { + "id": "Sunflower Calf", + "sh": true, + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leafy Yeti", + "pt": 1, + "sh": true, + }, + "value": 361291609, + }, + { + "category": "Pet", + "configData": { + "id": "Rift Dragon", + "sh": true, + }, + "value": 9865462, + }, + { + "category": "Pet", + "configData": { + "id": "Good vs Evil Dragon", + "pt": 1, + "sh": true, + }, + "value": 1544, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Diamond Monkey", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Blue Fluffy", + "pt": 1, + }, + "value": 3270, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Huge Chroma Unicorn", + "pt": 2, + "sh": true, + }, + "value": 7500000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Super Tiger", + "pt": 2, + "sh": true, + }, + "value": 16400000000, + }, + { + "category": "Pet", + "configData": { + "id": "Nature Axolotl", + "pt": 2, + }, + "value": 980084, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jolly Dino", + "pt": 2, + "sh": true, + }, + "value": 27440172019, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Red Dragon", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Withered Agony", + "pt": 1, + }, + "value": 5969793934, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Diamond Monkey", + "pt": 1, + }, + "value": 9893108968, + }, + { + "category": "Pet", + "configData": { + "id": "Comet Agony", + "sh": true, + }, + "value": 22438, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Scribe Squirrel", + "pt": 1, + }, + "value": 5163241841, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Seal", + "pt": 1, + "sh": true, + }, + "value": 51, + }, + { + "category": "Pet", + "configData": { + "id": "Slime", + "pt": 1, + }, + "value": 50, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Onion", + "pt": 2, + "sh": true, + }, + "value": 10591048959, + }, + { + "category": "Pet", + "configData": { + "id": "Mummy Bunny", + "pt": 2, + "sh": true, + }, + "value": 2152, + }, + { + "category": "Pet", + "configData": { + "id": "Sandcastle Cat", + "sh": true, + }, + "value": 548, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Corgi", + "sh": true, + }, + "value": 2500, + }, + { + "category": "Pet", + "configData": { + "id": "Scarecrow Dog", + "sh": true, + }, + "value": 3937, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gym Scorpion", + "pt": 2, + }, + "value": 603038830731, + }, + { + "category": "Pet", + "configData": { + "id": "Ooze Corgi", + "sh": true, + }, + "value": 7320, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Glass Blobfish", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Special Ops Goat", + "pt": 2, + }, + "value": 23370239553, + }, + { + "category": "Pet", + "configData": { + "id": "Comet Cyclops", + "pt": 1, + "sh": true, + }, + "value": 57235, + }, + { + "category": "Pet", + "configData": { + "id": "Pristine Snake", + "pt": 2, + }, + "value": 240, + }, + { + "category": "Pet", + "configData": { + "id": "Totem Wolf", + "pt": 2, + "sh": true, + }, + "value": 298386679, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Onion", + "sh": true, + }, + "value": 185913398, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Axolotl", + "sh": true, + }, + "value": 6313, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stargazing Wolf", + "pt": 2, + "sh": true, + }, + "value": 9832000000, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Cow", + }, + "value": 691, + }, + { + "category": "Pet", + "configData": { + "id": "Gecko", + "pt": 1, + }, + "value": 57, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Scary Corgi", + "sh": true, + }, + "value": 220225280000, + }, + { + "category": "Pet", + "configData": { + "id": "Toy Chest Mimic", + "pt": 2, + "sh": true, + }, + "value": 325401, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bunny Cat", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Withered Agony", + "sh": true, + }, + "value": 20600631142, + }, + { + "category": "Pet", + "configData": { + "id": "Carnival Panda", + }, + "value": 663, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Arcade Dog", + "pt": 2, + "sh": true, + }, + "value": 2608400171, + }, + { + "category": "Pet", + "configData": { + "id": "Ghoul Horse", + "pt": 2, + "sh": true, + }, + "value": 11200045, + }, + { + "category": "Pet", + "configData": { + "id": "Little Melty", + "sh": true, + }, + "value": 14550, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Wolverine", + "sh": true, + }, + "value": 625834, + }, + { + "category": "Card", + "configData": { + "id": "Huge Nightmare Dog Card", + "pt": 1, + "sh": true, + }, + "value": 738236706, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Butterfly Pony", + "pt": 2, + "sh": true, + }, + "value": 6272089333, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chad Bunny", + "pt": 2, + }, + "value": 3319437950, + }, + { + "category": "Pet", + "configData": { + "id": "Tiger", + "pt": 2, + }, + "value": 563, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Special Ops Ram", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Bobcat", + "pt": 1, + }, + "value": 6588, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Leafy Yeti", + "pt": 2, + "sh": true, + }, + "value": 3100911336, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Kraken", + "pt": 2, + }, + "value": 49492839070, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Kawaii Cat", + "pt": 2, + }, + "value": 195000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Onion", + "pt": 1, + "sh": true, + }, + "value": 819932526, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Husky", + "pt": 1, + }, + "value": 317, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bandana Shiba", + }, + "value": 22575454, + }, + { + "category": "Pet", + "configData": { + "id": "Basketball Corgi", + "pt": 1, + }, + "value": 250251, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Keyboard Cat", + }, + "value": 240735745, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Keyboard Cat", + "pt": 2, + }, + "value": 2304601307, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Keyboard Cat", + "pt": 1, + }, + "value": 317694184, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Keyboard Cat", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Potion Poodle", + "pt": 2, + "sh": true, + }, + "value": 350, + }, + { + "category": "Pet", + "configData": { + "id": "Chicken", + "pt": 1, + }, + "value": 336709, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mech Dino", + "pt": 2, + "sh": true, + }, + "value": 5910574878, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixie Bee", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Alien", + "pt": 1, + }, + "value": 68913, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Royal Pooka", + }, + "value": 57032133, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Irish Badger", + }, + "value": 4931143420, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Royal Pooka", + "pt": 1, + }, + "value": 17830201, + }, + { + "category": "Pet", + "configData": { + "id": "Wizard Westie", + "sh": true, + }, + "value": 384, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Dog", + "pt": 2, + }, + "value": 5008414, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Prickly Panda", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Keyboard Cat", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Fluffy Cat", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Special Ops Moth", + }, + "value": 178979852239, + }, + { + "category": "Pet", + "configData": { + "id": "Encrusted Wolf", + "sh": true, + }, + "value": 16901, + }, + { + "category": "Pet", + "configData": { + "id": "Platypus", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Irish Badger", + "pt": 1, + }, + "value": 6955670232, + }, + { + "category": "Pet", + "configData": { + "id": "Masked Fox", + "pt": 1, + }, + "value": 1140, + }, + { + "category": "Pet", + "configData": { + "id": "Archangel Cat", + "pt": 1, + }, + "value": 213, + }, + { + "category": "Pet", + "configData": { + "id": "Reindeer Cat", + "sh": true, + }, + "value": 693790, + }, + { + "category": "Pet", + "configData": { + "id": "Angry Dino", + "pt": 2, + "sh": true, + }, + "value": 309, + }, + { + "category": "Pet", + "configData": { + "id": "Telescope Owl", + }, + "value": 8612, + }, + { + "category": "Pet", + "configData": { + "id": "Quantum Dominus", + "pt": 1, + }, + "value": 426, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Goat", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccer Terrier", + "sh": true, + }, + "value": 353754107267, + }, + { + "category": "Pet", + "configData": { + "id": "Candycane Unicorn", + "sh": true, + }, + "value": 2740813, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Dove", + "pt": 1, + }, + "value": 17359, + }, + { + "category": "Pet", + "configData": { + "id": "Pog Monkey", + "pt": 1, + "sh": true, + }, + "value": 18522560, + }, + { + "category": "Pet", + "configData": { + "id": "Present Dragon", + }, + "value": 367084, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Abyss Carbuncle", + "sh": true, + }, + "value": 49824000000, + }, + { + "category": "Pet", + "configData": { + "id": "Cupcake", + "pt": 1, + }, + "value": 438, + }, + { + "category": "Pet", + "configData": { + "id": "UV Kitsune", + "pt": 2, + "sh": true, + }, + "value": 6713, + }, + { + "category": "Pet", + "configData": { + "id": "Surfboard Corgi", + "sh": true, + }, + "value": 4180, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Inferno Cat", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Squirrel", + "pt": 1, + }, + "value": 1077, + }, + { + "category": "Pet", + "configData": { + "id": "Puffin", + "pt": 1, + }, + "value": 352, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pumpkin Cat", + "pt": 2, + }, + "value": 32136800051, + }, + { + "category": "Pet", + "configData": { + "id": "Toy Chest Mimic", + "sh": true, + }, + "value": 30112, + }, + { + "category": "Pet", + "configData": { + "id": "Red Fox", + "pt": 2, + }, + "value": 3389, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Squirrel", + "sh": true, + }, + "value": 8002, + }, + { + "category": "Pet", + "configData": { + "id": "Psychic Seal", + "pt": 1, + "sh": true, + }, + "value": 156, + }, + { + "category": "Pet", + "configData": { + "id": "Forged Hedgehog", + "pt": 1, + }, + "value": 283, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Royal Pooka", + "pt": 2, + }, + "value": 1263660741, + }, + { + "category": "Pet", + "configData": { + "id": "White Bunny", + "sh": true, + }, + "value": 67, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Walrus", + "pt": 2, + "sh": true, + }, + "value": 7962696, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Bear", + "pt": 1, + "sh": true, + }, + "value": 430880000, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Dawn Phoenix", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bubble Hydra", + "sh": true, + }, + "value": 3146722253, + }, + { + "category": "Pet", + "configData": { + "id": "Void Alien", + "pt": 1, + "sh": true, + }, + "value": 14530, + }, + { + "category": "Pet", + "configData": { + "id": "Sun Agony", + }, + "value": 30482, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Cowboy Dog", + "pt": 1, + }, + "value": 241, + }, + { + "category": "Pet", + "configData": { + "id": "Cloud Bat", + "pt": 1, + }, + "value": 1526, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Diamond Cat", + "sh": true, + }, + "value": 14263797650, + }, + { + "category": "Pet", + "configData": { + "id": "Cloud Dog", + "pt": 1, + }, + "value": 135, + }, + { + "category": "Pet", + "configData": { + "id": "Ancient Dragon", + "pt": 1, + }, + "value": 4835, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Boxing Elephant", + "pt": 1, + "sh": true, + }, + "value": 132480000000, + }, + { + "category": "Pet", + "configData": { + "id": "Zombie Bull", + }, + "value": 3371, + }, + { + "category": "Pet", + "configData": { + "id": "Kung Fu Monkey", + "pt": 2, + }, + "value": 8648894, + }, + { + "category": "Pet", + "configData": { + "id": "Pog Shark", + "pt": 2, + }, + "value": 37008704, + }, + { + "category": "Pet", + "configData": { + "id": "Fancy Axolotl", + "pt": 2, + }, + "value": 19730521, + }, + { + "category": "Pet", + "configData": { + "id": "Nature Axolotl", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Snake", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Fire Cat", + "sh": true, + }, + "value": 201, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Chroma Phoenix", + "pt": 2, + }, + "value": 439900, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Galaxy Fox", + "pt": 2, + "sh": true, + }, + "value": 4395457785, + }, + { + "category": "Pet", + "configData": { + "id": "Heavenly Dove", + "sh": true, + }, + "value": 656, + }, + { + "category": "Pet", + "configData": { + "id": "Cyclops", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Willow Wisp", + "pt": 2, + "sh": true, + }, + "value": 19200, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Clover Owl", + "pt": 1, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Yeti", + "sh": true, + }, + "value": 1067, + }, + { + "category": "Pet", + "configData": { + "id": "Shimmering Octopus", + "pt": 1, + }, + "value": 122, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Deer", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Plague Dragon", + "sh": true, + }, + "value": 9975, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Agony", + "pt": 1, + }, + "value": 2064949, + }, + { + "category": "Pet", + "configData": { + "id": "Prince Donkey", + "pt": 1, + "sh": true, + }, + "value": 256, + }, + { + "category": "Pet", + "configData": { + "id": "Brain", + "pt": 1, + }, + "value": 7459, + }, + { + "category": "Pet", + "configData": { + "id": "Gleebo The Alien", + "pt": 1, + }, + "value": 257, + }, + { + "category": "Pet", + "configData": { + "id": "Color Ruins Monkey", + "pt": 1, + }, + "value": 1523, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Cat", + "sh": true, + }, + "value": 132, + }, + { + "category": "Pet", + "configData": { + "id": "Turbo Cheetah", + "sh": true, + }, + "value": 1465, + }, + { + "category": "Pet", + "configData": { + "id": "Gummy Raccoon", + "sh": true, + }, + "value": 2183010, + }, + { + "category": "Pet", + "configData": { + "id": "Rock Monkey", + "sh": true, + }, + "value": 600530, + }, + { + "category": "Pet", + "configData": { + "id": "Ooze Cat", + "pt": 1, + }, + "value": 11457, + }, + { + "category": "Pet", + "configData": { + "id": "Puffin", + "sh": true, + }, + "value": 6775, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Abstract", + }, + "value": 268185787, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Abstract Agony", + "pt": 2, + }, + "value": 3933671211, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Abstract Agony", + }, + "value": 281250510, + }, + { + "category": "Booth", + "configData": { + "id": "Abstract", + }, + "value": 117147506, + }, + { + "category": "Card", + "configData": { + "id": "Ninja Otter Card", + "pt": 2, + "sh": true, + }, + "value": 1854284, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Abstract Agony", + "pt": 1, + }, + "value": 428313881, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Abstract Dominus", + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Black Hole Angelus Ball", + "pt": 1, + "sh": true, + }, + "value": 2947311881, + }, + { + "category": "Consumable", + "configData": { + "id": "Spring Raffle Ticket Booster", + "tn": 1, + }, + "value": 56292, + }, + { + "category": "Consumable", + "configData": { + "id": "Spring Upgrade Token Booster", + "tn": 1, + }, + "value": 302611, + }, + { + "category": "Booth", + "configData": { + "id": "Noob", + }, + "value": 941093, + }, + { + "category": "Consumable", + "configData": { + "id": "Spring Hatch Speed Booster", + "tn": 1, + }, + "value": 2058149, + }, + { + "category": "Booth", + "configData": { + "id": "Dog", + }, + "value": 85984, + }, + { + "category": "Consumable", + "configData": { + "id": "Spring Egg Token Booster", + "tn": 1, + }, + "value": 94799, + }, + { + "category": "Misc", + "configData": { + "id": "Spring Boss Chest Token", + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Inkwell Wisp", + }, + "value": 22648382, + }, + { + "category": "Booth", + "configData": { + "id": "Bunny", + }, + "value": 175206, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Stingray", + }, + "value": 45141296, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Pixel Griffin", + }, + "value": 50732424, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Evil Raven", + }, + "value": 43409243, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tree Frog", + }, + "value": 24751268, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Egg Piggy", + "pt": 1, + }, + "value": 31408092, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Egg Piggy", + }, + "value": 26464390, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vibrant Whale", + }, + "value": 26896129, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Starry Eye Bunny", + }, + "value": 34030273, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Elephant", + "pt": 2, + "sh": true, + }, + "value": 2488, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Quantum Griffin", + }, + "value": 24254334, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tree Frog", + "pt": 1, + }, + "value": 26213183, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Frankenpup Dog", + }, + "value": 53153925, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Carnival Panda", + }, + "value": 42024027, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Elephant", + "pt": 2, + }, + "value": 260, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vibrant Whale", + "pt": 1, + }, + "value": 30555551, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tree Frog", + "sh": true, + }, + "value": 125652821, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Kitten", + }, + "value": 27915057, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Rogue Squid", + }, + "value": 57150008, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Stingray", + "pt": 2, + }, + "value": 381504677, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Piggy", + "pt": 2, + }, + "value": 522, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Robot", + }, + "value": 26212656, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Piggy", + "pt": 2, + "sh": true, + }, + "value": 4162, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Frankenpup Dog", + "pt": 2, + }, + "value": 825722649, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Kitten", + "pt": 2, + "sh": true, + }, + "value": 3124, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Kitten", + "pt": 2, + }, + "value": 915, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Robot", + "pt": 1, + }, + "value": 40385193, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vibrant Whale", + "pt": 2, + }, + "value": 263068577, + }, + { + "category": "Pet", + "configData": { + "id": "Garden Cat", + "pt": 2, + }, + "value": 2645, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Inkwell Wisp", + "pt": 2, + }, + "value": 180904218, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Narwhal", + "pt": 2, + }, + "value": 214024, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Piggy", + }, + "value": 67, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Elephant", + }, + "value": 36, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Quantum Griffin", + "pt": 1, + }, + "value": 25766846, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Egg Piggy", + "sh": true, + }, + "value": 123744206, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Robot", + "pt": 2, + }, + "value": 254900425, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Pixel Griffin", + "sh": true, + }, + "value": 337764598, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Inkwell Wisp", + "pt": 1, + }, + "value": 22521983, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Quantum Griffin", + "pt": 2, + }, + "value": 164659798, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Kitten", + "pt": 1, + }, + "value": 34222247, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Egg Piggy", + "pt": 2, + }, + "value": 158401582, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Kitten", + "pt": 2, + }, + "value": 230796773, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Starry Eye Bunny", + "pt": 2, + }, + "value": 253822707, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tree Frog", + "pt": 2, + }, + "value": 148133299, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Piggy", + "pt": 1, + "sh": true, + }, + "value": 367, + }, + { + "category": "Booth", + "configData": { + "id": "Patchwork", + }, + "value": 36928462, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tree Frog", + "pt": 2, + "sh": true, + }, + "value": 2087064463, + }, + { + "category": "Pet", + "configData": { + "id": "Luxe Peacock", + "pt": 1, + }, + "value": 60563, + }, + { + "category": "Pet", + "configData": { + "id": "Garden Goblin", + "pt": 2, + }, + "value": 1627, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Kitten", + }, + "value": 45, + }, + { + "category": "Pet", + "configData": { + "id": "Scary Corgi", + "pt": 1, + }, + "value": 166, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Stingray", + "sh": true, + }, + "value": 437006926, + }, + { + "category": "Pet", + "configData": { + "id": "Garden Goblin", + "pt": 2, + "sh": true, + }, + "value": 90616, + }, + { + "category": "Pet", + "configData": { + "id": "Lamb Wolf", + "pt": 2, + "sh": true, + }, + "value": 2210, + }, + { + "category": "Pet", + "configData": { + "id": "Lamb Wolf", + "pt": 2, + }, + "value": 638, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Kitten", + "pt": 1, + }, + "value": 77, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Elephant", + "pt": 1, + }, + "value": 65, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Axolotl", + "pt": 2, + "sh": true, + }, + "value": 1680, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lamb Wolf", + }, + "value": 25664389, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Prison Cow", + }, + "value": 165032171, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Rogue Squid", + "sh": true, + }, + "value": 465482574, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Evil Raven", + "pt": 2, + }, + "value": 491449691, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Rogue Squid", + "pt": 2, + }, + "value": 461136764, + }, + { + "category": "Pet", + "configData": { + "id": "Cotton Candy Unicorn", + "pt": 1, + }, + "value": 1017, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Pegasus", + "pt": 1, + "sh": true, + }, + "value": 310, + }, + { + "category": "Pet", + "configData": { + "id": "Orange Parrot", + "pt": 1, + }, + "value": 1263, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Axolotl", + "pt": 1, + }, + "value": 10675, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Deer", + "sh": true, + }, + "value": 847, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Elephant", + "sh": true, + }, + "value": 198, + }, + { + "category": "Pet", + "configData": { + "id": "Silver Dragon", + "sh": true, + }, + "value": 25212509, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Elephant", + "pt": 1, + "sh": true, + }, + "value": 683, + }, + { + "category": "Pet", + "configData": { + "id": "Bloom Dominus", + }, + "value": 90767, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Piggy", + "pt": 1, + }, + "value": 46, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Piggy", + "sh": true, + }, + "value": 90, + }, + { + "category": "Pet", + "configData": { + "id": "Bloom Dominus", + "pt": 1, + }, + "value": 582508, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Yeti", + "pt": 1, + "sh": true, + }, + "value": 10218002, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Easter Axolotl", + "pt": 2, + }, + "value": 42765951703, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tree Frog", + "pt": 1, + "sh": true, + }, + "value": 329758384, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Prison Cow", + "pt": 1, + }, + "value": 252365750, + }, + { + "category": "Pet", + "configData": { + "id": "Bloom Dominus", + "pt": 2, + }, + "value": 391947, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bloom Dominus", + }, + "value": 29907524, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Butterfly Pony", + }, + "value": 4682295987, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fragmented Pterodactyl", + }, + "value": 80853568, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Cat", + "sh": true, + }, + "value": 42677, + }, + { + "category": "Pet", + "configData": { + "id": "Garden Goblin", + "pt": 1, + }, + "value": 417, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Kitten", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Lamb Wolf", + "pt": 1, + }, + "value": 144, + }, + { + "category": "Pet", + "configData": { + "id": "Koi Fish", + "pt": 2, + }, + "value": 30104, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Elephant", + }, + "value": 23908554, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Rogue Squid", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Lamb Wolf", + }, + "value": 19, + }, + { + "category": "Pet", + "configData": { + "id": "Springy Axolotl", + "pt": 2, + }, + "value": 1360, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Elephant", + "pt": 2, + }, + "value": 155056108, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luxe Axolotl", + }, + "value": 35169736, + }, + { + "category": "Pet", + "configData": { + "id": "Garden Goblin", + "pt": 1, + "sh": true, + }, + "value": 22518, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Kitten", + "sh": true, + }, + "value": 1234, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Frankenpup Dog", + "sh": true, + }, + "value": 436464984, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luxe Axolotl", + "pt": 1, + }, + "value": 49856059, + }, + { + "category": "Pet", + "configData": { + "id": "Garden Goblin", + }, + "value": 239, + }, + { + "category": "Pet", + "configData": { + "id": "Fluffy Cat", + "pt": 1, + }, + "value": 1968, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Fox", + "pt": 1, + }, + "value": 2610, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Abstract Dominus", + "pt": 1, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Kitten", + "sh": true, + }, + "value": 134272076, + }, + { + "category": "Pet", + "configData": { + "id": "Garden Goblin", + "sh": true, + }, + "value": 11190, + }, + { + "category": "Pet", + "configData": { + "id": "Bloom Dominus", + "pt": 2, + "sh": true, + }, + "value": 59199102, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Starry Eye Bunny", + "sh": true, + }, + "value": 231164974, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bloom Dominus", + "pt": 1, + }, + "value": 37481626, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Cocoa Cat", + "sh": true, + }, + "value": 2516, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Carnival Panda", + "pt": 2, + }, + "value": 1117073153, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghost Axolotl", + }, + "value": 71861437, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiki Dominus", + "pt": 2, + }, + "value": 7445694724, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Elephant", + "pt": 1, + }, + "value": 36665269, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bloom Dominus", + "sh": true, + }, + "value": 164753705, + }, + { + "category": "Pet", + "configData": { + "id": "Golden Retriever", + "pt": 1, + }, + "value": 236, + }, + { + "category": "Pet", + "configData": { + "id": "Bloom Dominus", + "sh": true, + }, + "value": 722470, + }, + { + "category": "Pet", + "configData": { + "id": "Heavenly Dove", + "pt": 1, + }, + "value": 633, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Evil Raven", + "sh": true, + }, + "value": 305799180, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Carnival Panda", + "pt": 1, + }, + "value": 170475682, + }, + { + "category": "Pet", + "configData": { + "id": "Scroll Dragon", + "pt": 1, + "sh": true, + }, + "value": 369, + }, + { + "category": "Pet", + "configData": { + "id": "Lamb Wolf", + "sh": true, + }, + "value": 682, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Bear", + "sh": true, + }, + "value": 97, + }, + { + "category": "Pet", + "configData": { + "id": "Lamb Wolf", + "pt": 1, + "sh": true, + }, + "value": 1412, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bloom Dominus", + "pt": 2, + }, + "value": 249656648, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Egg Piggy", + "pt": 2, + "sh": true, + }, + "value": 2345329726, + }, + { + "category": "Pet", + "configData": { + "id": "Red Balloon Panda", + "pt": 1, + }, + "value": 559551, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghost Axolotl", + "pt": 1, + }, + "value": 175379313, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Snowman", + "sh": true, + }, + "value": 542, + }, + { + "category": "Pet", + "configData": { + "id": "Cold Firefly", + "pt": 1, + }, + "value": 72, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Elephant", + "sh": true, + }, + "value": 173526658, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Brain", + }, + "value": 447425113, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Garden Goblin", + }, + "value": 4709748055, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crowned Dog", + }, + "value": 33404047020, + }, + { + "category": "Pet", + "configData": { + "id": "Bloom Dominus", + "pt": 1, + "sh": true, + }, + "value": 13602463, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Cat", + "pt": 2, + }, + "value": 74928961161, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Garden Goblin", + "pt": 1, + }, + "value": 4993439843, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Reindeer Axolotl", + "sh": true, + }, + "value": 5927584110, + }, + { + "category": "Pet", + "configData": { + "id": "Tennis Squirrel", + "sh": true, + }, + "value": 228820, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Pixel Griffin", + "pt": 2, + }, + "value": 420678022, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Inferno Stealth Cat", + "pt": 2, + "sh": true, + }, + "value": 8357011968, + }, + { + "category": "Pet", + "configData": { + "id": "Turtle in a Bucket", + "pt": 2, + }, + "value": 880275, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sprout Wyrmling", + "pt": 2, + }, + "value": 954203593, + }, + { + "category": "Pet", + "configData": { + "id": "Tropical Parrot", + "pt": 1, + "sh": true, + }, + "value": 4820000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Dog", + "pt": 1, + "sh": true, + }, + "value": 7122560000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luxe Axolotl", + "sh": true, + }, + "value": 502128312, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Piggy", + "sh": true, + }, + "value": 5369561253, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Brain", + "pt": 1, + }, + "value": 853694236, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Black Hole Angelus Ball", + "pt": 2, + }, + "value": 321868604160, + }, + { + "category": "Pet", + "configData": { + "id": "Coach Tiger", + "pt": 1, + "sh": true, + }, + "value": 19854, + }, + { + "category": "Booth", + "configData": { + "id": "Midnight", + }, + "value": 107669871, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sprout Wyrmling", + }, + "value": 128770595, + }, + { + "category": "Booth", + "configData": { + "id": "Coral", + }, + "value": 161402638, + }, + { + "category": "Pet", + "configData": { + "id": "Domortuus", + "pt": 1, + }, + "value": 5484, + }, + { + "category": "Pet", + "configData": { + "id": "Black Bear", + "pt": 1, + }, + "value": 675, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghoul Horse", + "pt": 1, + "sh": true, + }, + "value": 2568733902, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Garden Goblin", + "pt": 2, + }, + "value": 15307446145, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Yin-Yang Kitsune", + }, + "value": 247378565761, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lamb Wolf", + "sh": true, + }, + "value": 179339120, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luxe Axolotl", + "pt": 2, + }, + "value": 438915176, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lamb Wolf", + "pt": 1, + }, + "value": 26434672, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fragmented Pterodactyl", + "pt": 1, + }, + "value": 291171342, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lamb Wolf", + "pt": 1, + "sh": true, + }, + "value": 1924219915, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sprout Wyrmling", + "pt": 1, + }, + "value": 335095450, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Butterfly Pony", + "pt": 1, + }, + "value": 5134028771, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bloom Dominus", + "pt": 1, + "sh": true, + }, + "value": 774702275, + }, + { + "category": "Pet", + "configData": { + "id": "Quokka", + "pt": 2, + }, + "value": 20378, + }, + { + "category": "Pet", + "configData": { + "id": "Poseidon Dog", + "pt": 2, + }, + "value": 600, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lamb Wolf", + "pt": 2, + }, + "value": 142687883, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Bat", + "pt": 1, + }, + "value": 35, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Special Ops Goat", + "sh": true, + }, + "value": 27790207487, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valentines Unicorn", + "pt": 1, + "sh": true, + }, + "value": 5615063711, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Butterfly Pony", + "sh": true, + }, + "value": 22980293160, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Butterfly Pony", + "pt": 2, + }, + "value": 17907132640, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wireframe Cat", + "pt": 1, + }, + "value": 356651450, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Bear", + "pt": 2, + "sh": true, + }, + "value": 7000000, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Bloom Dominus", + }, + "value": 166239822621, + }, + { + "category": "Pet", + "configData": { + "id": "Loveserker", + "sh": true, + }, + "value": 916211200, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Garden Goblin", + "sh": true, + }, + "value": 14280743576, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bloom Dominus", + "pt": 2, + "sh": true, + }, + "value": 6003259553, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wireframe Cat", + }, + "value": 188199149, + }, + { + "category": "Pet", + "configData": { + "id": "Arctic Fox", + "pt": 1, + }, + "value": 31351, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Narwhal", + "sh": true, + }, + "value": 45000, + }, + { + "category": "Pet", + "configData": { + "id": "Dino", + "pt": 2, + "sh": true, + }, + "value": 28870, + }, + { + "category": "Pet", + "configData": { + "id": "Forged Cyclops", + "sh": true, + }, + "value": 1920010407, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Agony", + "sh": true, + }, + "value": 409862123, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Yeti", + "pt": 2, + "sh": true, + }, + "value": 673, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Meerkat", + "pt": 2, + }, + "value": 6841, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Dragon", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Silver Bison", + "pt": 2, + "sh": true, + }, + "value": 42278, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Garden Goblin", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Globe Corgi", + "pt": 2, + "sh": true, + }, + "value": 632632969, + }, + { + "category": "Pet", + "configData": { + "id": "Creepy Wolf", + "sh": true, + }, + "value": 1512, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Virus Griffin", + "pt": 1, + "sh": true, + }, + "value": 8414097818, + }, + { + "category": "Pet", + "configData": { + "id": "Panda", + "pt": 1, + }, + "value": 4395, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Cocoa Cat", + "pt": 1, + }, + "value": 41392, + }, + { + "category": "Pet", + "configData": { + "id": "Pajamas Dog", + "pt": 1, + }, + "value": 819, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Dragon", + "pt": 1, + }, + "value": 4855, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Mushrooms", + "pt": 1, + }, + "value": 2354, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Rock", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Egg Piggy", + "pt": 1, + "sh": true, + }, + "value": 612613931, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Goblin", + "pt": 2, + "sh": true, + }, + "value": 9083841094, + }, + { + "category": "Pet", + "configData": { + "id": "The Easter Bunny", + "pt": 2, + "sh": true, + }, + "value": 15780, + }, + { + "category": "Pet", + "configData": { + "id": "Ugly Duckling", + "pt": 1, + }, + "value": 71, + }, + { + "category": "Pet", + "configData": { + "id": "Painted Cat", + "pt": 2, + "sh": true, + }, + "value": 148562, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Otter", + "pt": 2, + "sh": true, + }, + "value": 22320000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Prison Cow", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lamb Wolf", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Chest Mimic", + "sh": true, + }, + "value": 94574425600, + }, + { + "category": "Pet", + "configData": { + "id": "Lunar Fox", + "pt": 2, + }, + "value": 2030, + }, + { + "category": "Pet", + "configData": { + "id": "Wild Fire Agony", + "pt": 1, + }, + "value": 1874608, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Dominus", + "pt": 2, + }, + "value": 561, + }, + { + "category": "Pet", + "configData": { + "id": "Quantum Fox", + "pt": 2, + }, + "value": 4517, + }, + { + "category": "Pet", + "configData": { + "id": "Quantum Fox", + "pt": 1, + }, + "value": 3413, + }, + { + "category": "Pet", + "configData": { + "id": "Santa Paws", + "pt": 1, + }, + "value": 2661927, + }, + { + "category": "Pet", + "configData": { + "id": "Hound of Hades", + "pt": 2, + }, + "value": 1139, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Cat", + "pt": 1, + }, + "value": 2661, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Storm Axolotl", + "sh": true, + }, + "value": 408769074832, + }, + { + "category": "Pet", + "configData": { + "id": "White Tiger", + "pt": 2, + }, + "value": 1501, + }, + { + "category": "Pet", + "configData": { + "id": "Pirate Cat", + "pt": 2, + }, + "value": 142, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Infernus", + "sh": true, + }, + "value": 2084, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pot of Gold Cat", + "pt": 1, + "sh": true, + }, + "value": 10078913828, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Scribe Squirrel", + "sh": true, + }, + "value": 21394646415, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Mosaic Cat", + "pt": 2, + }, + "value": 44520000000, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Leprechaun Fox", + }, + "value": 117368837241, + }, + { + "category": "Pet", + "configData": { + "id": "Good vs Evil Dragon", + "pt": 2, + "sh": true, + }, + "value": 3202, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Elephant", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clown Cat", + "pt": 2, + }, + "value": 2871956433, + }, + { + "category": "Pet", + "configData": { + "id": "Blue BIG Maskot", + "pt": 2, + "sh": true, + }, + "value": 213351602, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Stingray", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Kraken", + "pt": 2, + }, + "value": 6037, + }, + { + "category": "Pet", + "configData": { + "id": "Golf Griffin", + "sh": true, + }, + "value": 3372, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crowned Penguin", + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "cv": 5, + "id": "Huge Chroma Unicorn", + "pt": 2, + "sh": true, + }, + "value": 5624800000, + }, + { + "category": "Pet", + "configData": { + "id": "Horseshoe Crab", + "pt": 2, + }, + "value": 14166, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Corgi", + "sh": true, + }, + "value": 15741431, + }, + { + "category": "Pet", + "configData": { + "id": "Hippokin", + "pt": 1, + }, + "value": 1267, + }, + { + "category": "Pet", + "configData": { + "id": "Poison Turtle", + "pt": 1, + }, + "value": 1600, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Evil Raven", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Gingerbread Corgi", + "pt": 2, + "sh": true, + }, + "value": 187999999, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Baby Kitten", + "pt": 1, + "sh": true, + }, + "value": 2387069592, + }, + { + "category": "Pet", + "configData": { + "id": "Bubble Cat", + "pt": 2, + "sh": true, + }, + "value": 15495, + }, + { + "category": "Pet", + "configData": { + "id": "Icy Phoenix", + "sh": true, + }, + "value": 2438, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Flex Tiger", + "pt": 2, + "sh": true, + }, + "value": 25000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Bear", + "pt": 2, + "sh": true, + }, + "value": 13124, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Husky", + "pt": 2, + "sh": true, + }, + "value": 218, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Kitten", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Bear", + "sh": true, + }, + "value": 423, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Spring Elephant", + "pt": 1, + "sh": true, + }, + "value": 992027097, + }, + { + "category": "Pet", + "configData": { + "id": "Fireball Cat", + "sh": true, + }, + "value": 1955, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Stunt Corgi", + "pt": 2, + "sh": true, + }, + "value": 2969648010, + }, + { + "category": "Pet", + "configData": { + "id": "Fluffy Cat", + "pt": 1, + "sh": true, + }, + "value": 14599, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crystal Spider", + "pt": 1, + "sh": true, + }, + "value": 12038828800, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Cowboy Dog", + "pt": 2, + }, + "value": 1494, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Black Hole Angelus", + "pt": 2, + }, + "value": 100000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Samurai Dragon", + "sh": true, + }, + "value": 2429, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ghost Axolotl", + "pt": 1, + "sh": true, + }, + "value": 124760000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Starry Eye Bunny", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Chroma Tiger", + }, + "value": 30388, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chameleon", + "pt": 1, + }, + "value": 367315305, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Robber Cat", + "sh": true, + }, + "value": 1782427093, + }, + { + "category": "Pet", + "configData": { + "id": "Little Melty", + "pt": 2, + "sh": true, + }, + "value": 3160, + }, + { + "category": "Card", + "configData": { + "id": "Kung Fu Monkey Card", + "sh": true, + }, + "value": 1633155, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Corgi", + }, + "value": 2488, + }, + { + "category": "Pet", + "configData": { + "id": "Police Dog", + "pt": 1, + }, + "value": 4226, + }, + { + "category": "Pet", + "configData": { + "id": "Mrs. Claws", + "sh": true, + }, + "value": 80916289, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Deer", + "pt": 2, + }, + "value": 465, + }, + { + "category": "Pet", + "configData": { + "id": "Knight Beagle", + "pt": 2, + }, + "value": 1632, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wireframe Cat", + "pt": 2, + }, + "value": 980021915, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Starry", + }, + "value": 337186162, + }, + { + "category": "Booth", + "configData": { + "id": "Starry", + }, + "value": 168785563, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Starry Owl", + }, + "value": 184245528, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Starry Owl", + "pt": 2, + }, + "value": 4650146255, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Starry Owl", + "pt": 1, + }, + "value": 324277973, + }, + { + "category": "Pet", + "configData": { + "id": "Goblin", + "pt": 2, + }, + "value": 2770, + }, + { + "category": "Pet", + "configData": { + "id": "Telescope Owl", + "pt": 1, + "sh": true, + }, + "value": 1689157, + }, + { + "category": "Lootbox", + "configData": { + "id": "Hype Egg 3", + }, + "value": 17140726, + }, + { + "category": "Pet", + "configData": { + "id": "Caterpillar", + "pt": 2, + }, + "value": 9786, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Axolotl", + }, + "value": 36, + }, + { + "category": "Pet", + "configData": { + "id": "Caterpillar", + }, + "value": 492, + }, + { + "category": "Pet", + "configData": { + "id": "Caterpillar", + "pt": 1, + }, + "value": 1741, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Elephant", + "pt": 1, + }, + "value": 393, + }, + { + "category": "Pet", + "configData": { + "id": "Ruinous Angelus", + }, + "value": 27, + }, + { + "category": "Egg", + "configData": { + "id": "Huge Machine Egg 6", + }, + "value": 907075364, + }, + { + "category": "Pet", + "configData": { + "id": "Caterpillar", + "pt": 2, + "sh": true, + }, + "value": 561494, + }, + { + "category": "Pet", + "configData": { + "id": "Jackalope", + }, + "value": 550, + }, + { + "category": "Pet", + "configData": { + "id": "Jackalope", + "pt": 1, + }, + "value": 2271, + }, + { + "category": "Pet", + "configData": { + "id": "Ruinous Angelus", + "pt": 2, + }, + "value": 103, + }, + { + "category": "Pet", + "configData": { + "id": "Ruinous Angelus", + "pt": 1, + }, + "value": 28, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Griffin", + "pt": 2, + }, + "value": 70, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Griffin", + }, + "value": 22, + }, + { + "category": "Pet", + "configData": { + "id": "Ruinous Angelus", + "pt": 2, + "sh": true, + }, + "value": 1976, + }, + { + "category": "Pet", + "configData": { + "id": "Knight Golem", + }, + "value": 5093, + }, + { + "category": "Lootbox", + "configData": { + "id": "Time Trial Gift 2", + }, + "value": 497705, + }, + { + "category": "Pet", + "configData": { + "id": "Wicked Kirin", + "pt": 2, + }, + "value": 2405277, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Griffin", + "pt": 1, + }, + "value": 30, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Griffin", + "sh": true, + }, + "value": 22, + }, + { + "category": "Pet", + "configData": { + "id": "Knight Golem", + "pt": 1, + }, + "value": 8136, + }, + { + "category": "Pet", + "configData": { + "id": "Knight Golem", + "pt": 2, + }, + "value": 22929, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Griffin", + "pt": 1, + "sh": true, + }, + "value": 57, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Axolotl", + "pt": 2, + }, + "value": 75, + }, + { + "category": "Pet", + "configData": { + "id": "Jackalope", + "sh": true, + }, + "value": 3878, + }, + { + "category": "Pet", + "configData": { + "id": "Veil Horse", + }, + "value": 41265, + }, + { + "category": "Pet", + "configData": { + "id": "Veil Horse", + "pt": 2, + }, + "value": 252391, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Griffin", + "pt": 2, + "sh": true, + }, + "value": 166, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lunar Deer", + }, + "value": 20142842, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Axolotl", + "pt": 2, + "sh": true, + }, + "value": 364, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Palace Pooka", + }, + "value": 19992842, + }, + { + "category": "Pet", + "configData": { + "id": "Wicked Kirin", + }, + "value": 137287, + }, + { + "category": "Pet", + "configData": { + "id": "Knight Golem", + "pt": 2, + "sh": true, + }, + "value": 980864, + }, + { + "category": "Pet", + "configData": { + "id": "Ruinous Angelus", + "sh": true, + }, + "value": 36, + }, + { + "category": "Pet", + "configData": { + "id": "Ruinous Angelus", + "pt": 1, + "sh": true, + }, + "value": 170, + }, + { + "category": "Pet", + "configData": { + "id": "Caterpillar", + "sh": true, + }, + "value": 30639, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Slime", + }, + "value": 30329900, + }, + { + "category": "Pet", + "configData": { + "id": "Veil Horse", + "pt": 1, + }, + "value": 50201, + }, + { + "category": "Pet", + "configData": { + "id": "Wicked Kirin", + "pt": 1, + }, + "value": 905753, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Pixie", + }, + "value": 20, + }, + { + "category": "Pet", + "configData": { + "id": "Dino Cat", + "pt": 2, + }, + "value": 299101, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Pixie", + "pt": 2, + }, + "value": 60, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dino", + "sh": true, + }, + "value": 197717381, + }, + { + "category": "Pet", + "configData": { + "id": "Knight Golem", + "pt": 1, + "sh": true, + }, + "value": 522704, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ducky Magician", + }, + "value": 87793778, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Penguin", + }, + "value": 32286367, + }, + { + "category": "Pet", + "configData": { + "id": "Jackalope", + "pt": 2, + }, + "value": 4666, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Axolotl", + "pt": 1, + }, + "value": 28, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wisp Griffin", + }, + "value": 19351055, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Palace Pooka", + "pt": 1, + }, + "value": 20014790, + }, + { + "category": "Pet", + "configData": { + "id": "Caterpillar", + "pt": 1, + "sh": true, + }, + "value": 126752, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Pixie", + "pt": 1, + }, + "value": 22, + }, + { + "category": "Pet", + "configData": { + "id": "Jackalope", + "pt": 2, + "sh": true, + }, + "value": 336661, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Slime", + "pt": 2, + }, + "value": 208953025, + }, + { + "category": "Pet", + "configData": { + "id": "Jackalope", + "pt": 1, + "sh": true, + }, + "value": 130063, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Werewolf", + }, + "value": 4248195635, + }, + { + "category": "Pet", + "configData": { + "id": "Veil Horse", + "pt": 2, + "sh": true, + }, + "value": 14799546, + }, + { + "category": "Pet", + "configData": { + "id": "Lemur", + "sh": true, + }, + "value": 413, + }, + { + "category": "Pet", + "configData": { + "id": "Veil Horse", + "pt": 1, + "sh": true, + }, + "value": 5292702, + }, + { + "category": "Pet", + "configData": { + "id": "Virus Griffin", + "pt": 2, + }, + "value": 1981283, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dino", + }, + "value": 36414438, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Penguin", + "pt": 1, + }, + "value": 83748568, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Totem Cub", + }, + "value": 19869178, + }, + { + "category": "Pet", + "configData": { + "id": "Hamster", + "pt": 1, + }, + "value": 161, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Samurai Dragon", + "pt": 1, + }, + "value": 6967, + }, + { + "category": "Pet", + "configData": { + "id": "Wicked Kirin", + "pt": 2, + "sh": true, + }, + "value": 180662050, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Squirrel", + }, + "value": 20746283, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Squirrel", + "pt": 1, + }, + "value": 21878279, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lunar Deer", + "pt": 2, + }, + "value": 182064716, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Veil Horse", + }, + "value": 27021119, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Squirrel", + "pt": 2, + }, + "value": 204307775, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lunar Deer", + "sh": true, + }, + "value": 154372191, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Cat", + "sh": true, + }, + "value": 95472, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Penguin", + "pt": 2, + }, + "value": 308181273, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Pixie", + }, + "value": 21643083, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Cat", + "pt": 1, + "sh": true, + }, + "value": 2272, + }, + { + "category": "Pet", + "configData": { + "id": "Doll Cat", + "pt": 2, + "sh": true, + }, + "value": 10363, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lunar Deer", + "pt": 1, + }, + "value": 39410789, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Pixie", + "sh": true, + }, + "value": 63, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Totem Cub", + "pt": 1, + }, + "value": 21818857, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Palace Pooka", + "sh": true, + }, + "value": 357452505, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Slime", + "pt": 1, + }, + "value": 50265892, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Palace Pooka", + "pt": 2, + }, + "value": 146327467, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wicked Kirin", + }, + "value": 43505465, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Veil Horse", + "pt": 1, + }, + "value": 25387042, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Monkey", + "pt": 1, + "sh": true, + }, + "value": 5377440000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Midnight Axolotl", + "pt": 1, + }, + "value": 891581583, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Midnight Axolotl", + }, + "value": 267307203, + }, + { + "category": "Pet", + "configData": { + "id": "Naughty Cat", + "pt": 2, + "sh": true, + }, + "value": 438354, + }, + { + "category": "Pet", + "configData": { + "id": "Wicked Kirin", + "pt": 1, + "sh": true, + }, + "value": 84837804, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Lucky Cat", + }, + "value": 11553186337, + }, + { + "category": "Pet", + "configData": { + "id": "Kawaii Cat", + "pt": 2, + "sh": true, + }, + "value": 900000, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Seal", + "pt": 2, + "sh": true, + }, + "value": 5349, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ducky Magician", + "pt": 1, + }, + "value": 91345698, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Werewolf", + "pt": 1, + }, + "value": 4443304588, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wisp Griffin", + "sh": true, + }, + "value": 118825614, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fireball Cat", + "pt": 1, + "sh": true, + }, + "value": 2289546151, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wisp Griffin", + "pt": 1, + }, + "value": 27008077, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Alien", + }, + "value": 35390856, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Pixie", + "pt": 1, + }, + "value": 23217829, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Ducky", + "pt": 2, + "sh": true, + }, + "value": 209411, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ancestor Eagle", + }, + "value": 27247295, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Squirrel", + "sh": true, + }, + "value": 493453296, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Party Tiger", + }, + "value": 11183901859, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wicked Kirin", + "pt": 1, + }, + "value": 39185412, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Alien", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Knight Golem", + "sh": true, + }, + "value": 300269, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dino", + "pt": 1, + }, + "value": 94782211, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Slime", + "sh": true, + }, + "value": 179384374, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghost Axolotl", + "pt": 2, + }, + "value": 1358177883, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Irish Badger", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ninja Axolotl", + "pt": 2, + }, + "value": 1111012094, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Alien", + "sh": true, + }, + "value": 381482480, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wisp Griffin", + "pt": 2, + }, + "value": 134518201, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Axolotl", + "pt": 1, + "sh": true, + }, + "value": 668, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ruinous Angelus", + }, + "value": 4792708703, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Veil Horse", + "pt": 2, + }, + "value": 153998382, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Alien", + "pt": 1, + }, + "value": 75123528, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Pixie", + "pt": 2, + }, + "value": 136149401, + }, + { + "category": "Pet", + "configData": { + "id": "Hi-Tech Ladybug", + "pt": 1, + }, + "value": 35100580, + }, + { + "category": "Pet", + "configData": { + "id": "Cool Cat", + "pt": 1, + "sh": true, + }, + "value": 83347146, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Werewolf", + "pt": 1, + }, + "value": 106604971, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Pixie", + "pt": 2, + "sh": true, + }, + "value": 477, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Cat", + "pt": 2, + "sh": true, + }, + "value": 118600000000, + }, + { + "category": "Pet", + "configData": { + "id": "Super Tiger", + "pt": 2, + "sh": true, + }, + "value": 583456511, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wicked Kirin", + "pt": 2, + }, + "value": 336090605, + }, + { + "category": "Pet", + "configData": { + "id": "Jolly Penguin", + "sh": true, + }, + "value": 235297, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Jaguar", + "pt": 1, + "sh": true, + }, + "value": 1232133733, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Alien", + "pt": 2, + }, + "value": 239041185, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Werewolf", + }, + "value": 84607883, + }, + { + "category": "Pet", + "configData": { + "id": "Nurse Shark", + "sh": true, + }, + "value": 5576, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Werewolf", + "pt": 2, + }, + "value": 707081390, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Frostbyte Griffin", + "pt": 2, + "sh": true, + }, + "value": 3838800000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Totem Cub", + "sh": true, + }, + "value": 169336854, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dino", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dino", + "pt": 2, + }, + "value": 374275626, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Totem Cub", + "pt": 2, + }, + "value": 131097981, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Black Hole Kitsune", + "pt": 2, + }, + "value": 1480921272, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ducky Magician", + "pt": 2, + }, + "value": 939883530, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Withered Agony", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Kraken", + "sh": true, + }, + "value": 11583, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ancestor Eagle", + "pt": 1, + }, + "value": 28221287, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dot Matrix Cat", + "pt": 2, + }, + "value": 1418834759, + }, + { + "category": "Pet", + "configData": { + "id": "North Pole Wolf", + "pt": 1, + }, + "value": 2007040, + }, + { + "category": "Pet", + "configData": { + "id": "Hacked Cat", + "pt": 2, + "sh": true, + }, + "value": 1845253, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Frontman Jellyfish", + "pt": 2, + }, + "value": 9172770667, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Butterfly Pony", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ruinous Angelus", + "pt": 1, + }, + "value": 5049460771, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Rocket", + "sh": true, + }, + "value": 3121325847, + }, + { + "category": "Pet", + "configData": { + "id": "Police Cat", + }, + "value": 10796, + }, + { + "category": "Pet", + "configData": { + "id": "Recruiter Axolotl", + "pt": 1, + }, + "value": 145, + }, + { + "category": "Pet", + "configData": { + "id": "Umbrella Dog", + "pt": 1, + }, + "value": 121, + }, + { + "category": "Card", + "configData": { + "id": "Huge Pog Cat Card", + "pt": 1, + "sh": true, + }, + "value": 1493568000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Pixie", + "sh": true, + }, + "value": 177537630, + }, + { + "category": "Pet", + "configData": { + "id": "Junkyard Bat", + "pt": 1, + }, + "value": 999, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ducky Magician", + "sh": true, + }, + "value": 581523771, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ruinous Angelus", + "pt": 2, + }, + "value": 15222369223, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lunar Deer", + "pt": 1, + "sh": true, + }, + "value": 821241516, + }, + { + "category": "Pet", + "configData": { + "id": "Glimmer Goat", + "sh": true, + }, + "value": 1213667, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wisp Griffin", + "pt": 2, + "sh": true, + }, + "value": 2418343042, + }, + { + "category": "Pet", + "configData": { + "id": "Stargazing Bear", + "pt": 2, + "sh": true, + }, + "value": 322912193, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Starry Owl", + }, + "value": 43256447224, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Axolotl", + "sh": true, + }, + "value": 41, + }, + { + "category": "Pet", + "configData": { + "id": "Rhino", + "sh": true, + }, + "value": 1777, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Totem Cub", + "pt": 1, + "sh": true, + }, + "value": 754337317, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Dawn Phoenix", + "pt": 1, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Wild Galaxy Agony", + "pt": 2, + }, + "value": 19448, + }, + { + "category": "Pet", + "configData": { + "id": "Exquisite Parrot", + "pt": 1, + "sh": true, + }, + "value": 283929065, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wicked Kirin", + "sh": true, + }, + "value": 898502579, + }, + { + "category": "Pet", + "configData": { + "id": "Dark Fox", + "pt": 1, + }, + "value": 98510, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Monkey", + "pt": 1, + "sh": true, + }, + "value": 715478, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Penguin", + "sh": true, + }, + "value": 565800778, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Serpents", + "sh": true, + }, + "value": 42161, + }, + { + "category": "Pet", + "configData": { + "id": "Star Surfer", + }, + "value": 618, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wicked Kirin", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Nutcracker Cat", + "pt": 1, + }, + "value": 6000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Veil Horse", + "pt": 1, + "sh": true, + }, + "value": 749200184, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Corgi", + "pt": 1, + }, + "value": 3740, + }, + { + "category": "Pet", + "configData": { + "id": "Butterfly", + "pt": 1, + }, + "value": 3180, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Veil Horse", + "sh": true, + }, + "value": 260362742, + }, + { + "category": "Pet", + "configData": { + "id": "Circuit Cat", + "pt": 2, + }, + "value": 646, + }, + { + "category": "Pet", + "configData": { + "id": "Mouse", + "sh": true, + }, + "value": 1161, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Pixie", + "pt": 1, + "sh": true, + }, + "value": 354893773, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Spider", + "pt": 2, + }, + "value": 2294, + }, + { + "category": "Pet", + "configData": { + "id": "Flower Cat", + "sh": true, + }, + "value": 625, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Lucky Cat", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mushroom Pixie", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Werewolf", + "pt": 2, + }, + "value": 13451872007, + }, + { + "category": "Pet", + "configData": { + "id": "Runic Wolf", + "sh": true, + }, + "value": 17003, + }, + { + "category": "Pet", + "configData": { + "id": "Red Wolf", + "pt": 1, + "sh": true, + }, + "value": 561757, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ruinous Angelus", + "sh": true, + }, + "value": 17564034291, + }, + { + "category": "Pet", + "configData": { + "id": "Nature Axolotl", + }, + "value": 178397, + }, + { + "category": "Pet", + "configData": { + "cv": 1, + "id": "Huge Chroma Swan", + "pt": 2, + }, + "value": 676883504, + }, + { + "category": "Pet", + "configData": { + "id": "Dolphin", + "sh": true, + }, + "value": 372, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Cat", + "sh": true, + }, + "value": 2992, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Dog", + "pt": 1, + }, + "value": 433, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Scroll Dragon", + "pt": 1, + }, + "value": 7569101964, + }, + { + "category": "Pet", + "configData": { + "id": "Snowflake Pegasus", + "pt": 2, + }, + "value": 9200000, + }, + { + "category": "Pet", + "configData": { + "id": "Rose Cat", + "pt": 1, + }, + "value": 10417433, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Alien", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Quantum Tiger", + "pt": 2, + }, + "value": 7335, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Pixie", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Platypus", + }, + "value": 50744996, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nutcracker Cat", + "pt": 2, + "sh": true, + }, + "value": 6077600000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Scroll Dragon", + }, + "value": 4775764768, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Totem Cat", + "sh": true, + }, + "value": 623336748, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Griffin", + "pt": 1, + "sh": true, + }, + "value": 842, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lightning Bat", + "pt": 1, + "sh": true, + }, + "value": 1740398715, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Stunt Cat", + "pt": 1, + }, + "value": 12312558004, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Wolf", + "pt": 2, + }, + "value": 3036720000, + }, + { + "category": "Pet", + "configData": { + "id": "Rudolf", + "sh": true, + }, + "value": 10120949, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Warrior Beast", + "pt": 2, + }, + "value": 123064640000, + }, + { + "category": "Pet", + "configData": { + "id": "Meebo The Alien", + "pt": 1, + }, + "value": 9858, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Leafy Seahorse", + "pt": 2, + }, + "value": 62481088000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ancestor Eagle", + "pt": 2, + }, + "value": 338795761, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Platypus", + "pt": 2, + }, + "value": 335180695, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Keyboard Cat", + "pt": 2, + }, + "value": 89344773298, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Dove", + "pt": 2, + "sh": true, + }, + "value": 242902432, + }, + { + "category": "Pet", + "configData": { + "id": "Cat Magician", + "pt": 1, + }, + "value": 749, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Lucky Cat", + "pt": 1, + }, + "value": 13984577996, + }, + { + "category": "Pet", + "configData": { + "id": "Giraffe", + "pt": 2, + }, + "value": 866321, + }, + { + "category": "Pet", + "configData": { + "id": "Pot of Gold Cat", + "pt": 1, + }, + "value": 530632, + }, + { + "category": "Pet", + "configData": { + "id": "Steampunk Fish", + "pt": 1, + }, + "value": 951, + }, + { + "category": "Pet", + "configData": { + "id": "Steampunk Fish", + "pt": 2, + }, + "value": 92064, + }, + { + "category": "Pet", + "configData": { + "id": "Lunar Fox", + "sh": true, + }, + "value": 70396, + }, + { + "category": "Pet", + "configData": { + "id": "Toy Mouse", + "pt": 2, + }, + "value": 3952, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Bunny Ball", + "pt": 1, + "sh": true, + }, + "value": 64647, + }, + { + "category": "Pet", + "configData": { + "id": "Bull", + "sh": true, + }, + "value": 400, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Special Ops Moth", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Cold Ladybug", + "pt": 1, + }, + "value": 1316, + }, + { + "category": "Pet", + "configData": { + "id": "Nightfall Tiger", + "pt": 1, + "sh": true, + }, + "value": 536185586, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lunar Deer", + "pt": 2, + "sh": true, + }, + "value": 2505943939, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ancestor Eagle", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luxe Peacock", + "pt": 1, + "sh": true, + }, + "value": 1211520397, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Werewolf", + "sh": true, + }, + "value": 15875478822, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Platypus", + "sh": true, + }, + "value": 622144385, + }, + { + "category": "Pet", + "configData": { + "id": "Popcorn Cat", + "pt": 2, + }, + "value": 133059792, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Chest Mimic", + "pt": 2, + "sh": true, + }, + "value": 2593081, + }, + { + "category": "Pet", + "configData": { + "id": "Basket Bunny", + "pt": 2, + "sh": true, + }, + "value": 101402, + }, + { + "category": "Pet", + "configData": { + "id": "Pog Dragon", + "pt": 1, + "sh": true, + }, + "value": 4997165, + }, + { + "category": "Pet", + "configData": { + "id": "Corn Cat", + "pt": 2, + "sh": true, + }, + "value": 21831, + }, + { + "category": "Pet", + "configData": { + "id": "Teddy Bear", + "pt": 2, + }, + "value": 19988, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Samurai Dragon", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Toy Duck", + "pt": 1, + "sh": true, + }, + "value": 10158, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fragmented Pterodactyl", + "pt": 2, + }, + "value": 997891808, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Slime", + "pt": 1, + "sh": true, + }, + "value": 870730419, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Deerserker", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ancestor Eagle", + "sh": true, + }, + "value": 766818826, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Dino", + "sh": true, + }, + "value": 26975, + }, + { + "category": "Pet", + "configData": { + "id": "Super Seal", + "pt": 2, + "sh": true, + }, + "value": 1171972198, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Nutcracker Squirrel", + "sh": true, + }, + "value": 28747526400, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Lamb", + "pt": 2, + "sh": true, + }, + "value": 1021698381, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Bunny", + "pt": 2, + "sh": true, + }, + "value": 1009459981, + }, + { + "category": "Pet", + "configData": { + "id": "Ender Bunny", + "sh": true, + }, + "value": 344, + }, + { + "category": "Pet", + "configData": { + "id": "Froggy", + "pt": 2, + }, + "value": 145, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Bear", + "pt": 2, + "sh": true, + }, + "value": 1025364, + }, + { + "category": "Pet", + "configData": { + "id": "Gazelle", + "sh": true, + }, + "value": 3477, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Claw Beast", + "pt": 2, + }, + "value": 3230118502, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Bee", + "pt": 1, + "sh": true, + }, + "value": 504534, + }, + { + "category": "Pet", + "configData": { + "id": "Student Corgi", + "pt": 2, + "sh": true, + }, + "value": 5757, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Otter", + "sh": true, + }, + "value": 10000, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Cat", + "pt": 1, + "sh": true, + }, + "value": 830, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Phoenix", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Unicorn", + "pt": 2, + "sh": true, + }, + "value": 42000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Signature BIG Maskot", + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Telescope Owl", + "pt": 2, + }, + "value": 33266, + }, + { + "category": "Pet", + "configData": { + "id": "Mouse", + "pt": 2, + "sh": true, + }, + "value": 7921, + }, + { + "category": "Pet", + "configData": { + "id": "Unicorn Kitten", + "pt": 2, + }, + "value": 806, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Glitched Cat", + "pt": 2, + }, + "value": 4588491023, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Goldfish", + "sh": true, + }, + "value": 487598431, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Skelemelon", + "pt": 1, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Samurai Cat", + "pt": 2, + "sh": true, + }, + "value": 50000000, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Dog", + "pt": 2, + "sh": true, + }, + "value": 2430000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Goldfish", + }, + "value": 36605653, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Veil Horse", + "pt": 2, + "sh": true, + }, + "value": 3780812510, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Party Tiger", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Griffin", + "sh": true, + }, + "value": 1463, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Platypus", + "pt": 1, + }, + "value": 97280379, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Goldfish", + "pt": 1, + }, + "value": 98906280, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Dragon", + "pt": 2, + "sh": true, + }, + "value": 25999, + }, + { + "category": "Pet", + "configData": { + "id": "Cloud Hedgehog", + "pt": 2, + }, + "value": 978, + }, + { + "category": "Pet", + "configData": { + "id": "Hooded Piggy", + "pt": 2, + "sh": true, + }, + "value": 220142, + }, + { + "category": "Pet", + "configData": { + "id": "Hooded Bobcat", + "pt": 2, + "sh": true, + }, + "value": 5555, + }, + { + "category": "Pet", + "configData": { + "id": "Hooded Piggy", + "pt": 2, + }, + "value": 4780, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Bunny", + "pt": 1, + "sh": true, + }, + "value": 1000000, + }, + { + "category": "Pet", + "configData": { + "id": "Walrus", + "sh": true, + }, + "value": 1332, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wisp Griffin", + "pt": 1, + "sh": true, + }, + "value": 611757888, + }, + { + "category": "Pet", + "configData": { + "id": "Queen Piggy", + "pt": 1, + }, + "value": 1286, + }, + { + "category": "Pet", + "configData": { + "id": "Emoji Cat", + "pt": 2, + "sh": true, + }, + "value": 596120506, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vampire Dragon", + "pt": 2, + }, + "value": 5381573016, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Goldfish", + "pt": 2, + }, + "value": 442147073, + }, + { + "category": "Card", + "configData": { + "id": "Huge Arcane Dominus Card", + "pt": 1, + "sh": true, + }, + "value": 4873019978, + }, + { + "category": "Pet", + "configData": { + "id": "Lunar Moth", + "pt": 1, + }, + "value": 1559, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Platypus", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Platypus", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Happy Computer", + "pt": 1, + "sh": true, + }, + "value": 2152, + }, + { + "category": "Pet", + "configData": { + "id": "Kawaii Mushroom Fox", + "pt": 2, + }, + "value": 129357, + }, + { + "category": "Pet", + "configData": { + "id": "Circuit Griffin", + "pt": 1, + }, + "value": 2026, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Wise Cat", + "pt": 1, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Painted Balloon", + "sh": true, + }, + "value": 953, + }, + { + "category": "Pet", + "configData": { + "id": "Wyvern of Hades", + "pt": 1, + }, + "value": 3726, + }, + { + "category": "Pet", + "configData": { + "id": "Robot Ball", + "pt": 2, + "sh": true, + }, + "value": 979195, + }, + { + "category": "Pet", + "configData": { + "id": "Ghost Cat", + "sh": true, + }, + "value": 19674, + }, + { + "category": "Pet", + "configData": { + "id": "Woodpecker", + "pt": 2, + }, + "value": 131, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Raccoon", + "pt": 1, + }, + "value": 922957, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Bear", + "pt": 1, + }, + "value": 713, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Samurai Dragon", + "pt": 2, + }, + "value": 207860000000, + }, + { + "category": "Pet", + "configData": { + "id": "Blurred Bear Ball", + "sh": true, + }, + "value": 19446, + }, + { + "category": "Pet", + "configData": { + "id": "Pink Marshmallow Chick", + "pt": 2, + }, + "value": 748, + }, + { + "category": "Pet", + "configData": { + "id": "Teacher Cat", + }, + "value": 9642, + }, + { + "category": "Pet", + "configData": { + "id": "Pog Dog", + "pt": 1, + "sh": true, + }, + "value": 2000000, + }, + { + "category": "Pet", + "configData": { + "id": "Vampire Bat", + "pt": 1, + "sh": true, + }, + "value": 65440, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Cat", + "pt": 2, + }, + "value": 10041, + }, + { + "category": "Pet", + "configData": { + "id": "Werewolf", + "sh": true, + }, + "value": 12579, + }, + { + "category": "Pet", + "configData": { + "id": "Willow Wisp", + "pt": 2, + }, + "value": 3873, + }, + { + "category": "Pet", + "configData": { + "id": "Flamingo", + "pt": 2, + }, + "value": 2738, + }, + { + "category": "Pet", + "configData": { + "id": "Bat", + "pt": 2, + }, + "value": 416, + }, + { + "category": "Pet", + "configData": { + "id": "Happy Rock", + "pt": 2, + }, + "value": 630, + }, + { + "category": "Pet", + "configData": { + "id": "Chicken", + "pt": 2, + }, + "value": 158, + }, + { + "category": "Pet", + "configData": { + "id": "Elemental Phoenix", + "pt": 2, + "sh": true, + }, + "value": 9083788, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Parachute Monkey", + "pt": 2, + "sh": true, + }, + "value": 6171055687, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Student Corgi", + "pt": 2, + "sh": true, + }, + "value": 5600000000, + }, + { + "category": "Pet", + "configData": { + "id": "Safari Cat", + "pt": 1, + "sh": true, + }, + "value": 298, + }, + { + "category": "Pet", + "configData": { + "id": "Scarecrow Cat", + "sh": true, + }, + "value": 2308, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wicked Angelus", + "pt": 1, + "sh": true, + }, + "value": 3475296047, + }, + { + "category": "Pet", + "configData": { + "id": "Figgy Fox", + "pt": 1, + "sh": true, + }, + "value": 58028759, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wicked Kirin", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Starry Eye Bunny", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Robot", + "pt": 1, + "sh": true, + }, + "value": 5000, + }, + { + "category": "Pet", + "configData": { + "id": "Icemortuus", + "sh": true, + }, + "value": 21507, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sad Hamster", + "pt": 2, + }, + "value": 6076788829, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Wise Cat", + }, + "value": 135823535591, + }, + { + "category": "Pet", + "configData": { + "id": "Melted Rock", + "pt": 2, + }, + "value": 5280407, + }, + { + "category": "Pet", + "configData": { + "id": "Tennis Squirrel", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Raccoon", + "sh": true, + }, + "value": 2092, + }, + { + "category": "Pet", + "configData": { + "id": "Scarecrow Cat", + "pt": 1, + }, + "value": 52859, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Crowned Corgi", + }, + "value": 89200000000, + }, + { + "category": "Pet", + "configData": { + "id": "Steampunk Bat", + "pt": 2, + }, + "value": 7539395, + }, + { + "category": "Pet", + "configData": { + "id": "Umbrella Cat", + "pt": 1, + }, + "value": 433, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Palace Pooka", + "pt": 1, + "sh": true, + }, + "value": 1236348169, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Pufferfish", + "pt": 1, + }, + "value": 1275, + }, + { + "category": "Pet", + "configData": { + "id": "Holly Fawn", + }, + "value": 92503, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fire Horse", + "pt": 2, + }, + "value": 1221137904, + }, + { + "category": "Pet", + "configData": { + "id": "Colorful Fish", + "pt": 2, + }, + "value": 192, + }, + { + "category": "Pet", + "configData": { + "id": "Alien Parasite", + "sh": true, + }, + "value": 931, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Midnight Axolotl", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Corgi", + "pt": 1, + "sh": true, + }, + "value": 100000, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Fox", + "pt": 1, + }, + "value": 483, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Midnight Axolotl", + "pt": 2, + }, + "value": 3399642915, + }, + { + "category": "Pet", + "configData": { + "id": "Fluffy Cat", + "pt": 2, + }, + "value": 130, + }, + { + "category": "Pet", + "configData": { + "id": "Silver Dragon", + "pt": 1, + "sh": true, + }, + "value": 720800000, + }, + { + "category": "Pet", + "configData": { + "id": "Nutcracker Cat", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Pixel Griffin", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Mantis Shrimp", + "pt": 2, + }, + "value": 47896, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Dog", + "pt": 1, + "sh": true, + }, + "value": 162000, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Horse", + "pt": 1, + }, + "value": 24764, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 61", + }, + "value": 163630105, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Alienus Kitsune", + }, + "value": 33032360, + }, + { + "category": "Pet", + "configData": { + "id": "Sand Turtle", + }, + "value": 26, + }, + { + "category": "Booth", + "configData": { + "id": "Void", + }, + "value": 1002764, + }, + { + "category": "Pet", + "configData": { + "id": "Origami Fox", + }, + "value": 15235656, + }, + { + "category": "Pet", + "configData": { + "id": "Origami Bunny", + }, + "value": 7718611, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Void", + }, + "value": 5367569, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Origami Bunny", + }, + "value": 32691373, + }, + { + "category": "Pet", + "configData": { + "id": "Origami Shark", + }, + "value": 22852197, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Alienus Kitsune", + "pt": 1, + }, + "value": 39573080, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Origami Kitsune", + }, + "value": 126328411185, + }, + { + "category": "Pet", + "configData": { + "id": "Error Dragon", + }, + "value": 96, + }, + { + "category": "Pet", + "configData": { + "id": "Origami Bunny", + "pt": 2, + }, + "value": 19704900, + }, + { + "category": "Pet", + "configData": { + "id": "Honey Bee", + }, + "value": 179, + }, + { + "category": "Pet", + "configData": { + "id": "Origami Shark", + "pt": 2, + }, + "value": 29376695, + }, + { + "category": "Pet", + "configData": { + "id": "Error Dragon", + "pt": 2, + }, + "value": 1090, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Alienus Kitsune", + "pt": 2, + }, + "value": 162872431, + }, + { + "category": "Pet", + "configData": { + "id": "Mystical Kitsune", + }, + "value": 36151, + }, + { + "category": "Pet", + "configData": { + "id": "Surge Wolf", + }, + "value": 63527, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cataclysm Bear", + }, + "value": 28035264, + }, + { + "category": "Pet", + "configData": { + "id": "Origami Fox", + "sh": true, + }, + "value": 29677910, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Origami Shark", + }, + "value": 68722497, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Eclipse Owl", + }, + "value": 26491091, + }, + { + "category": "Pet", + "configData": { + "id": "Origami Bunny", + "sh": true, + }, + "value": 22692095, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nebula Lion", + }, + "value": 24243439, + }, + { + "category": "Pet", + "configData": { + "id": "Origami Fox", + "pt": 2, + }, + "value": 30027973, + }, + { + "category": "Pet", + "configData": { + "id": "Sprout Stag", + }, + "value": 25, + }, + { + "category": "Pet", + "configData": { + "id": "Blossom Fox", + }, + "value": 171, + }, + { + "category": "Pet", + "configData": { + "id": "Error Dragon", + "pt": 1, + }, + "value": 275, + }, + { + "category": "Pet", + "configData": { + "id": "Bubble Bunny", + }, + "value": 716, + }, + { + "category": "Pet", + "configData": { + "id": "Origami Shark", + "sh": true, + }, + "value": 43857990, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Owl", + }, + "value": 7525, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Fox", + "sh": true, + }, + "value": 2562, + }, + { + "category": "Pet", + "configData": { + "id": "Chameleon", + }, + "value": 181, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Elephant", + }, + "value": 659, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Void Cat", + }, + "value": 8461515950, + }, + { + "category": "Pet", + "configData": { + "id": "Sapphire Dragon", + }, + "value": 4480, + }, + { + "category": "Pet", + "configData": { + "id": "Origami Bunny", + "pt": 2, + "sh": true, + }, + "value": 218319532, + }, + { + "category": "Pet", + "configData": { + "id": "Blossom Fox", + "pt": 2, + }, + "value": 775, + }, + { + "category": "Pet", + "configData": { + "id": "Starry Eye Wolf", + }, + "value": 2688, + }, + { + "category": "Pet", + "configData": { + "id": "Sand Turtle", + "pt": 1, + }, + "value": 224, + }, + { + "category": "Pet", + "configData": { + "id": "Sand Turtle", + "sh": true, + }, + "value": 530, + }, + { + "category": "Pet", + "configData": { + "id": "Sand Turtle", + "pt": 2, + }, + "value": 514, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Origami Bunny", + "sh": true, + }, + "value": 191916445, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Dragon", + "pt": 1, + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Robot", + "pt": 1, + }, + "value": 1097879, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Hamster", + "pt": 1, + "sh": true, + }, + "value": 72721, + }, + { + "category": "Pet", + "configData": { + "id": "Sapphire Dragon", + "pt": 2, + }, + "value": 96005, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Elephant", + "pt": 2, + }, + "value": 6732, + }, + { + "category": "Pet", + "configData": { + "id": "Bubble Bunny", + "pt": 1, + }, + "value": 3831, + }, + { + "category": "Pet", + "configData": { + "id": "Bubble Bunny", + "pt": 2, + }, + "value": 11023, + }, + { + "category": "Pet", + "configData": { + "id": "Sprout Stag", + "pt": 1, + }, + "value": 110, + }, + { + "category": "Pet", + "configData": { + "id": "Golf Griffin", + "pt": 1, + }, + "value": 10308, + }, + { + "category": "Pet", + "configData": { + "id": "Sprout Stag", + "pt": 2, + }, + "value": 481, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Origami Crane", + }, + "value": 7078684782, + }, + { + "category": "Pet", + "configData": { + "id": "Starry Eye Wolf", + "pt": 2, + }, + "value": 67897, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Alienus Kitsune", + "sh": true, + }, + "value": 200125331, + }, + { + "category": "Pet", + "configData": { + "id": "Sun Griffin", + "sh": true, + }, + "value": 26663601, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Dragon", + "pt": 1, + }, + "value": 165, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Ram", + "pt": 2, + }, + "value": 424, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Owl", + "pt": 2, + }, + "value": 136783, + }, + { + "category": "Pet", + "configData": { + "id": "Chameleon", + "pt": 1, + }, + "value": 564, + }, + { + "category": "Pet", + "configData": { + "id": "Blossom Fox", + "pt": 1, + }, + "value": 614, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Owl", + "pt": 1, + }, + "value": 23842, + }, + { + "category": "Pet", + "configData": { + "id": "Starry Eye Wolf", + "pt": 1, + }, + "value": 6553, + }, + { + "category": "Pet", + "configData": { + "id": "Origami Fox", + "pt": 2, + "sh": true, + }, + "value": 169322412, + }, + { + "category": "Pet", + "configData": { + "id": "Surge Wolf", + "pt": 2, + }, + "value": 351604, + }, + { + "category": "Pet", + "configData": { + "id": "Mystical Kitsune", + "pt": 2, + }, + "value": 227560, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nebula Lion", + "pt": 2, + }, + "value": 143048559, + }, + { + "category": "Pet", + "configData": { + "id": "Hedgehog", + "pt": 1, + }, + "value": 830, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Eclipse Owl", + "pt": 2, + }, + "value": 147392598, + }, + { + "category": "Pet", + "configData": { + "id": "Honey Bee", + "pt": 1, + }, + "value": 525, + }, + { + "category": "Pet", + "configData": { + "id": "Sprout Stag", + "sh": true, + }, + "value": 196, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Dominus", + "pt": 2, + }, + "value": 3728, + }, + { + "category": "Pet", + "configData": { + "id": "Sapphire Dragon", + "pt": 1, + }, + "value": 21587, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Elephant", + "pt": 1, + }, + "value": 1436, + }, + { + "category": "Pet", + "configData": { + "id": "Phantom Wolf", + "pt": 2, + }, + "value": 3563841, + }, + { + "category": "Pet", + "configData": { + "id": "Fragmented Dominus Ball", + }, + "value": 2064955, + }, + { + "category": "Pet", + "configData": { + "id": "Chameleon", + "pt": 2, + }, + "value": 2520, + }, + { + "category": "Pet", + "configData": { + "id": "Surge Wolf", + "pt": 1, + }, + "value": 134603, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Origami Shark", + "sh": true, + }, + "value": 421652760, + }, + { + "category": "Pet", + "configData": { + "id": "Honey Bee", + "pt": 2, + }, + "value": 1690, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cataclysm Bear", + "pt": 2, + }, + "value": 163091131, + }, + { + "category": "Pet", + "configData": { + "id": "Mystical Kitsune", + "pt": 1, + }, + "value": 113785, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Party Tiger", + "pt": 1, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Phantom Wolf", + "pt": 1, + "sh": true, + }, + "value": 3963972608, + }, + { + "category": "Pet", + "configData": { + "id": "Telescope Owl", + "pt": 2, + "sh": true, + }, + "value": 9506510, + }, + { + "category": "Pet", + "configData": { + "id": "Sun Parrot", + "pt": 1, + }, + "value": 2685967, + }, + { + "category": "Pet", + "configData": { + "id": "Vibrant Whale", + "pt": 1, + }, + "value": 3557, + }, + { + "category": "Pet", + "configData": { + "id": "Reindeer Cat", + "pt": 2, + }, + "value": 69244530, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Origami Bunny", + "pt": 2, + }, + "value": 303764258, + }, + { + "category": "Pet", + "configData": { + "id": "Treasure Turtle", + "pt": 1, + }, + "value": 772524, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hydra Dino", + "pt": 1, + "sh": true, + }, + "value": 4295872000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cataclysm Bear", + "pt": 1, + }, + "value": 33125687, + }, + { + "category": "Pet", + "configData": { + "id": "Hooded Piggy", + "sh": true, + }, + "value": 1000000, + }, + { + "category": "Pet", + "configData": { + "id": "Molten Wisp", + "sh": true, + }, + "value": 45, + }, + { + "category": "Pet", + "configData": { + "id": "Hooded Monkey", + "sh": true, + }, + "value": 162143, + }, + { + "category": "Pet", + "configData": { + "id": "Sacred Deer", + "sh": true, + }, + "value": 272036, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Chick", + "sh": true, + }, + "value": 1316, + }, + { + "category": "Pet", + "configData": { + "id": "Wizard Cat", + "pt": 2, + }, + "value": 3573485, + }, + { + "category": "Pet", + "configData": { + "id": "Starry Eye Wolf", + "sh": true, + }, + "value": 131404, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cataclysm Bear", + "sh": true, + }, + "value": 130699648, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Eclipse Owl", + "pt": 2, + "sh": true, + }, + "value": 2172100156, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Eclipse Owl", + "pt": 1, + }, + "value": 34489860, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Snowman", + "pt": 1, + }, + "value": 69625, + }, + { + "category": "Pet", + "configData": { + "id": "Error Dragon", + "sh": true, + }, + "value": 394, + }, + { + "category": "Pet", + "configData": { + "id": "Demolition Husky", + "sh": true, + }, + "value": 21705, + }, + { + "category": "Pet", + "configData": { + "id": "Demolition Husky", + "pt": 1, + }, + "value": 51499, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Origami Shark", + "pt": 2, + }, + "value": 653709654, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Axolotl Ball", + "pt": 2, + }, + "value": 2536755, + }, + { + "category": "Pet", + "configData": { + "id": "Blossom Fox", + "sh": true, + }, + "value": 13054, + }, + { + "category": "Pet", + "configData": { + "id": "Demolition Husky", + }, + "value": 44108, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nebula Lion", + "pt": 1, + }, + "value": 29130356, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Ram", + "pt": 1, + }, + "value": 355, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Eclipse Owl", + "sh": true, + }, + "value": 124077440, + }, + { + "category": "Pet", + "configData": { + "id": "Alien Parasite", + "pt": 1, + "sh": true, + }, + "value": 10764, + }, + { + "category": "Pet", + "configData": { + "id": "Blossom Fox", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Eclipse Owl", + "pt": 1, + "sh": true, + }, + "value": 336099793, + }, + { + "category": "Pet", + "configData": { + "id": "Plushie Fox", + "sh": true, + }, + "value": 3725036, + }, + { + "category": "Pet", + "configData": { + "id": "Chameleon", + "pt": 1, + "sh": true, + }, + "value": 9586, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nebula Lion", + "pt": 1, + "sh": true, + }, + "value": 302182815, + }, + { + "category": "Pet", + "configData": { + "id": "Origami Shark", + "pt": 2, + "sh": true, + }, + "value": 367459843, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Otter", + "pt": 1, + "sh": true, + }, + "value": 7000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Painted Balloon", + "pt": 1, + }, + "value": 10410, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nebula Lion", + "sh": true, + }, + "value": 115709660, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Brain", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Surge Wolf", + "sh": true, + }, + "value": 2339678, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nebula Lion", + "pt": 2, + "sh": true, + }, + "value": 2110568272, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Deer", + "pt": 2, + "sh": true, + }, + "value": 561510523, + }, + { + "category": "Pet", + "configData": { + "id": "Nightfall Ram", + "pt": 1, + "sh": true, + }, + "value": 83059419, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Wolverine", + "pt": 1, + }, + "value": 254, + }, + { + "category": "Pet", + "configData": { + "id": "Quantum Tiger", + "pt": 1, + "sh": true, + }, + "value": 80000, + }, + { + "category": "Pet", + "configData": { + "id": "Witch Cat", + "sh": true, + }, + "value": 46629, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Ram", + "pt": 1, + }, + "value": 15450, + }, + { + "category": "Pet", + "configData": { + "id": "Demon Cat", + "pt": 1, + }, + "value": 3665, + }, + { + "category": "Pet", + "configData": { + "id": "Quartz Fox", + "pt": 1, + }, + "value": 3301600, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Husky", + "pt": 1, + "sh": true, + }, + "value": 688, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Void Cat", + "pt": 2, + }, + "value": 35097305046, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cataclysm Bear", + "pt": 1, + "sh": true, + }, + "value": 372834774, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Aura Fox", + "pt": 1, + }, + "value": 860989787, + }, + { + "category": "Pet", + "configData": { + "id": "Gorgon", + }, + "value": 1343, + }, + { + "category": "Pet", + "configData": { + "id": "Holiday Pegasus", + "pt": 2, + "sh": true, + }, + "value": 94881192, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cataclysm Bear", + "pt": 2, + "sh": true, + }, + "value": 2287048132, + }, + { + "category": "Pet", + "configData": { + "id": "Skunk", + "pt": 1, + }, + "value": 19276, + }, + { + "category": "Pet", + "configData": { + "id": "Sand Turtle", + "pt": 1, + "sh": true, + }, + "value": 508, + }, + { + "category": "Pet", + "configData": { + "id": "Chameleon", + "sh": true, + }, + "value": 1534, + }, + { + "category": "Pet", + "configData": { + "id": "Diamond Dog", + "pt": 1, + "sh": true, + }, + "value": 1280000000, + }, + { + "category": "Pet", + "configData": { + "id": "Scribe Squirrel", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Shattered Heart Agony", + "pt": 2, + "sh": true, + }, + "value": 93105, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Monkey", + "pt": 1, + }, + "value": 2878, + }, + { + "category": "Pet", + "configData": { + "id": "Sentry Drake", + "pt": 1, + "sh": true, + }, + "value": 104000, + }, + { + "category": "Pet", + "configData": { + "id": "Pog Dragon", + "sh": true, + }, + "value": 4348559, + }, + { + "category": "Pet", + "configData": { + "id": "White Tiger", + "sh": true, + }, + "value": 298, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Midnight Axolotl", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Archivist Ferret", + "pt": 2, + "sh": true, + }, + "value": 1280400, + }, + { + "category": "Pet", + "configData": { + "id": "Demon Cyclops", + "pt": 1, + }, + "value": 3253, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Deer", + "sh": true, + }, + "value": 8832, + }, + { + "category": "Pet", + "configData": { + "id": "Pumpkin Cat", + "pt": 1, + "sh": true, + }, + "value": 590428, + }, + { + "category": "Pet", + "configData": { + "id": "Comet Pony", + "sh": true, + }, + "value": 33339, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Void Cat", + "pt": 1, + }, + "value": 10706942885, + }, + { + "category": "Pet", + "configData": { + "id": "Hooded Bobcat", + "sh": true, + }, + "value": 204310, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Alienus Kitsune", + "pt": 1, + "sh": true, + }, + "value": 492637460, + }, + { + "category": "Pet", + "configData": { + "id": "Zeus Bull", + "pt": 2, + "sh": true, + }, + "value": 3778934, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Slime", + }, + "value": 277104, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Comet Cyclops Ball", + "sh": true, + }, + "value": 19733440998, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Black Hole Angelus", + "sh": true, + }, + "value": 161568089190, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Elephant", + "sh": true, + }, + "value": 5299, + }, + { + "category": "Pet", + "configData": { + "id": "Honey Bee", + "sh": true, + }, + "value": 282, + }, + { + "category": "Pet", + "configData": { + "id": "Divinus", + "pt": 2, + "sh": true, + }, + "value": 1041661, + }, + { + "category": "Pet", + "configData": { + "id": "Immortuus", + "pt": 2, + "sh": true, + }, + "value": 4759639, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Mining Penguin", + "pt": 2, + "sh": true, + }, + "value": 2383874688, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Dog", + "pt": 2, + "sh": true, + }, + "value": 340980800, + }, + { + "category": "Pet", + "configData": { + "id": "Sapphire Dragon", + "sh": true, + }, + "value": 68354, + }, + { + "category": "Pet", + "configData": { + "id": "Sun Parrot", + "sh": true, + }, + "value": 56747, + }, + { + "category": "Pet", + "configData": { + "id": "Player Penguin", + "pt": 2, + "sh": true, + }, + "value": 5618947, + }, + { + "category": "Pet", + "configData": { + "id": "Molten Gecko", + "pt": 2, + "sh": true, + }, + "value": 434480, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Owl", + "sh": true, + }, + "value": 148020, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Palace Pooka", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Bat", + "pt": 1, + "sh": true, + }, + "value": 35288652, + }, + { + "category": "Pet", + "configData": { + "id": "Gem Mole", + "pt": 1, + }, + "value": 257032, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Dolphin", + "pt": 2, + "sh": true, + }, + "value": 154005, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Slime", + "pt": 2, + }, + "value": 494, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Polar Bear", + "pt": 1, + "sh": true, + }, + "value": 306400, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Veil Horse", + }, + "value": 4811481641, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Knight Golem", + }, + "value": 44356662, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Peacock", + "pt": 2, + "sh": true, + }, + "value": 17140294553, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Mining Dog", + "pt": 2, + }, + "value": 24422, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Mortuus", + "sh": true, + }, + "value": 2825, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Mining Cat", + "pt": 1, + "sh": true, + }, + "value": 50000, + }, + { + "category": "Pet", + "configData": { + "id": "Bubble Cat", + "sh": true, + }, + "value": 24176, + }, + { + "category": "Pet", + "configData": { + "id": "Reindeer Corgi", + "sh": true, + }, + "value": 13747827, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Elephant", + "pt": 2, + "sh": true, + }, + "value": 4713475200, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Squirrel", + "sh": true, + }, + "value": 1455, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Sphinx", + "pt": 2, + }, + "value": 1972, + }, + { + "category": "Pet", + "configData": { + "id": "Storm Griffin", + "sh": true, + }, + "value": 64652659, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Stallion", + "sh": true, + }, + "value": 22935, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Unicorn", + "pt": 2, + "sh": true, + }, + "value": 12782, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Bunny", + "pt": 1, + "sh": true, + }, + "value": 1610, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mosaic Griffin", + "pt": 1, + "sh": true, + }, + "value": 5789559276, + }, + { + "category": "Pet", + "configData": { + "id": "Alien Arachnid", + "pt": 2, + }, + "value": 1385, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Chroma Phoenix", + "sh": true, + }, + "value": 19393718, + }, + { + "category": "Pet", + "configData": { + "id": "Axolotuus", + "pt": 1, + }, + "value": 1578, + }, + { + "category": "Pet", + "configData": { + "id": "Cool Dragon", + "pt": 1, + "sh": true, + }, + "value": 382994618, + }, + { + "category": "Pet", + "configData": { + "id": "Wireframe Dog", + "pt": 1, + "sh": true, + }, + "value": 2151, + }, + { + "category": "Pet", + "configData": { + "id": "Red Balloon Panda", + "pt": 2, + }, + "value": 296652, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Diamond Chick", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Ruinous Angelus", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Reindeer Axolotl", + "pt": 2, + }, + "value": 7106584316, + }, + { + "category": "Pet", + "configData": { + "cv": 1, + "id": "Chroma Phoenix", + "pt": 2, + }, + "value": 176905, + }, + { + "category": "Pet", + "configData": { + "id": "Sand Turtle", + "pt": 2, + "sh": true, + }, + "value": 3890, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Butterfly", + "pt": 2, + }, + "value": 2463, + }, + { + "category": "Pet", + "configData": { + "id": "Reindeer Corgi", + "pt": 2, + }, + "value": 34589596, + }, + { + "category": "Pet", + "configData": { + "id": "Blue Marshmallow Chick", + "sh": true, + }, + "value": 19518, + }, + { + "category": "Pet", + "configData": { + "id": "Demon", + "pt": 2, + }, + "value": 1819, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Lion", + "pt": 2, + "sh": true, + }, + "value": 1145559, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Alienus Kitsune", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Dolphin", + "pt": 2, + }, + "value": 9055, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Goblin", + }, + "value": 2476, + }, + { + "category": "Pet", + "configData": { + "id": "Turkey", + "pt": 1, + }, + "value": 50824, + }, + { + "category": "Pet", + "configData": { + "id": "Colorful Dragon", + "sh": true, + }, + "value": 13565, + }, + { + "category": "Pet", + "configData": { + "id": "Chimpanzee", + "pt": 2, + "sh": true, + }, + "value": 8200, + }, + { + "category": "Pet", + "configData": { + "id": "Pixie Bee", + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Unicorn", + "pt": 1, + }, + "value": 30742, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Cat", + "pt": 2, + "sh": true, + }, + "value": 1849174, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Lion", + "sh": true, + }, + "value": 11120, + }, + { + "category": "Pet", + "configData": { + "id": "Samurai Bull", + "pt": 2, + }, + "value": 414, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Wolverine", + "pt": 2, + "sh": true, + }, + "value": 26025, + }, + { + "category": "Pet", + "configData": { + "id": "Phoenix", + "pt": 2, + }, + "value": 423, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Wicked Kirin", + }, + "value": 140959170932, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Dolphin", + "pt": 2, + }, + "value": 23584000000, + }, + { + "category": "Card", + "configData": { + "id": "Phantom Wolf Card", + "pt": 1, + "sh": true, + }, + "value": 880300, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Werewolf", + "pt": 1, + "sh": true, + }, + "value": 155817, + }, + { + "category": "Pet", + "configData": { + "id": "Gemstone Gargoyle Dragon", + "sh": true, + }, + "value": 524, + }, + { + "category": "Pet", + "configData": { + "id": "Pirate Parrot", + "pt": 2, + }, + "value": 582, + }, + { + "category": "Pet", + "configData": { + "id": "Ender Hades", + "pt": 1, + "sh": true, + }, + "value": 4014378, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Walrus", + "pt": 2, + }, + "value": 3476, + }, + { + "category": "Pet", + "configData": { + "id": "Luau Seal", + "pt": 2, + }, + "value": 688, + }, + { + "category": "Pet", + "configData": { + "id": "Guilded Raven", + "pt": 2, + }, + "value": 435, + }, + { + "category": "Pet", + "configData": { + "id": "Parrot", + "pt": 2, + }, + "value": 27317, + }, + { + "category": "Pet", + "configData": { + "id": "Chick", + "pt": 2, + }, + "value": 4591, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Ram", + "pt": 2, + }, + "value": 179, + }, + { + "category": "Pet", + "configData": { + "id": "Teacher Cat", + "pt": 1, + }, + "value": 5541, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Pixel Monkey", + "pt": 2, + }, + "value": 233438679593, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Computer", + "pt": 1, + }, + "value": 241, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tropical Parrot", + "pt": 2, + "sh": true, + }, + "value": 13588800000, + }, + { + "category": "Pet", + "configData": { + "id": "Yin-Yang Bunny", + "pt": 2, + "sh": true, + }, + "value": 1181438544, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Hippomelon", + }, + "value": 401307829403, + }, + { + "category": "Pet", + "configData": { + "id": "Elemental Phoenix", + "sh": true, + }, + "value": 1320916, + }, + { + "category": "Pet", + "configData": { + "id": "Mystical Kitsune", + "sh": true, + }, + "value": 432746, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Axolotl", + "pt": 1, + "sh": true, + }, + "value": 13628287, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Slime", + "pt": 1, + }, + "value": 18820515, + }, + { + "category": "Pet", + "configData": { + "id": "Crystal Dog", + "pt": 2, + "sh": true, + }, + "value": 125493201, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Fox", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Knight Golem", + "pt": 2, + }, + "value": 411923658, + }, + { + "category": "Pet", + "configData": { + "id": "Bubble Bunny", + "sh": true, + }, + "value": 7188, + }, + { + "category": "Pet", + "configData": { + "id": "Soccer Terrier", + "pt": 1, + "sh": true, + }, + "value": 27030, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Corgi", + "pt": 2, + }, + "value": 319, + }, + { + "category": "Pet", + "configData": { + "id": "Carnival Panda", + "pt": 1, + }, + "value": 13036, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Nightmare Dog", + "sh": true, + }, + "value": 185200081204, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wireframe Cat", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Nutcracker Cat", + "sh": true, + }, + "value": 10127736, + }, + { + "category": "Pet", + "configData": { + "id": "Demon Serpents", + "sh": true, + }, + "value": 1414, + }, + { + "category": "Pet", + "configData": { + "id": "Abstract Dominus", + "pt": 1, + }, + "value": 6904127, + }, + { + "category": "Pet", + "configData": { + "id": "Heartbreak Fairy", + "pt": 1, + "sh": true, + }, + "value": 8848812, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Origami Shark", + "pt": 2, + "sh": true, + }, + "value": 4077556921, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Ninja Cow", + }, + "value": 2072, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Lamb", + "sh": true, + }, + "value": 14957, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Cat", + "pt": 2, + }, + "value": 20936, + }, + { + "category": "Pet", + "configData": { + "id": "Plague Cow", + "pt": 2, + }, + "value": 26916, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Wild Frost Agony", + "pt": 1, + }, + "value": 27051110868, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vampire Bat", + "pt": 1, + "sh": true, + }, + "value": 3349306880, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Fox", + "sh": true, + }, + "value": 818909, + }, + { + "category": "Pet", + "configData": { + "id": "Masked Owl", + "pt": 1, + }, + "value": 886, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Void Cat", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Clout Cat", + "pt": 2, + "sh": true, + }, + "value": 488372629, + }, + { + "category": "Pet", + "configData": { + "id": "Atlantean Stingray", + "pt": 2, + "sh": true, + }, + "value": 471751097, + }, + { + "category": "Pet", + "configData": { + "id": "Sprout Stag", + "pt": 1, + "sh": true, + }, + "value": 1033, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Gorilla", + "pt": 1, + }, + "value": 1934, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Rock", + "pt": 1, + }, + "value": 2649, + }, + { + "category": "Pet", + "configData": { + "id": "Pink Marshmallow Chick", + "sh": true, + }, + "value": 1933, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Origami Bunny", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Knight Golem", + "pt": 1, + }, + "value": 100683753, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Griffin", + "pt": 1, + "sh": true, + }, + "value": 345982473, + }, + { + "category": "Pet", + "configData": { + "id": "Strawberry Cow Ball", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Kawaii Dragon Ball", + "pt": 2, + "sh": true, + }, + "value": 785481, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Knight Golem", + "sh": true, + }, + "value": 967281398, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hypnotic Dragon", + "pt": 2, + }, + "value": 4423991015, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Basketball Corgi", + "pt": 2, + "sh": true, + }, + "value": 1571336448, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Corgi", + "pt": 1, + }, + "value": 1535, + }, + { + "category": "Pet", + "configData": { + "id": "Hi-Tech Sloth", + "sh": true, + }, + "value": 69212, + }, + { + "category": "Pet", + "configData": { + "id": "Starry Eye Bunny", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Painter Dog", + "pt": 1, + "sh": true, + }, + "value": 74766, + }, + { + "category": "Pet", + "configData": { + "id": "Painter Cat", + "pt": 1, + "sh": true, + }, + "value": 10664250, + }, + { + "category": "Pet", + "configData": { + "id": "Wild Galaxy Agony", + }, + "value": 21707, + }, + { + "category": "Pet", + "configData": { + "id": "Color Ruins Monkey", + "pt": 1, + "sh": true, + }, + "value": 1683389, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Snake", + "sh": true, + }, + "value": 1000000, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Owl", + "pt": 2, + }, + "value": 462494, + }, + { + "category": "Pet", + "configData": { + "id": "Pink Poodle", + "pt": 1, + "sh": true, + }, + "value": 1080161, + }, + { + "category": "Pet", + "configData": { + "id": "Color Ruins Parrot", + "pt": 1, + }, + "value": 141, + }, + { + "category": "Pet", + "configData": { + "id": "Pog Monkey", + "pt": 2, + }, + "value": 1297847, + }, + { + "category": "Pet", + "configData": { + "id": "Blurred Monkey", + "sh": true, + }, + "value": 649, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doodle Agony", + "sh": true, + }, + "value": 12999998000, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Werewolf", + "pt": 1, + }, + "value": 1042, + }, + { + "category": "Pet", + "configData": { + "id": "Basketball Monkey", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Glimmercap Turtle", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Lion", + "pt": 2, + "sh": true, + }, + "value": 30000, + }, + { + "category": "Pet", + "configData": { + "id": "Astronaut Dog", + "pt": 1, + }, + "value": 28624, + }, + { + "category": "Pet", + "configData": { + "id": "Nightfall Tiger", + "pt": 2, + }, + "value": 74959649, + }, + { + "category": "Pet", + "configData": { + "id": "Penguin", + "sh": true, + }, + "value": 372, + }, + { + "category": "Pet", + "configData": { + "id": "Present Dragon", + "pt": 2, + }, + "value": 31200000, + }, + { + "category": "Pet", + "configData": { + "id": "Candycane Unicorn", + "pt": 2, + }, + "value": 8700000, + }, + { + "category": "Pet", + "configData": { + "id": "Snowflake Dominus", + "pt": 2, + }, + "value": 7224, + }, + { + "category": "Pet", + "configData": { + "id": "Zombie Squirrel", + "pt": 1, + }, + "value": 854, + }, + { + "category": "Pet", + "configData": { + "id": "Ember Vulture", + "pt": 1, + "sh": true, + }, + "value": 8529, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Lucki Angelus", + "sh": true, + }, + "value": 85400000000, + }, + { + "category": "Pet", + "configData": { + "id": "Goldfish", + "sh": true, + }, + "value": 1221, + }, + { + "category": "Pet", + "configData": { + "id": "Ghost Cat", + "pt": 1, + }, + "value": 4828, + }, + { + "category": "Pet", + "configData": { + "id": "Sloth", + "pt": 2, + }, + "value": 122, + }, + { + "category": "Pet", + "configData": { + "id": "Rose Cat", + "sh": true, + }, + "value": 160161102, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dino", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Fire Bat", + "pt": 1, + "sh": true, + }, + "value": 19402, + }, + { + "category": "Pet", + "configData": { + "id": "Gingerbread Lion", + "pt": 2, + "sh": true, + }, + "value": 222205, + }, + { + "category": "Pet", + "configData": { + "id": "Hot Cocoa Bear", + "pt": 2, + "sh": true, + }, + "value": 76696, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Dove", + "sh": true, + }, + "value": 15609064, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Atlantean Dolphin", + "pt": 2, + }, + "value": 2684773387, + }, + { + "category": "Pet", + "configData": { + "id": "Chocolate Dog", + "pt": 1, + }, + "value": 1258, + }, + { + "category": "Pet", + "configData": { + "id": "Stegosaurus", + "pt": 1, + "sh": true, + }, + "value": 625, + }, + { + "category": "Pet", + "configData": { + "id": "Gem Mole", + "sh": true, + }, + "value": 64980, + }, + { + "category": "Pet", + "configData": { + "id": "Sprout Pegasus", + "pt": 2, + "sh": true, + }, + "value": 320070, + }, + { + "category": "Pet", + "configData": { + "id": "Bubble Hydra", + "sh": true, + }, + "value": 45600, + }, + { + "category": "Pet", + "configData": { + "id": "Butterfly Llama", + "sh": true, + }, + "value": 2906, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Bunny", + "pt": 1, + }, + "value": 1313, + }, + { + "category": "Pet", + "configData": { + "id": "Hippo", + "pt": 2, + }, + "value": 13578, + }, + { + "category": "Pet", + "configData": { + "id": "Hippo", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Stunt Raccoon", + "pt": 1, + "sh": true, + }, + "value": 1557912, + }, + { + "category": "Pet", + "configData": { + "id": "Chocolate Dog", + "pt": 2, + }, + "value": 11327, + }, + { + "category": "Pet", + "configData": { + "id": "Lunar Bat", + "pt": 1, + }, + "value": 2362, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Elephant", + "pt": 2, + }, + "value": 266477, + }, + { + "category": "Pet", + "configData": { + "id": "Demolition Husky", + "pt": 1, + "sh": true, + }, + "value": 69995, + }, + { + "category": "Pet", + "configData": { + "id": "Ladybug", + "pt": 1, + }, + "value": 2273, + }, + { + "category": "Pet", + "configData": { + "id": "Veil Horse", + "sh": true, + }, + "value": 3026054, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Axolotl", + "pt": 2, + "sh": true, + }, + "value": 226585124, + }, + { + "category": "Pet", + "configData": { + "id": "Dalmatian", + "pt": 1, + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "Poofy Pixie", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Horse", + "sh": true, + }, + "value": 331, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Bull", + "sh": true, + }, + "value": 223, + }, + { + "category": "Pet", + "configData": { + "id": "Cupcake Hamster", + "pt": 1, + "sh": true, + }, + "value": 1423, + }, + { + "category": "Pet", + "configData": { + "id": "Silver Dragon", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Cyclops", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Angel", + }, + "value": 302139274, + }, + { + "category": "Booth", + "configData": { + "id": "Angel", + }, + "value": 122670153, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Angel Cow", + }, + "value": 145718257, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Corgi", + "pt": 1, + "sh": true, + }, + "value": 141477398, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Angel Cow", + "pt": 2, + }, + "value": 3269988364, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Angel Cow", + "pt": 1, + }, + "value": 314440195, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Origami Crane", + "pt": 2, + }, + "value": 24554774313, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Knight Golem", + "pt": 1, + "sh": true, + }, + "value": 1687732979, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Axolotl", + "pt": 1, + "sh": true, + }, + "value": 3040000, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Corgi", + "pt": 2, + }, + "value": 10819540, + }, + { + "category": "Pet", + "configData": { + "id": "Cool Corgi", + "pt": 2, + "sh": true, + }, + "value": 561393122, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Angel Cow", + }, + "value": 32357652362, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Kitsune", + }, + "value": 150342, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Knight Golem", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Research Cat", + "pt": 2, + "sh": true, + }, + "value": 160, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Party Crown Hippomelon", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Camo Axolotl", + "pt": 1, + "sh": true, + }, + "value": 44, + }, + { + "category": "Pet", + "configData": { + "id": "Steampunk Wolf", + "pt": 2, + }, + "value": 21235, + }, + { + "category": "Pet", + "configData": { + "id": "Stargazing Axolotl", + "pt": 2, + "sh": true, + }, + "value": 1821201956, + }, + { + "category": "Pet", + "configData": { + "id": "Hellhound", + "pt": 1, + "sh": true, + }, + "value": 642747452, + }, + { + "category": "Pet", + "configData": { + "id": "Robber Goblin", + "sh": true, + }, + "value": 35126, + }, + { + "category": "Pet", + "configData": { + "id": "Orange Parrot", + "pt": 2, + }, + "value": 283, + }, + { + "category": "Pet", + "configData": { + "id": "Devil Agony", + "sh": true, + }, + "value": 2069, + }, + { + "category": "Pet", + "configData": { + "id": "Black Hole Kitsune", + "pt": 2, + "sh": true, + }, + "value": 453575800, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evil Snowman", + "pt": 2, + "sh": true, + }, + "value": 31832000000, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Chick", + "pt": 1, + "sh": true, + }, + "value": 4854, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Axolotl", + "pt": 1, + }, + "value": 1735, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Gecko", + "pt": 1, + }, + "value": 181913, + }, + { + "category": "Pet", + "configData": { + "id": "Beach Ball Monkey", + "pt": 1, + "sh": true, + }, + "value": 270, + }, + { + "category": "Pet", + "configData": { + "id": "Vampire Dragon", + "pt": 1, + }, + "value": 1444, + }, + { + "category": "Pet", + "configData": { + "id": "Pristine Poodle", + "pt": 2, + }, + "value": 62, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Umbrella Cat", + "sh": true, + }, + "value": 1510918455, + }, + { + "category": "Pet", + "configData": { + "id": "Gummy Raccoon", + "pt": 2, + }, + "value": 2270, + }, + { + "category": "Pet", + "configData": { + "id": "Gummy Fox", + "pt": 2, + }, + "value": 5057, + }, + { + "category": "Pet", + "configData": { + "id": "Walrus", + "pt": 2, + }, + "value": 5830, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Corgi", + "pt": 1, + }, + "value": 4173130, + }, + { + "category": "Pet", + "configData": { + "id": "Flamortuus", + "sh": true, + }, + "value": 214, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Oracle Tiger", + }, + "value": 19960749, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anubis", + }, + "value": 22608384, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lotus Koi Fish", + "sh": true, + }, + "value": 194790620, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Prism Pegasus", + }, + "value": 23179422, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lotus Koi Fish", + "pt": 2, + }, + "value": 172789896, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Oracle Tiger", + "pt": 2, + }, + "value": 135024038, + }, + { + "category": "Pet", + "configData": { + "id": "Stacked Cat", + }, + "value": 67020166, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Prism Pegasus", + "pt": 2, + }, + "value": 168074830, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Shark", + }, + "value": 130208, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Oracle Tiger", + "pt": 1, + }, + "value": 28228505, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lotus Koi Fish", + }, + "value": 24525628, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lotus Koi Fish", + "pt": 1, + }, + "value": 22259152, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Shark", + "pt": 2, + }, + "value": 667824, + }, + { + "category": "Pet", + "configData": { + "id": "Pixel Hippomelon", + "pt": 2, + }, + "value": 453349, + }, + { + "category": "Pet", + "configData": { + "id": "Pixel Hippomelon", + }, + "value": 142536, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Oracle Tiger", + "sh": true, + }, + "value": 114595049, + }, + { + "category": "Pet", + "configData": { + "id": "Vibrant Zebra", + }, + "value": 150383, + }, + { + "category": "Pet", + "configData": { + "id": "Pixel Hippomelon", + "pt": 1, + }, + "value": 271958, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Prism Pegasus", + "pt": 1, + }, + "value": 30085594, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Yeti", + "pt": 2, + "sh": true, + }, + "value": 852565, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Oracle Tiger", + "pt": 2, + "sh": true, + }, + "value": 2414813862, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Prism Pegasus", + "sh": true, + }, + "value": 120097710, + }, + { + "category": "Pet", + "configData": { + "id": "Vibrant Zebra", + "pt": 2, + }, + "value": 566193, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anubis", + "pt": 2, + }, + "value": 160207471, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Shark", + "pt": 1, + }, + "value": 412911, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lotus Koi Fish", + "pt": 1, + "sh": true, + }, + "value": 789950509, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Unicorn", + "pt": 1, + }, + "value": 1401, + }, + { + "category": "Pet", + "configData": { + "id": "Vibrant Zebra", + "pt": 1, + }, + "value": 185108, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anubis", + "sh": true, + }, + "value": 131047045, + }, + { + "category": "Pet", + "configData": { + "id": "Hydra Cat", + "pt": 1, + }, + "value": 229668, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Halo Cat", + "pt": 2, + }, + "value": 36738278622, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anubis", + "pt": 1, + }, + "value": 28279192, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Halo Cat", + }, + "value": 8027891079, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Prism Pegasus", + "pt": 1, + "sh": true, + }, + "value": 443569753, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Halo Cat", + "pt": 1, + }, + "value": 10149439648, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Squirrel", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Surfboard Corgi", + "pt": 2, + "sh": true, + }, + "value": 2668813, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lotus Koi Fish", + "pt": 2, + "sh": true, + }, + "value": 4852615530, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Player Panda", + "pt": 1, + "sh": true, + }, + "value": 8187081600, + }, + { + "category": "Pet", + "configData": { + "id": "Stacked Cat", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Hydra Cat", + "pt": 1, + "sh": true, + }, + "value": 2639727, + }, + { + "category": "Pet", + "configData": { + "id": "Virus Griffin", + "pt": 1, + }, + "value": 1066351, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Chest Mimic", + "pt": 1, + "sh": true, + }, + "value": 3035342, + }, + { + "category": "Pet", + "configData": { + "id": "Stacked Cat", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Griffin", + "pt": 1, + }, + "value": 5031319, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anubis", + "pt": 2, + "sh": true, + }, + "value": 3551726282, + }, + { + "category": "Pet", + "configData": { + "id": "Flowers Fox", + "pt": 1, + }, + "value": 717, + }, + { + "category": "Pet", + "configData": { + "id": "Poison Turtle", + "pt": 1, + "sh": true, + }, + "value": 1712422, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Prism Pegasus", + "pt": 2, + "sh": true, + }, + "value": 3388912036, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ducky Magician", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Rudolf", + "pt": 2, + }, + "value": 60679999, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Bear", + "pt": 1, + }, + "value": 19885, + }, + { + "category": "Pet", + "configData": { + "id": "Popcorn Cat", + "sh": true, + }, + "value": 2913, + }, + { + "category": "Pet", + "configData": { + "id": "Shimmering Fish", + "pt": 2, + }, + "value": 444, + }, + { + "category": "Pet", + "configData": { + "id": "Plasma Bull", + "pt": 1, + }, + "value": 86687, + }, + { + "category": "Pet", + "configData": { + "id": "Gorgon", + "pt": 1, + }, + "value": 1117, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Oracle Tiger", + "pt": 1, + "sh": true, + }, + "value": 303901141, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Squirrel", + "pt": 1, + }, + "value": 1957, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Shark", + "sh": true, + }, + "value": 2021452, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Halo Cat", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Santa Paws", + "sh": true, + }, + "value": 7024824, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Arcane Halo Cat", + "sh": true, + }, + "value": 42761939326, + }, + { + "category": "Pet", + "configData": { + "id": "Demon Serpents", + "pt": 1, + }, + "value": 496, + }, + { + "category": "Pet", + "configData": { + "id": "Chameleon", + "pt": 2, + "sh": true, + }, + "value": 26811, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anubis", + "pt": 1, + "sh": true, + }, + "value": 799044318, + }, + { + "category": "Pet", + "configData": { + "id": "Wishing Dragon", + }, + "value": 2760, + }, + { + "category": "Pet", + "configData": { + "id": "Charred Bat", + "sh": true, + }, + "value": 3920, + }, + { + "category": "Pet", + "configData": { + "id": "Horseshoe Crab", + "pt": 1, + "sh": true, + }, + "value": 1438042, + }, + { + "category": "Pet", + "configData": { + "id": "Spitting Dino", + "pt": 1, + }, + "value": 53, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Panda", + "pt": 2, + "sh": true, + }, + "value": 389718839, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Shark", + "pt": 1, + "sh": true, + }, + "value": 123043874, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Bunny", + "sh": true, + }, + "value": 80200, + }, + { + "category": "Pet", + "configData": { + "id": "Sandcastle Cat", + "pt": 1, + }, + "value": 8948, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Elephant", + }, + "value": 6194, + }, + { + "category": "Pet", + "configData": { + "id": "Vibrant Zebra", + "sh": true, + }, + "value": 627189, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Leopard", + "pt": 1, + }, + "value": 278, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Demolition Cat", + }, + "value": 26147711, + }, + { + "category": "Pet", + "configData": { + "id": "Tiki Dominus", + "pt": 1, + "sh": true, + }, + "value": 1087675, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Demolition Cat", + "pt": 2, + }, + "value": 496046780, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Propeller Cat", + }, + "value": 4510172462, + }, + { + "category": "Pet", + "configData": { + "id": "Torpedo Shepherd", + "sh": true, + }, + "value": 1015, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Fairy", + "sh": true, + }, + "value": 2516200, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Dog", + "pt": 2, + }, + "value": 161, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Demolition Cat", + "sh": true, + }, + "value": 314995854, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Sloth", + "pt": 1, + "sh": true, + }, + "value": 461834, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Hydra Axolotl", + "pt": 1, + "sh": true, + }, + "value": 2961463040, + }, + { + "category": "Pet", + "configData": { + "id": "Pixel Hippomelon", + "sh": true, + }, + "value": 695372, + }, + { + "category": "Pet", + "configData": { + "id": "Color Ruins Monkey", + }, + "value": 793302, + }, + { + "category": "Pet", + "configData": { + "id": "Fairy Moth", + "pt": 1, + "sh": true, + }, + "value": 464765, + }, + { + "category": "Pet", + "configData": { + "id": "Firefly", + "pt": 2, + "sh": true, + }, + "value": 3016000, + }, + { + "category": "Pet", + "configData": { + "id": "Masked Owl", + "pt": 2, + }, + "value": 7463, + }, + { + "category": "Pet", + "configData": { + "id": "Honey Bee", + "pt": 1, + "sh": true, + }, + "value": 1947, + }, + { + "category": "Pet", + "configData": { + "id": "Atomic Monkey", + "pt": 2, + }, + "value": 30223, + }, + { + "category": "Pet", + "configData": { + "id": "Hydra Cat", + "pt": 2, + "sh": true, + }, + "value": 5802269, + }, + { + "category": "Pet", + "configData": { + "id": "Love Lion", + "sh": true, + }, + "value": 258014, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Withered Agony", + }, + "value": 41759527, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Rave Slime", + "pt": 1, + "sh": true, + }, + "value": 34110848000, + }, + { + "category": "Pet", + "configData": { + "id": "Abyss Carbuncle", + "pt": 2, + "sh": true, + }, + "value": 649769, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Garden Goblin", + }, + "value": 40725934, + }, + { + "category": "Pet", + "configData": { + "id": "Cotton Candy Cow", + "sh": true, + }, + "value": 134987, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Withered Agony", + "pt": 2, + }, + "value": 247233957, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Withered Agony", + "pt": 1, + }, + "value": 37200979, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Elephant", + "pt": 1, + "sh": true, + }, + "value": 34907, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Garden Goblin", + "pt": 2, + }, + "value": 129586307, + }, + { + "category": "Pet", + "configData": { + "id": "Camo Axolotl", + "pt": 1, + }, + "value": 200662, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Garden Goblin", + "pt": 1, + }, + "value": 26471424, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghost Axolotl", + "sh": true, + }, + "value": 1138240727, + }, + { + "category": "Pet", + "configData": { + "id": "Water Zebra", + "sh": true, + }, + "value": 25836, + }, + { + "category": "Pet", + "configData": { + "id": "Sapphire Dragon", + "pt": 1, + "sh": true, + }, + "value": 519241, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wild Fire Agony", + "pt": 1, + "sh": true, + }, + "value": 5530854656, + }, + { + "category": "Pet", + "configData": { + "id": "Cyclops", + "pt": 1, + }, + "value": 30922, + }, + { + "category": "Pet", + "configData": { + "id": "Flamortuus", + "pt": 1, + }, + "value": 936, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Deer", + "pt": 1, + }, + "value": 3547, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Guard Dominus", + "sh": true, + }, + "value": 27607593486, + }, + { + "category": "Pet", + "configData": { + "id": "Error Dragon", + "pt": 2, + "sh": true, + }, + "value": 8277, + }, + { + "category": "Pet", + "configData": { + "id": "Bubble Bunny", + "pt": 1, + "sh": true, + }, + "value": 109358, + }, + { + "category": "Pet", + "configData": { + "id": "Bubble Bunny", + "pt": 2, + "sh": true, + }, + "value": 152870, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Werewolf", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Monkey", + "pt": 2, + }, + "value": 5629313879, + }, + { + "category": "Pet", + "configData": { + "id": "Starry Eye Wolf", + "pt": 1, + "sh": true, + }, + "value": 70897, + }, + { + "category": "Pet", + "configData": { + "id": "Vibrant Zebra", + "pt": 2, + "sh": true, + }, + "value": 299487809, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Shark", + "pt": 2, + "sh": true, + }, + "value": 518244862, + }, + { + "category": "Pet", + "configData": { + "cv": 3, + "id": "Huge Chroma Ink Blob", + }, + "value": 696628134, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Elephant", + "pt": 2, + "sh": true, + }, + "value": 35418, + }, + { + "category": "Pet", + "configData": { + "id": "Broomstick Corgi", + "sh": true, + }, + "value": 2447, + }, + { + "category": "Pet", + "configData": { + "id": "Emerald Carbuncle", + "pt": 1, + }, + "value": 134, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Garden Goblin", + "pt": 2, + "sh": true, + }, + "value": 4402204076, + }, + { + "category": "Pet", + "configData": { + "id": "Ocean Horse", + "sh": true, + }, + "value": 2646187, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Withered Agony", + "pt": 1, + "sh": true, + }, + "value": 1348212141, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Bunny", + "pt": 1, + }, + "value": 10010000000, + }, + { + "category": "Pet", + "configData": { + "id": "Honey Bee", + "pt": 2, + "sh": true, + }, + "value": 17711, + }, + { + "category": "Pet", + "configData": { + "id": "Error Dragon", + "pt": 1, + "sh": true, + }, + "value": 1190, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Snowman", + "pt": 1, + "sh": true, + }, + "value": 5026, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Owl", + "pt": 1, + "sh": true, + }, + "value": 802396, + }, + { + "category": "Pet", + "configData": { + "id": "Mystical Kitsune", + "pt": 2, + "sh": true, + }, + "value": 21246155, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Withered Agony", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Pixel Hippomelon", + "pt": 2, + "sh": true, + }, + "value": 85667392, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Squirrel", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Mystical Kitsune", + "pt": 1, + "sh": true, + }, + "value": 9022109, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Owl", + "pt": 2, + "sh": true, + }, + "value": 1408200, + }, + { + "category": "Pet", + "configData": { + "id": "Forged Hedgehog", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Wicked Empyrean Dominus", + "pt": 1, + "sh": true, + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "Piggy", + "sh": true, + }, + "value": 44442, + }, + { + "category": "Pet", + "configData": { + "id": "Alien Axolotl", + "pt": 2, + "sh": true, + }, + "value": 5364, + }, + { + "category": "Pet", + "configData": { + "id": "Sapphire Dragon", + "pt": 2, + "sh": true, + }, + "value": 1321533, + }, + { + "category": "Pet", + "configData": { + "id": "Chimpanzee", + "sh": true, + }, + "value": 935, + }, + { + "category": "Pet", + "configData": { + "id": "Starry Eye Wolf", + "pt": 2, + "sh": true, + }, + "value": 558832, + }, + { + "category": "Pet", + "configData": { + "id": "Vibrant Zebra", + "pt": 1, + "sh": true, + }, + "value": 77231989, + }, + { + "category": "Pet", + "configData": { + "id": "Haxigator", + "sh": true, + }, + "value": 589, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Cat", + "pt": 2, + }, + "value": 10717, + }, + { + "category": "Pet", + "configData": { + "id": "Broomstick Cat", + "pt": 1, + "sh": true, + }, + "value": 173, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Tiger", + "sh": true, + }, + "value": 100, + }, + { + "category": "Pet", + "configData": { + "id": "Flowers Fox", + "sh": true, + }, + "value": 122, + }, + { + "category": "Pet", + "configData": { + "id": "Sprout Stag", + "pt": 2, + "sh": true, + }, + "value": 5081, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Bat", + "sh": true, + }, + "value": 1633, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Walrus", + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sage Axolotl", + "sh": true, + }, + "value": 1817265206, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Chroma Tiger", + "sh": true, + }, + "value": 30815104, + }, + { + "category": "Pet", + "configData": { + "id": "Research Dog", + "pt": 2, + "sh": true, + }, + "value": 462, + }, + { + "category": "Pet", + "configData": { + "id": "Frontman Jellyfish", + "pt": 2, + "sh": true, + }, + "value": 20796, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Garden Goblin", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Bunny", + "sh": true, + }, + "value": 277, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Corgi", + "sh": true, + }, + "value": 954, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Garden Goblin", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Monkey", + "pt": 1, + }, + "value": 276935, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Bull", + "sh": true, + }, + "value": 5910, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Cookie Cut Cat", + "pt": 2, + }, + "value": 38000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Demolition Husky", + "pt": 2, + "sh": true, + }, + "value": 93948, + }, + { + "category": "Pet", + "configData": { + "id": "Obsidian Griffin", + "pt": 1, + "sh": true, + }, + "value": 2794, + }, + { + "category": "Pet", + "configData": { + "id": "Orange Squirrel", + "pt": 1, + "sh": true, + }, + "value": 1308, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Ducky", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Card", + "configData": { + "id": "Sensei Penguin Card", + "sh": true, + }, + "value": 27204860, + }, + { + "category": "Pet", + "configData": { + "id": "Cupcake", + "sh": true, + }, + "value": 8224, + }, + { + "category": "Pet", + "configData": { + "id": "Surge Wolf", + "pt": 1, + "sh": true, + }, + "value": 39620488, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Butterfly", + "pt": 2, + "sh": true, + }, + "value": 5066505, + }, + { + "category": "Pet", + "configData": { + "id": "Mystical Fox", + "pt": 1, + }, + "value": 362, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kawaii Dragon", + "pt": 1, + "sh": true, + }, + "value": 2150598004, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Origami Kitsune", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Galaxy Fox", + "sh": true, + }, + "value": 1029, + }, + { + "category": "Pet", + "configData": { + "id": "Bobcat", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Crocodile", + "sh": true, + }, + "value": 1418, + }, + { + "category": "Pet", + "configData": { + "id": "Gecko", + "sh": true, + }, + "value": 1755, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Gecko", + "pt": 2, + }, + "value": 1219, + }, + { + "category": "Pet", + "configData": { + "id": "Forged Hedgehog", + "pt": 2, + }, + "value": 469, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Totem Cub", + "pt": 2, + "sh": true, + }, + "value": 3211207436, + }, + { + "category": "Pet", + "configData": { + "id": "Pixel Hippomelon", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Sock Bear", + "pt": 2, + }, + "value": 1058, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Dragon", + "sh": true, + }, + "value": 775, + }, + { + "category": "Pet", + "configData": { + "id": "Horseshoe Crab", + "pt": 1, + }, + "value": 141842, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Dragon", + "sh": true, + }, + "value": 8784, + }, + { + "category": "Pet", + "configData": { + "id": "Hedgehog", + "sh": true, + }, + "value": 77400408, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Reindeer Dog", + "pt": 2, + }, + "value": 8528093293, + }, + { + "category": "Pet", + "configData": { + "id": "Surge Wolf", + "pt": 2, + "sh": true, + }, + "value": 100089927, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Triceratops", + "sh": true, + }, + "value": 1044, + }, + { + "category": "Pet", + "configData": { + "id": "Leprechaun Corgi", + "pt": 1, + }, + "value": 302857778, + }, + { + "category": "Pet", + "configData": { + "id": "Stargazing Wolf", + "pt": 2, + "sh": true, + }, + "value": 178751022, + }, + { + "category": "Pet", + "configData": { + "id": "Painted King Crab", + "sh": true, + }, + "value": 1417, + }, + { + "category": "Pet", + "configData": { + "id": "Turkey", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Pirate Panda", + "sh": true, + }, + "value": 420, + }, + { + "category": "Pet", + "configData": { + "id": "Reindeer Corgi", + "pt": 2, + "sh": true, + }, + "value": 307000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Classic Dog", + "pt": 2, + "sh": true, + }, + "value": 10948800000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Angel Cow", + "pt": 1, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Sun Agony", + "pt": 1, + }, + "value": 107245, + }, + { + "category": "Pet", + "configData": { + "id": "Figgy Fox", + "pt": 1, + }, + "value": 4114, + }, + { + "category": "Pet", + "configData": { + "id": "Demolition Cat", + "pt": 2, + }, + "value": 2864, + }, + { + "category": "Pet", + "configData": { + "id": "Kawaii Tiger", + "pt": 2, + }, + "value": 14410, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Cat", + "pt": 1, + "sh": true, + }, + "value": 40000, + }, + { + "category": "Pet", + "configData": { + "id": "Kawaii Cat", + "sh": true, + }, + "value": 4631, + }, + { + "category": "Pet", + "configData": { + "id": "Marshmallow Kitsune", + "pt": 1, + "sh": true, + }, + "value": 1788, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Corgi", + "pt": 1, + "sh": true, + }, + "value": 189460935, + }, + { + "category": "Pet", + "configData": { + "id": "Ghost Cat", + "pt": 2, + }, + "value": 1602, + }, + { + "category": "Pet", + "configData": { + "id": "Werewolf", + "pt": 2, + }, + "value": 2558, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Origami Crane", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Owl", + "pt": 1, + "sh": true, + }, + "value": 20619, + }, + { + "category": "Pet", + "configData": { + "id": "Painted King Crab", + "pt": 2, + "sh": true, + }, + "value": 9214, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Turtle", + "pt": 1, + "sh": true, + }, + "value": 2422480, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Piggy", + "sh": true, + }, + "value": 17259483, + }, + { + "category": "Pet", + "configData": { + "id": "Painted Balloon", + "pt": 1, + "sh": true, + }, + "value": 2369, + }, + { + "category": "Pet", + "configData": { + "id": "Turkey", + "pt": 2, + }, + "value": 72, + }, + { + "category": "Pet", + "configData": { + "id": "Sensei Penguin", + }, + "value": 59214256, + }, + { + "category": "Pet", + "configData": { + "id": "Samurai Dragon", + "sh": true, + }, + "value": 1473, + }, + { + "category": "Pet", + "configData": { + "id": "Samurai Bull", + "pt": 1, + "sh": true, + }, + "value": 33, + }, + { + "category": "Pet", + "configData": { + "id": "Samurai Dragon", + "pt": 2, + "sh": true, + }, + "value": 85400, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Dominus", + "pt": 2, + "sh": true, + }, + "value": 2122338, + }, + { + "category": "Pet", + "configData": { + "id": "Panda", + "pt": 2, + "sh": true, + }, + "value": 5000, + }, + { + "category": "Pet", + "configData": { + "id": "Wicked Kirin", + "sh": true, + }, + "value": 114427253, + }, + { + "category": "Pet", + "configData": { + "id": "M-2 PROTOTYPE", + "sh": true, + }, + "value": 8572, + }, + { + "category": "Pet", + "configData": { + "id": "Robot Ball", + "pt": 1, + "sh": true, + }, + "value": 1336, + }, + { + "category": "Pet", + "configData": { + "id": "Archangel Cat", + }, + "value": 418, + }, + { + "category": "Pet", + "configData": { + "id": "Mystical Fox", + "pt": 2, + }, + "value": 215, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Starry Owl", + "pt": 1, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Nutcracker Cat", + "pt": 2, + }, + "value": 133548800, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cool Cat", + "sh": true, + }, + "value": 3231118615, + }, + { + "category": "Pet", + "configData": { + "id": "Rudolf", + "pt": 1, + "sh": true, + }, + "value": 105155136, + }, + { + "category": "Pet", + "configData": { + "id": "Blossom Bunny", + "sh": true, + }, + "value": 888, + }, + { + "category": "Pet", + "configData": { + "id": "Sunflower Lion", + "sh": true, + }, + "value": 54562445, + }, + { + "category": "Pet", + "configData": { + "id": "Rose Butterfly", + "sh": true, + }, + "value": 874, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Elephant", + "pt": 2, + }, + "value": 1278, + }, + { + "category": "Pet", + "configData": { + "id": "Quantum Goat", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Corgi", + "sh": true, + }, + "value": 176, + }, + { + "category": "Pet", + "configData": { + "id": "Masked Fox", + "pt": 2, + }, + "value": 5303, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Corgi", + "pt": 2, + "sh": true, + }, + "value": 1428179, + }, + { + "category": "Pet", + "configData": { + "id": "Luxe Peacock", + "pt": 2, + }, + "value": 24641, + }, + { + "category": "Pet", + "configData": { + "id": "Glimmer Goat", + "pt": 2, + }, + "value": 78487, + }, + { + "category": "Pet", + "configData": { + "id": "Ghoul Horse", + "sh": true, + }, + "value": 2860617, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Griffin", + "pt": 2, + "sh": true, + }, + "value": 748578304, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Maskot", + "pt": 1, + "sh": true, + }, + "value": 4666, + }, + { + "category": "Pet", + "configData": { + "id": "Color Ruins Monkey", + "pt": 2, + "sh": true, + }, + "value": 3135944, + }, + { + "category": "Pet", + "configData": { + "id": "Beagle", + "pt": 1, + "sh": true, + }, + "value": 24000, + }, + { + "category": "Pet", + "configData": { + "id": "Leprechaun Corgi", + "pt": 1, + "sh": true, + }, + "value": 690400000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guard Bunny", + "pt": 2, + }, + "value": 14531931366, + }, + { + "category": "Pet", + "configData": { + "id": "Jolly Cat", + "sh": true, + }, + "value": 1734, + }, + { + "category": "Pet", + "configData": { + "id": "Chroma Phoenix", + "pt": 2, + }, + "value": 21855, + }, + { + "category": "Pet", + "configData": { + "id": "Colorful Firefly", + "sh": true, + }, + "value": 611, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Warrior Wolf", + "pt": 1, + "sh": true, + }, + "value": 6935090742, + }, + { + "category": "Pet", + "configData": { + "id": "Black Hole Angelus Ball", + "pt": 2, + "sh": true, + }, + "value": 5737136396, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Snake", + "pt": 1, + }, + "value": 572367, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Strawberry Corgi", + "sh": true, + }, + "value": 29061225489, + }, + { + "category": "Pet", + "configData": { + "id": "Hooded Bobcat", + "pt": 1, + "sh": true, + }, + "value": 12969, + }, + { + "category": "Pet", + "configData": { + "id": "Kawaii Tiger", + }, + "value": 1111, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ghost Axolotl", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Lilypad Cat", + "pt": 2, + "sh": true, + }, + "value": 17737, + }, + { + "category": "Pet", + "configData": { + "id": "Horseshoe Crab", + }, + "value": 1029, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Irish Badger", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kaiju Sea Dragon", + "pt": 2, + "sh": true, + }, + "value": 29500000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Capybara", + "sh": true, + }, + "value": 78420168746, + }, + { + "category": "Pet", + "configData": { + "id": "Beagle", + "pt": 2, + "sh": true, + }, + "value": 1000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Abstract Dominus", + "pt": 2, + "sh": true, + }, + "value": 10000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Firefly", + "pt": 2, + }, + "value": 7023965365, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sun Angelus", + "pt": 1, + "sh": true, + }, + "value": 6163672650, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soul Cat", + "pt": 2, + "sh": true, + }, + "value": 26131776000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evolved Cupcake", + "pt": 2, + "sh": true, + }, + "value": 518136028581, + }, + { + "category": "Pet", + "configData": { + "id": "Blossom Fox", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Rabbit", + "pt": 1, + }, + "value": 1538, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Easter Agony", + "pt": 1, + "sh": true, + }, + "value": 1868859136, + }, + { + "category": "Pet", + "configData": { + "id": "Atomic Axolotl", + "sh": true, + }, + "value": 1371, + }, + { + "category": "Pet", + "configData": { + "id": "Flower Panda", + "sh": true, + }, + "value": 6606855, + }, + { + "category": "Pet", + "configData": { + "id": "Quokka", + "pt": 2, + "sh": true, + }, + "value": 1000000, + }, + { + "category": "Pet", + "configData": { + "id": "Librarian Beaver", + "pt": 1, + }, + "value": 395, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pirate Parrot", + "pt": 1, + "sh": true, + }, + "value": 150000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sprout Wyrmling", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Watermelon Golem", + "pt": 2, + "sh": true, + }, + "value": 710172, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Elf Dog", + "pt": 2, + "sh": true, + }, + "value": 6620000000, + }, + { + "category": "Pet", + "configData": { + "id": "Comet Cyclops Ball", + "pt": 1, + }, + "value": 1826122, + }, + { + "category": "Pet", + "configData": { + "id": "Basketball Cat", + "pt": 1, + "sh": true, + }, + "value": 353200, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Penguin", + "pt": 1, + }, + "value": 325, + }, + { + "category": "Pet", + "configData": { + "id": "Elephant", + "sh": true, + }, + "value": 21219, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Slime", + "pt": 1, + }, + "value": 228, + }, + { + "category": "Pet", + "configData": { + "id": "Kung Fu Monkey", + }, + "value": 744079, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Valkyrie Dog", + "pt": 2, + "sh": true, + }, + "value": 19865600000, + }, + { + "category": "Pet", + "configData": { + "id": "Hi-Tech Elephant", + "pt": 1, + }, + "value": 9037, + }, + { + "category": "Pet", + "configData": { + "id": "Poinsettia Peacock", + "pt": 1, + }, + "value": 13825382, + }, + { + "category": "Pet", + "configData": { + "id": "Rabbit", + "pt": 1, + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Ducky", + "sh": true, + }, + "value": 1012, + }, + { + "category": "Pet", + "configData": { + "id": "Rabbit", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Fairy", + "sh": true, + }, + "value": 504, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Electric Slime", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Clown Cat", + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Blurred Bear Ball", + "pt": 2, + "sh": true, + }, + "value": 36643, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Griffin", + "sh": true, + }, + "value": 152810, + }, + { + "category": "Pet", + "configData": { + "id": "Rose Butterfly", + "pt": 2, + }, + "value": 1040, + }, + { + "category": "Pet", + "configData": { + "id": "Blossom Bunny", + "pt": 2, + }, + "value": 1138, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Party Dog", + "pt": 2, + }, + "value": 2046438197, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luxe Axolotl", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pirate Dog", + "pt": 1, + "sh": true, + }, + "value": 81700000000, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Fish", + "pt": 2, + }, + "value": 13698, + }, + { + "category": "Pet", + "configData": { + "id": "Sun Griffin", + "pt": 2, + "sh": true, + }, + "value": 33334, + }, + { + "category": "Pet", + "configData": { + "id": "Fawn", + }, + "value": 1126, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Penguin", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Subzero Cat", + "pt": 2, + }, + "value": 51962471, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Yeti", + "pt": 1, + }, + "value": 272136959, + }, + { + "category": "Pet", + "configData": { + "id": "Robot", + "sh": true, + }, + "value": 85, + }, + { + "category": "Pet", + "configData": { + "id": "Mosaic Griffin", + "pt": 1, + "sh": true, + }, + "value": 583696520, + }, + { + "category": "Pet", + "configData": { + "id": "Pristine Snake", + "sh": true, + }, + "value": 17121393, + }, + { + "category": "Pet", + "configData": { + "id": "Glowy the Ghost", + "sh": true, + }, + "value": 818, + }, + { + "category": "Pet", + "configData": { + "id": "Flowers Hedgehog", + "pt": 2, + "sh": true, + }, + "value": 213599, + }, + { + "category": "Pet", + "configData": { + "id": "Demon", + "sh": true, + }, + "value": 2180, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Red Fluffy", + "pt": 1, + "sh": true, + }, + "value": 7041568000, + }, + { + "category": "Pet", + "configData": { + "id": "Tome Owl", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "cv": 6, + "id": "Huge Chroma Ink Blob", + "pt": 2, + "sh": true, + }, + "value": 262748800000, + }, + { + "category": "Pet", + "configData": { + "id": "Chocolate Hippo", + "pt": 1, + }, + "value": 627, + }, + { + "category": "Pet", + "configData": { + "id": "Tiedye Dragon", + "pt": 2, + "sh": true, + }, + "value": 1208211456, + }, + { + "category": "Pet", + "configData": { + "id": "Lunar Moth", + "sh": true, + }, + "value": 5970, + }, + { + "category": "Pet", + "configData": { + "id": "Colorful Rock", + "sh": true, + }, + "value": 297, + }, + { + "category": "Pet", + "configData": { + "id": "Starry Tail Anteater", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Shiba", + "pt": 2, + "sh": true, + }, + "value": 32005, + }, + { + "category": "Pet", + "configData": { + "id": "Error Cat", + "pt": 1, + "sh": true, + }, + "value": 514145, + }, + { + "category": "Pet", + "configData": { + "id": "Sapphire Carbuncle", + "pt": 1, + }, + "value": 38, + }, + { + "category": "Pet", + "configData": { + "id": "Steampunk Fish", + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Parrot", + "sh": true, + }, + "value": 658, + }, + { + "category": "Pet", + "configData": { + "id": "Platypus", + "pt": 1, + }, + "value": 1317, + }, + { + "category": "Pet", + "configData": { + "id": "Knight Slime", + "pt": 2, + }, + "value": 17273585, + }, + { + "category": "Pet", + "configData": { + "id": "Flower Cat", + "pt": 1, + "sh": true, + }, + "value": 4224, + }, + { + "category": "Pet", + "configData": { + "id": "Mossy Lamb", + "pt": 1, + "sh": true, + }, + "value": 2000000, + }, + { + "category": "Pet", + "configData": { + "id": "Pajamas Cat", + "pt": 2, + "sh": true, + }, + "value": 2000000, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Ducky", + "pt": 2, + }, + "value": 1228, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Wolf", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Blurred Monkey", + "pt": 1, + }, + "value": 2667, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pineapple Cat", + "pt": 2, + "sh": true, + }, + "value": 1371840000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Neon Twilight Dragon", + "pt": 2, + }, + "value": 16244266835, + }, + { + "category": "Pet", + "configData": { + "id": "Tome Owl", + "pt": 2, + "sh": true, + }, + "value": 9264603, + }, + { + "category": "Pet", + "configData": { + "id": "Chroma Tiger", + "pt": 2, + "sh": true, + }, + "value": 122741, + }, + { + "category": "Pet", + "configData": { + "id": "Bobcat", + "pt": 2, + }, + "value": 3491, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Calico Cat", + "sh": true, + }, + "value": 23174712320, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Clover Unicorn", + "sh": true, + }, + "value": 1301033890, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Dragon", + "pt": 2, + }, + "value": 1852546, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Deer", + "pt": 2, + "sh": true, + }, + "value": 299, + }, + { + "category": "Pet", + "configData": { + "id": "Charred Bat", + "pt": 1, + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Charred Dragon", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Doll Cat", + "pt": 1, + "sh": true, + }, + "value": 197636, + }, + { + "category": "Pet", + "configData": { + "id": "Toy Duck", + "pt": 2, + "sh": true, + }, + "value": 49712, + }, + { + "category": "Pet", + "configData": { + "id": "Hacked Cat", + "pt": 1, + "sh": true, + }, + "value": 1620, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Peacock", + "pt": 1, + "sh": true, + }, + "value": 42600014165, + }, + { + "category": "Pet", + "configData": { + "id": "Ender Slime", + "pt": 2, + "sh": true, + }, + "value": 182, + }, + { + "category": "Pet", + "configData": { + "id": "Cloud Hedgehog", + "sh": true, + }, + "value": 1513, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Fox", + "pt": 1, + }, + "value": 223, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Dog", + "pt": 2, + }, + "value": 1961, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Kraken", + "pt": 2, + }, + "value": 55904116097, + }, + { + "category": "Pet", + "configData": { + "id": "Fragmented Golem", + "sh": true, + }, + "value": 1084130, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Fox", + "pt": 2, + }, + "value": 1236, + }, + { + "category": "Pet", + "configData": { + "id": "Matryoshka Fox", + "pt": 2, + "sh": true, + }, + "value": 318346334, + }, + { + "category": "Pet", + "configData": { + "id": "Nightmare Sludge", + "pt": 1, + "sh": true, + }, + "value": 62999279, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Samurai Cat", + "sh": true, + }, + "value": 1158, + }, + { + "category": "Pet", + "configData": { + "id": "Pegasus", + "pt": 2, + "sh": true, + }, + "value": 41413, + }, + { + "category": "Pet", + "configData": { + "id": "Hooded Piggy", + "pt": 1, + "sh": true, + }, + "value": 268666, + }, + { + "category": "Pet", + "configData": { + "id": "Pegasus", + "pt": 1, + "sh": true, + }, + "value": 100000, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Fox", + "pt": 1, + "sh": true, + }, + "value": 8031, + }, + { + "category": "Pet", + "configData": { + "id": "Colorful Firefly", + "pt": 1, + }, + "value": 12861, + }, + { + "category": "Pet", + "configData": { + "id": "Steampunk Crocodile", + "pt": 1, + }, + "value": 1276, + }, + { + "category": "Pet", + "configData": { + "id": "Hi-Tech Flamingo", + "sh": true, + }, + "value": 3340, + }, + { + "category": "Pet", + "configData": { + "id": "Broomstick Corgi", + "pt": 2, + }, + "value": 2992, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Chesnut Chipmunk", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Skunk", + "pt": 1, + "sh": true, + }, + "value": 2492778, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Axolotl", + "pt": 1, + "sh": true, + }, + "value": 2726, + }, + { + "category": "Pet", + "configData": { + "id": "Witch Cat", + "pt": 2, + "sh": true, + }, + "value": 3152, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Sock Corgi", + "pt": 1, + }, + "value": 862, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Green Balloon Cat", + "sh": true, + }, + "value": 681025276, + }, + { + "category": "Pet", + "configData": { + "id": "Desert Ram", + "pt": 1, + }, + "value": 2141, + }, + { + "category": "Pet", + "configData": { + "id": "Kraken", + "pt": 2, + }, + "value": 1776, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Rock", + "pt": 2, + }, + "value": 1221, + }, + { + "category": "Pet", + "configData": { + "id": "Parachute Monkey", + "pt": 1, + "sh": true, + }, + "value": 15930, + }, + { + "category": "Pet", + "configData": { + "id": "Autumn Retriever", + "pt": 1, + "sh": true, + }, + "value": 25929, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chroma Swan", + "pt": 2, + }, + "value": 911605264, + }, + { + "category": "Pet", + "configData": { + "id": "Ooze Cat", + }, + "value": 133043116, + }, + { + "category": "Pet", + "configData": { + "id": "Hacker Bear", + "pt": 2, + }, + "value": 6551, + }, + { + "category": "Pet", + "configData": { + "id": "Heavenly Peacock", + "sh": true, + }, + "value": 10200, + }, + { + "category": "Pet", + "configData": { + "id": "Divinus", + "pt": 1, + "sh": true, + }, + "value": 20636, + }, + { + "category": "Pet", + "configData": { + "id": "Reaper", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Star Surfer", + "sh": true, + }, + "value": 7000, + }, + { + "category": "Pet", + "configData": { + "id": "Robber Goblin", + "pt": 2, + "sh": true, + }, + "value": 30000, + }, + { + "category": "Pet", + "configData": { + "id": "Ghost", + "pt": 1, + }, + "value": 11504280, + }, + { + "category": "Pet", + "configData": { + "id": "Encrusted Wolf", + "pt": 2, + "sh": true, + }, + "value": 23877, + }, + { + "category": "Pet", + "configData": { + "id": "Cotton Candy Lamb", + "pt": 2, + "sh": true, + }, + "value": 40000, + }, + { + "category": "Pet", + "configData": { + "id": "Gorilla", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Cotton Candy Cow", + "pt": 2, + "sh": true, + }, + "value": 268000, + }, + { + "category": "Pet", + "configData": { + "id": "Gummy Raccoon", + "pt": 2, + "sh": true, + }, + "value": 296000, + }, + { + "category": "Pet", + "configData": { + "id": "Starry Tail Anteater", + "pt": 2, + "sh": true, + }, + "value": 199999, + }, + { + "category": "Pet", + "configData": { + "id": "Night Terror Dog", + "pt": 1, + "sh": true, + }, + "value": 3115, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Ninja Panda", + "pt": 2, + }, + "value": 885, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Comet Agony", + "sh": true, + }, + "value": 14581605783, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Cat", + "sh": true, + }, + "value": 3201, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Luxe Axolotl", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Kangaroo", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Armadillo", + "pt": 2, + }, + "value": 91, + }, + { + "category": "Pet", + "configData": { + "id": "Hyena", + "pt": 1, + "sh": true, + }, + "value": 10246, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pumpkin Scarecrow", + "pt": 1, + "sh": true, + }, + "value": 1961811026, + }, + { + "category": "Pet", + "configData": { + "id": "Librarian Beaver", + "sh": true, + }, + "value": 12565, + }, + { + "category": "Pet", + "configData": { + "id": "Luxe Peacock", + }, + "value": 855, + }, + { + "category": "Pet", + "configData": { + "id": "Woodpecker", + "pt": 1, + }, + "value": 108, + }, + { + "category": "Pet", + "configData": { + "id": "Koi Fish", + "pt": 1, + }, + "value": 153, + }, + { + "category": "Pet", + "configData": { + "id": "Cyber Raccoon", + }, + "value": 17561, + }, + { + "category": "Pet", + "configData": { + "id": "Coconut Crab", + "pt": 1, + "sh": true, + }, + "value": 11406, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gamer Shiba", + "pt": 1, + "sh": true, + }, + "value": 33255245824, + }, + { + "category": "Pet", + "configData": { + "id": "Hydra Dino", + "pt": 2, + }, + "value": 42351, + }, + { + "category": "Pet", + "configData": { + "id": "Camel", + "pt": 1, + }, + "value": 1726, + }, + { + "category": "Pet", + "configData": { + "id": "Pog Shark", + "pt": 1, + }, + "value": 25000000, + }, + { + "category": "Pet", + "configData": { + "id": "Umbrella Dog", + "pt": 2, + }, + "value": 701, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tropical Flamingo", + "pt": 1, + "sh": true, + }, + "value": 1499112257, + }, + { + "category": "Pet", + "configData": { + "id": "Kangaroo", + "pt": 2, + }, + "value": 965, + }, + { + "category": "Pet", + "configData": { + "id": "Sun Angelus", + "pt": 2, + }, + "value": 227758, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Wolf", + "sh": true, + }, + "value": 11850, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Panther", + "pt": 1, + }, + "value": 1134, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Axolotl", + "pt": 2, + }, + "value": 13030071208, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Sock Monkey", + "pt": 2, + }, + "value": 80000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Desert Ram", + "sh": true, + }, + "value": 14576, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Alienus", + "pt": 1, + }, + "value": 29086, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Griffin", + "pt": 2, + "sh": true, + }, + "value": 926, + }, + { + "category": "Pet", + "configData": { + "id": "Goldfish", + "pt": 1, + }, + "value": 1064, + }, + { + "category": "Pet", + "configData": { + "id": "Bread Shiba", + "sh": true, + }, + "value": 42106, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Bear", + "sh": true, + }, + "value": 194938, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Tiger", + "pt": 1, + "sh": true, + }, + "value": 2341078272, + }, + { + "category": "Pet", + "configData": { + "id": "Sphinx", + "sh": true, + }, + "value": 272048, + }, + { + "category": "Pet", + "configData": { + "id": "Desert Cat", + "pt": 1, + "sh": true, + }, + "value": 20000, + }, + { + "category": "Pet", + "configData": { + "id": "Rhino", + "pt": 2, + "sh": true, + }, + "value": 249000, + }, + { + "category": "Pet", + "configData": { + "id": "Popcorn Cat", + "pt": 2, + "sh": true, + }, + "value": 148000, + }, + { + "category": "Pet", + "configData": { + "cv": 3, + "id": "Chroma Phoenix", + }, + "value": 28314, + }, + { + "category": "Pet", + "configData": { + "id": "Tropical Toucan", + "pt": 1, + "sh": true, + }, + "value": 1300000000, + }, + { + "category": "Pet", + "configData": { + "id": "Unicorn Dragon", + "pt": 2, + "sh": true, + }, + "value": 1180384256, + }, + { + "category": "Pet", + "configData": { + "id": "Sophisticated Fox", + "pt": 2, + }, + "value": 1963, + }, + { + "category": "Pet", + "configData": { + "id": "Wishing Dragon", + "sh": true, + }, + "value": 4303441, + }, + { + "category": "Pet", + "configData": { + "id": "Melted Rock", + "pt": 2, + "sh": true, + }, + "value": 2012799, + }, + { + "category": "Pet", + "configData": { + "id": "Imp", + "pt": 2, + "sh": true, + }, + "value": 1930660, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Koi Fish", + "sh": true, + }, + "value": 32896857805, + }, + { + "category": "Pet", + "configData": { + "id": "Jolly Dino", + "pt": 2, + }, + "value": 2153, + }, + { + "category": "Pet", + "configData": { + "id": "Giraffe", + "pt": 1, + }, + "value": 149, + }, + { + "category": "Pet", + "configData": { + "id": "Tome Owl", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Ducky Magician", + "pt": 1, + "sh": true, + }, + "value": 20004000, + }, + { + "category": "Pet", + "configData": { + "id": "Jellyfish", + "pt": 1, + }, + "value": 758, + }, + { + "category": "Pet", + "configData": { + "id": "Cheetah", + "pt": 2, + }, + "value": 350, + }, + { + "category": "Pet", + "configData": { + "id": "Fragmented Dominus Ball", + "pt": 1, + "sh": true, + }, + "value": 974623656, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Yin-Yang Grim Reaper", + "sh": true, + }, + "value": 500000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Lucki Wolf", + "sh": true, + }, + "value": 17684, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Piggy", + "pt": 1, + }, + "value": 59, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tiedye Cat", + "pt": 1, + "sh": true, + }, + "value": 71102605357, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Bat", + "pt": 1, + }, + "value": 327, + }, + { + "category": "Pet", + "configData": { + "id": "Fossil Dragon", + "pt": 1, + "sh": true, + }, + "value": 80120, + }, + { + "category": "Pet", + "configData": { + "id": "Pink Marshmallow Chick", + "pt": 1, + }, + "value": 1361, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Firefighter Dalmation", + "pt": 1, + "sh": true, + }, + "value": 398320000, + }, + { + "category": "Pet", + "configData": { + "id": "Honey Badger", + "pt": 1, + }, + "value": 66, + }, + { + "category": "Pet", + "configData": { + "id": "Camel", + "pt": 2, + }, + "value": 1148, + }, + { + "category": "Pet", + "configData": { + "id": "Fossil Dragon", + "pt": 2, + "sh": true, + }, + "value": 238932, + }, + { + "category": "Pet", + "configData": { + "id": "Bison", + "sh": true, + }, + "value": 10166, + }, + { + "category": "Pet", + "configData": { + "id": "Sphinx", + "pt": 2, + }, + "value": 210036, + }, + { + "category": "Pet", + "configData": { + "id": "Water Zebra", + "pt": 2, + "sh": true, + }, + "value": 3084, + }, + { + "category": "Pet", + "configData": { + "id": "Forged Hedgehog", + "sh": true, + }, + "value": 4542, + }, + { + "category": "Pet", + "configData": { + "id": "Gym Unicorn", + "pt": 1, + "sh": true, + }, + "value": 133407808, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Corn Cat", + "pt": 2, + "sh": true, + }, + "value": 11480000000, + }, + { + "category": "Pet", + "configData": { + "id": "Teddy Bear", + "sh": true, + }, + "value": 136635, + }, + { + "category": "Pet", + "configData": { + "id": "Happy Computer", + "sh": true, + }, + "value": 375, + }, + { + "category": "Pet", + "configData": { + "id": "Watermelon Golem", + "pt": 1, + "sh": true, + }, + "value": 7881600, + }, + { + "category": "Pet", + "configData": { + "id": "Pog Dog", + "sh": true, + }, + "value": 2534404, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Easter Axolotl", + "sh": true, + }, + "value": 648000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Dominus", + "sh": true, + }, + "value": 4800, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Dog", + "pt": 1, + }, + "value": 948, + }, + { + "category": "Pet", + "configData": { + "id": "Narwhal", + "sh": true, + }, + "value": 37782, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Lemur", + "pt": 2, + }, + "value": 10985, + }, + { + "category": "Pet", + "configData": { + "id": "Bison", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Horse", + "pt": 2, + "sh": true, + }, + "value": 100000, + }, + { + "category": "Pet", + "configData": { + "id": "Goat", + "pt": 2, + "sh": true, + }, + "value": 37500, + }, + { + "category": "Pet", + "configData": { + "id": "Moose", + "pt": 1, + "sh": true, + }, + "value": 80005, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Autumn Chest Mimic", + "pt": 1, + "sh": true, + }, + "value": 25000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Corgi", + "pt": 1, + }, + "value": 253, + }, + { + "category": "Pet", + "configData": { + "id": "Deer", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ancestor Eagle", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Autumn Chest Mimic", + "pt": 2, + "sh": true, + }, + "value": 16914278, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Cat", + "pt": 2, + "sh": true, + }, + "value": 1000000, + }, + { + "category": "Pet", + "configData": { + "id": "Angel Pony", + "sh": true, + }, + "value": 247, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Bear", + "sh": true, + }, + "value": 527, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Butterfly", + "sh": true, + }, + "value": 56816000000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gingerbread Cat", + "sh": true, + }, + "value": 23744035109, + }, + { + "category": "Pet", + "configData": { + "id": "Disco Ball Dragon", + }, + "value": 3439, + }, + { + "category": "Pet", + "configData": { + "id": "Melted Slime", + "sh": true, + }, + "value": 6500, + }, + { + "category": "Pet", + "configData": { + "id": "Bison", + "pt": 2, + "sh": true, + }, + "value": 350000, + }, + { + "category": "Pet", + "configData": { + "id": "Fawn", + "pt": 1, + "sh": true, + }, + "value": 500000, + }, + { + "category": "Pet", + "configData": { + "id": "Sailor Seal", + "sh": true, + }, + "value": 5539, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Dog", + "pt": 2, + }, + "value": 720, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pog Cat", + "pt": 1, + "sh": true, + }, + "value": 250000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Merry Manatee", + "pt": 1, + "sh": true, + }, + "value": 98911, + }, + { + "category": "Pet", + "configData": { + "id": "Fawn", + "pt": 2, + }, + "value": 1251, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Stunt Cat", + "pt": 2, + }, + "value": 36564799999, + }, + { + "category": "Pet", + "configData": { + "id": "Grass Bunny", + "sh": true, + }, + "value": 724, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Elf", + }, + "value": 1683, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Mining Dog", + "pt": 1, + }, + "value": 652093, + }, + { + "category": "Lootbox", + "configData": { + "id": "Titanic Fantasy Present", + }, + "value": 65850740, + }, + { + "category": "Pet", + "configData": { + "id": "Jurassic Elephant", + "pt": 2, + "sh": true, + }, + "value": 603948858, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Axolotl", + "pt": 2, + }, + "value": 4095, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Runebound Bobcat", + "pt": 2, + "sh": true, + }, + "value": 40999200000, + }, + { + "category": "Pet", + "configData": { + "id": "Bee", + "pt": 2, + }, + "value": 89, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Penguin", + "pt": 2, + }, + "value": 7611, + }, + { + "category": "Pet", + "configData": { + "id": "Coconut Corgi", + "pt": 1, + "sh": true, + }, + "value": 181024, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Agony", + "pt": 1, + "sh": true, + }, + "value": 1289269, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Bread Shiba", + "pt": 2, + }, + "value": 34923328000, + }, + { + "category": "Pet", + "configData": { + "id": "Camo Axolotl", + "pt": 2, + }, + "value": 150814, + }, + { + "category": "Pet", + "configData": { + "id": "Chocolate Hippo", + "sh": true, + }, + "value": 14513, + }, + { + "category": "Pet", + "configData": { + "id": "Albino Bat", + "pt": 1, + "sh": true, + }, + "value": 4000, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Camel", + "pt": 1, + }, + "value": 509, + }, + { + "category": "Pet", + "configData": { + "id": "404 Demon", + "pt": 1, + "sh": true, + }, + "value": 54091, + }, + { + "category": "Pet", + "configData": { + "cv": 1, + "id": "Huge Chroma Ink Blob", + "sh": true, + }, + "value": 13263238799, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lit Octopus", + "sh": true, + }, + "value": 12440000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge LeGoat Ball", + "pt": 2, + "sh": true, + }, + "value": 10208192000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Wireframe Cat", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Ducky Magician", + "sh": true, + }, + "value": 600, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Poseidon Axolotl", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Hippomelon", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Tiger", + "sh": true, + }, + "value": 28, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Axolotl", + "pt": 1, + }, + "value": 889, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Lion", + "pt": 1, + }, + "value": 396884, + }, + { + "category": "Pet", + "configData": { + "id": "Shattered Heart Agony", + "pt": 1, + }, + "value": 19349, + }, + { + "category": "Pet", + "configData": { + "cv": 4, + "id": "Huge Chroma Ink Blob", + "pt": 2, + "sh": true, + }, + "value": 5749846272, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Penguin", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Dominus", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Chocolate Dog", + "sh": true, + }, + "value": 1380, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Turtle", + "pt": 1, + "sh": true, + }, + "value": 26535960875, + }, + { + "category": "Pet", + "configData": { + "id": "Devil Agony", + "pt": 1, + }, + "value": 9592, + }, + { + "category": "Pet", + "configData": { + "id": "Angelus", + "pt": 2, + "sh": true, + }, + "value": 3201928, + }, + { + "category": "Pet", + "configData": { + "id": "Samurai Bull", + "pt": 1, + }, + "value": 111, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Scroll Dragon", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Pirate Parrot", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Leopard", + "pt": 1, + "sh": true, + }, + "value": 100000, + }, + { + "category": "Pet", + "configData": { + "id": "Cloud Monkey", + "pt": 2, + }, + "value": 2421, + }, + { + "category": "Pet", + "configData": { + "id": "Angelus", + "pt": 1, + "sh": true, + }, + "value": 27946, + }, + { + "category": "Pet", + "configData": { + "id": "Nightmare Sludge", + "pt": 2, + }, + "value": 2152236, + }, + { + "category": "Pet", + "configData": { + "id": "Shimmering Octopus", + "sh": true, + }, + "value": 1453, + }, + { + "category": "Pet", + "configData": { + "id": "Fragmented Pterodactyl", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dark Lord", + "pt": 1, + "sh": true, + }, + "value": 768481133, + }, + { + "category": "Pet", + "configData": { + "id": "Detective Terrier", + "pt": 2, + }, + "value": 6399, + }, + { + "category": "Pet", + "configData": { + "id": "Blue Marshmallow Chick", + "pt": 2, + }, + "value": 13199, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Special Ops Moth", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Wild Corrupt Agony", + "pt": 1, + }, + "value": 72000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Panda", + "pt": 2, + }, + "value": 15000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Arcade Angelus", + "pt": 2, + "sh": true, + }, + "value": 6600000000, + }, + { + "category": "Pet", + "configData": { + "id": "Potion Poodle", + "pt": 1, + "sh": true, + }, + "value": 11264, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Scorpion", + "sh": true, + }, + "value": 1187, + }, + { + "category": "Pet", + "configData": { + "id": "Hacked Raccoon", + "pt": 2, + }, + "value": 2967, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Minotaur", + "sh": true, + }, + "value": 593, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Scorpion", + "sh": true, + }, + "value": 121, + }, + { + "category": "Pet", + "configData": { + "id": "Huge White Balloon Cat", + "sh": true, + }, + "value": 16586417454, + }, + { + "category": "Card", + "configData": { + "id": "Huge Ninja Capybara Card", + "pt": 2, + }, + "value": 1335149852, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Fairy", + "sh": true, + }, + "value": 14704, + }, + { + "category": "Pet", + "configData": { + "id": "Rabbit", + "pt": 1, + }, + "value": 839, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Werewolf", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Royal Cloud Corgi", + "pt": 2, + }, + "value": 185745, + }, + { + "category": "Pet", + "configData": { + "id": "Arctic Fox", + "sh": true, + }, + "value": 289, + }, + { + "category": "Pet", + "configData": { + "id": "Shimmering Fish", + "pt": 1, + }, + "value": 1492, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Elephant", + "pt": 1, + "sh": true, + }, + "value": 1000000, + }, + { + "category": "Pet", + "configData": { + "id": "Forged Turtle", + "pt": 2, + }, + "value": 17203, + }, + { + "category": "Pet", + "configData": { + "id": "Mermaid Cat", + "pt": 2, + }, + "value": 2120, + }, + { + "category": "Pet", + "configData": { + "id": "Wyvern of Hades", + "pt": 1, + "sh": true, + }, + "value": 1144160, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Angel Cat", + "pt": 2, + }, + "value": 9013445308, + }, + { + "category": "Pet", + "configData": { + "id": "Lilypad Cat", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Raccoon", + "pt": 2, + }, + "value": 93, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Cat", + "pt": 2, + }, + "value": 565, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Panther", + "pt": 2, + }, + "value": 18187, + }, + { + "category": "Pet", + "configData": { + "id": "Void Alien", + "pt": 1, + }, + "value": 105428, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Party Crown Hippomelon", + "pt": 2, + }, + "value": 70000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Inferno Stealth Bobcat", + "pt": 2, + "sh": true, + }, + "value": 15088735181, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Snowflake Pegasus", + "pt": 2, + "sh": true, + }, + "value": 908660599176, + }, + { + "category": "Pet", + "configData": { + "id": "Atomic Axolotl", + "pt": 1, + "sh": true, + }, + "value": 23338, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Sloth", + "pt": 1, + "sh": true, + }, + "value": 33858992, + }, + { + "category": "Pet", + "configData": { + "id": "Turbo Cheetah", + "pt": 1, + "sh": true, + }, + "value": 14135, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Captain Octopus", + "pt": 2, + }, + "value": 26810426373, + }, + { + "category": "Pet", + "configData": { + "id": "Candycane Shake Shark", + "pt": 2, + }, + "value": 1575, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Monkey", + "pt": 2, + "sh": true, + }, + "value": 115800, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Fox", + "sh": true, + }, + "value": 2188, + }, + { + "category": "Pet", + "configData": { + "id": "Kawaii Cat", + "pt": 1, + "sh": true, + }, + "value": 21800, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Atlantean Dolphin", + "sh": true, + }, + "value": 1527271578, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Raccoon", + "pt": 1, + "sh": true, + }, + "value": 8488, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Bread Shiba", + "sh": true, + }, + "value": 203989319680, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Axolotl", + "pt": 2, + }, + "value": 1175, + }, + { + "category": "Pet", + "configData": { + "id": "Fire Kitsune", + }, + "value": 249643, + }, + { + "category": "Pet", + "configData": { + "id": "Fish in a Bucket", + "pt": 2, + "sh": true, + }, + "value": 37000, + }, + { + "category": "Pet", + "configData": { + "id": "Scary Corgi", + "pt": 2, + "sh": true, + }, + "value": 180800, + }, + { + "category": "Pet", + "configData": { + "id": "Detective Terrier", + "pt": 1, + "sh": true, + }, + "value": 124, + }, + { + "category": "Pet", + "configData": { + "id": "Ghost Cat", + "pt": 1, + "sh": true, + }, + "value": 10000, + }, + { + "category": "Pet", + "configData": { + "id": "Zombie Squirrel", + "pt": 1, + "sh": true, + }, + "value": 100000, + }, + { + "category": "Pet", + "configData": { + "id": "Scary Corgi", + "pt": 1, + "sh": true, + }, + "value": 68, + }, + { + "category": "Pet", + "configData": { + "id": "Bison", + "pt": 2, + }, + "value": 324, + }, + { + "category": "Pet", + "configData": { + "id": "Pink Marshmallow Chick", + "pt": 1, + "sh": true, + }, + "value": 20000, + }, + { + "category": "Pet", + "configData": { + "id": "Angry Yeti", + "sh": true, + }, + "value": 9977, + }, + { + "category": "Pet", + "configData": { + "id": "Pastel Sock Bunny", + "sh": true, + }, + "value": 10043, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Kraken", + "pt": 1, + }, + "value": 534, + }, + { + "category": "Pet", + "configData": { + "id": "Cartoon Bunny", + "pt": 2, + "sh": true, + }, + "value": 565540988, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Penguin", + "pt": 2, + }, + "value": 191, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Corgi", + "pt": 2, + }, + "value": 1114, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Axolotl", + "pt": 2, + }, + "value": 3516, + }, + { + "category": "Pet", + "configData": { + "id": "Melted Slime", + "pt": 2, + "sh": true, + }, + "value": 21360, + }, + { + "category": "Pet", + "configData": { + "id": "Penguin", + "pt": 2, + }, + "value": 777, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Hubert", + "pt": 2, + }, + "value": 75000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Snowman", + "sh": true, + }, + "value": 21847, + }, + { + "category": "Pet", + "configData": { + "id": "Penguin", + "pt": 1, + "sh": true, + }, + "value": 3312, + }, + { + "category": "Pet", + "configData": { + "id": "Puffin", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fox", + "pt": 2, + }, + "value": 5964978014, + }, + { + "category": "Pet", + "configData": { + "id": "Steampunk Octopus", + "pt": 2, + }, + "value": 15505, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Dragon", + "pt": 2, + }, + "value": 9416, + }, + { + "category": "Pet", + "configData": { + "id": "Pristine Snake", + "pt": 1, + "sh": true, + }, + "value": 100000, + }, + { + "category": "Pet", + "configData": { + "id": "Pristine Poodle", + "pt": 2, + "sh": true, + }, + "value": 86240, + }, + { + "category": "Card", + "configData": { + "id": "Fancy Axolotl Card", + "pt": 1, + "sh": true, + }, + "value": 16057893, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Leopard", + "pt": 2, + }, + "value": 818, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Dog", + "pt": 2, + "sh": true, + }, + "value": 20000, + }, + { + "category": "Pet", + "configData": { + "id": "Holographic Cat", + "pt": 2, + }, + "value": 885, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Dragon", + "pt": 2, + }, + "value": 4735, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 62", + }, + "value": 151447435, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guest 666", + "pt": 2, + "sh": true, + }, + "value": 5761407130, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guest 666", + "pt": 1, + }, + "value": 35441766, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guest 666", + }, + "value": 40010265, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guest 666", + "pt": 2, + }, + "value": 253977637, + }, + { + "category": "Pet", + "configData": { + "id": "Mars Monkey", + }, + "value": 21123845, + }, + { + "category": "Pet", + "configData": { + "id": "Daydream Fox", + }, + "value": 8, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Samurai", + "sh": true, + }, + "value": 1463244032, + }, + { + "category": "Pet", + "configData": { + "id": "Moon Raccoon", + }, + "value": 14680525, + }, + { + "category": "Pet", + "configData": { + "id": "Earth Dog", + }, + "value": 7399461, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Bee", + "pt": 1, + }, + "value": 64114551, + }, + { + "category": "Pet", + "configData": { + "id": "Earth Dog", + "sh": true, + }, + "value": 25518604, + }, + { + "category": "Pet", + "configData": { + "id": "Faceling Raccoon", + }, + "value": 13, + }, + { + "category": "Pet", + "configData": { + "id": "Mars Monkey", + "pt": 2, + }, + "value": 41876037, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Partygoer Cat", + }, + "value": 21154552, + }, + { + "category": "Pet", + "configData": { + "id": "Tripod Octopus", + "pt": 1, + }, + "value": 38, + }, + { + "category": "Pet", + "configData": { + "id": "Tripod Octopus", + }, + "value": 27, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Earth Dog", + }, + "value": 38522550, + }, + { + "category": "Pet", + "configData": { + "id": "Guest 666", + }, + "value": 1587, + }, + { + "category": "Pet", + "configData": { + "id": "Moon Raccoon", + "pt": 2, + }, + "value": 30490962, + }, + { + "category": "Pet", + "configData": { + "id": "Piggy Piggy", + }, + "value": 33, + }, + { + "category": "Pet", + "configData": { + "id": "Piggy Piggy", + "pt": 2, + }, + "value": 98, + }, + { + "category": "Pet", + "configData": { + "id": "Skin Stealer", + }, + "value": 3, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mars Monkey", + }, + "value": 88825277, + }, + { + "category": "Pet", + "configData": { + "id": "Moon Raccoon", + "sh": true, + }, + "value": 29479772, + }, + { + "category": "Pet", + "configData": { + "id": "Omen", + }, + "value": 118, + }, + { + "category": "Pet", + "configData": { + "id": "Partygoer Cat", + }, + "value": 1018, + }, + { + "category": "Pet", + "configData": { + "id": "Mars Monkey", + "sh": true, + }, + "value": 33476778, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Lucky Block", + }, + "value": 138770429, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Death Moth", + }, + "value": 7209616681, + }, + { + "category": "Pet", + "configData": { + "id": "Guest 666", + "pt": 2, + }, + "value": 24884, + }, + { + "category": "Pet", + "configData": { + "id": "Daydream Fox", + "sh": true, + }, + "value": 21, + }, + { + "category": "Pet", + "configData": { + "id": "Daydream Fox", + "pt": 2, + }, + "value": 18, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guest 666", + "sh": true, + }, + "value": 421658399, + }, + { + "category": "Pet", + "configData": { + "id": "Omen", + "pt": 2, + "sh": true, + }, + "value": 298767, + }, + { + "category": "Pet", + "configData": { + "id": "Partygoer Cat", + "pt": 2, + }, + "value": 10026, + }, + { + "category": "Pet", + "configData": { + "id": "Tripod Octopus", + "sh": true, + }, + "value": 66, + }, + { + "category": "Pet", + "configData": { + "id": "Earth Dog", + "pt": 2, + }, + "value": 22473559, + }, + { + "category": "Pet", + "configData": { + "id": "Tripod Octopus", + "pt": 1, + "sh": true, + }, + "value": 63, + }, + { + "category": "Pet", + "configData": { + "id": "Skin Stealer", + "pt": 2, + }, + "value": 28, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Partygoer Cat", + "pt": 2, + }, + "value": 155169999, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Nyan Cat", + }, + "value": 903259209, + }, + { + "category": "Pet", + "configData": { + "id": "Daydream Fox", + "pt": 1, + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "Tripod Octopus", + "pt": 2, + "sh": true, + }, + "value": 648, + }, + { + "category": "Pet", + "configData": { + "id": "Skin Stealer", + "pt": 1, + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Piggy Piggy", + "pt": 1, + "sh": true, + }, + "value": 597, + }, + { + "category": "Pet", + "configData": { + "id": "Piggy Piggy", + "sh": true, + }, + "value": 94, + }, + { + "category": "Pet", + "configData": { + "id": "Omen", + "pt": 2, + }, + "value": 1183, + }, + { + "category": "Pet", + "configData": { + "id": "Tripod Octopus", + "pt": 2, + }, + "value": 132, + }, + { + "category": "Pet", + "configData": { + "id": "Piggy Piggy", + "pt": 1, + }, + "value": 61, + }, + { + "category": "Pet", + "configData": { + "id": "Omen", + "sh": true, + }, + "value": 5430, + }, + { + "category": "Pet", + "configData": { + "id": "Faceling Raccoon", + "sh": true, + }, + "value": 22, + }, + { + "category": "Pet", + "configData": { + "id": "Omen", + "pt": 1, + }, + "value": 399, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tripod Octopus", + }, + "value": 20295087, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Partygoer Cat", + "sh": true, + }, + "value": 130499544, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Partygoer Cat", + "pt": 1, + }, + "value": 24101955, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skin Stealer", + }, + "value": 19300942, + }, + { + "category": "Pet", + "configData": { + "id": "Guest 666", + "pt": 2, + "sh": true, + }, + "value": 4504151, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Partygoer Cat", + "pt": 2, + "sh": true, + }, + "value": 3026901796, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Piggy Piggy", + "pt": 1, + }, + "value": 21307888, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Faceling Raccoon", + }, + "value": 20021331, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Guest 666", + "pt": 1, + "sh": true, + }, + "value": 455377153, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Earth Dog", + "sh": true, + }, + "value": 220074647, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Partygoer Cat", + }, + "value": 4277826801, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tripod Octopus", + "pt": 1, + }, + "value": 20456549, + }, + { + "category": "Pet", + "configData": { + "id": "Piggy Piggy", + "pt": 2, + "sh": true, + }, + "value": 9824, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Piggy Piggy", + }, + "value": 19758474, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mars Monkey", + "sh": true, + }, + "value": 483602721, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Faceling Raccoon", + "pt": 1, + }, + "value": 20584680, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Space Bat", + }, + "value": 11047689750, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Bee", + }, + "value": 37515451, + }, + { + "category": "Pet", + "configData": { + "id": "Mars Monkey", + "pt": 2, + "sh": true, + }, + "value": 1017798152, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skin Stealer", + "pt": 2, + }, + "value": 119395496, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Samurai", + }, + "value": 44786328, + }, + { + "category": "Pet", + "configData": { + "id": "Skin Stealer", + "pt": 2, + "sh": true, + }, + "value": 978, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skin Stealer", + "pt": 1, + }, + "value": 22942232, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Bee", + "pt": 2, + }, + "value": 163279677, + }, + { + "category": "Pet", + "configData": { + "id": "Guest 666", + "pt": 1, + }, + "value": 9738, + }, + { + "category": "Pet", + "configData": { + "id": "Partygoer Cat", + "pt": 2, + "sh": true, + }, + "value": 1515351, + }, + { + "category": "Pet", + "configData": { + "id": "Skin Stealer", + "sh": true, + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Guest 666", + "sh": true, + }, + "value": 16609, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Faceling Raccoon", + "pt": 2, + }, + "value": 120913329, + }, + { + "category": "Pet", + "configData": { + "id": "Partygoer Cat", + "pt": 1, + }, + "value": 1818, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skin Stealer", + "sh": true, + }, + "value": 111796153, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Death Moth", + "pt": 1, + }, + "value": 6870734017, + }, + { + "category": "Pet", + "configData": { + "id": "Narwhal", + "pt": 2, + }, + "value": 902, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Alienus", + "pt": 2, + }, + "value": 2420, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Omen", + }, + "value": 25704699, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Omen", + "sh": true, + }, + "value": 254027440, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Immortuus", + "pt": 1, + "sh": true, + }, + "value": 561, + }, + { + "category": "Pet", + "configData": { + "id": "Quantum Goat", + "pt": 1, + }, + "value": 24466, + }, + { + "category": "Pet", + "configData": { + "id": "Memory Worm", + }, + "value": 16, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Piggy Piggy", + }, + "value": 4203932676, + }, + { + "category": "Pet", + "configData": { + "id": "Junkyard Bat", + "pt": 2, + "sh": true, + }, + "value": 1099999, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Bee", + "sh": true, + }, + "value": 255068915, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mars Monkey", + "pt": 2, + }, + "value": 720860235, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Partygoer Cat", + "pt": 1, + }, + "value": 4672488536, + }, + { + "category": "Pet", + "configData": { + "id": "Memory Worm", + "sh": true, + }, + "value": 89, + }, + { + "category": "Pet", + "configData": { + "id": "Faceling Raccoon", + "pt": 2, + "sh": true, + }, + "value": 77, + }, + { + "category": "Pet", + "configData": { + "id": "Death Moth", + }, + "value": 477, + }, + { + "category": "Pet", + "configData": { + "id": "Hacker Bear", + "pt": 1, + "sh": true, + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Death Moth", + "pt": 2, + }, + "value": 308, + }, + { + "category": "Pet", + "configData": { + "id": "Faceling Raccoon", + "pt": 2, + }, + "value": 16, + }, + { + "category": "Pet", + "configData": { + "id": "Inferno Dominus", + "pt": 2, + "sh": true, + }, + "value": 1177826173, + }, + { + "category": "Pet", + "configData": { + "id": "Memory Worm", + "pt": 1, + }, + "value": 13, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Omen", + "pt": 1, + }, + "value": 30019776, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Partygoer Cat", + "pt": 1, + "sh": true, + }, + "value": 694465955, + }, + { + "category": "Pet", + "configData": { + "id": "Moon Raccoon", + "pt": 2, + "sh": true, + }, + "value": 195829137, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Piggy Piggy", + "pt": 2, + }, + "value": 119422148, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Omen", + "pt": 2, + }, + "value": 168683563, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Wolf", + "pt": 2, + "sh": true, + }, + "value": 938053, + }, + { + "category": "Pet", + "configData": { + "id": "Memory Worm", + "pt": 2, + }, + "value": 30, + }, + { + "category": "Pet", + "configData": { + "id": "Daydream Fox", + "pt": 2, + "sh": true, + }, + "value": 609, + }, + { + "category": "Pet", + "configData": { + "id": "Player Piggy", + "pt": 1, + "sh": true, + }, + "value": 14544043584, + }, + { + "category": "Pet", + "configData": { + "id": "Partygoer Cat", + "sh": true, + }, + "value": 14115, + }, + { + "category": "Pet", + "configData": { + "id": "Faceling Raccoon", + "pt": 1, + }, + "value": 6, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Guest 666", + }, + "value": 115070691736, + }, + { + "category": "Pet", + "configData": { + "id": "Archivist Ferret", + "pt": 1, + "sh": true, + }, + "value": 100000, + }, + { + "category": "Pet", + "configData": { + "id": "Daydream Fox", + "pt": 1, + "sh": true, + }, + "value": 51, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tripod Octopus", + "pt": 2, + }, + "value": 122429622, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Police Cat", + "pt": 1, + "sh": true, + }, + "value": 4469670078, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skin Stealer", + "pt": 1, + "sh": true, + }, + "value": 572956940, + }, + { + "category": "Pet", + "configData": { + "id": "Candycane Shake Shark", + "sh": true, + }, + "value": 205767, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Brain Ball", + "sh": true, + }, + "value": 227520000000, + }, + { + "category": "Pet", + "configData": { + "id": "Faceling Raccoon", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Gingerbread Lion", + "sh": true, + }, + "value": 1331, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Shiba", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Earth Dog", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Memory Worm", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Love Lamb", + "pt": 2, + }, + "value": 4923069279, + }, + { + "category": "Pet", + "configData": { + "id": "Totem Cub", + "sh": true, + }, + "value": 33342, + }, + { + "category": "Pet", + "configData": { + "id": "Holly Corgi", + "pt": 1, + "sh": true, + }, + "value": 51566, + }, + { + "category": "Pet", + "configData": { + "id": "Memory Worm", + "pt": 2, + "sh": true, + }, + "value": 504, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Earth Dog", + "pt": 2, + }, + "value": 349615048, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Partygoer Cat", + "pt": 2, + }, + "value": 14877475586, + }, + { + "category": "Pet", + "configData": { + "id": "Death Moth", + "pt": 1, + }, + "value": 1786, + }, + { + "category": "Pet", + "configData": { + "id": "Fox", + "pt": 2, + }, + "value": 360, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Omen", + "pt": 2, + "sh": true, + }, + "value": 4203151995, + }, + { + "category": "Pet", + "configData": { + "id": "Demon Cat", + "sh": true, + }, + "value": 31903, + }, + { + "category": "Pet", + "configData": { + "id": "Omen", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Arctic Fox", + "pt": 1, + "sh": true, + }, + "value": 79999, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Partygoer Cat", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Skin Stealer", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Bearserker", + "pt": 1, + "sh": true, + }, + "value": 10, + }, + { + "category": "Pet", + "configData": { + "id": "Toy Mouse", + "pt": 1, + }, + "value": 24435, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jelly Butterfly", + "pt": 1, + "sh": true, + }, + "value": 26929440000, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Unicorn", + "pt": 1, + "sh": true, + }, + "value": 1111, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Grim Reaper", + "pt": 1, + }, + "value": 143200000000, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Agony", + "pt": 1, + "sh": true, + }, + "value": 423, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Fox", + "pt": 1, + }, + "value": 2404, + }, + { + "category": "Pet", + "configData": { + "id": "Death Moth", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ninja Axolotl", + "pt": 1, + "sh": true, + }, + "value": 5659649600, + }, + { + "category": "Pet", + "configData": { + "id": "Cheerful Yeti", + "sh": true, + }, + "value": 3235, + }, + { + "category": "Pet", + "configData": { + "id": "Death Moth", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Pixie Bee", + "pt": 2, + "sh": true, + }, + "value": 374239, + }, + { + "category": "Pet", + "configData": { + "id": "Puffin", + "pt": 2, + "sh": true, + }, + "value": 165000, + }, + { + "category": "Pet", + "configData": { + "id": "Egg Spitting Dino", + "pt": 1, + "sh": true, + }, + "value": 68182, + }, + { + "category": "Pet", + "configData": { + "id": "Guest 666", + "pt": 1, + "sh": true, + }, + "value": 2582278, + }, + { + "category": "Pet", + "configData": { + "id": "Mossy Lamb", + "pt": 2, + "sh": true, + }, + "value": 1000000, + }, + { + "category": "Pet", + "configData": { + "id": "Lemur", + "pt": 2, + }, + "value": 489, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Solar Lion", + }, + "value": 158642202373, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Husky", + "sh": true, + }, + "value": 557, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Ninja Red Panda", + "sh": true, + }, + "value": 1651, + }, + { + "category": "Pet", + "configData": { + "id": "Zombie Corgi", + "sh": true, + }, + "value": 4191, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Meerkat", + "pt": 1, + "sh": true, + }, + "value": 900000, + }, + { + "category": "Card", + "configData": { + "id": "Fancy Axolotl Card", + "pt": 2, + "sh": true, + }, + "value": 101302315, + }, + { + "category": "Pet", + "configData": { + "id": "Coach Hippo", + "pt": 1, + "sh": true, + }, + "value": 278, + }, + { + "category": "Pet", + "configData": { + "id": "Super Coral Hydra", + "pt": 2, + "sh": true, + }, + "value": 4000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Snow Globe Axolotl", + "pt": 2, + "sh": true, + }, + "value": 630782524, + }, + { + "category": "Pet", + "configData": { + "id": "Earth Dog", + "pt": 2, + "sh": true, + }, + "value": 154832357, + }, + { + "category": "Pet", + "configData": { + "cv": 6, + "id": "Huge Chroma Unicorn", + "pt": 2, + "sh": true, + }, + "value": 25000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Death Moth", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Chill Ducky", + "sh": true, + }, + "value": 16090, + }, + { + "category": "Pet", + "configData": { + "id": "Jaguar", + "pt": 2, + }, + "value": 325, + }, + { + "category": "Pet", + "configData": { + "id": "Partygoer Cat", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Umbrella Cat", + "pt": 1, + "sh": true, + }, + "value": 60180, + }, + { + "category": "Pet", + "configData": { + "id": "Autumn Retriever", + "pt": 2, + "sh": true, + }, + "value": 18534, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Shark", + "pt": 2, + "sh": true, + }, + "value": 1000000, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Lucky Block", + "sh": true, + }, + "value": 1862784084, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Propeller Cat", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Dragon", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Artemis Bear", + "pt": 2, + "sh": true, + }, + "value": 22745, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Skin Stealer", + "pt": 2, + "sh": true, + }, + "value": 2373144857, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Propeller Cat", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Rich Cat", + "pt": 2, + }, + "value": 41038515200, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Sock Cat", + "pt": 2, + }, + "value": 117480000000, + }, + { + "category": "Pet", + "configData": { + "id": "Narwhal", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Red Dragon", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Lucky Cat", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Stacked King Slime", + "pt": 1, + }, + "value": 366, + }, + { + "category": "Pet", + "configData": { + "id": "Ender Slime", + "pt": 1, + "sh": true, + }, + "value": 16246, + }, + { + "category": "Pet", + "configData": { + "id": "Heavenly Peacock", + "pt": 1, + }, + "value": 145, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Omen", + "pt": 1, + "sh": true, + }, + "value": 446601345, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Piggy Piggy", + "pt": 1, + }, + "value": 4439675351, + }, + { + "category": "Pet", + "configData": { + "id": "Hellhound", + "pt": 2, + "sh": true, + }, + "value": 686272, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Piggy Piggy", + "pt": 2, + }, + "value": 13092101935, + }, + { + "category": "Pet", + "configData": { + "id": "Goat", + "pt": 1, + }, + "value": 5634, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Skateboard Bulldog", + "pt": 1, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Cat Magician", + "pt": 2, + }, + "value": 4653, + }, + { + "category": "Pet", + "configData": { + "id": "Junkyard Bat", + "pt": 2, + }, + "value": 1819, + }, + { + "category": "Pet", + "configData": { + "id": "Reaper", + "pt": 2, + }, + "value": 1919, + }, + { + "category": "Pet", + "configData": { + "id": "Hi-Tech Bee", + "pt": 2, + }, + "value": 65997, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fox", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Bread Shiba", + "pt": 2, + }, + "value": 19285601280, + }, + { + "category": "Pet", + "configData": { + "id": "Tarantula", + "pt": 1, + "sh": true, + }, + "value": 2060000944, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Fireball Cat", + "pt": 2, + "sh": true, + }, + "value": 7238912000, + }, + { + "category": "Pet", + "configData": { + "id": "Arctic Fox", + "pt": 2, + }, + "value": 9741, + }, + { + "category": "Pet", + "configData": { + "id": "Bearserker", + "pt": 2, + }, + "value": 570, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Samurai Dragon", + "pt": 2, + }, + "value": 6200, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Imp", + "pt": 2, + "sh": true, + }, + "value": 320, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Ooze Corgi", + "pt": 1, + "sh": true, + }, + "value": 90400000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Chill Sloth", + "pt": 2, + "sh": true, + }, + "value": 42201600000, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Dominus", + "pt": 1, + }, + "value": 1713, + }, + { + "category": "Pet", + "configData": { + "id": "Dominus Serpents", + "pt": 1, + "sh": true, + }, + "value": 40184, + }, + { + "category": "Pet", + "configData": { + "id": "Love Lion", + "pt": 1, + "sh": true, + }, + "value": 23458, + }, + { + "category": "Pet", + "configData": { + "id": "Snowflake Dominus", + "pt": 1, + "sh": true, + }, + "value": 36649, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Corgi", + "pt": 2, + "sh": true, + }, + "value": 4510223, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Shark", + "pt": 2, + "sh": true, + }, + "value": 467755, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Guest 666", + "pt": 1, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Colorful Slime", + "pt": 1, + }, + "value": 3989, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Cool Cat", + "pt": 1, + "sh": true, + }, + "value": 13000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Bunny", + "pt": 2, + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Dolphin", + "pt": 1, + "sh": true, + }, + "value": 101372, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Hydra", + "pt": 1, + "sh": true, + }, + "value": 120448, + }, + { + "category": "Pet", + "configData": { + "id": "Knight Slime", + "pt": 2, + "sh": true, + }, + "value": 600000, + }, + { + "category": "Pet", + "configData": { + "id": "Knight Slime", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Charred Bat", + "pt": 2, + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Anime Agony", + "sh": true, + }, + "value": 5060888989, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Bat", + "pt": 2, + }, + "value": 292, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Mars Monkey", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Panda", + "pt": 2, + }, + "value": 65061932, + }, + { + "category": "Pet", + "configData": { + "id": "Festive Bear", + "pt": 1, + "sh": true, + }, + "value": 1119, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Nyan Cat", + "sh": true, + }, + "value": 6978411677, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Cat Ball", + }, + "value": 1648227, + }, + { + "category": "Pet", + "configData": { + "id": "Police Dog", + "pt": 1, + "sh": true, + }, + "value": 1806880, + }, + { + "category": "Pet", + "configData": { + "id": "Guard Corgi", + "pt": 1, + "sh": true, + }, + "value": 9897238, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Axolotl", + "sh": true, + }, + "value": 527, + }, + { + "category": "Pet", + "configData": { + "id": "Brain Ball", + "pt": 1, + "sh": true, + }, + "value": 60884, + }, + { + "category": "Pet", + "configData": { + "id": "Scuba Shark", + "pt": 2, + }, + "value": 9962093, + }, + { + "category": "Pet", + "configData": { + "id": "Comet Pony", + "pt": 1, + }, + "value": 47121, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Corgi", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Pog Shark", + "pt": 1, + "sh": true, + }, + "value": 35000000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Dot Matrix Kitsune", + "pt": 2, + }, + "value": 90656000000, + }, + { + "category": "Pet", + "configData": { + "id": "Ice Corgi", + "pt": 1, + }, + "value": 68, + }, + { + "category": "Pet", + "configData": { + "id": "Scribe Squirrel", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Glimmercap Turtle", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Prickly Panda", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Steampunk Wolf", + "pt": 1, + }, + "value": 3861, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Golem", + "pt": 1, + "sh": true, + }, + "value": 3800000000, + }, + { + "category": "Pet", + "configData": { + "id": "Sticky Lamb", + "pt": 1, + }, + "value": 475223, + }, + { + "category": "Pet", + "configData": { + "id": "Ooze Axolotl", + "pt": 2, + "sh": true, + }, + "value": 27128, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Agony", + "pt": 2, + "sh": true, + }, + "value": 148, + }, + { + "category": "Pet", + "configData": { + "id": "Chimpanzee", + "pt": 2, + }, + "value": 9458, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Evil Snowman", + "pt": 1, + "sh": true, + }, + "value": 3898670713, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Butterfly", + "pt": 2, + "sh": true, + }, + "value": 447332, + }, + { + "category": "Pet", + "configData": { + "id": "Easter Dominus", + "pt": 2, + "sh": true, + }, + "value": 12832, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Pixel Shadow Griffin", + "pt": 1, + "sh": true, + }, + "value": 500112169370, + }, + { + "category": "Pet", + "configData": { + "id": "Fireball Cat", + "pt": 1, + "sh": true, + }, + "value": 244022, + }, + { + "category": "Pet", + "configData": { + "id": "Quantum Griffin", + "sh": true, + }, + "value": 167257, + }, + { + "category": "Pet", + "configData": { + "id": "Flower Panda", + "pt": 1, + "sh": true, + }, + "value": 106000, + }, + { + "category": "Pet", + "configData": { + "id": "Elephant", + "pt": 2, + }, + "value": 908, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Dragon", + "pt": 2, + }, + "value": 287, + }, + { + "category": "Pet", + "configData": { + "id": "Creepy Wolf", + "pt": 1, + }, + "value": 3537, + }, + { + "category": "Pet", + "configData": { + "id": "Gummy Fox", + "sh": true, + }, + "value": 1004152, + }, + { + "category": "Pet", + "configData": { + "id": "Galaxy Fox", + "pt": 1, + "sh": true, + }, + "value": 102744, + }, + { + "category": "Pet", + "configData": { + "id": "Bear", + "pt": 2, + }, + "value": 39, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Space Bat", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Inferno Cat", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Meebo The Alien", + "pt": 2, + }, + "value": 24893, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Nyan Cat", + }, + "value": 146697202547, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Shark", + "pt": 2, + }, + "value": 5969, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Cowboy Cat", + "pt": 2, + }, + "value": 1002, + }, + { + "category": "Pet", + "configData": { + "id": "Beegle Dog", + "pt": 1, + "sh": true, + }, + "value": 80012, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Death Moth", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Gamer Shiba", + "pt": 2, + "sh": true, + }, + "value": 670364, + }, + { + "category": "Pet", + "configData": { + "id": "Basketball Corgi", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Wisp Deer", + "pt": 1, + "sh": true, + }, + "value": 99999, + }, + { + "category": "Pet", + "configData": { + "id": "Marshmallow Agony", + "sh": true, + }, + "value": 126112562, + }, + { + "category": "Pet", + "configData": { + "id": "Disco Ball Dragon", + "pt": 1, + }, + "value": 107642, + }, + { + "category": "Pet", + "configData": { + "id": "White Bunny", + "pt": 2, + }, + "value": 237, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Deer", + "pt": 1, + "sh": true, + }, + "value": 3616000, + }, + { + "category": "Pet", + "configData": { + "id": "Ladybug", + "pt": 2, + }, + "value": 20, + }, + { + "category": "Pet", + "configData": { + "id": "Hedgehog", + "pt": 2, + }, + "value": 58, + }, + { + "category": "Pet", + "configData": { + "id": "Pixie Bee", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Dominus", + "pt": 2, + "sh": true, + }, + "value": 599556, + }, + { + "category": "Pet", + "configData": { + "id": "Cyborg Bunny", + "pt": 2, + "sh": true, + }, + "value": 4000, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Bunny", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Platypus", + "pt": 2, + }, + "value": 18833, + }, + { + "category": "Pet", + "configData": { + "id": "Umbrella Cat", + "pt": 2, + }, + "value": 678, + }, + { + "category": "Pet", + "configData": { + "id": "Firefly", + "pt": 2, + }, + "value": 1163, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Axolotl", + "pt": 1, + }, + "value": 52340, + }, + { + "category": "Hoverboard", + "configData": { + "id": "Daydream", + }, + "value": 146936195, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Daydream Fox", + }, + "value": 226578473, + }, + { + "category": "Booth", + "configData": { + "id": "Daydream", + }, + "value": 96306262, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Daydream Fox", + "pt": 2, + }, + "value": 3422278616, + }, + { + "category": "Pet", + "configData": { + "id": "Warrior Wolf", + }, + "value": 6336, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Daydream Fox", + "pt": 1, + }, + "value": 370951543, + }, + { + "category": "Pet", + "configData": { + "id": "Arctic Fox", + "pt": 2, + "sh": true, + }, + "value": 100000, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Griffin", + "sh": true, + }, + "value": 3700, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Goat", + "pt": 2, + }, + "value": 1620, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Goat", + "sh": true, + }, + "value": 492, + }, + { + "category": "Pet", + "configData": { + "id": "Bleebo The Alien", + "sh": true, + }, + "value": 37398, + }, + { + "category": "Pet", + "configData": { + "id": "Sapphire Carbuncle", + "pt": 2, + }, + "value": 1901, + }, + { + "category": "Pet", + "configData": { + "id": "Bearserker", + "pt": 2, + "sh": true, + }, + "value": 76320, + }, + { + "category": "Pet", + "configData": { + "id": "Broomstick Cat", + "pt": 2, + "sh": true, + }, + "value": 2037, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Bunny", + "sh": true, + }, + "value": 199, + }, + { + "category": "Pet", + "configData": { + "id": "Frostbyte Narwhal", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Ghost", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Jungle Golem", + "pt": 1, + "sh": true, + }, + "value": 624032, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Doodle Dragon", + "pt": 2, + "sh": true, + }, + "value": 201556305920, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Phantom Wolf", + "pt": 2, + "sh": true, + }, + "value": 1480000582, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Enchanted Dog", + "pt": 2, + "sh": true, + }, + "value": 7800000000, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Meebo in a Spaceship", + "pt": 1, + "sh": true, + }, + "value": 71340, + }, + { + "category": "Pet", + "configData": { + "id": "Atomic Monkey", + "pt": 1, + "sh": true, + }, + "value": 18197, + }, + { + "category": "Pet", + "configData": { + "id": "Atomic Monkey", + "sh": true, + }, + "value": 3961, + }, + { + "category": "Pet", + "configData": { + "id": "404 Demon", + "sh": true, + }, + "value": 4361, + }, + { + "category": "Pet", + "configData": { + "id": "Hydra Axolotl", + "pt": 1, + "sh": true, + }, + "value": 236000, + }, + { + "category": "Pet", + "configData": { + "id": "Baby Piglet", + "pt": 2, + "sh": true, + }, + "value": 4505, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Relic Deer", + "pt": 2, + "sh": true, + }, + "value": 381703902597, + }, + { + "category": "Pet", + "configData": { + "id": "Raccoon", + "sh": true, + }, + "value": 809, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Daydream Fox", + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Dark Fox", + "pt": 1, + "sh": true, + }, + "value": 1195721, + }, + { + "category": "Pet", + "configData": { + "id": "Griffin", + "pt": 2, + }, + "value": 23135, + }, + { + "category": "Pet", + "configData": { + "id": "Agony", + "pt": 2, + }, + "value": 471, + }, + { + "category": "Pet", + "configData": { + "id": "Nuclear Mining Cat", + "sh": true, + }, + "value": 1129, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Butterfly", + "pt": 1, + }, + "value": 1028, + }, + { + "category": "Pet", + "configData": { + "id": "Mushroom Raccoon", + "pt": 2, + }, + "value": 421, + }, + { + "category": "Pet", + "configData": { + "id": "Purple Cobra", + "pt": 2, + }, + "value": 976, + }, + { + "category": "Pet", + "configData": { + "id": "Pirate Panda", + "pt": 1, + }, + "value": 90, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Skateboard Bulldog", + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Autumn Red Panda", + "sh": true, + }, + "value": 58, + }, + { + "category": "Pet", + "configData": { + "id": "Huge 1x1x1x1", + }, + "value": 31623647, + }, + { + "category": "Pet", + "configData": { + "id": "Partypooper Dog", + }, + "value": 82, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Signature BIG Maskot", + "pt": 2, + }, + "value": 88320000000, + }, + { + "category": "Pet", + "configData": { + "id": "Daydream Axolotl", + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "1x1x1x1", + }, + "value": 18330, + }, + { + "category": "Pet", + "configData": { + "id": "Gamemaster Cat", + }, + "value": 4586, + }, + { + "category": "Pet", + "configData": { + "id": "Smiley Penguin", + }, + "value": 102, + }, + { + "category": "Pet", + "configData": { + "id": "Huge 1x1x1x1", + "pt": 1, + }, + "value": 38631381, + }, + { + "category": "Pet", + "configData": { + "id": "Faceling Owl", + }, + "value": 21, + }, + { + "category": "Pet", + "configData": { + "id": "Faceling Owl", + "sh": true, + }, + "value": 52, + }, + { + "category": "Pet", + "configData": { + "id": "1x1x1x1", + "pt": 2, + }, + "value": 42933, + }, + { + "category": "Pet", + "configData": { + "id": "Gamemaster Cat", + "pt": 2, + }, + "value": 34065, + }, + { + "category": "Pet", + "configData": { + "id": "Partypooper Dog", + "pt": 2, + }, + "value": 979, + }, + { + "category": "Pet", + "configData": { + "id": "Daydream Axolotl", + "pt": 2, + }, + "value": 27, + }, + { + "category": "Pet", + "configData": { + "id": "Tripod Dominus", + "sh": true, + }, + "value": 584, + }, + { + "category": "Pet", + "configData": { + "id": "Tripod Dominus", + }, + "value": 27, + }, + { + "category": "Pet", + "configData": { + "id": "Faceling Owl", + "pt": 1, + }, + "value": 5, + }, + { + "category": "Pet", + "configData": { + "id": "1x1x1x1", + "pt": 1, + }, + "value": 38944, + }, + { + "category": "Pet", + "configData": { + "id": "Huge 1x1x1x1", + "pt": 2, + }, + "value": 203839621, + }, + { + "category": "Pet", + "configData": { + "id": "1x1x1x1", + "pt": 2, + "sh": true, + }, + "value": 13666990, + }, + { + "category": "Pet", + "configData": { + "id": "Tripod Dominus", + "pt": 1, + }, + "value": 24, + }, + { + "category": "Pet", + "configData": { + "id": "Huge 1x1x1x1", + "sh": true, + }, + "value": 239300934, + }, + { + "category": "Pet", + "configData": { + "id": "Tripod Dominus", + "pt": 2, + }, + "value": 228, + }, + { + "category": "Pet", + "configData": { + "id": "Partypooper Dog", + "pt": 2, + "sh": true, + }, + "value": 25397, + }, + { + "category": "Pet", + "configData": { + "id": "1x1x1x1", + "sh": true, + }, + "value": 350658, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Daydream Axolotl", + }, + "value": 18719836, + }, + { + "category": "Pet", + "configData": { + "id": "Gamemaster Cat", + "pt": 1, + }, + "value": 5813, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Daydream Axolotl", + "pt": 1, + }, + "value": 20488311, + }, + { + "category": "Pet", + "configData": { + "id": "Partypooper Dog", + "pt": 1, + }, + "value": 281, + }, + { + "category": "Pet", + "configData": { + "id": "Tripod Dominus", + "pt": 2, + "sh": true, + }, + "value": 4214, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gamemaster Cat", + "pt": 1, + }, + "value": 24208448, + }, + { + "category": "Pet", + "configData": { + "id": "Daydream Axolotl", + "pt": 1, + }, + "value": 7, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Smiley Penguin", + }, + "value": 19383069, + }, + { + "category": "Pet", + "configData": { + "id": "Smiley Penguin", + "pt": 2, + }, + "value": 388, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Partypooper Dog", + }, + "value": 18199205, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tripod Dominus", + }, + "value": 19293072, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Faceling Owl", + "pt": 1, + }, + "value": 20091083, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Daydream Axolotl", + "pt": 2, + }, + "value": 121609758, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Smiley Penguin", + "pt": 2, + }, + "value": 132137504, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Faceling Owl", + }, + "value": 17683705, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Partypooper Dog", + "pt": 2, + }, + "value": 144283664, + }, + { + "category": "Pet", + "configData": { + "id": "Gamemaster Cat", + "sh": true, + }, + "value": 31190, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tripod Dominus", + "pt": 1, + }, + "value": 19836089, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gamemaster Cat", + }, + "value": 22852796, + }, + { + "category": "Pet", + "configData": { + "id": "Partypooper Dog", + "sh": true, + }, + "value": 563, + }, + { + "category": "Pet", + "configData": { + "id": "1x1x1x1", + "pt": 1, + "sh": true, + }, + "value": 15891090, + }, + { + "category": "Pet", + "configData": { + "id": "Daydream Axolotl", + "sh": true, + }, + "value": 9, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Smiley Penguin", + }, + "value": 4235205508, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Smiley Penguin", + "pt": 1, + }, + "value": 21052064, + }, + { + "category": "Pet", + "configData": { + "id": "Smiley Penguin", + "pt": 2, + "sh": true, + }, + "value": 8932, + }, + { + "category": "Pet", + "configData": { + "id": "Stealth Cat", + "pt": 2, + "sh": true, + }, + "value": 30821186747, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gamemaster Cat", + "pt": 2, + }, + "value": 137904608, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Faceling Owl", + "pt": 2, + }, + "value": 114258588, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Daydream Axolotl", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gamemaster Cat", + }, + "value": 4195691442, + }, + { + "category": "Pet", + "configData": { + "id": "Gamemaster Cat", + "pt": 2, + "sh": true, + }, + "value": 1244193, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Partypooper Dog", + "pt": 1, + }, + "value": 24180386, + }, + { + "category": "Pet", + "configData": { + "id": "Daydream Axolotl", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Faceling Owl", + "pt": 2, + }, + "value": 52, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Phoenix", + "sh": true, + }, + "value": 50, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Daydream Axolotl", + "sh": true, + }, + "value": 94050526, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Partypooper Dog", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Tripod Dominus", + "pt": 2, + }, + "value": 122301565, + }, + { + "category": "Pet", + "configData": { + "id": "Faceling Owl", + "pt": 2, + "sh": true, + }, + "value": 2049, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Daydream Axolotl", + "pt": 2, + "sh": true, + }, + "value": 2626449274, + }, + { + "category": "Pet", + "configData": { + "id": "Clover Bee", + "sh": true, + }, + "value": 640160, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Death Moth", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan 1x1x1x1", + }, + "value": 103401524729, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Smiley Penguin", + "pt": 2, + }, + "value": 13188638113, + }, + { + "category": "Pet", + "configData": { + "id": "Daydream Axolotl", + "pt": 2, + "sh": true, + }, + "value": 2380, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gamemaster Cat", + "pt": 1, + }, + "value": 4560367580, + }, + { + "category": "Pet", + "configData": { + "id": "Smiley Penguin", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Smiley Penguin", + "sh": true, + }, + "value": 121431966, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Partypooper Dog", + "sh": true, + }, + "value": 106502320, + }, + { + "category": "Pet", + "configData": { + "id": "Partypooper Dog", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Smiley Penguin", + "pt": 1, + }, + "value": 4393485668, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Sprout Wyrmling", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Icemortuus", + "pt": 1, + }, + "value": 18142, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Police Cat", + "pt": 2, + "sh": true, + }, + "value": 13176000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge 1x1x1x1", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Smiley Penguin", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge 1x1x1x1", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Tripod Dominus", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Divinus", + "pt": 2, + "sh": true, + }, + "value": 4995081005, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Smiley Penguin", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Pixie Fox", + "pt": 1, + }, + "value": 2157, + }, + { + "category": "Pet", + "configData": { + "id": "Fairy Bee", + "pt": 1, + }, + "value": 135, + }, + { + "category": "Card", + "configData": { + "id": "Pog Monkey Card", + "pt": 2, + "sh": true, + }, + "value": 7234385, + }, + { + "category": "Pet", + "configData": { + "id": "Ronin Panda", + "sh": true, + }, + "value": 732, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gamemaster Cat", + "pt": 2, + }, + "value": 15717870182, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Dog", + "sh": true, + }, + "value": 0, + }, + { + "category": "Card", + "configData": { + "id": "Titanic Ghostly Wolf Card", + "pt": 2, + "sh": true, + }, + "value": 28000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Panther", + "sh": true, + }, + "value": 27953, + }, + { + "category": "Pet", + "configData": { + "id": "Smiley Penguin", + "pt": 1, + }, + "value": 72, + }, + { + "category": "Pet", + "configData": { + "id": "Smiley Penguin", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Evil Computer", + "sh": true, + }, + "value": 27690, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Demolition Cat", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Santa Paws", + "pt": 2, + }, + "value": 49600000, + }, + { + "category": "Pet", + "configData": { + "id": "Gamemaster Cat", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Junkyard Hound Ball", + "pt": 2, + "sh": true, + }, + "value": 286901, + }, + { + "category": "Pet", + "configData": { + "id": "Wild Fire Agony", + "sh": true, + }, + "value": 8539, + }, + { + "category": "Pet", + "configData": { + "id": "Doodle Bunny", + "pt": 2, + }, + "value": 74159, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Gamemaster Cat", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Valentines Angelus", + "pt": 2, + "sh": true, + }, + "value": 580506528, + }, + { + "category": "Consumable", + "configData": { + "id": "Backrooms Speed Booster", + "tn": 1, + }, + "value": 270417, + }, + { + "category": "Consumable", + "configData": { + "id": "Backrooms Luck Booster", + "tn": 1, + }, + "value": 2687875, + }, + { + "category": "Pet", + "configData": { + "id": "Vibrant Toucan", + "pt": 2, + }, + "value": 2848, + }, + { + "category": "Consumable", + "configData": { + "id": "Backrooms Teleport Booster", + "tn": 1, + }, + "value": 5058773, + }, + { + "category": "Pet", + "configData": { + "id": "Faceling Owl", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Orange Parrot", + "sh": true, + }, + "value": 1493, + }, + { + "category": "Pet", + "configData": { + "id": "Cyberpunk Axolotl", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Werewolf", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Broomstick Corgi", + "pt": 1, + }, + "value": 7020, + }, + { + "category": "Pet", + "configData": { + "id": "Royal Cloud Cat", + "pt": 2, + "sh": true, + }, + "value": 33179, + }, + { + "category": "Pet", + "configData": { + "id": "Haxolotl", + "pt": 1, + "sh": true, + }, + "value": 50000, + }, + { + "category": "Pet", + "configData": { + "id": "Abyssal Dolphin", + "pt": 2, + }, + "value": 10043, + }, + { + "category": "Pet", + "configData": { + "id": "Maple Owl", + "pt": 2, + "sh": true, + }, + "value": 36752000, + }, + { + "category": "Pet", + "configData": { + "id": "Chroma Tiger", + "sh": true, + }, + "value": 641007, + }, + { + "category": "Pet", + "configData": { + "id": "Dino Bear", + "pt": 2, + }, + "value": 15868, + }, + { + "category": "Pet", + "configData": { + "id": "Ooze Cat", + "pt": 2, + }, + "value": 52904485, + }, + { + "category": "Pet", + "configData": { + "id": "Stunt Cat", + "pt": 2, + "sh": true, + }, + "value": 66728, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Dog", + "pt": 2, + "sh": true, + }, + "value": 25120, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Samurai Dragon", + "pt": 1, + "sh": true, + }, + "value": 50, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Samurai Cat", + "pt": 2, + }, + "value": 1503, + }, + { + "category": "Pet", + "configData": { + "id": "Poseidon Axolotl", + "sh": true, + }, + "value": 1000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Squirrel", + "pt": 1, + }, + "value": 38953, + }, + { + "category": "Pet", + "configData": { + "id": "Tiger", + "pt": 1, + }, + "value": 88, + }, + { + "category": "Pet", + "configData": { + "id": "Flamingo", + "pt": 1, + }, + "value": 205121, + }, + { + "category": "Pet", + "configData": { + "id": "Mining Robot", + "pt": 1, + "sh": true, + }, + "value": 6761784, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Lucki Agony", + "pt": 2, + }, + "value": 19232576000, + }, + { + "category": "Pet", + "configData": { + "id": "Wicked Empyrean Dominus", + "sh": true, + }, + "value": 110261, + }, + { + "category": "Pet", + "configData": { + "id": "Storm Griffin", + "pt": 2, + "sh": true, + }, + "value": 394748, + }, + { + "category": "Pet", + "configData": { + "id": "Snowflake Dominus", + "sh": true, + }, + "value": 603, + }, + { + "category": "Pet", + "configData": { + "id": "Enchanted Dragon", + "pt": 2, + }, + "value": 2488, + }, + { + "category": "Pet", + "configData": { + "id": "Cheerful Yeti", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Ninja Cow", + "pt": 2, + }, + "value": 26236, + }, + { + "category": "Pet", + "configData": { + "id": "Abyss Carbuncle", + "sh": true, + }, + "value": 53822, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Green Balloon Cat", + "pt": 2, + "sh": true, + }, + "value": 18288000000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Scribe Squirrel", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Frost Dragon", + "pt": 2, + "sh": true, + }, + "value": 62000, + }, + { + "category": "Pet", + "configData": { + "id": "Electric Bunny", + "pt": 1, + }, + "value": 5087, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Werewolf", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Pufferfish", + "sh": true, + }, + "value": 1412, + }, + { + "category": "Pet", + "configData": { + "id": "Tabby Cat", + "sh": true, + }, + "value": 12697, + }, + { + "category": "Pet", + "configData": { + "id": "Kawaii Dragon Ball", + "pt": 1, + "sh": true, + }, + "value": 54588, + }, + { + "category": "Pet", + "configData": { + "id": "Prison Monkey", + "sh": true, + }, + "value": 174086, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Solar Lion", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Cold Butterfly", + "pt": 2, + }, + "value": 2548, + }, + { + "category": "Pet", + "configData": { + "id": "Crown", + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Hacker Cat", + "pt": 1, + }, + "value": 1368, + }, + { + "category": "Pet", + "configData": { + "id": "Athena Owl", + "sh": true, + }, + "value": 98, + }, + { + "category": "Pet", + "configData": { + "id": "Husky", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Plague Dragon", + "pt": 1, + }, + "value": 187, + }, + { + "category": "Pet", + "configData": { + "id": "Stacked Cat", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Sacred Boar", + "pt": 1, + "sh": true, + }, + "value": 2000000, + }, + { + "category": "Pet", + "configData": { + "id": "Glitched Cat", + "pt": 1, + "sh": true, + }, + "value": 1000, + }, + { + "category": "Pet", + "configData": { + "id": "Empyrean Dragon", + "pt": 1, + "sh": true, + }, + "value": 49371, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Dolphin", + "sh": true, + }, + "value": 32568, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dominus Lucki", + "pt": 2, + }, + "value": 21816812288, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Flamethrower Spider", + "pt": 1, + "sh": true, + }, + "value": 20824474174, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Glitched Cat Ball", + "pt": 2, + }, + "value": 103548800000, + }, + { + "category": "Pet", + "configData": { + "id": "Wizard Unicorn", + "pt": 2, + }, + "value": 1827, + }, + { + "category": "Pet", + "configData": { + "id": "Tech Ninja Cow", + "pt": 1, + }, + "value": 171738, + }, + { + "category": "Pet", + "configData": { + "id": "Jolly Penguin", + "pt": 2, + "sh": true, + }, + "value": 1330, + }, + { + "category": "Pet", + "configData": { + "id": "Ninja Otter", + "pt": 2, + }, + "value": 5098320, + }, + { + "category": "Pet", + "configData": { + "id": "Mech Dino", + "pt": 1, + }, + "value": 349, + }, + { + "category": "Pet", + "configData": { + "id": "Cheerful Yeti", + "pt": 2, + "sh": true, + }, + "value": 37500, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Reindeer Agony", + "pt": 1, + "sh": true, + }, + "value": 3328124586, + }, + { + "category": "Pet", + "configData": { + "id": "Colorful Dragon", + "pt": 1, + }, + "value": 1097, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan 1x1x1x1", + "pt": 1, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Walrus", + "pt": 2, + "sh": true, + }, + "value": 37500, + }, + { + "category": "Pet", + "configData": { + "id": "Turtle", + "pt": 2, + "sh": true, + }, + "value": 1, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Partypooper Dog", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Hacker Cat", + "sh": true, + }, + "value": 14791, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Monkey", + "pt": 2, + "sh": true, + }, + "value": 4236381788, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Gamer Shiba", + "sh": true, + }, + "value": 3444233600, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Monkey", + "sh": true, + }, + "value": 6292090216, + }, + { + "category": "Pet", + "configData": { + "id": "Relic Agony", + "pt": 1, + }, + "value": 2027, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan 1x1x1x1", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Kawaii Mushroom Fox", + "sh": true, + }, + "value": 2000, + }, + { + "category": "Pet", + "configData": { + "id": "Lunar Deer", + "pt": 1, + }, + "value": 2619045, + }, + { + "category": "Lootbox", + "configData": { + "id": "Soccer Gift", + }, + "value": 353930, + }, + { + "category": "Consumable", + "configData": { + "id": "Golden Cleats", + "tn": 1, + }, + "value": 71143947, + }, + { + "category": "Egg", + "configData": { + "id": "Trophy Soccer Egg", + }, + "value": 136931219, + }, + { + "category": "Egg", + "configData": { + "id": "Exclusive Egg 63", + }, + "value": 157293010, + }, + { + "category": "Consumable", + "configData": { + "id": "Cleats", + "tn": 1, + }, + "value": 2680251, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Elephant", + "pt": 1, + }, + "value": 233221346, + }, + { + "category": "Pet", + "configData": { + "id": "Referee Zebra", + "pt": 2, + }, + "value": 4387, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Red Panda", + }, + "value": 6580, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Cat", + }, + "value": 353710955, + }, + { + "category": "Pet", + "configData": { + "id": "Goalie Monkey", + }, + "value": 134753, + }, + { + "category": "Pet", + "configData": { + "id": "Referee Zebra", + }, + "value": 100, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Elephant", + }, + "value": 235419222, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Elephant", + }, + "value": 34913, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Trophy Dragon", + }, + "value": 2094989, + }, + { + "category": "Pet", + "configData": { + "id": "Vapor Fox", + }, + "value": 11279977, + }, + { + "category": "Pet", + "configData": { + "id": "Vapor Wolf", + }, + "value": 16463459, + }, + { + "category": "Pet", + "configData": { + "id": "Referee Zebra", + "pt": 1, + }, + "value": 945, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Trophy Dragon", + }, + "value": 601344814, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Elephant", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Vapor Cat", + }, + "value": 7930446, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Cat", + "pt": 2, + }, + "value": 335645, + }, + { + "category": "Pet", + "configData": { + "id": "Fire Cat", + "pt": 1, + "sh": true, + }, + "value": 5000, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Dog", + }, + "value": 2878, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Dog", + "pt": 1, + }, + "value": 38542, + }, + { + "category": "Pet", + "configData": { + "id": "Coach Chihuahua", + }, + "value": 39, + }, + { + "category": "Pet", + "configData": { + "id": "Jersey Seal", + }, + "value": 42, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Griffin", + }, + "value": 48762, + }, + { + "category": "Pet", + "configData": { + "id": "Goalie Monkey", + "pt": 2, + }, + "value": 642124, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Jaguar", + }, + "value": 8103, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vapor Wolf", + }, + "value": 138852284, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Cat", + }, + "value": 3749, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Elephant", + "pt": 2, + }, + "value": 832419572, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Cat", + "pt": 2, + }, + "value": 1345918421, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Elephant", + "sh": true, + }, + "value": 802892263, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Trophy Angelus", + }, + "value": 6857173, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Trophy Dragon", + "pt": 2, + }, + "value": 10261635, + }, + { + "category": "Pet", + "configData": { + "id": "Coach Chihuahua", + "pt": 2, + }, + "value": 1399, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Cat", + "pt": 1, + }, + "value": 72802, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Trophy Dragon", + "sh": true, + }, + "value": 1006778241, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Trophy Angelus", + "pt": 1, + }, + "value": 26373879, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Trophy Dragon", + "pt": 1, + }, + "value": 3582558, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Cat", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Red Panda", + "pt": 2, + }, + "value": 685360, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Trophy Angelus", + "pt": 2, + }, + "value": 93270283, + }, + { + "category": "Pet", + "configData": { + "id": "Goalie Monkey", + "pt": 1, + }, + "value": 296913, + }, + { + "category": "Pet", + "configData": { + "id": "Referee Zebra", + "pt": 2, + "sh": true, + }, + "value": 193866, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Referee Zebra", + }, + "value": 140523917, + }, + { + "category": "Pet", + "configData": { + "id": "Coach Chihuahua", + "pt": 2, + "sh": true, + }, + "value": 21570, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jersey Seal", + }, + "value": 141501261, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Cat", + "sh": true, + }, + "value": 849749603, + }, + { + "category": "Pet", + "configData": { + "id": "Vapor Wolf", + "pt": 2, + }, + "value": 38013565, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vapor Wolf", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Referee Zebra", + "pt": 1, + "sh": true, + }, + "value": 23388, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Jaguar", + "pt": 2, + }, + "value": 1068333, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Dog", + "pt": 2, + }, + "value": 872974, + }, + { + "category": "Pet", + "configData": { + "id": "Coach Chihuahua", + "pt": 1, + }, + "value": 55, + }, + { + "category": "Pet", + "configData": { + "id": "Vapor Cat", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Trophy Angelus", + "sh": true, + }, + "value": 293183955, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Griffin", + "pt": 1, + }, + "value": 856099, + }, + { + "category": "Pet", + "configData": { + "id": "Referee Zebra", + "sh": true, + }, + "value": 1174, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vapor Cat", + }, + "value": 169625746, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Elephant", + "pt": 1, + }, + "value": 62538, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Griffin", + "sh": true, + }, + "value": 1162662, + }, + { + "category": "Pet", + "configData": { + "id": "Rose Butterfly", + "pt": 2, + "sh": true, + }, + "value": 26000, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Trophy Dragon", + "pt": 2, + "sh": true, + }, + "value": 634503585, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Soccerball Trophy Angelus", + }, + "value": 12233939914, + }, + { + "category": "Pet", + "configData": { + "id": "Jersey Seal", + "sh": true, + }, + "value": 582, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jersey Seal", + "pt": 1, + }, + "value": 147743360, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Referee Zebra", + "pt": 2, + }, + "value": 379756553, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Referee Zebra", + "pt": 1, + }, + "value": 152099235, + }, + { + "category": "Pet", + "configData": { + "id": "Flamortuus", + "pt": 1, + "sh": true, + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Referee Zebra", + "sh": true, + }, + "value": 279010813, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jersey Seal", + "sh": true, + }, + "value": 431280267, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Griffin", + "pt": 2, + }, + "value": 1024131, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Trophy Dragon", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Jersey Seal", + "pt": 2, + }, + "value": 1113, + }, + { + "category": "Pet", + "configData": { + "id": "Goalie Monkey", + "sh": true, + }, + "value": 668595, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Jaguar", + "pt": 1, + }, + "value": 68325, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Cat", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Trophy Dragon", + "sh": true, + }, + "value": 7478351, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Dog", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Vapor Cat", + "pt": 2, + }, + "value": 28131540, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Balloon Cat", + "pt": 2, + "sh": true, + }, + "value": 131576000000, + }, + { + "category": "Pet", + "configData": { + "id": "Goalie Monkey", + "pt": 2, + "sh": true, + }, + "value": 16277289, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jersey Seal", + "pt": 2, + }, + "value": 356175105, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Soccerball Cat", + }, + "value": 7022740110, + }, + { + "category": "Pet", + "configData": { + "id": "Coach Chihuahua", + "pt": 1, + "sh": true, + }, + "value": 1049, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Trophy Dragon", + "pt": 2, + }, + "value": 1448466116, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vapor Cat", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Coach Chihuahua", + "sh": true, + }, + "value": 166, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Red Panda", + "pt": 1, + }, + "value": 86310, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Elephant", + "pt": 2, + }, + "value": 590801, + }, + { + "category": "Pet", + "configData": { + "id": "Vapor Fox", + "pt": 2, + }, + "value": 25585535, + }, + { + "category": "Pet", + "configData": { + "id": "Jersey Seal", + "pt": 1, + }, + "value": 68, + }, + { + "category": "Pet", + "configData": { + "id": "Vapor Fox", + "sh": true, + }, + "value": 29595674, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Soccerball Trophy Angelus", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Trophy Angelus", + "pt": 1, + "sh": true, + }, + "value": 2911655978, + }, + { + "category": "Pet", + "configData": { + "id": "Humble Hen", + "sh": true, + }, + "value": 100000, + }, + { + "category": "Pet", + "configData": { + "id": "Jersey Seal", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Vapor Dragon", + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Trophy Angelus", + "pt": 2, + "sh": true, + }, + "value": 25142312128, + }, + { + "category": "Pet", + "configData": { + "id": "Telescope Owl", + "sh": true, + }, + "value": 1885702, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Dolphin", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Vapor Cat", + "sh": true, + }, + "value": 10944972, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Red Panda", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Black Hole Angelus", + "pt": 2, + "sh": true, + }, + "value": 5755618, + }, + { + "category": "Pet", + "configData": { + "id": "Goalie Monkey", + "pt": 1, + "sh": true, + }, + "value": 1936612, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Trophy Dragon", + "pt": 1, + "sh": true, + }, + "value": 92177802, + }, + { + "category": "Pet", + "configData": { + "id": "Polar Bear", + "pt": 1, + "sh": true, + }, + "value": 4000000, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vapor Wolf", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Vapor Wolf", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Bubble Hydra", + "pt": 1, + "sh": true, + }, + "value": 1024578, + }, + { + "category": "Pet", + "configData": { + "id": "Spring Bee", + "pt": 1, + }, + "value": 38196, + }, + { + "category": "Pet", + "configData": { + "id": "Jelly Butterfly", + "pt": 1, + "sh": true, + }, + "value": 37141, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Referee Zebra", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Cat", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Griffin", + "pt": 2, + "sh": true, + }, + "value": 7250451, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Soccerball Trophy Angelus", + "pt": 1, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Elephant", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Soccerball Trophy Angelus", + }, + "value": 115864950101, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Dog", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Soccerball Cat", + "pt": 1, + }, + "value": 7163392678, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Elephant", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Referee Zebra", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Melted Rock", + "sh": true, + }, + "value": 2, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jersey Seal", + "pt": 1, + "sh": true, + }, + "value": 475716015, + }, + { + "category": "Pet", + "configData": { + "id": "Cotton Candy Unicorn", + "pt": 2, + }, + "value": 60753, + }, + { + "category": "Pet", + "configData": { + "id": "Hell Spider", + "sh": true, + }, + "value": 624, + }, + { + "category": "Pet", + "configData": { + "id": "Rave Axolotl", + "pt": 1, + "sh": true, + }, + "value": 875, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Jaguar", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Soccerball Cat", + "pt": 2, + }, + "value": 19708084665, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Jersey Seal", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Dark Dragon", + "pt": 2, + "sh": true, + }, + "value": 36002, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Soccerball Trophy Angelus", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Lunar Fox", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Griffin", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Rose Cat", + "pt": 2, + "sh": true, + }, + "value": 153593, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Elephant", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Red Panda", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Meebo in a Spaceship", + }, + "value": 8153, + }, + { + "category": "Pet", + "configData": { + "id": "Black Hole Angelus Ball", + "pt": 1, + }, + "value": 104691909, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Soccerball Elephant", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Vapor Fox", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Soccerball Cat", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Jaguar", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Cat", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Jersey Seal", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Dog", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Shadow Dragon", + "pt": 2, + }, + "value": 1307, + }, + { + "category": "Pet", + "configData": { + "id": "Soccerball Jaguar", + "pt": 1, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Vapor Wolf", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Soccerball Griffin", + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Mermaid Cat", + "pt": 1, + }, + "value": 134, + }, + { + "category": "Pet", + "configData": { + "id": "Guilded Raven", + "sh": true, + }, + "value": 426, + }, + { + "category": "Pet", + "configData": { + "id": "Gargantuan Soccerball Trophy Angelus", + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Black Hole Angelus Ball", + }, + "value": 11869895, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Honey Bee", + "pt": 2, + "sh": true, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Huge Dove", + "pt": 1, + "sh": true, + }, + "value": 98000000000, + }, + { + "category": "Pet", + "configData": { + "id": "Titanic Vapor Dragon", + "pt": 2, + }, + "value": 0, + }, + { + "category": "Pet", + "configData": { + "id": "Neon Twilight Dragon", + "sh": true, + }, + "value": 287520000, + }, + { + "category": "Pet", + "configData": { + "id": "Fish in a Bucket", + "pt": 2, + }, + "value": 0, }, ], "status": "ok", diff --git a/src/__tests__/__snapshots__/ps99-api-live.ts.snap b/src/__tests__/__snapshots__/ps99-api-live.ts.snap index f7b1e7a..f78e25a 100644 --- a/src/__tests__/__snapshots__/ps99-api-live.ts.snap +++ b/src/__tests__/__snapshots__/ps99-api-live.ts.snap @@ -1,4 +1,4 @@ -// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing +// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`Pet Simulator Public Live API Test Achievements shape 1`] = ` { @@ -3170,6 +3170,32 @@ exports[`Pet Simulator Public Live API Test Boosts shape 1`] = ` "dateModified": "2025-07-05T23:29:23.063Z", "hashShort": "365c1a8426aa0e24", }, + { + "category": "Boosts", + "collection": "Boosts", + "configData": { + "DisplayName": "Backrooms Luck Boost", + "Icon": "rbxassetid://120787008307172", + "MaximumPercent": 1000, + }, + "configName": "Boost | BackroomsLuck", + "dateCreated": "2026-06-20T16:08:25.836Z", + "dateModified": "2026-06-20T16:08:25.836Z", + "hashShort": "ecefef53a84e61c9", + }, + { + "category": "Boosts", + "collection": "Boosts", + "configData": { + "DisplayName": "Backrooms Speed Boost", + "Icon": "rbxassetid://77640428390399", + "MaximumPercent": 200, + }, + "configName": "Boost | BackroomsSpeed", + "dateCreated": "2026-06-20T16:08:25.929Z", + "dateModified": "2026-06-20T16:08:25.929Z", + "hashShort": "f632bf9536c87595", + }, ], "status": "ok", } @@ -5811,20 +5837,20 @@ Found in Rave Gifts!", "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Superior", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 8, - "_id": "Superior", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, }, "configName": "Booth | Tie Dye", "dateCreated": "2025-07-05T23:23:22.905Z", - "dateModified": "2025-07-05T23:23:22.905Z", - "hashShort": "f175cb0cba443580", + "dateModified": "2026-04-18T15:56:47.189Z", + "hashShort": "56e75cd399ccafd1", }, { "category": "Booths", @@ -5860,7 +5886,6 @@ Found in Rave Gifts!", "DisplayName": "UFO Booth", "Icon": "rbxassetid://128642920963095", "Model": null, - "ProductId": 3282871917, "Rarity": { "Announce": true, "Color": null, @@ -5876,8 +5901,8 @@ Found in Rave Gifts!", }, "configName": "Booth | UFO", "dateCreated": "2025-07-05T23:23:22.905Z", - "dateModified": "2025-07-05T23:23:22.905Z", - "hashShort": "73916b2d49d89d3d", + "dateModified": "2026-04-25T17:31:34.282Z", + "hashShort": "e09a9eb542e26497", }, { "category": "Booths", @@ -5887,7 +5912,6 @@ Found in Rave Gifts!", "DisplayName": "Police Booth", "Icon": "rbxassetid://136173672339287", "Model": null, - "ProductId": 3282871810, "Rarity": { "Announce": true, "Color": null, @@ -5904,15 +5928,14 @@ Found in Rave Gifts!", }, "configName": "Booth | Police", "dateCreated": "2025-07-05T23:23:22.905Z", - "dateModified": "2025-07-05T23:23:22.905Z", - "hashShort": "63de03a573da3baf", + "dateModified": "2026-04-25T17:31:34.309Z", + "hashShort": "8312c4313e387b22", }, { "category": "Booths", "collection": "Booths", "configData": { "Desc": "Milk it while you can!", - "DiamondPrice": 300000, "DisplayName": "Cow Booth", "Icon": "rbxassetid://83380198570830", "Model": null, @@ -5932,15 +5955,14 @@ Found in Rave Gifts!", }, "configName": "Booth | Cow", "dateCreated": "2025-07-05T23:23:22.905Z", - "dateModified": "2025-07-05T23:23:22.905Z", - "hashShort": "e4578dd7da60b944", + "dateModified": "2026-04-25T17:31:34.272Z", + "hashShort": "60a8315bc2ea512b", }, { "category": "Booths", "collection": "Booths", "configData": { "Desc": "Trade tokens for treasures!", - "DiamondPrice": 1000000, "DisplayName": "Arcade Booth", "Icon": "rbxassetid://120891342577668", "Model": null, @@ -5960,8 +5982,8 @@ Found in Rave Gifts!", }, "configName": "Booth | Arcade", "dateCreated": "2025-07-05T23:23:22.905Z", - "dateModified": "2025-07-05T23:23:22.905Z", - "hashShort": "3893be2ced426744", + "dateModified": "2026-04-25T17:31:35.491Z", + "hashShort": "0d874b5dd8bcef24", }, { "category": "Booths", @@ -5971,7 +5993,6 @@ Found in Rave Gifts!", "DisplayName": "Nightfall Booth", "Icon": "rbxassetid://101229426212153", "Model": null, - "ProductId": 3282871747, "Rarity": { "Announce": true, "Color": null, @@ -5987,15 +6008,14 @@ Found in Rave Gifts!", }, "configName": "Booth | Nightfall", "dateCreated": "2025-07-05T23:23:22.905Z", - "dateModified": "2025-07-05T23:23:22.905Z", - "hashShort": "94cc4f55a84012af", + "dateModified": "2026-04-25T17:31:35.490Z", + "hashShort": "c06e12b578fff1d1", }, { "category": "Booths", "collection": "Booths", "configData": { "Desc": "Hot, cheesy, and open for business!", - "DiamondPrice": 600000, "DisplayName": "Pizza Booth", "Icon": "rbxassetid://97896672679883", "Model": null, @@ -6015,8 +6035,8 @@ Found in Rave Gifts!", }, "configName": "Booth | Pizza", "dateCreated": "2025-07-05T23:23:22.905Z", - "dateModified": "2025-07-05T23:23:22.905Z", - "hashShort": "b71ac30f88ece68b", + "dateModified": "2026-04-25T17:31:35.485Z", + "hashShort": "090f72ecee248a1f", }, { "category": "Booths", @@ -6074,7 +6094,7 @@ Found in Rave Gifts!", "category": "Booths", "collection": "Booths", "configData": { - "Desc": "🌞 Radiates summer energy!", + "Desc": "⚔️ Rewarded to the top 50 clans in the 2025 Sun Angelus Clan Battle!", "DisplayName": "Sun Angelus Booth", "Icon": "rbxassetid://101393350810882", "Model": null, @@ -6093,8 +6113,8 @@ Found in Rave Gifts!", }, "configName": "Booth | Sun Angelus", "dateCreated": "2025-07-12T16:08:34.922Z", - "dateModified": "2025-07-12T16:08:34.922Z", - "hashShort": "7b0351bea2269b68", + "dateModified": "2026-04-18T15:56:47.196Z", + "hashShort": "df3a6d811d81f04c", }, { "category": "Booths", @@ -6152,7 +6172,7 @@ Found in Rave Gifts!", "category": "Booths", "collection": "Booths", "configData": { - "Desc": "Watch your back!", + "Desc": "⚔️ Rewarded to the top 50 clans in the 2025 Halloween Clan Battle!", "DisplayName": "Reaper Booth", "Icon": "rbxassetid://72949843341994", "Model": null, @@ -6171,8 +6191,8 @@ Found in Rave Gifts!", }, "configName": "Booth | Reaper", "dateCreated": "2025-10-18T17:03:13.663Z", - "dateModified": "2025-10-18T17:03:13.663Z", - "hashShort": "fde84584e3c2e5e4", + "dateModified": "2026-04-18T15:56:47.191Z", + "hashShort": "fb2baf6da7eb46ad", }, { "category": "Booths", @@ -6204,7 +6224,7 @@ Found in Rave Gifts!", "category": "Booths", "collection": "Booths", "configData": { - "Desc": "ooo pretty with sparkles!?", + "Desc": "⚔️ Rewarded to the top 50 clans in the 2025 Silver Clan Battle!", "DisplayName": "Silver Booth", "Icon": "rbxassetid://130176705018873", "Model": null, @@ -6223,8 +6243,407 @@ Found in Rave Gifts!", }, "configName": "Booth | Silver", "dateCreated": "2025-12-20T17:55:10.336Z", - "dateModified": "2025-12-20T17:55:10.336Z", - "hashShort": "58f2ae0927cea8fa", + "dateModified": "2026-04-18T15:56:47.188Z", + "hashShort": "fb091e35d5dc7cf7", + }, + { + "category": "Booths", + "collection": "Booths", + "configData": { + "Desc": "⚔️ Rewarded to the top 50 clans in the 2026 Clover Clan Battle!", + "DisplayName": "Clover Booth", + "Icon": "rbxassetid://126147813888037", + "Model": null, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + }, + "configName": "Booth | Clover", + "dateCreated": "2026-03-14T15:52:21.692Z", + "dateModified": "2026-04-18T15:56:47.196Z", + "hashShort": "9fbfe68b691dd690", + }, + { + "category": "Booths", + "collection": "Booths", + "configData": { + "Desc": "Guard your gold", + "DisplayName": "Pot of Gold Booth", + "Icon": "rbxassetid://86081967996120", + "Model": null, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + }, + "configName": "Booth | Pot of Gold", + "dateCreated": "2026-03-14T15:52:21.706Z", + "dateModified": "2026-03-14T15:52:21.706Z", + "hashShort": "6668fb415aded313", + }, + { + "category": "Booths", + "collection": "Booths", + "configData": { + "Desc": "🌷🌼 blossoming sales! 🌻🌹", + "DisplayName": "Blossom Booth", + "Icon": "rbxassetid://114220849266712", + "Model": null, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + }, + "configName": "Booth | Blossom", + "dateCreated": "2026-04-18T15:56:47.228Z", + "dateModified": "2026-04-18T15:56:47.228Z", + "hashShort": "257414d2f1664466", + }, + { + "category": "Booths", + "collection": "Booths", + "configData": { + "Desc": "⚔️ Rewarded to the top 50 clans in the 2026 Abstract Clan Battle!", + "DisplayName": "Abstract Booth", + "Icon": "rbxassetid://125225516312515", + "Model": null, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + }, + "configName": "Booth | Abstract", + "dateCreated": "2026-04-18T15:56:47.221Z", + "dateModified": "2026-04-18T15:56:47.221Z", + "hashShort": "c42a7e61095d1166", + }, + { + "category": "Booths", + "collection": "Booths", + "configData": { + "Desc": "Carrot prices skyrocketing rn", + "DiamondPrice": 1200000, + "DisplayName": "Bunny Booth", + "Icon": "rbxassetid://109697230452012", + "Model": null, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "Tradable": true, + }, + "configName": "Booth | Bunny", + "dateCreated": "2026-04-25T17:31:35.480Z", + "dateModified": "2026-04-25T17:31:35.480Z", + "hashShort": "810db154cacbe44a", + }, + { + "category": "Booths", + "collection": "Booths", + "configData": { + "Desc": "Totally not my first trade", + "DiamondPrice": 2000000, + "DisplayName": "Noob Booth", + "Icon": "rbxassetid://125820103052186", + "Model": null, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "Tradable": true, + }, + "configName": "Booth | Noob", + "dateCreated": "2026-04-25T17:31:35.479Z", + "dateModified": "2026-04-25T17:31:35.479Z", + "hashShort": "311d76cf3bbcccb3", + }, + { + "category": "Booths", + "collection": "Booths", + "configData": { + "Desc": "Sea what I did there??", + "DisplayName": "Coral Booth", + "Icon": "rbxassetid://128819745276792", + "Model": null, + "ProductId": 3581106503, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + "configName": "Booth | Coral", + "dateCreated": "2026-04-25T17:31:35.480Z", + "dateModified": "2026-04-25T17:31:35.480Z", + "hashShort": "80a495109c802b13", + }, + { + "category": "Booths", + "collection": "Booths", + "configData": { + "Desc": "Midnight deals hit different", + "DisplayName": "Midnight Booth", + "Icon": "rbxassetid://90714168932294", + "Model": null, + "ProductId": 3581106393, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + "configName": "Booth | Midnight", + "dateCreated": "2026-04-25T17:31:35.489Z", + "dateModified": "2026-04-25T17:31:35.489Z", + "hashShort": "d71b8461156618e8", + }, + { + "category": "Booths", + "collection": "Booths", + "configData": { + "Desc": "Who’s selling? Yes you are!", + "DiamondPrice": 600000, + "DisplayName": "Dog Booth", + "Icon": "rbxassetid://108208298329789", + "Model": null, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "Tradable": true, + }, + "configName": "Booth | Dog", + "dateCreated": "2026-04-25T17:31:35.490Z", + "dateModified": "2026-04-25T17:31:35.490Z", + "hashShort": "88cc58a33512cc50", + }, + { + "category": "Booths", + "collection": "Booths", + "configData": { + "Desc": "Held together. Barely...", + "DisplayName": "Patchwork Booth", + "Icon": "rbxassetid://95072943998243", + "Model": null, + "ProductId": 3581106453, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + "configName": "Booth | Patchwork", + "dateCreated": "2026-04-25T17:31:35.492Z", + "dateModified": "2026-04-25T17:31:35.492Z", + "hashShort": "b1974b0b1e166c43", + }, + { + "category": "Booths", + "collection": "Booths", + "configData": { + "Desc": "⚔️ Rewarded to the top 50 clans in the 2026 Starry Clan Battle!", + "DisplayName": "Starry Booth", + "Icon": "rbxassetid://123181262680730", + "Model": null, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + }, + "configName": "Booth | Starry", + "dateCreated": "2026-04-25T17:31:35.494Z", + "dateModified": "2026-04-25T17:31:35.494Z", + "hashShort": "f40e583dbad8cd9f", + }, + { + "category": "Booths", + "collection": "Booths", + "configData": { + "Desc": "⚔️ Rewarded to the top 50 clans in the 2026 Angel Clan Battle!", + "DisplayName": "Angel Booth", + "Icon": "rbxassetid://88025212595623", + "Model": null, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + }, + "configName": "Booth | Angel", + "dateCreated": "2026-05-09T17:52:07.379Z", + "dateModified": "2026-05-09T17:52:07.379Z", + "hashShort": "87204396c3c32e98", + }, + { + "category": "Booths", + "collection": "Booths", + "configData": { + "Desc": "GIVE DIAMONDS TO THE VOID!", + "DisplayName": "Void Booth", + "Icon": "rbxassetid://81049700497328", + "Model": null, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Superior", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 8, + "_id": "Superior", + "_script": null, + }, + }, + "configName": "Booth | Void", + "dateCreated": "2026-05-09T17:52:07.386Z", + "dateModified": "2026-05-09T17:52:07.386Z", + "hashShort": "aad7879bcbb3a79b", + }, + { + "category": "Booths", + "collection": "Booths", + "configData": { + "Desc": "Doze off in style! 💤", + "DisplayName": "Daydream Booth", + "Icon": "rbxassetid://131046979453373", + "Model": null, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Superior", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 8, + "_id": "Superior", + "_script": null, + }, + }, + "configName": "Booth | Daydream", + "dateCreated": "2026-06-13T23:13:31.224Z", + "dateModified": "2026-06-13T23:13:31.224Z", + "hashShort": "80e9e178171084a8", + }, + { + "category": "Booths", + "collection": "Booths", + "configData": { + "Desc": "⚔️ Rewarded to the top clans in the 2026 Thunderstorm Clan Battle!", + "DisplayName": "Thunderstorm Booth", + "Icon": "rbxassetid://87172000294956", + "Model": null, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + }, + "configName": "Booth | Thunderstorm", + "dateCreated": "2026-06-27T16:07:10.724Z", + "dateModified": "2026-06-27T16:07:10.724Z", + "hashShort": "0ed69d7f3486b5ca", }, ], "status": "ok", @@ -6325,7 +6744,7 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` }, "configName": "Buff | Toy Ball", "dateCreated": null, - "dateModified": "2025-12-20T17:54:44.511Z", + "dateModified": "2026-06-27T16:04:50.095Z", "hashShort": "55a84d02befba747", }, { @@ -6339,7 +6758,7 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` }, "configName": "Buff | Toy Bone", "dateCreated": null, - "dateModified": "2025-12-20T17:54:44.516Z", + "dateModified": "2026-06-27T16:04:50.091Z", "hashShort": "d58625e3fb495a25", }, { @@ -6353,36 +6772,38 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` }, "configName": "Buff | Squeaky Toy", "dateCreated": null, - "dateModified": "2025-12-20T17:54:44.535Z", + "dateModified": "2026-06-27T16:04:50.109Z", "hashShort": "785bcca69908dc32", }, { - "category": "Buffs", + "category": "Christmas 2025", "collection": "Buffs", "configData": { "AssociatedItemClass": "Misc", "AssociatedItemID": "Christmas Cookie", + "Discontinued": true, "DisplayName": "Christmas Cookie", "Length": 300, }, "configName": "Buff | Christmas Cookie", "dateCreated": null, - "dateModified": "2025-12-20T17:54:44.514Z", - "hashShort": "bc89989f92594da4", + "dateModified": "2026-06-27T16:04:50.103Z", + "hashShort": "fd74f71163e59866", }, { - "category": "Buffs", + "category": "Christmas 2025", "collection": "Buffs", "configData": { "AssociatedItemClass": "Misc", "AssociatedItemID": "Hot Cocoa", + "Discontinued": true, "DisplayName": "Hot Cocoa", "Length": 300, }, "configName": "Buff | Hot Cocoa", "dateCreated": null, - "dateModified": "2025-12-20T17:54:44.509Z", - "hashShort": "4b6631da2c758212", + "dateModified": "2026-06-27T16:04:50.104Z", + "hashShort": "d97e5f33ce71c3f8", }, { "category": "Glitch 2024", @@ -6395,7 +6816,7 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` }, "configName": "Buff | Glitched Drive", "dateCreated": null, - "dateModified": "2025-12-20T17:54:44.506Z", + "dateModified": "2026-06-27T16:04:50.097Z", "hashShort": "12e42ebdca3b8072", }, { @@ -6410,7 +6831,7 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` }, "configName": "Buff | Nightmare Fuel", "dateCreated": null, - "dateModified": "2025-12-20T17:54:44.507Z", + "dateModified": "2026-06-27T16:04:50.089Z", "hashShort": "0cb47b6484b95655", }, { @@ -6427,7 +6848,7 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` }, "configName": "Buff | Lucky Tile", "dateCreated": "2025-07-05T23:23:46.791Z", - "dateModified": "2025-12-20T17:54:44.550Z", + "dateModified": "2026-06-27T16:04:50.125Z", "hashShort": "2be50c358be91d84", }, { @@ -6444,7 +6865,7 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` }, "configName": "Buff | Ultra Lucky Tile", "dateCreated": "2025-07-05T23:23:46.791Z", - "dateModified": "2025-12-20T17:54:44.552Z", + "dateModified": "2026-06-27T16:04:50.126Z", "hashShort": "7afd434eff83c3af", }, { @@ -6460,7 +6881,7 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` }, "configName": "Buff | Lucky Dice", "dateCreated": "2025-07-05T23:23:46.791Z", - "dateModified": "2025-12-20T17:54:44.531Z", + "dateModified": "2026-05-02T17:30:20.328Z", "hashShort": "3e41eb0cce0c3ac3", }, { @@ -6476,7 +6897,7 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` }, "configName": "Buff | Lucky Dice II", "dateCreated": "2025-07-05T23:23:46.791Z", - "dateModified": "2025-12-20T17:54:44.537Z", + "dateModified": "2026-05-02T17:30:20.328Z", "hashShort": "86568666e032e827", }, { @@ -6493,7 +6914,7 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` }, "configName": "Buff | Mega Lucky Dice", "dateCreated": "2025-07-05T23:23:46.791Z", - "dateModified": "2025-12-20T17:54:44.537Z", + "dateModified": "2026-05-02T17:30:20.329Z", "hashShort": "8339fe7a4651969e", }, { @@ -6510,7 +6931,7 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` }, "configName": "Buff | Mega Lucky Dice II", "dateCreated": "2025-07-05T23:23:46.791Z", - "dateModified": "2025-12-20T17:54:44.538Z", + "dateModified": "2026-05-02T17:30:20.330Z", "hashShort": "b21b871352d45160", }, { @@ -6526,7 +6947,7 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` }, "configName": "Buff | Fire Dice", "dateCreated": "2025-07-05T23:23:46.791Z", - "dateModified": "2025-12-20T17:54:44.539Z", + "dateModified": "2026-05-02T17:30:20.333Z", "hashShort": "bda432ea5d2a3f09", }, { @@ -6542,7 +6963,7 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` }, "configName": "Buff | Lucky Dice III", "dateCreated": "2025-07-05T23:23:46.791Z", - "dateModified": "2025-12-20T17:54:44.543Z", + "dateModified": "2026-05-02T17:30:20.331Z", "hashShort": "cd0421c5a727a070", }, { @@ -6558,7 +6979,7 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` }, "configName": "Buff | Rng Chest Luck", "dateCreated": "2025-07-05T23:23:46.791Z", - "dateModified": "2025-12-20T17:54:44.540Z", + "dateModified": "2026-05-02T17:30:20.333Z", "hashShort": "6c5c1697f08e31e1", }, { @@ -6574,7 +6995,7 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` }, "configName": "Buff | Super Rng Chest Luck", "dateCreated": "2025-07-05T23:23:46.791Z", - "dateModified": "2025-12-20T17:54:44.546Z", + "dateModified": "2026-05-02T17:30:20.332Z", "hashShort": "da41379e0aba6c8b", }, { @@ -6590,7 +7011,7 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` }, "configName": "Buff | Ultra Rng Chest Luck", "dateCreated": "2025-07-05T23:23:46.791Z", - "dateModified": "2025-12-20T17:54:44.548Z", + "dateModified": "2026-05-02T17:30:20.334Z", "hashShort": "7599fd2d910c145e", }, { @@ -6606,7 +7027,7 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` }, "configName": "Buff | Adoption Token Boost", "dateCreated": "2025-07-05T23:23:46.791Z", - "dateModified": "2025-12-20T17:54:44.510Z", + "dateModified": "2026-06-27T16:04:50.099Z", "hashShort": "e2096d99256fa18c", }, { @@ -6622,15 +7043,16 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` }, "configName": "Buff | Ultra Adoption Token Boost", "dateCreated": "2025-07-05T23:23:46.791Z", - "dateModified": "2025-12-20T17:54:44.513Z", + "dateModified": "2026-06-27T16:04:50.295Z", "hashShort": "5b6c27b7764c6c44", }, { - "category": "Buffs", + "category": "Christmas 2025", "collection": "Buffs", "configData": { "AssociatedItemClass": "Misc", "AssociatedItemID": "Grinch-B-Gone", + "Discontinued": true, "DisplayName": "Grinch-B-Gone", "IgnoreInstancePause": true, "Length": 1, @@ -6638,15 +7060,16 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` }, "configName": "Buff | Grinch-B-Gone", "dateCreated": "2025-07-05T23:23:46.791Z", - "dateModified": "2025-12-20T17:54:44.503Z", - "hashShort": "7a84849e86c0291e", + "dateModified": "2026-06-27T16:04:50.106Z", + "hashShort": "4a638f40f06d436c", }, { - "category": "Buffs", + "category": "Christmas 2025", "collection": "Buffs", "configData": { "AssociatedItemClass": "Misc", "AssociatedItemID": "Ultra Grinch-B-Gone", + "Discontinued": true, "DisplayName": "Ultra Grinch-B-Gone", "IgnoreInstancePause": true, "Length": 1, @@ -6654,8 +7077,8 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` }, "configName": "Buff | Ultra Grinch-B-Gone", "dateCreated": "2025-07-05T23:23:46.791Z", - "dateModified": "2025-12-20T17:54:44.500Z", - "hashShort": "b350d10cfb68d259", + "dateModified": "2026-06-27T16:04:50.087Z", + "hashShort": "f4c56a8244c2e9e8", }, { "category": "Doodle", @@ -6669,7 +7092,7 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` }, "configName": "Buff | Golden Pencil", "dateCreated": "2025-07-05T23:23:46.791Z", - "dateModified": "2025-12-20T17:54:44.532Z", + "dateModified": "2026-06-27T16:04:50.094Z", "hashShort": "0505c883dc9cb5cc", }, { @@ -6684,7 +7107,7 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` }, "configName": "Buff | Diamond Pencil", "dateCreated": "2025-07-05T23:23:46.791Z", - "dateModified": "2025-12-20T17:54:44.505Z", + "dateModified": "2026-06-27T16:04:50.101Z", "hashShort": "7340eccc17a3e610", }, { @@ -6699,7 +7122,7 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` }, "configName": "Buff | Rainbow Pencil", "dateCreated": "2025-07-05T23:23:46.791Z", - "dateModified": "2025-12-20T17:54:44.511Z", + "dateModified": "2026-06-27T16:04:50.108Z", "hashShort": "ef2dd80c8edc3470", }, { @@ -6715,7 +7138,7 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` }, "configName": "Buff | Pet Token Boost", "dateCreated": "2025-07-05T23:23:46.791Z", - "dateModified": "2025-12-20T17:54:44.775Z", + "dateModified": "2026-06-27T16:04:50.432Z", "hashShort": "662abbbc5a58655c", }, { @@ -6731,2600 +7154,1375 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` }, "configName": "Buff | Ultra Pet Token Boost", "dateCreated": "2025-07-05T23:23:46.791Z", - "dateModified": "2025-12-20T17:54:44.766Z", + "dateModified": "2026-06-27T16:04:50.127Z", "hashShort": "97fb359cc2690026", }, - ], - "status": "ok", -} -`; - -exports[`Pet Simulator Public Live API Test Charms shape 1`] = ` -{ - "data": [ { - "category": "Charms", - "collection": "Charms", + "category": "RNG", + "collection": "Buffs", "configData": { - "BaseTier": 1, - "Icon": "rbxassetid://15185586607", - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Pet does 30% more damage!", - "DisplayName": "Strength Charm", - "Power": 30, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - }, - ], + "AssociatedItemClass": "Misc", + "AssociatedItemID": "Rng Chest V2 Luck", + "DisplayName": "RNG Chest Luck", + "IgnoreInstancePause": true, + "Length": 120, }, - "configName": "Charm | Strength", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:48.924Z", - "hashShort": "8410bd577c5ecef0", + "configName": "Buff | Rng Chest V2 Luck", + "dateCreated": "2026-05-09T17:52:38.854Z", + "dateModified": "2026-06-27T16:04:50.136Z", + "hashShort": "39ff9d95addc2fcf", }, { - "category": "Charms", - "collection": "Charms", + "category": "RNG", + "collection": "Buffs", "configData": { - "BaseTier": 1, - "Icon": "rbxassetid://15185586825", - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Pet earns 25% more Coins!", - "DisplayName": "Coins Charm", - "Power": 25, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - }, - ], + "AssociatedItemClass": "Misc", + "AssociatedItemID": "Ultra Rng Chest V2 Luck", + "DisplayName": "Ultra RNG Chest Luck", + "IgnoreInstancePause": true, + "Length": 120, }, - "configName": "Charm | Coins", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:48.939Z", - "hashShort": "909529178cf2d73d", + "configName": "Buff | Ultra Rng Chest V2 Luck", + "dateCreated": "2026-05-09T17:52:38.861Z", + "dateModified": "2026-06-27T16:04:50.139Z", + "hashShort": "3ceb261d32e4fb76", }, { - "category": "Charms", - "collection": "Charms", + "category": "RNG", + "collection": "Buffs", "configData": { - "BaseTier": 1, - "Icon": "rbxassetid://15185586450", - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Pet earns 10% more Diamonds!", - "DisplayName": "Diamonds Charm", - "Power": 10, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - }, - ], + "AssociatedItemClass": "Misc", + "AssociatedItemID": "Super Rng Chest V2 Luck", + "DisplayName": "Super RNG Chest Luck", + "IgnoreInstancePause": true, + "Length": 120, }, - "configName": "Charm | Diamonds", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:48.784Z", - "hashShort": "4731d5b84160ebf2", + "configName": "Buff | Super Rng Chest V2 Luck", + "dateCreated": "2026-05-09T17:52:38.850Z", + "dateModified": "2026-06-27T16:04:50.137Z", + "hashShort": "63a7e4501ce6e91d", }, { - "category": "Charms", - "collection": "Charms", + "category": "RNG", + "collection": "Buffs", "configData": { - "BaseTier": 1, - "Icon": "rbxassetid://15185586240", - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Pet is 35% more likely to get a bonus!", - "DisplayName": "Bonus Charm", - "Power": 35, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - }, - ], + "AssociatedItemClass": "Misc", + "AssociatedItemID": "Lucky Dice V2", + "DisplayName": "Lucky Dice", + "IgnoreInstancePause": true, + "Length": 60, }, - "configName": "Charm | Bonus", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:48.819Z", - "hashShort": "b4bad635f4350336", + "configName": "Buff | Lucky Dice V2", + "dateCreated": "2026-05-09T17:52:38.853Z", + "dateModified": "2026-06-27T16:04:50.128Z", + "hashShort": "ba6a66aa1f370a3b", }, { - "category": "Charms", - "collection": "Charms", + "category": "RNG", + "collection": "Buffs", "configData": { - "BaseTier": 1, - "Icon": "rbxassetid://15185586077", - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Pet moves 150% faster!", - "DisplayName": "Agility Charm", - "Power": 150, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - }, - ], + "AssociatedItemClass": "Misc", + "AssociatedItemID": "Mega Lucky Dice II V2", + "DisplayName": "Mega Lucky Dice II", + "IgnoreInstancePause": true, + "Length": 1, + "StackMode": true, }, - "configName": "Charm | Agility", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:48.855Z", - "hashShort": "e745f9f0d7e5edd5", + "configName": "Buff | Mega Lucky Dice II V2", + "dateCreated": "2026-05-09T17:52:38.873Z", + "dateModified": "2026-06-27T16:04:50.138Z", + "hashShort": "aff64d1ce90d2682", }, { - "category": "Charms", - "collection": "Charms", + "category": "RNG", + "collection": "Buffs", "configData": { - "BaseTier": 1, - "Icon": "rbxassetid://15286764793", - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Pet does 40% more damage, earns 20% more Diamonds, and moves faster!", - "DisplayName": "Royalty Charm", - "Power": 1, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, - ], + "AssociatedItemClass": "Misc", + "AssociatedItemID": "Mega Lucky Dice V2", + "DisplayName": "Mega Lucky Dice", + "IgnoreInstancePause": true, + "Length": 1, + "StackMode": true, }, - "configName": "Charm | Royalty", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:48.890Z", - "hashShort": "e5d004ad1ba9a6f6", + "configName": "Buff | Mega Lucky Dice V2", + "dateCreated": "2026-05-09T17:52:38.862Z", + "dateModified": "2026-06-27T16:04:50.131Z", + "hashShort": "7c0031bba7760b97", }, { - "category": "Charms", - "collection": "Charms", + "category": "RNG", + "collection": "Buffs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 1.6666666666666667, - "Icon": "rbxassetid://15219668902", - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Pet randomly spawns Diamonds!", - "DisplayName": "Glittering Charm", - "Power": 0.8333333333333334, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, - }, - }, - ], + "AssociatedItemClass": "Misc", + "AssociatedItemID": "Lucky Dice II V2", + "DisplayName": "Lucky Dice II", + "IgnoreInstancePause": true, + "Length": 300, }, - "configName": "Charm | Glittering", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:48.926Z", - "hashShort": "72c6534cfdc693d0", + "configName": "Buff | Lucky Dice II V2", + "dateCreated": "2026-05-09T17:52:38.865Z", + "dateModified": "2026-06-27T16:04:50.130Z", + "hashShort": "ac01ae890da5c709", }, { - "category": "Charms", - "collection": "Charms", + "category": "RNG", + "collection": "Buffs", "configData": { - "BaseTier": 1, - "Icon": "rbxassetid://16009187068", - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Pet randomly inflicts critical hits!", - "DisplayName": "Criticals Charm", - "Power": 5, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - }, - ], + "AssociatedItemClass": "Misc", + "AssociatedItemID": "Lucky Dice III V2", + "DisplayName": "Lucky Dice III", + "IgnoreInstancePause": true, + "Length": 300, }, - "configName": "Charm | Criticals", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.117Z", - "hashShort": "340b0c83f6b48ba8", + "configName": "Buff | Lucky Dice III V2", + "dateCreated": "2026-05-16T16:39:40.328Z", + "dateModified": "2026-06-27T16:04:50.140Z", + "hashShort": "4fff145448bea107", }, { - "category": "Charms", - "collection": "Charms", + "category": "RNG", + "collection": "Buffs", "configData": { - "BaseTier": 1, - "Icon": "rbxassetid://16012045025", - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Pet levels up 30% faster!", - "DisplayName": "XP Charm", - "Power": 30, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, - }, - }, - ], + "AssociatedItemClass": "Misc", + "AssociatedItemID": "Fire Dice V2", + "DisplayName": "Fire Dice", + "IgnoreInstancePause": true, + "Length": 60, }, - "configName": "Charm | XP", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.136Z", - "hashShort": "e385f33bcf2f1a14", + "configName": "Buff | Fire Dice V2", + "dateCreated": "2026-05-16T16:39:40.328Z", + "dateModified": "2026-06-27T16:04:50.140Z", + "hashShort": "a337327df035a111", }, { - "category": "Charms", - "collection": "Charms", + "category": "RNG", + "collection": "Buffs", "configData": { - "BaseTier": 1, - "Icon": "rbxassetid://16009186779", - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Adds 2 extra charm slots! -Can only be used once per pet!", - "DisplayName": "Overload Charm", - "Power": 1, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, - ], - "Unique": true, + "AssociatedItemClass": "Misc", + "AssociatedItemID": "Mega Chest Empowered", + "DisplayName": "Mega Chest Empowered", + "Icon": "rbxassetid://15854077741", + "IgnoreInstancePause": true, + "Length": 1, + "StackMode": true, }, - "configName": "Charm | Overload", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:48.957Z", - "hashShort": "dc9142cbeab8373c", + "configName": "Buff | Mega Chest Empowered", + "dateCreated": "2026-05-16T16:39:40.334Z", + "dateModified": "2026-06-27T16:04:50.143Z", + "hashShort": "05b16fd7f01936d9", }, + ], + "status": "ok", +} +`; + +exports[`Pet Simulator Public Live API Test CardItems shape 1`] = ` +{ + "data": [ { - "category": "Charms", - "collection": "Charms", + "category": "CardItems", + "collection": "CardItems", "configData": { - "BaseTier": 1, - "Icon": "rbxassetid://16012045090", - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Pet randomly spawns TNT!", - "DisplayName": "TNT Charm", - "Power": 1, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - }, - ], + "AssociatedPetId": "Titanic Super Wolf", + "Desc": "Combine 3 to create a TITANIC Super Wolf!", + "DisplayName": "Titanic Super Wolf Card", + "GoldIcon": "rbxassetid://127893843419579", + "Icon": "rbxassetid://82102924139005", + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "Tradable": true, + "titanic": true, }, - "configName": "Charm | TNT", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:48.960Z", - "hashShort": "10d8d107b2395ab8", + "configName": "Titanic Super Wolf Card", + "dateCreated": "2025-07-05T23:50:28.992Z", + "dateModified": "2025-07-05T23:50:28.992Z", + "hashShort": "877e292f7ccbf355", }, { - "category": "Charms", - "collection": "Charms", + "category": "CardItems", + "collection": "CardItems", "configData": { - "BaseTier": 1, - "Icon": "rbxassetid://16009186960", - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Pet randomly shoots lightning at breakables!", - "DisplayName": "Lightning Charm", - "Power": 2.5, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, - }, - }, - ], + "AssociatedPetId": "Super Axolotl", + "Desc": "Combine 3 to create a Super Axolotl!", + "DisplayName": "Super Axolotl Card", + "GoldIcon": "rbxassetid://136720035364261", + "Icon": "rbxassetid://95137983971523", + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "Tradable": true, }, - "configName": "Charm | Lightning", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:48.976Z", - "hashShort": "8845fc3c09fe90bb", + "configName": "Super Axolotl Card", + "dateCreated": "2025-07-05T23:50:29.117Z", + "dateModified": "2025-07-05T23:50:29.117Z", + "hashShort": "f5cd3fa06a8d035f", }, { - "category": "Charms", - "collection": "Charms", + "category": "Exclusive Meme Cards", + "collection": "CardItems", "configData": { - "BaseTier": 1, - "Icon": "rbxassetid://134064160006487", - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Pet increases item drops by 200%, earns 100% more diamonds, and earns 50% more coins!", - "DisplayName": "Treasure Charm", - "Power": 1, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, - ], + "AssociatedPetId": "Huge Hubert", + "Desc": "Combine 3 to create a HUGE Hubert!", + "DisplayName": "Huge Hubert Card", + "GoldIcon": "rbxassetid://134655060194655", + "Icon": "rbxassetid://83243134409348", + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "Tradable": true, + "huge": true, }, - "configName": "Charm | Treasure", - "dateCreated": "2025-07-05T23:23:47.764Z", - "dateModified": "2025-07-05T23:23:47.764Z", - "hashShort": "15c8324f72839c2d", + "configName": "Huge Hubert Card", + "dateCreated": "2025-07-05T23:50:29.121Z", + "dateModified": "2025-07-05T23:50:29.121Z", + "hashShort": "0a4a34459a2afeea", }, - ], - "status": "ok", -} -`; - -exports[`Pet Simulator Public Live API Test Collections Have Not Changed 1`] = ` -{ - "data": [ - "Achievements", - "Boosts", - "Booths", - "Boxes", - "Buffs", - "Charms", - "Currency", - "Eggs", - "Enchants", - "FishingRods", - "Fruits", - "GuildBattles", - "Hoverboards", - "Lootboxes", - "Mastery", - "MiscItems", - "Pets", - "Potions", - "RandomEvents", - "Ranks", - "Rarity", - "Rebirths", - "SecretRooms", - "Seeds", - "Shovels", - "Sprinklers", - "Ultimates", - "Upgrades", - "WateringCans", - "Worlds", - "ZoneFlags", - "Zones", - "Merchants", - "XPPotions", - ], - "status": "ok", -} -`; - -exports[`Pet Simulator Public Live API Test Currency shape 1`] = ` -{ - "data": [ { - "category": "Currency", - "collection": "Currency", + "category": "Pog Cards", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://15058306423", - "value": 0, - }, - { - "image": "rbxassetid://15058306716", - "value": 1000, - }, - { - "image": "rbxassetid://15058306965", - "value": 10000, - }, - ], - "Desc": "Gold!", - "DisplayName": "Coins", - "IsWorldCurrency": true, - "MaxAmount": 1e+41, + "AssociatedPetId": "Pog Monkey", + "Desc": "Combine 3 to create a Pog Monkey!", + "DisplayName": "Pog Monkey Card", + "GoldIcon": "rbxassetid://102630843139011", + "Icon": "rbxassetid://138864417831306", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Superior", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 8, + "_id": "Superior", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://14867116080", - "isBottom": true, - "orbImage": "rbxassetid://15466375741", - "textColor": null, - "tierName": "Gold Coins", - "tinyImage": "rbxassetid://15258327621", - "value": 1, - }, - { - "Order": 2, - "imageOutline": "rbxassetid://14867116225", - "orbImage": "rbxassetid://15466420899", - "textColor": null, - "tierName": "Gold Bars", - "tinyImage": "rbxassetid://15258327761", - "value": 1000000, - }, - { - "Order": 3, - "imageOutline": "rbxassetid://14867115964", - "orbImage": "rbxassetid://15466420621", - "textColor": null, - "tierName": "Platinum Coins", - "tinyImage": "rbxassetid://15258327405", - "value": 1000000000000, - }, - { - "Order": 4, - "imageOutline": "rbxassetid://14867115795", - "orbImage": "rbxassetid://15466420768", - "textColor": null, - "tierName": "Platinum Bars", - "tinyImage": "rbxassetid://15258327518", - "value": 1000000000000000000, - }, - { - "Order": 5, - "imageOutline": "rbxassetid://15642993873", - "orbImage": "rbxassetid://15642993996", - "textColor": null, - "tierName": "Emerald Coins", - "tinyImage": "rbxassetid://15642993693", - "value": 1e+24, - }, - { - "Order": 6, - "imageOutline": "rbxassetid://15642994307", - "orbImage": "rbxassetid://15642994522", - "textColor": null, - "tierName": "Emerald Bars", - "tinyImage": "rbxassetid://15642994146", - "value": 1e+30, - }, - { - "Order": 7, - "imageOutline": "rbxassetid://15865374023", - "orbImage": "rbxassetid://15865374118", - "textColor": null, - "tierName": "Sapphire Coins", - "tinyImage": "rbxassetid://15865373901", - "value": 1e+36, - }, - { - "Order": 8, - "imageOutline": "rbxassetid://15865374383", - "orbImage": "rbxassetid://15865374466", - "textColor": null, - "tierName": "Sapphire Bars", - "tinyImage": "rbxassetid://15865374292", - "value": 1e+42, - }, - ], - "Tradable": false, - "_index": 8, + "Tradable": true, }, - "configName": "Currency | Coins", - "dateCreated": null, - "dateModified": "2025-07-12T16:08:43.672Z", - "hashShort": "12b1f9734b3087e0", + "configName": "Pog Monkey Card", + "dateCreated": "2025-07-05T23:50:29.148Z", + "dateModified": "2025-07-05T23:50:29.148Z", + "hashShort": "5143a5f6fdd3bf3e", }, { - "category": "Currency", - "collection": "Currency", + "category": "ForeverPack Shards", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://15058306297", - "value": 0, - }, - { - "image": "rbxassetid://15058306546", - "value": 1000, - }, - { - "image": "rbxassetid://15058306840", - "value": 10000, - }, - ], - "Desc": "Diamonds!", - "DisplayName": "Diamonds", - "MaxAmount": 1000000000000, + "AssociatedPetId": "Huge Sea Dragon", + "CombinationRequirement": 9, + "Desc": "Combine 9 to create a HUGE Sea Dragon!", + "DisplayName": "Huge Sea Dragon Card", + "GoldIcon": "rbxassetid://101977212268353", + "Icon": "rbxassetid://101977212268353", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "StaticValue": 1, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://14867116353", - "isBottom": true, - "orbImage": "rbxassetid://15466421090", - "rainData": { - "LightEmission": 0.2, - }, - "textColor": null, - "tierName": "Diamonds", - "tinyImage": "rbxassetid://15258327857", - "value": 1, - }, - ], "Tradable": true, - "_index": 10, + "huge": true, }, - "configName": "Currency | Diamonds", - "dateCreated": null, - "dateModified": "2025-07-12T16:08:43.657Z", - "hashShort": "dcaa4bfe1497be92", + "configName": "Huge Sea Dragon Card", + "dateCreated": "2025-07-05T23:50:29.148Z", + "dateModified": "2025-07-05T23:50:29.148Z", + "hashShort": "0cc6554b92faedad", }, { - "category": "Currency", - "collection": "Currency", + "category": "CardItems", + "collection": "CardItems", "configData": { - "Desc": "Digsite Tokens!", - "DisplayName": "Digsite Tokens", - "MaxAmount": 999999999, + "AssociatedPetId": "Huge Nightmare Dog", + "Desc": "Combine 3 to create a HUGE Nightmare Dog!", + "DisplayName": "Huge Nightmare Dog Card", + "GoldIcon": "rbxassetid://104061171433854", + "Icon": "rbxassetid://106035906860975", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://15238661657", - "isBottom": true, - "orbImage": "rbxassetid://15466421456", - "rainData": { - "LightEmission": 0.2, - }, - "textColor": null, - "tierName": "Digsite Tokens", - "tinyImage": "rbxassetid://15258328192", - "value": 1, - }, - ], - "Tradable": false, - "_index": 11, + "Tradable": true, + "huge": true, }, - "configName": "Currency | Digsite", - "dateCreated": null, - "dateModified": "2025-07-12T16:08:43.685Z", - "hashShort": "9b83034a5e9dcb2c", + "configName": "Huge Nightmare Dog Card", + "dateCreated": "2025-07-05T23:50:29.149Z", + "dateModified": "2025-07-05T23:50:29.149Z", + "hashShort": "050b306288850065", }, { - "category": "Currency", - "collection": "Currency", + "category": "CardItems", + "collection": "CardItems", "configData": { - "Desc": "Fishing Tokens!", - "DisplayName": "Fishing Tokens", - "MaxAmount": 999999999, + "AssociatedPetId": "Retro Bulldog", + "Desc": "Combine 3 to create a Retro Bulldog!", + "DisplayName": "Retro Bulldog Card", + "GoldIcon": "rbxassetid://127016431022483", + "Icon": "rbxassetid://82462626757644", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://15238661515", - "isBottom": true, - "orbImage": "rbxassetid://15466421230", - "rainData": { - "LightEmission": 0.2, - }, - "textColor": null, - "tierName": "Fishing Tokens", - "tinyImage": "rbxassetid://15258327975", - "value": 1, - }, - ], - "Tradable": false, - "_index": 17, + "Tradable": true, }, - "configName": "Currency | Fishing", - "dateCreated": null, - "dateModified": "2025-07-12T16:08:43.674Z", - "hashShort": "7c67b6054ce7b45a", + "configName": "Retro Bulldog Card", + "dateCreated": "2025-07-05T23:50:29.150Z", + "dateModified": "2025-07-05T23:50:29.150Z", + "hashShort": "8c6ed56d456a3dcf", }, { - "category": "Currency", - "collection": "Currency", + "category": "Anime Cards", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://16482243315", - "value": 0, - }, - { - "image": "rbxassetid://16480911112", - "value": 1000, - }, - { - "image": "rbxassetid://16480911203", - "value": 10000, - }, - ], - "Desc": "Tech!", - "DisplayName": "Tech Coins", - "IsWorldCurrency": true, - "MaxAmount": 3e+42, + "AssociatedPetId": "Anime Wolf", + "CombinationRequirement": 9, + "Desc": "Combine 9 to create an Anime Wolf!", + "DisplayName": "Anime Wolf Card", + "GoldIcon": "rbxassetid://127102950492087", + "Icon": "rbxassetid://127102950492087", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://16373366381", - "isBottom": true, - "orbImage": "rbxassetid://16373366530", - "textColor": null, - "tierName": "Tech Coins", - "tinyImage": "rbxassetid://16373366246", - "value": 1, - }, - { - "Order": 2, - "imageOutline": "rbxassetid://16481483771", - "orbImage": "rbxassetid://16481483950", - "textColor": null, - "tierName": "Tech Bars", - "tinyImage": "rbxassetid://16481483674", - "value": 1000000, - }, - { - "Order": 3, - "imageOutline": "rbxassetid://16618894915", - "isBottom": true, - "orbImage": "rbxassetid://16618895134", - "textColor": null, - "tierName": "Tech Gold Coins", - "tinyImage": "rbxassetid://16618894477", - "value": 1000000000000, - }, - { - "Order": 4, - "imageOutline": "rbxassetid://16618895697", - "orbImage": "rbxassetid://16618895870", - "textColor": null, - "tierName": "Tech Gold Bars", - "tinyImage": "rbxassetid://16618895344", - "value": 1000000000000000000, - }, - { - "Order": 5, - "imageOutline": "rbxassetid://16619035567", - "orbImage": "rbxassetid://16619035764", - "textColor": null, - "tierName": "Tech Platinum Coins", - "tinyImage": "rbxassetid://16619035393", - "value": 1e+24, - }, - { - "Order": 6, - "imageOutline": "rbxassetid://16619036226", - "orbImage": "rbxassetid://16619036423", - "textColor": null, - "tierName": "Tech Platinum Bars", - "tinyImage": "rbxassetid://16619035975", - "value": 1e+30, - }, - { - "Order": 7, - "imageOutline": "rbxassetid://16619110032", - "orbImage": "rbxassetid://16619110279", - "textColor": null, - "tierName": "Tech Emerald Coins", - "tinyImage": "rbxassetid://16619109893", - "value": 1e+36, - }, - { - "Order": 8, - "imageOutline": "rbxassetid://16619110669", - "orbImage": "rbxassetid://16619110930", - "textColor": null, - "tierName": "Tech Emerald Bars", - "tinyImage": "rbxassetid://16619110396", - "value": 1e+42, - }, - ], - "Tradable": false, - "_index": 34, + "Tradable": true, }, - "configName": "Currency | TechCoins", - "dateCreated": null, - "dateModified": "2025-12-20T17:55:28.553Z", - "hashShort": "5d5bf43bca1303f4", + "configName": "Anime Wolf Card", + "dateCreated": "2025-07-05T23:50:29.154Z", + "dateModified": "2025-07-05T23:50:29.154Z", + "hashShort": "4af96bca14c77930", }, { - "category": "Currency", - "collection": "Currency", + "category": "CardItems", + "collection": "CardItems", "configData": { - "Desc": "St. Patrick's Day!", - "DisplayName": "Clover Coins", - "IsWorldCurrency": false, - "MaxAmount": 999999999, + "AssociatedPetId": "Hellhound", + "Desc": "Combine 3 to create a Hellhound!", + "DisplayName": "Hellhound Card", + "GoldIcon": "rbxassetid://92313012962758", + "Icon": "rbxassetid://140726516747733", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://16747552939", - "isBottom": true, - "orbImage": "rbxassetid://16747553056", - "textColor": null, - "tierName": "Clover Coins", - "tinyImage": "rbxassetid://16747552861", - "value": 1, - }, - ], - "Tradable": false, - "_index": 7, + "Tradable": true, }, - "configName": "Currency | CloverCoins", - "dateCreated": null, - "dateModified": "2025-07-12T16:08:43.676Z", - "hashShort": "b082b74465691895", + "configName": "Hellhound Card", + "dateCreated": "2025-07-05T23:50:29.159Z", + "dateModified": "2025-07-05T23:50:29.159Z", + "hashShort": "7e8815afe0430cf8", }, { - "category": "Currency", - "collection": "Currency", + "category": "CardItems", + "collection": "CardItems", "configData": { - "Desc": "Glitch Event!", - "DisplayName": "Glitch Coins", - "IsWorldCurrency": false, - "MaxAmount": 999999999, + "AssociatedPetId": "Huge Arcade Dog", + "Desc": "Combine 3 to create a HUGE Arcade Dog!", + "DisplayName": "Huge Arcade Dog Card", + "GoldIcon": "rbxassetid://94594743519513", + "Icon": "rbxassetid://87857471158435", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://16747552939", - "isBottom": true, - "orbImage": "rbxassetid://16747553056", - "textColor": null, - "tierName": "Glitch Coins", - "tinyImage": "rbxassetid://16747552861", - "value": 1, - }, - ], - "Tradable": false, - "_index": 22, + "Tradable": true, + "huge": true, }, - "configName": "Currency | GlitchCoins", - "dateCreated": null, - "dateModified": "2025-12-20T17:55:28.529Z", - "hashShort": "3e35ceae4b115034", + "configName": "Huge Arcade Dog Card", + "dateCreated": "2025-07-05T23:50:29.162Z", + "dateModified": "2025-07-05T23:50:29.162Z", + "hashShort": "171cf0ba5a417a91", }, { - "category": "Currency", - "collection": "Currency", + "category": "CardItems", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://17363096330", - "value": 0, - }, - ], - "Desc": "404", - "DisplayName": "Backrooms Coins", - "IsWorldCurrency": false, - "MaxAmount": 20000000000, + "AssociatedPetId": "Hydra Cat", + "Desc": "Combine 3 to create a Hydra Cat!", + "DisplayName": "Hydra Cat Card", + "GoldIcon": "rbxassetid://81321961357843", + "Icon": "rbxassetid://140018540563043", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Superior", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 8, + "_id": "Superior", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://17363096330", - "isBottom": true, - "orbImage": "rbxassetid://17363096432", - "textColor": null, - "tierName": "Backrooms Coins", - "tinyImage": "rbxassetid://17363096196", - "value": 1, - }, - ], - "Tradable": false, - "_index": 2, + "Tradable": true, }, - "configName": "Currency | BackroomsCoins", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.720Z", - "hashShort": "7491d89c24f83283", + "configName": "Hydra Cat Card", + "dateCreated": "2025-07-05T23:50:29.160Z", + "dateModified": "2025-07-05T23:50:29.160Z", + "hashShort": "618d94e9683160ac", }, { - "category": "Currency", - "collection": "Currency", + "category": "Axolotl Cards", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://111267035313993", - "value": 0, - }, - { - "image": "rbxassetid://115907451681430", - "value": 1000, - }, - { - "image": "rbxassetid://79788327248511", - "value": 10000, - }, - ], - "Desc": "Void!", - "DisplayName": "Void Coins", - "IsWorldCurrency": true, - "MaxAmount": 300000000000000000000, + "AssociatedPetId": "Chill Axolotl", + "Desc": "Combine 3 to create a Chill Axolotl!", + "DisplayName": "Chill Axolotl Card", + "GoldIcon": "rbxassetid://88432213071978", + "Icon": "rbxassetid://85546679351168", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://17485511390", - "isBottom": true, - "orbImage": "rbxassetid://17485511514", - "textColor": null, - "tierName": "Void Gold Coins", - "tinyImage": "rbxassetid://17485511298", - "value": 1, - }, - { - "Order": 2, - "imageOutline": "rbxassetid://17485511753", - "orbImage": "rbxassetid://17485511963", - "textColor": null, - "tierName": "Void Gold Bars", - "tinyImage": "rbxassetid://17485511655", - "value": 1000000, - }, - { - "Order": 3, - "imageOutline": "rbxassetid://17485510795", - "orbImage": "rbxassetid://17485510856", - "textColor": null, - "tierName": "Void Platinum Coins", - "tinyImage": "rbxassetid://17485510673", - "value": 1000000000000, - }, - { - "Order": 4, - "imageOutline": "rbxassetid://17485511062", - "orbImage": "rbxassetid://17485511171", - "textColor": null, - "tierName": "Void Platinum Bars", - "tinyImage": "rbxassetid://17485510951", - "value": 1000000000000000000, - }, - { - "Order": 5, - "imageOutline": "rbxassetid://17485512181", - "orbImage": "rbxassetid://17485512267", - "textColor": null, - "tierName": "Void Emerald Coins", - "tinyImage": "rbxassetid://17485512064", - "value": 1e+24, - }, - { - "Order": 6, - "imageOutline": "rbxassetid://17485512638", - "orbImage": "rbxassetid://17485512787", - "textColor": null, - "tierName": "Void Emerald Bars", - "tinyImage": "rbxassetid://17485512506", - "value": 1e+30, - }, - { - "Order": 7, - "imageOutline": "rbxassetid://17485509428", - "orbImage": "rbxassetid://17485509987", - "textColor": null, - "tierName": "Void Sapphire Coins", - "tinyImage": "rbxassetid://17485509321", - "value": 1e+36, - }, - { - "Order": 8, - "imageOutline": "rbxassetid://17485510417", - "orbImage": "rbxassetid://17485510528", - "textColor": null, - "tierName": "Void Sapphire Bars", - "tinyImage": "rbxassetid://17485510258", - "value": 1e+42, - }, - ], - "Tradable": false, - "_index": 37, + "Tradable": true, }, - "configName": "Currency | VoidCoins", - "dateCreated": null, - "dateModified": "2025-12-20T17:55:28.561Z", - "hashShort": "a1019b21f24240b7", + "configName": "Chill Axolotl Card", + "dateCreated": "2025-07-05T23:50:29.162Z", + "dateModified": "2025-07-05T23:50:29.162Z", + "hashShort": "b00025976d467444", }, { - "category": "Currency", - "collection": "Currency", + "category": "CardItems", + "collection": "CardItems", "configData": { - "Desc": "Summer!", - "DisplayName": "Summer Coins", - "IsWorldCurrency": false, - "MaxAmount": 999999999, - "PermitAutoLootScaling": true, + "AssociatedPetId": "Phantom Wolf", + "Desc": "Combine 3 to create a Phantom Wolf!", + "DisplayName": "Phantom Wolf Card", + "GoldIcon": "rbxassetid://126485164452770", + "Icon": "rbxassetid://117968032097766", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://17674002421", - "isBottom": true, - "orbImage": "rbxassetid://17673997723", - "textColor": null, - "tierName": "Summer Coins", - "tinyImage": "rbxassetid://17673997539", - "value": 1, - }, - ], - "Tradable": false, - "_index": 33, + "Tradable": true, }, - "configName": "Currency | SummerCoins", - "dateCreated": null, - "dateModified": "2025-12-20T17:55:28.550Z", - "hashShort": "56b06e00ad21bc09", + "configName": "Phantom Wolf Card", + "dateCreated": "2025-07-05T23:50:29.166Z", + "dateModified": "2025-07-05T23:50:29.166Z", + "hashShort": "fc28c623fe239ba4", }, { - "category": "Currency", - "collection": "Currency", + "category": "CardItems", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://18101039664", - "value": 0, - }, - ], - "Desc": "Fate will decide!", - "DisplayName": "Good vs. Evil Coins", - "IsWorldCurrency": false, - "MaxAmount": 1000000000000, - "PermitAutoLootScaling": true, + "AssociatedPetId": "Huge Blurred Axolotl", + "Desc": "Combine 3 to create a HUGE Blurred Axolotl!", + "DisplayName": "Huge Blurred Axolotl Card", + "GoldIcon": "rbxassetid://99597379792681", + "Icon": "rbxassetid://79467248810003", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://18101039664", - "isBottom": true, - "orbImage": "rbxassetid://18101039723", - "textColor": null, - "tierName": "Good vs. Evil Coins", - "tinyImage": "rbxassetid://18101039801", - "value": 1, - }, - ], - "Tradable": false, - "_index": 23, + "Tradable": true, + "huge": true, }, - "configName": "Currency | GoodVsEvilCoins", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-12-20T17:55:28.558Z", - "hashShort": "9ecfd79062f9d1ea", + "configName": "Huge Blurred Axolotl Card", + "dateCreated": "2025-07-05T23:50:29.171Z", + "dateModified": "2025-07-05T23:50:29.171Z", + "hashShort": "a0c213610f5f7302", }, { - "category": "Currency", - "collection": "Currency", + "category": "CardItems", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://18325334566", - "value": 0, - }, - ], - "Desc": "Fate will decide!", - "DisplayName": "Rave Coins", - "IsWorldCurrency": false, - "MaxAmount": 25000000000, - "PermitAutoLootScaling": true, + "AssociatedPetId": "Lumi Axolotl", + "Desc": "Combine 3 to create a Lumi Axolotl!", + "DisplayName": "Lumi Axolotl Card", + "GoldIcon": "rbxassetid://95959840037686", + "Icon": "rbxassetid://131017048232066", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://18325334566", - "isBottom": true, - "orbImage": "rbxassetid://18325334755", - "textColor": null, - "tierName": "Rave Coins", - "tinyImage": "rbxassetid://18325334449", - "value": 1, - }, - ], - "Tradable": false, - "_index": 30, + "Tradable": true, }, - "configName": "Currency | RaveCoins", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-12-20T17:55:28.532Z", - "hashShort": "95c656cb612b4e57", + "configName": "Lumi Axolotl Card", + "dateCreated": "2025-07-05T23:50:29.174Z", + "dateModified": "2025-07-05T23:50:29.174Z", + "hashShort": "d7c441f57d64c257", }, { - "category": "Currency", - "collection": "Currency", + "category": "CardItems", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://18325334566", - "value": 0, - }, - ], - "Desc": "ROAR!", - "DisplayName": "Dino Tycoon Coins", - "IsWorldCurrency": false, - "MaxAmount": 100000000000000, - "PermitAutoLootScaling": true, + "AssociatedPetId": "Super Seal", + "Desc": "Combine 3 to create a Super Seal!", + "DisplayName": "Super Seal Card", + "GoldIcon": "rbxassetid://110390340490244", + "Icon": "rbxassetid://123421766103424", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://18655723073", - "isBottom": true, - "orbImage": "rbxassetid://18655723260", - "textColor": null, - "tierName": "Dino Tycoon Coins", - "tinyImage": "rbxassetid://18655722812", - "value": 1, - }, - ], - "Tradable": false, - "_index": 12, + "Tradable": true, }, - "configName": "Currency | DinoTycoonCoins", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-07-12T16:08:44.431Z", - "hashShort": "16bec5f5b727caaa", + "configName": "Super Seal Card", + "dateCreated": "2025-07-05T23:50:29.166Z", + "dateModified": "2025-07-05T23:50:29.166Z", + "hashShort": "b1c0b7cd54fbf8b0", }, { - "category": "Currency", - "collection": "Currency", + "category": "Exclusive Meme Cards", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://18856064762", - "value": 0, - }, - ], - "Desc": "RNGGGGG!", - "DisplayName": "RNG Coins", - "IsWorldCurrency": false, - "MaxAmount": 100000000000000, - "PermitAutoLootScaling": true, + "AssociatedPetId": "Hot Dooooog", + "Desc": "Combine 3 to create a Hot Dooooog!", + "DisplayName": "Hot Dooooog Card", + "GoldIcon": "rbxassetid://135084921285008", + "Icon": "rbxassetid://122985113295360", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://18856064762", - "isBottom": true, - "orbImage": "rbxassetid://18856064864", - "textColor": null, - "tierName": "RNG Coins", - "tinyImage": "rbxassetid://18856064586", - "value": 1, - }, - ], - "Tradable": false, - "_index": 31, + "Tradable": true, }, - "configName": "Currency | RngCoins", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-12-20T17:55:28.534Z", - "hashShort": "997b42d725c5d93d", + "configName": "Hot Dooooog Card", + "dateCreated": "2025-07-05T23:50:29.172Z", + "dateModified": "2025-07-05T23:50:29.172Z", + "hashShort": "a9236f44fcbace65", }, { - "category": "Currency", - "collection": "Currency", + "category": "CardItems", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://18101039664", - "value": 0, - }, - ], - "Desc": "I'm color blind...", - "DisplayName": "Color Coins", - "IsWorldCurrency": false, - "MaxAmount": 1000000000000, - "PermitAutoLootScaling": true, + "AssociatedPetId": "Error Cat", + "Desc": "Combine 3 to create an Error Cat!", + "DisplayName": "Error Cat Card", + "GoldIcon": "rbxassetid://136188841707502", + "Icon": "rbxassetid://80934581706657", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://71727371212764", - "isBottom": true, - "orbImage": "rbxassetid://90175647682619", - "textColor": null, - "tierName": "Color Coins", - "tinyImage": "rbxassetid://102269372822590", - "value": 1, - }, - ], - "Tradable": false, - "_index": 9, + "Tradable": true, }, - "configName": "Currency | ColorCoins", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-07-12T16:08:43.671Z", - "hashShort": "60a2c883773256e6", + "configName": "Error Cat Card", + "dateCreated": "2025-07-05T23:50:29.177Z", + "dateModified": "2025-07-05T23:50:29.177Z", + "hashShort": "189c8d101eff358f", }, { - "category": "Currency", - "collection": "Currency", + "category": "Pog Cards", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://75134390965970", - "value": 0, - }, - ], - "Desc": "Spooky!", - "DisplayName": "Halloween Candy", - "IsWorldCurrency": false, - "MaxAmount": 99999999999, - "PermitAutoLootScaling": true, + "AssociatedPetId": "Pog Shark", + "Desc": "Combine 3 to create a Pog Shark!", + "DisplayName": "Pog Shark Card", + "GoldIcon": "rbxassetid://113273907111687", + "Icon": "rbxassetid://90629892385861", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://75134390965970", - "isBottom": true, - "orbImage": "rbxassetid://103840258916135", - "textColor": null, - "tierName": "Halloween Candy", - "tinyImage": "rbxassetid://109049002662412", - "value": 1, - }, - ], - "Tradable": false, - "_index": 25, + "Tradable": true, }, - "configName": "Currency | HalloweenCandy", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-12-20T17:55:28.555Z", - "hashShort": "b038a21ec63ed86d", + "configName": "Pog Shark Card", + "dateCreated": "2025-07-05T23:50:29.180Z", + "dateModified": "2025-07-05T23:50:29.180Z", + "hashShort": "8038f1f89fc52835", }, { - "category": "Currency", - "collection": "Currency", + "category": "CardItems", + "collection": "CardItems", "configData": { - "Desc": "Woodcutting Tokens!", - "DisplayName": "Woodcutting Tokens", - "MaxAmount": 999999999, + "AssociatedPetId": "Fairy Moth", + "Desc": "Combine 3 to create a Fairy Moth!", + "DisplayName": "Fairy Moth Card", + "GoldIcon": "rbxassetid://102451187327624", + "Icon": "rbxassetid://119355848013110", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://138618537382780", - "isBottom": true, - "orbImage": "rbxassetid://136557753458490", - "rainData": { - "LightEmission": 0.2, - }, - "textColor": null, - "tierName": "Woodcutting Tokens", - "tinyImage": "rbxassetid://114330766597581", - "value": 1, - }, - ], - "Tradable": false, - "_index": 38, + "Tradable": true, }, - "configName": "Currency | Woodcutting", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-12-20T17:55:28.559Z", - "hashShort": "a467056d36242387", + "configName": "Fairy Moth Card", + "dateCreated": "2025-07-05T23:50:29.178Z", + "dateModified": "2025-07-05T23:50:29.178Z", + "hashShort": "857baa210477e33f", }, { - "category": "Currency", - "collection": "Currency", + "category": "Axolotl Cards", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://15058306423", - "value": 0, - }, - ], - "Desc": "Wait in line!", - "DisplayName": "Line Coins", - "IsWorldCurrency": false, - "MaxAmount": 999999999999, - "PermitAutoLootScaling": true, + "AssociatedPetId": "Huge Storm Axolotl", + "Desc": "Combine 3 to create a HUGE Storm Axolotl!", + "DisplayName": "Huge Storm Axolotl Card", + "GoldIcon": "rbxassetid://90312924211674", + "Icon": "rbxassetid://73097172133234", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://136388628527905", - "isBottom": true, - "orbImage": "rbxassetid://106884662861777", - "textColor": null, - "tierName": "Line Coins", - "tinyImage": "rbxassetid://129524495734614", - "value": 1, - }, - ], - "Tradable": false, - "_index": 27, + "Tradable": true, + "huge": true, }, - "configName": "Currency | LineCoins", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-12-20T17:55:28.569Z", - "hashShort": "03b46124043579b5", + "configName": "Huge Storm Axolotl Card", + "dateCreated": "2025-07-05T23:50:29.180Z", + "dateModified": "2025-07-05T23:50:29.180Z", + "hashShort": "ea76aaa112b2ea7c", }, { - "category": "Currency", - "collection": "Currency", + "category": "BIG Cards", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://15058306423", - "value": 0, - }, - ], - "Desc": "Time to stock up!", - "DisplayName": "Acorns", - "IsWorldCurrency": false, - "MaxAmount": 99999999999, - "PermitAutoLootScaling": true, + "AssociatedPetId": "Huge Arcane Dominus", + "Desc": "Combine 3 to create a HUGE Arcane Dominus!", + "DisplayName": "Huge Arcane Dominus Card", + "GoldIcon": "rbxassetid://117219912682963", + "Icon": "rbxassetid://136961076315208", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://135414987979490", - "isBottom": true, - "orbImage": "rbxassetid://131794485585038", - "textColor": null, - "tierName": "Acorns", - "tinyImage": "rbxassetid://96741641245908", - "value": 1, - }, - ], - "Tradable": false, - "_index": 1, + "Tradable": true, + "huge": true, }, - "configName": "Currency | Acorns", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-07-05T23:24:44.619Z", - "hashShort": "d4192b24c7314c77", + "configName": "Huge Arcane Dominus Card", + "dateCreated": "2025-07-05T23:50:29.182Z", + "dateModified": "2025-07-05T23:50:29.182Z", + "hashShort": "99b20b1c1b068846", }, { - "category": "Currency", - "collection": "Currency", + "category": "CardItems", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://15058306423", - "value": 0, - }, - ], - "Desc": "Tis the season of joy!", - "DisplayName": "Holiday Coins", - "IsWorldCurrency": false, - "MaxAmount": 9999999999999, - "PermitAutoLootScaling": true, + "AssociatedPetId": "Immortuus", + "Desc": "Combine 3 to create an Immortuus!", + "DisplayName": "Immortuus Card", + "GoldIcon": "rbxassetid://76740228376261", + "Icon": "rbxassetid://138132496982065", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://92340184269519", - "isBottom": true, - "orbImage": "rbxassetid://85787805590293", - "textColor": null, - "tierName": "Holiday Coins", - "tinyImage": "rbxassetid://101534124159156", - "value": 1, - }, - ], - "Tradable": false, - "_index": 20, + "Tradable": true, }, - "configName": "Currency | GingerbreadCoins", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-07-12T16:08:44.425Z", - "hashShort": "0f6d9cfed95e0864", + "configName": "Immortuus Card", + "dateCreated": "2025-07-05T23:50:29.181Z", + "dateModified": "2025-07-05T23:50:29.181Z", + "hashShort": "7aa8a3d5b7fd3562", }, { - "category": "Currency", - "collection": "Currency", + "category": "Ninja Cards", + "collection": "CardItems", "configData": { - "Desc": "Logs!", - "DisplayName": "Logs", - "MaxAmount": 999999999, + "AssociatedPetId": "Huge Ninja Capybara", + "Desc": "Combine 3 to create a HUGE Ninja Capybara!", + "DisplayName": "Huge Ninja Capybara Card", + "GoldIcon": "rbxassetid://84455167547968", + "Icon": "rbxassetid://104648415908216", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://106982135379419", - "isBottom": true, - "orbImage": "rbxassetid://80925129915505", - "rainData": { - "LightEmission": 0.2, - }, - "textColor": null, - "tierName": "Logs", - "tinyImage": "rbxassetid://133731380646675", - "value": 1, - }, - ], - "Tradable": false, - "_index": 32, + "Tradable": true, + "huge": true, }, - "configName": "Currency | SnowstormSurvival", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-12-20T17:55:28.576Z", - "hashShort": "6816c09bc4f63fb1", + "configName": "Huge Ninja Capybara Card", + "dateCreated": "2025-07-05T23:50:29.184Z", + "dateModified": "2025-07-05T23:50:29.184Z", + "hashShort": "ec2aa531c9764e18", }, { - "category": "Currency", - "collection": "Currency", + "category": "Axolotl Cards", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://82191237394638", - "value": 0, - }, - ], - "Desc": "Paw Games!", - "DisplayName": "Game Coins", - "IsWorldCurrency": false, - "MaxAmount": 99999999999, - "PermitAutoLootScaling": true, + "AssociatedPetId": "Nature Axolotl", + "Desc": "Combine 3 to create a Nature Axolotl!", + "DisplayName": "Nature Axolotl Card", + "GoldIcon": "rbxassetid://137433173456840", + "Icon": "rbxassetid://99298640473905", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Superior", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 8, + "_id": "Superior", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://82191237394638", - "isBottom": true, - "orbImage": "rbxassetid://74387622182212", - "textColor": null, - "tierName": "Game Coins", - "tinyImage": "rbxassetid://138122925639868", - "value": 1, - }, - ], - "Tradable": false, - "_index": 19, + "Tradable": true, }, - "configName": "Currency | GameCoins", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-07-12T16:08:44.428Z", - "hashShort": "65b78173a756ac50", + "configName": "Nature Axolotl Card", + "dateCreated": "2025-07-05T23:50:29.184Z", + "dateModified": "2025-07-05T23:50:29.184Z", + "hashShort": "b836185df19a3701", }, { - "category": "Currency", - "collection": "Currency", + "category": "Exclusive Meme Cards", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://18325334566", - "value": 0, - }, - ], - "Desc": "BOOM!", - "DisplayName": "Cannon Tycoon Coins", - "IsWorldCurrency": false, - "MaxAmount": 999999999999999, - "PermitAutoLootScaling": true, + "AssociatedPetId": "Hippomelon", + "Desc": "Combine 3 to create a Hippomelon!", + "DisplayName": "Hippomelon Card", + "GoldIcon": "rbxassetid://96081499743094", + "Icon": "rbxassetid://125843625297649", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://102648063822047", - "isBottom": true, - "orbImage": "rbxassetid://85576749924261", - "textColor": null, - "tierName": "Cannon Tycoon Coins", - "tinyImage": "rbxassetid://112132454266141", - "value": 1, - }, - ], - "Tradable": false, - "_index": 5, + "Tradable": true, }, - "configName": "Currency | CannonTycoonCoins", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-07-12T16:08:43.659Z", - "hashShort": "d103816a1cf9b3ac", + "configName": "Hippomelon Card", + "dateCreated": "2025-07-05T23:50:29.183Z", + "dateModified": "2025-07-05T23:50:29.183Z", + "hashShort": "49c126f3a606af87", }, { - "category": "Currency", - "collection": "Currency", + "category": "BIG Cards", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://15058306423", - "value": 0, - }, - ], - "Desc": "Spread the love!", - "DisplayName": "Valentines Coins", - "IsWorldCurrency": false, - "MaxAmount": 9999999999, - "PermitAutoLootScaling": true, + "AssociatedPetId": "Blue BIG Maskot", + "Desc": "Combine 3 to create a Blue BIG Maskot!", + "DisplayName": "Blue BIG Maskot Card", + "GoldIcon": "rbxassetid://136549702778838", + "Icon": "rbxassetid://81200176200531", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://136778042221220", - "isBottom": true, - "orbImage": "rbxassetid://123511168949350", - "textColor": null, - "tierName": "Valentines Coins", - "tinyImage": "rbxassetid://127904753900493", - "value": 1, - }, - ], - "Tradable": false, - "_index": 36, + "Tradable": true, }, - "configName": "Currency | ValentinesCoins", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-12-20T17:55:28.575Z", - "hashShort": "0d6e734040ca84f5", + "configName": "Blue BIG Maskot Card", + "dateCreated": "2025-07-05T23:50:29.185Z", + "dateModified": "2025-07-05T23:50:29.185Z", + "hashShort": "1b3ec633f59a150e", }, { - "category": "Currency", - "collection": "Currency", + "category": "Pog Cards", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://15058306423", - "value": 0, - }, - ], - "Desc": "These are not the cards you are looking for!", - "DisplayName": "Card Coins", - "IsWorldCurrency": false, - "MaxAmount": 40000000, - "PermitAutoLootScaling": true, + "AssociatedPetId": "Pog Dragon", + "Desc": "Combine 3 to create a Pog Dragon!", + "DisplayName": "Pog Dragon Card", + "GoldIcon": "rbxassetid://111777183447616", + "Icon": "rbxassetid://106288876523786", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://121046322071840", - "isBottom": true, - "orbImage": "rbxassetid://128479235126989", - "textColor": null, - "tierName": "Card Coins", - "tinyImage": "rbxassetid://126272263667234", - "value": 1, - }, - ], - "Tradable": false, - "_index": 6, + "Tradable": true, }, - "configName": "Currency | CardCoins", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-07-12T16:08:44.432Z", - "hashShort": "705974bbd4f70472", + "configName": "Pog Dragon Card", + "dateCreated": "2025-07-05T23:50:29.187Z", + "dateModified": "2025-07-05T23:50:29.187Z", + "hashShort": "2a19f3c64c6cde4f", }, { - "category": "Currency", - "collection": "Currency", + "category": "Axolotl Cards", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://15058306423", - "value": 0, - }, - ], - "Desc": "Feeling lucky!", - "DisplayName": "Lucky Coins", - "IsWorldCurrency": false, - "MaxAmount": 999999999999, - "PermitAutoLootScaling": true, + "AssociatedPetId": "Fancy Axolotl", + "Desc": "Combine 3 to create a Fancy Axolotl!", + "DisplayName": "Fancy Axolotl Card", + "GoldIcon": "rbxassetid://83209064819232", + "Icon": "rbxassetid://80336829316859", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://90246759786963", - "isBottom": true, - "orbImage": "rbxassetid://133498641445950", - "textColor": null, - "tierName": "Lucky Coins", - "tinyImage": "rbxassetid://100737449873738", - "value": 1, - }, - ], - "Tradable": false, - "_index": 28, + "Tradable": true, }, - "configName": "Currency | LuckyCoins", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-12-20T17:55:28.530Z", - "hashShort": "7b7e32984388738c", + "configName": "Fancy Axolotl Card", + "dateCreated": "2025-07-05T23:50:29.186Z", + "dateModified": "2025-07-05T23:50:29.186Z", + "hashShort": "c3e68d10a4be2419", }, { - "category": "Currency", - "collection": "Currency", + "category": "Ghostly Cards", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://15058306423", - "value": 0, - }, - ], - "Desc": "Keep digging!", - "DisplayName": "Mining Coins", - "IsWorldCurrency": false, - "MaxAmount": 4999999999999, - "PermitAutoLootScaling": true, + "AssociatedPetId": "Ghostly Cat", + "CombinationRequirement": 3, + "Desc": "Combine 3 to create a Ghostly Cat!", + "DisplayName": "Ghostly Cat Card", + "GoldIcon": "rbxassetid://114230697133524", + "Icon": "rbxassetid://114230697133524", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://97263404339499", - "isBottom": true, - "orbImage": "rbxassetid://135738792295255", - "textColor": null, - "tierName": "Mining Coins", - "tinyImage": "rbxassetid://119648825804887", - "value": 1, - }, - ], - "Tradable": false, - "_index": 29, + "Tradable": true, }, - "configName": "Currency | MiningCoins", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-12-20T17:55:28.552Z", - "hashShort": "94fe348f49702186", + "configName": "Ghostly Cat Card", + "dateCreated": "2025-07-05T23:50:29.188Z", + "dateModified": "2025-07-05T23:50:29.188Z", + "hashShort": "a60e1e2b382068f6", }, { - "category": "Currency", - "collection": "Currency", + "category": "Pog Cards", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://15058306423", - "value": 0, - }, - ], - "Desc": "Slime, jelly, and gears!", - "DisplayName": "Factory Coins", - "IsWorldCurrency": false, - "MaxAmount": 2000000000000, - "PermitAutoLootScaling": true, + "AssociatedPetId": "Pog Dog", + "Desc": "Combine 3 to create a Pog Dog!", + "DisplayName": "Pog Dog Card", + "GoldIcon": "rbxassetid://76920613139340", + "Icon": "rbxassetid://127061671559372", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://104178693531817", - "isBottom": true, - "orbImage": "rbxassetid://90235613189635", - "textColor": null, - "tierName": "Factory Coins", - "tinyImage": "rbxassetid://15058306423", - "value": 1, - }, - ], - "Tradable": false, - "_index": 14, + "Tradable": true, }, - "configName": "Currency | FactoryCoins", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-07-12T16:08:44.439Z", - "hashShort": "05c51aa5e22b52c1", + "configName": "Pog Dog Card", + "dateCreated": "2025-07-05T23:50:29.188Z", + "dateModified": "2025-07-05T23:50:29.188Z", + "hashShort": "231e8a4dd40eda79", }, { - "category": "Currency", - "collection": "Currency", + "category": "Ninja Cards", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://15058306423", - "value": 0, - }, - ], - "Desc": "Bunny!", - "DisplayName": "Easter Coins", - "IsWorldCurrency": false, - "MaxAmount": 5000000000000, - "PermitAutoLootScaling": true, + "AssociatedPetId": "Ninja Snake", + "Desc": "Combine 3 to create a Ninja Snake!", + "DisplayName": "Ninja Snake Card", + "GoldIcon": "rbxassetid://87018451243995", + "Icon": "rbxassetid://132494361444046", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://107459321948849", - "isBottom": true, - "orbImage": "rbxassetid://77154245402970", - "textColor": null, - "tierName": "Easter Coins", - "tinyImage": "rbxassetid://15058306423", - "value": 1, - }, - ], - "Tradable": false, - "_index": 13, + "Tradable": true, }, - "configName": "Currency | EasterCoins", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-07-12T16:08:44.426Z", - "hashShort": "8fca8a3a0b2a69be", + "configName": "Ninja Snake Card", + "dateCreated": "2025-07-05T23:50:29.187Z", + "dateModified": "2025-07-05T23:50:29.187Z", + "hashShort": "d299bab270a9c541", }, { - "category": "Currency", - "collection": "Currency", + "category": "CardItems", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://15058306423", - "value": 0, - }, - ], - "Desc": "Fishing Coins!", - "DisplayName": "Fishing Coins", - "IsWorldCurrency": false, - "MaxAmount": 999999999, + "AssociatedPetId": "Ghoul Horse", + "Desc": "Combine 3 to create a Ghoul Horse!", + "DisplayName": "Ghoul Horse Card", + "GoldIcon": "rbxassetid://127722135638720", + "Icon": "rbxassetid://119906790223679", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Superior", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 8, + "_id": "Superior", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://109171329292101", - "isBottom": true, - "orbImage": "rbxassetid://131630192142121", - "rainData": { - "LightEmission": 0.2, - }, - "textColor": null, - "tierName": "Fishing Tokens", - "tinyImage": "rbxassetid://15058306423", - "value": 1, - }, - ], - "Tradable": false, - "_index": 18, + "Tradable": true, }, - "configName": "Currency | FishingEvent", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-07-12T16:08:44.427Z", - "hashShort": "56e4570437e907eb", + "configName": "Ghoul Horse Card", + "dateCreated": "2025-07-05T23:50:29.187Z", + "dateModified": "2025-07-05T23:50:29.187Z", + "hashShort": "d8e19f7a93f54b04", }, { - "category": "Currency", - "collection": "Currency", + "category": "CardItems", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://97143964967533", - "value": 0, - }, - { - "image": "rbxassetid://119549998271171", - "value": 1000, - }, - { - "image": "rbxassetid://99855251269111", - "value": 10000, - }, - ], - "Desc": "Fantasy!", - "DisplayName": "Fantasy Coins", - "IsWorldCurrency": true, - "MaxAmount": 7000000000000000000, + "AssociatedPetId": "Wicked Agony", + "Desc": "Combine 3 to create a Wicked Agony!", + "DisplayName": "Wicked Agony Card", + "GoldIcon": "rbxassetid://72445846382939", + "Icon": "rbxassetid://137532796506480", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://119268377814694", - "isBottom": true, - "orbImage": "rbxassetid://117074789458345", - "textColor": null, - "tierName": "Fantasy Coins", - "tinyImage": "", - "value": 1, - }, - { - "Order": 2, - "imageOutline": "rbxassetid://86892276061075", - "orbImage": "rbxassetid://95717261050993", - "textColor": null, - "tierName": "Fantasy Bars", - "tinyImage": "", - "value": 1000000, - }, - ], - "Tradable": false, - "_index": 15, + "Tradable": true, }, - "configName": "Currency | FantasyCoins", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-07-19T17:28:55.046Z", - "hashShort": "ff34c209afb3b0bd", + "configName": "Wicked Agony Card", + "dateCreated": "2025-07-05T23:50:29.186Z", + "dateModified": "2025-07-05T23:50:29.186Z", + "hashShort": "b307cba52dc59ec5", }, { - "category": "Currency", - "collection": "Currency", + "category": "BIG Cards", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://15058306423", - "value": 0, - }, - ], - "Desc": "Farming Coins!", - "DisplayName": "Farming Coins", - "IsWorldCurrency": false, - "MaxAmount": 999999999999, + "AssociatedPetId": "Titanic Signature BIG Maskot", + "Desc": "Combine 3 to create a TITANIC Signature BIG Maskot!", + "DisplayName": "Titanic Signature BIG Maskot Card", + "GoldIcon": "rbxassetid://79012269159337", + "Icon": "rbxassetid://113223380236075", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://110572622500059", - "isBottom": true, - "orbImage": "rbxassetid://86858731121151", - "rainData": { - "LightEmission": 0.2, - }, - "textColor": null, - "tierName": "Farming Coins", - "tinyImage": "rbxassetid://15058306423", - "value": 1, - }, - ], - "Tradable": false, - "_index": 16, + "Tradable": true, + "titanic": true, }, - "configName": "Currency | FarmingCoins", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-07-12T16:08:44.446Z", - "hashShort": "7b0a21a180603ff7", + "configName": "Titanic Signature BIG Maskot Card", + "dateCreated": "2025-07-05T23:50:29.189Z", + "dateModified": "2025-07-05T23:50:29.189Z", + "hashShort": "ddbefbba094d2f7e", }, { - "category": "Currency", - "collection": "Currency", + "category": "CardItems", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://83638880057014", - "value": 0, - }, - ], - "Desc": "AH YEET!", - "DisplayName": "Basketball Coins", - "IsWorldCurrency": false, - "MaxAmount": 5000000000, + "AssociatedPetId": "Titanic Cupcake Pegasus", + "Desc": "Combine 3 to create a TITANIC Cupcake Pegasus!", + "DisplayName": "Titanic Cupcake Pegasus Card", + "GoldIcon": "rbxassetid://138635672329660", + "Icon": "rbxassetid://98856023217623", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://83638880057014", - "isBottom": true, - "orbImage": "rbxassetid://77281756784797", - "textColor": null, - "tierName": "Basketball Coins", - "tinyImage": "rbxassetid://83638880057014", - "value": 1, - }, - ], - "Tradable": false, - "_index": 3, + "Tradable": true, + "titanic": true, }, - "configName": "Currency | BasketballCoins", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-07-05T23:24:44.619Z", - "hashShort": "5c9ee6714ddb24f4", + "configName": "Titanic Cupcake Pegasus Card", + "dateCreated": "2025-07-05T23:50:29.187Z", + "dateModified": "2025-07-05T23:50:29.187Z", + "hashShort": "c216db4196e602ac", }, { - "category": "Currency", - "collection": "Currency", + "category": "Exclusive Meme Cards", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://100268530319099", - "value": 0, - }, - ], - "Desc": "AH YEET!", - "DisplayName": "Yeet Orbs", - "IsWorldCurrency": false, - "MaxAmount": 1000000, + "AssociatedPetId": "Noob", + "Desc": "Combine 3 to create a Noob!", + "DisplayName": "Noob Card", + "GoldIcon": "rbxassetid://133587742560122", + "Icon": "rbxassetid://91483626970393", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://100268530319099", - "isBottom": true, - "orbImage": "rbxassetid://100268530319099", - "textColor": null, - "tierName": "Yeet Orbs", - "tinyImage": "rbxassetid://100268530319099", - "value": 1, - }, - ], - "Tradable": false, - "_index": 39, + "Tradable": true, }, - "configName": "Currency | YeetOrbs", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-12-20T17:55:28.583Z", - "hashShort": "5f1b37865fd074f6", + "configName": "Noob Card", + "dateCreated": "2025-07-05T23:50:29.189Z", + "dateModified": "2025-07-05T23:50:29.189Z", + "hashShort": "0351f251c9515707", }, { - "category": "Currency", - "collection": "Currency", + "category": "Ghostly Cards", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://15058306423", - "value": 0, - }, - ], - "Desc": "Tower Defense", - "DisplayName": "Tower Defense", - "IsWorldCurrency": false, - "MaxAmount": 999999999, + "AssociatedPetId": "Ghostly Bunny", + "CombinationRequirement": 3, + "Desc": "Combine 3 to create a Ghostly Bunny!", + "DisplayName": "Ghostly Bunny Card", + "GoldIcon": "rbxassetid://122644963288824", + "Icon": "rbxassetid://122644963288824", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://109171329292101", - "isBottom": true, - "orbImage": "rbxassetid://131630192142121", - "rainData": { - "LightEmission": 0.2, - }, - "textColor": null, - "tierName": "Tower Defense Perm", - "tinyImage": "rbxassetid://15058306423", - "value": 1, - }, - ], - "Tradable": false, - "_index": 31, + "Tradable": true, }, - "configName": "Currency | TowerDefense", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-07-05T23:24:44.619Z", - "hashShort": "02a98b091dfcc5c0", + "configName": "Ghostly Bunny Card", + "dateCreated": "2025-07-05T23:50:29.191Z", + "dateModified": "2025-07-05T23:50:29.191Z", + "hashShort": "0b6d720773f05b52", }, { - "category": "Currency", - "collection": "Currency", + "category": "CardItems", + "collection": "CardItems", "configData": { - "Desc": "Tower Defense!", - "DisplayName": "Rubies", - "IsWorldCurrency": false, - "MaxAmount": 9999999, + "AssociatedPetId": "Super Bat", + "Desc": "Combine 3 to create a Super Bat!", + "DisplayName": "Super Bat Card", + "GoldIcon": "rbxassetid://85421462455742", + "Icon": "rbxassetid://117089578001503", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://104856612652045", - "isBottom": true, - "orbImage": "rbxassetid://104856612652045", - "rainData": { - "LightEmission": 0.2, - }, - "textColor": null, - "tierName": "Rubies", - "tinyImage": "rbxassetid://15058306423", - "value": 1, - }, - ], - "Tradable": false, - "_index": 35, + "Tradable": true, }, - "configName": "Currency | TowerDefenseRubies", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-12-20T17:55:28.567Z", - "hashShort": "518d415c659ff07d", + "configName": "Super Bat Card", + "dateCreated": "2025-07-05T23:50:29.191Z", + "dateModified": "2025-07-05T23:50:29.191Z", + "hashShort": "9699298c7064be4d", }, { - "category": "Currency", - "collection": "Currency", + "category": "Anime Cards", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://83638880057014", - "value": 0, - }, - ], - "Desc": "I'M STRONG!", - "DisplayName": "Gym Coins", - "IsWorldCurrency": false, - "MaxAmount": 5000000000, + "AssociatedPetId": "Anime Lemur", + "CombinationRequirement": 9, + "Desc": "Combine 9 to create an Anime Lemur!", + "DisplayName": "Anime Lemur Card", + "GoldIcon": "rbxassetid://91665767067586", + "Icon": "rbxassetid://91665767067586", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://71839300629468", - "isBottom": true, - "orbImage": "rbxassetid://93788829668295", - "textColor": null, - "tierName": "Gym Coins", - "tinyImage": "rbxassetid://15058306423", - "value": 1, - }, - ], - "Tradable": false, - "_index": 24, + "Tradable": true, }, - "configName": "Currency | GymCoins", - "dateCreated": "2025-07-05T23:24:44.619Z", - "dateModified": "2025-12-20T17:55:28.590Z", - "hashShort": "b5eafd163facf44a", + "configName": "Anime Lemur Card", + "dateCreated": "2025-07-05T23:50:29.192Z", + "dateModified": "2025-07-05T23:50:29.192Z", + "hashShort": "3b5b37acdb41f94e", }, { - "category": "Currency", - "collection": "Currency", + "category": "CardItems", + "collection": "CardItems", "configData": { - "Desc": "Coins!", - "DisplayName": "Block Party Coins", - "IsWorldCurrency": false, - "MaxAmount": 100000000, - "PermitAutoLootScaling": true, + "AssociatedPetId": "Pixel Dragon", + "Desc": "Combine 3 to create a Pixel Dragon!", + "DisplayName": "Pixel Dragon Card", + "GoldIcon": "rbxassetid://133626723656103", + "Icon": "rbxassetid://136111302598232", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Superior", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 8, + "_id": "Superior", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://134635813203547", - "isBottom": true, - "orbImage": "rbxassetid://83488852960549", - "textColor": null, - "tierName": "Block Party Coins", - "tinyImage": "rbxassetid://15058306423", - "value": 1, - }, - ], - "Tradable": false, - "_index": 4, + "Tradable": true, }, - "configName": "Currency | BlockPartyCoins", - "dateCreated": "2025-07-12T16:08:44.433Z", - "dateModified": "2025-07-12T16:08:44.433Z", - "hashShort": "96ccaf765336c851", + "configName": "Pixel Dragon Card", + "dateCreated": "2025-07-05T23:50:29.192Z", + "dateModified": "2025-07-05T23:50:29.192Z", + "hashShort": "78493297cdd40cd0", }, { - "category": "Currency", - "collection": "Currency", + "category": "Pog Cards", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://75134390965970", - "value": 0, - }, - ], - "Desc": "Halloween Candy!", - "DisplayName": "Halloween Candy", - "IsWorldCurrency": false, - "MaxAmount": 999999999999, + "AssociatedPetId": "Huge Pog Cat", + "Desc": "Combine 3 to create a HUGE Pog Cat!", + "DisplayName": "Huge Pog Cat Card", + "GoldIcon": "rbxassetid://107396935789930", + "Icon": "rbxassetid://78837942537350", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://75134390965970", - "isBottom": true, - "orbImage": "rbxassetid://103840258916135", - "textColor": null, - "tierName": "Halloween Candy", - "tinyImage": "rbxassetid://109049002662412", - "value": 1, - }, - ], - "Tradable": false, - "_index": 26, + "Tradable": true, + "huge": true, }, - "configName": "Currency | HalloweenCoins", - "dateCreated": "2025-10-19T02:11:37.609Z", - "dateModified": "2025-12-20T17:55:28.533Z", - "hashShort": "f1c8cd6275bb8e4c", + "configName": "Huge Pog Cat Card", + "dateCreated": "2025-07-05T23:50:29.193Z", + "dateModified": "2025-07-05T23:50:29.193Z", + "hashShort": "bca0a0bd7eb3fa63", }, { - "category": "Currency", - "collection": "Currency", + "category": "Ghostly Cards", + "collection": "CardItems", "configData": { - "BagTiers": [ - { - "image": "rbxassetid://15058306423", - "value": 0, - }, - ], - "Desc": "Tis the season of joy!", - "DisplayName": "Holiday Coins", - "IsWorldCurrency": false, - "MaxAmount": 9999999999999, - "PermitAutoLootScaling": true, + "AssociatedPetId": "Huge Ghostly Dragon", + "CombinationRequirement": 3, + "Desc": "Combine 3 to create a HUGE Ghostly Dragon!", + "DisplayName": "Huge Ghostly Dragon Card", + "GoldIcon": "rbxassetid://126003461284107", + "Icon": "rbxassetid://126003461284107", "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - "Tiers": [ - { - "Order": 1, - "imageOutline": "rbxassetid://92340184269519", - "isBottom": true, - "orbImage": "rbxassetid://85787805590293", - "textColor": null, - "tierName": "Gingerbread Coins", - "tinyImage": "rbxassetid://101534124159156", - "value": 1, - }, - ], - "Tradable": false, - "_index": 21, - }, - "configName": "Currency | GingerbreadCoins2", - "dateCreated": "2025-12-20T17:55:28.539Z", - "dateModified": "2025-12-20T17:55:28.539Z", - "hashShort": "2e72af8aae781bdb", - }, - ], - "status": "ok", -} -`; - -exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` -{ - "data": [ - { - "category": "Exclusive Eggs", - "collection": "Eggs", - "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://14146204107", - "name": "Exclusive Cosmic Egg", - "pets": [ - [ - "Cosmic Axolotl", - 50, - ], - [ - "Cosmic Dragon", - 35, - ], - [ - "Cosmic Agony", - 13, - ], - [ - "Huge Cosmic Axolotl", - 1.25, - ], - [ - "Huge Cosmic Agony", - 0.7, - ], - [ - "Titanic Cosmic Pegasus", - 0.05, - ], - ], - "rainbowChance": 2, - "rarity": { "Announce": true, "Color": null, "DisplayName": "Exclusive", @@ -9336,99 +8534,53 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "shinyChance": 2, + "Tradable": true, + "huge": true, }, - "configName": "Exclusive Egg 16", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.883Z", - "hashShort": "a5d1fa58a2b4c733", + "configName": "Huge Ghostly Dragon Card", + "dateCreated": "2025-07-05T23:50:29.194Z", + "dateModified": "2025-07-05T23:50:29.194Z", + "hashShort": "ec24c72db7091aba", }, { - "category": "Exclusive Eggs", - "collection": "Eggs", + "category": "BIG Cards", + "collection": "CardItems", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://15187934902", - "name": "Exclusive Original Egg", - "pets": [ - [ - "Super Cat", - 50, - ], - [ - "Floppa", - 35, - ], - [ - "Sleipnir", - 13, - ], - [ - "Huge Floppa", - 1.5, - ], - [ - "Huge Sleipnir", - 0.5, - ], - ], - "rainbowChance": 2, - "rarity": { + "AssociatedPetId": "Tech Chest Mimic", + "Desc": "Combine 3 to create an Tech Chest Mimic!", + "DisplayName": "Tech Chest Mimic Card", + "GoldIcon": "rbxassetid://106928832395382", + "Icon": "rbxassetid://74307223652880", + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "shinyChance": 2, + "Tradable": true, }, - "configName": "Exclusive Egg 1", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.894Z", - "hashShort": "87507305e50ffd3a", + "configName": "Tech Chest Mimic Card", + "dateCreated": "2025-07-05T23:50:29.193Z", + "dateModified": "2025-07-05T23:50:29.193Z", + "hashShort": "8a70bae3ac0d1778", }, { - "category": "Exclusive Eggs", - "collection": "Eggs", + "category": "Anime Cards", + "collection": "CardItems", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://15187935566", - "name": "Exclusive Capybara Egg", - "pets": [ - [ - "Capybara", - 50, - ], - [ - "Super Capybara", - 35, - ], - [ - "Cyborg Capybara", - 13, - ], - [ - "Huge Capybara", - 1.5, - ], - [ - "Huge Cyborg Capybara", - 0.5, - ], - ], - "rainbowChance": 2, - "rarity": { + "AssociatedPetId": "Huge Anime Scorpion", + "CombinationRequirement": 9, + "Desc": "Combine 9 to create a HUGE Anime Scorpion!", + "DisplayName": "Huge Anime Scorpion Card", + "GoldIcon": "rbxassetid://132325688234902", + "Icon": "rbxassetid://132325688234902", + "Rarity": { "Announce": true, "Color": null, "DisplayName": "Exclusive", @@ -9440,51 +8592,25 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "shinyChance": 2, + "Tradable": true, + "huge": true, }, - "configName": "Exclusive Egg 2", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.871Z", - "hashShort": "544d247239e3beed", + "configName": "Huge Anime Scorpion Card", + "dateCreated": "2025-07-05T23:50:29.195Z", + "dateModified": "2025-07-05T23:50:29.195Z", + "hashShort": "9984df3eec8eb658", }, { - "category": "Exclusive Eggs", - "collection": "Eggs", + "category": "Ghostly Cards", + "collection": "CardItems", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://15187935439", - "name": "Exclusive Elemental Egg", - "pets": [ - [ - "Prickly Panda", - 35, - ], - [ - "Lightning Bat", - 30, - ], - [ - "Subzero Cat", - 20, - ], - [ - "Inferno Cat", - 13, - ], - [ - "Huge Prickly Panda", - 1.5, - ], - [ - "Huge Inferno Cat", - 0.5, - ], - ], - "rainbowChance": 2, - "rarity": { + "AssociatedPetId": "Titanic Ghostly Wolf", + "CombinationRequirement": 3, + "Desc": "Combine 3 to create a TITANIC Ghostly Wolf!", + "DisplayName": "Titanic Ghostly Wolf Card", + "GoldIcon": "rbxassetid://78094483367207", + "Icon": "rbxassetid://78094483367207", + "Rarity": { "Announce": true, "Color": null, "DisplayName": "Exclusive", @@ -9496,159 +8622,81 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "shinyChance": 2, + "Tradable": true, + "titanic": true, }, - "configName": "Exclusive Egg 3", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.895Z", - "hashShort": "6aad7ec3723fb863", + "configName": "Titanic Ghostly Wolf Card", + "dateCreated": "2025-07-05T23:50:29.195Z", + "dateModified": "2025-07-05T23:50:29.195Z", + "hashShort": "8d301550c5f74bc5", }, { - "category": "Exclusive Eggs", - "collection": "Eggs", + "category": "Ninja Cards", + "collection": "CardItems", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://15187935249", - "name": "Exclusive Neon Twilight Egg", - "pets": [ - [ - "Neon Twilight Wolf", - 35, - ], - [ - "Neon Twilight Cat", - 30, - ], - [ - "Neon Twilight Tiger", - 24, - ], - [ - "Neon Twilight Dragon", - 10, - ], - [ - "Huge Neon Twilight Wolf", - 0.75, - ], - [ - "Huge Neon Twilight Dragon", - 0.25, - ], - ], - "rainbowChance": 2, - "rarity": { + "AssociatedPetId": "Ninja Otter", + "Desc": "Combine 3 to create an Ninja Otter!", + "DisplayName": "Ninja Otter Card", + "GoldIcon": "rbxassetid://82098789008488", + "Icon": "rbxassetid://97093231968000", + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "shinyChance": 2, + "Tradable": true, }, - "configName": "Exclusive Egg 4", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.876Z", - "hashShort": "8f8a80c8a2841cac", + "configName": "Ninja Otter Card", + "dateCreated": "2025-07-05T23:50:29.194Z", + "dateModified": "2025-07-05T23:50:29.194Z", + "hashShort": "e8c41792382300c9", }, { - "category": "Exclusive Eggs", - "collection": "Eggs", + "category": "BIG Cards", + "collection": "CardItems", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://11725479537", - "name": "Exclusive Anime Egg", - "pets": [ - [ - "Anime Unicorn", - 35, - ], - [ - "Anime Corgi", - 30, - ], - [ - "Anime Monkey", - 20, - ], - [ - "Anime Agony", - 13, - ], - [ - "Huge Anime Unicorn", - 1.5, - ], - [ - "Huge Anime Agony", - 0.5, - ], - ], - "rainbowChance": 2, - "rarity": { + "AssociatedPetId": "Empyrean Lion", + "Desc": "Combine 3 to create a Empyrean Lion!", + "DisplayName": "Empyrean Lion Card", + "GoldIcon": "rbxassetid://95680919759920", + "Icon": "rbxassetid://128326623571219", + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "shinyChance": 2, + "Tradable": true, }, - "configName": "Exclusive Egg 5", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.880Z", - "hashShort": "1fc4d4f636104c77", + "configName": "Empyrean Lion Card", + "dateCreated": "2025-07-05T23:50:29.195Z", + "dateModified": "2025-07-05T23:50:29.195Z", + "hashShort": "652f9da5af674de5", }, { - "category": "Exclusive Eggs", - "collection": "Eggs", + "category": "ForeverPack Shards", + "collection": "CardItems", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://15187935808", - "name": "Exclusive Jolly Egg", - "pets": [ - [ - "Grinch Cat", - 65, - ], - [ - "Present Chest Mimic", - 33, - ], - [ - "Huge Grinch Cat", - 1.25, - ], - [ - "Huge Present Chest Mimic", - 0.7, - ], - [ - "Titanic Jolly Cat", - 0.05, - ], - ], - "rainbowChance": 2, - "rarity": { + "AssociatedPetId": "Titanic Sea Dragon", + "CombinationRequirement": 9, + "Desc": "Combine 9 to create a TITANIC Sea Dragon!", + "DisplayName": "Titanic Sea Dragon Card", + "GoldIcon": "rbxassetid://91873587236169", + "Icon": "rbxassetid://91873587236169", + "Rarity": { "Announce": true, "Color": null, "DisplayName": "Exclusive", @@ -9660,51 +8708,25 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "shinyChance": 2, + "Tradable": true, + "titanic": true, }, - "configName": "Exclusive Egg 6", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.875Z", - "hashShort": "04d6bd95679e8809", + "configName": "Titanic Sea Dragon Card", + "dateCreated": "2025-07-05T23:50:29.196Z", + "dateModified": "2025-07-05T23:50:29.196Z", + "hashShort": "a6af92866752e3af", }, { - "category": "Exclusive Eggs", - "collection": "Eggs", + "category": "Anime Cards", + "collection": "CardItems", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://15187935684", - "name": "Exclusive Balloon Egg", - "pets": [ - [ - "Balloon Dragon", - 50, - ], - [ - "Balloon Corgi", - 35, - ], - [ - "Balloon Axolotl", - 13, - ], - [ - "Huge Balloon Dragon", - 1.25, - ], - [ - "Huge Balloon Axolotl", - 0.7, - ], - [ - "Titanic Balloon Monkey", - 0.05, - ], - ], - "rainbowChance": 2, - "rarity": { + "AssociatedPetId": "Anime Tanuki", + "CombinationRequirement": 9, + "Desc": "Combine 9 to create an Anime Tanuki!", + "DisplayName": "Anime Tanuki Card", + "GoldIcon": "rbxassetid://138724297061519", + "Icon": "rbxassetid://138724297061519", + "Rarity": { "Announce": true, "Color": null, "DisplayName": "Exclusive", @@ -9716,107 +8738,58 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "shinyChance": 2, + "Tradable": true, }, - "configName": "Exclusive Egg 7", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.891Z", - "hashShort": "a17c01a039a7139c", + "configName": "Anime Tanuki Card", + "dateCreated": "2025-07-05T23:50:29.196Z", + "dateModified": "2025-07-05T23:50:29.196Z", + "hashShort": "e0716a803e6a3889", }, { - "category": "Exclusive Eggs", - "collection": "Eggs", + "category": "BIG Cards", + "collection": "CardItems", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://12219464453", - "name": "Exclusive Neon Egg", - "pets": [ - [ - "Neon Cat", - 50, - ], - [ - "Neon Dog", - 35, - ], - [ - "Neon Griffin", - 13, - ], - [ - "Huge Neon Cat", - 1.25, - ], - [ - "Huge Neon Griffin", - 0.7, - ], - [ - "Titanic Neon Agony", - 0.05, - ], - ], - "rainbowChance": 2, - "rarity": { + "AssociatedPetId": "Red Balloon Panda", + "Desc": "Combine 3 to create a Red Balloon Panda!", + "DisplayName": "Red Balloon Panda Card", + "GoldIcon": "rbxassetid://118352207185241", + "Icon": "rbxassetid://110697834323397", + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Superior", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 8, + "_id": "Superior", "_script": null, }, - "shinyChance": 2, + "Tradable": true, }, - "configName": "Exclusive Egg 8", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.890Z", - "hashShort": "fb29f350c237672c", + "configName": "Red Balloon Panda Card", + "dateCreated": "2025-07-05T23:50:29.198Z", + "dateModified": "2025-07-05T23:50:29.198Z", + "hashShort": "3dc3464c305dd9dd", }, { - "category": "Exclusive Eggs", - "collection": "Eggs", + "category": "Exclusive Meme Cards", + "collection": "CardItems", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://12444268861", - "name": "Exclusive Meme Egg", - "pets": [ - [ - "Knife Cat", - 50, - ], - [ - "Clout Cat", - 35, - ], - [ - "Pop Cat", - 13, + "Animations": { + "FlipbookAnimation": [ + "rbxassetid://106216236663907", + "rbxassetid://72855538557036", ], - [ - "Huge Knife Cat", - 1.25, - ], - [ - "Huge Pop Cat", - 0.7, - ], - [ - "Titanic Hubert", - 0.05, - ], - ], - "rainbowChance": 2, - "rarity": { + "FlipbookAnimationSpeed": 0.15, + }, + "AssociatedPetId": "Titanic Pop Cat", + "Desc": "Combine 3 to create a TITANIC Pop Cat!", + "DisplayName": "Titanic Pop Cat Card", + "GoldIcon": "rbxassetid://136586852103793", + "Icon": "rbxassetid://93768024463692", + "Rarity": { "Announce": true, "Color": null, "DisplayName": "Exclusive", @@ -9828,51 +8801,25 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "shinyChance": 2, + "Tradable": true, + "titanic": true, }, - "configName": "Exclusive Egg 9", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.885Z", - "hashShort": "a8abc77b981e1009", + "configName": "Titanic Pop Cat Card", + "dateCreated": "2025-07-05T23:50:29.199Z", + "dateModified": "2025-07-05T23:50:29.199Z", + "hashShort": "c59b50901ec95201", }, { - "category": "Exclusive Eggs", - "collection": "Eggs", + "category": "Anime Cards", + "collection": "CardItems", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://12673924707", - "name": "Exclusive Dominus Egg", - "pets": [ - [ - "Storm Dominus", - 50, - ], - [ - "Empyrean Dominus", - 35, - ], - [ - "Inferno Dominus", - 13, - ], - [ - "Huge Storm Dominus", - 1.25, - ], - [ - "Huge Inferno Dominus", - 0.7, - ], - [ - "Titanic Dominus Astra", - 0.05, - ], - ], - "rainbowChance": 2, - "rarity": { + "AssociatedPetId": "Titanic Anime Cat", + "CombinationRequirement": 9, + "Desc": "Combine 9 to create a TITANIC Anime Cat!", + "DisplayName": "Titanic Anime Cat Card", + "GoldIcon": "rbxassetid://80114582985044", + "Icon": "rbxassetid://80114582985044", + "Rarity": { "Announce": true, "Color": null, "DisplayName": "Exclusive", @@ -9884,107 +8831,53 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "shinyChance": 2, + "Tradable": true, + "titanic": true, }, - "configName": "Exclusive Egg 10", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.877Z", - "hashShort": "e53026b83de5b608", + "configName": "Titanic Anime Cat Card", + "dateCreated": "2025-07-05T23:50:29.199Z", + "dateModified": "2025-07-05T23:50:29.199Z", + "hashShort": "73536cfe75915627", }, { - "category": "Exclusive Eggs", - "collection": "Eggs", + "category": "Ninja Cards", + "collection": "CardItems", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://12887279401", - "name": "Exclusive Hologram Egg", - "pets": [ - [ - "Hologram Shark", - 50, - ], - [ - "Hologram Tiger", - 35, - ], - [ - "Hologram Axolotl", - 13, - ], - [ - "Huge Hologram Shark", - 1.25, - ], - [ - "Huge Hologram Axolotl", - 0.7, - ], - [ - "Titanic Hologram Cat", - 0.05, - ], - ], - "rainbowChance": 2, - "rarity": { + "AssociatedPetId": "Sensei Penguin", + "Desc": "Combine 3 to create a Sensei Penguin!", + "DisplayName": "Sensei Penguin Card", + "GoldIcon": "rbxassetid://82420665651506", + "Icon": "rbxassetid://78185027340065", + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "shinyChance": 2, + "Tradable": true, }, - "configName": "Exclusive Egg 11", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.887Z", - "hashShort": "1734846a5a2ca40b", + "configName": "Sensei Penguin Card", + "dateCreated": "2025-07-05T23:50:29.198Z", + "dateModified": "2025-07-05T23:50:29.198Z", + "hashShort": "52f47e86e9685431", }, { - "category": "Exclusive Eggs", - "collection": "Eggs", + "category": "Ghostly Cards", + "collection": "CardItems", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://13356892618", - "name": "Exclusive Jelly Egg", - "pets": [ - [ - "Jelly Corgi", - 50, - ], - [ - "Jelly Panda", - 35, - ], - [ - "Jelly Piggy", - 13, - ], - [ - "Huge Jelly Corgi", - 1.25, - ], - [ - "Huge Jelly Piggy", - 0.7, - ], - [ - "Titanic Jelly Cat", - 0.05, - ], - ], - "rainbowChance": 2, - "rarity": { + "AssociatedPetId": "Ghostly Fox", + "CombinationRequirement": 3, + "Desc": "Combine 3 to create a Ghostly Fox!", + "DisplayName": "Ghostly Fox Card", + "GoldIcon": "rbxassetid://104257326893047", + "Icon": "rbxassetid://104257326893047", + "Rarity": { "Announce": true, "Color": null, "DisplayName": "Exclusive", @@ -9996,163 +8889,79 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "shinyChance": 2, + "Tradable": true, }, - "configName": "Exclusive Egg 13", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.884Z", - "hashShort": "fd74f57beee61353", + "configName": "Ghostly Fox Card", + "dateCreated": "2025-07-05T23:50:29.199Z", + "dateModified": "2025-07-05T23:50:29.199Z", + "hashShort": "2cba69bf5f9e87c5", }, { - "category": "Exclusive Eggs", - "collection": "Eggs", + "category": "Axolotl Cards", + "collection": "CardItems", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://13133002135", - "name": "Exclusive Crystal Egg", - "pets": [ - [ - "Redstone Cat", - 50, - ], - [ - "Emerald Monkey", - 35, - ], - [ - "Amethyst Dragon", - 13, - ], - [ - "Huge Redstone Cat", - 1.25, - ], - [ - "Huge Amethyst Dragon", - 0.7, - ], - [ - "Titanic Mystic Corgi", - 0.05, - ], - ], - "rainbowChance": 2, - "rarity": { + "AssociatedPetId": "Camo Axolotl", + "Desc": "Combine 3 to create a Camo Axolotl!", + "DisplayName": "Camo Axolotl Card", + "GoldIcon": "rbxassetid://108658902498664", + "Icon": "rbxassetid://95130834717427", + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "shinyChance": 2, + "Tradable": true, }, - "configName": "Exclusive Egg 12", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.894Z", - "hashShort": "a410a94b7e9c0df4", + "configName": "Camo Axolotl Card", + "dateCreated": "2025-07-05T23:50:29.198Z", + "dateModified": "2025-07-05T23:50:29.198Z", + "hashShort": "3e5b604213540ace", }, { - "category": "Exclusive Eggs", - "collection": "Eggs", + "category": "Ninja Cards", + "collection": "CardItems", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://13565042806", - "name": "Exclusive Nightmare Egg", - "pets": [ - [ - "Nightmare Spirit", - 50, - ], - [ - "Nightmare Bear", - 35, - ], - [ - "Nightmare Kraken", - 13, - ], - [ - "Huge Nightmare Spirit", - 1.25, - ], - [ - "Huge Nightmare Kraken", - 0.7, - ], - [ - "Titanic Nightmare Cat", - 0.05, - ], - ], - "rainbowChance": 2, - "rarity": { + "AssociatedPetId": "Kung Fu Monkey", + "Desc": "Combine 3 to create a Kung Fu Monkey!", + "DisplayName": "Kung Fu Monkey Card", + "GoldIcon": "rbxassetid://115955424110212", + "Icon": "rbxassetid://89873182062916", + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Superior", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 8, + "_id": "Superior", "_script": null, }, - "shinyChance": 2, + "Tradable": true, }, - "configName": "Exclusive Egg 14", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.881Z", - "hashShort": "71dc3a4d70361105", + "configName": "Kung Fu Monkey Card", + "dateCreated": "2025-07-05T23:50:29.198Z", + "dateModified": "2025-07-05T23:50:29.198Z", + "hashShort": "6ef5204a353f94e3", }, { - "category": "Exclusive Eggs", - "collection": "Eggs", + "category": "CardItems", + "collection": "CardItems", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://13845602539", - "name": "Exclusive Atlantean Egg", - "pets": [ - [ - "Atlantean Orca", - 50, - ], - [ - "Atlantean Stingray", - 35, - ], - [ - "Atlantean Dolphin", - 13, - ], - [ - "Huge Atlantean Orca", - 1.25, - ], - [ - "Huge Atlantean Dolphin", - 0.7, - ], - [ - "Titanic Atlantean Jellyfish", - 0.05, - ], - ], - "rainbowChance": 2, - "rarity": { + "AssociatedPetId": "Huge Super Spider", + "Desc": "Combine 3 to create a HUGE Super Spider!", + "DisplayName": "Huge Super Spider Card", + "GoldIcon": "rbxassetid://96165393561401", + "Icon": "rbxassetid://72718369848565", + "Rarity": { "Announce": true, "Color": null, "DisplayName": "Exclusive", @@ -10164,7247 +8973,8229 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "shinyChance": 2, + "Tradable": true, + "huge": true, }, - "configName": "Exclusive Egg 15", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.892Z", - "hashShort": "20ac8ff3758df7f9", + "configName": "Huge Super Spider Card", + "dateCreated": "2025-07-05T23:50:29.198Z", + "dateModified": "2025-07-05T23:50:29.198Z", + "hashShort": "0ff664ce64799a27", }, { - "category": "Exclusive Eggs", - "collection": "Eggs", + "category": "CardItems", + "collection": "CardItems", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": true, - "goldChance": 0, - "icon": "rbxassetid://15187975109", - "name": "Exclusive Chroma Balloon Egg", - "pets": [ - [ - "Chroma Balloon Dragon", - 50, - ], - [ - "Chroma Balloon Corgi", - 35, - ], - [ - "Chroma Balloon Axolotl", - 13, - ], - [ - "Huge Chroma Balloon Dragon", - 1.25, - ], - [ - "Huge Chroma Balloon Axolotl", - 0.7, - ], - [ - "Titanic Chroma Balloon Monkey", - 0.05, - ], - ], - "rainbowChance": 0, - "rarity": { + "AssociatedPetId": "Gamer Shiba", + "Desc": "Combine 3 to create a Gamer Shiba!", + "DisplayName": "Gamer Shiba Card", + "GoldIcon": "rbxassetid://106994709746815", + "Icon": "rbxassetid://91955982490108", + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "shinyChance": 0, + "Tradable": true, }, - "configName": "Exclusive Chroma Egg 1", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.882Z", - "hashShort": "5c88a7defd626d2c", - }, - { - "category": "Exclusive Eggs", - "collection": "Eggs", - "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://15163625617", - "name": "Exclusive Dragon Egg", - "pets": [ - [ - "Unicorn Dragon", - 50, - ], - [ - "Rift Dragon", - 35, - ], - [ - "Celestial Dragon", - 13, - ], - [ - "Huge Unicorn Dragon", - 1.25, - ], - [ - "Huge Celestial Dragon", - 0.7, - ], - [ - "Titanic Fire Dragon", - 0.05, - ], - ], - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, - }, - "configName": "Exclusive Egg 17", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.886Z", - "hashShort": "19d5200905fee6ad", - }, - { - "category": "Exclusive Eggs", - "collection": "Eggs", - "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": true, - "goldChance": 0, - "icon": "rbxassetid://15187975109", - "name": "Exclusive Egg", - "pets": [], - "rainbowChance": 0, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 0, - }, - "configName": "Merch Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.886Z", - "hashShort": "01bcfd057f494c44", + "configName": "Gamer Shiba Card", + "dateCreated": "2025-07-05T23:50:29.199Z", + "dateModified": "2025-07-05T23:50:29.199Z", + "hashShort": "9f911da98ef2f3dd", }, + ], + "status": "ok", +} +`; + +exports[`Pet Simulator Public Live API Test Charms shape 1`] = ` +{ + "data": [ { - "category": "Exclusive Eggs", - "collection": "Eggs", + "category": "Charms", + "collection": "Charms", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://15628887305", - "name": "Exclusive Fruit Egg", - "pets": [ - [ - "Blueberry Cow", - 50, - ], - [ - "Orange Axolotl", - 35, - ], - [ - "Dragonfruit Dragon", - 13, - ], - [ - "Huge Strawberry Corgi", - 1.25, - ], - [ - "Huge Hippomelon", - 0.7, - ], - [ - "Titanic Banana Cat", - 0.05, - ], + "BaseTier": 1, + "Icon": "rbxassetid://15185586607", + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Pet does 30% more damage!", + "DisplayName": "Strength Charm", + "Power": 30, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + }, ], - "productIds": { - "10 Exclusive Eggs": 1706249085, - "100 Exclusive Eggs": 1706249426, - "3 Exclusive Eggs": 1706248768, - "Exclusive Egg": 1706248399, - }, - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, }, - "configName": "Exclusive Egg 18", + "configName": "Charm | Strength", "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.882Z", - "hashShort": "90d44159c4c32a7d", + "dateModified": "2025-07-05T23:28:48.924Z", + "hashShort": "8410bd577c5ecef0", }, { - "category": "Exclusive Eggs", - "collection": "Eggs", + "category": "Charms", + "collection": "Charms", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://15698454434", - "name": "Exclusive Xmas Egg", - "pets": [ - [ - "Holiday Pegasus", - 50, - ], - [ - "Holiday Balloon Cat", - 35, - ], - [ - "Peppermint Angelus", - 13, - ], - [ - "Huge Holiday Pegasus", - 1.25, - ], - [ - "Huge Peppermint Angelus", - 0.7, - ], - [ - "Titanic Silver Dragon", - 0.05, - ], + "BaseTier": 1, + "Icon": "rbxassetid://15185586825", + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Pet earns 25% more Coins!", + "DisplayName": "Coins Charm", + "Power": 25, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + }, ], - "productIds": { - "10 Exclusive Eggs": 1710522496, - "100 Exclusive Eggs": 1710523139, - "3 Exclusive Eggs": 1710522398, - "Exclusive Egg": 1710522252, - }, - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, }, - "configName": "Exclusive Egg 19", + "configName": "Charm | Coins", "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.878Z", - "hashShort": "c8d894fff172bf0a", + "dateModified": "2025-07-05T23:28:48.939Z", + "hashShort": "909529178cf2d73d", }, { - "category": "Exclusive Eggs", - "collection": "Eggs", + "category": "Charms", + "collection": "Charms", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://16011773627", - "name": "Exclusive Emoji Egg", - "pets": [ - [ - "Emoji Cat", - 50, - ], - [ - "Emoji Dog", - 35, - ], - [ - "Emoji Monkey", - 13, - ], - [ - "Huge Emoji Cat", - 1.25, - ], - [ - "Huge Emoji Monkey", - 0.7, - ], - [ - "Titanic Emoji Corgi", - 0.05, - ], + "BaseTier": 1, + "Icon": "rbxassetid://15185586450", + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Pet earns 10% more Diamonds!", + "DisplayName": "Diamonds Charm", + "Power": 10, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + }, ], - "productIds": { - "10 Exclusive Eggs": 1734839054, - "100 Exclusive Eggs": 1734839242, - "3 Exclusive Eggs": 1734838599, - "Exclusive Egg": 1734838370, - }, - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, }, - "configName": "Exclusive Egg 20", + "configName": "Charm | Diamonds", "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.881Z", - "hashShort": "5fc1f585767f4403", + "dateModified": "2025-07-05T23:28:48.784Z", + "hashShort": "4731d5b84160ebf2", }, { - "category": "Update 3", - "collection": "Eggs", + "category": "Charms", + "collection": "Charms", "configData": { - "currency": "Coins", - "eggNumber": 80, - "icon": "rbxassetid://15172355963", - "name": "Teddy Egg", - "pets": [ - [ - "Pajamas Dog", - 70, - ], - [ - "Train Conductor Cat", - 29, - ], - [ - "Train Conductor Dog", - 1, - "Nice", - ], - [ - "Teddy Bear", - 0.1, - "Great", - ], - [ - "Snowflake Dominus", - 0.002, - "Insane", - ], + "BaseTier": 1, + "Icon": "rbxassetid://15185586240", + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Pet is 35% more likely to get a bonus!", + "DisplayName": "Bonus Charm", + "Power": 35, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Legendary", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 4, + "_id": "Legendary", + "_script": null, + }, + }, ], - "worldNumber": 1, }, - "configName": "80 | Teddy Egg", + "configName": "Charm | Bonus", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.618Z", - "hashShort": "9134eb164b9f0e99", + "dateModified": "2025-07-05T23:28:48.819Z", + "hashShort": "b4bad635f4350336", }, { - "category": "Update 3", - "collection": "Eggs", + "category": "Charms", + "collection": "Charms", "configData": { - "currency": "Coins", - "eggNumber": 79, - "icon": "rbxassetid://15172355963", - "name": "Ice Castle Egg Egg", - "pets": [ - [ - "Ice Penguin", - 50, - ], - [ - "Silver Moose", - 40, - ], - [ - "North Pole Bunny", - 9, - ], - [ - "Silver Bison", - 1, - "Nice", - ], - [ - "Pajamas Cat", - 0.1, - "Great", - ], + "BaseTier": 1, + "Icon": "rbxassetid://15185586077", + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Pet moves 150% faster!", + "DisplayName": "Agility Charm", + "Power": 150, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Legendary", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 4, + "_id": "Legendary", + "_script": null, + }, + }, ], - "worldNumber": 1, }, - "configName": "79 | Ice Castle Egg Egg", + "configName": "Charm | Agility", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.632Z", - "hashShort": "195858002e977c87", + "dateModified": "2025-07-05T23:28:48.855Z", + "hashShort": "e745f9f0d7e5edd5", }, { - "category": "Update 3", - "collection": "Eggs", + "category": "Charms", + "collection": "Charms", "configData": { - "currency": "Coins", - "eggNumber": 78, - "icon": "rbxassetid://15172355963", - "name": "Hot Cocoa Egg", - "pets": [ - [ - "Ice Snowman", - 55, - ], - [ - "Ice Corgi", - 34, - ], - [ - "Colorful Dragon", - 10, - ], - [ - "Ice Penguin", - 1, - "Nice", - ], - [ - "North Pole Bunny", - 0.1, - "Great", - ], + "BaseTier": 1, + "Icon": "rbxassetid://15286764793", + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Pet does 40% more damage, earns 20% more Diamonds, and moves faster!", + "DisplayName": "Royalty Charm", + "Power": 1, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, ], - "worldNumber": 1, }, - "configName": "78 | Hot Cocoa Egg", + "configName": "Charm | Royalty", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.632Z", - "hashShort": "f1f48e559d09329e", + "dateModified": "2025-07-05T23:28:48.890Z", + "hashShort": "e5d004ad1ba9a6f6", }, { - "category": "Update 3", - "collection": "Eggs", + "category": "Charms", + "collection": "Charms", "configData": { - "currency": "Coins", - "eggNumber": 77, - "icon": "rbxassetid://15172355963", - "name": "Ice Sculpture Egg", - "pets": [ - [ - "Frost Rabbit", - 45, - ], - [ - "Frost Fox", - 30, - ], - [ - "Hot Cocoa Cat", - 15, - ], - [ - "Jolly Cat", - 7, - ], - [ - "Ice Snowman", - 3, - "Nice", - ], - [ - "Colorful Dragon", - 0.1, - "Great", - ], + "BaseTier": 1, + "DiminishPowerThreshold": 1.6666666666666667, + "Icon": "rbxassetid://15219668902", + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Pet randomly spawns Diamonds!", + "DisplayName": "Glittering Charm", + "Power": 0.8333333333333334, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Superior", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 8, + "_id": "Superior", + "_script": null, + }, + }, ], - "worldNumber": 1, }, - "configName": "77 | Ice Sculpture Egg", + "configName": "Charm | Glittering", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.636Z", - "hashShort": "b7b1a76eb2db8a37", + "dateModified": "2025-07-05T23:28:48.926Z", + "hashShort": "72c6534cfdc693d0", }, { - "category": "Update 4", - "collection": "Eggs", + "category": "Charms", + "collection": "Charms", "configData": { - "currency": "Coins", - "eggNumber": 82, - "icon": "rbxassetid://15172355963", - "name": "Golden Brick Egg", - "pets": [ - [ - "Cold Firefly", - 60, - ], - [ - "Orange Parrot", - 30, - ], - [ - "Snowflake Dominus", - 5, - ], - [ - "Golden Retriever", - 1, - "Nice", - ], - [ - "Tabby Cat", - 0.1, - "Great", - ], + "BaseTier": 1, + "Icon": "rbxassetid://16009187068", + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Pet randomly inflicts critical hits!", + "DisplayName": "Criticals Charm", + "Power": 5, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + }, ], - "worldNumber": 1, }, - "configName": "82 | Golden Brick Egg", + "configName": "Charm | Criticals", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.621Z", - "hashShort": "eab0d832a963d21f", + "dateModified": "2025-07-05T23:28:49.117Z", + "hashShort": "340b0c83f6b48ba8", }, { - "category": "Update 4", - "collection": "Eggs", + "category": "Charms", + "collection": "Charms", "configData": { - "currency": "Coins", - "eggNumber": 83, - "icon": "rbxassetid://15172355963", - "name": "Cobblestone Egg", - "pets": [ - [ - "Golden Retriever", - 70, - ], - [ - "Enchanted Fox", - 20, - ], - [ - "Tabby Cat", - 9, - ], - [ - "Enchanted Raccoon", - 1, - "Nice", - ], - [ - "Enchanted Dragon", - 0.1, - "Great", - ], + "BaseTier": 1, + "Icon": "rbxassetid://16012045025", + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Pet levels up 30% faster!", + "DisplayName": "XP Charm", + "Power": 30, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + }, ], - "worldNumber": 1, }, - "configName": "83 | Cobblestone Egg", + "configName": "Charm | XP", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.619Z", - "hashShort": "732ee6eacddd90d5", + "dateModified": "2025-07-05T23:28:49.136Z", + "hashShort": "e385f33bcf2f1a14", }, { - "category": "Update 4", - "collection": "Eggs", + "category": "Charms", + "collection": "Charms", "configData": { - "currency": "Coins", - "eggNumber": 84, - "icon": "rbxassetid://15172355963", - "name": "Ruins Egg", - "pets": [ - [ - "Enchanted Raccoon", - 70, - ], - [ - "Rock Cat", - 20, - ], - [ - "Enchanted Dragon", - 9, - ], - [ - "Rock Dog", - 1, - "Nice", - ], - [ - "Rock Dragon", - 0.1, - "Great", - ], + "BaseTier": 1, + "Icon": "rbxassetid://16009186779", + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Adds 2 extra charm slots! +Can only be used once per pet!", + "DisplayName": "Overload Charm", + "Power": 1, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, ], - "worldNumber": 1, + "Unique": true, }, - "configName": "84 | Ruins Egg", + "configName": "Charm | Overload", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.632Z", - "hashShort": "52ee293935d7eeea", + "dateModified": "2025-07-05T23:28:48.957Z", + "hashShort": "dc9142cbeab8373c", }, { - "category": "Update 4", - "collection": "Eggs", + "category": "Charms", + "collection": "Charms", "configData": { - "currency": "Coins", - "eggNumber": 85, - "icon": "rbxassetid://15172355963", - "name": "Runic Egg", - "pets": [ - [ - "Rock Dog", - 70, - ], - [ - "Relic Bat", - 20, - ], - [ - "Rock Dragon", - 9, - ], - [ - "Relic Cyclops", - 1, - "Nice", - ], - [ - "Relic Agony", - 0.1, - "Great", - ], + "BaseTier": 1, + "Icon": "rbxassetid://16012045090", + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Pet randomly spawns TNT!", + "DisplayName": "TNT Charm", + "Power": 1, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + }, ], - "worldNumber": 1, }, - "configName": "85 | Runic Egg", + "configName": "Charm | TNT", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.631Z", - "hashShort": "80027b3c6624801c", + "dateModified": "2025-07-05T23:28:48.960Z", + "hashShort": "10d8d107b2395ab8", }, { - "category": "Update 4", - "collection": "Eggs", + "category": "Charms", + "collection": "Charms", "configData": { - "currency": "Coins", - "eggNumber": 86, - "icon": "rbxassetid://15172355963", - "name": "Wizard Egg", - "pets": [ - [ - "Relic Cyclops", - 70, - ], - [ - "Goblin", - 20, - ], - [ - "Relic Agony", - 10, - ], - [ - "Owl", - 0.1, - "Great", - ], - [ - "Wizard Westie", - 0.01, - "Great", - ], + "BaseTier": 1, + "Icon": "rbxassetid://16009186960", + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Pet randomly shoots lightning at breakables!", + "DisplayName": "Lightning Charm", + "Power": 2.5, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + }, ], - "worldNumber": 1, }, - "configName": "86 | Wizard Egg", + "configName": "Charm | Lightning", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.617Z", - "hashShort": "932a9c6758bc5871", + "dateModified": "2025-07-05T23:28:48.976Z", + "hashShort": "8845fc3c09fe90bb", }, { - "category": "Update 4", - "collection": "Eggs", + "category": "Charms", + "collection": "Charms", "configData": { - "currency": "Coins", - "eggNumber": 87, - "icon": "rbxassetid://15172355963", - "name": "Witch Egg", - "pets": [ - [ - "Potion Poodle", - 70, - ], - [ - "Owl", - 29, - ], - [ - "Wizard Westie", - 1, - "Nice", - ], - [ - "Witch Cat", - 0.1, - "Great", - ], - [ - "Broomstick Corgi", - 0.002, - "Insane", - ], - [ - "Imp", - 0.00004, - "Insane", - ], + "BaseTier": 1, + "Icon": "rbxassetid://134064160006487", + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Pet increases item drops by 200%, earns 100% more diamonds, and earns 50% more coins!", + "DisplayName": "Treasure Charm", + "Power": 1, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, ], - "worldNumber": 1, }, - "configName": "87 | Witch Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.634Z", - "hashShort": "bf3b7112da79569e", + "configName": "Charm | Treasure", + "dateCreated": "2025-07-05T23:23:47.764Z", + "dateModified": "2025-07-05T23:23:47.764Z", + "hashShort": "15c8324f72839c2d", }, + ], + "status": "ok", +} +`; + +exports[`Pet Simulator Public Live API Test Collections Have Not Changed 1`] = ` +{ + "data": [ + "Achievements", + "Boosts", + "Booths", + "Boxes", + "Buffs", + "CardItems", + "Charms", + "Currency", + "Eggs", + "Enchants", + "FishingRods", + "Fruits", + "GuildBattles", + "Hoverboards", + "Lootboxes", + "Mastery", + "MiscItems", + "Pets", + "Potions", + "RandomEvents", + "Ranks", + "Rarity", + "Rebirths", + "SecretRooms", + "Seeds", + "Shovels", + "Sprinklers", + "Ultimates", + "Upgrades", + "WateringCans", + "Worlds", + "ZoneFlags", + "Zones", + "Merchants", + "XPPotions", + ], + "status": "ok", +} +`; + +exports[`Pet Simulator Public Live API Test Currency shape 1`] = ` +{ + "data": [ { - "category": "Update 4", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 81, - "icon": "rbxassetid://15172355963", - "name": "Firefly Egg", - "pets": [ - [ - "Cold Ladybug", - 75, - ], - [ - "Teddy Bear", - 19, - ], - [ - "Cold Butterfly", - 5, - ], - [ - "Cold Firefly", - 1, - "Nice", - ], - [ - "Snowflake Dominus", - 0.1, - "Great", - ], + "BagTiers": [ + { + "image": "rbxassetid://15058306423", + "value": 0, + }, + { + "image": "rbxassetid://15058306716", + "value": 1000, + }, + { + "image": "rbxassetid://15058306965", + "value": 10000, + }, ], - "worldNumber": 1, - }, - "configName": "81 | Firefly Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.785Z", - "hashShort": "1da4ae0aa9606533", - }, - { - "category": "Update 5", - "collection": "Eggs", - "configData": { - "currency": "Coins", - "eggNumber": 88, - "icon": "rbxassetid://15172355963", - "name": "Eerie Egg", - "pets": [ - [ - "Scary Corgi", - 75, - ], - [ - "Scary Cat", - 20, - ], - [ - "Werewolf", - 5, - ], - [ - "Broomstick Corgi", - 0.1, - "Great", - ], - [ - "Imp", - 0.001, - "Insane", - ], + "Desc": "Gold!", + "DisplayName": "Coins", + "IsWorldCurrency": true, + "MaxAmount": 1e+41, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://14867116080", + "isBottom": true, + "orbImage": "rbxassetid://15466375741", + "textColor": null, + "tierName": "Gold Coins", + "tinyImage": "rbxassetid://15258327621", + "value": 1, + }, + { + "Order": 2, + "imageOutline": "rbxassetid://14867116225", + "orbImage": "rbxassetid://15466420899", + "textColor": null, + "tierName": "Gold Bars", + "tinyImage": "rbxassetid://15258327761", + "value": 1000000, + }, + { + "Order": 3, + "imageOutline": "rbxassetid://14867115964", + "orbImage": "rbxassetid://15466420621", + "textColor": null, + "tierName": "Platinum Coins", + "tinyImage": "rbxassetid://15258327405", + "value": 1000000000000, + }, + { + "Order": 4, + "imageOutline": "rbxassetid://14867115795", + "orbImage": "rbxassetid://15466420768", + "textColor": null, + "tierName": "Platinum Bars", + "tinyImage": "rbxassetid://15258327518", + "value": 1000000000000000000, + }, + { + "Order": 5, + "imageOutline": "rbxassetid://15642993873", + "orbImage": "rbxassetid://15642993996", + "textColor": null, + "tierName": "Emerald Coins", + "tinyImage": "rbxassetid://15642993693", + "value": 1e+24, + }, + { + "Order": 6, + "imageOutline": "rbxassetid://15642994307", + "orbImage": "rbxassetid://15642994522", + "textColor": null, + "tierName": "Emerald Bars", + "tinyImage": "rbxassetid://15642994146", + "value": 1e+30, + }, + { + "Order": 7, + "imageOutline": "rbxassetid://15865374023", + "orbImage": "rbxassetid://15865374118", + "textColor": null, + "tierName": "Sapphire Coins", + "tinyImage": "rbxassetid://15865373901", + "value": 1e+36, + }, + { + "Order": 8, + "imageOutline": "rbxassetid://15865374383", + "orbImage": "rbxassetid://15865374466", + "textColor": null, + "tierName": "Sapphire Bars", + "tinyImage": "rbxassetid://15865374292", + "value": 1e+42, + }, ], - "worldNumber": 1, + "Tradable": false, + "_index": 7, }, - "configName": "88 | Eerie Egg", + "configName": "Currency | Coins", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.787Z", - "hashShort": "2fd4e4d244779361", + "dateModified": "2026-06-27T16:06:50.618Z", + "hashShort": "168bfa6e563a152f", }, { - "category": "Update 5", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 89, - "icon": "rbxassetid://15172355963", - "name": "Abyssal Egg", - "pets": [ - [ - "Zombie Squirrel", - 50, - ], - [ - "Zombie Corgi", - 20, - ], - [ - "Broomstick Corgi", - 19, - ], - [ - "Zombie Bull", - 10, - ], - [ - "Imp", - 1, - "Nice", - ], + "BagTiers": [ + { + "image": "rbxassetid://15058306297", + "value": 0, + }, + { + "image": "rbxassetid://15058306546", + "value": 1000, + }, + { + "image": "rbxassetid://15058306840", + "value": 10000, + }, ], - "worldNumber": 1, + "Desc": "Diamonds!", + "DisplayName": "Diamonds", + "MaxAmount": 1000000000000, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "StaticValue": 1, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://14867116353", + "isBottom": true, + "orbImage": "rbxassetid://15466421090", + "rainData": { + "LightEmission": 0.2, + }, + "textColor": null, + "tierName": "Diamonds", + "tinyImage": "rbxassetid://15258327857", + "value": 1, + }, + ], + "Tradable": true, + "_index": 10, }, - "configName": "89 | Abyssal Egg", + "configName": "Currency | Diamonds", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.785Z", - "hashShort": "1458b78b3d551289", + "dateModified": "2026-06-27T16:06:50.607Z", + "hashShort": "dcaa4bfe1497be92", }, { - "category": "Update 5", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 90, - "icon": "rbxassetid://15172355963", - "name": "Cursed Egg", - "pets": [ - [ - "Imp", - 70, - ], - [ - "Ghost Cat", - 20, - ], - [ - "Detective Terrier", - 9, - ], - [ - "Vampire Bat", - 1, - "Nice", - ], - [ - "Grim Reaper", - 0.1, - "Great", - ], + "Desc": "Digsite Tokens!", + "DisplayName": "Digsite Tokens", + "MaxAmount": 999999999, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://15238661657", + "isBottom": true, + "orbImage": "rbxassetid://15466421456", + "rainData": { + "LightEmission": 0.2, + }, + "textColor": null, + "tierName": "Digsite Tokens", + "tinyImage": "rbxassetid://15258328192", + "value": 1, + }, ], - "worldNumber": 1, + "Tradable": false, + "_index": 11, }, - "configName": "90 | Cursed Egg", + "configName": "Currency | Digsite", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.783Z", - "hashShort": "ea7ab847ae4a36c7", + "dateModified": "2026-06-27T16:06:50.613Z", + "hashShort": "9b83034a5e9dcb2c", }, { - "category": "Update 5", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 91, - "icon": "rbxassetid://15172355963", - "name": "Dungeon Egg", - "pets": [ - [ - "Vampire Bat", - 70, - ], - [ - "Ghost", - 20, - ], - [ - "Grim Reaper", - 9, - ], - [ - "Skeleton", - 1, - "Nice", - ], - [ - "Reaper", - 0.1, - "Great", - ], + "Desc": "Fishing Tokens!", + "DisplayName": "Fishing Tokens", + "MaxAmount": 999999999, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://15238661515", + "isBottom": true, + "orbImage": "rbxassetid://15466421230", + "rainData": { + "LightEmission": 0.2, + }, + "textColor": null, + "tierName": "Fishing Tokens", + "tinyImage": "rbxassetid://15258327975", + "value": 1, + }, ], - "worldNumber": 1, + "Tradable": false, + "_index": 17, }, - "configName": "91 | Dungeon Egg", + "configName": "Currency | Fishing", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.779Z", - "hashShort": "4d6f01eaac29aeeb", + "dateModified": "2026-06-27T16:06:50.607Z", + "hashShort": "7c67b6054ce7b45a", }, { - "category": "Update 5", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 92, - "icon": "rbxassetid://15172355963", - "name": "Shadow Egg", - "pets": [ - [ - "Skeleton", - 70, - ], - [ - "Blue Slime", - 20, - ], - [ - "Reaper", - 9, - ], - [ - "Queen Slime", - 1, - "Nice", - ], - [ - "Stacked King Slime", - 0.1, - "Great", - ], + "BagTiers": [ + { + "image": "rbxassetid://16482243315", + "value": 0, + }, + { + "image": "rbxassetid://16480911112", + "value": 1000, + }, + { + "image": "rbxassetid://16480911203", + "value": 10000, + }, ], - "worldNumber": 1, + "Desc": "Tech!", + "DisplayName": "Tech Coins", + "IsWorldCurrency": true, + "MaxAmount": 3e+42, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://16373366381", + "isBottom": true, + "orbImage": "rbxassetid://16373366530", + "textColor": null, + "tierName": "Tech Coins", + "tinyImage": "rbxassetid://16373366246", + "value": 1, + }, + { + "Order": 2, + "imageOutline": "rbxassetid://16481483771", + "orbImage": "rbxassetid://16481483950", + "textColor": null, + "tierName": "Tech Bars", + "tinyImage": "rbxassetid://16481483674", + "value": 1000000, + }, + { + "Order": 3, + "imageOutline": "rbxassetid://16618894915", + "isBottom": true, + "orbImage": "rbxassetid://16618895134", + "textColor": null, + "tierName": "Tech Gold Coins", + "tinyImage": "rbxassetid://16618894477", + "value": 1000000000000, + }, + { + "Order": 4, + "imageOutline": "rbxassetid://16618895697", + "orbImage": "rbxassetid://16618895870", + "textColor": null, + "tierName": "Tech Gold Bars", + "tinyImage": "rbxassetid://16618895344", + "value": 1000000000000000000, + }, + { + "Order": 5, + "imageOutline": "rbxassetid://16619035567", + "orbImage": "rbxassetid://16619035764", + "textColor": null, + "tierName": "Tech Platinum Coins", + "tinyImage": "rbxassetid://16619035393", + "value": 1e+24, + }, + { + "Order": 6, + "imageOutline": "rbxassetid://16619036226", + "orbImage": "rbxassetid://16619036423", + "textColor": null, + "tierName": "Tech Platinum Bars", + "tinyImage": "rbxassetid://16619035975", + "value": 1e+30, + }, + { + "Order": 7, + "imageOutline": "rbxassetid://16619110032", + "orbImage": "rbxassetid://16619110279", + "textColor": null, + "tierName": "Tech Emerald Coins", + "tinyImage": "rbxassetid://16619109893", + "value": 1e+36, + }, + { + "Order": 8, + "imageOutline": "rbxassetid://16619110669", + "orbImage": "rbxassetid://16619110930", + "textColor": null, + "tierName": "Tech Emerald Bars", + "tinyImage": "rbxassetid://16619110396", + "value": 1e+42, + }, + ], + "Tradable": false, + "_index": 36, }, - "configName": "92 | Shadow Egg", + "configName": "Currency | TechCoins", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.780Z", - "hashShort": "5d49156b0a86f272", + "dateModified": "2026-06-27T16:06:50.608Z", + "hashShort": "abd2ecb4150784ef", }, { - "category": "Update 5", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 93, - "icon": "rbxassetid://15172355963", - "name": "Treasure Egg", - "pets": [ - [ - "Queen Slime", - 70, - ], - [ - "Red Dragon", - 20, - ], - [ - "Stacked King Slime", - 9, - ], - [ - "Robber Goblin", - 1, - "Nice", - ], - [ - "Knight Cat", - 0.1, - "Great", - ], + "Desc": "St. Patrick's Day!", + "DisplayName": "Clover Coins", + "IsWorldCurrency": false, + "MaxAmount": 999999999, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://16747552939", + "isBottom": true, + "orbImage": "rbxassetid://16747553056", + "textColor": null, + "tierName": "Clover Coins", + "tinyImage": "rbxassetid://16747552861", + "value": 1, + }, ], - "worldNumber": 1, + "Tradable": false, + "_index": 6, }, - "configName": "93 | Treasure Egg", + "configName": "Currency | CloverCoins", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.773Z", - "hashShort": "57c05ebaf6663cac", + "dateModified": "2026-06-27T16:06:50.617Z", + "hashShort": "cdd66ddf0dc74336", }, { - "category": "Update 5", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 94, - "icon": "rbxassetid://15172355963", - "name": "Empyrean Egg", - "pets": [ - [ - "Robber Goblin", - 70, - ], - [ - "Empyrean Snake", - 20, - ], - [ - "Knight Cat", - 9, - ], - [ - "Empyrean Stallion", - 1, - "Nice", - ], - [ - "Empyrean Fox", - 0.1, - "Great", - ], + "Desc": "Glitch Event!", + "DisplayName": "Glitch Coins", + "IsWorldCurrency": false, + "MaxAmount": 999999999, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://16747552939", + "isBottom": true, + "orbImage": "rbxassetid://16747553056", + "textColor": null, + "tierName": "Glitch Coins", + "tinyImage": "rbxassetid://16747552861", + "value": 1, + }, ], - "worldNumber": 1, + "Tradable": false, + "_index": 22, }, - "configName": "94 | Empyrean Egg", + "configName": "Currency | GlitchCoins", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.772Z", - "hashShort": "bbdb23affdcc5b56", + "dateModified": "2026-06-27T16:06:50.595Z", + "hashShort": "3e35ceae4b115034", }, { - "category": "Update 5", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 95, - "icon": "rbxassetid://15172355963", - "name": "Mythic Egg", - "pets": [ - [ - "Empyrean Stallion", - 90, - ], - [ - "Empyrean Fox", - 9, - ], - [ - "Encrusted Wolf", - 1, - "Nice", - ], - [ - "Encrusted Dragon", - 0.1, - "Great", - ], + "BagTiers": [ + { + "image": "rbxassetid://17363096330", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "404", + "DisplayName": "Backrooms Coins", + "IsWorldCurrency": false, + "MaxAmount": 20000000000, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://17363096330", + "isBottom": true, + "orbImage": "rbxassetid://17363096432", + "textColor": null, + "tierName": "Backrooms Coins", + "tinyImage": "rbxassetid://17363096196", + "value": 1, + }, + ], + "Tradable": false, + "_index": 2, }, - "configName": "95 | Mythic Egg", + "configName": "Currency | BackroomsCoins", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.771Z", - "hashShort": "b59c2058af6288c3", + "dateModified": "2025-07-05T23:29:23.720Z", + "hashShort": "7491d89c24f83283", }, { - "category": "Update 5", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 96, - "icon": "rbxassetid://15172355963", - "name": "Cotton Candy Egg", - "pets": [ - [ - "Encrusted Wolf", - 70, - ], - [ - "Cotton Candy Lamb", - 20, - ], - [ - "Encrusted Dragon", - 9, - ], - [ - "Cotton Candy Cow", - 1, - "Nice", - ], - [ - "Cotton Candy Unicorn", - 0.1, - "Great", - ], + "BagTiers": [ + { + "image": "rbxassetid://111267035313993", + "value": 0, + }, + { + "image": "rbxassetid://115907451681430", + "value": 1000, + }, + { + "image": "rbxassetid://79788327248511", + "value": 10000, + }, ], - "worldNumber": 1, + "Desc": "Void!", + "DisplayName": "Void Coins", + "IsWorldCurrency": true, + "MaxAmount": 300000000000000000000, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://17485511390", + "isBottom": true, + "orbImage": "rbxassetid://17485511514", + "textColor": null, + "tierName": "Void Gold Coins", + "tinyImage": "rbxassetid://17485511298", + "value": 1, + }, + { + "Order": 2, + "imageOutline": "rbxassetid://17485511753", + "orbImage": "rbxassetid://17485511963", + "textColor": null, + "tierName": "Void Gold Bars", + "tinyImage": "rbxassetid://17485511655", + "value": 1000000, + }, + { + "Order": 3, + "imageOutline": "rbxassetid://17485510795", + "orbImage": "rbxassetid://17485510856", + "textColor": null, + "tierName": "Void Platinum Coins", + "tinyImage": "rbxassetid://17485510673", + "value": 1000000000000, + }, + { + "Order": 4, + "imageOutline": "rbxassetid://17485511062", + "orbImage": "rbxassetid://17485511171", + "textColor": null, + "tierName": "Void Platinum Bars", + "tinyImage": "rbxassetid://17485510951", + "value": 1000000000000000000, + }, + { + "Order": 5, + "imageOutline": "rbxassetid://17485512181", + "orbImage": "rbxassetid://17485512267", + "textColor": null, + "tierName": "Void Emerald Coins", + "tinyImage": "rbxassetid://17485512064", + "value": 1e+24, + }, + { + "Order": 6, + "imageOutline": "rbxassetid://17485512638", + "orbImage": "rbxassetid://17485512787", + "textColor": null, + "tierName": "Void Emerald Bars", + "tinyImage": "rbxassetid://17485512506", + "value": 1e+30, + }, + { + "Order": 7, + "imageOutline": "rbxassetid://17485509428", + "orbImage": "rbxassetid://17485509987", + "textColor": null, + "tierName": "Void Sapphire Coins", + "tinyImage": "rbxassetid://17485509321", + "value": 1e+36, + }, + { + "Order": 8, + "imageOutline": "rbxassetid://17485510417", + "orbImage": "rbxassetid://17485510528", + "textColor": null, + "tierName": "Void Sapphire Bars", + "tinyImage": "rbxassetid://17485510258", + "value": 1e+42, + }, + ], + "Tradable": false, + "_index": 39, }, - "configName": "96 | Cotton Candy Egg", + "configName": "Currency | VoidCoins", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.775Z", - "hashShort": "02d6a10676c1e9ed", + "dateModified": "2026-06-27T16:06:50.611Z", + "hashShort": "043bcb99f58fc97a", }, { - "category": "Update 5", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 97, - "icon": "rbxassetid://15172355963", - "name": "Gummy Egg", - "pets": [ - [ - "Cotton Candy Cow", - 70, - ], - [ - "Gummy Raccoon", - 20, - ], - [ - "Cotton Candy Unicorn", - 9, - ], - [ - "Gummy Bear", - 1, - "Nice", - ], - [ - "Gummy Fox", - 0.1, - "Great", - ], + "Desc": "Summer!", + "DisplayName": "Summer Coins", + "IsWorldCurrency": false, + "MaxAmount": 999999999, + "PermitAutoLootScaling": true, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://17674002421", + "isBottom": true, + "orbImage": "rbxassetid://17673997723", + "textColor": null, + "tierName": "Summer Coins", + "tinyImage": "rbxassetid://17673997539", + "value": 1, + }, ], - "worldNumber": 1, + "Tradable": false, + "_index": 35, }, - "configName": "97 | Gummy Egg", + "configName": "Currency | SummerCoins", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.768Z", - "hashShort": "253b9ab9c07341bd", + "dateModified": "2026-06-27T16:06:50.616Z", + "hashShort": "a2695f9ed78cf05b", }, { - "category": "Update 5", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 98, - "icon": "rbxassetid://15172355963", - "name": "Ice Cream Egg", - "pets": [ - [ - "Gummy Bear", - 50, - ], - [ - "Chocolate Dog", - 25, - ], - [ - "Chocolate Frog", - 15, - ], - [ - "Gummy Fox", - 9, - ], - [ - "Chocolate Bunny", - 1, - "Nice", - ], - [ - "Chocolate Hippo", - 0.1, - "Great", - ], + "BagTiers": [ + { + "image": "rbxassetid://18101039664", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "Fate will decide!", + "DisplayName": "Good vs. Evil Coins", + "IsWorldCurrency": false, + "MaxAmount": 1000000000000, + "PermitAutoLootScaling": true, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://18101039664", + "isBottom": true, + "orbImage": "rbxassetid://18101039723", + "textColor": null, + "tierName": "Good vs. Evil Coins", + "tinyImage": "rbxassetid://18101039801", + "value": 1, + }, + ], + "Tradable": false, + "_index": 23, }, - "configName": "98 | Ice Cream Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.774Z", - "hashShort": "76fb5cbe22a0c941", + "configName": "Currency | GoodVsEvilCoins", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2026-06-27T16:06:50.619Z", + "hashShort": "9ecfd79062f9d1ea", }, { - "category": "Update 5", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 99, - "icon": "rbxassetid://15172355963", - "name": "Sweets Egg", - "pets": [ - [ - "Chocolate Bunny", - 70, - ], - [ - "Blue Marshmallow Chick", - 20, - ], - [ - "Chocolate Hippo", - 9, - ], - [ - "Pink Marshmallow Chick", - 1, - "Nice", - ], - [ - "Cupcake", - 0.1, - "Great", - ], + "BagTiers": [ + { + "image": "rbxassetid://18325334566", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "Fate will decide!", + "DisplayName": "Rave Coins", + "IsWorldCurrency": false, + "MaxAmount": 25000000000, + "PermitAutoLootScaling": true, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://18325334566", + "isBottom": true, + "orbImage": "rbxassetid://18325334755", + "textColor": null, + "tierName": "Rave Coins", + "tinyImage": "rbxassetid://18325334449", + "value": 1, + }, + ], + "Tradable": false, + "_index": 28, }, - "configName": "99 | Sweets Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.776Z", - "hashShort": "410a8cd1a7879314", + "configName": "Currency | RaveCoins", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2026-06-27T16:06:50.619Z", + "hashShort": "38b0838708906ff3", }, { - "category": "Update 5", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 100, - "icon": "rbxassetid://15172355963", - "name": "Toy Egg", - "pets": [ - [ - "Pink Marshmallow Chick", - 50, - ], - [ - "Pastel Sock Bear", - 25, - ], - [ - "Pastel Sock Bunny", - 15, - ], - [ - "Cupcake", - 9, - ], - [ - "Pastel Sock Corgi", - 1, - "Nice", - ], - [ - "Pastel Sock Dragon", - 0.1, - "Great", - ], + "BagTiers": [ + { + "image": "rbxassetid://18325334566", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "ROAR!", + "DisplayName": "Dino Tycoon Coins", + "IsWorldCurrency": false, + "MaxAmount": 100000000000000, + "PermitAutoLootScaling": true, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://18655723073", + "isBottom": true, + "orbImage": "rbxassetid://18655723260", + "textColor": null, + "tierName": "Dino Tycoon Coins", + "tinyImage": "rbxassetid://18655722812", + "value": 1, + }, + ], + "Tradable": false, + "_index": 12, }, - "configName": "100 | Toy Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.771Z", - "hashShort": "fd010de04097c978", + "configName": "Currency | DinoTycoonCoins", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2026-06-27T16:06:50.629Z", + "hashShort": "16bec5f5b727caaa", }, { - "category": "Update 5", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 101, - "icon": "rbxassetid://15172355963", - "name": "Carnival Egg", - "pets": [ - [ - "Pastel Sock Corgi", - 50, - ], - [ - "Carnival Elephant", - 25, - ], - [ - "Carnival Panda", - 15, - ], - [ - "Pastel Sock Dragon", - 9, - ], - [ - "Clown Cat", - 1, - "Nice", - ], - [ - "Hot Dog", - 0.1, - "Great", - ], + "BagTiers": [ + { + "image": "rbxassetid://18856064762", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "RNGGGGG!", + "DisplayName": "RNG Coins", + "IsWorldCurrency": false, + "MaxAmount": 100000000000000, + "PermitAutoLootScaling": true, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://18856064762", + "isBottom": true, + "orbImage": "rbxassetid://18856064864", + "textColor": null, + "tierName": "RNG Coins", + "tinyImage": "rbxassetid://18856064586", + "value": 1, + }, + ], + "Tradable": false, + "_index": 31, }, - "configName": "101 | Carnival Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.772Z", - "hashShort": "ff7e7853b4088940", + "configName": "Currency | RngCoins", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2025-12-20T17:55:28.534Z", + "hashShort": "997b42d725c5d93d", }, { - "category": "Update 5", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 102, - "icon": "rbxassetid://15172355963", - "name": "Hot Air Balloon Egg", - "pets": [ - [ - "Clown Cat", - 70, - ], - [ - "Popcorn Cat", - 20, - ], - [ - "Hot Dog", - 9, - ], - [ - "Hot Air Balloon Dog", - 1, - "Nice", - ], - [ - "Basketball Retriever", - 0.1, - "Great", - ], + "BagTiers": [ + { + "image": "rbxassetid://18101039664", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "I'm color blind...", + "DisplayName": "Color Coins", + "IsWorldCurrency": false, + "MaxAmount": 1000000000000, + "PermitAutoLootScaling": true, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://71727371212764", + "isBottom": true, + "orbImage": "rbxassetid://90175647682619", + "textColor": null, + "tierName": "Color Coins", + "tinyImage": "rbxassetid://102269372822590", + "value": 1, + }, + ], + "Tradable": false, + "_index": 8, }, - "configName": "102 | Hot Air Balloon Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.788Z", - "hashShort": "29f681d513803ab7", + "configName": "Currency | ColorCoins", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2026-06-27T16:06:50.603Z", + "hashShort": "07bd0954a5bfa1b1", }, { - "category": "Update 5", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 103, - "icon": "rbxassetid://15172355963", - "name": "Cloud Egg", - "pets": [ - [ - "Hot Air Balloon Dog", - 90, - ], - [ - "Basketball Retriever", - 9, - ], - [ - "Cloud Penguin", - 1, - "Nice", - ], - [ - "Cloud Monkey", - 0.1, - "Great", - ], + "BagTiers": [ + { + "image": "rbxassetid://75134390965970", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "Spooky!", + "DisplayName": "Halloween Candy", + "IsWorldCurrency": false, + "MaxAmount": 99999999999, + "PermitAutoLootScaling": true, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://75134390965970", + "isBottom": true, + "orbImage": "rbxassetid://103840258916135", + "textColor": null, + "tierName": "Halloween Candy", + "tinyImage": "rbxassetid://109049002662412", + "value": 1, + }, + ], + "Tradable": false, + "_index": 26, }, - "configName": "103 | Cloud Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.778Z", - "hashShort": "268dcf3b33ccc0cd", + "configName": "Currency | HalloweenCandy", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2026-06-13T23:13:45.910Z", + "hashShort": "6e779b16b96afab8", }, { - "category": "Update 5", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 104, - "icon": "rbxassetid://15172355963", - "name": "Cloud Garden Egg", - "pets": [ - [ - "Cloud Penguin", - 90, - ], - [ - "Cloud Monkey", - 9, - ], - [ - "Blossom Squirrel", - 1, - "Nice", - ], - [ - "Blossom Koi Fish", - 0.1, - "Great", - ], + "Desc": "Woodcutting Tokens!", + "DisplayName": "Woodcutting Tokens", + "MaxAmount": 999999999, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://138618537382780", + "isBottom": true, + "orbImage": "rbxassetid://136557753458490", + "rainData": { + "LightEmission": 0.2, + }, + "textColor": null, + "tierName": "Woodcutting Tokens", + "tinyImage": "rbxassetid://114330766597581", + "value": 1, + }, ], - "worldNumber": 1, + "Tradable": false, + "_index": 40, }, - "configName": "104 | Cloud Garden Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.767Z", - "hashShort": "949fb047f5281652", + "configName": "Currency | Woodcutting", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2026-06-27T16:06:50.628Z", + "hashShort": "f3f6b24032046fc1", }, { - "category": "Update 5", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 105, - "icon": "rbxassetid://15172355963", - "name": "Cloud Forest Egg", - "pets": [ - [ - "Blossom Squirrel", - 90, - ], - [ - "Blossom Koi Fish", - 9, - ], - [ - "Cloud Hedgehog", - 1, - "Nice", - ], - [ - "Pastel Deer", - 0.1, - "Great", - ], + "BagTiers": [ + { + "image": "rbxassetid://15058306423", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "Wait in line!", + "DisplayName": "Line Coins", + "IsWorldCurrency": false, + "MaxAmount": 999999999999, + "PermitAutoLootScaling": true, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://136388628527905", + "isBottom": true, + "orbImage": "rbxassetid://106884662861777", + "textColor": null, + "tierName": "Line Coins", + "tinyImage": "rbxassetid://129524495734614", + "value": 1, + }, + ], + "Tradable": false, + "_index": 25, }, - "configName": "105 | Cloud Forest Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.788Z", - "hashShort": "3d0967b8bdf0fdf9", + "configName": "Currency | LineCoins", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2026-06-27T16:06:50.626Z", + "hashShort": "16cf2c05b2beb92c", }, { - "category": "Update 5", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 106, - "icon": "rbxassetid://15172355963", - "name": "Cloud House Egg", - "pets": [ - [ - "Cloud Hedgehog", - 90, - ], - [ - "Pastel Deer", - 9, - ], - [ - "Cloud Bat", - 1, - "Nice", - ], - [ - "Cloud Dog", - 0.1, - "Great", - ], + "BagTiers": [ + { + "image": "rbxassetid://15058306423", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "Time to stock up!", + "DisplayName": "Acorns", + "IsWorldCurrency": false, + "MaxAmount": 99999999999, + "PermitAutoLootScaling": true, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://135414987979490", + "isBottom": true, + "orbImage": "rbxassetid://131794485585038", + "textColor": null, + "tierName": "Acorns", + "tinyImage": "rbxassetid://96741641245908", + "value": 1, + }, + ], + "Tradable": false, + "_index": 1, }, - "configName": "106 | Cloud House Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.781Z", - "hashShort": "e0bb7f213943f9b6", + "configName": "Currency | Acorns", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2025-07-05T23:24:44.619Z", + "hashShort": "d4192b24c7314c77", }, { - "category": "Update 5", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 107, - "icon": "rbxassetid://15172355963", - "name": "Cloud Castle Egg", - "pets": [ - [ - "Cloud Bat", - 90, - ], - [ - "Cloud Dog", - 9, - ], - [ - "Royal Cloud Cat", - 1, - "Nice", - ], - [ - "Royal Cloud Corgi", - 0.1, - "Great", - ], + "BagTiers": [ + { + "image": "rbxassetid://15058306423", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "Tis the season of joy!", + "DisplayName": "Holiday Coins", + "IsWorldCurrency": false, + "MaxAmount": 9999999999999, + "PermitAutoLootScaling": true, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://92340184269519", + "isBottom": true, + "orbImage": "rbxassetid://85787805590293", + "textColor": null, + "tierName": "Holiday Coins", + "tinyImage": "rbxassetid://101534124159156", + "value": 1, + }, + ], + "Tradable": false, + "_index": 20, }, - "configName": "107 | Cloud Castle Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.790Z", - "hashShort": "3fd8e07db9a00295", + "configName": "Currency | GingerbreadCoins", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2026-06-27T16:06:50.627Z", + "hashShort": "0f6d9cfed95e0864", }, { - "category": "Update 5", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 108, - "icon": "rbxassetid://15172355963", - "name": "Angel Egg", - "pets": [ - [ - "Royal Cloud Cat", - 70, - ], - [ - "Angel Cat", - 20, - ], - [ - "Royal Cloud Corgi", - 9, - ], - [ - "Angel Dog", - 1, - "Nice", - ], - [ - "Heavenly Peacock", - 0.1, - "Great", - ], + "Desc": "Logs!", + "DisplayName": "Logs", + "MaxAmount": 999999999, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://106982135379419", + "isBottom": true, + "orbImage": "rbxassetid://80925129915505", + "rainData": { + "LightEmission": 0.2, + }, + "textColor": null, + "tierName": "Logs", + "tinyImage": "rbxassetid://133731380646675", + "value": 1, + }, ], - "worldNumber": 1, + "Tradable": false, + "_index": 31, }, - "configName": "108 | Angel Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.790Z", - "hashShort": "124a0a0c1cb6ab95", + "configName": "Currency | SnowstormSurvival", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2026-06-27T16:06:50.627Z", + "hashShort": "3f0bde026aff665e", }, { - "category": "Update 5", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 109, - "icon": "rbxassetid://15172355963", - "name": "Heaven Egg", - "pets": [ - [ - "Angel Dog", - 70, - ], - [ - "Dove", - 20, - ], - [ - "Heavenly Peacock", - 9, - ], - [ - "Pegasus", - 1, - "Nice", - ], - [ - "Angelus", - 0.1, - "Great", - ], + "BagTiers": [ + { + "image": "rbxassetid://82191237394638", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "Paw Games!", + "DisplayName": "Game Coins", + "IsWorldCurrency": false, + "MaxAmount": 99999999999, + "PermitAutoLootScaling": true, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://82191237394638", + "isBottom": true, + "orbImage": "rbxassetid://74387622182212", + "textColor": null, + "tierName": "Game Coins", + "tinyImage": "rbxassetid://138122925639868", + "value": 1, + }, + ], + "Tradable": false, + "_index": 19, }, - "configName": "109 | Heaven Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.773Z", - "hashShort": "8f58f74812d014e6", + "configName": "Currency | GameCoins", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2026-06-27T16:06:50.629Z", + "hashShort": "65b78173a756ac50", }, { - "category": "Update 5", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 110, - "icon": "rbxassetid://15172355963", - "name": "Heaven Castle Egg", - "pets": [ - [ - "Pegasus", - 70, - ], - [ - "Empyrean Axolotl", - 20, - ], - [ - "Angelus", - 9, - ], - [ - "Empyrean Dragon", - 1, - "Nice", - ], - [ - "Vibrant Whale", - 0.1, - "Great", - ], + "BagTiers": [ + { + "image": "rbxassetid://18325334566", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "BOOM!", + "DisplayName": "Cannon Tycoon Coins", + "IsWorldCurrency": false, + "MaxAmount": 999999999999999, + "PermitAutoLootScaling": true, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://102648063822047", + "isBottom": true, + "orbImage": "rbxassetid://85576749924261", + "textColor": null, + "tierName": "Cannon Tycoon Coins", + "tinyImage": "rbxassetid://112132454266141", + "value": 1, + }, + ], + "Tradable": false, + "_index": 4, }, - "configName": "110 | Heaven Castle Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.791Z", - "hashShort": "625ac5024c76bd88", + "configName": "Currency | CannonTycoonCoins", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2026-06-27T16:06:50.602Z", + "hashShort": "9a4ff7be9fefc07e", }, { - "category": "Update 5", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 111, - "icon": "rbxassetid://15172355963", - "name": "Colorful Cloud Egg", - "pets": [ - [ - "Empyrean Dragon", - 70, - ], - [ - "Pastel Elephant", - 20, - ], - [ - "Vibrant Whale", - 9, - ], - [ - "Pastel Griffin", - 1, - "Nice", - ], - [ - "Pastel Goat", - 0.1, - "Great", - ], + "BagTiers": [ + { + "image": "rbxassetid://15058306423", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "Spread the love!", + "DisplayName": "Valentines Coins", + "IsWorldCurrency": false, + "MaxAmount": 9999999999, + "PermitAutoLootScaling": true, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://136778042221220", + "isBottom": true, + "orbImage": "rbxassetid://123511168949350", + "textColor": null, + "tierName": "Valentines Coins", + "tinyImage": "rbxassetid://127904753900493", + "value": 1, + }, + ], + "Tradable": false, + "_index": 38, }, - "configName": "111 | Colorful Cloud Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.782Z", - "hashShort": "c045a3606adfcbb5", + "configName": "Currency | ValentinesCoins", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2026-06-27T16:06:50.646Z", + "hashShort": "cf8c2fe136c9a5db", }, { - "category": "Update 5", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 112, - "icon": "rbxassetid://15172355963", - "name": "Rainbow Egg", - "pets": [ - [ - "Pastel Griffin", - 70, - ], - [ - "Pastel Goat", - 30, - ], - [ - "Vibrant Cobra", - 0.1, - "Great", - ], - [ - "Vibrant Toucan", - 0.002, - "Insane", - ], - [ - "Sun Angelus", - 0.00004, - "Insane", - ], + "BagTiers": [ + { + "image": "rbxassetid://15058306423", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "These are not the cards you are looking for!", + "DisplayName": "Card Coins", + "IsWorldCurrency": false, + "MaxAmount": 40000000, + "PermitAutoLootScaling": true, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://121046322071840", + "isBottom": true, + "orbImage": "rbxassetid://128479235126989", + "textColor": null, + "tierName": "Card Coins", + "tinyImage": "rbxassetid://126272263667234", + "value": 1, + }, + ], + "Tradable": false, + "_index": 5, }, - "configName": "112 | Rainbow Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.766Z", - "hashShort": "015f2f907c3335d2", + "configName": "Currency | CardCoins", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2026-06-27T16:06:50.630Z", + "hashShort": "68dc329766783e4a", }, { - "category": "Update 2", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 73, - "icon": "rbxassetid://15172355963", - "name": "Colorful Egg", - "pets": [ - [ - "Colorful Fish", - 65, - ], - [ - "Colorful Slime", - 30, - ], - [ - "Unicorn Kitten", - 5, - "Nice", - ], - [ - "Colorful Wisp", - 0.1, - "Great", - ], + "BagTiers": [ + { + "image": "rbxassetid://15058306423", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "Feeling lucky!", + "DisplayName": "Lucky Coins", + "IsWorldCurrency": false, + "MaxAmount": 999999999999, + "PermitAutoLootScaling": true, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://90246759786963", + "isBottom": true, + "orbImage": "rbxassetid://133498641445950", + "textColor": null, + "tierName": "Lucky Coins", + "tinyImage": "rbxassetid://100737449873738", + "value": 1, + }, + ], + "Tradable": false, + "_index": 26, }, - "configName": "73 | Colorful Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.636Z", - "hashShort": "5df9ce5bc7fdf2ad", + "configName": "Currency | LuckyCoins", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2026-06-27T16:06:50.632Z", + "hashShort": "c186aaf89b6624f7", }, { - "category": "Update 2", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 74, - "icon": "rbxassetid://15172355963", - "name": "Colorful Geode Egg", - "pets": [ - [ - "Mining Axolotl", - 60, - ], - [ - "Mining Cat", - 30, - ], - [ - "Colorful Wisp", - 10, - "Nice", - ], - [ - "Colorful Rock", - 0.1, - "Great", - ], + "BagTiers": [ + { + "image": "rbxassetid://15058306423", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "Keep digging!", + "DisplayName": "Mining Coins", + "IsWorldCurrency": false, + "MaxAmount": 4999999999999, + "PermitAutoLootScaling": true, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://97263404339499", + "isBottom": true, + "orbImage": "rbxassetid://135738792295255", + "textColor": null, + "tierName": "Mining Coins", + "tinyImage": "rbxassetid://119648825804887", + "value": 1, + }, + ], + "Tradable": false, + "_index": 27, }, - "configName": "74 | Colorful Geode Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.637Z", - "hashShort": "904321b77369cf77", + "configName": "Currency | MiningCoins", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2026-06-27T16:06:50.630Z", + "hashShort": "e9409853d96d34dc", }, { - "category": "Update 2", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 75, - "icon": "rbxassetid://15172355963", - "name": "Colorful Mosaic Egg", - "pets": [ - [ - "Shiba", - 70, - ], - [ - "Colorful Firefly", - 22, - ], - [ - "Colorful Rock", - 6, - "Nice", - ], - [ - "Lunar Moth", - 2, - "Nice", - ], + "BagTiers": [ + { + "image": "rbxassetid://15058306423", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "Slime, jelly, and gears!", + "DisplayName": "Factory Coins", + "IsWorldCurrency": false, + "MaxAmount": 2000000000000, + "PermitAutoLootScaling": true, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://104178693531817", + "isBottom": true, + "orbImage": "rbxassetid://90235613189635", + "textColor": null, + "tierName": "Factory Coins", + "tinyImage": "rbxassetid://15058306423", + "value": 1, + }, + ], + "Tradable": false, + "_index": 14, }, - "configName": "75 | Colorful Mosaic Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.622Z", - "hashShort": "81c2a361b7806655", + "configName": "Currency | FactoryCoins", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2026-06-27T16:06:50.631Z", + "hashShort": "05c51aa5e22b52c1", }, { - "category": "Update 2", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 76, - "icon": "rbxassetid://15172355963", - "name": "Frosted Geode Egg", - "pets": [ - [ - "Frost Bear", - 70, - ], - [ - "Frost Axolotl", - 29, - ], - [ - "Jolly Penguin", - 1, - "Nice", - ], - [ - "Jolly Cat", - 0.1, - "Great", - ], - [ - "Colorful Dragon", - 0.002, - "Insane", - ], + "BagTiers": [ + { + "image": "rbxassetid://15058306423", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "Bunny!", + "DisplayName": "Easter Coins", + "IsWorldCurrency": false, + "MaxAmount": 5000000000000, + "PermitAutoLootScaling": true, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://107459321948849", + "isBottom": true, + "orbImage": "rbxassetid://77154245402970", + "textColor": null, + "tierName": "Easter Coins", + "tinyImage": "rbxassetid://15058306423", + "value": 1, + }, + ], + "Tradable": false, + "_index": 13, }, - "configName": "76 | Frosted Geode Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.635Z", - "hashShort": "16497a001fba6d0f", + "configName": "Currency | EasterCoins", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2026-06-27T16:06:50.633Z", + "hashShort": "8fca8a3a0b2a69be", }, { - "category": "Update 2", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 72, - "icon": "rbxassetid://15172355963", - "name": "Dandelion Egg", - "pets": [ - [ - "Hamster", - 50, - ], - [ - "Tulip Hedgehog", - 40, - ], - [ - "Calico Cat", - 10, - ], - [ - "Unicorn Kitten", - 0.1, - ], + "BagTiers": [ + { + "image": "rbxassetid://15058306423", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "Fishing Coins!", + "DisplayName": "Fishing Coins", + "IsWorldCurrency": false, + "MaxAmount": 999999999, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://109171329292101", + "isBottom": true, + "orbImage": "rbxassetid://131630192142121", + "rainData": { + "LightEmission": 0.2, + }, + "textColor": null, + "tierName": "Fishing Tokens", + "tinyImage": "rbxassetid://15058306423", + "value": 1, + }, + ], + "Tradable": false, + "_index": 18, }, - "configName": "72 | Dandelion Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.618Z", - "hashShort": "c96ba0d6b8fad1d1", + "configName": "Currency | FishingEvent", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2026-06-27T16:06:50.632Z", + "hashShort": "56e4570437e907eb", }, { - "category": "Update 1", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 71, - "icon": "rbxassetid://15574219998", - "name": "Royal Egg", - "pets": [ - [ - "Prince Donkey", - 97, - ], - [ - "Princess Dragon", - 3, - "Nice", - ], - [ - "Knight Beagle", - 0.05, - "Great", - ], - [ - "Unicorn Kitten", - 0.0005, - "Insane", - ], + "BagTiers": [ + { + "image": "rbxassetid://97143964967533", + "value": 0, + }, + { + "image": "rbxassetid://119549998271171", + "value": 1000, + }, + { + "image": "rbxassetid://99855251269111", + "value": 10000, + }, ], - "worldNumber": 1, + "Desc": "Fantasy!", + "DisplayName": "Fantasy Coins", + "IsWorldCurrency": true, + "MaxAmount": 300000000000000000000, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://119268377814694", + "isBottom": true, + "orbImage": "rbxassetid://117074789458345", + "textColor": null, + "tierName": "Fantasy Coins", + "tinyImage": "", + "value": 1, + }, + { + "Order": 2, + "imageOutline": "rbxassetid://86892276061075", + "orbImage": "rbxassetid://95717261050993", + "textColor": null, + "tierName": "Fantasy Bars", + "tinyImage": "", + "value": 1000000, + }, + ], + "Tradable": false, + "_index": 15, }, - "configName": "71 | Royal Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.617Z", - "hashShort": "817702bc399b5f06", + "configName": "Currency | FantasyCoins", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2026-06-27T16:06:50.635Z", + "hashShort": "d95a4ba06e7d2a8a", }, { - "category": "Update 1", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 70, - "icon": "rbxassetid://15574219209", - "name": "Crowned Egg", - "pets": [ - [ - "Fluffy Cat", - 47, - ], - [ - "King Cow", - 30, - ], - [ - "Queen Piggy", - 20, - ], - [ - "Royal Peacock", - 3, - "Nice", - ], - [ - "Knight Beagle", - 0.005, - "Insane", - ], + "BagTiers": [ + { + "image": "rbxassetid://15058306423", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "Farming Coins!", + "DisplayName": "Farming Coins", + "IsWorldCurrency": false, + "MaxAmount": 999999999999, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://110572622500059", + "isBottom": true, + "orbImage": "rbxassetid://86858731121151", + "rainData": { + "LightEmission": 0.2, + }, + "textColor": null, + "tierName": "Farming Coins", + "tinyImage": "rbxassetid://15058306423", + "value": 1, + }, + ], + "Tradable": false, + "_index": 16, }, - "configName": "70 | Crowned Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.631Z", - "hashShort": "6506d8ca83b5a2aa", + "configName": "Currency | FarmingCoins", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2026-06-27T16:06:50.633Z", + "hashShort": "7b0a21a180603ff7", }, { - "category": "Update 1", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 69, - "icon": "rbxassetid://15574219623", - "name": "Pedal Egg", - "pets": [ - [ - "Pixie Squirrel", - 47, - ], - [ - "Rabbit", - 30, - ], - [ - "Fairy", - 20, - ], - [ - "Starry Owl", - 3, - "Nice", - ], + "BagTiers": [ + { + "image": "rbxassetid://83638880057014", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "AH YEET!", + "DisplayName": "Basketball Coins", + "IsWorldCurrency": false, + "MaxAmount": 5000000000, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://83638880057014", + "isBottom": true, + "orbImage": "rbxassetid://77281756784797", + "textColor": null, + "tierName": "Basketball Coins", + "tinyImage": "rbxassetid://83638880057014", + "value": 1, + }, + ], + "Tradable": false, + "_index": 3, }, - "configName": "69 | Pedal Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.622Z", - "hashShort": "c0d3d0538add8530", + "configName": "Currency | BasketballCoins", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2025-07-05T23:24:44.619Z", + "hashShort": "5c9ee6714ddb24f4", }, { - "category": "Update 1", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 68, - "icon": "rbxassetid://15574219830", - "name": "Pixie Egg", - "pets": [ - [ - "Fairy Bee", - 49, - ], - [ - "Fairy Ladybug", - 30, - ], - [ - "Pixie Fox", - 20, - ], - [ - "Pixie Squirrel", - 1, - "Nice", - ], + "BagTiers": [ + { + "image": "rbxassetid://100268530319099", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "AH YEET!", + "DisplayName": "Yeet Orbs", + "IsWorldCurrency": false, + "MaxAmount": 1000000, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://100268530319099", + "isBottom": true, + "orbImage": "rbxassetid://100268530319099", + "textColor": null, + "tierName": "Yeet Orbs", + "tinyImage": "rbxassetid://100268530319099", + "value": 1, + }, + ], + "Tradable": false, + "_index": 41, }, - "configName": "68 | Pixie Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.635Z", - "hashShort": "eae16d6a1d205b03", + "configName": "Currency | YeetOrbs", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2026-06-27T16:06:50.634Z", + "hashShort": "7b6f70ad73c6eca8", }, { - "category": "Update 1", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 67, - "icon": "rbxassetid://15574219117", - "name": "Garden Egg", - "pets": [ - [ - "Blossom Bunny", - 47, - ], - [ - "Rose Butterfly", - 30, - ], - [ - "Garden Cat", - 20, - ], - [ - "Sunflower Lion", - 3, - "Nice", - ], + "BagTiers": [ + { + "image": "rbxassetid://15058306423", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "Tower Defense", + "DisplayName": "Tower Defense", + "IsWorldCurrency": false, + "MaxAmount": 999999999, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://109171329292101", + "isBottom": true, + "orbImage": "rbxassetid://131630192142121", + "rainData": { + "LightEmission": 0.2, + }, + "textColor": null, + "tierName": "Tower Defense Perm", + "tinyImage": "rbxassetid://15058306423", + "value": 1, + }, + ], + "Tradable": false, + "_index": 31, }, - "configName": "67 | Garden Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.621Z", - "hashShort": "c4d37fb1a85c5eec", + "configName": "Currency | TowerDefense", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2025-07-05T23:24:44.619Z", + "hashShort": "02a98b091dfcc5c0", }, { - "category": "Update 1", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 66, - "icon": "rbxassetid://15574219327", - "name": "Bonsai Egg", - "pets": [ - [ - "White Tiger", - 72, - ], - [ - "Woodpecker", - 25, - ], - [ - "Koi Fish", - 3, - "Nice", - ], - [ - "Ancient Dragon", - 0.1, - "Great", - ], + "Desc": "Tower Defense!", + "DisplayName": "Rubies", + "IsWorldCurrency": false, + "MaxAmount": 9999999, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://104856612652045", + "isBottom": true, + "orbImage": "rbxassetid://104856612652045", + "rainData": { + "LightEmission": 0.2, + }, + "textColor": null, + "tierName": "Rubies", + "tinyImage": "rbxassetid://15058306423", + "value": 1, + }, ], - "worldNumber": 1, + "Tradable": false, + "_index": 37, }, - "configName": "66 | Bonsai Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.622Z", - "hashShort": "4c52738bbf928479", + "configName": "Currency | TowerDefenseRubies", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2026-06-27T16:06:50.636Z", + "hashShort": "2a65160c6d66850c", }, { - "category": "Update 1", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 65, - "icon": "rbxassetid://15574219327", - "name": "Lantern Egg", - "pets": [ - [ - "Kitsune Fox", - 74, - ], - [ - "Panda", - 20, - ], - [ - "Ronin Panda", - 5, - ], - [ - "Red Panda", - 1, - "Nice", - ], - [ - "Ancient Dragon", - 0.01, - "Great", - ], + "BagTiers": [ + { + "image": "rbxassetid://83638880057014", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "I'M STRONG!", + "DisplayName": "Gym Coins", + "IsWorldCurrency": false, + "MaxAmount": 5000000000, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://71839300629468", + "isBottom": true, + "orbImage": "rbxassetid://93788829668295", + "textColor": null, + "tierName": "Gym Coins", + "tinyImage": "rbxassetid://15058306423", + "value": 1, + }, + ], + "Tradable": false, + "_index": 24, }, - "configName": "65 | Lantern Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.639Z", - "hashShort": "6cf2aa94718e9080", + "configName": "Currency | GymCoins", + "dateCreated": "2025-07-05T23:24:44.619Z", + "dateModified": "2026-06-27T16:06:50.636Z", + "hashShort": "b5eafd163facf44a", }, { - "category": "Update 1", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 64, - "icon": "rbxassetid://15574219623", - "name": "Ninja Egg", - "pets": [ - [ - "Ninja Raccoon", - 63, - ], - [ - "Samurai Bull", - 30, - ], - [ - "Samurai Dragon", - 6, - ], - [ - "Kitsune Fox", - 1, - "Nice", - ], - [ - "Cyborg Dominus", - 0.1, - "Great", - ], + "Desc": "Coins!", + "DisplayName": "Block Party Coins", + "IsWorldCurrency": false, + "MaxAmount": 100000000, + "PermitAutoLootScaling": true, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://134635813203547", + "isBottom": true, + "orbImage": "rbxassetid://83488852960549", + "textColor": null, + "tierName": "Block Party Coins", + "tinyImage": "rbxassetid://15058306423", + "value": 1, + }, ], - "worldNumber": 1, + "Tradable": false, + "_index": 4, }, - "configName": "64 | Ninja Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.637Z", - "hashShort": "58fe7839ef7781ea", + "configName": "Currency | BlockPartyCoins", + "dateCreated": "2025-07-12T16:08:44.433Z", + "dateModified": "2025-07-12T16:08:44.433Z", + "hashShort": "96ccaf765336c851", }, { - "category": "Release", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 63, - "icon": "rbxassetid://15574219928", - "name": "Sakura Egg", - "pets": [ - [ - "Ninja Turtle", - 90, - ], - [ - "Ninja Maskot", - 10, - ], - [ - "Ninja Cat", - 0.01, - "Great", - ], - [ - "Cyborg Dominus", - 0.0001, - "Insane", - ], + "BagTiers": [ + { + "image": "rbxassetid://75134390965970", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "Halloween Candy!", + "DisplayName": "Halloween Candy", + "IsWorldCurrency": false, + "MaxAmount": 999999999999, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://75134390965970", + "isBottom": true, + "orbImage": "rbxassetid://103840258916135", + "textColor": null, + "tierName": "Halloween Candy", + "tinyImage": "rbxassetid://109049002662412", + "value": 1, + }, + ], + "Tradable": false, + "_index": 27, }, - "configName": "63 | Sakura Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.485Z", - "hashShort": "2a7b81503cbfd181", + "configName": "Currency | HalloweenCoins", + "dateCreated": "2025-10-19T02:11:37.609Z", + "dateModified": "2026-06-13T23:13:45.919Z", + "hashShort": "f12cb37b13f824c0", }, { - "category": "Release", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 62, - "icon": "rbxassetid://15574219511", - "name": "Metal Egg", - "pets": [ - [ - "Cyborg Bunny", - 80, - ], - [ - "Cyborg Panda", - 20, - ], - [ - "Cyborg Dragon", - 0.5, - "Great", - ], - [ - "Cyborg Dominus", - 0.00001, - "Insane", - ], + "BagTiers": [ + { + "image": "rbxassetid://15058306423", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "Tis the season of joy!", + "DisplayName": "Holiday Coins", + "IsWorldCurrency": false, + "MaxAmount": 9999999999999, + "PermitAutoLootScaling": true, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://92340184269519", + "isBottom": true, + "orbImage": "rbxassetid://85787805590293", + "textColor": null, + "tierName": "Gingerbread Coins", + "tinyImage": "rbxassetid://101534124159156", + "value": 1, + }, + ], + "Tradable": false, + "_index": 21, }, - "configName": "62 | Metal Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.469Z", - "hashShort": "b4e1726e98bf6254", + "configName": "Currency | GingerbreadCoins2", + "dateCreated": "2025-12-20T17:55:28.539Z", + "dateModified": "2026-06-27T16:06:50.637Z", + "hashShort": "2e72af8aae781bdb", }, { - "category": "Release", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 61, - "icon": "rbxassetid://15172355329", - "name": "Hell Egg", - "pets": [ - [ - "Flamortuus", - 100, - ], - [ - "Demon", - 1, - ], - [ - "Hellish Axolotl", - 0.125, - "Great", - ], + "BagTiers": [ + { + "image": "rbxassetid://15058306423", + "value": 0, + }, ], - "worldNumber": 1, + "Desc": "Springtime!", + "DisplayName": "Spring Coins", + "IsWorldCurrency": false, + "MaxAmount": 5000000000000, + "PermitAutoLootScaling": true, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://102630703130497", + "isBottom": true, + "orbImage": "rbxassetid://108242647676671", + "textColor": null, + "tierName": "Spring Coins", + "tinyImage": "rbxassetid://15058306423", + "value": 1, + }, + ], + "Tradable": false, + "_index": 34, }, - "configName": "61 | Hell Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.484Z", - "hashShort": "10a8ebe7549477e6", + "configName": "Currency | SpringCoins", + "dateCreated": "2026-04-18T15:56:30.575Z", + "dateModified": "2026-06-27T16:06:50.638Z", + "hashShort": "0b5f89722685c27e", }, { - "category": "Release", - "collection": "Eggs", + "category": "Currency", + "collection": "Currency", "configData": { - "currency": "Coins", - "eggNumber": 60, - "icon": "rbxassetid://15172353543", - "name": "Tentacle Egg", - "pets": [ - [ - "Hell Bat", - 40, - ], - [ - "Hell Fox", - 10, - ], - [ - "Demon", - 0.01, - "Great", - ], + "BagTiers": [ + { + "image": "rbxassetid://122090566579453", + "value": 0, + }, ], - "worldNumber": 1, - }, - "configName": "60 | Tentacle Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.477Z", - "hashShort": "3f3a16b540191bf0", + "Desc": "RNGGGGG!", + "DisplayName": "RNG Coins", + "IsWorldCurrency": false, + "MaxAmount": 100000000000000, + "PermitAutoLootScaling": true, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://122090566579453", + "isBottom": true, + "orbImage": "rbxassetid://97536376314808", + "textColor": null, + "tierName": "RNG Coins", + "tinyImage": "rbxassetid://18856064586", + "value": 1, + }, + ], + "Tradable": false, + "_index": 30, + }, + "configName": "Currency | RngCoins2", + "dateCreated": "2026-05-09T17:52:38.438Z", + "dateModified": "2026-06-27T16:06:50.640Z", + "hashShort": "271f6e29c5cd9cf1", }, { - "category": "Release", + "category": "Currency", + "collection": "Currency", + "configData": { + "BagTiers": [ + { + "image": "rbxassetid://109219464637128", + "value": 0, + }, + ], + "Desc": "Zzz", + "DisplayName": "Daydream Coins", + "IsWorldCurrency": false, + "MaxAmount": 20000000000, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://109219464637128", + "isBottom": true, + "orbImage": "rbxassetid://112636519117410", + "textColor": null, + "tierName": "Daydream Coins", + "tinyImage": "rbxassetid://109219464637128", + "value": 1, + }, + ], + "Tradable": false, + "_index": 9, + }, + "configName": "Currency | DaydreamCoins", + "dateCreated": "2026-06-13T23:13:45.919Z", + "dateModified": "2026-06-27T16:06:50.625Z", + "hashShort": "a3b976452266eeaf", + }, + { + "category": "Currency", + "collection": "Currency", + "configData": { + "BagTiers": [ + { + "image": "rbxassetid://80803201706121", + "value": 0, + }, + ], + "Desc": "AH YEET!", + "DisplayName": "Soccer Orbs", + "IsWorldCurrency": false, + "MaxAmount": 1000000, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://80803201706121", + "isBottom": true, + "orbImage": "rbxassetid://80803201706121", + "textColor": null, + "tierName": "Soccer Orbs", + "tinyImage": "rbxassetid://80803201706121", + "value": 1, + }, + ], + "Tradable": false, + "_index": 33, + }, + "configName": "Currency | SoccerOrbs", + "dateCreated": "2026-06-27T16:06:50.645Z", + "dateModified": "2026-06-27T16:06:50.645Z", + "hashShort": "c7e436d04ba4e217", + }, + { + "category": "Currency", + "collection": "Currency", + "configData": { + "BagTiers": [ + { + "image": "rbxassetid://88383770403167", + "value": 0, + }, + ], + "Desc": "AH YEET!", + "DisplayName": "Soccer Coins", + "IsWorldCurrency": false, + "MaxAmount": 5000000000, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Tiers": [ + { + "Order": 1, + "imageOutline": "rbxassetid://88383770403167", + "isBottom": true, + "orbImage": "rbxassetid://114806588132030", + "textColor": null, + "tierName": "Soccer Coins", + "tinyImage": "rbxassetid://0", + "value": 1, + }, + ], + "Tradable": false, + "_index": 32, + }, + "configName": "Currency | SoccerCoins", + "dateCreated": "2026-06-27T16:06:50.639Z", + "dateModified": "2026-06-27T16:06:50.639Z", + "hashShort": "6614895469ab13d0", + }, + ], + "status": "ok", +} +`; + +exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` +{ + "data": [ + { + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "Coins", - "eggNumber": 59, - "icon": "rbxassetid://15172356703", - "name": "Bone Egg", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://14146204107", + "name": "Exclusive Cosmic Egg", "pets": [ [ - "Fire Cat", - 100, + "Cosmic Axolotl", + 50, ], [ - "Fire Dog", - 50, + "Cosmic Dragon", + 35, ], [ - "Fire Horse", - 5.5, - "Nice", + "Cosmic Agony", + 13, ], [ - "Wyvern of Hades", + "Huge Cosmic Axolotl", + 1.25, + ], + [ + "Huge Cosmic Agony", + 0.7, + ], + [ + "Titanic Cosmic Pegasus", 0.05, - "Great", ], ], - "worldNumber": 1, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "59 | Bone Egg", + "configName": "Exclusive Egg 16", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.482Z", - "hashShort": "d7d657891672d418", + "dateModified": "2025-07-05T23:29:23.883Z", + "hashShort": "a5d1fa58a2b4c733", }, { - "category": "Release", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "Coins", - "eggNumber": 58, - "icon": "rbxassetid://15172353224", - "name": "Volcano Egg", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://15187934902", + "name": "Exclusive Original Egg", "pets": [ [ - "Hell Chick", - 80, + "Super Cat", + 50, ], [ - "Hell Spider", - 15, + "Floppa", + 35, ], [ - "Mortuus", - 5, - "Nice", + "Sleipnir", + 13, ], [ - "Hound of Hades", - 0.1, - "Great", + "Huge Floppa", + 1.5, ], [ - "Wyvern of Hades", - 0.005, - "Insane", + "Huge Sleipnir", + 0.5, ], ], - "worldNumber": 1, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "58 | Volcano Egg", + "configName": "Exclusive Egg 1", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.471Z", - "hashShort": "6747a225de9cb88f", + "dateModified": "2025-07-05T23:29:23.894Z", + "hashShort": "87507305e50ffd3a", }, { - "category": "Release", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "Coins", - "eggNumber": 57, - "icon": "rbxassetid://15172354786", - "name": "Obsidian Egg", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://15187935566", + "name": "Exclusive Capybara Egg", "pets": [ [ - "Three Headed Dragon", - 100, + "Capybara", + 50, ], [ - "Phoenix", - 3, - "Nice", + "Super Capybara", + 35, ], [ - "Hell Spider", - 1, - "Nice", + "Cyborg Capybara", + 13, ], [ - "Hound of Hades", - 0.05, - "Great", + "Huge Capybara", + 1.5, + ], + [ + "Huge Cyborg Capybara", + 0.5, ], ], - "worldNumber": 1, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "57 | Obsidian Egg", + "configName": "Exclusive Egg 2", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.486Z", - "hashShort": "5e49b8169b0a6ba2", + "dateModified": "2025-07-05T23:29:23.871Z", + "hashShort": "544d247239e3beed", }, { - "category": "Release", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "Coins", - "eggNumber": 56, - "icon": "rbxassetid://15172354975", - "name": "Magma Egg", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://15187935439", + "name": "Exclusive Elemental Egg", "pets": [ [ - "Sabretooth Tiger", - 100, + "Prickly Panda", + 35, ], [ - "Hell Rock", - 50, + "Lightning Bat", + 30, ], [ - "Three Headed Dragon", - 5.5, - "Nice", + "Subzero Cat", + 20, ], [ - "Phoenix", - 5.5, - "Nice", + "Inferno Cat", + 13, + ], + [ + "Huge Prickly Panda", + 1.5, + ], + [ + "Huge Inferno Cat", + 0.5, ], ], - "worldNumber": 1, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "56 | Magma Egg", + "configName": "Exclusive Egg 3", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.474Z", - "hashShort": "c83ceed300d7bcb8", + "dateModified": "2025-07-05T23:29:23.895Z", + "hashShort": "6aad7ec3723fb863", }, { - "category": "Release", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "Coins", - "eggNumber": 55, - "icon": "rbxassetid://15172353452", - "name": "Thawed Egg", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://15187935249", + "name": "Exclusive Neon Twilight Egg", "pets": [ [ - "Lava Slime", - 100, + "Neon Twilight Wolf", + 35, ], [ - "Ice Slime", - 50, + "Neon Twilight Cat", + 30, ], [ - "Sabretooth Tiger", - 5.5, - "Nice", + "Neon Twilight Tiger", + 24, ], [ - "Angry Yeti", - 5.5, - "Nice", + "Neon Twilight Dragon", + 10, ], [ - "Icemortuus", - 0.125, - "Great", + "Huge Neon Twilight Wolf", + 0.75, + ], + [ + "Huge Neon Twilight Dragon", + 0.25, ], ], - "worldNumber": 1, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "55 | Thawed Egg", + "configName": "Exclusive Egg 4", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.485Z", - "hashShort": "0758f8e6143e4d21", + "dateModified": "2025-07-05T23:29:23.876Z", + "hashShort": "8f8a80c8a2841cac", }, { - "category": "Release", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "Coins", - "eggNumber": 54, - "icon": "rbxassetid://15172355123", - "name": "Ice Egg", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://11725479537", + "name": "Exclusive Anime Egg", "pets": [ [ - "Snowman", - 65, + "Anime Unicorn", + 35, ], [ - "Husky", + "Anime Corgi", 30, ], [ - "Cheerful Yeti", - 5.5, - "Nice", + "Anime Monkey", + 20, ], [ - "Polar Bear", - 0.125, - "Great", + "Anime Agony", + 13, + ], + [ + "Huge Anime Unicorn", + 1.5, + ], + [ + "Huge Anime Agony", + 0.5, ], ], - "worldNumber": 1, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "54 | Ice Egg", + "configName": "Exclusive Egg 5", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.480Z", - "hashShort": "badc50bddbdea4aa", + "dateModified": "2025-07-05T23:29:23.880Z", + "hashShort": "1fc4d4f636104c77", }, { - "category": "Release", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "Coins", - "eggNumber": 53, - "icon": "rbxassetid://15172353116", - "name": "Yeti Egg", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://15187935808", + "name": "Exclusive Jolly Egg", "pets": [ [ - "Walrus", - 90, + "Grinch Cat", + 65, ], [ - "Frost Dragon", - 10, + "Present Chest Mimic", + 33, ], [ - "Snowman", - 1, - "Nice", + "Huge Grinch Cat", + 1.25, ], [ - "Cheerful Yeti", - 0.125, - "Great", + "Huge Present Chest Mimic", + 0.7, + ], + [ + "Titanic Jolly Cat", + 0.05, ], ], - "worldNumber": 1, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "53 | Yeti Egg", + "configName": "Exclusive Egg 6", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.472Z", - "hashShort": "cb976ef5b44855df", + "dateModified": "2025-07-05T23:29:23.875Z", + "hashShort": "04d6bd95679e8809", }, { - "category": "Release", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "Coins", - "eggNumber": 52, - "icon": "rbxassetid://15172353948", - "name": "Snowman Egg", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://15187935684", + "name": "Exclusive Balloon Egg", "pets": [ [ - "Penguin", - 90, + "Balloon Dragon", + 50, ], [ - "Arctic Fox", - 5, + "Balloon Corgi", + 35, ], [ - "Bearserker", - 3, - "Nice", + "Balloon Axolotl", + 13, ], [ - "Frost Dragon", - 1, - "Nice", + "Huge Balloon Dragon", + 1.25, ], [ - "Snowman", - 0.125, - "Great", + "Huge Balloon Axolotl", + 0.7, + ], + [ + "Titanic Balloon Monkey", + 0.05, ], ], - "worldNumber": 1, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "52 | Snowman Egg", + "configName": "Exclusive Egg 7", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.471Z", - "hashShort": "5104894b5a975c62", + "dateModified": "2025-07-05T23:29:23.891Z", + "hashShort": "a17c01a039a7139c", }, { - "category": "Release", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "Coins", - "eggNumber": 51, - "icon": "rbxassetid://15172355062", - "name": "Icicle Egg", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://12219464453", + "name": "Exclusive Neon Egg", "pets": [ [ - "Snow Squirrel", - 100, + "Neon Cat", + 50, ], [ - "Puffin", - 50, + "Neon Dog", + 35, ], [ - "Narwhal", - 5.5, - "Nice", + "Neon Griffin", + 13, ], [ - "Arctic Fox", - 0.125, - "Great", + "Huge Neon Cat", + 1.25, + ], + [ + "Huge Neon Griffin", + 0.7, + ], + [ + "Titanic Neon Agony", + 0.05, ], ], - "worldNumber": 1, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "51 | Icicle Egg", + "configName": "Exclusive Egg 8", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.478Z", - "hashShort": "b62c0842f186b97e", + "dateModified": "2025-07-05T23:29:23.890Z", + "hashShort": "fb29f350c237672c", }, { - "category": "Release", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "Coins", - "eggNumber": 50, - "icon": "rbxassetid://15172354002", - "name": "Snow Egg", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://12444268861", + "name": "Exclusive Meme Egg", "pets": [ [ - "Snow Ram", - 100, + "Knife Cat", + 50, ], [ - "Snow Dog", - 30, + "Clout Cat", + 35, ], [ - "Snow Cat", - 15, + "Pop Cat", + 13, ], [ - "Snow Leopard", - 2.25, - "Nice", + "Huge Knife Cat", + 1.25, ], [ - "Narwhal", - 0.09, - "Great", + "Huge Pop Cat", + 0.7, + ], + [ + "Titanic Hubert", + 0.05, ], ], - "worldNumber": 1, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "50 | Snow Egg", + "configName": "Exclusive Egg 9", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.473Z", - "hashShort": "766225605b12219a", + "dateModified": "2025-07-05T23:29:23.885Z", + "hashShort": "a8abc77b981e1009", }, { - "category": "Release", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "Coins", - "eggNumber": 49, - "icon": "rbxassetid://15172354938", - "name": "Melted Egg", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://12673924707", + "name": "Exclusive Dominus Egg", "pets": [ [ - "Deer", - 100, - ], - [ - "Moose", - 15, + "Storm Dominus", + 50, ], [ - "Snow Ram", - 2.35, - "Nice", + "Empyrean Dominus", + 35, ], [ - "Fawn", - 0.133, - "Great", + "Inferno Dominus", + 13, ], - ], - "worldNumber": 1, - }, - "configName": "49 | Melted Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.466Z", - "hashShort": "b427c264d972770b", - }, - { - "category": "Release", - "collection": "Eggs", - "configData": { - "currency": "Coins", - "eggNumber": 48, - "icon": "rbxassetid://15172355205", - "name": "Hyena Egg", - "pets": [ [ - "Bull", - 100, + "Huge Storm Dominus", + 1.25, ], [ - "Goat", - 14, + "Huge Inferno Dominus", + 0.7, ], [ - "Bison", - 1.5, - "Nice", + "Titanic Dominus Astra", + 0.05, ], ], - "worldNumber": 1, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "48 | Hyena Egg", + "configName": "Exclusive Egg 10", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.468Z", - "hashShort": "b806f1528b82b9b3", + "dateModified": "2025-07-05T23:29:23.877Z", + "hashShort": "e53026b83de5b608", }, { - "category": "Release", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "Coins", - "eggNumber": 47, - "icon": "rbxassetid://15172356584", - "name": "Canyon Egg", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://12887279401", + "name": "Exclusive Hologram Egg", "pets": [ [ - "Puma", - 100, + "Hologram Shark", + 50, ], [ - "Horse", - 15, + "Hologram Tiger", + 35, ], [ - "Bull", - 2.25, - "Nice", + "Hologram Axolotl", + 13, ], [ - "Cowboy Dog", - 1.8, - "Nice", + "Huge Hologram Shark", + 1.25, + ], + [ + "Huge Hologram Axolotl", + 0.7, + ], + [ + "Titanic Hologram Cat", + 0.05, ], ], - "worldNumber": 1, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "47 | Canyon Egg", + "configName": "Exclusive Egg 11", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.472Z", - "hashShort": "8d5927d155178c2d", + "dateModified": "2025-07-05T23:29:23.887Z", + "hashShort": "1734846a5a2ca40b", }, { - "category": "Release", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "Coins", - "eggNumber": 46, - "icon": "rbxassetid://15172355996", - "name": "Cowboy Egg", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://13356892618", + "name": "Exclusive Jelly Egg", "pets": [ [ - "Scorpion", - 100, + "Jelly Corgi", + 50, ], [ - "Desert Ram", - 23, + "Jelly Panda", + 35, ], [ - "Puma", - 2, - "Nice", + "Jelly Piggy", + 13, ], [ - "Honey Badger", - 1.75, - "Nice", + "Huge Jelly Corgi", + 1.25, + ], + [ + "Huge Jelly Piggy", + 0.7, + ], + [ + "Titanic Jelly Cat", + 0.05, ], ], - "worldNumber": 1, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "46 | Cowboy Egg", + "configName": "Exclusive Egg 13", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.482Z", - "hashShort": "ecc236972d95e0bb", + "dateModified": "2025-07-05T23:29:23.884Z", + "hashShort": "fd74f57beee61353", }, { - "category": "Release", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "Coins", - "eggNumber": 45, - "icon": "rbxassetid://15172354104", - "name": "Sandstone Egg", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://13133002135", + "name": "Exclusive Crystal Egg", "pets": [ [ - "Desert Cat", - 100, + "Redstone Cat", + 50, ], [ - "Camel", - 17, + "Emerald Monkey", + 35, ], [ - "Scorpion", - 1.9, - "Nice", + "Amethyst Dragon", + 13, ], [ - "Sphinx", - 0.0875, - "Great", + "Huge Redstone Cat", + 1.25, + ], + [ + "Huge Amethyst Dragon", + 0.7, + ], + [ + "Titanic Mystic Corgi", + 0.05, ], ], - "worldNumber": 1, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "45 | Sandstone Egg", + "configName": "Exclusive Egg 12", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.468Z", - "hashShort": "04c5ae12d1f0d583", + "dateModified": "2025-07-05T23:29:23.894Z", + "hashShort": "a410a94b7e9c0df4", }, { - "category": "Release", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "Coins", - "eggNumber": 44, - "icon": "rbxassetid://15172355727", - "name": "Egyptian Egg", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://13565042806", + "name": "Exclusive Nightmare Egg", "pets": [ [ - "Dino", - 100, + "Nightmare Spirit", + 50, ], [ - "Hyena", - 18, + "Nightmare Bear", + 35, ], [ - "Spitting Dino", - 2.25, - "Nice", + "Nightmare Kraken", + 13, ], [ - "Fossil Dragon", - 0.15, - "Great", + "Huge Nightmare Spirit", + 1.25, ], [ - "Dino Cat", - 0.001, - "Insane", + "Huge Nightmare Kraken", + 0.7, + ], + [ + "Titanic Nightmare Cat", + 0.05, ], ], - "worldNumber": 1, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "44 | Egyptian Egg", + "configName": "Exclusive Egg 14", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.473Z", - "hashShort": "2b13a1d8e9a4e9c4", + "dateModified": "2025-07-05T23:29:23.881Z", + "hashShort": "71dc3a4d70361105", }, { - "category": "Release", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "Coins", - "eggNumber": 43, - "icon": "rbxassetid://15172355671", - "name": "Fossil Egg", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://13845602539", + "name": "Exclusive Atlantean Egg", "pets": [ [ - "Rhino", - 100, + "Atlantean Orca", + 50, ], [ - "Armadillo", - 17, + "Atlantean Stingray", + 35, ], [ - "Kangaroo", - 1.8, - "Nice", + "Atlantean Dolphin", + 13, ], [ - "Hyena", - 0.9, - "Great", - ], + "Huge Atlantean Orca", + 1.25, + ], + [ + "Huge Atlantean Dolphin", + 0.7, + ], + [ + "Titanic Atlantean Jellyfish", + 0.05, + ], ], - "worldNumber": 1, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "43 | Fossil Egg", + "configName": "Exclusive Egg 15", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.469Z", - "hashShort": "908c24de14328d3e", + "dateModified": "2025-07-05T23:29:23.892Z", + "hashShort": "20ac8ff3758df7f9", }, { - "category": "Release", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "Coins", - "eggNumber": 42, - "icon": "rbxassetid://15172356612", - "name": "Cactus Egg", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": true, + "goldChance": 0, + "icon": "rbxassetid://15187975109", + "name": "Exclusive Chroma Balloon Egg", "pets": [ [ - "Gorilla", - 100, + "Chroma Balloon Dragon", + 50, ], [ - "Quokka", - 18, + "Chroma Balloon Corgi", + 35, ], [ - "Rhino", - 1.5, - "Nice", + "Chroma Balloon Axolotl", + 13, + ], + [ + "Huge Chroma Balloon Dragon", + 1.25, + ], + [ + "Huge Chroma Balloon Axolotl", + 0.7, + ], + [ + "Titanic Chroma Balloon Monkey", + 0.05, ], ], - "worldNumber": 1, + "rainbowChance": 0, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 0, }, - "configName": "42 | Cactus Egg", + "configName": "Exclusive Chroma Egg 1", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.468Z", - "hashShort": "661765af0d168851", + "dateModified": "2025-07-05T23:29:23.882Z", + "hashShort": "5c88a7defd626d2c", }, { - "category": "Release", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "Coins", - "eggNumber": 41, - "icon": "rbxassetid://15172356243", - "name": "Cheetah Egg", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://15163625617", + "name": "Exclusive Dragon Egg", "pets": [ [ - "Gazelle", - 100, + "Unicorn Dragon", + 50, ], [ - "Quokka", - 15, + "Rift Dragon", + 35, ], [ - "Cheetah", - 0.8, - "Nice", + "Celestial Dragon", + 13, ], [ - "Rhino", - 0.2, - "Great", + "Huge Unicorn Dragon", + 1.25, + ], + [ + "Huge Celestial Dragon", + 0.7, + ], + [ + "Titanic Fire Dragon", + 0.05, ], ], - "worldNumber": 1, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "41 | Cheetah Egg", + "configName": "Exclusive Egg 17", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.476Z", - "hashShort": "64f1731ecee328ff", + "dateModified": "2025-07-05T23:29:23.886Z", + "hashShort": "19d5200905fee6ad", }, { - "category": "Release", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "Coins", - "eggNumber": 40, - "icon": "rbxassetid://15172353041", - "name": "Zebra Egg", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": true, + "goldChance": 0, + "icon": "rbxassetid://15187975109", + "name": "Exclusive Egg", + "pets": [], + "rainbowChance": 0, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 0, + }, + "configName": "Merch Egg", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.886Z", + "hashShort": "01bcfd057f494c44", + }, + { + "category": "Exclusive Eggs", + "collection": "Eggs", + "configData": { + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://15628887305", + "name": "Exclusive Fruit Egg", "pets": [ [ - "Giraffe", - 100, + "Blueberry Cow", + 50, ], [ - "Zebra", - 20, + "Orange Axolotl", + 35, ], [ - "African Wild Dog", - 8.5, - "Nice", + "Dragonfruit Dragon", + 13, ], [ - "Cheetah", - 0.15, - "Great", + "Huge Strawberry Corgi", + 1.25, + ], + [ + "Huge Hippomelon", + 0.7, + ], + [ + "Titanic Banana Cat", + 0.05, ], ], - "worldNumber": 1, + "productIds": { + "10 Exclusive Eggs": 1706249085, + "100 Exclusive Eggs": 1706249426, + "3 Exclusive Eggs": 1706248768, + "Exclusive Egg": 1706248399, + }, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "40 | Zebra Egg", + "configName": "Exclusive Egg 18", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.481Z", - "hashShort": "f56a145a13f7001e", + "dateModified": "2025-07-05T23:29:23.882Z", + "hashShort": "90d44159c4c32a7d", }, { - "category": "Release", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "Coins", - "eggNumber": 39, - "icon": "rbxassetid://15172354051", - "name": "Ship Egg", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://15698454434", + "name": "Exclusive Xmas Egg", "pets": [ [ - "Pirate Cat", - 100, + "Holiday Pegasus", + 50, ], [ - "Pirate Panda", - 15, + "Holiday Balloon Cat", + 35, ], [ - "Pirate Parrot", - 2.5, - "Nice", + "Peppermint Angelus", + 13, ], [ - "African Wild Dog", - 1.35, - "Nice", + "Huge Holiday Pegasus", + 1.25, + ], + [ + "Huge Peppermint Angelus", + 0.7, + ], + [ + "Titanic Silver Dragon", + 0.05, ], ], - "worldNumber": 1, + "productIds": { + "10 Exclusive Eggs": 1710522496, + "100 Exclusive Eggs": 1710523139, + "3 Exclusive Eggs": 1710522398, + "Exclusive Egg": 1710522252, + }, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "39 | Ship Egg", + "configName": "Exclusive Egg 19", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.479Z", - "hashShort": "5c7bf82c1045a9a6", + "dateModified": "2025-07-05T23:29:23.878Z", + "hashShort": "c8d894fff172bf0a", }, { - "category": "Release", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "Coins", - "eggNumber": 38, - "icon": "rbxassetid://15172354489", - "name": "Pirate Egg", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://16011773627", + "name": "Exclusive Emoji Egg", "pets": [ [ - "Sailor Shark", - 100, + "Emoji Cat", + 50, ], [ - "Pirate Cat", - 4.25, + "Emoji Dog", + 35, ], [ - "Sailor Dolphin", - 1.9, - "Nice", + "Emoji Monkey", + 13, ], [ - "Hydra Axolotl", - 0.11, - "Great", + "Huge Emoji Cat", + 1.25, + ], + [ + "Huge Emoji Monkey", + 0.7, + ], + [ + "Titanic Emoji Corgi", + 0.05, ], ], - "worldNumber": 1, + "productIds": { + "10 Exclusive Eggs": 1734839054, + "100 Exclusive Eggs": 1734839242, + "3 Exclusive Eggs": 1734838599, + "Exclusive Egg": 1734838370, + }, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "38 | Pirate Egg", + "configName": "Exclusive Egg 20", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.478Z", - "hashShort": "41bac87833b769c8", + "dateModified": "2025-07-05T23:29:23.881Z", + "hashShort": "5fc1f585767f4403", }, { - "category": "Release", + "category": "Update 3", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 37, - "icon": "rbxassetid://15172353644", - "name": "Sunny Egg", + "eggNumber": 80, + "goldenThumbnail": "rbxassetid://130830693595270", + "icon": "rbxassetid://123059876378356", + "name": "Teddy Egg", "pets": [ [ - "Turtle in a Bucket", - 100, + "Pajamas Dog", + 70, ], [ - "Fish in a Bucket", - 23, + "Train Conductor Cat", + 29, ], [ - "Sailor Shark", - 2.5, + "Train Conductor Dog", + 1, "Nice", ], [ - "Hydra Axolotl", - 0.01, + "Teddy Bear", + 0.1, + "Great", + ], + [ + "Snowflake Dominus", + 0.002, "Insane", ], ], "worldNumber": 1, }, - "configName": "37 | Sunny Egg", + "configName": "80 | Teddy Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.484Z", - "hashShort": "234a4d400809a7f2", + "dateModified": "2026-04-18T15:56:35.733Z", + "hashShort": "cae959106bcefc78", }, { - "category": "Release", + "category": "Update 3", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 36, - "icon": "rbxassetid://15172354247", - "name": "Sand Bucket Egg", + "eggNumber": 79, + "goldenThumbnail": "rbxassetid://124466660982753", + "icon": "rbxassetid://104773481297344", + "name": "Ice Castle Egg Egg", "pets": [ [ - "Sandcastle Cat", - 100, + "Ice Penguin", + 50, ], [ - "Sandcastle Dog", - 25, + "Silver Moose", + 40, ], [ - "Fish in a Bucket", - 2.5, + "North Pole Bunny", + 9, + ], + [ + "Silver Bison", + 1, "Nice", ], [ - "Tiki Dominus", + "Pajamas Cat", 0.1, "Great", ], ], "worldNumber": 1, }, - "configName": "36 | Sand Bucket Egg", + "configName": "79 | Ice Castle Egg Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.476Z", - "hashShort": "7df3fe862b15aaa8", + "dateModified": "2026-04-18T15:56:35.788Z", + "hashShort": "5ff2dc6a6c28edaa", }, { - "category": "Release", + "category": "Update 3", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 35, - "icon": "rbxassetid://15172353395", - "name": "Tiki Egg", + "eggNumber": 78, + "goldenThumbnail": "rbxassetid://75796144133635", + "icon": "rbxassetid://136774004802745", + "name": "Hot Cocoa Egg", "pets": [ [ - "Luau Cat", - 100, + "Ice Snowman", + 55, ], [ - "Luau Seal", - 25, + "Ice Corgi", + 34, ], [ - "Pineapple Cat", - 2.5, + "Colorful Dragon", + 10, + ], + [ + "Ice Penguin", + 1, "Nice", ], [ - "Tiki Dominus", - 0.025, - "Insane", + "North Pole Bunny", + 0.1, + "Great", ], ], "worldNumber": 1, }, - "configName": "35 | Tiki Egg", + "configName": "78 | Hot Cocoa Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.483Z", - "hashShort": "6e1f151355e23239", + "dateModified": "2026-04-18T15:56:35.771Z", + "hashShort": "c142cc981dc84ecc", }, { - "category": "Release", + "category": "Update 3", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 34, - "icon": "rbxassetid://15172356192", - "name": "Coconut Egg", + "eggNumber": 77, + "goldenThumbnail": "rbxassetid://91206003203058", + "icon": "rbxassetid://139271933611477", + "name": "Ice Sculpture Egg", "pets": [ [ - "Flower Gecko", - 100, + "Frost Rabbit", + 45, ], [ - "Shark", - 25, + "Frost Fox", + 30, ], [ - "Midnight Axolotl", - 3.1, + "Hot Cocoa Cat", + 15, + ], + [ + "Jolly Cat", + 7, + ], + [ + "Ice Snowman", + 3, "Nice", ], [ - "Pineapple Cat", - 0.15, + "Colorful Dragon", + 0.1, "Great", ], ], "worldNumber": 1, }, - "configName": "34 | Coconut Egg", + "configName": "77 | Ice Sculpture Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.485Z", - "hashShort": "f80e97a1ed4da20e", + "dateModified": "2026-04-18T15:56:35.774Z", + "hashShort": "c97bd4f09126b11c", }, { - "category": "Release", + "category": "Update 4", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 33, - "icon": "rbxassetid://15172356780", - "name": "Beach Egg", + "eggNumber": 82, + "goldenThumbnail": "rbxassetid://104318502007809", + "icon": "rbxassetid://70883207336447", + "name": "Golden Brick Egg", "pets": [ [ - "Moray Eel", - 100, + "Cold Firefly", + 60, ], [ - "Whale Shark", + "Orange Parrot", 30, ], [ - "Shark", - 3, + "Snowflake Dominus", + 5, + ], + [ + "Golden Retriever", + 1, "Nice", ], [ - "Midnight Axolotl", + "Tabby Cat", 0.1, "Great", ], ], "worldNumber": 1, }, - "configName": "33 | Beach Egg", + "configName": "82 | Golden Brick Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.483Z", - "hashShort": "b36f1b04dafd9812", + "dateModified": "2026-04-18T15:56:35.760Z", + "hashShort": "53ef148e35736431", }, { - "category": "Release", + "category": "Update 4", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 32, - "icon": "rbxassetid://15172353294", - "name": "Tropical Egg", + "eggNumber": 83, + "goldenThumbnail": "rbxassetid://74215482665311", + "icon": "rbxassetid://110609095452322", + "name": "Cobblestone Egg", "pets": [ [ - "Mermaid Cat", - 100, + "Golden Retriever", + 70, ], [ - "Poseidon Dog", - 35, + "Enchanted Fox", + 20, ], [ - "Poseidon Corgi", - 2.5, + "Tabby Cat", + 9, + ], + [ + "Enchanted Raccoon", + 1, "Nice", ], + [ + "Enchanted Dragon", + 0.1, + "Great", + ], ], "worldNumber": 1, }, - "configName": "32 | Tropical Egg", + "configName": "83 | Cobblestone Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.483Z", - "hashShort": "2c9b4b78c0bf5b74", + "dateModified": "2026-04-18T15:56:35.735Z", + "hashShort": "7f8d649e27af0142", }, { - "category": "Release", + "category": "Update 4", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 31, - "icon": "rbxassetid://15172356930", - "name": "Atlantis Egg", + "eggNumber": 84, + "goldenThumbnail": "rbxassetid://80073457330218", + "icon": "rbxassetid://127295606268783", + "name": "Ruins Egg", "pets": [ [ - "Kraken", - 100, + "Enchanted Raccoon", + 70, ], [ - "Stingray", - 25, + "Rock Cat", + 20, ], [ - "Hydra", - 3, + "Enchanted Dragon", + 9, + ], + [ + "Rock Dog", + 1, "Nice", ], + [ + "Rock Dragon", + 0.1, + "Great", + ], ], "worldNumber": 1, }, - "configName": "31 | Atlantis Egg", + "configName": "84 | Ruins Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.474Z", - "hashShort": "34b7e39b636d1d91", + "dateModified": "2026-04-18T15:56:35.784Z", + "hashShort": "4891d43631931fa6", }, { - "category": "Release", + "category": "Update 4", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 30, - "icon": "rbxassetid://15172356983", - "name": "Anchor Egg", + "eggNumber": 85, + "goldenThumbnail": "rbxassetid://86240916245918", + "icon": "rbxassetid://123618721673568", + "name": "Runic Egg", "pets": [ [ - "Goldfish", - 100, + "Rock Dog", + 70, ], [ - "Jellyfish", - 50, + "Relic Bat", + 20, ], [ - "Mantis Shrimp", - 15, + "Rock Dragon", + 9, ], [ - "Kraken", - 3.25, + "Relic Cyclops", + 1, "Nice", ], + [ + "Relic Agony", + 0.1, + "Great", + ], ], "worldNumber": 1, }, - "configName": "30 | Anchor Egg", + "configName": "85 | Runic Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.469Z", - "hashShort": "a5a84d60b7fd643d", + "dateModified": "2026-04-18T15:56:35.770Z", + "hashShort": "aafd1c27b322ff1d", }, { - "category": "Release", + "category": "Update 4", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 29, - "icon": "rbxassetid://15172356132", - "name": "Coral Egg", + "eggNumber": 86, + "goldenThumbnail": "rbxassetid://115988171767548", + "icon": "rbxassetid://137825358894239", + "name": "Wizard Egg", "pets": [ [ - "Blue Fish", - 100, + "Relic Cyclops", + 70, ], [ - "Green Fish", - 50, + "Goblin", + 20, ], [ - "Goldfish", - 5, - "Nice", + "Relic Agony", + 10, ], [ - "Axolotuus", - 2.5, - "Nice", + "Owl", + 0.1, + "Great", + ], + [ + "Wizard Westie", + 0.01, + "Great", ], ], "worldNumber": 1, }, - "configName": "29 | Coral Egg", + "configName": "86 | Wizard Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.465Z", - "hashShort": "1580c4542848f4e1", + "dateModified": "2026-04-18T15:56:35.773Z", + "hashShort": "cfae036c8d5407d9", }, { - "category": "Release", + "category": "Update 4", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 28, - "icon": "rbxassetid://15172356826", - "name": "Beach Ball Egg", + "eggNumber": 87, + "goldenThumbnail": "rbxassetid://73069172705121", + "icon": "rbxassetid://97137816270093", + "name": "Witch Egg", "pets": [ [ - "Seal", - 100, + "Potion Poodle", + 70, ], [ - "Dolphin", - 35, + "Owl", + 29, ], [ - "Pufferfish", - 3, + "Wizard Westie", + 1, "Nice", ], [ - "Axolotuus", - 0.02, + "Witch Cat", + 0.1, + "Great", + ], + [ + "Broomstick Corgi", + 0.002, + "Insane", + ], + [ + "Imp", + 0.00004, "Insane", ], ], "worldNumber": 1, }, - "configName": "28 | Beach Ball Egg", + "configName": "87 | Witch Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.464Z", - "hashShort": "7991377a6ef10401", + "dateModified": "2026-04-18T15:56:35.762Z", + "hashShort": "5175403011e00091", }, { - "category": "Release", + "category": "Update 4", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 10, - "icon": "rbxassetid://15172356081", - "name": "Corgi Egg", + "eggNumber": 81, + "goldenThumbnail": "rbxassetid://78277785603248", + "icon": "rbxassetid://131334027752361", + "name": "Firefly Egg", "pets": [ [ - "Cow", - 100, + "Cold Ladybug", + 75, ], [ - "Flamingo", - 6, - "Nice", + "Teddy Bear", + 19, ], [ - "Ladybug", - 4, + "Cold Butterfly", + 5, + ], + [ + "Cold Firefly", + 1, "Nice", ], + [ + "Snowflake Dominus", + 0.1, + "Great", + ], ], "worldNumber": 1, }, - "configName": "10 | Corgi Egg", + "configName": "81 | Firefly Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.628Z", - "hashShort": "c10b6524b1daee36", + "dateModified": "2026-04-18T15:56:35.767Z", + "hashShort": "7b850b1d2abc7184", }, { - "category": "Release", + "category": "Update 5", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 11, - "icon": "rbxassetid://15172356302", - "name": "Cat Egg", + "eggNumber": 88, + "goldenThumbnail": "rbxassetid://105310923051165", + "icon": "rbxassetid://82855373274833", + "name": "Eerie Egg", "pets": [ [ - "Turtle", - 100, + "Scary Corgi", + 75, ], [ - "Ladybug", - 65, + "Scary Cat", + 20, ], [ - "Hedgehog", - 25, + "Werewolf", + 5, ], [ - "Ugly Duckling", - 9, - "Nice", + "Broomstick Corgi", + 0.1, + "Great", + ], + [ + "Imp", + 0.001, + "Insane", ], ], "worldNumber": 1, }, - "configName": "11 | Cat Egg", + "configName": "88 | Eerie Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.628Z", - "hashShort": "0324ef359b5244a1", + "dateModified": "2026-04-18T15:56:35.774Z", + "hashShort": "aa56873afce8d765", }, { - "category": "Release", + "category": "Update 5", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 12, - "icon": "rbxassetid://15172355848", - "name": "Dog Egg", + "eggNumber": 89, + "goldenThumbnail": "rbxassetid://87112867180200", + "icon": "rbxassetid://105936474276733", + "name": "Abyssal Egg", "pets": [ [ - "Ugly Duckling", - 100, + "Zombie Squirrel", + 50, ], [ - "Froggy", - 50, + "Zombie Corgi", + 20, ], [ - "Umbrella Dog", + "Broomstick Corgi", + 19, + ], + [ + "Zombie Bull", 10, + ], + [ + "Imp", + 1, "Nice", ], ], "worldNumber": 1, }, - "configName": "12 | Dog Egg", + "configName": "89 | Abyssal Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.629Z", - "hashShort": "6e9b7a0749741b61", + "dateModified": "2026-04-18T15:56:35.769Z", + "hashShort": "e01b43603be31e44", }, { - "category": "Release", + "category": "Update 5", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 13, - "icon": "rbxassetid://15172355798", - "name": "Dragon Egg", + "eggNumber": 90, + "goldenThumbnail": "rbxassetid://132602224870732", + "icon": "rbxassetid://115009845988755", + "name": "Cursed Egg", "pets": [ [ - "Umbrella Dog", - 100, + "Imp", + 70, ], [ - "Umbrella Cat", - 100, + "Ghost Cat", + 20, ], [ - "Platypus", - 6, + "Detective Terrier", + 9, + ], + [ + "Vampire Bat", + 1, "Nice", ], [ - "Dragon", + "Grim Reaper", 0.1, "Great", ], ], "worldNumber": 1, }, - "configName": "13 | Dragon Egg", + "configName": "90 | Cursed Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.628Z", - "hashShort": "b97883ffd81e248f", + "dateModified": "2026-04-18T15:56:35.771Z", + "hashShort": "10efc1bba896cd68", }, { - "category": "Release", + "category": "Update 5", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 14, - "icon": "rbxassetid://15172354305", - "name": "Rock Egg", + "eggNumber": 91, + "goldenThumbnail": "rbxassetid://99218751321233", + "icon": "rbxassetid://121888121093357", + "name": "Dungeon Egg", "pets": [ [ - "Platypus", - 100, + "Vampire Bat", + 70, ], [ - "Firefly", - 40, + "Ghost", + 20, ], [ - "Dragon", - 6, + "Grim Reaper", + 9, + ], + [ + "Skeleton", + 1, "Nice", ], + [ + "Reaper", + 0.1, + "Great", + ], ], "worldNumber": 1, }, - "configName": "14 | Rock Egg", + "configName": "91 | Dungeon Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.625Z", - "hashShort": "590c7867d0ce8cca", + "dateModified": "2026-04-18T15:56:35.783Z", + "hashShort": "72822e8ede360cc3", }, { - "category": "Release", + "category": "Update 5", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 15, - "icon": "rbxassetid://15172355592", - "name": "Geode Egg", + "eggNumber": 92, + "goldenThumbnail": "rbxassetid://88459752023517", + "icon": "rbxassetid://89327608225477", + "name": "Shadow Egg", "pets": [ [ - "Mining Dog", - 100, + "Skeleton", + 70, ], [ - "Happy Rock", - 40, + "Blue Slime", + 20, ], [ - "Demolition Cat", - 0.8, + "Reaper", + 9, + ], + [ + "Queen Slime", + 1, + "Nice", + ], + [ + "Stacked King Slime", + 0.1, "Great", ], ], "worldNumber": 1, }, - "configName": "15 | Geode Egg", + "configName": "92 | Shadow Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.623Z", - "hashShort": "0ca40b24b33864ab", + "dateModified": "2026-04-18T15:56:35.772Z", + "hashShort": "c1d67ac60419874e", }, { - "category": "Release", + "category": "Update 5", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 16, - "icon": "rbxassetid://15172355246", - "name": "Hut Egg", + "eggNumber": 93, + "goldenThumbnail": "rbxassetid://106828670927228", + "icon": "rbxassetid://85136350158796", + "name": "Treasure Egg", "pets": [ [ - "Sapphire Carbuncle", - 115, + "Queen Slime", + 70, ], [ - "Demolition Cat", - 80, + "Red Dragon", + 20, ], [ - "Emerald Carbuncle", - 30, + "Stacked King Slime", + 9, ], [ - "Willow Wisp", + "Robber Goblin", + 1, + "Nice", + ], + [ + "Knight Cat", 0.1, "Great", ], ], "worldNumber": 1, }, - "configName": "16 | Hut Egg", + "configName": "93 | Treasure Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.621Z", - "hashShort": "fe1be7adbe33f568", + "dateModified": "2026-04-18T15:56:35.783Z", + "hashShort": "5a8386310bfae4c0", }, { - "category": "Release", + "category": "Update 5", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 17, - "icon": "rbxassetid://15172355407", - "name": "Grave Egg", + "eggNumber": 94, + "goldenThumbnail": "rbxassetid://122924657848429", + "icon": "rbxassetid://87009706289283", + "name": "Empyrean Egg", "pets": [ [ - "Bat", - 100, + "Robber Goblin", + 70, ], [ - "Green Cobra", - 60, + "Empyrean Snake", + 20, ], [ - "Willow Wisp", - 6, + "Knight Cat", + 9, + ], + [ + "Empyrean Stallion", + 1, "Nice", ], + [ + "Empyrean Fox", + 0.1, + "Great", + ], ], "worldNumber": 1, }, - "configName": "17 | Grave Egg", + "configName": "94 | Empyrean Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.625Z", - "hashShort": "cc9659fdf84bcda8", + "dateModified": "2026-04-18T15:56:35.774Z", + "hashShort": "c33a3c71651ba372", }, { - "category": "Release", + "category": "Update 5", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 18, - "icon": "rbxassetid://15172357318", - "name": "Spike Egg", + "eggNumber": 95, + "goldenThumbnail": "rbxassetid://89464867294918", + "icon": "rbxassetid://135199679574479", + "name": "Mythic Egg", "pets": [ [ - "Black Bear", - 100, + "Empyrean Stallion", + 90, ], [ - "Griffin", - 60, + "Empyrean Fox", + 9, ], [ - "Guilded Raven", + "Encrusted Wolf", 1, "Nice", ], + [ + "Encrusted Dragon", + 0.1, + "Great", + ], ], "worldNumber": 1, }, - "configName": "18 | Spike Egg", + "configName": "95 | Mythic Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.625Z", - "hashShort": "f2328b7586ec1221", + "dateModified": "2026-04-18T15:56:35.778Z", + "hashShort": "903bf82a865e48e6", }, { - "category": "Release", + "category": "Update 5", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 19, - "icon": "rbxassetid://15172353734", - "name": "Sprout Egg", + "eggNumber": 96, + "goldenThumbnail": "rbxassetid://88029999852068", + "icon": "rbxassetid://108149284709447", + "name": "Cotton Candy Egg", "pets": [ [ - "Black Widow", - 100, + "Encrusted Wolf", + 70, ], [ - "Guilded Raven", - 70, + "Cotton Candy Lamb", + 20, ], [ - "Shadow Griffin", - 6, + "Encrusted Dragon", + 9, + ], + [ + "Cotton Candy Cow", + 1, "Nice", ], [ - "Agony", + "Cotton Candy Unicorn", 0.1, "Great", ], ], "worldNumber": 1, }, - "configName": "19 | Sprout Egg", + "configName": "96 | Cotton Candy Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.638Z", - "hashShort": "ea9ab3d774463e24", + "dateModified": "2026-04-18T15:56:35.763Z", + "hashShort": "d1b456bf82d977e9", }, { - "category": "Release", + "category": "Update 5", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 20, - "icon": "rbxassetid://15172354843", - "name": "Mushroom Egg", + "eggNumber": 97, + "goldenThumbnail": "rbxassetid://124396740828283", + "icon": "rbxassetid://119588710631395", + "name": "Gummy Egg", "pets": [ [ - "Slime", - 100, + "Cotton Candy Cow", + 70, ], [ - "Cyclops", - 100, + "Gummy Raccoon", + 20, ], [ - "Shadow Griffin", - 40, + "Cotton Candy Unicorn", + 9, ], [ - "Agony", - 7.5, + "Gummy Bear", + 1, "Nice", ], + [ + "Gummy Fox", + 0.1, + "Great", + ], ], "worldNumber": 1, }, - "configName": "20 | Mushroom Egg", + "configName": "97 | Gummy Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.627Z", - "hashShort": "b053089caa6738c9", + "dateModified": "2026-04-18T15:56:35.780Z", + "hashShort": "1fbccc708a2bb27b", }, { - "category": "Release", + "category": "Update 5", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 21, - "icon": "rbxassetid://15172353876", - "name": "Spirit Egg", + "eggNumber": 98, + "goldenThumbnail": "rbxassetid://117102225424633", + "icon": "rbxassetid://78512709560608", + "name": "Ice Cream Egg", "pets": [ [ - "Mushroom Raccoon", - 100, - ], - [ - "Enchanted Cat", + "Gummy Bear", 50, ], [ - "Enchanted Elephant", + "Chocolate Dog", 25, ], [ - "Enchanted Deer", + "Chocolate Frog", + 15, + ], + [ + "Gummy Fox", + 9, + ], + [ + "Chocolate Bunny", 1, "Nice", ], + [ + "Chocolate Hippo", + 0.1, + "Great", + ], ], "worldNumber": 1, }, - "configName": "21 | Spirit Egg", + "configName": "98 | Ice Cream Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.639Z", - "hashShort": "f92d978379f580cb", + "dateModified": "2026-04-18T15:56:35.764Z", + "hashShort": "74f599d292d56651", }, { - "category": "Release", + "category": "Update 5", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 22, - "icon": "rbxassetid://15172355905", - "name": "Crimson Egg", + "eggNumber": 99, + "goldenThumbnail": "rbxassetid://90681907163561", + "icon": "rbxassetid://89521112384351", + "name": "Sweets Egg", "pets": [ [ - "Purple Cobra", - 115, + "Chocolate Bunny", + 70, ], [ - "Enchanted Deer", - 55, + "Blue Marshmallow Chick", + 20, ], [ - "Butterfly", - 7, + "Chocolate Hippo", + 9, + ], + [ + "Pink Marshmallow Chick", + 1, "Nice", ], + [ + "Cupcake", + 0.1, + "Great", + ], ], "worldNumber": 1, }, - "configName": "22 | Crimson Egg", + "configName": "99 | Sweets Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.630Z", - "hashShort": "e61e7f03d2e4bdce", + "dateModified": "2026-04-18T15:56:35.766Z", + "hashShort": "f20b163ddfcaa643", }, { - "category": "Release", + "category": "Update 5", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 23, - "icon": "rbxassetid://15172354701", - "name": "Overgrown Egg", + "eggNumber": 100, + "goldenThumbnail": "rbxassetid://73641860231291", + "icon": "rbxassetid://133776981332838", + "name": "Toy Egg", "pets": [ [ - "Butterfly", - 100, + "Pink Marshmallow Chick", + 50, ], [ - "Peacock", - 65, + "Pastel Sock Bear", + 25, ], [ - "Bobcat", - 7, + "Pastel Sock Bunny", + 15, + ], + [ + "Cupcake", + 9, + ], + [ + "Pastel Sock Corgi", + 1, "Nice", ], [ - "Mystical Fox", + "Pastel Sock Dragon", 0.1, "Great", ], ], "worldNumber": 1, }, - "configName": "23 | Overgrown Egg", + "configName": "100 | Toy Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.624Z", - "hashShort": "16c14a0b31e7fd8f", + "dateModified": "2026-04-18T15:56:35.782Z", + "hashShort": "e0ae8ebb85ce6abd", }, { - "category": "Release", + "category": "Update 5", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 24, - "icon": "rbxassetid://15172354892", - "name": "Mossy Egg", + "eggNumber": 101, + "goldenThumbnail": "rbxassetid://114773568715014", + "icon": "rbxassetid://89182444011252", + "name": "Carnival Egg", "pets": [ [ - "Bobcat", - 100, + "Pastel Sock Corgi", + 50, ], [ - "Chimpanzee", - 65, + "Carnival Elephant", + 25, ], [ - "Panther", - 30, + "Carnival Panda", + 15, ], [ - "Mystical Fox", - 4.5, + "Pastel Sock Dragon", + 9, + ], + [ + "Clown Cat", + 1, "Nice", ], + [ + "Hot Dog", + 0.1, + "Great", + ], ], "worldNumber": 1, }, - "configName": "24 | Mossy Egg", + "configName": "101 | Carnival Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.623Z", - "hashShort": "e477bb707d79dce5", + "dateModified": "2026-04-18T15:56:35.784Z", + "hashShort": "d1ea946a266fdc9b", }, { - "category": "Release", + "category": "Update 5", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 25, - "icon": "rbxassetid://15172355021", - "name": "Jungle Egg", + "eggNumber": 102, + "goldenThumbnail": "rbxassetid://139841016501454", + "icon": "rbxassetid://104458488527216", + "name": "Hot Air Balloon Egg", "pets": [ [ - "Sloth", - 100, + "Clown Cat", + 70, ], [ - "Lion", - 65, + "Popcorn Cat", + 20, ], [ - "Jaguar", - 4.5, + "Hot Dog", + 9, + ], + [ + "Hot Air Balloon Dog", + 1, "Nice", ], + [ + "Basketball Retriever", + 0.1, + "Great", + ], ], "worldNumber": 1, }, - "configName": "25 | Jungle Egg", + "configName": "102 | Hot Air Balloon Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.638Z", - "hashShort": "2247db8d597171d1", + "dateModified": "2026-04-18T15:56:35.757Z", + "hashShort": "08a789b6bfc43c3b", }, { - "category": "Release", + "category": "Update 5", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 26, - "icon": "rbxassetid://15172354162", - "name": "Sandcastle Egg", + "eggNumber": 103, + "goldenThumbnail": "rbxassetid://129834807095416", + "icon": "rbxassetid://117923003740748", + "name": "Cloud Egg", "pets": [ [ - "Lemur", - 100, + "Hot Air Balloon Dog", + 90, ], [ - "Jaguar", - 30, + "Basketball Retriever", + 9, ], [ - "Crocodile", - 3, + "Cloud Penguin", + 1, "Nice", ], [ - "King Cobra", - 0.125, + "Cloud Monkey", + 0.1, "Great", ], ], "worldNumber": 1, }, - "configName": "26 | Sandcastle Egg", + "configName": "103 | Cloud Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.627Z", - "hashShort": "fb5148f9ec5173e4", + "dateModified": "2026-04-18T15:56:35.755Z", + "hashShort": "4d8c6f1022f64f6f", }, { - "category": "Release", + "category": "Update 5", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 27, - "icon": "rbxassetid://15172354606", - "name": "Palm Tree Egg", + "eggNumber": 104, + "goldenThumbnail": "rbxassetid://103046467901047", + "icon": "rbxassetid://133882544630490", + "name": "Cloud Garden Egg", "pets": [ [ - "Gecko", - 100, + "Cloud Penguin", + 90, ], [ - "Hippo", - 50, + "Cloud Monkey", + 9, ], [ - "Crocodile", - 15, + "Blossom Squirrel", + 1, "Nice", ], + [ + "Blossom Koi Fish", + 0.1, + "Great", + ], ], "worldNumber": 1, }, - "configName": "27 | Palm Tree Egg", + "configName": "104 | Cloud Garden Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.624Z", - "hashShort": "81951addece9fef9", + "dateModified": "2026-04-18T15:56:35.779Z", + "hashShort": "8d403e4028d07f1c", }, { - "category": "Release", + "category": "Update 5", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 1, - "icon": "rbxassetid://15172355963", - "name": "Cracked Egg", + "eggNumber": 105, + "goldenThumbnail": "rbxassetid://134123571783687", + "icon": "rbxassetid://132241065468547", + "name": "Cloud Forest Egg", "pets": [ [ - "Cat", - 1, + "Blossom Squirrel", + 90, ], [ - "Dog", - 1, + "Blossom Koi Fish", + 9, ], [ - "Corgi", + "Cloud Hedgehog", 1, + "Nice", ], [ - "Axolotl", - 1, + "Pastel Deer", + 0.1, + "Great", ], ], "worldNumber": 1, }, - "configName": "1 | Cracked Egg", + "configName": "105 | Cloud Forest Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.629Z", - "hashShort": "c010aaf88496ea5f", + "dateModified": "2026-04-18T15:56:35.779Z", + "hashShort": "2b7dc80ae634c092", }, { - "category": "Release", + "category": "Update 5", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 2, - "icon": "rbxassetid://15172353804", - "name": "Spotted Egg", + "eggNumber": 106, + "goldenThumbnail": "rbxassetid://119758558031580", + "icon": "rbxassetid://90735494620832", + "name": "Cloud House Egg", "pets": [ [ - "Bunny", - 100, + "Cloud Hedgehog", + 90, ], [ - "Chick", - 45, + "Pastel Deer", + 9, ], [ - "Dalmatian", - 10, + "Cloud Bat", + 1, "Nice", ], + [ + "Cloud Dog", + 0.1, + "Great", + ], ], "worldNumber": 1, }, - "configName": "2 | Spotted Egg", + "configName": "106 | Cloud House Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.635Z", - "hashShort": "dd8de98e30392e79", + "dateModified": "2026-04-18T15:56:35.782Z", + "hashShort": "1449ec3e113da01f", }, { - "category": "Release", + "category": "Update 5", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 3, - "icon": "rbxassetid://15172354552", - "name": "Paw Egg", + "eggNumber": 107, + "goldenThumbnail": "rbxassetid://105959295622551", + "icon": "rbxassetid://92268202977047", + "name": "Cloud Castle Egg", "pets": [ [ - "Dalmatian", - 100, + "Cloud Bat", + 90, ], [ - "Ducky", - 100, + "Cloud Dog", + 9, ], [ - "Monkey", - 50, + "Royal Cloud Cat", + 1, + "Nice", ], [ - "Parrot", - 12, - "Nice", + "Royal Cloud Corgi", + 0.1, + "Great", ], ], "worldNumber": 1, }, - "configName": "3 | Paw Egg", + "configName": "107 | Cloud Castle Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.634Z", - "hashShort": "544ebd7cdc310621", + "dateModified": "2026-04-18T15:56:35.780Z", + "hashShort": "d974b8095a8b59e7", }, { - "category": "Release", + "category": "Update 5", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 4, - "icon": "rbxassetid://15172355499", - "name": "Grass Egg", + "eggNumber": 108, + "goldenThumbnail": "rbxassetid://110902957361976", + "icon": "rbxassetid://106328859761008", + "name": "Angel Egg", "pets": [ [ - "Elephant", - 100, + "Royal Cloud Cat", + 70, ], [ - "Parrot", - 35, + "Angel Cat", + 20, ], [ - "Tiger", - 4, + "Royal Cloud Corgi", + 9, + ], + [ + "Angel Dog", + 1, "Nice", ], + [ + "Heavenly Peacock", + 0.1, + "Great", + ], ], "worldNumber": 1, }, - "configName": "4 | Grass Egg", + "configName": "108 | Angel Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.637Z", - "hashShort": "f9dbbf40537d787e", + "dateModified": "2026-04-18T15:56:35.776Z", + "hashShort": "23f84ac1419a4b22", }, { - "category": "Release", + "category": "Update 5", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 5, - "icon": "rbxassetid://15172353173", - "name": "Wood Egg", + "eggNumber": 109, + "goldenThumbnail": "rbxassetid://134056309933667", + "icon": "rbxassetid://72357960872316", + "name": "Heaven Egg", "pets": [ [ - "Squirrel", - 100, + "Angel Dog", + 70, ], [ - "Bear", - 40, + "Dove", + 20, ], [ - "Tiger", - 6, + "Heavenly Peacock", + 9, + ], + [ + "Pegasus", + 1, "Nice", ], + [ + "Angelus", + 0.1, + "Great", + ], ], "worldNumber": 1, }, - "configName": "5 | Wood Egg", + "configName": "109 | Heaven Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.620Z", - "hashShort": "9e806307cb2ab1aa", + "dateModified": "2026-04-18T15:56:35.756Z", + "hashShort": "db5d929fc1c6a1fe", }, { - "category": "Release", + "category": "Update 5", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 6, - "icon": "rbxassetid://15172354402", - "name": "Pumpkin Egg", + "eggNumber": 110, + "goldenThumbnail": "rbxassetid://116841649174241", + "icon": "rbxassetid://130025587656334", + "name": "Heaven Castle Egg", "pets": [ [ - "Lamb", - 100, + "Pegasus", + 70, ], [ - "Raccoon", - 70, + "Empyrean Axolotl", + 20, ], [ - "Fox", - 50, + "Angelus", + 9, + ], + [ + "Empyrean Dragon", + 1, + "Nice", + ], + [ + "Vibrant Whale", + 0.1, + "Great", ], ], "worldNumber": 1, }, - "configName": "6 | Pumpkin Egg", + "configName": "110 | Heaven Castle Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.633Z", - "hashShort": "681cf26d4dc86bb0", + "dateModified": "2026-04-18T15:56:35.777Z", + "hashShort": "b80847ad9e77bc43", }, { - "category": "Release", + "category": "Update 5", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 7, - "icon": "rbxassetid://15172355290", - "name": "Hive Egg", + "eggNumber": 111, + "goldenThumbnail": "rbxassetid://121921427874017", + "icon": "rbxassetid://138386856156447", + "name": "Colorful Cloud Egg", "pets": [ [ - "Bee", - 100, + "Empyrean Dragon", + 70, ], [ - "Turkey", - 50, + "Pastel Elephant", + 20, ], [ - "Scarecrow Cat", - 7.5, + "Vibrant Whale", + 9, + ], + [ + "Pastel Griffin", + 1, "Nice", ], + [ + "Pastel Goat", + 0.1, + "Great", + ], ], "worldNumber": 1, }, - "configName": "7 | Hive Egg", + "configName": "111 | Colorful Cloud Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.619Z", - "hashShort": "034e239a429deff8", + "dateModified": "2026-04-18T15:56:35.781Z", + "hashShort": "a2f893ea3dcbc0fc", }, { - "category": "Release", + "category": "Update 5", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 8, - "icon": "rbxassetid://15172357034", - "name": "Acorn Egg", + "eggNumber": 112, + "goldenThumbnail": "rbxassetid://137420881424721", + "icon": "rbxassetid://132846984500622", + "name": "Rainbow Egg", "pets": [ [ - "Piggy", - 100, + "Pastel Griffin", + 70, ], [ - "Scarecrow Cat", - 65, + "Pastel Goat", + 30, ], [ - "Llama", - 6, - "Nice", + "Vibrant Cobra", + 0.1, + "Great", + ], + [ + "Vibrant Toucan", + 0.002, + "Insane", + ], + [ + "Sun Angelus", + 0.00004, + "Insane", ], ], "worldNumber": 1, }, - "configName": "8 | Acorn Egg", + "configName": "112 | Rainbow Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.630Z", - "hashShort": "14bc43ab44938370", + "dateModified": "2026-04-18T15:56:35.777Z", + "hashShort": "babc4ba04966e2ee", }, { - "category": "Release", + "category": "Update 2", "collection": "Eggs", "configData": { "currency": "Coins", - "eggNumber": 9, - "icon": "rbxassetid://15172356749", - "name": "Blossom Egg", + "eggNumber": 73, + "goldenThumbnail": "rbxassetid://85312304992520", + "icon": "rbxassetid://104521394901565", + "name": "Colorful Egg", "pets": [ [ - "White Bunny", - 100, + "Colorful Fish", + 65, ], [ - "Chicken", - 60, + "Colorful Slime", + 30, ], [ - "Flamingo", - 0.2, + "Unicorn Kitten", + 5, + "Nice", + ], + [ + "Colorful Wisp", + 0.1, "Great", ], ], "worldNumber": 1, }, - "configName": "9 | Blossom Egg", + "configName": "73 | Colorful Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.618Z", - "hashShort": "3fbf90b0989ef236", + "dateModified": "2026-04-18T15:56:35.762Z", + "hashShort": "d9a44bfe5853a5f9", }, { - "category": "Merch Series 1", + "category": "Update 2", "collection": "Eggs", "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "giftCallback": null, - "goldChance": 10, - "icon": "rbxassetid://15187367424", - "name": "Series 1 Basic Gift", + "currency": "Coins", + "eggNumber": 74, + "goldenThumbnail": "rbxassetid://90987824438598", + "icon": "rbxassetid://114821736650009", + "name": "Colorful Geode Egg", "pets": [ [ - "Tiedye Cat", - 100, - ], - [ - "Tiedye Corgi", - 100, + "Mining Axolotl", + 60, ], [ - "Tiedye Bear", - 70, + "Mining Cat", + 30, ], [ - "Tiedye Dragon", - 50, + "Colorful Wisp", + 10, + "Nice", ], [ - "Huge Tiedye Cat", - 5, + "Colorful Rock", + 0.1, + "Great", ], ], - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, + "worldNumber": 1, }, - "configName": "Series 1 Basic Gift", + "configName": "74 | Colorful Geode Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.032Z", - "hashShort": "5d763949f45a7bc5", + "dateModified": "2026-04-18T15:56:35.742Z", + "hashShort": "e77b3af974854111", }, { - "category": "Merch Series 1", + "category": "Update 2", "collection": "Eggs", "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "giftCallback": null, - "goldChance": 10, - "icon": "rbxassetid://15187369155", - "name": "Series 1 Epic Gift", + "currency": "Coins", + "eggNumber": 75, + "goldenThumbnail": "rbxassetid://97689783865242", + "icon": "rbxassetid://89444469734776", + "name": "Colorful Mosaic Egg", "pets": [ [ - "Crystal Dog", - 100, - ], - [ - "Crystal Deer", - 100, - ], - [ - "Mosaic Corgi", - 70, - ], - [ - "Mosaic Dove", + "Shiba", 70, ], [ - "Mosaic Griffin", - 50, + "Colorful Firefly", + 22, ], [ - "Huge Crystal Dog", - 20, + "Colorful Rock", + 6, + "Nice", ], [ - "Huge Mosaic Corgi", - 20, + "Lunar Moth", + 2, + "Nice", ], ], - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, + "worldNumber": 1, }, - "configName": "Series 1 Epic Gift", + "configName": "75 | Colorful Mosaic Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.036Z", - "hashShort": "085c998d1bea9443", + "dateModified": "2026-04-18T15:56:35.765Z", + "hashShort": "a5da482d34d370b9", }, { - "category": "Merch Series 1", + "category": "Update 2", "collection": "Eggs", "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "giftCallback": null, - "goldChance": 10, - "icon": "rbxassetid://15187367629", - "name": "Series 1 Legendary Gift", + "currency": "Coins", + "eggNumber": 76, + "goldenThumbnail": "rbxassetid://85499712688109", + "icon": "rbxassetid://105972312097757", + "name": "Frosted Geode Egg", "pets": [ [ - "Nightfall Ram", - 100, - ], - [ - "Nightfall Wolf", - 100, - ], - [ - "Nightfall Tiger", + "Frost Bear", 70, ], [ - "Nightfall Pegasus", - 50, + "Frost Axolotl", + 29, ], [ - "Huge Mosaic Griffin", - 30, + "Jolly Penguin", + 1, + "Nice", ], [ - "Huge Nightfall Wolf", - 30, + "Jolly Cat", + 0.1, + "Great", ], [ - "Huge Nightfall Pegasus", - 15, + "Colorful Dragon", + 0.002, + "Insane", ], ], - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, + "worldNumber": 1, }, - "configName": "Series 1 Legendary Gift", + "configName": "76 | Frosted Geode Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.027Z", - "hashShort": "507eeb5c03e843ba", + "dateModified": "2026-04-18T15:56:35.734Z", + "hashShort": "8a41682e73136c3c", }, { - "category": "Merch Series 1", + "category": "Update 2", "collection": "Eggs", "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "giftCallback": null, - "goldChance": 10, - "icon": "rbxassetid://15187369264", - "name": "Series 1 Mythical Gift", + "currency": "Coins", + "eggNumber": 72, + "goldenThumbnail": "rbxassetid://135010646801877", + "icon": "rbxassetid://73632897914739", + "name": "Dandelion Egg", "pets": [ [ - "Huge Tiedye Cat", - 100, + "Hamster", + 50, ], [ - "Huge Tiedye Corgi", - 100, + "Tulip Hedgehog", + 40, ], [ - "Huge Crystal Dog", - 100, + "Calico Cat", + 10, ], [ - "Huge Mosaic Griffin", - 100, + "Unicorn Kitten", + 0.1, ], + ], + "worldNumber": 1, + }, + "configName": "72 | Dandelion Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:35.738Z", + "hashShort": "a59a7846ebb77eb8", + }, + { + "category": "Update 1", + "collection": "Eggs", + "configData": { + "currency": "Coins", + "eggNumber": 71, + "goldenThumbnail": "rbxassetid://96103950175162", + "icon": "rbxassetid://107471476825542", + "name": "Royal Egg", + "pets": [ [ - "Huge Mosaic Corgi", - 100, + "Prince Donkey", + 97, ], [ - "Huge Nightfall Wolf", - 75, + "Princess Dragon", + 3, + "Nice", ], [ - "Huge Nightfall Pegasus", - 75, + "Knight Beagle", + 0.05, + "Great", + ], + [ + "Unicorn Kitten", + 0.0005, + "Insane", ], ], - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, + "worldNumber": 1, }, - "configName": "Series 1 Mythical Gift", + "configName": "71 | Royal Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.015Z", - "hashShort": "e75bd834411d09a0", + "dateModified": "2026-04-18T15:56:35.715Z", + "hashShort": "762a5ca6c0db07a3", }, { - "category": "Merch Series 1", + "category": "Update 1", "collection": "Eggs", "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "giftCallback": null, - "goldChance": 10, - "icon": "rbxassetid://15187367878", - "name": "Series 1 Rare Gift", + "currency": "Coins", + "eggNumber": 70, + "goldenThumbnail": "rbxassetid://81817971137230", + "icon": "rbxassetid://99857866793580", + "name": "Crowned Egg", "pets": [ [ - "Tiedye Corgi", - 100, - ], - [ - "Tiedye Dragon", - 100, + "Fluffy Cat", + 47, ], [ - "Crystal Dog", - 70, + "King Cow", + 30, ], [ - "Crystal Deer", - 50, + "Queen Piggy", + 20, ], [ - "Huge Tiedye Cat", - 5, + "Royal Peacock", + 3, + "Nice", ], [ - "Huge Tiedye Corgi", - 5, + "Knight Beagle", + 0.005, + "Insane", ], ], - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, + "worldNumber": 1, }, - "configName": "Series 1 Rare Gift", + "configName": "70 | Crowned Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.023Z", - "hashShort": "18a9428076835dfb", + "dateModified": "2026-04-18T15:56:35.746Z", + "hashShort": "2807558613e6cb1c", }, { - "category": "Merch Series 2", + "category": "Update 1", "collection": "Eggs", "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "giftCallback": null, - "goldChance": 10, - "icon": "rbxassetid://15187368086", - "name": "Series 2 Basic Gift", + "currency": "Coins", + "eggNumber": 69, + "goldenThumbnail": "rbxassetid://135325138189039", + "icon": "rbxassetid://77578802358837", + "name": "Pedal Egg", "pets": [ [ - "Tiedye Dog", - 31, - ], - [ - "Tiedye Bunny", - 31, + "Pixie Squirrel", + 47, ], [ - "Tiedye Griffin", - 22, + "Rabbit", + 30, ], [ - "Tiedye Axolotl", - 14.5, + "Fairy", + 20, ], [ - "Huge Tiedye Bunny", - 1.5, + "Starry Owl", + 3, + "Nice", ], ], - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, + "worldNumber": 1, }, - "configName": "Series 2 Basic Gift", + "configName": "69 | Pedal Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.020Z", - "hashShort": "7fa3ba34253da47f", + "dateModified": "2026-04-18T15:56:35.744Z", + "hashShort": "56ebaba6733964e1", }, { - "category": "Merch Series 2", + "category": "Update 1", "collection": "Eggs", "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "giftCallback": null, - "goldChance": 10, - "icon": "rbxassetid://15187368217", - "name": "Series 2 Epic Gift", + "currency": "Coins", + "eggNumber": 68, + "goldenThumbnail": "rbxassetid://85541419526257", + "icon": "rbxassetid://132669519897884", + "name": "Pixie Egg", "pets": [ [ - "Mosaic Elephant", - 23, + "Fairy Bee", + 49, ], [ - "Mosaic Lamb", - 23, + "Fairy Ladybug", + 30, ], [ - "Stealth Cat", - 16, + "Pixie Fox", + 20, ], [ - "Stealth Dragon", - 16, + "Pixie Squirrel", + 1, + "Nice", ], + ], + "worldNumber": 1, + }, + "configName": "68 | Pixie Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:35.744Z", + "hashShort": "a2737b20eab4642f", + }, + { + "category": "Update 1", + "collection": "Eggs", + "configData": { + "currency": "Coins", + "eggNumber": 67, + "goldenThumbnail": "rbxassetid://137983351740460", + "icon": "rbxassetid://134697280178471", + "name": "Garden Egg", + "pets": [ [ - "Stealth Bobcat", - 12, + "Blossom Bunny", + 47, ], [ - "Huge Mosaic Lamb", - 5, + "Rose Butterfly", + 30, ], [ - "Huge Stealth Dragon", - 5, + "Garden Cat", + 20, + ], + [ + "Sunflower Lion", + 3, + "Nice", ], ], - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, + "worldNumber": 1, }, - "configName": "Series 2 Epic Gift", + "configName": "67 | Garden Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.017Z", - "hashShort": "e05079c4f7e14385", + "dateModified": "2026-04-18T15:56:35.750Z", + "hashShort": "85e41368d3f85ed9", }, { - "category": "Merch Series 2", + "category": "Update 1", "collection": "Eggs", "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "giftCallback": null, - "goldChance": 10, - "icon": "rbxassetid://15187368334", - "name": "Series 2 Legendary Gift", + "currency": "Coins", + "eggNumber": 66, + "goldenThumbnail": "rbxassetid://118240815278228", + "icon": "rbxassetid://85047661476317", + "name": "Bonsai Egg", "pets": [ [ - "Exquisite Cat", - 25, + "White Tiger", + 72, ], [ - "Exquisite Parrot", + "Woodpecker", 25, ], [ - "Exquisite Elephant", - 18, - ], - [ - "Stealth Bobcat", - 13, - ], - [ - "Huge Stealth Bobcat", - 7.7, - ], - [ - "Huge Exquisite Parrot", - 7.7, + "Koi Fish", + 3, + "Nice", ], [ - "Huge Exquisite Cat", - 3.6, + "Ancient Dragon", + 0.1, + "Great", ], ], - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, + "worldNumber": 1, }, - "configName": "Series 2 Legendary Gift", + "configName": "66 | Bonsai Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.029Z", - "hashShort": "6bc0591394c1ca2c", + "dateModified": "2026-04-18T15:56:35.775Z", + "hashShort": "10eadeb390d17992", }, { - "category": "Merch Series 2", + "category": "Update 1", "collection": "Eggs", "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "giftCallback": null, - "goldChance": 10, - "icon": "rbxassetid://15187369420", - "name": "Series 2 Mythical Gift", + "currency": "Coins", + "eggNumber": 65, + "goldenThumbnail": "rbxassetid://97441820909042", + "icon": "rbxassetid://78314236892904", + "name": "Lantern Egg", "pets": [ [ - "Huge Tiedye Bunny", - 15, - ], - [ - "Huge Tiedye Axolotl", - 15, - ], - [ - "Huge Stealth Dragon", - 15, + "Kitsune Fox", + 74, ], [ - "Huge Mosaic Lamb", - 15, + "Panda", + 20, ], [ - "Huge Stealth Bobcat", - 15, + "Ronin Panda", + 5, ], [ - "Huge Exquisite Parrot", - 12.5, + "Red Panda", + 1, + "Nice", ], [ - "Huge Exquisite Cat", - 12.5, + "Ancient Dragon", + 0.01, + "Great", ], ], - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, + "worldNumber": 1, }, - "configName": "Series 2 Mythical Gift", + "configName": "65 | Lantern Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.032Z", - "hashShort": "41daf2e64a6c1635", + "dateModified": "2026-04-18T15:56:35.769Z", + "hashShort": "efb93660d3612f57", }, { - "category": "Merch Series 2", + "category": "Update 1", "collection": "Eggs", "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "giftCallback": null, - "goldChance": 10, - "icon": "rbxassetid://15187368560", - "name": "Series 2 Rare Gift", + "currency": "Coins", + "eggNumber": 64, + "goldenThumbnail": "rbxassetid://87932591130102", + "icon": "rbxassetid://93100897090757", + "name": "Ninja Egg", "pets": [ [ - "Tiedye Dog", - 30, + "Ninja Raccoon", + 63, ], [ - "Tiedye Bunny", + "Samurai Bull", 30, ], [ - "Tiedye Griffin", - 21, - ], - [ - "Tiedye Axolotl", - 16, + "Samurai Dragon", + 6, ], [ - "Huge Tiedye Bunny", - 1.5, + "Kitsune Fox", + 1, + "Nice", ], [ - "Huge Tiedye Axolotl", - 1.5, + "Cyborg Dominus", + 0.1, + "Great", ], ], - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, + "worldNumber": 1, }, - "configName": "Series 2 Rare Gift", + "configName": "64 | Ninja Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.033Z", - "hashShort": "0f1cb8722b6648fc", + "dateModified": "2026-04-18T15:56:35.768Z", + "hashShort": "5536961359ba1910", }, { - "category": "Machine Eggs", + "category": "Release", "collection": "Eggs", "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 5, - "icon": "rbxassetid://12371662386", - "name": "Huge Machine Angelus Egg", + "currency": "Coins", + "eggNumber": 63, + "goldenThumbnail": "rbxassetid://138764818638224", + "icon": "rbxassetid://113946761344092", + "name": "Sakura Egg", "pets": [ [ - "Huge Pterodactyl", - 50, + "Ninja Turtle", + 90, ], [ - "Huge King Cobra", - 30, + "Ninja Maskot", + 10, ], [ - "Huge Orca", - 15, + "Ninja Cat", + 0.01, + "Great", ], [ - "Huge Chameleon", - 4.5, - ], - [ - "Huge Angelus", - 0.5, + "Cyborg Dominus", + 0.0001, + "Insane", ], ], - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, + "worldNumber": 1, }, - "configName": "Huge Machine Egg 1", + "configName": "63 | Sakura Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.016Z", - "hashShort": "dda7088f1dbf83ac", + "dateModified": "2026-04-18T15:56:34.936Z", + "hashShort": "045ea4b67d372b67", }, { - "category": "Machine Eggs", + "category": "Release", "collection": "Eggs", "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 5, - "icon": "rbxassetid://13179252322", - "name": "Huge Machine Kraken Egg", + "currency": "Coins", + "eggNumber": 62, + "goldenThumbnail": "rbxassetid://122250309853099", + "icon": "rbxassetid://122975366666199", + "name": "Metal Egg", "pets": [ [ - "Huge Goblin", - 50, + "Cyborg Bunny", + 80, ], [ - "Huge Rainbow Slime", - 39, + "Cyborg Panda", + 20, ], [ - "Huge Gecko", - 10, + "Cyborg Dragon", + 0.5, + "Great", ], [ - "Huge Kraken", - 1, + "Cyborg Dominus", + 0.00001, + "Insane", ], ], - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, + "worldNumber": 1, }, - "configName": "Huge Machine Egg 2", + "configName": "62 | Metal Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.035Z", - "hashShort": "b0aa1d61ffddb597", + "dateModified": "2026-04-18T15:56:34.935Z", + "hashShort": "186e677f8e264139", }, { - "category": "Machine Eggs", + "category": "Release", "collection": "Eggs", "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 5, - "icon": "rbxassetid://13281715743", - "name": "Event Cool Egg", + "currency": "Coins", + "eggNumber": 61, + "goldenThumbnail": "rbxassetid://139879645278890", + "icon": "rbxassetid://126799877377977", + "name": "Hell Egg", "pets": [ [ - "Cool Cat", - 50, - ], - [ - "Cool Corgi", - 35, + "Flamortuus", + 100, ], [ - "Cool Dragon", - 14, + "Demon", + 1, ], [ - "Huge Cool Cat", - 1, + "Hellish Axolotl", + 0.125, + "Great", ], ], - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, + "worldNumber": 1, }, - "configName": "Event Egg 1", + "configName": "61 | Hell Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.017Z", - "hashShort": "f63bb5a976177868", + "dateModified": "2026-04-18T15:56:34.934Z", + "hashShort": "0eb70156278fba6b", }, { - "category": "Other", + "category": "Release", "collection": "Eggs", "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 5, - "icon": "rbxassetid://15249783107", - "name": "Diamond Cat Egg", + "currency": "Coins", + "eggNumber": 60, + "goldenThumbnail": "rbxassetid://99850424197567", + "icon": "rbxassetid://112800809062791", + "name": "Tentacle Egg", "pets": [ [ - "Diamond Cat", - 99, - ], - [ - "Huge Diamond Cat", - 1, + "Hell Bat", + 40, ], - ], - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, - }, - "configName": "Diamond Cat Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.031Z", - "hashShort": "88496f81ac234d88", - }, - { - "category": "Other", - "collection": "Eggs", - "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 5, - "icon": "rbxassetid://15249783107", - "name": "Ultimate Diamond Cat Egg", - "pets": [ [ - "Diamond Cat", - 80, + "Hell Fox", + 10, ], [ - "Huge Diamond Cat", - 20, + "Demon", + 0.01, + "Great", ], ], - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, + "worldNumber": 1, }, - "configName": "Ultimate Diamond Cat Egg", + "configName": "60 | Tentacle Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.034Z", - "hashShort": "608a8ec6927ffe03", + "dateModified": "2026-04-18T15:56:34.930Z", + "hashShort": "a327dec3dd2faf7a", }, { - "category": "Exclusive Eggs", + "category": "Release", "collection": "Eggs", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://16302977915", - "name": "Exclusive Valentine's Egg", + "currency": "Coins", + "eggNumber": 59, + "goldenThumbnail": "rbxassetid://105208420835750", + "icon": "rbxassetid://74649828911824", + "name": "Bone Egg", "pets": [ [ - "Valentines Cat", - 50, - ], - [ - "Cupid Corgi", - 35, - ], - [ - "Heart Balloon Cat", - 13, + "Fire Cat", + 100, ], [ - "Huge Valentines Cat", - 1.25, + "Fire Dog", + 50, ], [ - "Huge Heart Balloon Cat", - 0.7, + "Fire Horse", + 5.5, + "Nice", ], [ - "Titanic Lovemelon", + "Wyvern of Hades", 0.05, + "Great", ], ], - "productIds": { - "10 Exclusive Eggs": 1751326109, - "100 Exclusive Eggs": 1751326271, - "3 Exclusive Eggs": 1751325534, - "Exclusive Egg": 1751325179, - }, - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, + "worldNumber": 1, }, - "configName": "Exclusive Egg 21", + "configName": "59 | Bone Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.875Z", - "hashShort": "640112f11781e32c", + "dateModified": "2026-04-18T15:56:34.937Z", + "hashShort": "a07400a6ddb2c040", }, { - "category": "Exclusive Eggs", + "category": "Release", "collection": "Eggs", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://16290865780", - "name": "Exclusive Super Jelly Egg", + "currency": "Coins", + "eggNumber": 58, + "goldenThumbnail": "rbxassetid://135239810578285", + "icon": "rbxassetid://78768885363269", + "name": "Volcano Egg", "pets": [ [ - "Jelly Axolotl", - 50, - ], - [ - "Jelly Shiba", - 35, + "Hell Chick", + 80, ], [ - "Jelly Monkey", - 13, + "Hell Spider", + 15, ], [ - "Huge Jelly Axolotl", - 1.25, + "Mortuus", + 5, + "Nice", ], [ - "Huge Jelly Monkey", - 0.7, + "Hound of Hades", + 0.1, + "Great", ], [ - "Titanic Jelly Dragon", - 0.05, + "Wyvern of Hades", + 0.005, + "Insane", ], ], - "productIds": { - "10 Exclusive Eggs": 1756074601, - "100 Exclusive Eggs": 1756075345, - "3 Exclusive Eggs": 1756074287, - "Exclusive Egg": 1756074122, - }, - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, + "worldNumber": 1, }, - "configName": "Exclusive Egg 22", + "configName": "58 | Volcano Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.881Z", - "hashShort": "a4ec9f6c8fa0ead0", + "dateModified": "2026-04-18T15:56:34.933Z", + "hashShort": "39ecb36b4a2ca778", }, { - "category": "Update 6", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 114, - "icon": "rbxassetid://15172355963", - "name": "Tech City Egg", + "currency": "Coins", + "eggNumber": 57, + "goldenThumbnail": "rbxassetid://72938932883716", + "icon": "rbxassetid://129403169720531", + "name": "Obsidian Egg", "pets": [ [ - "Cyborg Cat", - 90, + "Three Headed Dragon", + 100, ], [ - "Cyborg Dog", - 9, + "Phoenix", + 3, + "Nice", ], [ - "Cyborg Corgi", + "Hell Spider", 1, "Nice", ], [ - "Cyborg Ducky", - 0.1, + "Hound of Hades", + 0.05, "Great", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "114 | Tech City Egg", + "configName": "57 | Obsidian Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.791Z", - "hashShort": "97d45e4284e27d4f", + "dateModified": "2026-04-18T15:56:34.931Z", + "hashShort": "95053e1973c15229", }, { - "category": "Update 6", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 113, - "icon": "rbxassetid://15172355963", - "name": "Tech Ciruit Egg", + "currency": "Coins", + "eggNumber": 56, + "goldenThumbnail": "rbxassetid://119200695534187", + "icon": "rbxassetid://119380587793282", + "name": "Magma Egg", "pets": [ [ - "Cyborg Cat", - 90, + "Sabretooth Tiger", + 100, ], [ - "Cyborg Dog", - 10, + "Hell Rock", + 50, + ], + [ + "Three Headed Dragon", + 5.5, + "Nice", + ], + [ + "Phoenix", + 5.5, + "Nice", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "113 | Tech Ciruit Egg", + "configName": "56 | Magma Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.783Z", - "hashShort": "54b441df818689c9", + "dateModified": "2026-04-18T15:56:34.925Z", + "hashShort": "6fd790f3fb45c096", }, { - "category": "Update 6", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 115, - "icon": "rbxassetid://15172355963", - "name": "Tech Forest Egg", + "currency": "Coins", + "eggNumber": 55, + "goldenThumbnail": "rbxassetid://126546265059566", + "icon": "rbxassetid://109350612774951", + "name": "Thawed Egg", "pets": [ [ - "Cyborg Corgi", - 90, + "Lava Slime", + 100, ], [ - "Cyborg Ducky", - 9, + "Ice Slime", + 50, ], [ - "Cyborg Squirrel", - 1, + "Sabretooth Tiger", + 5.5, "Nice", ], [ - "Cyborg Bat", - 0.1, + "Angry Yeti", + 5.5, + "Nice", + ], + [ + "Icemortuus", + 0.125, "Great", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "115 | Tech Forest Egg", + "configName": "55 | Thawed Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.776Z", - "hashShort": "fca786cc209dda47", + "dateModified": "2026-04-18T15:56:34.931Z", + "hashShort": "8e5377ea386f101a", }, { - "category": "Update 6", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 116, - "icon": "rbxassetid://15172355963", - "name": "Tech Silo Egg", + "currency": "Coins", + "eggNumber": 54, + "goldenThumbnail": "rbxassetid://111001613138389", + "icon": "rbxassetid://127423923528206", + "name": "Ice Egg", "pets": [ [ - "Cyborg Squirrel", - 90, + "Snowman", + 65, ], [ - "Cyborg Bat", - 9, + "Husky", + 30, ], [ - "Cyborg Piggy", - 1, + "Cheerful Yeti", + 5.5, "Nice", ], [ - "Cyborg Cow", - 0.1, + "Polar Bear", + 0.125, "Great", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "116 | Tech Silo Egg", + "configName": "54 | Ice Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.781Z", - "hashShort": "51ebf703f7caa738", + "dateModified": "2026-04-18T15:56:34.911Z", + "hashShort": "a8d9b2e71d9a7fdc", }, { - "category": "Update 6", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 117, - "icon": "rbxassetid://15172355963", - "name": "Tech Data Egg", + "currency": "Coins", + "eggNumber": 53, + "goldenThumbnail": "rbxassetid://139901516080152", + "icon": "rbxassetid://135149956205948", + "name": "Yeti Egg", "pets": [ [ - "Cyborg Piggy", + "Walrus", 90, ], [ - "Cyborg Cow", - 9, + "Frost Dragon", + 10, ], [ - "Cyber Axolotl", + "Snowman", 1, "Nice", ], [ - "Cyber Ducky", - 0.1, + "Cheerful Yeti", + 0.125, "Great", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "117 | Tech Data Egg", + "configName": "53 | Yeti Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.789Z", - "hashShort": "969d97dfd8b467b8", + "dateModified": "2026-04-18T15:56:34.934Z", + "hashShort": "0cc58454622a3bac", }, { - "category": "Update 6", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 118, - "icon": "rbxassetid://15172355963", - "name": "Tech Cuboid Egg", + "currency": "Coins", + "eggNumber": 52, + "goldenThumbnail": "rbxassetid://133548675848169", + "icon": "rbxassetid://104973917203924", + "name": "Snowman Egg", "pets": [ [ - "Cyber Axolotl", - 70, + "Penguin", + 90, ], [ - "Cyber Slime", - 20, + "Arctic Fox", + 5, ], [ - "Cyber Ducky", - 9, + "Bearserker", + 3, + "Nice", ], [ - "Cyber Dragon", + "Frost Dragon", 1, "Nice", ], [ - "Cyber Fox", - 0.001, + "Snowman", + 0.125, + "Great", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "118 | Tech Cuboid Egg", + "configName": "52 | Snowman Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.786Z", - "hashShort": "7358f562112ac350", + "dateModified": "2026-04-18T15:56:34.923Z", + "hashShort": "66e76b923b0d69a4", }, { - "category": "Update 6", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 120, - "icon": "rbxassetid://15172355963", - "name": "Tech Tree Egg", + "currency": "Coins", + "eggNumber": 51, + "goldenThumbnail": "rbxassetid://125142587310689", + "icon": "rbxassetid://76657381445257", + "name": "Icicle Egg", "pets": [ [ - "Cyber Agony", - 99, + "Snow Squirrel", + 100, ], [ - "Cyber Bear", - 1, + "Puffin", + 50, + ], + [ + "Narwhal", + 5.5, "Nice", ], [ - "Cyber Raccoon", - 0.001, + "Arctic Fox", + 0.125, + "Great", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "120 | Tech Tree Egg", + "configName": "51 | Icicle Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.780Z", - "hashShort": "673005b09394b439", + "dateModified": "2026-04-18T15:56:34.912Z", + "hashShort": "c769eaa3c911df96", }, { - "category": "Update 6", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 119, - "icon": "rbxassetid://15172355963", - "name": "Tech Sprout Egg", + "currency": "Coins", + "eggNumber": 50, + "goldenThumbnail": "rbxassetid://97090131203315", + "icon": "rbxassetid://102586643599840", + "name": "Snow Egg", "pets": [ [ - "Cyber Dragon", - 99, + "Snow Ram", + 100, ], [ - "Cyber Agony", - 1, + "Snow Dog", + 30, + ], + [ + "Snow Cat", + 15, + ], + [ + "Snow Leopard", + 2.25, "Nice", ], [ - "Cyber Bunny", - 0.001, + "Narwhal", + 0.09, + "Great", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "119 | Tech Sprout Egg", + "configName": "50 | Snow Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.770Z", - "hashShort": "6b3a6778db09db96", + "dateModified": "2026-04-18T15:56:34.895Z", + "hashShort": "37abe571fa852030", }, { - "category": "Update 6", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 121, - "icon": "rbxassetid://15172355963", - "name": "Tech Incubator Egg", + "currency": "Coins", + "eggNumber": 49, + "goldenThumbnail": "rbxassetid://104693718871868", + "icon": "rbxassetid://90188150324617", + "name": "Melted Egg", "pets": [ [ - "Cyber Bear", - 99, + "Deer", + 100, ], [ - "Hi-Tech Bee", - 1, + "Moose", + 15, + ], + [ + "Snow Ram", + 2.35, "Nice", ], [ - "Hi-Tech Ladybug", - 0.1, + "Fawn", + 0.133, "Great", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "121 | Tech Incubator Egg", + "configName": "49 | Melted Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.770Z", - "hashShort": "43f49dee7c87b5b1", + "dateModified": "2026-04-18T15:56:34.907Z", + "hashShort": "d72db3111732b9f2", }, { - "category": "Update 6", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 122, - "icon": "rbxassetid://15172355963", - "name": "Tech Overgrown Egg", + "currency": "Coins", + "eggNumber": 48, + "goldenThumbnail": "rbxassetid://108811620103800", + "icon": "rbxassetid://83485227424607", + "name": "Hyena Egg", "pets": [ [ - "Hi-Tech Bee", - 90, + "Bull", + 100, ], [ - "Hi-Tech Ladybug", - 9, + "Goat", + 14, ], [ - "Hi-Tech Monkey", - 1, + "Bison", + 1.5, "Nice", ], - [ - "Hi-Tech Parrot", - 0.1, - "Great", - ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "122 | Tech Overgrown Egg", + "configName": "48 | Hyena Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.769Z", - "hashShort": "3a6ecaf0d24a3326", + "dateModified": "2026-04-18T15:56:35.739Z", + "hashShort": "5793c29c964b7b6a", }, { - "category": "Update 6", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 123, - "icon": "rbxassetid://15172355963", - "name": "Tech Magma Egg", + "currency": "Coins", + "eggNumber": 47, + "goldenThumbnail": "rbxassetid://128041786408302", + "icon": "rbxassetid://106744852745821", + "name": "Canyon Egg", "pets": [ [ - "Hi-Tech Monkey", - 90, + "Puma", + 100, ], [ - "Hi-Tech Parrot", - 9, + "Horse", + 15, ], [ - "Hi-Tech Sloth", - 1, + "Bull", + 2.25, "Nice", ], [ - "Hi-Tech Tiger", - 0.1, - "Great", + "Cowboy Dog", + 1.8, + "Nice", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "123 | Tech Magma Egg", + "configName": "47 | Canyon Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.782Z", - "hashShort": "cb8c60ecc1b64b2f", + "dateModified": "2026-04-18T15:56:35.740Z", + "hashShort": "24405158c58198ff", }, { - "category": "Update 6", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 124, - "icon": "rbxassetid://15172355963", - "name": "Tech Oasis Egg", + "currency": "Coins", + "eggNumber": 46, + "goldenThumbnail": "rbxassetid://119191901344165", + "icon": "rbxassetid://125229024622810", + "name": "Cowboy Egg", "pets": [ [ - "Hi-Tech Sloth", - 90, + "Scorpion", + 100, ], [ - "Hi-Tech Tiger", - 9, + "Desert Ram", + 23, ], [ - "Hi-Tech Flamingo", - 1, + "Puma", + 2, "Nice", ], [ - "Hi-Tech Elephant", - 0.1, - "Great", + "Honey Badger", + 1.75, + "Nice", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "124 | Tech Oasis Egg", + "configName": "46 | Cowboy Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.784Z", - "hashShort": "8545fdfedb6bde3e", + "dateModified": "2026-04-18T15:56:35.727Z", + "hashShort": "992d8d5e20a3672e", }, { - "category": "Update 6", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 125, - "icon": "rbxassetid://15172355963", - "name": "Tech Palm Egg", + "currency": "Coins", + "eggNumber": 45, + "goldenThumbnail": "rbxassetid://135627883146896", + "icon": "rbxassetid://107144415733819", + "name": "Sandstone Egg", "pets": [ [ - "Hi-Tech Flamingo", - 90, + "Desert Cat", + 100, ], [ - "Hi-Tech Elephant", - 9, + "Camel", + 17, ], [ - "Abyssal Axolotl", - 1, + "Scorpion", + 1.9, "Nice", ], [ - "Abyssal Seal", - 0.1, + "Sphinx", + 0.0875, "Great", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "125 | Tech Palm Egg", + "configName": "45 | Sandstone Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.789Z", - "hashShort": "ca14ae9d1bdf8469", + "dateModified": "2026-04-18T15:56:35.768Z", + "hashShort": "2c18ef8827c68b23", }, { - "category": "Update 6", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 126, - "icon": "rbxassetid://15172355963", - "name": "Tech Coral Egg", + "currency": "Coins", + "eggNumber": 44, + "goldenThumbnail": "rbxassetid://92315768406028", + "icon": "rbxassetid://73143560243992", + "name": "Egyptian Egg", "pets": [ [ - "Abyssal Axolotl", - 90, + "Dino", + 100, ], [ - "Abyssal Seal", - 9, + "Hyena", + 18, ], [ - "Abyssal Pufferfish", - 1, + "Spitting Dino", + 2.25, "Nice", ], [ - "Abyssal Shark", - 0.1, + "Fossil Dragon", + 0.15, "Great", ], + [ + "Dino Cat", + 0.001, + "Insane", + ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "126 | Tech Coral Egg", + "configName": "44 | Egyptian Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.782Z", - "hashShort": "3528b2d6d1457ef4", + "dateModified": "2026-04-18T15:56:35.726Z", + "hashShort": "13d1508c9f61cbfe", }, { - "category": "Update 6", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 127, - "icon": "rbxassetid://15172355963", - "name": "Tech Ship Egg", + "currency": "Coins", + "eggNumber": 43, + "goldenThumbnail": "rbxassetid://104761973736550", + "icon": "rbxassetid://86171303775588", + "name": "Fossil Egg", "pets": [ [ - "Abyssal Pufferfish", - 90, + "Rhino", + 100, ], [ - "Abyssal Shark", - 9, + "Armadillo", + 17, ], [ - "Abyssal Fish", - 1, + "Kangaroo", + 1.8, "Nice", ], [ - "Abyssal Dolphin", - 0.1, + "Hyena", + 0.9, "Great", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "127 | Tech Ship Egg", + "configName": "43 | Fossil Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.787Z", - "hashShort": "cf9411b665502ea9", + "dateModified": "2026-04-18T15:56:35.710Z", + "hashShort": "6e228a9bbf934ee7", }, { - "category": "Update 6", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 128, - "icon": "rbxassetid://15172355963", - "name": "Tech Ruins Egg", + "currency": "Coins", + "eggNumber": 42, + "goldenThumbnail": "rbxassetid://138593357587170", + "icon": "rbxassetid://97227484041526", + "name": "Cactus Egg", "pets": [ [ - "Abyssal Fish", - 90, + "Gorilla", + 100, ], [ - "Abyssal Dolphin", - 9, + "Quokka", + 18, ], [ - "Abyssal Parrot", - 1, + "Rhino", + 1.5, "Nice", ], - [ - "Abyssal Kraken", - 0.1, - "Great", - ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "128 | Tech Ruins Egg", + "configName": "42 | Cactus Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.785Z", - "hashShort": "63e0722451f5f7e8", + "dateModified": "2026-04-18T15:56:35.738Z", + "hashShort": "3cc43457d4fb3e08", }, { - "category": "Update 6", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 129, - "icon": "rbxassetid://15172355963", - "name": "Tech Dusty Egg", + "currency": "Coins", + "eggNumber": 41, + "goldenThumbnail": "rbxassetid://77555498360309", + "icon": "rbxassetid://82331605932701", + "name": "Cheetah Egg", "pets": [ [ - "Abyssal Parrot", - 90, + "Gazelle", + 100, ], [ - "Abyssal Kraken", - 9, + "Quokka", + 15, ], [ - "Tech Camel", - 1, + "Cheetah", + 0.8, "Nice", ], [ - "Tech Puma", - 0.1, + "Rhino", + 0.2, "Great", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "129 | Tech Dusty Egg", + "configName": "41 | Cheetah Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.777Z", - "hashShort": "2ac0eff87df166df", + "dateModified": "2026-04-18T15:56:35.717Z", + "hashShort": "9167d0bfc40110aa", }, { - "category": "Update 6", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 130, - "icon": "rbxassetid://15172355963", - "name": "Tech Luminati Egg", + "currency": "Coins", + "eggNumber": 40, + "goldenThumbnail": "rbxassetid://115759359614796", + "icon": "rbxassetid://121032284426344", + "name": "Zebra Egg", "pets": [ [ - "Tech Camel", - 90, + "Giraffe", + 100, ], [ - "Tech Puma", - 9, + "Zebra", + 20, ], [ - "Tech Scorpion", - 1, + "African Wild Dog", + 8.5, "Nice", ], [ - "Tech Sphinx", - 0.1, + "Cheetah", + 0.15, "Great", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "130 | Tech Luminati Egg", + "configName": "40 | Zebra Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.788Z", - "hashShort": "54c88ca98f95feb0", + "dateModified": "2026-04-18T15:56:35.714Z", + "hashShort": "81106c391f402436", }, { - "category": "Update 6", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 131, - "icon": "rbxassetid://15172355963", - "name": "Tech Cactus Egg", + "currency": "Coins", + "eggNumber": 39, + "goldenThumbnail": "rbxassetid://102982762085188", + "icon": "rbxassetid://73815873934820", + "name": "Ship Egg", "pets": [ [ - "Tech Scorpion", - 90, + "Pirate Cat", + 100, ], [ - "Tech Sphinx", - 9, + "Pirate Panda", + 15, ], [ - "Tech Horse", - 1, + "Pirate Parrot", + 2.5, "Nice", ], [ - "Tech Bull", - 0.1, - "Great", + "African Wild Dog", + 1.35, + "Nice", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "131 | Tech Cactus Egg", + "configName": "39 | Ship Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.778Z", - "hashShort": "f7c13a59dd1efb2c", + "dateModified": "2026-04-18T15:56:35.723Z", + "hashShort": "13a519ed3a1f1ca4", }, { - "category": "Update 6", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 132, - "icon": "rbxassetid://15172355963", - "name": "Tech Cowboy Egg", + "currency": "Coins", + "eggNumber": 38, + "goldenThumbnail": "rbxassetid://74060044129432", + "icon": "rbxassetid://136816159694171", + "name": "Pirate Egg", "pets": [ [ - "Tech Horse", - 90, + "Sailor Shark", + 100, ], [ - "Tech Bull", - 9, + "Pirate Cat", + 4.25, ], [ - "Tech Cowboy Cat", - 1, + "Sailor Dolphin", + 1.9, "Nice", ], [ - "Tech Cowboy Dog", - 0.1, + "Hydra Axolotl", + 0.11, "Great", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "132 | Tech Cowboy Egg", + "configName": "38 | Pirate Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.777Z", - "hashShort": "14bd2c8440ac7d03", + "dateModified": "2026-04-18T15:56:35.721Z", + "hashShort": "37db02679064c2a8", }, { - "category": "Update 6", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 133, - "icon": "rbxassetid://15172355963", - "name": "Tech Canyon Egg", + "currency": "Coins", + "eggNumber": 37, + "goldenThumbnail": "rbxassetid://97276787245299", + "icon": "rbxassetid://98524230688828", + "name": "Sunny Egg", "pets": [ [ - "Tech Cowboy Cat", - 90, + "Turtle in a Bucket", + 100, ], [ - "Tech Cowboy Dog", - 9, + "Fish in a Bucket", + 23, ], [ - "Tech Goat", - 1, + "Sailor Shark", + 2.5, "Nice", ], [ - "Tech Griffin", - 0.1, - "Great", + "Hydra Axolotl", + 0.01, + "Insane", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "133 | Tech Canyon Egg", + "configName": "37 | Sunny Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.784Z", - "hashShort": "7d48803ff139d77a", + "dateModified": "2026-04-18T15:56:35.724Z", + "hashShort": "d88da4494d12ed6a", }, { - "category": "Update 6", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 134, - "icon": "rbxassetid://15172355963", - "name": "Tech Snow Egg", + "currency": "Coins", + "eggNumber": 36, + "goldenThumbnail": "rbxassetid://106799838597670", + "icon": "rbxassetid://73668348743110", + "name": "Sand Bucket Egg", "pets": [ [ - "Tech Goat", - 70, - ], - [ - "Frostbyte Snow Ram", - 20, + "Sandcastle Cat", + 100, ], [ - "Tech Griffin", - 9, + "Sandcastle Dog", + 25, ], [ - "Frostbyte Fox", - 1, + "Fish in a Bucket", + 2.5, "Nice", ], [ - "Frostbyte Dragon", + "Tiki Dominus", 0.1, "Great", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "134 | Tech Snow Egg", + "configName": "36 | Sand Bucket Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.779Z", - "hashShort": "70ea35870beec9b9", + "dateModified": "2026-04-18T15:56:35.722Z", + "hashShort": "68a515db503a58da", }, { - "category": "Update 6", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 135, - "icon": "rbxassetid://15172355963", - "name": "Tech Mossy Egg", + "currency": "Coins", + "eggNumber": 35, + "goldenThumbnail": "rbxassetid://109196090488330", + "icon": "rbxassetid://88227393474010", + "name": "Tiki Egg", "pets": [ [ - "Frostbyte Fox", - 90, + "Luau Cat", + 100, ], [ - "Frostbyte Dragon", - 9, + "Luau Seal", + 25, ], [ - "Frostbyte Deer", - 1, + "Pineapple Cat", + 2.5, "Nice", ], [ - "Frostbyte Snow Leopard", - 0.1, - "Great", + "Tiki Dominus", + 0.025, + "Insane", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "135 | Tech Mossy Egg", + "configName": "35 | Tiki Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.774Z", - "hashShort": "0dd621707861f516", + "dateModified": "2026-04-18T15:56:35.728Z", + "hashShort": "25866b2a25a26fbc", }, { - "category": "Update 6", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 136, - "icon": "rbxassetid://15172355963", - "name": "Tech Ice Crystal Egg", + "currency": "Coins", + "eggNumber": 34, + "goldenThumbnail": "rbxassetid://100568961907077", + "icon": "rbxassetid://116458171059664", + "name": "Coconut Egg", "pets": [ [ - "Frostbyte Deer", - 90, + "Flower Gecko", + 100, ], [ - "Frostbyte Snow Leopard", - 9, + "Shark", + 25, ], [ - "Frostbyte Husky", - 1, + "Midnight Axolotl", + 3.1, "Nice", ], [ - "Frostbyte Bat", - 0.1, + "Pineapple Cat", + 0.15, "Great", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "136 | Tech Ice Crystal Egg", + "configName": "34 | Coconut Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.768Z", - "hashShort": "014c588fcbdc5e26", + "dateModified": "2026-04-18T15:56:35.742Z", + "hashShort": "5459c1088bf25fba", }, { - "category": "Update 6", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 137, - "icon": "rbxassetid://15172355963", - "name": "Tech Flurry Egg", + "currency": "Coins", + "eggNumber": 33, + "goldenThumbnail": "rbxassetid://118015802287305", + "icon": "rbxassetid://101827094763458", + "name": "Beach Egg", "pets": [ [ - "Frostbyte Husky", - 70, + "Moray Eel", + 100, ], [ - "Frostbyte Bat", - 29, + "Whale Shark", + 30, ], [ - "Frostbyte Bear", - 1, + "Shark", + 3, "Nice", ], [ - "Frostbyte Yeti", + "Midnight Axolotl", 0.1, "Great", ], - [ - "Frostbyte Snowman", - 0.002, - ], - [ - "M-6 PROTOTYPE", - 0.00004, - ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "137 | Tech Flurry Egg", + "configName": "33 | Beach Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.924Z", - "hashShort": "920c2fa9e97c113a", + "dateModified": "2026-04-18T15:56:35.720Z", + "hashShort": "ae9038c23c4065d0", }, { - "category": "Machine Eggs", + "category": "Release", "collection": "Eggs", "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 5, - "icon": "rbxassetid://16481063599", - "name": "Huge Machine Blurred Dominus Egg", + "currency": "Coins", + "eggNumber": 32, + "goldenThumbnail": "rbxassetid://91567168372426", + "icon": "rbxassetid://131361315789506", + "name": "Tropical Egg", "pets": [ [ - "Huge Bat", - 50, - ], - [ - "Huge Willow Wisp", - 30, - ], - [ - "Huge Pastel Elephant", - 15, + "Mermaid Cat", + 100, ], [ - "Huge Red Fluffy", - 4.5, + "Poseidon Dog", + 35, ], [ - "Huge Blurred Dominus", - 0.5, + "Poseidon Corgi", + 2.5, + "Nice", ], ], - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, + "worldNumber": 1, }, - "configName": "Huge Machine Egg 3", + "configName": "32 | Tropical Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.027Z", - "hashShort": "651d728e838740a7", + "dateModified": "2026-04-18T15:56:35.748Z", + "hashShort": "70d6c88ede03d97f", }, { - "category": "Exclusive Eggs", + "category": "Release", "collection": "Eggs", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://16756520769", - "name": "Exclusive Superhero Egg", + "currency": "Coins", + "eggNumber": 31, + "goldenThumbnail": "rbxassetid://102164368223580", + "icon": "rbxassetid://110081654478801", + "name": "Atlantis Egg", "pets": [ [ - "Jester Dog", - 50, - ], - [ - "Thunder Bear", - 35, - ], - [ - "Super Tiger", - 13, - ], - [ - "Huge Jester Dog", - 1.25, + "Kraken", + 100, ], [ - "Huge Super Tiger", - 0.7, + "Stingray", + 25, ], [ - "Titanic Bat Cat", - 0.05, + "Hydra", + 3, + "Nice", ], ], - "productIds": { - "10 Exclusive Eggs": 1776229089, - "100 Exclusive Eggs": 1776229324, - "3 Exclusive Eggs": 1776227880, - "Exclusive Egg": 1776227705, - }, - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, + "worldNumber": 1, }, - "configName": "Exclusive Egg 23", + "configName": "31 | Atlantis Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.895Z", - "hashShort": "f46309ae4aa5ee66", + "dateModified": "2026-04-18T15:56:35.743Z", + "hashShort": "eb93be9ed6e17540", }, { - "category": "Update 7", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 138, - "icon": "rbxassetid://15172355963", - "name": "Tech Ice Circuit Egg", + "currency": "Coins", + "eggNumber": 30, + "goldenThumbnail": "rbxassetid://112539217508719", + "icon": "rbxassetid://75682916566553", + "name": "Anchor Egg", "pets": [ [ - "Frostbyte Cat", - 90, + "Goldfish", + 100, ], [ - "Frostbyte Penguin", - 10, + "Jellyfish", + 50, + ], + [ + "Mantis Shrimp", + 15, + ], + [ + "Kraken", + 3.25, + "Nice", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "138 | Tech Ice Circuit Egg", + "configName": "30 | Anchor Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.935Z", - "hashShort": "ddc9e6aeaf3b8d14", + "dateModified": "2026-04-18T15:56:35.727Z", + "hashShort": "07c77ada0e719776", }, { - "category": "Update 7", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 139, - "icon": "rbxassetid://15172355963", - "name": "Tech Glacier Egg", + "currency": "Coins", + "eggNumber": 29, + "goldenThumbnail": "rbxassetid://91472403589404", + "icon": "rbxassetid://129820477018326", + "name": "Coral Egg", "pets": [ [ - "Frostbyte Cat", - 90, + "Blue Fish", + 100, ], [ - "Frostbyte Penguin", - 9, + "Green Fish", + 50, ], [ - "Frostbyte Walrus", - 1, + "Goldfish", + 5, "Nice", ], [ - "Frostbyte Narwhal", - 0.1, - "Great", + "Axolotuus", + 2.5, + "Nice", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "139 | Tech Glacier Egg", + "configName": "29 | Coral Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.921Z", - "hashShort": "06e65a441d24889a", + "dateModified": "2026-04-18T15:56:35.724Z", + "hashShort": "06f1cd2408e2d815", }, { - "category": "Update 7", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 140, - "icon": "rbxassetid://15172355963", - "name": "Tech Melted Egg Egg", + "currency": "Coins", + "eggNumber": 28, + "goldenThumbnail": "rbxassetid://121749213898331", + "icon": "rbxassetid://135707724843928", + "name": "Beach Ball Egg", "pets": [ [ - "Frostbyte Walrus", - 90, + "Seal", + 100, ], [ - "Frostbyte Narwhal", - 9, + "Dolphin", + 35, ], [ - "Melted Slime", - 1, + "Pufferfish", + 3, "Nice", ], [ - "Melted Rock", - 0.1, - "Great", + "Axolotuus", + 0.02, + "Insane", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "140 | Tech Melted Egg Egg", + "configName": "28 | Beach Ball Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.931Z", - "hashShort": "ff0efccba2f5bd1f", + "dateModified": "2026-04-18T15:56:35.764Z", + "hashShort": "b54581d285240425", }, { - "category": "Update 7", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 141, - "icon": "rbxassetid://15172355963", - "name": "Tech Nexus Egg", + "currency": "Coins", + "eggNumber": 10, + "goldenThumbnail": "rbxassetid://91776881354457", + "icon": "rbxassetid://112097066297652", + "name": "Corgi Egg", "pets": [ [ - "Melted Slime", - 90, - ], - [ - "Melted Rock", - 9, + "Cow", + 100, ], [ - "Happy Computer", - 1, + "Flamingo", + 6, "Nice", ], [ - "Evil Computer", - 0.1, - "Great", + "Ladybug", + 4, + "Nice", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "141 | Tech Nexus Egg", + "configName": "10 | Corgi Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.931Z", - "hashShort": "df45d35fc396bb28", + "dateModified": "2026-04-18T15:56:35.740Z", + "hashShort": "33544b33b72b2045", }, { - "category": "Update 7", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 142, - "icon": "rbxassetid://15172355963", - "name": "Nuclear Crack Egg", + "currency": "Coins", + "eggNumber": 11, + "goldenThumbnail": "rbxassetid://112381301125125", + "icon": "rbxassetid://97434228982848", + "name": "Cat Egg", "pets": [ [ - "Happy Computer", - 90, + "Turtle", + 100, ], [ - "Evil Computer", - 9, + "Ladybug", + 65, ], [ - "Nuclear Axolotl", - 1, - "Nice", + "Hedgehog", + 25, ], [ - "Nuclear Dragon", - 0.1, - "Great", + "Ugly Duckling", + 9, + "Nice", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "142 | Nuclear Crack Egg", + "configName": "11 | Cat Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.921Z", - "hashShort": "f455c26a8e309e75", + "dateModified": "2026-04-18T15:56:35.713Z", + "hashShort": "9e2748463d864bf2", }, { - "category": "Update 7", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 143, - "icon": "rbxassetid://15172355963", - "name": "Nuclear Forest Egg", + "currency": "Coins", + "eggNumber": 12, + "goldenThumbnail": "rbxassetid://114529326161785", + "icon": "rbxassetid://116839000568144", + "name": "Dog Egg", "pets": [ [ - "Nuclear Axolotl", - 90, + "Ugly Duckling", + 100, ], [ - "Nuclear Dragon", - 9, + "Froggy", + 50, ], [ - "Nuclear Squirrel", - 1, + "Umbrella Dog", + 10, "Nice", ], - [ - "Nuclear Wolf", - 0.1, - "Great", - ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "143 | Nuclear Forest Egg", + "configName": "12 | Dog Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.933Z", - "hashShort": "d411f2d4e91042fb", + "dateModified": "2026-04-18T15:56:35.719Z", + "hashShort": "f5b400f79447413b", }, { - "category": "Update 7", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 144, - "icon": "rbxassetid://15172355963", - "name": "Nuclear Mine Egg", + "currency": "Coins", + "eggNumber": 13, + "goldenThumbnail": "rbxassetid://88999994161371", + "icon": "rbxassetid://124035845772321", + "name": "Dragon Egg", "pets": [ [ - "Nuclear Squirrel", - 90, + "Umbrella Dog", + 100, ], [ - "Nuclear Wolf", - 9, + "Umbrella Cat", + 100, ], [ - "Nuclear Mining Cat", - 1, + "Platypus", + 6, "Nice", ], [ - "Nuclear Mining Dog", + "Dragon", 0.1, "Great", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "144 | Nuclear Mine Egg", + "configName": "13 | Dragon Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.921Z", - "hashShort": "ec217707aaf716f6", + "dateModified": "2026-04-18T15:56:35.741Z", + "hashShort": "bd4052763c7b4c8a", }, { - "category": "Update 7", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 162, - "icon": "rbxassetid://15172355963", - "name": "Alien Lab Egg", + "currency": "Coins", + "eggNumber": 14, + "goldenThumbnail": "rbxassetid://95814496566737", + "icon": "rbxassetid://89918443906499", + "name": "Rock Egg", "pets": [ [ - "Alien Axolotl", - 70, + "Platypus", + 100, ], [ - "Alien Parasite", - 29, + "Firefly", + 40, ], [ - "Bleebo The Alien", - 1, + "Dragon", + 6, "Nice", ], + ], + "worldNumber": 1, + }, + "configName": "14 | Rock Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:35.753Z", + "hashShort": "f36e4674302ef042", + }, + { + "category": "Release", + "collection": "Eggs", + "configData": { + "currency": "Coins", + "eggNumber": 15, + "goldenThumbnail": "rbxassetid://74454508965653", + "icon": "rbxassetid://99618105968776", + "name": "Geode Egg", + "pets": [ + [ + "Mining Dog", + 100, + ], [ - "Jelly Alien", - 0.002, - "Insane", + "Happy Rock", + 40, ], [ - "Meebo in a Spaceship", - 0.00004, - "Insane", + "Demolition Cat", + 0.8, + "Great", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "162 | Alien Lab Egg", + "configName": "15 | Geode Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.937Z", - "hashShort": "ea5a81d342697922", + "dateModified": "2026-04-18T15:56:35.708Z", + "hashShort": "c4821bdd2402c99e", }, { - "category": "Update 7", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 146, - "icon": "rbxassetid://15172355963", - "name": "Tech Rocket Egg", + "currency": "Coins", + "eggNumber": 16, + "goldenThumbnail": "rbxassetid://75484716675751", + "icon": "rbxassetid://103510132611788", + "name": "Hut Egg", "pets": [ [ - "Nuclear Mortuus", - 90, + "Sapphire Carbuncle", + 115, ], [ - "Nuclear Agony", - 9, + "Demolition Cat", + 80, ], [ - "Astronaut Cat", - 1, - "Nice", + "Emerald Carbuncle", + 30, ], [ - "Astronaut Dog", + "Willow Wisp", 0.1, "Great", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "146 | Tech Rocket Egg", + "configName": "16 | Hut Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.931Z", - "hashShort": "643feeb735b5bfdc", + "dateModified": "2026-04-18T15:56:35.725Z", + "hashShort": "7676a67bb70c0f48", }, { - "category": "Update 7", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 147, - "icon": "rbxassetid://15172355963", - "name": "Tech Planets Egg", + "currency": "Coins", + "eggNumber": 17, + "goldenThumbnail": "rbxassetid://98815010605865", + "icon": "rbxassetid://106442340008071", + "name": "Grave Egg", "pets": [ [ - "Astronaut Cat", - 90, + "Bat", + 100, ], [ - "Astronaut Dog", - 9, + "Green Cobra", + 60, ], [ - "Meebo The Alien", - 1, + "Willow Wisp", + 6, "Nice", ], - [ - "Star Surfer", - 0.1, - "Great", - ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "147 | Tech Planets Egg", + "configName": "17 | Grave Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.915Z", - "hashShort": "16ebb688e95fb510", + "dateModified": "2026-04-18T15:56:35.737Z", + "hashShort": "2fe69955fd395225", }, { - "category": "Update 7", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 148, - "icon": "rbxassetid://15172355963", - "name": "Tech Moon Egg", + "currency": "Coins", + "eggNumber": 18, + "goldenThumbnail": "rbxassetid://106614295723829", + "icon": "rbxassetid://92877702247987", + "name": "Spike Egg", "pets": [ [ - "Meebo The Alien", - 90, + "Black Bear", + 100, ], [ - "Star Surfer", - 9, + "Griffin", + 60, ], [ - "Lunar Fox", + "Guilded Raven", 1, "Nice", ], - [ - "Lunar Deer", - 0.1, - "Great", - ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "148 | Tech Moon Egg", + "configName": "18 | Spike Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.935Z", - "hashShort": "b6312b1e6919ed3f", + "dateModified": "2026-04-18T15:56:35.712Z", + "hashShort": "dba611869b1a30cc", }, { - "category": "Update 7", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 149, - "icon": "rbxassetid://15172355963", - "name": "Tech Mars Egg", + "currency": "Coins", + "eggNumber": 19, + "goldenThumbnail": "rbxassetid://77598625413079", + "icon": "rbxassetid://121612885311930", + "name": "Sprout Egg", "pets": [ [ - "Lunar Fox", - 90, + "Black Widow", + 100, ], [ - "Lunar Deer", - 9, + "Guilded Raven", + 70, ], [ - "Red Fluffy", - 1, + "Shadow Griffin", + 6, "Nice", ], [ - "Red Woofy", + "Agony", 0.1, "Great", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "149 | Tech Mars Egg", + "configName": "19 | Sprout Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.926Z", - "hashShort": "1aec4e439c83311d", + "dateModified": "2026-04-18T15:56:35.718Z", + "hashShort": "777200ea2699357b", }, { - "category": "Update 7", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 150, - "icon": "rbxassetid://15172355963", - "name": "Tech Saturn Egg", + "currency": "Coins", + "eggNumber": 20, + "goldenThumbnail": "rbxassetid://118262475424945", + "icon": "rbxassetid://75133385563332", + "name": "Mushroom Egg", "pets": [ [ - "Red Fluffy", - 90, + "Slime", + 100, ], [ - "Red Woofy", - 9, + "Cyclops", + 100, ], [ - "Blue Fluffy", - 1, + "Shadow Griffin", + 40, + ], + [ + "Agony", + 7.5, "Nice", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "150 | Tech Saturn Egg", + "configName": "20 | Mushroom Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.930Z", - "hashShort": "2cfeaddb8337444d", + "dateModified": "2026-04-18T15:56:35.720Z", + "hashShort": "91a46d2b32fecd23", }, { - "category": "Update 7", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 151, - "icon": "rbxassetid://15172355963", - "name": "Tech Comet Egg", + "currency": "Coins", + "eggNumber": 21, + "goldenThumbnail": "rbxassetid://105255605470540", + "icon": "rbxassetid://123899392225725", + "name": "Spirit Egg", "pets": [ [ - "Blue Fluffy", - 99, + "Mushroom Raccoon", + 100, ], [ - "Comet Cyclops", - 1, - "Nice", + "Enchanted Cat", + 50, ], [ - "Comet Agony", - 0.1, - "Great", + "Enchanted Elephant", + 25, + ], + [ + "Enchanted Deer", + 1, + "Nice", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "151 | Tech Comet Egg", + "configName": "21 | Spirit Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.920Z", - "hashShort": "4d7d3ec6c56a7dd0", + "dateModified": "2026-04-18T15:56:35.717Z", + "hashShort": "f4541378c3d6ed81", }, { - "category": "Update 7", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 152, - "icon": "rbxassetid://15172355963", - "name": "Tech Galaxy Egg", + "currency": "Coins", + "eggNumber": 22, + "goldenThumbnail": "rbxassetid://94995660397619", + "icon": "rbxassetid://74166291176002", + "name": "Crimson Egg", "pets": [ [ - "Comet Cyclops", - 90, + "Purple Cobra", + 115, ], [ - "Comet Agony", - 9, + "Enchanted Deer", + 55, ], [ - "Astral Axolotl", - 1, + "Butterfly", + 7, "Nice", ], - [ - "Galaxy Fox", - 0.1, - "Great", - ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "152 | Tech Galaxy Egg", + "configName": "22 | Crimson Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.928Z", - "hashShort": "247ff07cccae38a2", + "dateModified": "2026-04-18T15:56:35.749Z", + "hashShort": "9b6217601b8c7947", }, { - "category": "Update 7", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 153, - "icon": "rbxassetid://15172355963", - "name": "Electric Garden Egg", + "currency": "Coins", + "eggNumber": 23, + "goldenThumbnail": "rbxassetid://71746181943471", + "icon": "rbxassetid://134138603027555", + "name": "Overgrown Egg", "pets": [ [ - "Astral Axolotl", - 90, + "Butterfly", + 100, ], [ - "Galaxy Fox", - 9, + "Peacock", + 65, ], [ - "Electric Fox", - 1, + "Bobcat", + 7, "Nice", ], [ - "Electric Bunny", + "Mystical Fox", 0.1, "Great", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "153 | Electric Garden Egg", + "configName": "23 | Overgrown Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.916Z", - "hashShort": "72d3d646c00ed07b", + "dateModified": "2026-04-18T15:56:35.731Z", + "hashShort": "f355d19c34c0e1e5", }, { - "category": "Update 7", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 154, - "icon": "rbxassetid://15172355963", - "name": "Electric City Egg", + "currency": "Coins", + "eggNumber": 24, + "goldenThumbnail": "rbxassetid://71539787857633", + "icon": "rbxassetid://97595319574936", + "name": "Mossy Egg", "pets": [ [ - "Electric Fox", - 90, + "Bobcat", + 100, ], [ - "Electric Bunny", - 9, + "Chimpanzee", + 65, ], [ - "Electric Bear", - 1, - "Nice", + "Panther", + 30, ], [ - "Electric Griffin", - 0.1, - "Great", + "Mystical Fox", + 4.5, + "Nice", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "154 | Electric City Egg", + "configName": "24 | Mossy Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.936Z", - "hashShort": "ee45e0b90a63ee5f", + "dateModified": "2026-04-18T15:56:35.750Z", + "hashShort": "f0168ac31c9a60a5", }, { - "category": "Update 7", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 155, - "icon": "rbxassetid://15172355963", - "name": "Electric Forest Egg", + "currency": "Coins", + "eggNumber": 25, + "goldenThumbnail": "rbxassetid://115320071664246", + "icon": "rbxassetid://111489307088714", + "name": "Jungle Egg", "pets": [ [ - "Electric Bear", - 90, + "Sloth", + 100, ], [ - "Electric Griffin", - 9, + "Lion", + 65, ], [ - "Electric Cat", - 1, + "Jaguar", + 4.5, "Nice", ], - [ - "Electric Corgi", - 0.1, - "Great", - ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "155 | Electric Forest Egg", + "configName": "25 | Jungle Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.937Z", - "hashShort": "aa1a361742a9d025", + "dateModified": "2026-04-18T15:56:35.716Z", + "hashShort": "b3faf43f288596b7", }, { - "category": "Update 7", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 156, - "icon": "rbxassetid://15172355963", - "name": "Electric Egg", + "currency": "Coins", + "eggNumber": 26, + "goldenThumbnail": "rbxassetid://101144876942365", + "icon": "rbxassetid://73253088396002", + "name": "Sandcastle Egg", "pets": [ [ - "Electric Cat", - 90, + "Lemur", + 100, ], [ - "Electric Corgi", - 9, + "Jaguar", + 30, ], [ - "Electric Unicorn", - 1, + "Crocodile", + 3, "Nice", ], [ - "Electric Dragon", - 0.1, + "King Cobra", + 0.125, "Great", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "156 | Electric Egg", + "configName": "26 | Sandcastle Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.934Z", - "hashShort": "e7dec5a688d696fa", + "dateModified": "2026-04-18T15:56:35.753Z", + "hashShort": "3731e33af34479a3", }, { - "category": "Update 7", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 157, - "icon": "rbxassetid://15172355963", - "name": "Tech Factory Egg", + "currency": "Coins", + "eggNumber": 27, + "goldenThumbnail": "rbxassetid://97807827765902", + "icon": "rbxassetid://104354461883682", + "name": "Palm Tree Egg", "pets": [ [ - "Electric Unicorn", - 90, + "Gecko", + 100, ], [ - "Electric Dragon", - 9, + "Hippo", + 50, ], [ - "Robot", - 1, + "Crocodile", + 15, "Nice", ], - [ - "M-2 PROTOTYPE", - 0.1, - "Great", - ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "157 | Tech Factory Egg", + "configName": "27 | Palm Tree Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.917Z", - "hashShort": "3174231b07d28892", + "dateModified": "2026-04-18T15:56:35.756Z", + "hashShort": "6b1bf31363c3c0de", }, { - "category": "Update 7", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 158, - "icon": "rbxassetid://15172355963", - "name": "Tech Robot Egg", + "currency": "Coins", + "eggNumber": 1, + "goldenThumbnail": "rbxassetid://100650746484919", + "icon": "rbxassetid://83306928980940", + "name": "Cracked Egg", "pets": [ [ - "Robot", - 90, + "Cat", + 1, ], [ - "M-2 PROTOTYPE", - 9, + "Dog", + 1, ], [ - "A-36", + "Corgi", 1, - "Nice", ], [ - "M-10 PROTOTYPE", - 0.1, - "Great", + "Axolotl", + 1, ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "158 | Tech Robot Egg", + "configName": "1 | Cracked Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.923Z", - "hashShort": "07bf25a35afea1bc", + "dateModified": "2026-04-18T15:56:35.745Z", + "hashShort": "bdee6ae7d733f9c9", }, { - "category": "Update 7", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 159, - "icon": "rbxassetid://15172355963", - "name": "Tech Hive Egg", + "currency": "Coins", + "eggNumber": 2, + "goldenThumbnail": "rbxassetid://96534436324487", + "icon": "rbxassetid://98145926891083", + "name": "Spotted Egg", "pets": [ [ - "A-36", - 90, + "Bunny", + 100, ], [ - "M-10 PROTOTYPE", - 9, + "Chick", + 45, ], [ - "Robot Bee", - 1, + "Dalmatian", + 10, "Nice", ], - [ - "M-B PROTOTYPE", - 0.1, - "Great", - ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "159 | Tech Hive Egg", + "configName": "2 | Spotted Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.920Z", - "hashShort": "f33da2bb430ccca7", + "dateModified": "2026-04-18T15:56:35.761Z", + "hashShort": "fb83748b2a30aad6", }, { - "category": "Update 7", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 160, - "icon": "rbxassetid://15172355963", - "name": "Alien Garden Egg", + "currency": "Coins", + "eggNumber": 3, + "goldenThumbnail": "rbxassetid://72869353884577", + "icon": "rbxassetid://118236292406742", + "name": "Paw Egg", "pets": [ [ - "Robot Bee", - 90, + "Dalmatian", + 100, ], [ - "M-B PROTOTYPE", - 9, + "Ducky", + 100, ], [ - "Gleebo The Alien", - 1, - "Nice", + "Monkey", + 50, ], [ - "Alien Arachnid", - 0.1, - "Great", + "Parrot", + 12, + "Nice", ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "160 | Alien Garden Egg", + "configName": "3 | Paw Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.920Z", - "hashShort": "488d70d0c6065eb4", + "dateModified": "2026-04-18T15:56:35.729Z", + "hashShort": "6598fc62a4d1f312", }, { - "category": "Update 7", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 161, - "icon": "rbxassetid://15172355963", - "name": "Alien Forest Egg", + "currency": "Coins", + "eggNumber": 4, + "goldenThumbnail": "rbxassetid://71142821001478", + "icon": "rbxassetid://113568461426060", + "name": "Grass Egg", "pets": [ [ - "Gleebo The Alien", - 70, - ], - [ - "Nine Eyed Lion", - 20, + "Elephant", + 100, ], [ - "Alien Arachnid", - 9, + "Parrot", + 35, ], [ - "Alien Axolotl", - 1, + "Tiger", + 4, "Nice", ], - [ - "Alien Parasite", - 0.1, - "Great", - ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "161 | Alien Forest Egg", + "configName": "4 | Grass Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.922Z", - "hashShort": "1c70ab76dfac9b8e", + "dateModified": "2026-04-18T15:56:35.751Z", + "hashShort": "6ac351f27070fb1a", }, { - "category": "Update 7", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 145, - "icon": "rbxassetid://15172355963", - "name": "Nuclear Egg", + "currency": "Coins", + "eggNumber": 5, + "goldenThumbnail": "rbxassetid://87350477613858", + "icon": "rbxassetid://84533050973839", + "name": "Wood Egg", "pets": [ [ - "Nuclear Mining Cat", - 90, + "Squirrel", + 100, ], [ - "Nuclear Mining Dog", - 9, + "Bear", + 40, ], [ - "Nuclear Mortuus", - 1, + "Tiger", + 6, "Nice", ], - [ - "Nuclear Agony", - 0.1, - "Great", - ], ], - "worldNumber": 2, + "worldNumber": 1, }, - "configName": "145 | Nuclear Egg", + "configName": "5 | Wood Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.923Z", - "hashShort": "530ae56dd9a7e263", + "dateModified": "2026-04-18T15:56:35.735Z", + "hashShort": "7869d019a615724a", }, { - "category": "Machine Eggs", + "category": "Release", "collection": "Eggs", "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 5, - "icon": "rbxassetid://16756521111", - "name": "Active Huge Egg", + "currency": "Coins", + "eggNumber": 6, + "goldenThumbnail": "rbxassetid://98021071014244", + "icon": "rbxassetid://118432167526262", + "name": "Pumpkin Egg", "pets": [ [ - "Huge Llama", - 1, - ], - [ - "Huge Rhino", - 1, + "Lamb", + 100, ], [ - "Huge Horse", - 1, + "Raccoon", + 70, ], [ - "Huge Gorilla", - 1, + "Fox", + 50, ], ], - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, + "worldNumber": 1, }, - "configName": "Active Huge Egg", + "configName": "6 | Pumpkin Egg", "dateCreated": null, - "dateModified": "2025-12-20T17:55:31.647Z", - "hashShort": "11a1d320fad19b46", + "dateModified": "2026-04-18T15:56:35.732Z", + "hashShort": "03ccbae805a507a9", }, { - "category": "St Patricks", + "category": "Release", "collection": "Eggs", "configData": { - "currency": "CloverCoins", - "egg": null, - "icon": "rbxassetid://13281715743", - "isCustomEgg": true, - "name": "Pot of Gold Egg", - "overrideCost": 200, + "currency": "Coins", + "eggNumber": 7, + "goldenThumbnail": "rbxassetid://88528302089593", + "icon": "rbxassetid://73405814022324", + "name": "Hive Egg", "pets": [ [ - "Leprechaun Cat", - 70, - ], - [ - "Irish Corgi", - 29, - ], - [ - "Clover Fairy", - 1, + "Bee", + 100, ], [ - "Clover Axolotl", - 0.002, + "Turkey", + 50, ], [ - "Huge Clover Fairy", - 0.00001, + "Scarecrow Cat", + 7.5, + "Nice", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", + "worldNumber": 1, + }, + "configName": "7 | Hive Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:35.736Z", + "hashShort": "1c020fdc05be210a", + }, + { + "category": "Release", + "collection": "Eggs", + "configData": { + "currency": "Coins", + "eggNumber": 8, + "goldenThumbnail": "rbxassetid://133177401808113", + "icon": "rbxassetid://85824808294147", + "name": "Acorn Egg", + "pets": [ + [ + "Piggy", + 100, + ], + [ + "Scarecrow Cat", + 65, + ], + [ + "Llama", + 6, + "Nice", + ], + ], + "worldNumber": 1, + }, + "configName": "8 | Acorn Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:35.747Z", + "hashShort": "ad69fa7fc3a924d3", + }, + { + "category": "Release", + "collection": "Eggs", + "configData": { + "currency": "Coins", + "eggNumber": 9, + "goldenThumbnail": "rbxassetid://100934410717236", + "icon": "rbxassetid://90427268078961", + "name": "Blossom Egg", + "pets": [ + [ + "White Bunny", + 100, + ], + [ + "Chicken", + 60, + ], + [ + "Flamingo", + 0.2, + "Great", + ], + ], + "worldNumber": 1, + }, + "configName": "9 | Blossom Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:35.752Z", + "hashShort": "a8cf3f1df68989b4", + }, + { + "category": "Merch Series 1", + "collection": "Eggs", + "configData": { + "disableGold": false, + "disableModifiers": true, + "disableRainbow": false, + "giftCallback": null, + "goldChance": 10, + "icon": "rbxassetid://15187367424", + "name": "Series 1 Basic Gift", + "pets": [ + [ + "Tiedye Cat", + 100, + ], + [ + "Tiedye Corgi", + 100, + ], + [ + "Tiedye Bear", + 70, + ], + [ + "Tiedye Dragon", + 50, + ], + [ + "Huge Tiedye Cat", + 5, + ], + ], + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "shinyChance": 2, }, - "configName": "St Patrick Egg", + "configName": "Series 1 Basic Gift", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2025-07-05T23:29:24.032Z", + "hashShort": "5d763949f45a7bc5", }, { - "category": "Exclusive Eggs", + "category": "Merch Series 1", "collection": "Eggs", "configData": { - "disableGold": true, + "disableGold": false, "disableModifiers": true, "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://17014122346", - "name": "Exclusive Sketch Egg", + "giftCallback": null, + "goldChance": 10, + "icon": "rbxassetid://15187369155", + "name": "Series 1 Epic Gift", "pets": [ [ - "Sketch Corgi", - 50, + "Crystal Dog", + 100, ], [ - "Sketch Cow", - 35, + "Crystal Deer", + 100, ], [ - "Sketch Dragon", - 13, + "Mosaic Corgi", + 70, ], [ - "Huge Sketch Corgi", - 1.25, + "Mosaic Dove", + 70, ], [ - "Huge Sketch Dragon", - 0.7, + "Mosaic Griffin", + 50, ], [ - "Titanic Sketch Cat", - 0.05, + "Huge Crystal Dog", + 20, + ], + [ + "Huge Mosaic Corgi", + 20, ], ], - "productIds": { - "10 Exclusive Eggs": 1797797125, - "100 Exclusive Eggs": 1797797530, - "3 Exclusive Eggs": 1797796754, - "Exclusive Egg": 1797796411, - }, "rainbowChance": 2, "rarity": { "Announce": true, @@ -17420,2378 +17211,2808 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` }, "shinyChance": 2, }, - "configName": "Exclusive Egg 24", + "configName": "Series 1 Epic Gift", "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.878Z", - "hashShort": "df706c65167cdacc", + "dateModified": "2025-07-05T23:29:24.036Z", + "hashShort": "085c998d1bea9443", }, { - "category": "Update 8", + "category": "Merch Series 1", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 182, - "icon": "rbxassetid://15172355963", - "name": "Tech Kyoto Egg", + "disableGold": false, + "disableModifiers": true, + "disableRainbow": false, + "giftCallback": null, + "goldChance": 10, + "icon": "rbxassetid://15187367629", + "name": "Series 1 Legendary Gift", "pets": [ [ - "Cyberpunk Spider", - 90, + "Nightfall Ram", + 100, ], [ - "Cyberpunk Ghost", - 9, + "Nightfall Wolf", + 100, ], [ - "Tech Ninja Panda", - 1, - "Nice", + "Nightfall Tiger", + 70, ], [ - "Tech Ninja Giraffe", - 0.1, - "Great", + "Nightfall Pegasus", + 50, + ], + [ + "Huge Mosaic Griffin", + 30, + ], + [ + "Huge Nightfall Wolf", + 30, + ], + [ + "Huge Nightfall Pegasus", + 15, ], ], - "worldNumber": 2, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "182 | Tech Kyoto Egg", + "configName": "Series 1 Legendary Gift", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.934Z", - "hashShort": "2b4ddd70aa1e319e", + "dateModified": "2025-07-05T23:29:24.027Z", + "hashShort": "507eeb5c03e843ba", }, { - "category": "Update 8", + "category": "Merch Series 1", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 180, - "icon": "rbxassetid://15172355963", - "name": "Cyberpunk City Egg", + "disableGold": false, + "disableModifiers": true, + "disableRainbow": false, + "giftCallback": null, + "goldChance": 10, + "icon": "rbxassetid://15187369264", + "name": "Series 1 Mythical Gift", "pets": [ [ - "Cyberpunk Bunny", - 90, + "Huge Tiedye Cat", + 100, ], [ - "Cyberpunk Meerkat", - 9, + "Huge Tiedye Corgi", + 100, ], [ - "Cyberpunk Cat", - 1, - "Nice", + "Huge Crystal Dog", + 100, ], [ - "Cyberpunk Dog", - 0.1, - "Great", + "Huge Mosaic Griffin", + 100, + ], + [ + "Huge Mosaic Corgi", + 100, + ], + [ + "Huge Nightfall Wolf", + 75, + ], + [ + "Huge Nightfall Pegasus", + 75, ], ], - "worldNumber": 2, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "180 | Cyberpunk City Egg", + "configName": "Series 1 Mythical Gift", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.932Z", - "hashShort": "bd6d1cf77719a3ca", + "dateModified": "2025-07-05T23:29:24.015Z", + "hashShort": "e75bd834411d09a0", }, { - "category": "Update 8", + "category": "Merch Series 1", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 177, - "icon": "rbxassetid://15172355963", - "name": "Wizard Dungeon Egg", + "disableGold": false, + "disableModifiers": true, + "disableRainbow": false, + "giftCallback": null, + "goldChance": 10, + "icon": "rbxassetid://15187367878", + "name": "Series 1 Rare Gift", "pets": [ [ - "Wizard Cat", - 90, + "Tiedye Corgi", + 100, ], [ - "Wizard Unicorn", - 9, + "Tiedye Dragon", + 100, ], [ - "Runic Wolf", - 1, - "Nice", + "Crystal Dog", + 70, ], [ - "Runic Agony", - 0.1, - "Great", + "Crystal Deer", + 50, + ], + [ + "Huge Tiedye Cat", + 5, + ], + [ + "Huge Tiedye Corgi", + 5, ], ], - "worldNumber": 2, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "177 | Wizard Dungeon Egg", + "configName": "Series 1 Rare Gift", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.919Z", - "hashShort": "67f23bfc2b29915d", + "dateModified": "2025-07-05T23:29:24.023Z", + "hashShort": "18a9428076835dfb", }, { - "category": "Update 8", + "category": "Merch Series 2", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 183, - "icon": "rbxassetid://15172355963", - "name": "Tech Samurai Egg", + "disableGold": false, + "disableModifiers": true, + "disableRainbow": false, + "giftCallback": null, + "goldChance": 10, + "icon": "rbxassetid://15187368086", + "name": "Series 2 Basic Gift", "pets": [ [ - "Tech Ninja Panda", - 90, + "Tiedye Dog", + 31, ], [ - "Tech Ninja Giraffe", - 9, + "Tiedye Bunny", + 31, ], [ - "Tech Samurai Cat", - 1, - "Nice", + "Tiedye Griffin", + 22, ], [ - "Tech Samurai Dragon", - 0.1, - "Great", + "Tiedye Axolotl", + 14.5, + ], + [ + "Huge Tiedye Bunny", + 1.5, ], ], - "worldNumber": 2, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "183 | Tech Samurai Egg", + "configName": "Series 2 Basic Gift", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.930Z", - "hashShort": "a76dd9c5c8da95e2", + "dateModified": "2025-07-05T23:29:24.020Z", + "hashShort": "7fa3ba34253da47f", }, { - "category": "Update 8", + "category": "Merch Series 2", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 187, - "icon": "rbxassetid://15172355963", - "name": "Dominus Frigidus Egg", + "disableGold": false, + "disableModifiers": true, + "disableRainbow": false, + "giftCallback": null, + "goldChance": 10, + "icon": "rbxassetid://15187368217", + "name": "Series 2 Epic Gift", "pets": [ [ - "Dominus Infernus", - 70, + "Mosaic Elephant", + 23, ], [ - "Stacked Dominus", - 29, + "Mosaic Lamb", + 23, ], [ - "Dominus Hippomelon", - 1, - "Nice", + "Stealth Cat", + 16, ], [ - "Dominus Mushrooms", - 0.002, - "Insane", + "Stealth Dragon", + 16, ], [ - "Dominus Alienus", - 0.00004, - "Insane", + "Stealth Bobcat", + 12, + ], + [ + "Huge Mosaic Lamb", + 5, + ], + [ + "Huge Stealth Dragon", + 5, ], ], - "worldNumber": 2, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "187 | Dominus Frigidus Egg", + "configName": "Series 2 Epic Gift", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.932Z", - "hashShort": "221b52614fff1f8b", + "dateModified": "2025-07-05T23:29:24.017Z", + "hashShort": "e05079c4f7e14385", }, { - "category": "Update 8", + "category": "Merch Series 2", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 184, - "icon": "rbxassetid://15172355963", - "name": "Tech Dojo Egg", + "disableGold": false, + "disableModifiers": true, + "disableRainbow": false, + "giftCallback": null, + "goldChance": 10, + "icon": "rbxassetid://15187368334", + "name": "Series 2 Legendary Gift", "pets": [ [ - "Tech Samurai Cat", - 90, + "Exquisite Cat", + 25, ], [ - "Tech Samurai Dragon", - 9, + "Exquisite Parrot", + 25, ], [ - "Tech Ninja Red Panda", - 1, - "Nice", + "Exquisite Elephant", + 18, ], [ - "Tech Ninja Cow", - 0.1, - "Great", + "Stealth Bobcat", + 13, + ], + [ + "Huge Stealth Bobcat", + 7.7, + ], + [ + "Huge Exquisite Parrot", + 7.7, + ], + [ + "Huge Exquisite Cat", + 3.6, ], ], - "worldNumber": 2, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "184 | Tech Dojo Egg", + "configName": "Series 2 Legendary Gift", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.927Z", - "hashShort": "8705db563efd7338", + "dateModified": "2025-07-05T23:29:24.029Z", + "hashShort": "6bc0591394c1ca2c", }, { - "category": "Update 8", + "category": "Merch Series 2", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 178, - "icon": "rbxassetid://15172355963", - "name": "Cyberpunk Undercity Egg", + "disableGold": false, + "disableModifiers": true, + "disableRainbow": false, + "giftCallback": null, + "goldChance": 10, + "icon": "rbxassetid://15187369420", + "name": "Series 2 Mythical Gift", "pets": [ [ - "Runic Wolf", - 90, + "Huge Tiedye Bunny", + 15, ], [ - "Runic Agony", - 9, + "Huge Tiedye Axolotl", + 15, ], [ - "Cyberpunk Gecko", - 1, - "Nice", + "Huge Stealth Dragon", + 15, ], [ - "Cyberpunk Axolotl", - 0.1, - "Great", + "Huge Mosaic Lamb", + 15, + ], + [ + "Huge Stealth Bobcat", + 15, + ], + [ + "Huge Exquisite Parrot", + 12.5, + ], + [ + "Huge Exquisite Cat", + 12.5, ], ], - "worldNumber": 2, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "178 | Cyberpunk Undercity Egg", + "configName": "Series 2 Mythical Gift", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.925Z", - "hashShort": "3b82cc673ab748fb", + "dateModified": "2025-07-05T23:29:24.032Z", + "hashShort": "41daf2e64a6c1635", }, { - "category": "Update 8", + "category": "Merch Series 2", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 179, - "icon": "rbxassetid://15172355963", - "name": "Cyberpunk Industrial Egg", + "disableGold": false, + "disableModifiers": true, + "disableRainbow": false, + "giftCallback": null, + "goldChance": 10, + "icon": "rbxassetid://15187368560", + "name": "Series 2 Rare Gift", "pets": [ [ - "Cyberpunk Gecko", - 90, + "Tiedye Dog", + 30, ], [ - "Cyberpunk Axolotl", - 9, + "Tiedye Bunny", + 30, ], [ - "Cyberpunk Bunny", - 1, - "Nice", + "Tiedye Griffin", + 21, ], [ - "Cyberpunk Meerkat", - 0.1, - "Great", + "Tiedye Axolotl", + 16, + ], + [ + "Huge Tiedye Bunny", + 1.5, + ], + [ + "Huge Tiedye Axolotl", + 1.5, ], ], - "worldNumber": 2, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "179 | Cyberpunk Industrial Egg", + "configName": "Series 2 Rare Gift", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.929Z", - "hashShort": "69cedbe4fe6f1d2a", + "dateModified": "2025-07-05T23:29:24.033Z", + "hashShort": "0f1cb8722b6648fc", }, { - "category": "Update 8", + "category": "Machine Eggs", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 174, - "icon": "rbxassetid://15172355963", - "name": "Wizard Temple Egg", + "disableGold": false, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 5, + "icon": "rbxassetid://12371662386", + "name": "Huge Machine Angelus Egg", "pets": [ [ - "Relic Squirrel", - 90, + "Huge Pterodactyl", + 50, ], [ - "Relic Goblin", - 9, + "Huge King Cobra", + 30, ], [ - "Relic Bear", - 1, - "Nice", + "Huge Orca", + 15, ], [ - "Relic Dragon", - 0.1, - "Great", + "Huge Chameleon", + 4.5, + ], + [ + "Huge Angelus", + 0.5, ], ], - "worldNumber": 2, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "174 | Wizard Temple Egg", + "configName": "Huge Machine Egg 1", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.923Z", - "hashShort": "3d1c5f21cdd17c2f", + "dateModified": "2025-07-05T23:29:24.016Z", + "hashShort": "dda7088f1dbf83ac", }, { - "category": "Update 8", + "category": "Machine Eggs", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 176, - "icon": "rbxassetid://15172355963", - "name": "Wizard Tower Egg", + "disableGold": false, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 5, + "icon": "rbxassetid://13179252322", + "name": "Huge Machine Kraken Egg", "pets": [ [ - "Relic Fox", - 90, + "Huge Goblin", + 50, ], [ - "Relic Raccoon", - 9, + "Huge Rainbow Slime", + 39, ], [ - "Wizard Cat", - 1, - "Nice", + "Huge Gecko", + 10, ], [ - "Wizard Unicorn", - 0.1, - "Great", + "Huge Kraken", + 1, ], ], - "worldNumber": 2, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "176 | Wizard Tower Egg", + "configName": "Huge Machine Egg 2", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.927Z", - "hashShort": "5063d7b8e6b5ed7a", + "dateModified": "2025-07-05T23:29:24.035Z", + "hashShort": "b0aa1d61ffddb597", }, { - "category": "Update 8", + "category": "Machine Eggs", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 185, - "icon": "rbxassetid://15172355963", - "name": "Tech Sakura Egg", + "disableGold": false, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 5, + "icon": "rbxassetid://13281715743", + "name": "Event Cool Egg", "pets": [ [ - "Tech Ninja Red Panda", - 90, + "Cool Cat", + 50, ], [ - "Tech Ninja Cow", - 9, + "Cool Corgi", + 35, ], [ - "Cyberpunk Husky", - 1, - "Nice", + "Cool Dragon", + 14, ], [ - "Cyberpunk Lemur", - 0.1, - "Great", + "Huge Cool Cat", + 1, ], ], - "worldNumber": 2, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "185 | Tech Sakura Egg", + "configName": "Event Egg 1", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.929Z", - "hashShort": "b47bede59e2cadd7", + "dateModified": "2025-07-05T23:29:24.017Z", + "hashShort": "f63bb5a976177868", }, { - "category": "Update 8", + "category": "Other", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 175, - "icon": "rbxassetid://15172355963", - "name": "Wizard Forest Egg", + "disableGold": false, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 5, + "icon": "rbxassetid://15249783107", + "name": "Diamond Cat Egg", "pets": [ [ - "Relic Bear", - 90, + "Diamond Cat", + 99, ], [ - "Relic Dragon", - 9, + "Huge Diamond Cat", + 1, ], + ], + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, + }, + "configName": "Diamond Cat Egg", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.031Z", + "hashShort": "88496f81ac234d88", + }, + { + "category": "Other", + "collection": "Eggs", + "configData": { + "disableGold": false, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 5, + "icon": "rbxassetid://15249783107", + "name": "Ultimate Diamond Cat Egg", + "pets": [ [ - "Relic Fox", - 1, - "Nice", + "Diamond Cat", + 80, ], [ - "Relic Raccoon", - 0.1, - "Great", + "Huge Diamond Cat", + 20, ], ], - "worldNumber": 2, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "175 | Wizard Forest Egg", + "configName": "Ultimate Diamond Cat Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.930Z", - "hashShort": "484b741a29f1b62e", + "dateModified": "2025-07-05T23:29:24.034Z", + "hashShort": "608a8ec6927ffe03", }, { - "category": "Update 8", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 173, - "icon": "rbxassetid://15172355963", - "name": "Wizard Ruins Egg", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://16302977915", + "name": "Exclusive Valentine's Egg", "pets": [ [ - "Circuit Corgi", - 90, + "Valentines Cat", + 50, ], [ - "Circuit Griffin", - 9, + "Cupid Corgi", + 35, ], [ - "Relic Squirrel", - 1, - "Nice", + "Heart Balloon Cat", + 13, ], [ - "Relic Goblin", - 0.1, - "Great", + "Huge Valentines Cat", + 1.25, + ], + [ + "Huge Heart Balloon Cat", + 0.7, + ], + [ + "Titanic Lovemelon", + 0.05, ], ], - "worldNumber": 2, + "productIds": { + "10 Exclusive Eggs": 1751326109, + "100 Exclusive Eggs": 1751326271, + "3 Exclusive Eggs": 1751325534, + "Exclusive Egg": 1751325179, + }, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "173 | Wizard Ruins Egg", + "configName": "Exclusive Egg 21", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.916Z", - "hashShort": "f7c5fb54edcb2f64", + "dateModified": "2025-07-05T23:29:23.875Z", + "hashShort": "640112f11781e32c", }, { - "category": "Update 8", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "TechCoins", - "eggNumber": 172, - "icon": "rbxassetid://15172355963", - "name": "Aura Egg", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://16290865780", + "name": "Exclusive Super Jelly Egg", "pets": [ [ - "Circuit Cat", - 90, + "Jelly Axolotl", + 50, ], [ - "Circuit Slime", - 9, + "Jelly Shiba", + 35, ], [ - "Circuit Corgi", - 1, - "Nice", + "Jelly Monkey", + 13, ], [ - "Circuit Griffin", - 0.1, - "Great", + "Huge Jelly Axolotl", + 1.25, + ], + [ + "Huge Jelly Monkey", + 0.7, + ], + [ + "Titanic Jelly Dragon", + 0.05, ], ], - "worldNumber": 2, + "productIds": { + "10 Exclusive Eggs": 1756074601, + "100 Exclusive Eggs": 1756075345, + "3 Exclusive Eggs": 1756074287, + "Exclusive Egg": 1756074122, + }, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "172 | Aura Egg", + "configName": "Exclusive Egg 22", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.936Z", - "hashShort": "0104f79cf8b7a833", + "dateModified": "2025-07-05T23:29:23.881Z", + "hashShort": "a4ec9f6c8fa0ead0", }, { - "category": "Update 8", + "category": "Update 6", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 171, - "icon": "rbxassetid://15172355963", - "name": "Motherboard Egg", + "eggNumber": 114, + "goldenThumbnail": "rbxassetid://91039909166897", + "icon": "rbxassetid://128280606791548", + "name": "Tech City Egg", "pets": [ [ - "Steampunk Bat", + "Cyborg Cat", 90, ], [ - "Blimp Dragon", + "Cyborg Dog", 9, ], [ - "Circuit Cat", + "Cyborg Corgi", 1, "Nice", ], [ - "Circuit Slime", + "Cyborg Ducky", 0.1, "Great", ], ], "worldNumber": 2, }, - "configName": "171 | Motherboard Egg", + "configName": "114 | Tech City Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.922Z", - "hashShort": "792782674649dfbd", + "dateModified": "2026-04-18T15:56:35.754Z", + "hashShort": "ff2bc12299d24c93", }, { - "category": "Update 8", + "category": "Update 6", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 186, - "icon": "rbxassetid://15172355963", - "name": "Dominus Rex Egg", + "eggNumber": 113, + "goldenThumbnail": "rbxassetid://137925246888901", + "icon": "rbxassetid://105750567336993", + "name": "Tech Ciruit Egg", "pets": [ [ - "Cyberpunk Husky", - 70, + "Cyborg Cat", + 90, ], [ - "Domortuus", - 20, + "Cyborg Dog", + 10, + ], + ], + "worldNumber": 2, + }, + "configName": "113 | Tech Ciruit Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:35.775Z", + "hashShort": "14825585bcfd30b6", + }, + { + "category": "Update 6", + "collection": "Eggs", + "configData": { + "currency": "TechCoins", + "eggNumber": 115, + "goldenThumbnail": "rbxassetid://125262138114751", + "icon": "rbxassetid://100271968207041", + "name": "Tech Forest Egg", + "pets": [ + [ + "Cyborg Corgi", + 90, ], [ - "Cyberpunk Lemur", + "Cyborg Ducky", 9, ], [ - "Dominus Infernus", + "Cyborg Squirrel", 1, "Nice", ], [ - "Stacked Dominus", + "Cyborg Bat", 0.1, "Great", ], ], "worldNumber": 2, }, - "configName": "186 | Dominus Rex Egg", + "configName": "115 | Tech Forest Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.933Z", - "hashShort": "d33d07b820ae0093", + "dateModified": "2026-04-18T15:56:35.748Z", + "hashShort": "46a4d4a56648cd28", }, { - "category": "Update 8", + "category": "Update 6", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 163, - "icon": "rbxassetid://15172355963", - "name": "Alien UFO Egg", + "eggNumber": 116, + "goldenThumbnail": "rbxassetid://119149707212903", + "icon": "rbxassetid://103209372769125", + "name": "Tech Silo Egg", "pets": [ [ - "Alien Octopus", + "Cyborg Squirrel", 90, ], [ - "Brain", - 10, + "Cyborg Bat", + 9, + ], + [ + "Cyborg Piggy", + 1, + "Nice", + ], + [ + "Cyborg Cow", + 0.1, + "Great", ], ], "worldNumber": 2, }, - "configName": "163 | Alien UFO Egg", + "configName": "116 | Tech Silo Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.926Z", - "hashShort": "ff39eee5abf1e696", + "dateModified": "2026-04-18T15:56:36.448Z", + "hashShort": "b94e68537a0113f3", }, { - "category": "Update 8", + "category": "Update 6", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 164, - "icon": "rbxassetid://15172355963", - "name": "Space Forge Egg", + "eggNumber": 117, + "goldenThumbnail": "rbxassetid://111750434664029", + "icon": "rbxassetid://100359690686350", + "name": "Tech Data Egg", "pets": [ [ - "Alien Octopus", + "Cyborg Piggy", 90, ], [ - "Brain", + "Cyborg Cow", 9, ], [ - "Forged Cyclops", + "Cyber Axolotl", 1, "Nice", ], [ - "Forged Robot", + "Cyber Ducky", 0.1, "Great", ], ], "worldNumber": 2, }, - "configName": "164 | Space Forge Egg", + "configName": "117 | Tech Data Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.928Z", - "hashShort": "d3a368e3f74db5d3", + "dateModified": "2026-04-18T15:56:36.446Z", + "hashShort": "d4b1e1df2a880114", }, { - "category": "Update 8", + "category": "Update 6", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 165, - "icon": "rbxassetid://15172355963", - "name": "Space Factory Egg", + "eggNumber": 118, + "goldenThumbnail": "rbxassetid://82943283580628", + "icon": "rbxassetid://128030201475486", + "name": "Tech Cuboid Egg", "pets": [ [ - "Forged Cyclops", - 90, + "Cyber Axolotl", + 70, ], [ - "Forged Robot", + "Cyber Slime", + 20, + ], + [ + "Cyber Ducky", 9, ], [ - "Forged Hedgehog", + "Cyber Dragon", 1, "Nice", ], [ - "Forged Turtle", - 0.1, - "Great", + "Cyber Fox", + 0.001, ], ], "worldNumber": 2, }, - "configName": "165 | Space Factory Egg", + "configName": "118 | Tech Cuboid Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.927Z", - "hashShort": "bfbacfaec7a47ead", + "dateModified": "2026-04-18T15:56:36.431Z", + "hashShort": "e318ab944ef47076", }, { - "category": "Update 8", + "category": "Update 6", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 167, - "icon": "rbxassetid://15172355963", - "name": "Steampunk Gears Egg", + "eggNumber": 120, + "goldenThumbnail": "rbxassetid://101242928150524", + "icon": "rbxassetid://118851802587212", + "name": "Tech Tree Egg", "pets": [ [ - "Junkyard Bat", - 70, + "Cyber Agony", + 99, ], [ - "Cat Magician", - 20, + "Cyber Bear", + 1, + "Nice", ], [ - "Junkyard Hound", - 9, + "Cyber Raccoon", + 0.001, + ], + ], + "worldNumber": 2, + }, + "configName": "120 | Tech Tree Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:36.430Z", + "hashShort": "c3513498c73f2883", + }, + { + "category": "Update 6", + "collection": "Eggs", + "configData": { + "currency": "TechCoins", + "eggNumber": 119, + "goldenThumbnail": "rbxassetid://76185971852745", + "icon": "rbxassetid://90925896040949", + "name": "Tech Sprout Egg", + "pets": [ + [ + "Cyber Dragon", + 99, ], [ - "Sophisticated Fox", + "Cyber Agony", 1, "Nice", ], [ - "Steampunk Fish", - 0.1, - "Great", + "Cyber Bunny", + 0.001, ], ], "worldNumber": 2, }, - "configName": "167 | Steampunk Gears Egg", + "configName": "119 | Tech Sprout Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.919Z", - "hashShort": "d88eeef188886871", + "dateModified": "2026-04-18T15:56:36.430Z", + "hashShort": "9cc612ba89cc616e", }, { - "category": "Update 8", + "category": "Update 6", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 166, - "icon": "rbxassetid://15172355963", - "name": "Space Junkyard Egg", + "eggNumber": 121, + "goldenThumbnail": "rbxassetid://116786483487255", + "icon": "rbxassetid://117795248985900", + "name": "Tech Incubator Egg", "pets": [ [ - "Forged Hedgehog", - 90, - ], - [ - "Forged Turtle", - 9, + "Cyber Bear", + 99, ], [ - "Junkyard Bat", + "Hi-Tech Bee", 1, "Nice", ], [ - "Junkyard Hound", + "Hi-Tech Ladybug", 0.1, "Great", ], ], "worldNumber": 2, }, - "configName": "166 | Space Junkyard Egg", + "configName": "121 | Tech Incubator Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.925Z", - "hashShort": "a20e0d6ea5aa41a0", + "dateModified": "2026-04-18T15:56:36.446Z", + "hashShort": "a5016355fd09bccc", }, { - "category": "Update 8", + "category": "Update 6", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 168, - "icon": "rbxassetid://15172355963", - "name": "Steampunk Lantern Egg", + "eggNumber": 122, + "goldenThumbnail": "rbxassetid://105566855457500", + "icon": "rbxassetid://103692780288759", + "name": "Tech Overgrown Egg", "pets": [ [ - "Sophisticated Fox", - 70, - ], - [ - "Toy Mouse", - 20, + "Hi-Tech Bee", + 90, ], [ - "Steampunk Fish", + "Hi-Tech Ladybug", 9, ], [ - "Ducky Magician", + "Hi-Tech Monkey", 1, "Nice", ], [ - "Mechanical Spider", + "Hi-Tech Parrot", 0.1, "Great", ], ], "worldNumber": 2, }, - "configName": "168 | Steampunk Lantern Egg", + "configName": "122 | Tech Overgrown Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.928Z", - "hashShort": "bdb875643d3038d6", + "dateModified": "2026-04-18T15:56:36.432Z", + "hashShort": "a68e293e4a3c0a1d", }, { - "category": "Update 8", + "category": "Update 6", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 170, - "icon": "rbxassetid://15172355963", - "name": "Steampunk Airship Egg", + "eggNumber": 123, + "goldenThumbnail": "rbxassetid://83638184593017", + "icon": "rbxassetid://88373750519643", + "name": "Tech Magma Egg", "pets": [ [ - "Steampunk Crocodile", - 70, - ], - [ - "Steampunk Wolf", - 20, + "Hi-Tech Monkey", + 90, ], [ - "Mining Mole", + "Hi-Tech Parrot", 9, ], [ - "Steampunk Bat", + "Hi-Tech Sloth", 1, "Nice", ], [ - "Blimp Dragon", + "Hi-Tech Tiger", 0.1, "Great", ], ], "worldNumber": 2, }, - "configName": "170 | Steampunk Airship Egg", + "configName": "123 | Tech Magma Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.917Z", - "hashShort": "e1d06cbc2202af71", + "dateModified": "2026-04-18T15:56:36.432Z", + "hashShort": "a249f8e5b0a95d4e", }, { - "category": "Update 8", + "category": "Update 6", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 169, - "icon": "rbxassetid://15172355963", - "name": "Steampunk Clockwork Egg", + "eggNumber": 124, + "goldenThumbnail": "rbxassetid://73487107025560", + "icon": "rbxassetid://113844998190703", + "name": "Tech Oasis Egg", "pets": [ [ - "Ducky Magician", - 70, - ], - [ - "Steampunk Octopus", - 20, + "Hi-Tech Sloth", + 90, ], [ - "Mechanical Spider", + "Hi-Tech Tiger", 9, ], [ - "Steampunk Crocodile", + "Hi-Tech Flamingo", 1, "Nice", ], [ - "Mining Mole", + "Hi-Tech Elephant", 0.1, "Great", ], ], "worldNumber": 2, }, - "configName": "169 | Steampunk Clockwork Egg", + "configName": "124 | Tech Oasis Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.922Z", - "hashShort": "8b1c76dd3ed505d1", + "dateModified": "2026-04-18T15:56:36.443Z", + "hashShort": "a5fa4a0b827c2c1b", }, { - "category": "Update 8", + "category": "Update 6", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 181, - "icon": "rbxassetid://15172355963", - "name": "Cyberpunk Road Egg", + "eggNumber": 125, + "goldenThumbnail": "rbxassetid://100834831380061", + "icon": "rbxassetid://137100602363691", + "name": "Tech Palm Egg", "pets": [ [ - "Cyberpunk Cat", + "Hi-Tech Flamingo", 90, ], [ - "Cyberpunk Dog", + "Hi-Tech Elephant", 9, ], [ - "Cyberpunk Spider", + "Abyssal Axolotl", 1, "Nice", ], [ - "Cyberpunk Ghost", + "Abyssal Seal", 0.1, "Great", ], ], "worldNumber": 2, }, - "configName": "181 | Cyberpunk Road Egg", + "configName": "125 | Tech Palm Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.081Z", - "hashShort": "bb6d0dffe0ed6b3f", + "dateModified": "2026-04-18T15:56:36.428Z", + "hashShort": "ac90c2c8f4c5cca8", }, { - "category": "Exclusive Eggs", + "category": "Update 6", "collection": "Eggs", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://17285382732", - "name": "Exclusive Black Hole Egg", + "currency": "TechCoins", + "eggNumber": 126, + "goldenThumbnail": "rbxassetid://119780666887170", + "icon": "rbxassetid://99918973517943", + "name": "Tech Coral Egg", "pets": [ [ - "Black Hole Axolotl", - 50, - ], - [ - "Black Hole Immortuus", - 35, - ], - [ - "Black Hole Kitsune", - 13, + "Abyssal Axolotl", + 90, ], [ - "Huge Black Hole Axolotl", - 1.25, + "Abyssal Seal", + 9, ], [ - "Huge Black Hole Kitsune", - 0.7, + "Abyssal Pufferfish", + 1, + "Nice", ], [ - "Titanic Black Hole Angelus", - 0.05, + "Abyssal Shark", + 0.1, + "Great", ], ], - "productIds": { - "10 Exclusive Eggs": 1815003478, - "100 Exclusive Eggs": 1815003694, - "3 Exclusive Eggs": 1815003379, - "Exclusive Egg": 1815003205, - }, - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, + "worldNumber": 2, }, - "configName": "Exclusive Egg 25", + "configName": "126 | Tech Coral Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.889Z", - "hashShort": "d17384bf94d24efc", + "dateModified": "2026-04-18T15:56:36.431Z", + "hashShort": "d440e8183e5af9aa", }, { - "category": "Update 9", + "category": "Update 6", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 188, - "icon": "rbxassetid://15172355963", - "name": "Dominus Infernus Egg", + "eggNumber": 127, + "goldenThumbnail": "rbxassetid://132107194340665", + "icon": "rbxassetid://95411778748419", + "name": "Tech Ship Egg", "pets": [ [ - "Dominus Serpents", + "Abyssal Pufferfish", 90, ], [ - "Wicked Empyrean Dominus", - 10, + "Abyssal Shark", + 9, + ], + [ + "Abyssal Fish", + 1, + "Nice", + ], + [ + "Abyssal Dolphin", + 0.1, + "Great", ], ], "worldNumber": 2, }, - "configName": "188 | Dominus Infernus Egg", + "configName": "127 | Tech Ship Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.080Z", - "hashShort": "81720f8409e6ffbc", + "dateModified": "2026-04-18T15:56:36.427Z", + "hashShort": "bca599e33ae0258e", }, { - "category": "Update 9", + "category": "Update 6", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 190, - "icon": "rbxassetid://15172355963", - "name": "Holographic Egg", + "eggNumber": 128, + "goldenThumbnail": "rbxassetid://101206300055771", + "icon": "rbxassetid://91944610410555", + "name": "Tech Ruins Egg", "pets": [ [ - "Holographic Cat", + "Abyssal Fish", 90, ], [ - "Holographic Corgi", + "Abyssal Dolphin", 9, ], [ - "Holographic Bear", + "Abyssal Parrot", 1, "Nice", ], + [ + "Abyssal Kraken", + 0.1, + "Great", + ], ], "worldNumber": 2, }, - "configName": "190 | Holographic Egg", + "configName": "128 | Tech Ruins Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.074Z", - "hashShort": "876d5659050a8c6d", + "dateModified": "2026-04-18T15:56:36.480Z", + "hashShort": "d1b7108170108d40", }, { - "category": "Update 9", + "category": "Update 6", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 191, - "icon": "rbxassetid://15172355963", - "name": "Holographic Tree Egg", + "eggNumber": 129, + "goldenThumbnail": "rbxassetid://131297414018557", + "icon": "rbxassetid://128946707602806", + "name": "Tech Dusty Egg", "pets": [ [ - "Holographic Bear", + "Abyssal Parrot", 90, ], [ - "Holographic Monkey", + "Abyssal Kraken", 9, ], [ - "Holographic Axolotl", + "Tech Camel", 1, "Nice", ], + [ + "Tech Puma", + 0.1, + "Great", + ], ], "worldNumber": 2, }, - "configName": "191 | Holographic Tree Egg", + "configName": "129 | Tech Dusty Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.068Z", - "hashShort": "1c2fe90f24aa4ff3", + "dateModified": "2026-04-18T15:56:36.429Z", + "hashShort": "9cb991375b1953e0", }, { - "category": "Update 9", + "category": "Update 6", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 192, - "icon": "rbxassetid://15172355963", - "name": "Holographic Crystal Egg", + "eggNumber": 130, + "goldenThumbnail": "rbxassetid://127338977267787", + "icon": "rbxassetid://95498394503975", + "name": "Tech Luminati Egg", "pets": [ [ - "Holographic Monkey", + "Tech Camel", 90, ], [ - "Holographic Axolotl", + "Tech Puma", 9, ], [ - "Holographic Dragon", + "Tech Scorpion", 1, "Nice", ], + [ + "Tech Sphinx", + 0.1, + "Great", + ], ], "worldNumber": 2, }, - "configName": "192 | Holographic Crystal Egg", + "configName": "130 | Tech Luminati Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.076Z", - "hashShort": "913286ebeb3c62f9", + "dateModified": "2026-04-18T15:56:36.442Z", + "hashShort": "d123a8c07ac4a21a", }, { - "category": "Update 9", + "category": "Update 6", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 193, - "icon": "rbxassetid://15172355963", - "name": "Dark Tech Stone Egg", + "eggNumber": 131, + "goldenThumbnail": "rbxassetid://119650189497564", + "icon": "rbxassetid://90332143004114", + "name": "Tech Cactus Egg", "pets": [ [ - "Holographic Dragon", + "Tech Scorpion", 90, ], [ - "Shadow Dolphin", + "Tech Sphinx", 9, ], [ - "Shadow Shark", + "Tech Horse", 1, "Nice", ], + [ + "Tech Bull", + 0.1, + "Great", + ], ], "worldNumber": 2, }, - "configName": "193 | Dark Tech Stone Egg", + "configName": "131 | Tech Cactus Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.080Z", - "hashShort": "91b34e5ef6a79ebb", + "dateModified": "2026-04-18T15:56:36.433Z", + "hashShort": "9407e3e9d682682e", }, { - "category": "Update 9", + "category": "Update 6", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 194, - "icon": "rbxassetid://15172355963", - "name": "Dark Tech Relic Egg", + "eggNumber": 132, + "goldenThumbnail": "rbxassetid://109840864609814", + "icon": "rbxassetid://110470844751399", + "name": "Tech Cowboy Egg", "pets": [ [ - "Shadow Dolphin", + "Tech Horse", 90, ], [ - "Shadow Shark", + "Tech Bull", 9, ], [ - "Shadow Kraken", + "Tech Cowboy Cat", 1, "Nice", ], + [ + "Tech Cowboy Dog", + 0.1, + "Great", + ], ], "worldNumber": 2, }, - "configName": "194 | Dark Tech Relic Egg", + "configName": "132 | Tech Cowboy Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.078Z", - "hashShort": "74e6ba4d531d1a51", + "dateModified": "2026-04-18T15:56:36.478Z", + "hashShort": "2341024193b1a3bb", }, { - "category": "Update 9", + "category": "Update 6", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 195, - "icon": "rbxassetid://15172355963", - "name": "Dark Tech Castle Egg", + "eggNumber": 133, + "goldenThumbnail": "rbxassetid://139122638110547", + "icon": "rbxassetid://89853290832102", + "name": "Tech Canyon Egg", "pets": [ [ - "Shadow Kraken", + "Tech Cowboy Cat", 90, ], [ - "Shadow Dragon", - 10, + "Tech Cowboy Dog", + 9, + ], + [ + "Tech Goat", + 1, + "Nice", + ], + [ + "Tech Griffin", + 0.1, + "Great", ], ], "worldNumber": 2, }, - "configName": "195 | Dark Tech Castle Egg", + "configName": "133 | Tech Canyon Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.076Z", - "hashShort": "90421d387891c309", + "dateModified": "2026-04-18T15:56:36.429Z", + "hashShort": "5b59f4493d8a6666", }, { - "category": "Update 9", + "category": "Update 6", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 196, - "icon": "rbxassetid://15172355963", - "name": "Dark Tech Brick Egg", + "eggNumber": 134, + "goldenThumbnail": "rbxassetid://114293972445162", + "icon": "rbxassetid://116829443076313", + "name": "Tech Snow Egg", "pets": [ [ - "Shadow Dragon", - 90, + "Tech Goat", + 70, ], [ - "Shadow Bull", + "Frostbyte Snow Ram", + 20, + ], + [ + "Tech Griffin", 9, ], [ - "Shadow Panther", + "Frostbyte Fox", 1, "Nice", ], + [ + "Frostbyte Dragon", + 0.1, + "Great", + ], ], "worldNumber": 2, }, - "configName": "196 | Dark Tech Brick Egg", + "configName": "134 | Tech Snow Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.068Z", - "hashShort": "07d8bd75211774b3", + "dateModified": "2026-04-18T15:56:36.447Z", + "hashShort": "ea0fe0e36c5d285a", }, { - "category": "Update 9", + "category": "Update 6", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 197, - "icon": "rbxassetid://15172355963", - "name": "Dark Tech Spike Egg", + "eggNumber": 135, + "goldenThumbnail": "rbxassetid://131777827218868", + "icon": "rbxassetid://101723606851901", + "name": "Tech Mossy Egg", "pets": [ [ - "Shadow Bull", + "Frostbyte Fox", 90, ], [ - "Shadow Panther", + "Frostbyte Dragon", 9, ], [ - "Shadow Dominus", + "Frostbyte Deer", 1, "Nice", ], [ - "Shadow Wolf", + "Frostbyte Snow Leopard", 0.1, "Great", ], ], "worldNumber": 2, }, - "configName": "197 | Dark Tech Spike Egg", + "configName": "135 | Tech Mossy Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.083Z", - "hashShort": "fb83fe97201a255e", + "dateModified": "2026-04-18T15:56:36.475Z", + "hashShort": "ec452deab90a0f10", }, { - "category": "Update 9", + "category": "Update 6", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 198, - "icon": "rbxassetid://15172355963", - "name": "Hacker Metal Egg", + "eggNumber": 136, + "goldenThumbnail": "rbxassetid://94390040215993", + "icon": "rbxassetid://75759753334256", + "name": "Tech Ice Crystal Egg", "pets": [ [ - "Shadow Dominus", + "Frostbyte Deer", 90, ], [ - "Shadow Wolf", + "Frostbyte Snow Leopard", 9, ], [ - "Haxolotl", + "Frostbyte Husky", 1, "Nice", ], + [ + "Frostbyte Bat", + 0.1, + "Great", + ], ], "worldNumber": 2, }, - "configName": "198 | Hacker Metal Egg", + "configName": "136 | Tech Ice Crystal Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.071Z", - "hashShort": "5aa90880c0585937", + "dateModified": "2026-04-18T15:56:36.447Z", + "hashShort": "bfc06e0de6c3d817", }, { - "category": "Update 9", + "category": "Update 6", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 199, - "icon": "rbxassetid://15172355963", - "name": "Hacker Gear Egg", + "eggNumber": 137, + "goldenThumbnail": "rbxassetid://80041665713020", + "icon": "rbxassetid://111346009091681", + "name": "Tech Flurry Egg", "pets": [ [ - "Haxolotl", - 90, + "Frostbyte Husky", + 70, ], [ - "Haxigator", + "Frostbyte Bat", + 29, + ], + [ + "Frostbyte Bear", 1, "Nice", ], + [ + "Frostbyte Yeti", + 0.1, + "Great", + ], + [ + "Frostbyte Snowman", + 0.002, + ], + [ + "M-6 PROTOTYPE", + 0.00004, + ], ], "worldNumber": 2, }, - "configName": "199 | Hacker Gear Egg", + "configName": "137 | Tech Flurry Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.083Z", - "hashShort": "a079ee71085b4d7c", + "dateModified": "2026-04-18T15:56:36.441Z", + "hashShort": "35e2ce54b095daf4", }, { - "category": "Update 9", + "category": "Machine Eggs", + "collection": "Eggs", + "configData": { + "disableGold": false, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 5, + "icon": "rbxassetid://16481063599", + "name": "Huge Machine Blurred Dominus Egg", + "pets": [ + [ + "Huge Bat", + 50, + ], + [ + "Huge Willow Wisp", + 30, + ], + [ + "Huge Pastel Elephant", + 15, + ], + [ + "Huge Red Fluffy", + 4.5, + ], + [ + "Huge Blurred Dominus", + 0.5, + ], + ], + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, + }, + "configName": "Huge Machine Egg 3", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.027Z", + "hashShort": "651d728e838740a7", + }, + { + "category": "Exclusive Eggs", + "collection": "Eggs", + "configData": { + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://16756520769", + "name": "Exclusive Superhero Egg", + "pets": [ + [ + "Jester Dog", + 50, + ], + [ + "Thunder Bear", + 35, + ], + [ + "Super Tiger", + 13, + ], + [ + "Huge Jester Dog", + 1.25, + ], + [ + "Huge Super Tiger", + 0.7, + ], + [ + "Titanic Bat Cat", + 0.05, + ], + ], + "productIds": { + "10 Exclusive Eggs": 1776229089, + "100 Exclusive Eggs": 1776229324, + "3 Exclusive Eggs": 1776227880, + "Exclusive Egg": 1776227705, + }, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, + }, + "configName": "Exclusive Egg 23", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.895Z", + "hashShort": "f46309ae4aa5ee66", + }, + { + "category": "Update 7", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 200, - "icon": "rbxassetid://15172355963", - "name": "Hacker Matrix Egg", + "eggNumber": 138, + "goldenThumbnail": "rbxassetid://123980065613965", + "icon": "rbxassetid://89952058807508", + "name": "Tech Ice Circuit Egg", "pets": [ [ - "Haxigator", + "Frostbyte Cat", 90, ], [ - "Hacked Raccoon", - 1, - "Nice", + "Frostbyte Penguin", + 10, ], ], "worldNumber": 2, }, - "configName": "200 | Hacker Matrix Egg", + "configName": "138 | Tech Ice Circuit Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.074Z", - "hashShort": "7d56771f8418413d", + "dateModified": "2026-04-18T15:56:36.478Z", + "hashShort": "bd1056e7df30f569", }, { - "category": "Update 9", + "category": "Update 7", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 201, - "icon": "rbxassetid://15172355963", - "name": "Hacker Error Egg", + "eggNumber": 139, + "goldenThumbnail": "rbxassetid://103765806742244", + "icon": "rbxassetid://82874178373251", + "name": "Tech Glacier Egg", "pets": [ [ - "Hacked Raccoon", + "Frostbyte Cat", 90, ], [ - "Hacked Cat", + "Frostbyte Penguin", 9, ], [ - "404 Demon", + "Frostbyte Walrus", 1, "Nice", ], + [ + "Frostbyte Narwhal", + 0.1, + "Great", + ], ], "worldNumber": 2, }, - "configName": "201 | Hacker Error Egg", + "configName": "139 | Tech Glacier Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.084Z", - "hashShort": "3f1b7ae022ff0f02", + "dateModified": "2026-04-18T15:56:36.479Z", + "hashShort": "96cd566cf1070529", }, { - "category": "Update 9", + "category": "Update 7", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 202, - "icon": "rbxassetid://15172355963", - "name": "Glitch Tree Egg", + "eggNumber": 140, + "goldenThumbnail": "rbxassetid://87378522507442", + "icon": "rbxassetid://135181828265362", + "name": "Tech Melted Egg Egg", "pets": [ [ - "Hacked Cat", + "Frostbyte Walrus", 90, ], [ - "404 Demon", + "Frostbyte Narwhal", 9, ], [ - "Glitched Cat", + "Melted Slime", 1, "Nice", ], [ - "Glitched Dog", + "Melted Rock", 0.1, "Great", ], ], "worldNumber": 2, }, - "configName": "202 | Glitch Tree Egg", + "configName": "140 | Tech Melted Egg Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.070Z", - "hashShort": "a729520ba27307e4", + "dateModified": "2026-04-18T15:56:36.451Z", + "hashShort": "7ad442a9a8d182a8", }, { - "category": "Update 9", + "category": "Update 7", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 203, - "icon": "rbxassetid://15172355963", - "name": "Glitch Green Egg", + "eggNumber": 141, + "goldenThumbnail": "rbxassetid://125016563856947", + "icon": "rbxassetid://103075325058686", + "name": "Tech Nexus Egg", "pets": [ [ - "Glitched Cat", + "Melted Slime", 90, ], [ - "Glitched Dog", + "Melted Rock", 9, ], [ - "Glitched Dragon", + "Happy Computer", 1, "Nice", ], [ - "Glitched Dominus", + "Evil Computer", 0.1, "Great", ], ], "worldNumber": 2, }, - "configName": "203 | Glitch Green Egg", + "configName": "141 | Tech Nexus Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.085Z", - "hashShort": "b584adc9ea31c9b5", + "dateModified": "2026-04-18T15:56:36.473Z", + "hashShort": "70a08032f2d81000", }, { - "category": "Update 9", + "category": "Update 7", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 204, - "icon": "rbxassetid://15172355963", - "name": "Glitch Aqua Egg", + "eggNumber": 142, + "goldenThumbnail": "rbxassetid://108085694664092", + "icon": "rbxassetid://98652451437163", + "name": "Nuclear Crack Egg", "pets": [ [ - "Glitched Dragon", + "Happy Computer", 90, ], [ - "Glitched Dominus", + "Evil Computer", 9, ], [ - "Glitched Unicorn", + "Nuclear Axolotl", 1, "Nice", ], [ - "Glitched Phoenix", + "Nuclear Dragon", 0.1, "Great", ], ], "worldNumber": 2, }, - "configName": "204 | Glitch Aqua Egg", + "configName": "142 | Nuclear Crack Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.073Z", - "hashShort": "d72ba492182ea6c4", + "dateModified": "2026-04-18T15:56:36.445Z", + "hashShort": "119419c12c820845", }, { - "category": "Update 9", + "category": "Update 7", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 205, - "icon": "rbxassetid://15172355963", - "name": "Glitch Cyan Egg", + "eggNumber": 143, + "goldenThumbnail": "rbxassetid://79030441162119", + "icon": "rbxassetid://133108234601613", + "name": "Nuclear Forest Egg", "pets": [ [ - "Glitched Unicorn", + "Nuclear Axolotl", 90, ], [ - "Glitched Phoenix", + "Nuclear Dragon", 9, ], [ - "Glitched Immortuus", + "Nuclear Squirrel", 1, "Nice", ], + [ + "Nuclear Wolf", + 0.1, + "Great", + ], ], "worldNumber": 2, }, - "configName": "205 | Glitch Cyan Egg", + "configName": "143 | Nuclear Forest Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.080Z", - "hashShort": "028a180a73f938ea", + "dateModified": "2026-04-18T15:56:36.472Z", + "hashShort": "8d691dd42b2d135d", }, { - "category": "Update 9", + "category": "Update 7", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 206, - "icon": "rbxassetid://15172355963", - "name": "Quantum Egg", + "eggNumber": 144, + "goldenThumbnail": "rbxassetid://102298875262916", + "icon": "rbxassetid://89950552687913", + "name": "Nuclear Mine Egg", "pets": [ [ - "Glitched Immortuus", + "Nuclear Squirrel", 90, ], [ - "Fragmented Dominus", + "Nuclear Wolf", 9, ], [ - "Fragmented Pterodactyl", + "Nuclear Mining Cat", 1, "Nice", ], + [ + "Nuclear Mining Dog", + 0.1, + "Great", + ], ], "worldNumber": 2, }, - "configName": "206 | Quantum Egg", + "configName": "144 | Nuclear Mine Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.077Z", - "hashShort": "69b85aabff479a08", + "dateModified": "2026-04-18T15:56:36.445Z", + "hashShort": "a6f6f7a411e2d5f8", }, { - "category": "Update 9", + "category": "Update 7", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 207, - "icon": "rbxassetid://15172355963", - "name": "Quantum Leafy Egg", + "eggNumber": 162, + "goldenThumbnail": "rbxassetid://104866015234444", + "icon": "rbxassetid://81284054575575", + "name": "Alien Lab Egg", "pets": [ [ - "Fragmented Dominus", - 90, + "Alien Axolotl", + 70, ], [ - "Fragmented Pterodactyl", - 9, + "Alien Parasite", + 29, ], [ - "Quantum Fox", + "Bleebo The Alien", 1, "Nice", ], [ - "Quantum Goat", - 0.1, - "Great", + "Jelly Alien", + 0.002, + "Insane", + ], + [ + "Meebo in a Spaceship", + 0.00004, + "Insane", ], ], "worldNumber": 2, }, - "configName": "207 | Quantum Leafy Egg", + "configName": "162 | Alien Lab Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.078Z", - "hashShort": "ee29274a44c94db2", + "dateModified": "2026-04-18T15:56:36.444Z", + "hashShort": "dfc6db0adc6f3d57", }, { - "category": "Update 9", + "category": "Update 7", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 208, - "icon": "rbxassetid://15172355963", - "name": "Quantum Space Egg", + "eggNumber": 146, + "goldenThumbnail": "rbxassetid://75397238342954", + "icon": "rbxassetid://120229716630413", + "name": "Tech Rocket Egg", "pets": [ [ - "Quantum Fox", + "Nuclear Mortuus", 90, ], [ - "Quantum Goat", + "Nuclear Agony", 9, ], [ - "Quantum Bunny", + "Astronaut Cat", 1, "Nice", ], [ - "Quantum Tiger", + "Astronaut Dog", 0.1, "Great", ], ], "worldNumber": 2, }, - "configName": "208 | Quantum Space Egg", + "configName": "146 | Tech Rocket Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.072Z", - "hashShort": "2c0daa3ab8eba5a5", + "dateModified": "2026-04-18T15:56:36.477Z", + "hashShort": "45983e3afccf8045", }, { - "category": "Update 9", + "category": "Update 7", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 209, - "icon": "rbxassetid://15172355963", - "name": "Quantum Galaxy Egg", + "eggNumber": 147, + "goldenThumbnail": "rbxassetid://116188702808956", + "icon": "rbxassetid://89552225838606", + "name": "Tech Planets Egg", "pets": [ [ - "Quantum Bunny", + "Astronaut Cat", 90, ], [ - "Quantum Tiger", + "Astronaut Dog", 9, ], [ - "Quantum Griffin", + "Meebo The Alien", 1, "Nice", ], [ - "Quantum Dominus", + "Star Surfer", 0.1, "Great", ], ], "worldNumber": 2, }, - "configName": "209 | Quantum Galaxy Egg", + "configName": "147 | Tech Planets Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.076Z", - "hashShort": "342e60a74cbe255b", + "dateModified": "2026-04-18T15:56:36.475Z", + "hashShort": "7c753e9f2e710167", }, { - "category": "Update 9", + "category": "Update 7", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 210, - "icon": "rbxassetid://15172355963", - "name": "Void Crystal Egg", + "eggNumber": 148, + "goldenThumbnail": "rbxassetid://135194353263758", + "icon": "rbxassetid://108257236553580", + "name": "Tech Moon Egg", "pets": [ [ - "Quantum Griffin", + "Meebo The Alien", 90, ], [ - "Quantum Dominus", + "Star Surfer", 9, ], [ - "Atomic Axolotl", + "Lunar Fox", 1, "Nice", ], [ - "Atomic Monkey", + "Lunar Deer", 0.1, "Great", ], ], "worldNumber": 2, }, - "configName": "210 | Void Crystal Egg", + "configName": "148 | Tech Moon Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.073Z", - "hashShort": "2d9a651f46f4d609", + "dateModified": "2026-04-18T15:56:36.469Z", + "hashShort": "ed3a5f9fe00e46f4", }, { - "category": "Update 9", + "category": "Update 7", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 211, - "icon": "rbxassetid://15172355963", - "name": "Void Fracture Egg", + "eggNumber": 149, + "goldenThumbnail": "rbxassetid://115521021659856", + "icon": "rbxassetid://117294534509744", + "name": "Tech Mars Egg", "pets": [ [ - "Atomic Axolotl", + "Lunar Fox", 90, ], [ - "Atomic Monkey", + "Lunar Deer", 9, ], [ - "Wireframe Dog", + "Red Fluffy", 1, "Nice", ], [ - "Wireframe Cat", + "Red Woofy", 0.1, "Great", ], ], "worldNumber": 2, }, - "configName": "211 | Void Fracture Egg", + "configName": "149 | Tech Mars Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.077Z", - "hashShort": "3368e4a582c04a57", + "dateModified": "2026-04-18T15:56:36.443Z", + "hashShort": "709700974a79575d", }, { - "category": "Update 9", + "category": "Update 7", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 212, - "icon": "rbxassetid://15172355963", - "name": "Void Spiral Egg", + "eggNumber": 150, + "goldenThumbnail": "rbxassetid://82203209040726", + "icon": "rbxassetid://70447942568821", + "name": "Tech Saturn Egg", "pets": [ [ - "Wireframe Dog", + "Red Fluffy", 90, ], [ - "Wireframe Cat", + "Red Woofy", 9, ], [ - "Void Alien", - 0.002, - "Insane", - ], - [ - "Black Hole Angelus", - 0.00004, - "Insane", + "Blue Fluffy", + 1, + "Nice", ], ], "worldNumber": 2, }, - "configName": "212 | Void Spiral Egg", + "configName": "150 | Tech Saturn Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.086Z", - "hashShort": "86470059dd5bc5fc", + "dateModified": "2026-04-18T15:56:36.444Z", + "hashShort": "ea0a130d172365d9", }, { - "category": "Update 9", + "category": "Update 7", "collection": "Eggs", "configData": { "currency": "TechCoins", - "eggNumber": 189, - "icon": "rbxassetid://15172355963", - "name": "Holographic Pipes Egg", + "eggNumber": 151, + "goldenThumbnail": "rbxassetid://135392776639244", + "icon": "rbxassetid://109298078127309", + "name": "Tech Comet Egg", "pets": [ [ - "Dominus Serpents", - 9, - ], - [ - "Wicked Empyrean Dominus", - 9, + "Blue Fluffy", + 99, ], [ - "Holographic Cat", + "Comet Cyclops", 1, "Nice", ], [ - "Holographic Corgi", + "Comet Agony", 0.1, "Great", ], ], "worldNumber": 2, }, - "configName": "189 | Holographic Pipes Egg", + "configName": "151 | Tech Comet Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.073Z", - "hashShort": "acc09de919ec7a18", + "dateModified": "2026-04-18T15:56:36.469Z", + "hashShort": "170f81ac070f65f9", }, { - "category": "Glitch", + "category": "Update 7", "collection": "Eggs", "configData": { - "currency": "GlitchCoins", - "egg": null, - "icon": "rbxassetid://13281715743", - "isCustomEgg": true, - "name": "Glitch Event 1 Egg", - "overrideCost": 200, + "currency": "TechCoins", + "eggNumber": 152, + "goldenThumbnail": "rbxassetid://111447972970860", + "icon": "rbxassetid://77960295253466", + "name": "Tech Galaxy Egg", "pets": [ [ - "Leprechaun Cat", - 70, + "Comet Cyclops", + 90, ], [ - "Irish Corgi", - 29, + "Comet Agony", + 9, ], [ - "Clover Fairy", + "Astral Axolotl", 1, + "Nice", ], [ - "Clover Axolotl", - 0.002, - ], - [ - "Huge Clover Fairy", - 0.00001, + "Galaxy Fox", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "Glitch Event 1 Egg", + "configName": "152 | Tech Galaxy Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.468Z", + "hashShort": "0637c31f2656e544", }, { - "category": "Glitch", + "category": "Update 7", "collection": "Eggs", "configData": { - "currency": "GlitchCoins", - "egg": null, - "icon": "rbxassetid://13281715743", - "isCustomEgg": true, - "name": "Glitch Event 3 Egg", - "overrideCost": 200, + "currency": "TechCoins", + "eggNumber": 153, + "goldenThumbnail": "rbxassetid://136392984233280", + "icon": "rbxassetid://131088993911675", + "name": "Electric Garden Egg", "pets": [ [ - "Leprechaun Cat", - 70, + "Astral Axolotl", + 90, ], [ - "Irish Corgi", - 29, + "Galaxy Fox", + 9, ], [ - "Clover Fairy", + "Electric Fox", 1, + "Nice", ], [ - "Clover Axolotl", - 0.002, - ], - [ - "Huge Clover Fairy", - 0.00001, + "Electric Bunny", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "Glitch Event 3 Egg", + "configName": "153 | Electric Garden Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.477Z", + "hashShort": "559ad8326dad5715", }, { - "category": "Glitch", + "category": "Update 7", "collection": "Eggs", "configData": { - "currency": "GlitchCoins", - "egg": null, - "icon": "rbxassetid://13281715743", - "isCustomEgg": true, - "name": "Glitch Event 2 Egg", - "overrideCost": 200, + "currency": "TechCoins", + "eggNumber": 154, + "goldenThumbnail": "rbxassetid://70923061244860", + "icon": "rbxassetid://121203311039239", + "name": "Electric City Egg", "pets": [ [ - "Leprechaun Cat", - 70, + "Electric Fox", + 90, ], [ - "Irish Corgi", - 29, + "Electric Bunny", + 9, ], [ - "Clover Fairy", + "Electric Bear", 1, + "Nice", ], [ - "Clover Axolotl", - 0.002, - ], - [ - "Huge Clover Fairy", - 0.00001, + "Electric Griffin", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "Glitch Event 2 Egg", + "configName": "154 | Electric City Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.453Z", + "hashShort": "5dafa2c54dc67f48", }, { - "category": "Glitch", + "category": "Update 7", "collection": "Eggs", "configData": { - "currency": "GlitchCoins", - "egg": null, - "icon": "rbxassetid://13281715743", - "isCustomEgg": true, - "name": "Glitch Event 4 Egg", - "overrideCost": 200, + "currency": "TechCoins", + "eggNumber": 155, + "goldenThumbnail": "rbxassetid://123372406568545", + "icon": "rbxassetid://78825773375850", + "name": "Electric Forest Egg", "pets": [ [ - "Leprechaun Cat", - 70, + "Electric Bear", + 90, ], [ - "Irish Corgi", - 29, + "Electric Griffin", + 9, ], [ - "Clover Fairy", + "Electric Cat", 1, + "Nice", ], [ - "Clover Axolotl", - 0.002, - ], - [ - "Huge Clover Fairy", - 0.00001, + "Electric Corgi", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "Glitch Event 4 Egg", + "configName": "155 | Electric Forest Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.464Z", + "hashShort": "ab71850c485ce893", }, { - "category": "Backrooms Update", + "category": "Update 7", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", - "isCustomEgg": true, - "name": "Backrooms Gooey Egg 5x", - "overrideCost": 250, + "currency": "TechCoins", + "eggNumber": 156, + "goldenThumbnail": "rbxassetid://79983900938211", + "icon": "rbxassetid://115164081207537", + "name": "Electric Egg", "pets": [ [ - "Ender Goat", - 80.4325, - ], - [ - "Creepy Yeti", - 19, - ], - [ - "Ender Slime", - 0.5, + "Electric Cat", + 90, ], [ - "Corrupt Skeleton", - 0.06, + "Electric Corgi", + 9, ], [ - "Corrupt Octopus", - 0.0075, + "Electric Unicorn", + 1, + "Nice", ], [ - "Huge Plague Dragon", - 0.0000020000000000000003, + "Electric Dragon", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "2 | Backrooms Gooey Egg 5x", + "configName": "156 | Electric Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.459Z", + "hashShort": "dba5680f10d4a062", }, { - "category": "Backrooms Update", + "category": "Update 7", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", - "isCustomEgg": true, - "name": "Backrooms Tentacles Egg 20x", - "overrideCost": 300, + "currency": "TechCoins", + "eggNumber": 157, + "goldenThumbnail": "rbxassetid://114561755847219", + "icon": "rbxassetid://79054356910061", + "name": "Tech Factory Egg", "pets": [ [ - "Creepy Yeti", - 82.463, + "Electric Unicorn", + 90, ], [ - "Ender Slime", - 17, + "Electric Dragon", + 9, ], [ - "Corrupt Skeleton", - 0.4, + "Robot", + 1, + "Nice", ], [ - "Corrupt Octopus", + "M-2 PROTOTYPE", 0.1, - ], - [ - "Creepy Wolf", - 0.03, - ], - [ - "Plague Dragon", - 0.007, - ], - [ - "Huge Plague Dragon", - 0.000008000000000000001, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "3 | Backrooms Tentacles Egg 20x", + "configName": "157 | Tech Factory Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.464Z", + "hashShort": "3b40870a1b93a183", }, { - "category": "Backrooms Update", + "category": "Update 7", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", - "isCustomEgg": true, - "name": "Backrooms Nightmare Egg 3x", - "overrideCost": 200, + "currency": "TechCoins", + "eggNumber": 158, + "goldenThumbnail": "rbxassetid://139189777717847", + "icon": "rbxassetid://92934045872550", + "name": "Tech Robot Egg", "pets": [ [ - "Night Terror Cat", - 69.985, + "Robot", + 90, ], [ - "Ender Goat", - 29, + "M-2 PROTOTYPE", + 9, ], [ - "Creepy Yeti", - 0.9, + "A-36", + 1, + "Nice", ], [ - "Ender Slime", + "M-10 PROTOTYPE", 0.1, - ], - [ - "Corrupt Skeleton", - 0.015, - ], - [ - "Huge Plague Dragon", - 0.0000012000000000000002, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "1 | Backrooms Nightmare Egg 3x", + "configName": "158 | Tech Robot Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.439Z", + "hashShort": "022865743c2961a1", }, { - "category": "Backrooms Update", + "category": "Update 7", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", - "isCustomEgg": true, - "name": "Backrooms Night Terror Egg 50x", - "overrideCost": 500, + "currency": "TechCoins", + "eggNumber": 159, + "goldenThumbnail": "rbxassetid://127932207016628", + "icon": "rbxassetid://131062668765452", + "name": "Tech Hive Egg", "pets": [ [ - "Ender Slime", - 86.585, + "A-36", + 90, ], [ - "Corrupt Skeleton", - 13, + "M-10 PROTOTYPE", + 9, ], [ - "Corrupt Octopus", - 0.32, + "Robot Bee", + 1, + "Nice", ], [ - "Creepy Wolf", - 0.07, + "M-B PROTOTYPE", + 0.1, + "Great", + ], + ], + "worldNumber": 2, + }, + "configName": "159 | Tech Hive Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:36.439Z", + "hashShort": "28253c68da8f11b8", + }, + { + "category": "Update 7", + "collection": "Eggs", + "configData": { + "currency": "TechCoins", + "eggNumber": 160, + "goldenThumbnail": "rbxassetid://76370250423865", + "icon": "rbxassetid://116245948453398", + "name": "Alien Garden Egg", + "pets": [ + [ + "Robot Bee", + 90, ], [ - "Plague Dragon", - 0.02, + "M-B PROTOTYPE", + 9, ], [ - "Ender Hades", - 0.001, + "Gleebo The Alien", + 1, + "Nice", ], [ - "Huge Plague Dragon", - 0.00002, + "Alien Arachnid", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "4 | Backrooms Night Terror Egg 50x", + "configName": "160 | Alien Garden Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.457Z", + "hashShort": "ddcb08ff22c88ee6", }, { - "category": "Backrooms Update", + "category": "Update 7", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", - "isCustomEgg": true, - "name": "Backrooms Nightmare Egg 2x", - "overrideCost": 200, + "currency": "TechCoins", + "eggNumber": 161, + "goldenThumbnail": "rbxassetid://91972080117970", + "icon": "rbxassetid://139699858183732", + "name": "Alien Forest Egg", "pets": [ [ - "Night Terror Cat", - 69.985, - ], - [ - "Ender Goat", - 29, + "Gleebo The Alien", + 70, ], [ - "Creepy Yeti", - 0.9, + "Nine Eyed Lion", + 20, ], [ - "Ender Slime", - 0.1, + "Alien Arachnid", + 9, ], [ - "Corrupt Skeleton", - 0.015, + "Alien Axolotl", + 1, + "Nice", ], [ - "Huge Plague Dragon", - 8e-7, + "Alien Parasite", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "1 | Backrooms Nightmare Egg 2x", + "configName": "161 | Alien Forest Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.440Z", + "hashShort": "1bf18f80ce91addd", }, { - "category": "Backrooms Update", + "category": "Update 7", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", - "isCustomEgg": true, - "name": "Backrooms Nightmare Egg 1x", - "overrideCost": 200, + "currency": "TechCoins", + "eggNumber": 145, + "goldenThumbnail": "rbxassetid://96424536294068", + "icon": "rbxassetid://96811705679826", + "name": "Nuclear Egg", "pets": [ [ - "Night Terror Cat", - 69.985, + "Nuclear Mining Cat", + 90, ], [ - "Ender Goat", - 29, + "Nuclear Mining Dog", + 9, ], [ - "Creepy Yeti", - 0.9, + "Nuclear Mortuus", + 1, + "Nice", ], [ - "Ender Slime", + "Nuclear Agony", 0.1, - ], - [ - "Corrupt Skeleton", - 0.015, - ], - [ - "Huge Plague Dragon", - 4e-7, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "1 | Backrooms Nightmare Egg 1x", + "configName": "145 | Nuclear Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.461Z", + "hashShort": "ca2b08fcea3daa08", }, { - "category": "Backrooms Update", + "category": "Machine Eggs", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", - "isCustomEgg": true, - "name": "Backrooms Gooey Egg 10x", - "overrideCost": 250, + "disableGold": false, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 5, + "icon": "rbxassetid://16756521111", + "name": "Active Huge Egg", "pets": [ [ - "Ender Goat", - 80.4325, - ], - [ - "Creepy Yeti", - 19, - ], - [ - "Ender Slime", - 0.5, + "Huge Horse", + 1, ], [ - "Corrupt Skeleton", - 0.06, + "Huge Walrus", + 1, ], [ - "Corrupt Octopus", - 0.0075, + "Huge Moray Eel", + 1, ], [ - "Huge Plague Dragon", - 0.000004000000000000001, + "Huge Gazelle", + 1, ], ], + "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "shinyChance": 2, }, - "configName": "2 | Backrooms Gooey Egg 10x", + "configName": "Active Huge Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-06-27T16:06:50.659Z", + "hashShort": "8c2dee5b4e14f4a1", }, { - "category": "Backrooms Update", + "category": "St Patricks", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", + "currency": "CloverCoins", "egg": null, - "goldenEgg": null, - "icon": "", + "icon": "rbxassetid://13281715743", "isCustomEgg": true, - "name": "Backrooms Gooey Egg 15x", - "overrideCost": 250, + "name": "Pot of Gold Egg", + "overrideCost": 200, "pets": [ [ - "Ender Goat", - 80.4325, - ], - [ - "Creepy Yeti", - 19, + "Leprechaun Cat", + 70, ], [ - "Ender Slime", - 0.5, + "Irish Corgi", + 29, ], [ - "Corrupt Skeleton", - 0.06, + "Clover Fairy", + 1, ], [ - "Corrupt Octopus", - 0.0075, + "Clover Axolotl", + 0.002, ], [ - "Huge Plague Dragon", - 0.000006, + "Huge Clover Fairy", + 0.00001, ], ], "rarity": { @@ -19807,1136 +20028,987 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Backrooms Gooey Egg 15x", + "configName": "St Patrick Egg", "dateCreated": null, "dateModified": null, "hashShort": null, }, { - "category": "Backrooms Update", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", - "isCustomEgg": true, - "name": "Backrooms Tentacles Egg 25x", - "overrideCost": 300, + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://17014122346", + "name": "Exclusive Sketch Egg", "pets": [ [ - "Creepy Yeti", - 82.463, - ], - [ - "Ender Slime", - 17, + "Sketch Corgi", + 50, ], [ - "Corrupt Skeleton", - 0.4, + "Sketch Cow", + 35, ], [ - "Corrupt Octopus", - 0.1, + "Sketch Dragon", + 13, ], [ - "Creepy Wolf", - 0.03, + "Huge Sketch Corgi", + 1.25, ], [ - "Plague Dragon", - 0.007, + "Huge Sketch Dragon", + 0.7, ], [ - "Huge Plague Dragon", - 0.00001, + "Titanic Sketch Cat", + 0.05, ], ], + "productIds": { + "10 Exclusive Eggs": 1797797125, + "100 Exclusive Eggs": 1797797530, + "3 Exclusive Eggs": 1797796754, + "Exclusive Egg": 1797796411, + }, + "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "shinyChance": 2, }, - "configName": "3 | Backrooms Tentacles Egg 25x", + "configName": "Exclusive Egg 24", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2025-07-05T23:29:23.878Z", + "hashShort": "df706c65167cdacc", }, { - "category": "Backrooms Update", + "category": "Update 8", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", - "isCustomEgg": true, - "name": "Backrooms Tentacles Egg 30x", - "overrideCost": 300, + "currency": "TechCoins", + "eggNumber": 182, + "goldenThumbnail": "rbxassetid://122898181942876", + "icon": "rbxassetid://119734813292912", + "name": "Tech Kyoto Egg", "pets": [ [ - "Creepy Yeti", - 82.463, + "Cyberpunk Spider", + 90, ], [ - "Ender Slime", - 17, + "Cyberpunk Ghost", + 9, ], [ - "Corrupt Skeleton", - 0.4, + "Tech Ninja Panda", + 1, + "Nice", ], [ - "Corrupt Octopus", + "Tech Ninja Giraffe", 0.1, + "Great", + ], + ], + "worldNumber": 2, + }, + "configName": "182 | Tech Kyoto Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:36.459Z", + "hashShort": "f52014393d1d17e1", + }, + { + "category": "Update 8", + "collection": "Eggs", + "configData": { + "currency": "TechCoins", + "eggNumber": 180, + "goldenThumbnail": "rbxassetid://79256110882027", + "icon": "rbxassetid://89122449244912", + "name": "Cyberpunk City Egg", + "pets": [ + [ + "Cyberpunk Bunny", + 90, ], [ - "Creepy Wolf", - 0.03, + "Cyberpunk Meerkat", + 9, ], [ - "Plague Dragon", - 0.007, + "Cyberpunk Cat", + 1, + "Nice", ], [ - "Huge Plague Dragon", - 0.000012, + "Cyberpunk Dog", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "3 | Backrooms Tentacles Egg 30x", + "configName": "180 | Cyberpunk City Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.434Z", + "hashShort": "cb1bdb475fad05a0", }, { - "category": "Backrooms Update", + "category": "Update 8", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", - "isCustomEgg": true, - "name": "Backrooms Night Terror Egg 75x", - "overrideCost": 500, + "currency": "TechCoins", + "eggNumber": 177, + "goldenThumbnail": "rbxassetid://85316573570701", + "icon": "rbxassetid://106645779299334", + "name": "Wizard Dungeon Egg", "pets": [ [ - "Ender Slime", - 86.585, + "Wizard Cat", + 90, ], [ - "Corrupt Skeleton", - 13, + "Wizard Unicorn", + 9, ], [ - "Corrupt Octopus", - 0.32, + "Runic Wolf", + 1, + "Nice", ], [ - "Creepy Wolf", - 0.07, + "Runic Agony", + 0.1, + "Great", ], + ], + "worldNumber": 2, + }, + "configName": "177 | Wizard Dungeon Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:36.434Z", + "hashShort": "981cff0fccf59813", + }, + { + "category": "Update 8", + "collection": "Eggs", + "configData": { + "currency": "TechCoins", + "eggNumber": 183, + "goldenThumbnail": "rbxassetid://103183763547643", + "icon": "rbxassetid://98796208065754", + "name": "Tech Samurai Egg", + "pets": [ [ - "Plague Dragon", - 0.02, + "Tech Ninja Panda", + 90, ], [ - "Ender Hades", - 0.001, + "Tech Ninja Giraffe", + 9, ], [ - "Huge Plague Dragon", - 0.000029999999999999997, + "Tech Samurai Cat", + 1, + "Nice", + ], + [ + "Tech Samurai Dragon", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "4 | Backrooms Night Terror Egg 75x", + "configName": "183 | Tech Samurai Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.463Z", + "hashShort": "c3c05f6db2a07455", }, { - "category": "Backrooms Update", + "category": "Update 8", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", - "isCustomEgg": true, - "name": "Backrooms Night Terror Egg 100x", - "overrideCost": 500, + "currency": "TechCoins", + "eggNumber": 187, + "goldenThumbnail": "rbxassetid://113552279079202", + "icon": "rbxassetid://117847042683243", + "name": "Dominus Frigidus Egg", "pets": [ [ - "Ender Slime", - 86.585, - ], - [ - "Corrupt Skeleton", - 13, - ], - [ - "Corrupt Octopus", - 0.32, + "Dominus Infernus", + 70, ], [ - "Creepy Wolf", - 0.07, + "Stacked Dominus", + 29, ], [ - "Plague Dragon", - 0.02, + "Dominus Hippomelon", + 1, + "Nice", ], [ - "Ender Hades", - 0.001, + "Dominus Mushrooms", + 0.002, + "Insane", ], [ - "Huge Plague Dragon", + "Dominus Alienus", 0.00004, + "Insane", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "4 | Backrooms Night Terror Egg 100x", + "configName": "187 | Dominus Frigidus Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.476Z", + "hashShort": "95604eb70575f7d9", }, { - "category": "Exclusive Eggs", + "category": "Update 8", "collection": "Eggs", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://17454584246", - "name": "Exclusive Bejeweled Egg", + "currency": "TechCoins", + "eggNumber": 184, + "goldenThumbnail": "rbxassetid://125853363979976", + "icon": "rbxassetid://118296936544192", + "name": "Tech Dojo Egg", "pets": [ [ - "Bejeweled Unicorn", - 50, - ], - [ - "Bejeweled Deer", - 35, - ], - [ - "Bejeweled Lion", - 13, + "Tech Samurai Cat", + 90, ], [ - "Huge Bejeweled Unicorn", - 1.25, + "Tech Samurai Dragon", + 9, ], [ - "Huge Bejeweled Lion", - 0.7, + "Tech Ninja Red Panda", + 1, + "Nice", ], [ - "Titanic Bejeweled Griffin", - 0.05, + "Tech Ninja Cow", + 0.1, + "Great", ], ], - "productIds": { - "10 Exclusive Eggs": 1826308984, - "100 Exclusive Eggs": 1826309139, - "3 Exclusive Eggs": 1826308878, - "Exclusive Egg": 1826308749, - }, - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, + "worldNumber": 2, }, - "configName": "Exclusive Egg 26", + "configName": "184 | Tech Dojo Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.887Z", - "hashShort": "538ab5659c01d802", + "dateModified": "2026-04-18T15:56:36.470Z", + "hashShort": "d55e3c0231bea35d", }, { - "category": "Backrooms Update", + "category": "Update 8", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", - "isCustomEgg": true, - "name": "Backrooms Fear Egg 1x", - "overrideCost": 1000, + "currency": "TechCoins", + "eggNumber": 178, + "goldenThumbnail": "rbxassetid://96620497574355", + "icon": "rbxassetid://73514311748064", + "name": "Cyberpunk Undercity Egg", "pets": [ [ - "Creepy Yeti", - 69.985, + "Runic Wolf", + 90, ], [ - "Night Terror Dog", - 29, + "Runic Agony", + 9, ], [ - "Ender Slime", - 0.9, + "Cyberpunk Gecko", + 1, + "Nice", ], [ - "Corrupt Skeleton", + "Cyberpunk Axolotl", 0.1, - ], - [ - "Ender Bunny", - 0.015, - ], - [ - "Huge Night Terror Cat", - 0.000001, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "5 | Backrooms Fear Egg 1x", + "configName": "178 | Cyberpunk Undercity Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.442Z", + "hashShort": "c80c7dd8d196c8c6", }, { - "category": "Backrooms Update", + "category": "Update 8", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", - "isCustomEgg": true, - "name": "Backrooms Overgrown Egg 10x", - "overrideCost": 1250, + "currency": "TechCoins", + "eggNumber": 179, + "goldenThumbnail": "rbxassetid://102297155689862", + "icon": "rbxassetid://113932978831980", + "name": "Cyberpunk Industrial Egg", "pets": [ [ - "Night Terror Dog", - 80.4325, - ], - [ - "Ender Slime", - 19, - ], - [ - "Corrupt Skeleton", - 0.5, + "Cyberpunk Gecko", + 90, ], [ - "Ender Bunny", - 0.06, + "Cyberpunk Axolotl", + 9, ], [ - "Evil Gorilla", - 0.0075, + "Cyberpunk Bunny", + 1, + "Nice", ], [ - "Huge Night Terror Cat", - 0.00001, + "Cyberpunk Meerkat", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "6 | Backrooms Overgrown Egg 10x", + "configName": "179 | Cyberpunk Industrial Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.466Z", + "hashShort": "635f6b846b9b38f1", }, { - "category": "Backrooms Update", + "category": "Update 8", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", - "isCustomEgg": true, - "name": "Backrooms Fear Egg 3x", - "overrideCost": 1000, + "currency": "TechCoins", + "eggNumber": 174, + "goldenThumbnail": "rbxassetid://125272877770985", + "icon": "rbxassetid://118393018766319", + "name": "Wizard Temple Egg", "pets": [ [ - "Creepy Yeti", - 69.985, + "Relic Squirrel", + 90, ], [ - "Night Terror Dog", - 29, + "Relic Goblin", + 9, ], [ - "Ender Slime", - 0.9, + "Relic Bear", + 1, + "Nice", ], [ - "Corrupt Skeleton", + "Relic Dragon", 0.1, - ], - [ - "Ender Bunny", - 0.015, - ], - [ - "Huge Night Terror Cat", - 0.000003, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "5 | Backrooms Fear Egg 3x", + "configName": "174 | Wizard Temple Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.471Z", + "hashShort": "5a28c567274f1a93", }, { - "category": "Backrooms Update", + "category": "Update 8", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", - "isCustomEgg": true, - "name": "Backrooms Corrupt Egg 50x", - "overrideCost": 2500, + "currency": "TechCoins", + "eggNumber": 176, + "goldenThumbnail": "rbxassetid://102369107136081", + "icon": "rbxassetid://79185841398466", + "name": "Wizard Tower Egg", "pets": [ [ - "Corrupt Skeleton", - 82.575, - ], - [ - "Ender Bunny", - 17, - ], - [ - "Evil Gorilla", - 0.4, + "Relic Fox", + 90, ], [ - "Corrupt Cat", - 0.02, + "Relic Raccoon", + 9, ], [ - "Plague Cow", - 0.001, + "Wizard Cat", + 1, + "Nice", ], [ - "Huge Night Terror Cat", - 0.00005, + "Wizard Unicorn", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "8 | Backrooms Corrupt Egg 50x", + "configName": "176 | Wizard Tower Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.438Z", + "hashShort": "160f00afedb8f0d3", }, { - "category": "Backrooms Update", + "category": "Update 8", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", - "isCustomEgg": true, - "name": "Backrooms Ender Egg 30x", - "overrideCost": 1500, + "currency": "TechCoins", + "eggNumber": 185, + "goldenThumbnail": "rbxassetid://89245418641677", + "icon": "rbxassetid://106685089525731", + "name": "Tech Sakura Egg", "pets": [ [ - "Ender Slime", - 82.463, - ], - [ - "Corrupt Skeleton", - 17, - ], - [ - "Ender Bunny", - 0.4, + "Tech Ninja Red Panda", + 90, ], [ - "Evil Gorilla", - 0.13, + "Tech Ninja Cow", + 9, ], [ - "Corrupt Cat", - 0.007, + "Cyberpunk Husky", + 1, + "Nice", ], [ - "Huge Night Terror Cat", - 0.00003, + "Cyberpunk Lemur", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "7 | Backrooms Ender Egg 30x", + "configName": "185 | Tech Sakura Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.456Z", + "hashShort": "05a21372f080f83f", }, { - "category": "Backrooms Update", + "category": "Update 8", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", - "isCustomEgg": true, - "name": "Backrooms Overgrown Egg 15x", - "overrideCost": 1250, + "currency": "TechCoins", + "eggNumber": 175, + "goldenThumbnail": "rbxassetid://133276985759438", + "icon": "rbxassetid://82875355281819", + "name": "Wizard Forest Egg", "pets": [ [ - "Night Terror Dog", - 80.4325, - ], - [ - "Ender Slime", - 19, - ], - [ - "Corrupt Skeleton", - 0.5, + "Relic Bear", + 90, ], [ - "Ender Bunny", - 0.06, + "Relic Dragon", + 9, ], [ - "Evil Gorilla", - 0.0075, + "Relic Fox", + 1, + "Nice", ], [ - "Huge Night Terror Cat", - 0.000015, + "Relic Raccoon", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "6 | Backrooms Overgrown Egg 15x", + "configName": "175 | Wizard Forest Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.492Z", + "hashShort": "4b68de7a12bb25e8", }, { - "category": "Backrooms Update", + "category": "Update 8", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", - "isCustomEgg": true, - "name": "Backrooms Ender Egg 20x", - "overrideCost": 1500, + "currency": "TechCoins", + "eggNumber": 173, + "goldenThumbnail": "rbxassetid://124173540916774", + "icon": "rbxassetid://136947774640022", + "name": "Wizard Ruins Egg", "pets": [ [ - "Ender Slime", - 82.463, - ], - [ - "Corrupt Skeleton", - 17, - ], - [ - "Ender Bunny", - 0.4, + "Circuit Corgi", + 90, ], [ - "Evil Gorilla", - 0.13, + "Circuit Griffin", + 9, ], [ - "Corrupt Cat", - 0.007, + "Relic Squirrel", + 1, + "Nice", ], [ - "Huge Night Terror Cat", - 0.00002, + "Relic Goblin", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "7 | Backrooms Ender Egg 20x", + "configName": "173 | Wizard Ruins Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.449Z", + "hashShort": "2c75748efceb75da", }, { - "category": "Backrooms Update", + "category": "Update 8", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", - "isCustomEgg": true, - "name": "Backrooms Fear Egg 2x", - "overrideCost": 1000, + "currency": "TechCoins", + "eggNumber": 172, + "goldenThumbnail": "rbxassetid://127354925593477", + "icon": "rbxassetid://123036720887781", + "name": "Aura Egg", "pets": [ [ - "Creepy Yeti", - 69.985, + "Circuit Cat", + 90, ], [ - "Night Terror Dog", - 29, + "Circuit Slime", + 9, ], [ - "Ender Slime", - 0.9, + "Circuit Corgi", + 1, + "Nice", ], [ - "Corrupt Skeleton", + "Circuit Griffin", 0.1, + "Great", + ], + ], + "worldNumber": 2, + }, + "configName": "172 | Aura Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:36.474Z", + "hashShort": "a02f6f71e48cf6fd", + }, + { + "category": "Update 8", + "collection": "Eggs", + "configData": { + "currency": "TechCoins", + "eggNumber": 171, + "goldenThumbnail": "rbxassetid://118557610248314", + "icon": "rbxassetid://73061778147453", + "name": "Motherboard Egg", + "pets": [ + [ + "Steampunk Bat", + 90, ], [ - "Ender Bunny", - 0.015, + "Blimp Dragon", + 9, ], [ - "Huge Night Terror Cat", - 0.000002, + "Circuit Cat", + 1, + "Nice", + ], + [ + "Circuit Slime", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "5 | Backrooms Fear Egg 2x", + "configName": "171 | Motherboard Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.451Z", + "hashShort": "db25264c9d06b032", }, { - "category": "Backrooms Update", + "category": "Update 8", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", - "isCustomEgg": true, - "name": "Backrooms Overgrown Egg 5x", - "overrideCost": 1250, + "currency": "TechCoins", + "eggNumber": 186, + "goldenThumbnail": "rbxassetid://137001867374857", + "icon": "rbxassetid://127328941404893", + "name": "Dominus Rex Egg", "pets": [ [ - "Night Terror Dog", - 80.4325, - ], - [ - "Ender Slime", - 19, + "Cyberpunk Husky", + 70, ], [ - "Corrupt Skeleton", - 0.5, + "Domortuus", + 20, ], [ - "Ender Bunny", - 0.06, + "Cyberpunk Lemur", + 9, ], [ - "Evil Gorilla", - 0.0075, + "Dominus Infernus", + 1, + "Nice", ], [ - "Huge Night Terror Cat", - 0.000005, + "Stacked Dominus", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "6 | Backrooms Overgrown Egg 5x", + "configName": "186 | Dominus Rex Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.455Z", + "hashShort": "abcb7ed457a3e0b4", }, { - "category": "Backrooms Update", + "category": "Update 8", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", - "isCustomEgg": true, - "name": "Backrooms Ender Egg 25x", - "overrideCost": 1500, + "currency": "TechCoins", + "eggNumber": 163, + "goldenThumbnail": "rbxassetid://103222289903175", + "icon": "rbxassetid://126586483150533", + "name": "Alien UFO Egg", "pets": [ [ - "Ender Slime", - 82.463, + "Alien Octopus", + 90, ], [ - "Corrupt Skeleton", - 17, + "Brain", + 10, ], + ], + "worldNumber": 2, + }, + "configName": "163 | Alien UFO Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:36.465Z", + "hashShort": "cb2e17052313f697", + }, + { + "category": "Update 8", + "collection": "Eggs", + "configData": { + "currency": "TechCoins", + "eggNumber": 164, + "goldenThumbnail": "rbxassetid://125097130260593", + "icon": "rbxassetid://98668253959640", + "name": "Space Forge Egg", + "pets": [ [ - "Ender Bunny", - 0.4, + "Alien Octopus", + 90, ], [ - "Evil Gorilla", - 0.13, + "Brain", + 9, ], [ - "Corrupt Cat", - 0.007, + "Forged Cyclops", + 1, + "Nice", ], [ - "Huge Night Terror Cat", - 0.000025, + "Forged Robot", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "7 | Backrooms Ender Egg 25x", + "configName": "164 | Space Forge Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.467Z", + "hashShort": "676b18180e5e6f53", }, { - "category": "Backrooms Update", + "category": "Update 8", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", - "isCustomEgg": true, - "name": "Backrooms Corrupt Egg 75x", - "overrideCost": 2500, + "currency": "TechCoins", + "eggNumber": 165, + "goldenThumbnail": "rbxassetid://131295993196558", + "icon": "rbxassetid://82302657392633", + "name": "Space Factory Egg", "pets": [ [ - "Corrupt Skeleton", - 82.575, - ], - [ - "Ender Bunny", - 17, - ], - [ - "Evil Gorilla", - 0.4, + "Forged Cyclops", + 90, ], [ - "Corrupt Cat", - 0.02, + "Forged Robot", + 9, ], [ - "Plague Cow", - 0.001, + "Forged Hedgehog", + 1, + "Nice", ], [ - "Huge Night Terror Cat", - 0.000075, + "Forged Turtle", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "8 | Backrooms Corrupt Egg 75x", + "configName": "165 | Space Factory Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.450Z", + "hashShort": "da297d75254cdfe0", }, { - "category": "Backrooms Update", + "category": "Update 8", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", - "isCustomEgg": true, - "name": "Backrooms Corrupt Egg 100x", - "overrideCost": 2500, + "currency": "TechCoins", + "eggNumber": 167, + "goldenThumbnail": "rbxassetid://73077147206778", + "icon": "rbxassetid://98287590405364", + "name": "Steampunk Gears Egg", "pets": [ [ - "Corrupt Skeleton", - 82.575, - ], - [ - "Ender Bunny", - 17, + "Junkyard Bat", + 70, ], [ - "Evil Gorilla", - 0.4, + "Cat Magician", + 20, ], [ - "Corrupt Cat", - 0.02, + "Junkyard Hound", + 9, ], [ - "Plague Cow", - 0.001, + "Sophisticated Fox", + 1, + "Nice", ], [ - "Huge Night Terror Cat", - 0.00004, + "Steampunk Fish", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "8 | Backrooms Corrupt Egg 100x", + "configName": "167 | Steampunk Gears Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.456Z", + "hashShort": "edcd6ff4d0371c96", }, { - "category": "Update 12", + "category": "Update 8", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "eggNumber": 213, - "icon": "rbxassetid://15172355963", - "name": "Rusty Egg", + "currency": "TechCoins", + "eggNumber": 166, + "goldenThumbnail": "rbxassetid://137559105568448", + "icon": "rbxassetid://104465562998700", + "name": "Space Junkyard Egg", "pets": [ [ - "Prison Cat", + "Forged Hedgehog", 90, ], [ - "Prison Monkey", - 10, + "Forged Turtle", + 9, + ], + [ + "Junkyard Bat", + 1, + "Nice", + ], + [ + "Junkyard Hound", + 0.1, + "Great", ], ], - "worldNumber": 3, + "worldNumber": 2, }, - "configName": "213 | Rusty Egg", + "configName": "166 | Space Junkyard Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.069Z", - "hashShort": "77a3eb35a766527c", + "dateModified": "2026-04-18T15:56:36.468Z", + "hashShort": "6137b86800c1ac61", }, { - "category": "Update 12", + "category": "Update 8", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "eggNumber": 214, - "icon": "rbxassetid://15172355963", - "name": "Striped Egg", + "currency": "TechCoins", + "eggNumber": 168, + "goldenThumbnail": "rbxassetid://133749130502256", + "icon": "rbxassetid://126216233570285", + "name": "Steampunk Lantern Egg", "pets": [ [ - "Prison Monkey", - 90, + "Sophisticated Fox", + 70, ], [ - "Prison Dog", + "Toy Mouse", + 20, + ], + [ + "Steampunk Fish", 9, ], [ - "Robber Cat", + "Ducky Magician", 1, "Nice", ], + [ + "Mechanical Spider", + 0.1, + "Great", + ], ], - "worldNumber": 3, + "worldNumber": 2, }, - "configName": "214 | Striped Egg", + "configName": "168 | Steampunk Lantern Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.069Z", - "hashShort": "f45558427b848170", + "dateModified": "2026-04-18T15:56:36.470Z", + "hashShort": "f26a0abe44ceed31", }, { - "category": "Update 12", + "category": "Update 8", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "eggNumber": 215, - "icon": "rbxassetid://15172355963", - "name": "Cinderblocks Egg", + "currency": "TechCoins", + "eggNumber": 170, + "goldenThumbnail": "rbxassetid://102176525117354", + "icon": "rbxassetid://96593780830384", + "name": "Steampunk Airship Egg", "pets": [ [ - "Robber Cat", - 90, + "Steampunk Crocodile", + 70, ], [ - "Prison Bunny", + "Steampunk Wolf", + 20, + ], + [ + "Mining Mole", 9, ], [ - "Detective Cat", + "Steampunk Bat", 1, "Nice", ], + [ + "Blimp Dragon", + 0.1, + "Great", + ], ], - "worldNumber": 3, + "worldNumber": 2, }, - "configName": "215 | Cinderblocks Egg", + "configName": "170 | Steampunk Airship Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.087Z", - "hashShort": "89e63ec1b9137bb9", + "dateModified": "2026-04-18T15:56:36.458Z", + "hashShort": "d7001b808ebc4aa0", }, { - "category": "Update 12", + "category": "Update 8", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "eggNumber": 216, - "icon": "rbxassetid://15172355963", - "name": "Lootbag Egg", + "currency": "TechCoins", + "eggNumber": 169, + "goldenThumbnail": "rbxassetid://130898867371869", + "icon": "rbxassetid://104469542396576", + "name": "Steampunk Clockwork Egg", "pets": [ [ - "Detective Cat", - 100, + "Ducky Magician", + 70, ], [ - "Prison Cow", - 0.1, + "Steampunk Octopus", + 20, ], [ - "Prison Axolotl", - 0.001, + "Mechanical Spider", + 9, ], [ - "Guard Corgi", - 0.00001, + "Steampunk Crocodile", + 1, + "Nice", + ], + [ + "Mining Mole", + 0.1, + "Great", ], ], - "worldNumber": 3, + "worldNumber": 2, }, - "configName": "216 | Lootbag Egg", + "configName": "169 | Steampunk Clockwork Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.082Z", - "hashShort": "3ed1230a7614fe41", + "dateModified": "2026-04-18T15:56:36.491Z", + "hashShort": "2c73879b50514252", }, { - "category": "Backrooms", + "category": "Update 8", "collection": "Eggs", "configData": { - "currency": "Coins", - "egg": null, - "icon": "rbxassetid://13281715743", - "isCustomEgg": true, - "name": "Backrooms Egg", - "overrideCost": 200, + "currency": "TechCoins", + "eggNumber": 181, + "goldenThumbnail": "rbxassetid://96377992647986", + "icon": "rbxassetid://124926654651940", + "name": "Cyberpunk Road Egg", "pets": [ [ - "Leprechaun Cat", - 70, + "Cyberpunk Cat", + 90, ], [ - "Irish Corgi", - 29, + "Cyberpunk Dog", + 9, ], [ - "Clover Fairy", + "Cyberpunk Spider", 1, + "Nice", ], [ - "Clover Axolotl", - 0.002, - ], - [ - "Huge Clover Fairy", - 0.00001, + "Cyberpunk Ghost", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "Backrooms Egg", + "configName": "181 | Cyberpunk Road Egg", "dateCreated": null, - "dateModified": null, - "hashShort": null, + "dateModified": "2026-04-18T15:56:36.474Z", + "hashShort": "4ac8a9372e0141a7", }, { "category": "Exclusive Eggs", @@ -20946,39 +21018,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "disableModifiers": true, "disableRainbow": false, "goldChance": 0, - "icon": "rbxassetid://17604555124", - "name": "Exclusive Stargazing Egg", + "icon": "rbxassetid://17285382732", + "name": "Exclusive Black Hole Egg", "pets": [ [ - "Stargazing Wolf", + "Black Hole Axolotl", 50, ], [ - "Stargazing Bear", + "Black Hole Immortuus", 35, ], [ - "Stargazing Axolotl", + "Black Hole Kitsune", 13, ], [ - "Huge Stargazing Wolf", + "Huge Black Hole Axolotl", 1.25, ], [ - "Huge Stargazing Axolotl", + "Huge Black Hole Kitsune", 0.7, ], [ - "Titanic Stargazing Bull", + "Titanic Black Hole Angelus", 0.05, ], ], "productIds": { - "10 Exclusive Eggs": 1834304245, - "100 Exclusive Eggs": 1834304343, - "3 Exclusive Eggs": 1834304163, - "Exclusive Egg": 1834304054, + "10 Exclusive Eggs": 1815003478, + "100 Exclusive Eggs": 1815003694, + "3 Exclusive Eggs": 1815003379, + "Exclusive Egg": 1815003205, }, "rainbowChance": 2, "rarity": { @@ -20995,746 +21067,853 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` }, "shinyChance": 2, }, - "configName": "Exclusive Egg 27", + "configName": "Exclusive Egg 25", "dateCreated": null, "dateModified": "2025-07-05T23:29:23.889Z", - "hashShort": "4c5945b667324878", + "hashShort": "d17384bf94d24efc", }, { - "category": "Events", + "category": "Update 9", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Police Egg", - "overrideCost": 10000, + "currency": "TechCoins", + "eggNumber": 188, + "goldenThumbnail": "rbxassetid://105396951356690", + "icon": "rbxassetid://124052513113946", + "name": "Dominus Infernus Egg", "pets": [ [ - "Prison Cow", - 100, - "Nice", - ], - [ - "Prison Axolotl", - 0.075, - "Great", + "Dominus Serpents", + 90, ], [ - "Guard Corgi", - 0.0005, - "Insane", + "Wicked Empyrean Dominus", + 10, ], + ], + "worldNumber": 2, + }, + "configName": "188 | Dominus Infernus Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:36.488Z", + "hashShort": "670953daed839314", + }, + { + "category": "Update 9", + "collection": "Eggs", + "configData": { + "currency": "TechCoins", + "eggNumber": 190, + "goldenThumbnail": "rbxassetid://124685646182420", + "icon": "rbxassetid://95710902786812", + "name": "Holographic Egg", + "pets": [ [ - "Police Dog", - 0.001, - "Insane", + "Holographic Cat", + 90, ], [ - "Police Cat", - 0.00001, - "Insane", + "Holographic Corgi", + 9, ], [ - "Huge Police Cat", - 0.000001, - "Insane", + "Holographic Bear", + 1, + "Nice", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "Police Egg", + "configName": "190 | Holographic Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.190Z", - "hashShort": "bb8ea1535d397d62", + "dateModified": "2026-04-18T15:56:36.476Z", + "hashShort": "b60136bf517219ef", }, { - "category": "Update 14", + "category": "Update 9", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "eggNumber": 217, - "icon": "rbxassetid://15172355963", - "name": "Summer Beach Egg", + "currency": "TechCoins", + "eggNumber": 191, + "goldenThumbnail": "rbxassetid://95771793089283", + "icon": "rbxassetid://101963015595571", + "name": "Holographic Tree Egg", "pets": [ [ - "Scuba Dog", - 70, + "Holographic Bear", + 90, ], [ - "Scuba Shark", - 29, + "Holographic Monkey", + 9, ], [ - "Floatie Ducky", + "Holographic Axolotl", 1, "Nice", ], ], - "worldNumber": 3, + "worldNumber": 2, }, - "configName": "217 | Summer Beach Egg", + "configName": "191 | Holographic Tree Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.075Z", - "hashShort": "db708eeaea64b5a1", + "dateModified": "2026-04-18T15:56:36.457Z", + "hashShort": "dab86123857f370c", }, { - "category": "Update 14", + "category": "Update 9", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "eggNumber": 218, - "icon": "rbxassetid://15172355963", - "name": "Summer Floatie Egg", + "currency": "TechCoins", + "eggNumber": 192, + "goldenThumbnail": "rbxassetid://119322412215012", + "icon": "rbxassetid://117027615198857", + "name": "Holographic Crystal Egg", "pets": [ [ - "Floatie Ducky", - 80, + "Holographic Monkey", + 90, ], [ - "Floatie Flamingo", - 19.5, + "Holographic Axolotl", + 9, ], [ - "Beach Ball Dolphin", - 0.5, + "Holographic Dragon", + 1, "Nice", ], ], - "worldNumber": 3, + "worldNumber": 2, }, - "configName": "218 | Summer Floatie Egg", + "configName": "192 | Holographic Crystal Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.074Z", - "hashShort": "d6f40dc3b9cf9f73", + "dateModified": "2026-04-18T15:56:36.462Z", + "hashShort": "02de449ab8352fdd", }, { - "category": "Update 14", + "category": "Update 9", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "eggNumber": 219, - "icon": "rbxassetid://15172355963", - "name": "Summer Melon Egg", + "currency": "TechCoins", + "eggNumber": 193, + "goldenThumbnail": "rbxassetid://108254142116861", + "icon": "rbxassetid://108631467427463", + "name": "Dark Tech Stone Egg", "pets": [ [ - "Beach Ball Dolphin", - 85, + "Holographic Dragon", + 90, ], [ - "Beach Ball Monkey", - 14.75, + "Shadow Dolphin", + 9, ], [ - "Flower Cat", - 0.25, + "Shadow Shark", + 1, "Nice", ], ], - "worldNumber": 3, + "worldNumber": 2, }, - "configName": "219 | Summer Melon Egg", + "configName": "193 | Dark Tech Stone Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.079Z", - "hashShort": "b3f4fa0e950580ff", + "dateModified": "2026-04-18T15:56:36.464Z", + "hashShort": "1b1cde0dbab3ed88", }, { - "category": "Update 14", + "category": "Update 9", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "eggNumber": 220, - "icon": "rbxassetid://15172355963", - "name": "Summer Beachball Egg", + "currency": "TechCoins", + "eggNumber": 194, + "goldenThumbnail": "rbxassetid://135969142996493", + "icon": "rbxassetid://85325231700356", + "name": "Dark Tech Relic Egg", "pets": [ [ - "Flower Cat", - 85, - ], - [ - "Surfboard Corgi", - 15, + "Shadow Dolphin", + 90, ], [ - "Surfboard Axolotl", - 0.1, - "Great", + "Shadow Shark", + 9, ], [ - "Sailor Seal", - 0.01, - "Insane", + "Shadow Kraken", + 1, + "Nice", ], ], - "worldNumber": 3, + "worldNumber": 2, }, - "configName": "220 | Summer Beachball Egg", + "configName": "194 | Dark Tech Relic Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.071Z", - "hashShort": "6784280ed93be0bd", + "dateModified": "2026-04-18T15:56:36.454Z", + "hashShort": "fcc9198775e65a25", }, { - "category": "Update 14", + "category": "Update 9", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "eggNumber": 221, - "icon": "rbxassetid://15172355963", - "name": "Summer Sun Egg", + "currency": "TechCoins", + "eggNumber": 195, + "goldenThumbnail": "rbxassetid://111380195244450", + "icon": "rbxassetid://92881325266661", + "name": "Dark Tech Castle Egg", "pets": [ [ - "Surfboard Axolotl", - 99, + "Shadow Kraken", + 90, ], [ - "Sailor Seal", - 0.1, - "Great", + "Shadow Dragon", + 10, ], + ], + "worldNumber": 2, + }, + "configName": "195 | Dark Tech Castle Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:36.462Z", + "hashShort": "7f14e068b56e84d1", + }, + { + "category": "Update 9", + "collection": "Eggs", + "configData": { + "currency": "TechCoins", + "eggNumber": 196, + "goldenThumbnail": "rbxassetid://97762985518428", + "icon": "rbxassetid://107371549109176", + "name": "Dark Tech Brick Egg", + "pets": [ [ - "Pineapple Monkey", - 0.001, - "Insane", + "Shadow Dragon", + 90, ], [ - "Sun Agony", - 0.000025, - "Insane", + "Shadow Bull", + 9, ], [ - "Huge Pineapple Monkey", - 5e-7, - "Insane", + "Shadow Panther", + 1, + "Nice", ], ], - "worldNumber": 3, + "worldNumber": 2, }, - "configName": "221 | Summer Sun Egg", + "configName": "196 | Dark Tech Brick Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:25.087Z", - "hashShort": "da761c1fb436ed1d", + "dateModified": "2026-04-18T15:56:36.452Z", + "hashShort": "26454f2712470530", }, { - "category": "Egg Hunt", + "category": "Update 9", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Obby Egg Hunt Egg", - "overrideCost": 120000, + "currency": "TechCoins", + "eggNumber": 197, + "goldenThumbnail": "rbxassetid://107974594953722", + "icon": "rbxassetid://94060781320028", + "name": "Dark Tech Spike Egg", "pets": [ [ - "Sailor Seal", - 99, - ], - [ - "Pineapple Monkey", - 0.1, - "Great", + "Shadow Bull", + 90, ], [ - "Flower Cat", - 0.001, - "Insane", + "Shadow Panther", + 9, ], [ - "Sun Agony", - 0.000025, - "Insane", + "Shadow Dominus", + 1, + "Nice", ], [ - "Huge Pineapple Monkey", - 0.0000015, - "Insane", + "Shadow Wolf", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "Egg Hunt Egg 3x", + "configName": "197 | Dark Tech Spike Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.179Z", - "hashShort": "8d6087f3043efa05", + "dateModified": "2026-04-18T15:56:36.452Z", + "hashShort": "c6edaec2d285218a", }, { - "category": "Egg Hunt", + "category": "Update 9", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Obby Egg Hunt Egg", - "overrideCost": 120000, + "currency": "TechCoins", + "eggNumber": 198, + "goldenThumbnail": "rbxassetid://134982426695166", + "icon": "rbxassetid://123727578955935", + "name": "Hacker Metal Egg", "pets": [ [ - "Sailor Seal", - 99, + "Shadow Dominus", + 90, ], [ - "Pineapple Monkey", - 0.1, - "Great", + "Shadow Wolf", + 9, ], [ - "Flower Cat", - 0.001, - "Insane", + "Haxolotl", + 1, + "Nice", ], + ], + "worldNumber": 2, + }, + "configName": "198 | Hacker Metal Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:36.455Z", + "hashShort": "d863e93fc581929e", + }, + { + "category": "Update 9", + "collection": "Eggs", + "configData": { + "currency": "TechCoins", + "eggNumber": 199, + "goldenThumbnail": "rbxassetid://98442269780380", + "icon": "rbxassetid://85463681918505", + "name": "Hacker Gear Egg", + "pets": [ [ - "Sun Agony", - 0.000025, - "Insane", + "Haxolotl", + 90, ], [ - "Huge Pineapple Monkey", - 0.0000024999999999999998, - "Insane", + "Haxigator", + 1, + "Nice", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "Egg Hunt Egg 5x", + "configName": "199 | Hacker Gear Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.177Z", - "hashShort": "bdc38c61fd2f1a7c", + "dateModified": "2026-04-18T15:56:36.491Z", + "hashShort": "f34b379de79ade21", }, { - "category": "Egg Hunt", + "category": "Update 9", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Obby Egg Hunt Egg", - "overrideCost": 120000, + "currency": "TechCoins", + "eggNumber": 200, + "goldenThumbnail": "rbxassetid://88804564150631", + "icon": "rbxassetid://101555567266749", + "name": "Hacker Matrix Egg", "pets": [ [ - "Sailor Seal", - 99, + "Haxigator", + 90, ], [ - "Pineapple Monkey", - 0.1, - "Great", + "Hacked Raccoon", + 1, + "Nice", ], + ], + "worldNumber": 2, + }, + "configName": "200 | Hacker Matrix Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:36.486Z", + "hashShort": "888210274c2957f4", + }, + { + "category": "Update 9", + "collection": "Eggs", + "configData": { + "currency": "TechCoins", + "eggNumber": 201, + "goldenThumbnail": "rbxassetid://138267819793385", + "icon": "rbxassetid://100261992208225", + "name": "Hacker Error Egg", + "pets": [ [ - "Flower Cat", - 0.001, - "Insane", + "Hacked Raccoon", + 90, ], [ - "Sun Agony", - 0.000025, - "Insane", + "Hacked Cat", + 9, ], [ - "Huge Pineapple Monkey", - 0.0000049999999999999996, - "Insane", + "404 Demon", + 1, + "Nice", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "Egg Hunt Egg 10x", + "configName": "201 | Hacker Error Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.171Z", - "hashShort": "d25db1e61fb51b3c", + "dateModified": "2026-04-18T15:56:36.490Z", + "hashShort": "35becfe95f8ab2fe", }, { - "category": "Egg Hunt", + "category": "Update 9", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Obby Egg Hunt Egg", - "overrideCost": 120000, + "currency": "TechCoins", + "eggNumber": 202, + "goldenThumbnail": "rbxassetid://133663225603770", + "icon": "rbxassetid://110376585906525", + "name": "Glitch Tree Egg", "pets": [ [ - "Sailor Seal", - 99, + "Hacked Cat", + 90, ], [ - "Pineapple Monkey", + "404 Demon", + 9, + ], + [ + "Glitched Cat", + 1, + "Nice", + ], + [ + "Glitched Dog", 0.1, "Great", ], + ], + "worldNumber": 2, + }, + "configName": "202 | Glitch Tree Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:36.472Z", + "hashShort": "8a9920a976ad9889", + }, + { + "category": "Update 9", + "collection": "Eggs", + "configData": { + "currency": "TechCoins", + "eggNumber": 203, + "goldenThumbnail": "rbxassetid://98195946937606", + "icon": "rbxassetid://95612038603872", + "name": "Glitch Green Egg", + "pets": [ [ - "Flower Cat", - 0.001, - "Insane", + "Glitched Cat", + 90, ], [ - "Sun Agony", - 0.000025, - "Insane", + "Glitched Dog", + 9, ], [ - "Huge Pineapple Monkey", - 0.000007499999999999999, - "Insane", + "Glitched Dragon", + 1, + "Nice", + ], + [ + "Glitched Dominus", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "Egg Hunt Egg 15x", + "configName": "203 | Glitch Green Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.179Z", - "hashShort": "cf51b9c862a5abfd", + "dateModified": "2026-04-18T15:56:36.491Z", + "hashShort": "762cb5a35ff08751", }, { - "category": "Egg Hunt", + "category": "Update 9", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Obby Egg Hunt Egg", - "overrideCost": 120000, + "currency": "TechCoins", + "eggNumber": 204, + "goldenThumbnail": "rbxassetid://128332727478235", + "icon": "rbxassetid://107934827979679", + "name": "Glitch Aqua Egg", "pets": [ [ - "Sailor Seal", - 99, + "Glitched Dragon", + 90, ], [ - "Pineapple Monkey", + "Glitched Dominus", + 9, + ], + [ + "Glitched Unicorn", + 1, + "Nice", + ], + [ + "Glitched Phoenix", 0.1, "Great", ], + ], + "worldNumber": 2, + }, + "configName": "204 | Glitch Aqua Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:36.465Z", + "hashShort": "3e481cd342b54b03", + }, + { + "category": "Update 9", + "collection": "Eggs", + "configData": { + "currency": "TechCoins", + "eggNumber": 205, + "goldenThumbnail": "rbxassetid://109724854654240", + "icon": "rbxassetid://117039531530877", + "name": "Glitch Cyan Egg", + "pets": [ [ - "Flower Cat", - 0.001, - "Insane", + "Glitched Unicorn", + 90, ], [ - "Sun Agony", - 0.000025, - "Insane", + "Glitched Phoenix", + 9, ], [ - "Huge Pineapple Monkey", - 0.000009999999999999999, - "Insane", + "Glitched Immortuus", + 1, + "Nice", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "Egg Hunt Egg 20x", + "configName": "205 | Glitch Cyan Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.175Z", - "hashShort": "999502d6c9d2c93c", + "dateModified": "2026-04-18T15:56:36.490Z", + "hashShort": "ac39ca2027cb8e52", }, { - "category": "Egg Hunt", + "category": "Update 9", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Obby Egg Hunt Egg", - "overrideCost": 120000, + "currency": "TechCoins", + "eggNumber": 206, + "goldenThumbnail": "rbxassetid://134269098844550", + "icon": "rbxassetid://108159526542104", + "name": "Quantum Egg", "pets": [ [ - "Sailor Seal", - 99, + "Glitched Immortuus", + 90, ], [ - "Pineapple Monkey", - 0.1, - "Great", + "Fragmented Dominus", + 9, ], [ - "Flower Cat", - 0.001, - "Insane", + "Fragmented Pterodactyl", + 1, + "Nice", + ], + ], + "worldNumber": 2, + }, + "configName": "206 | Quantum Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:36.489Z", + "hashShort": "9edaf980ce10c89b", + }, + { + "category": "Update 9", + "collection": "Eggs", + "configData": { + "currency": "TechCoins", + "eggNumber": 207, + "goldenThumbnail": "rbxassetid://87877334028405", + "icon": "rbxassetid://71018655080955", + "name": "Quantum Leafy Egg", + "pets": [ + [ + "Fragmented Dominus", + 90, ], [ - "Sun Agony", - 0.000025, - "Insane", + "Fragmented Pterodactyl", + 9, ], [ - "Huge Pineapple Monkey", - 0.000014999999999999999, - "Insane", + "Quantum Fox", + 1, + "Nice", + ], + [ + "Quantum Goat", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "Egg Hunt Egg 30x", + "configName": "207 | Quantum Leafy Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.189Z", - "hashShort": "8f88df991805dd4e", + "dateModified": "2026-04-18T15:56:36.483Z", + "hashShort": "8b3a8384ac4d226d", }, { - "category": "Egg Hunt", + "category": "Update 9", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Obby Egg Hunt Egg", - "overrideCost": 120000, + "currency": "TechCoins", + "eggNumber": 208, + "goldenThumbnail": "rbxassetid://114838812040756", + "icon": "rbxassetid://130035321105700", + "name": "Quantum Space Egg", "pets": [ [ - "Sailor Seal", - 99, + "Quantum Fox", + 90, ], [ - "Pineapple Monkey", + "Quantum Goat", + 9, + ], + [ + "Quantum Bunny", + 1, + "Nice", + ], + [ + "Quantum Tiger", 0.1, "Great", ], + ], + "worldNumber": 2, + }, + "configName": "208 | Quantum Space Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:36.463Z", + "hashShort": "b8041202cc14136c", + }, + { + "category": "Update 9", + "collection": "Eggs", + "configData": { + "currency": "TechCoins", + "eggNumber": 209, + "goldenThumbnail": "rbxassetid://115016824813804", + "icon": "rbxassetid://87476666452364", + "name": "Quantum Galaxy Egg", + "pets": [ [ - "Flower Cat", - 0.001, - "Insane", + "Quantum Bunny", + 90, ], [ - "Sun Agony", - 0.000025, - "Insane", + "Quantum Tiger", + 9, ], [ - "Huge Pineapple Monkey", - 0.000019999999999999998, - "Insane", + "Quantum Griffin", + 1, + "Nice", + ], + [ + "Quantum Dominus", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "Egg Hunt Egg 40x", + "configName": "209 | Quantum Galaxy Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.169Z", - "hashShort": "dcd3aefafc15f0b4", + "dateModified": "2026-04-18T15:56:36.486Z", + "hashShort": "9d525cee8f3c1248", }, { - "category": "Egg Hunt", + "category": "Update 9", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Obby Egg Hunt Egg", - "overrideCost": 120000, + "currency": "TechCoins", + "eggNumber": 210, + "goldenThumbnail": "rbxassetid://121897253485949", + "icon": "rbxassetid://115588467502661", + "name": "Void Crystal Egg", "pets": [ [ - "Sailor Seal", - 99, + "Quantum Griffin", + 90, ], [ - "Pineapple Monkey", + "Quantum Dominus", + 9, + ], + [ + "Atomic Axolotl", + 1, + "Nice", + ], + [ + "Atomic Monkey", 0.1, "Great", ], + ], + "worldNumber": 2, + }, + "configName": "210 | Void Crystal Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:36.481Z", + "hashShort": "9a0f8fbf5ba14eb3", + }, + { + "category": "Update 9", + "collection": "Eggs", + "configData": { + "currency": "TechCoins", + "eggNumber": 211, + "goldenThumbnail": "rbxassetid://88433909231073", + "icon": "rbxassetid://122750232766954", + "name": "Void Fracture Egg", + "pets": [ + [ + "Atomic Axolotl", + 90, + ], [ - "Flower Cat", - 0.001, - "Insane", + "Atomic Monkey", + 9, ], [ - "Sun Agony", - 0.000025, - "Insane", + "Wireframe Dog", + 1, + "Nice", ], [ - "Huge Pineapple Monkey", - 0.000024999999999999998, - "Insane", + "Wireframe Cat", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "Egg Hunt Egg 50x", + "configName": "211 | Void Fracture Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.193Z", - "hashShort": "50e4e0748726a7d4", + "dateModified": "2026-04-18T15:56:36.487Z", + "hashShort": "bddbd4afd313b3be", }, { - "category": "Egg Hunt", + "category": "Update 9", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Obby Egg Hunt Egg", - "overrideCost": 120000, + "currency": "TechCoins", + "eggNumber": 212, + "goldenThumbnail": "rbxassetid://138816940271726", + "icon": "rbxassetid://106531938800974", + "name": "Void Spiral Egg", "pets": [ [ - "Sailor Seal", - 99, + "Wireframe Dog", + 90, ], [ - "Pineapple Monkey", - 0.1, - "Great", + "Wireframe Cat", + 9, ], [ - "Flower Cat", - 0.001, + "Void Alien", + 0.002, "Insane", ], [ - "Sun Agony", - 0.000025, + "Black Hole Angelus", + 0.00004, "Insane", ], + ], + "worldNumber": 2, + }, + "configName": "212 | Void Spiral Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:36.488Z", + "hashShort": "71788164a90f1b34", + }, + { + "category": "Update 9", + "collection": "Eggs", + "configData": { + "currency": "TechCoins", + "eggNumber": 189, + "goldenThumbnail": "rbxassetid://117776759805848", + "icon": "rbxassetid://139241658710131", + "name": "Holographic Pipes Egg", + "pets": [ [ - "Huge Pineapple Monkey", - 0.0000375, - "Insane", + "Dominus Serpents", + 9, + ], + [ + "Wicked Empyrean Dominus", + 9, + ], + [ + "Holographic Cat", + 1, + "Nice", + ], + [ + "Holographic Corgi", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 2, }, - "configName": "Egg Hunt Egg 75x", + "configName": "189 | Holographic Pipes Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.175Z", - "hashShort": "f4afcdb5027ce02b", + "dateModified": "2026-04-18T15:56:36.483Z", + "hashShort": "6b8aa98dd44e7e51", }, { - "category": "Egg Hunt", + "category": "Glitch", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", + "currency": "GlitchCoins", + "egg": null, + "icon": "rbxassetid://13281715743", "isCustomEgg": true, - "name": "Obby Egg Hunt Egg", - "overrideCost": 120000, + "name": "Glitch Event 1 Egg", + "overrideCost": 200, "pets": [ [ - "Sailor Seal", - 99, + "Leprechaun Cat", + 70, ], [ - "Pineapple Monkey", - 0.1, - "Great", + "Irish Corgi", + 29, ], [ - "Flower Cat", - 0.001, - "Insane", + "Clover Fairy", + 1, ], [ - "Sun Agony", - 0.000025, - "Insane", + "Clover Axolotl", + 0.002, ], [ - "Huge Pineapple Monkey", - 0.000049999999999999996, - "Insane", + "Huge Clover Fairy", + 0.00001, ], ], "rarity": { @@ -21750,44 +21929,41 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Egg Hunt Egg 100x", + "configName": "Glitch Event 1 Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.180Z", - "hashShort": "e27cafd7873c7c99", + "dateModified": null, + "hashShort": null, }, { - "category": "Egg Hunt", + "category": "Glitch", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", + "currency": "GlitchCoins", + "egg": null, + "icon": "rbxassetid://13281715743", "isCustomEgg": true, - "name": "Obby Egg Hunt Egg", - "overrideCost": 120000, + "name": "Glitch Event 3 Egg", + "overrideCost": 200, "pets": [ [ - "Sailor Seal", - 99, + "Leprechaun Cat", + 70, ], [ - "Pineapple Monkey", - 0.1, - "Great", + "Irish Corgi", + 29, ], [ - "Flower Cat", - 0.001, - "Insane", + "Clover Fairy", + 1, ], [ - "Sun Agony", - 0.000025, - "Insane", + "Clover Axolotl", + 0.002, ], [ - "Huge Pineapple Monkey", - 0.000012499999999999999, - "Insane", + "Huge Clover Fairy", + 0.00001, ], ], "rarity": { @@ -21803,38 +21979,41 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Egg Hunt Egg 25x", + "configName": "Glitch Event 3 Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.177Z", - "hashShort": "064c7f2f7656a1dd", + "dateModified": null, + "hashShort": null, }, { - "category": "Beach Island Parkour", + "category": "Glitch", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", + "currency": "GlitchCoins", + "egg": null, + "icon": "rbxassetid://13281715743", "isCustomEgg": true, - "name": "Summer Beach Egg", - "overrideCost": 6000, + "name": "Glitch Event 2 Egg", + "overrideCost": 200, "pets": [ [ - "Scuba Dog", - 69.3707175, + "Leprechaun Cat", + 70, ], [ - "Scuba Shark", - 28.73929725, + "Irish Corgi", + 29, ], [ - "Floatie Ducky", - 0.99101025, - "Nice", + "Clover Fairy", + 1, ], [ - "Huge Pineapple Monkey", - 0.000001, - "Insane", + "Clover Axolotl", + 0.002, + ], + [ + "Huge Clover Fairy", + 0.00001, ], ], "rarity": { @@ -21850,38 +22029,41 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Beach Island Parkour 2x", + "configName": "Glitch Event 2 Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.192Z", - "hashShort": "667648869b384383", + "dateModified": null, + "hashShort": null, }, { - "category": "Beach Island Parkour", + "category": "Glitch", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", + "currency": "GlitchCoins", + "egg": null, + "icon": "rbxassetid://13281715743", "isCustomEgg": true, - "name": "Summer Beach Egg", - "overrideCost": 6000, + "name": "Glitch Event 4 Egg", + "overrideCost": 200, "pets": [ [ - "Scuba Dog", - 69.3707175, + "Leprechaun Cat", + 70, ], [ - "Scuba Shark", - 28.73929725, + "Irish Corgi", + 29, ], [ - "Floatie Ducky", - 0.99101025, - "Nice", + "Clover Fairy", + 1, ], [ - "Huge Pineapple Monkey", - 0.0000015, - "Insane", + "Clover Axolotl", + 0.002, + ], + [ + "Huge Clover Fairy", + 0.00001, ], ], "rarity": { @@ -21897,38 +22079,46 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Beach Island Parkour 3x", + "configName": "Glitch Event 4 Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.190Z", - "hashShort": "9e6d11b51ffb2e90", + "dateModified": null, + "hashShort": null, }, { - "category": "Beach Island Parkour", + "category": "Backrooms Update", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Summer Beach Egg", - "overrideCost": 6000, + "name": "Backrooms Gooey Egg 5x", + "overrideCost": 250, "pets": [ [ - "Scuba Dog", - 69.3707175, + "Ender Goat", + 80.4325, ], [ - "Scuba Shark", - 28.73929725, + "Creepy Yeti", + 19, ], [ - "Floatie Ducky", - 0.99101025, - "Nice", + "Ender Slime", + 0.5, ], [ - "Huge Pineapple Monkey", - 0.0000024999999999999998, - "Insane", + "Corrupt Skeleton", + 0.06, + ], + [ + "Corrupt Octopus", + 0.0075, + ], + [ + "Huge Plague Dragon", + 0.0000020000000000000003, ], ], "rarity": { @@ -21944,38 +22134,50 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Beach Island Parkour 5x", + "configName": "2 | Backrooms Gooey Egg 5x", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.181Z", - "hashShort": "742a1ecb085d7dc4", + "dateModified": "2026-06-13T23:13:53.559Z", + "hashShort": "069cbb330634e303", }, { - "category": "Tiki Island Parkour", + "category": "Backrooms Update", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Summer Melon Egg", - "overrideCost": 30000, + "name": "Backrooms Tentacles Egg 20x", + "overrideCost": 300, "pets": [ [ - "Beach Ball Dolphin", - 84.23587125, + "Creepy Yeti", + 82.463, ], [ - "Beach Ball Monkey", - 14.6174011875, + "Ender Slime", + 17, ], [ - "Flower Cat", - 0.2477525625, - "Nice", + "Corrupt Skeleton", + 0.4, ], [ - "Huge Pineapple Monkey", - 0.000001, - "Insane", + "Corrupt Octopus", + 0.1, + ], + [ + "Creepy Wolf", + 0.03, + ], + [ + "Plague Dragon", + 0.007, + ], + [ + "Huge Plague Dragon", + 0.000008000000000000001, ], ], "rarity": { @@ -21991,38 +22193,46 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Tiki Island Parkour 2x", + "configName": "3 | Backrooms Tentacles Egg 20x", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.173Z", - "hashShort": "3a82edf309407b04", + "dateModified": "2026-06-13T23:13:53.555Z", + "hashShort": "743510ff4670395a", }, { - "category": "Tiki Island Parkour", + "category": "Backrooms Update", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Summer Melon Egg", - "overrideCost": 30000, + "name": "Backrooms Nightmare Egg 3x", + "overrideCost": 200, "pets": [ [ - "Beach Ball Dolphin", - 84.23587125, + "Night Terror Cat", + 69.985, ], [ - "Beach Ball Monkey", - 14.6174011875, + "Ender Goat", + 29, ], [ - "Flower Cat", - 0.2477525625, - "Nice", + "Creepy Yeti", + 0.9, ], [ - "Huge Pineapple Monkey", - 0.0000015, - "Insane", + "Ender Slime", + 0.1, + ], + [ + "Corrupt Skeleton", + 0.015, + ], + [ + "Huge Plague Dragon", + 0.0000012000000000000002, ], ], "rarity": { @@ -22038,38 +22248,50 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Tiki Island Parkour 3x", + "configName": "1 | Backrooms Nightmare Egg 3x", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.191Z", - "hashShort": "952022a59de9ac37", + "dateModified": "2026-06-13T23:13:53.554Z", + "hashShort": "d795889f91c6f365", }, { - "category": "Tiki Island Parkour", + "category": "Backrooms Update", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Summer Melon Egg", - "overrideCost": 30000, + "name": "Backrooms Night Terror Egg 50x", + "overrideCost": 500, "pets": [ [ - "Beach Ball Dolphin", - 84.23587125, + "Ender Slime", + 86.585, ], [ - "Beach Ball Monkey", - 14.6174011875, + "Corrupt Skeleton", + 13, ], [ - "Flower Cat", - 0.2477525625, - "Nice", + "Corrupt Octopus", + 0.32, ], [ - "Huge Pineapple Monkey", - 0.0000024999999999999998, - "Insane", + "Creepy Wolf", + 0.07, + ], + [ + "Plague Dragon", + 0.02, + ], + [ + "Ender Hades", + 0.001, + ], + [ + "Huge Plague Dragon", + 0.00002, ], ], "rarity": { @@ -22085,38 +22307,46 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Tiki Island Parkour 5x", + "configName": "4 | Backrooms Night Terror Egg 50x", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.191Z", - "hashShort": "b7daf04490e5bfb0", + "dateModified": "2026-06-13T23:13:53.564Z", + "hashShort": "3df90bcd9fcdba70", }, { - "category": "Ocean Island Parkour", + "category": "Backrooms Update", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Summer Floatie Egg", - "overrideCost": 12000, + "name": "Backrooms Nightmare Egg 2x", + "overrideCost": 200, "pets": [ [ - "Floatie Ducky", - 79.28082, + "Night Terror Cat", + 69.985, ], [ - "Floatie Flamingo", - 19.324699875, + "Ender Goat", + 29, ], [ - "Beach Ball Dolphin", - 0.495505125, - "Nice", + "Creepy Yeti", + 0.9, ], [ - "Huge Pineapple Monkey", - 0.000001, - "Insane", + "Ender Slime", + 0.1, + ], + [ + "Corrupt Skeleton", + 0.015, + ], + [ + "Huge Plague Dragon", + 8e-7, ], ], "rarity": { @@ -22132,38 +22362,46 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Ocean Island Parkour 2x", + "configName": "1 | Backrooms Nightmare Egg 2x", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.192Z", - "hashShort": "d14740024bca1559", + "dateModified": "2026-06-13T23:13:53.563Z", + "hashShort": "4e6ea3d4ca0f7e14", }, { - "category": "Ocean Island Parkour", + "category": "Backrooms Update", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Summer Floatie Egg", - "overrideCost": 12000, + "name": "Backrooms Nightmare Egg 1x", + "overrideCost": 200, "pets": [ [ - "Floatie Ducky", - 79.28082, + "Night Terror Cat", + 69.985, ], [ - "Floatie Flamingo", - 19.324699875, + "Ender Goat", + 29, ], [ - "Beach Ball Dolphin", - 0.495505125, - "Nice", + "Creepy Yeti", + 0.9, ], [ - "Huge Pineapple Monkey", - 0.0000015, - "Insane", + "Ender Slime", + 0.1, + ], + [ + "Corrupt Skeleton", + 0.015, + ], + [ + "Huge Plague Dragon", + 4e-7, ], ], "rarity": { @@ -22179,90 +22417,46 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Ocean Island Parkour 3x", + "configName": "1 | Backrooms Nightmare Egg 1x", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.178Z", - "hashShort": "7b5b4fd3f624d47a", + "dateModified": "2026-06-13T23:13:52.656Z", + "hashShort": "f7636e6fcdda5c06", }, { - "category": "Ocean Island Parkour", + "category": "Backrooms Update", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Summer Floatie Egg", - "overrideCost": 12000, + "name": "Backrooms Gooey Egg 10x", + "overrideCost": 250, "pets": [ [ - "Floatie Ducky", - 79.28082, - ], - [ - "Floatie Flamingo", - 19.324699875, - ], - [ - "Beach Ball Dolphin", - 0.495505125, - "Nice", - ], - [ - "Huge Pineapple Monkey", - 0.0000024999999999999998, - "Insane", + "Ender Goat", + 80.4325, ], - ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, - "configName": "Ocean Island Parkour 5x", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.192Z", - "hashShort": "5cbda7e586dc4c22", - }, - { - "category": "Jungle Island Parkour", - "collection": "Eggs", - "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Summer Beachball Egg", - "overrideCost": 60000, - "pets": [ [ - "Flower Cat", - 84.14331360503446, + "Creepy Yeti", + 19, ], [ - "Surfboard Corgi", - 14.848820047947259, + "Ender Slime", + 0.5, ], [ - "Surfboard Axolotl", - 0.09899213365298173, - "Great", + "Corrupt Skeleton", + 0.06, ], [ - "Sailor Seal", - 0.009899213365298172, - "Insane", + "Corrupt Octopus", + 0.0075, ], [ - "Huge Pineapple Monkey", - 0.000001, - "Insane", + "Huge Plague Dragon", + 0.000004000000000000001, ], ], "rarity": { @@ -22278,43 +22472,46 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Jungle Island Parkour 2x", + "configName": "2 | Backrooms Gooey Egg 10x", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.185Z", - "hashShort": "f29b19d2e84ba291", + "dateModified": "2026-06-13T23:13:52.660Z", + "hashShort": "bc6466e17bff9d79", }, { - "category": "Jungle Island Parkour", + "category": "Backrooms Update", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Summer Beachball Egg", - "overrideCost": 60000, + "name": "Backrooms Gooey Egg 15x", + "overrideCost": 250, "pets": [ [ - "Flower Cat", - 84.14331360503446, + "Ender Goat", + 80.4325, ], [ - "Surfboard Corgi", - 14.848820047947259, + "Creepy Yeti", + 19, ], [ - "Surfboard Axolotl", - 0.09899213365298173, - "Great", + "Ender Slime", + 0.5, ], [ - "Sailor Seal", - 0.009899213365298172, - "Insane", + "Corrupt Skeleton", + 0.06, ], [ - "Huge Pineapple Monkey", - 0.0000015, - "Insane", + "Corrupt Octopus", + 0.0075, + ], + [ + "Huge Plague Dragon", + 0.000006, ], ], "rarity": { @@ -22330,96 +22527,50 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Jungle Island Parkour 3x", + "configName": "2 | Backrooms Gooey Egg 15x", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.176Z", - "hashShort": "b978cd0592167dbc", + "dateModified": "2026-06-13T23:13:53.557Z", + "hashShort": "5136f1693a98bc19", }, { - "category": "Jungle Island Parkour", + "category": "Backrooms Update", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Summer Beachball Egg", - "overrideCost": 60000, + "name": "Backrooms Tentacles Egg 25x", + "overrideCost": 300, "pets": [ [ - "Flower Cat", - 84.14331360503446, - ], - [ - "Surfboard Corgi", - 14.848820047947259, - ], - [ - "Surfboard Axolotl", - 0.09899213365298173, - "Great", - ], - [ - "Sailor Seal", - 0.009899213365298172, - "Insane", + "Creepy Yeti", + 82.463, ], [ - "Huge Pineapple Monkey", - 0.0000024999999999999998, - "Insane", + "Ender Slime", + 17, ], - ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, - "configName": "Jungle Island Parkour 5x", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.184Z", - "hashShort": "2799de8e7c3b7f2c", - }, - { - "category": "Volcano Island Parkour", - "collection": "Eggs", - "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Summer Sun Egg", - "overrideCost": 120000, - "pets": [ [ - "Surfboard Axolotl", - 99, + "Corrupt Skeleton", + 0.4, ], [ - "Sailor Seal", + "Corrupt Octopus", 0.1, - "Great", ], [ - "Pineapple Monkey", - 0.001, - "Insane", + "Creepy Wolf", + 0.03, ], [ - "Sun Agony", - 0.000025, - "Insane", + "Plague Dragon", + 0.007, ], [ - "Huge Pineapple Monkey", - 0.000001, - "Insane", + "Huge Plague Dragon", + 0.00001, ], ], "rarity": { @@ -22435,44 +22586,50 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Volcano Island Parkour 2x", + "configName": "3 | Backrooms Tentacles Egg 25x", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.182Z", - "hashShort": "9203d9e5632f8516", + "dateModified": "2026-06-13T23:13:52.657Z", + "hashShort": "1ff0b76ccdfec946", }, { - "category": "Volcano Island Parkour", + "category": "Backrooms Update", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Summer Sun Egg", - "overrideCost": 120000, + "name": "Backrooms Tentacles Egg 30x", + "overrideCost": 300, "pets": [ [ - "Surfboard Axolotl", - 99, + "Creepy Yeti", + 82.463, ], [ - "Sailor Seal", + "Ender Slime", + 17, + ], + [ + "Corrupt Skeleton", + 0.4, + ], + [ + "Corrupt Octopus", 0.1, - "Great", ], [ - "Pineapple Monkey", - 0.001, - "Insane", + "Creepy Wolf", + 0.03, ], [ - "Sun Agony", - 0.000025, - "Insane", + "Plague Dragon", + 0.007, ], [ - "Huge Pineapple Monkey", - 0.0000015, - "Insane", + "Huge Plague Dragon", + 0.000012, ], ], "rarity": { @@ -22488,44 +22645,50 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Volcano Island Parkour 3x", + "configName": "3 | Backrooms Tentacles Egg 30x", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.174Z", - "hashShort": "5daa29ad0f996526", + "dateModified": "2026-06-13T23:13:52.656Z", + "hashShort": "6c941475299f3d4b", }, { - "category": "Volcano Island Parkour", + "category": "Backrooms Update", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Summer Sun Egg", - "overrideCost": 120000, + "name": "Backrooms Night Terror Egg 75x", + "overrideCost": 500, "pets": [ [ - "Surfboard Axolotl", - 99, + "Ender Slime", + 86.585, ], [ - "Sailor Seal", - 0.1, - "Great", + "Corrupt Skeleton", + 13, ], [ - "Pineapple Monkey", - 0.001, - "Insane", + "Corrupt Octopus", + 0.32, ], [ - "Sun Agony", - 0.000025, - "Insane", + "Creepy Wolf", + 0.07, ], [ - "Huge Pineapple Monkey", - 0.0000024999999999999998, - "Insane", + "Plague Dragon", + 0.02, + ], + [ + "Ender Hades", + 0.001, + ], + [ + "Huge Plague Dragon", + 0.000029999999999999997, ], ], "rarity": { @@ -22541,44 +22704,50 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Volcano Island Parkour 5x", + "configName": "4 | Backrooms Night Terror Egg 75x", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.183Z", - "hashShort": "605669c501770ac9", + "dateModified": "2026-06-13T23:13:52.656Z", + "hashShort": "3b3eacd1503e6c15", }, { - "category": "Volcano Island Parkour", + "category": "Backrooms Update", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Summer Sun Egg", - "overrideCost": 120000, + "name": "Backrooms Night Terror Egg 100x", + "overrideCost": 500, "pets": [ [ - "Surfboard Axolotl", - 99, + "Ender Slime", + 86.585, ], [ - "Sailor Seal", - 0.1, - "Great", + "Corrupt Skeleton", + 13, ], [ - "Pineapple Monkey", - 0.001, - "Insane", + "Corrupt Octopus", + 0.32, ], [ - "Sun Agony", - 0.000025, - "Insane", + "Creepy Wolf", + 0.07, ], [ - "Huge Pineapple Monkey", - 0.0000049999999999999996, - "Insane", + "Plague Dragon", + 0.02, + ], + [ + "Ender Hades", + 0.001, + ], + [ + "Huge Plague Dragon", + 0.00004, ], ], "rarity": { @@ -22594,10 +22763,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Volcano Island Parkour 10x", + "configName": "4 | Backrooms Night Terror Egg 100x", "dateCreated": null, - "dateModified": "2025-07-05T23:29:24.184Z", - "hashShort": "51df6eedca4ea8b1", + "dateModified": "2026-06-13T23:13:53.559Z", + "hashShort": "cb899383ceadc9a3", }, { "category": "Exclusive Eggs", @@ -22607,39 +22776,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "disableModifiers": true, "disableRainbow": false, "goldChance": 0, - "icon": "rbxassetid://17775083088", - "name": "Exclusive Blazing Egg", + "icon": "rbxassetid://17454584246", + "name": "Exclusive Bejeweled Egg", "pets": [ [ - "Blazing Shark", + "Bejeweled Unicorn", 50, ], [ - "Blazing Corgi", + "Bejeweled Deer", 35, ], [ - "Blazing Bat", + "Bejeweled Lion", 13, ], [ - "Huge Blazing Shark", + "Huge Bejeweled Unicorn", 1.25, ], [ - "Huge Blazing Bat", + "Huge Bejeweled Lion", 0.7, ], [ - "Titanic Blazing Dragon", + "Titanic Bejeweled Griffin", 0.05, ], ], "productIds": { - "10 Exclusive Eggs": 1843807645, - "100 Exclusive Eggs": 1843807709, - "3 Exclusive Eggs": 1843807584, - "Exclusive Egg": 1843807444, + "10 Exclusive Eggs": 1826308984, + "100 Exclusive Eggs": 1826309139, + "3 Exclusive Eggs": 1826308878, + "Exclusive Egg": 1826308749, }, "rainbowChance": 2, "rarity": { @@ -22656,238 +22825,211 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` }, "shinyChance": 2, }, - "configName": "Exclusive Egg 28", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "c5548106668e95ed", + "configName": "Exclusive Egg 26", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.887Z", + "hashShort": "538ab5659c01d802", }, { - "category": "Update 15", + "category": "Backrooms Update", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "eggNumber": 222, - "icon": "rbxassetid://15172355963", - "name": "Hacker Circuit Egg", + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Fear Egg 1x", + "overrideCost": 1000, "pets": [ [ - "Hooded Bobcat", - 100, + "Creepy Yeti", + 69.985, ], [ - "Hooded Piggy", - 1, + "Night Terror Dog", + 29, ], - ], - "worldNumber": 3, - }, - "configName": "222 | Hacker Circuit Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "0722548093210413", - }, - { - "category": "Update 15", - "collection": "Eggs", - "configData": { - "currency": "VoidCoins", - "eggNumber": 223, - "icon": "rbxassetid://15172355963", - "name": "Hacker Wireframe Egg", - "pets": [ [ - "Hooded Monkey", - 99, + "Ender Slime", + 0.9, ], [ - "Hooded Dragon", - 1, - "Nice", + "Corrupt Skeleton", + 0.1, ], - ], - "worldNumber": 3, - }, - "configName": "223 | Hacker Wireframe Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "91e6f1c7d69c5c70", - }, - { - "category": "Update 15", - "collection": "Eggs", - "configData": { - "currency": "VoidCoins", - "eggNumber": 224, - "icon": "rbxassetid://15172355963", - "name": "Hacker Crystal Egg", - "pets": [ [ - "Hacker Corgi", - 100, + "Ender Bunny", + 0.015, ], [ - "Hacker Bear", - 1, + "Huge Night Terror Cat", + 0.0000015, ], ], - "worldNumber": 3, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "224 | Hacker Crystal Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "0585eb00db0bac6d", + "configName": "5 | Backrooms Fear Egg 1x", + "dateCreated": null, + "dateModified": "2026-06-13T23:13:52.656Z", + "hashShort": "2f7c1d2dfecb2af4", }, { - "category": "Update 15", + "category": "Backrooms Update", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "eggNumber": 225, - "icon": "rbxassetid://15172355963", - "name": "Hacker Electric Egg", + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Overgrown Egg 10x", + "overrideCost": 1250, "pets": [ [ - "Hacker Axolotl", - 99, + "Night Terror Dog", + 80.4325, ], [ - "Hacker Cat", - 1, - "Nice", + "Ender Slime", + 19, ], - ], - "worldNumber": 3, - }, - "configName": "225 | Hacker Electric Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "a3d0397255dad8ae", - }, - { - "category": "Update 15", - "collection": "Eggs", - "configData": { - "currency": "VoidCoins", - "eggNumber": 226, - "icon": "rbxassetid://15172355963", - "name": "Hacker Secure Egg", - "pets": [ [ - "Hacked Computer", - 100, + "Corrupt Skeleton", + 0.5, ], [ - "Hacked Skeleton", - 0.001, - "Insane", + "Ender Bunny", + 0.06, ], [ - "Masked Fox", - 0.000025, - "Insane", + "Evil Gorilla", + 0.0075, + ], + [ + "Huge Night Terror Cat", + 0.000015000000000000002, ], ], - "worldNumber": 3, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "226 | Hacker Secure Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "b91d0629e4603e6a", + "configName": "6 | Backrooms Overgrown Egg 10x", + "dateCreated": null, + "dateModified": "2026-06-13T23:13:53.552Z", + "hashShort": "b34c973578dc3f1b", }, { - "category": "Machine Eggs", + "category": "Backrooms Update", "collection": "Eggs", "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 5, - "icon": "rbxassetid://17846766229", - "name": "Huge Machine Butterfly Egg", + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Fear Egg 3x", + "overrideCost": 1000, "pets": [ [ - "Huge Mushroom Raccoon", - 49.75, + "Creepy Yeti", + 69.985, ], [ - "Huge Vibrant Toucan", - 30, + "Night Terror Dog", + 29, ], [ - "Huge Mantis Shrimp", - 15, + "Ender Slime", + 0.9, ], [ - "Huge Pixie Fox", - 4, + "Corrupt Skeleton", + 0.1, ], [ - "Huge Umbrella Cat", - 1, + "Ender Bunny", + 0.015, ], [ - "Titanic Butterfly", - 0.25, + "Huge Night Terror Cat", + 0.0000045, ], ], - "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "shinyChance": 2, }, - "configName": "Huge Machine Egg 4", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "2735111d0db327de", + "configName": "5 | Backrooms Fear Egg 3x", + "dateCreated": null, + "dateModified": "2026-06-13T23:13:52.660Z", + "hashShort": "8623d72eb5bfb7e6", }, { - "category": "Hacker", + "category": "Backrooms Update", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Virus Egg", - "overrideCost": 8000000, + "name": "Backrooms Corrupt Egg 50x", + "overrideCost": 2500, "pets": [ [ - "Hacked Computer", - 100, + "Corrupt Skeleton", + 82.575, ], [ - "Hacked Skeleton", - 0.01, - "Insane", + "Ender Bunny", + 17, ], [ - "Masked Fox", - 0.005, - "Insane", + "Evil Gorilla", + 0.4, ], [ - "Matrix Monkey", - 0.001, - "Insane", + "Corrupt Cat", + 0.02, ], [ - "Virus Griffin", - 0.000025, - "Insane", + "Plague Cow", + 0.001, ], [ - "Huge Virus Griffin", - 0.0000075, - "Insane", + "Huge Night Terror Cat", + 0.00007500000000000001, ], ], "rarity": { @@ -22903,49 +23045,46 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Virus Egg 1x", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "7151ce96eb732bf0", + "configName": "8 | Backrooms Corrupt Egg 50x", + "dateCreated": null, + "dateModified": "2026-06-13T23:13:53.563Z", + "hashShort": "a5bb27963e5ac5f2", }, { - "category": "Hacker", + "category": "Backrooms Update", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Virus Egg", - "overrideCost": 8000000, + "name": "Backrooms Ender Egg 30x", + "overrideCost": 1500, "pets": [ [ - "Hacked Computer", - 100, + "Ender Slime", + 82.463, ], [ - "Hacked Skeleton", - 0.01, - "Insane", + "Corrupt Skeleton", + 17, ], [ - "Masked Fox", - 0.005, - "Insane", + "Ender Bunny", + 0.4, ], [ - "Matrix Monkey", - 0.001, - "Insane", + "Evil Gorilla", + 0.13, ], [ - "Virus Griffin", - 0.000025, - "Insane", + "Corrupt Cat", + 0.007, ], [ - "Huge Virus Griffin", - 0.000015, - "Insane", + "Huge Night Terror Cat", + 0.000045, ], ], "rarity": { @@ -22961,49 +23100,46 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Virus Egg 2x", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "1d747eaa03a3f972", + "configName": "7 | Backrooms Ender Egg 30x", + "dateCreated": null, + "dateModified": "2026-06-13T23:13:52.657Z", + "hashShort": "740642738ab6e082", }, { - "category": "Hacker", + "category": "Backrooms Update", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Virus Egg", - "overrideCost": 8000000, + "name": "Backrooms Overgrown Egg 15x", + "overrideCost": 1250, "pets": [ [ - "Hacked Computer", - 100, + "Night Terror Dog", + 80.4325, ], [ - "Hacked Skeleton", - 0.01, - "Insane", + "Ender Slime", + 19, ], [ - "Masked Fox", - 0.005, - "Insane", + "Corrupt Skeleton", + 0.5, ], [ - "Matrix Monkey", - 0.001, - "Insane", + "Ender Bunny", + 0.06, ], [ - "Virus Griffin", - 0.000025, - "Insane", + "Evil Gorilla", + 0.0075, ], [ - "Huge Virus Griffin", + "Huge Night Terror Cat", 0.0000225, - "Insane", ], ], "rarity": { @@ -23019,49 +23155,46 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Virus Egg 3x", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "33e4cf765b05a075", + "configName": "6 | Backrooms Overgrown Egg 15x", + "dateCreated": null, + "dateModified": "2026-06-13T23:13:53.557Z", + "hashShort": "9b689b221cb67f5d", }, { - "category": "Hacker", + "category": "Backrooms Update", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Virus Egg", - "overrideCost": 8000000, + "name": "Backrooms Ender Egg 20x", + "overrideCost": 1500, "pets": [ [ - "Hacked Computer", - 100, + "Ender Slime", + 82.463, ], [ - "Hacked Skeleton", - 0.01, - "Insane", + "Corrupt Skeleton", + 17, ], [ - "Masked Fox", - 0.005, - "Insane", + "Ender Bunny", + 0.4, ], [ - "Matrix Monkey", - 0.001, - "Insane", + "Evil Gorilla", + 0.13, ], [ - "Virus Griffin", - 0.000025, - "Insane", + "Corrupt Cat", + 0.007, ], [ - "Huge Virus Griffin", - 0.000037500000000000003, - "Insane", + "Huge Night Terror Cat", + 0.000030000000000000004, ], ], "rarity": { @@ -23077,49 +23210,46 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Virus Egg 5x", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "8d8c412f051d7f0c", + "configName": "7 | Backrooms Ender Egg 20x", + "dateCreated": null, + "dateModified": "2026-06-13T23:13:53.555Z", + "hashShort": "cab82224a16539f6", }, { - "category": "Hacker", + "category": "Backrooms Update", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Virus Egg", - "overrideCost": 8000000, + "name": "Backrooms Fear Egg 2x", + "overrideCost": 1000, "pets": [ [ - "Hacked Computer", - 100, + "Creepy Yeti", + 69.985, ], [ - "Hacked Skeleton", - 0.01, - "Insane", + "Night Terror Dog", + 29, ], [ - "Masked Fox", - 0.005, - "Insane", + "Ender Slime", + 0.9, ], [ - "Matrix Monkey", - 0.001, - "Insane", + "Corrupt Skeleton", + 0.1, ], [ - "Virus Griffin", - 0.000025, - "Insane", + "Ender Bunny", + 0.015, ], [ - "Huge Virus Griffin", - 0.00007500000000000001, - "Insane", + "Huge Night Terror Cat", + 0.000003, ], ], "rarity": { @@ -23135,49 +23265,46 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Virus Egg 10x", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "0e8a4e4734ea9824", + "configName": "5 | Backrooms Fear Egg 2x", + "dateCreated": null, + "dateModified": "2026-06-13T23:13:53.560Z", + "hashShort": "38b5ef0853e852ec", }, { - "category": "Hacker", + "category": "Backrooms Update", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Virus Egg", - "overrideCost": 8000000, + "name": "Backrooms Overgrown Egg 5x", + "overrideCost": 1250, "pets": [ [ - "Hacked Computer", - 100, + "Night Terror Dog", + 80.4325, ], [ - "Hacked Skeleton", - 0.01, - "Insane", + "Ender Slime", + 19, ], [ - "Masked Fox", - 0.005, - "Insane", + "Corrupt Skeleton", + 0.5, ], [ - "Matrix Monkey", - 0.001, - "Insane", + "Ender Bunny", + 0.06, ], [ - "Virus Griffin", - 0.000025, - "Insane", + "Evil Gorilla", + 0.0075, ], [ - "Huge Virus Griffin", - 0.00015000000000000001, - "Insane", + "Huge Night Terror Cat", + 0.000007500000000000001, ], ], "rarity": { @@ -23193,49 +23320,46 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Virus Egg 20x", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "15283da5e81dbfac", + "configName": "6 | Backrooms Overgrown Egg 5x", + "dateCreated": null, + "dateModified": "2026-06-13T23:13:53.565Z", + "hashShort": "0105b985df98c395", }, { - "category": "Hacker", + "category": "Backrooms Update", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Virus Egg", - "overrideCost": 8000000, + "name": "Backrooms Ender Egg 25x", + "overrideCost": 1500, "pets": [ [ - "Hacked Computer", - 100, + "Ender Slime", + 82.463, ], [ - "Hacked Skeleton", - 0.01, - "Insane", + "Corrupt Skeleton", + 17, ], [ - "Masked Fox", - 0.005, - "Insane", + "Ender Bunny", + 0.4, ], [ - "Matrix Monkey", - 0.001, - "Insane", + "Evil Gorilla", + 0.13, ], [ - "Virus Griffin", - 0.000025, - "Insane", + "Corrupt Cat", + 0.007, ], [ - "Huge Virus Griffin", - 0.0001125, - "Insane", + "Huge Night Terror Cat", + 0.000037500000000000003, ], ], "rarity": { @@ -23251,49 +23375,46 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Virus Egg 15x", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "372b619f044a733e", + "configName": "7 | Backrooms Ender Egg 25x", + "dateCreated": null, + "dateModified": "2026-06-13T23:13:53.565Z", + "hashShort": "fbe8aa4ac8d5125d", }, { - "category": "Hacker", + "category": "Backrooms Update", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Virus Egg", - "overrideCost": 8000000, + "name": "Backrooms Corrupt Egg 75x", + "overrideCost": 2500, "pets": [ [ - "Hacked Computer", - 100, + "Corrupt Skeleton", + 82.575, ], [ - "Hacked Skeleton", - 0.01, - "Insane", + "Ender Bunny", + 17, ], [ - "Masked Fox", - 0.005, - "Insane", + "Evil Gorilla", + 0.4, ], [ - "Matrix Monkey", - 0.001, - "Insane", + "Corrupt Cat", + 0.02, ], [ - "Virus Griffin", - 0.000025, - "Insane", + "Plague Cow", + 0.001, ], [ - "Huge Virus Griffin", - 0.0001875, - "Insane", + "Huge Night Terror Cat", + 0.0001125, ], ], "rarity": { @@ -23309,49 +23430,46 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Virus Egg 25x", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "b9306b647b6a7edd", + "configName": "8 | Backrooms Corrupt Egg 75x", + "dateCreated": null, + "dateModified": "2026-06-13T23:13:53.553Z", + "hashShort": "5b1fd3b7b8968d91", }, { - "category": "Hacker", + "category": "Backrooms Update", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Virus Egg", - "overrideCost": 8000000, + "name": "Backrooms Corrupt Egg 100x", + "overrideCost": 2500, "pets": [ [ - "Hacked Computer", - 100, + "Corrupt Skeleton", + 82.575, ], [ - "Hacked Skeleton", - 0.01, - "Insane", + "Ender Bunny", + 17, ], [ - "Masked Fox", - 0.005, - "Insane", + "Evil Gorilla", + 0.4, ], [ - "Matrix Monkey", - 0.001, - "Insane", + "Corrupt Cat", + 0.02, ], [ - "Virus Griffin", - 0.000025, - "Insane", + "Plague Cow", + 0.001, ], [ - "Huge Virus Griffin", - 0.000375, - "Insane", + "Huge Night Terror Cat", + 0.00015000000000000001, ], ], "rarity": { @@ -23367,107 +23485,163 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Virus Egg 50x", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "bb03517f4acd045b", + "configName": "8 | Backrooms Corrupt Egg 100x", + "dateCreated": null, + "dateModified": "2026-06-13T23:13:52.661Z", + "hashShort": "15044502b271a4e7", }, { - "category": "Hacker", + "category": "Update 12", "collection": "Eggs", "configData": { "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Virus Egg", - "overrideCost": 8000000, + "eggNumber": 213, + "goldenThumbnail": "rbxassetid://138539416849283", + "icon": "rbxassetid://71645657799486", + "name": "Rusty Egg", "pets": [ [ - "Hacked Computer", - 100, + "Prison Cat", + 90, ], [ - "Hacked Skeleton", - 0.01, - "Insane", + "Prison Monkey", + 10, ], - [ - "Masked Fox", - 0.005, - "Insane", + ], + "worldNumber": 3, + }, + "configName": "213 | Rusty Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:36.482Z", + "hashShort": "85638acc928768a3", + }, + { + "category": "Update 12", + "collection": "Eggs", + "configData": { + "currency": "VoidCoins", + "eggNumber": 214, + "goldenThumbnail": "rbxassetid://120428034031711", + "icon": "rbxassetid://86456761170251", + "name": "Striped Egg", + "pets": [ + [ + "Prison Monkey", + 90, ], [ - "Matrix Monkey", - 0.001, - "Insane", + "Prison Dog", + 9, ], [ - "Virus Griffin", - 0.000025, - "Insane", + "Robber Cat", + 1, + "Nice", + ], + ], + "worldNumber": 3, + }, + "configName": "214 | Striped Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:36.481Z", + "hashShort": "6d62b200f74c3f0a", + }, + { + "category": "Update 12", + "collection": "Eggs", + "configData": { + "currency": "VoidCoins", + "eggNumber": 215, + "goldenThumbnail": "rbxassetid://119954611973636", + "icon": "rbxassetid://82472278918361", + "name": "Cinderblocks Egg", + "pets": [ + [ + "Robber Cat", + 90, ], [ - "Huge Virus Griffin", - 0.0005625000000000001, - "Insane", + "Prison Bunny", + 9, + ], + [ + "Detective Cat", + 1, + "Nice", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 3, }, - "configName": "Virus Egg 75x", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "f940d723a2867783", + "configName": "215 | Cinderblocks Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:36.449Z", + "hashShort": "d46fc7812df78260", }, { - "category": "Hacker", + "category": "Update 12", "collection": "Eggs", "configData": { "currency": "VoidCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Virus Egg", - "overrideCost": 8000000, + "eggNumber": 216, + "goldenThumbnail": "rbxassetid://104149630527152", + "icon": "rbxassetid://80711206385988", + "name": "Lootbag Egg", "pets": [ [ - "Hacked Computer", + "Detective Cat", 100, ], [ - "Hacked Skeleton", - 0.01, - "Insane", + "Prison Cow", + 0.1, ], [ - "Masked Fox", - 0.005, - "Insane", + "Prison Axolotl", + 0.001, ], [ - "Matrix Monkey", - 0.001, - "Insane", + "Guard Corgi", + 0.00001, ], + ], + "worldNumber": 3, + }, + "configName": "216 | Lootbag Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:37.209Z", + "hashShort": "6f3d807225620a81", + }, + { + "category": "Backrooms", + "collection": "Eggs", + "configData": { + "currency": "Coins", + "egg": null, + "icon": "rbxassetid://13281715743", + "isCustomEgg": true, + "name": "Backrooms Egg", + "overrideCost": 200, + "pets": [ [ - "Virus Griffin", - 0.000025, - "Insane", + "Leprechaun Cat", + 70, ], [ - "Huge Virus Griffin", - 0.00075, - "Insane", + "Irish Corgi", + 29, + ], + [ + "Clover Fairy", + 1, + ], + [ + "Clover Axolotl", + 0.002, + ], + [ + "Huge Clover Fairy", + 0.00001, ], ], "rarity": { @@ -23483,10 +23657,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Virus Egg 100x", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "f95054eda8133032", + "configName": "Backrooms Egg", + "dateCreated": null, + "dateModified": null, + "hashShort": null, }, { "category": "Exclusive Eggs", @@ -23496,39 +23670,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "disableModifiers": true, "disableRainbow": false, "goldChance": 0, - "icon": "rbxassetid://18101456848", - "name": "Exclusive Flex Egg", + "icon": "rbxassetid://17604555124", + "name": "Exclusive Stargazing Egg", "pets": [ [ - "Flex Fluffy Cat", + "Stargazing Wolf", 50, ], [ - "Flex Bear", + "Stargazing Bear", 35, ], [ - "Flex Tiger", + "Stargazing Axolotl", 13, ], [ - "Huge Flex Fluffy Cat", + "Huge Stargazing Wolf", 1.25, ], [ - "Huge Flex Tiger", + "Huge Stargazing Axolotl", 0.7, ], [ - "Titanic Flex Cat", + "Titanic Stargazing Bull", 0.05, ], ], "productIds": { - "10 Exclusive Eggs": 1853702345, - "100 Exclusive Eggs": 1853702426, - "3 Exclusive Eggs": 1853702238, - "Exclusive Egg": 1853702100, + "10 Exclusive Eggs": 1834304245, + "100 Exclusive Eggs": 1834304343, + "3 Exclusive Eggs": 1834304163, + "Exclusive Egg": 1834304054, }, "rainbowChance": 2, "rarity": { @@ -23545,32 +23719,50 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` }, "shinyChance": 2, }, - "configName": "Exclusive Egg 29", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "4e7039fad99cc4b9", + "configName": "Exclusive Egg 27", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.889Z", + "hashShort": "4c5945b667324878", }, { - "category": "Good vs Evil", + "category": "Events", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", - "disableGold": true, - "disableModifiers": true, - "disableRainbow": true, - "disableShiny": true, + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Good vs Evil Egg", - "overrideCost": 0, + "name": "Police Egg", + "overrideCost": 10000, "pets": [ [ - "Angel Lamb", - 50, + "Prison Cow", + 100, + "Nice", ], [ - "Demon Cat", - 50, + "Prison Axolotl", + 0.075, + "Great", + ], + [ + "Guard Corgi", + 0.0005, + "Insane", + ], + [ + "Police Dog", + 0.001, + "Insane", + ], + [ + "Police Cat", + 0.00001, + "Insane", + ], + [ + "Huge Police Cat", + 0.000001, + "Insane", ], ], "rarity": { @@ -23586,270 +23778,215 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Good Vs Evil Team Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "b7c652e6c9a45b31", + "configName": "Police Egg", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.190Z", + "hashShort": "bb8ea1535d397d62", }, { - "category": "Evil", + "category": "Update 14", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", - "egg": null, - "goldenEgg": null, - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Overgrown Magma Egg", - "overrideCost": 250, + "currency": "VoidCoins", + "eggNumber": 217, + "goldenThumbnail": "rbxassetid://108828948660442", + "icon": "rbxassetid://139537711212949", + "name": "Summer Beach Egg", "pets": [ [ - "Good vs Evil Cat", - 90, + "Scuba Dog", + 70, ], [ - "Demon Cat", - 10, + "Scuba Shark", + 29, ], [ - "Evil Ram", + "Floatie Ducky", 1, "Nice", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 3, }, - "configName": "Overgrown Magma Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "c7d4a37ff88358e9", + "configName": "217 | Summer Beach Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:37.204Z", + "hashShort": "d482cfcbd4f05e05", }, { - "category": "Evil", + "category": "Update 14", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", - "egg": null, - "goldenEgg": null, - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Horned Egg", - "overrideCost": 500, + "currency": "VoidCoins", + "eggNumber": 218, + "goldenThumbnail": "rbxassetid://71509767403021", + "icon": "rbxassetid://114332240722763", + "name": "Summer Floatie Egg", "pets": [ [ - "Demon Cat", - 90, + "Floatie Ducky", + 80, ], [ - "Evil Ram", - 10, + "Floatie Flamingo", + 19.5, ], [ - "Chimera", - 1, + "Beach Ball Dolphin", + 0.5, "Nice", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 3, }, - "configName": "Horned Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "bdd973a599238f9b", + "configName": "218 | Summer Floatie Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:37.203Z", + "hashShort": "d64cf9e0e862b057", }, { - "category": "Evil", + "category": "Update 14", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", - "egg": null, - "goldenEgg": null, - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Evil Dragon Egg", - "overrideCost": 1000, + "currency": "VoidCoins", + "eggNumber": 219, + "goldenThumbnail": "rbxassetid://115632563705289", + "icon": "rbxassetid://134551612980724", + "name": "Summer Melon Egg", "pets": [ [ - "Evil Ram", - 90, + "Beach Ball Dolphin", + 85, ], [ - "Chimera", - 10, + "Beach Ball Monkey", + 14.75, ], [ - "Evil Imp", - 1, + "Flower Cat", + 0.25, "Nice", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 3, }, - "configName": "Evil Dragon Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "a3560913effa0e11", + "configName": "219 | Summer Melon Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:37.185Z", + "hashShort": "f58445505c230d7d", }, { - "category": "Evil", + "category": "Update 14", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", - "egg": null, - "goldenEgg": null, - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Lava Monster Egg", - "overrideCost": 2000, + "currency": "VoidCoins", + "eggNumber": 220, + "goldenThumbnail": "rbxassetid://74401197515710", + "icon": "rbxassetid://73606905043667", + "name": "Summer Beachball Egg", "pets": [ [ - "Chimera", - 90, + "Flower Cat", + 85, ], [ - "Evil Imp", - 10, + "Surfboard Corgi", + 15, ], [ - "Evil Deer", - 1, - "Nice", + "Surfboard Axolotl", + 0.1, + "Great", ], [ - "Demon Serpents", - 0.005, + "Sailor Seal", + 0.01, "Insane", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 3, }, - "configName": "Lava Monster Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "3b0dd04ed6639723", + "configName": "220 | Summer Beachball Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:37.248Z", + "hashShort": "b95021d640d2b5a2", }, { - "category": "Evil", + "category": "Update 14", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", - "egg": null, - "goldenEgg": null, - "icon": "rbxassetid://18150705084", - "isCustomEgg": true, - "name": "Imp Egg", - "overrideCost": 4000, + "currency": "VoidCoins", + "eggNumber": 221, + "goldenThumbnail": "rbxassetid://93425708066953", + "icon": "rbxassetid://123154456896090", + "name": "Summer Sun Egg", "pets": [ [ - "Evil Imp", - 90, + "Surfboard Axolotl", + 99, ], [ - "Evil Deer", - 10, + "Sailor Seal", + 0.1, + "Great", ], [ - "Demon Serpents", - 0.05, - "Great", + "Pineapple Monkey", + 0.001, + "Insane", ], [ - "Dark Lord", - 0.0001, + "Sun Agony", + 0.000025, "Insane", ], [ - "Huge Evil Imp", - 0.000006, + "Huge Pineapple Monkey", + 5e-7, "Insane", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 3, }, - "configName": "Imp Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "59d3bd3b98c80e63", + "configName": "221 | Summer Sun Egg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:37.186Z", + "hashShort": "71c2e349814906b4", }, { - "category": "Good", + "category": "Egg Hunt", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", - "egg": null, - "goldenEgg": null, + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Blessing Egg", - "overrideCost": 250, + "name": "Obby Egg Hunt Egg", + "overrideCost": 120000, "pets": [ [ - "Good vs Evil Cat", - 90, + "Sailor Seal", + 99, ], [ - "Angel Lamb", - 10, + "Pineapple Monkey", + 0.1, + "Great", ], [ - "Angel Seal", - 1, - "Nice", + "Flower Cat", + 0.001, + "Insane", + ], + [ + "Sun Agony", + 0.000025, + "Insane", + ], + [ + "Huge Pineapple Monkey", + 0.0000015, + "Insane", ], ], "rarity": { @@ -23865,35 +24002,44 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Blessing Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "71bbcef775f8b998", + "configName": "Egg Hunt Egg 3x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.179Z", + "hashShort": "8d6087f3043efa05", }, { - "category": "Good", + "category": "Egg Hunt", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", - "egg": null, - "goldenEgg": null, + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Divine Floral Egg", - "overrideCost": 500, + "name": "Obby Egg Hunt Egg", + "overrideCost": 120000, "pets": [ [ - "Angel Lamb", - 90, + "Sailor Seal", + 99, ], [ - "Angel Seal", - 10, + "Pineapple Monkey", + 0.1, + "Great", ], [ - "Heavenly Dove", - 1, - "Nice", + "Flower Cat", + 0.001, + "Insane", + ], + [ + "Sun Agony", + 0.000025, + "Insane", + ], + [ + "Huge Pineapple Monkey", + 0.0000024999999999999998, + "Insane", ], ], "rarity": { @@ -23909,35 +24055,44 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Divine Floral Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "6e2c0a7cc76ced23", + "configName": "Egg Hunt Egg 5x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.177Z", + "hashShort": "bdc38c61fd2f1a7c", }, { - "category": "Good", + "category": "Egg Hunt", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", - "egg": null, - "goldenEgg": null, + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Utopia Egg", - "overrideCost": 1000, + "name": "Obby Egg Hunt Egg", + "overrideCost": 120000, "pets": [ [ - "Angel Seal", - 90, + "Sailor Seal", + 99, ], [ - "Heavenly Dove", - 10, + "Pineapple Monkey", + 0.1, + "Great", ], [ - "Angel Pegasus", - 1, - "Nice", + "Flower Cat", + 0.001, + "Insane", + ], + [ + "Sun Agony", + 0.000025, + "Insane", + ], + [ + "Huge Pineapple Monkey", + 0.0000049999999999999996, + "Insane", ], ], "rarity": { @@ -23953,39 +24108,43 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Utopia Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "7a341b620a8dd572", + "configName": "Egg Hunt Egg 10x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.171Z", + "hashShort": "d25db1e61fb51b3c", }, { - "category": "Good", + "category": "Egg Hunt", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", - "egg": null, - "goldenEgg": null, + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Heavenly Throne Egg", - "overrideCost": 2000, + "name": "Obby Egg Hunt Egg", + "overrideCost": 120000, "pets": [ [ - "Heavenly Dove", - 90, + "Sailor Seal", + 99, ], [ - "Angel Pegasus", - 10, + "Pineapple Monkey", + 0.1, + "Great", ], [ - "Avenging Griffin", - 1, - "Nice", + "Flower Cat", + 0.001, + "Insane", ], [ - "Pentangelus", - 0.005, + "Sun Agony", + 0.000025, + "Insane", + ], + [ + "Huge Pineapple Monkey", + 0.000007499999999999999, "Insane", ], ], @@ -24002,44 +24161,43 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Heavenly Throne Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "99a3853aebce59cc", + "configName": "Egg Hunt Egg 15x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.179Z", + "hashShort": "cf51b9c862a5abfd", }, { - "category": "Good", + "category": "Egg Hunt", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", - "egg": null, - "goldenEgg": null, - "icon": "rbxassetid://18150705407", + "currency": "VoidCoins", + "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Angelic Egg", - "overrideCost": 4000, + "name": "Obby Egg Hunt Egg", + "overrideCost": 120000, "pets": [ [ - "Angel Pegasus", - 90, + "Sailor Seal", + 99, ], [ - "Avenging Griffin", - 10, + "Pineapple Monkey", + 0.1, + "Great", ], [ - "Pentangelus", - 0.05, - "Great", + "Flower Cat", + 0.001, + "Insane", ], [ - "Divinus", - 0.0001, + "Sun Agony", + 0.000025, "Insane", ], [ - "Huge Avenging Griffin", - 0.000006, + "Huge Pineapple Monkey", + 0.000009999999999999999, "Insane", ], ], @@ -24056,33 +24214,44 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Angelic Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "b56292b0b70098d3", + "configName": "Egg Hunt Egg 20x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.175Z", + "hashShort": "999502d6c9d2c93c", }, { - "category": "Evil", + "category": "Egg Hunt", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Overgrown Magma Egg", - "overrideCost": 250, + "name": "Obby Egg Hunt Egg", + "overrideCost": 120000, "pets": [ [ - "Good vs Evil Cat", - 90, + "Sailor Seal", + 99, ], [ - "Demon Cat", - 10, + "Pineapple Monkey", + 0.1, + "Great", ], [ - "Evil Ram", - 1, - "Nice", + "Flower Cat", + 0.001, + "Insane", + ], + [ + "Sun Agony", + 0.000025, + "Insane", + ], + [ + "Huge Pineapple Monkey", + 0.000014999999999999999, + "Insane", ], ], "rarity": { @@ -24098,33 +24267,44 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Overgrown Magma Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "53125fdca02d5118", + "configName": "Egg Hunt Egg 30x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.189Z", + "hashShort": "8f88df991805dd4e", }, { - "category": "Evil", + "category": "Egg Hunt", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Horned Egg", - "overrideCost": 500, + "name": "Obby Egg Hunt Egg", + "overrideCost": 120000, "pets": [ [ - "Demon Cat", - 90, + "Sailor Seal", + 99, ], [ - "Evil Ram", - 10, + "Pineapple Monkey", + 0.1, + "Great", ], [ - "Chimera", - 1, - "Nice", + "Flower Cat", + 0.001, + "Insane", + ], + [ + "Sun Agony", + 0.000025, + "Insane", + ], + [ + "Huge Pineapple Monkey", + 0.000019999999999999998, + "Insane", ], ], "rarity": { @@ -24140,33 +24320,44 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Horned Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "c1777d6b99f5a2dc", + "configName": "Egg Hunt Egg 40x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.169Z", + "hashShort": "dcd3aefafc15f0b4", }, { - "category": "Evil", + "category": "Egg Hunt", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Evil Dragon Egg", - "overrideCost": 1000, + "name": "Obby Egg Hunt Egg", + "overrideCost": 120000, "pets": [ [ - "Evil Ram", - 90, + "Sailor Seal", + 99, ], [ - "Chimera", - 10, + "Pineapple Monkey", + 0.1, + "Great", ], [ - "Evil Imp", - 1, - "Nice", + "Flower Cat", + 0.001, + "Insane", + ], + [ + "Sun Agony", + 0.000025, + "Insane", + ], + [ + "Huge Pineapple Monkey", + 0.000024999999999999998, + "Insane", ], ], "rarity": { @@ -24182,37 +24373,43 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "3 | Evil Dragon Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "31e7d268dd1bc9d8", + "configName": "Egg Hunt Egg 50x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.193Z", + "hashShort": "50e4e0748726a7d4", }, { - "category": "Evil", + "category": "Egg Hunt", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Lava Monster Egg", - "overrideCost": 2000, + "name": "Obby Egg Hunt Egg", + "overrideCost": 120000, "pets": [ [ - "Chimera", - 90, + "Sailor Seal", + 99, ], [ - "Evil Imp", - 10, + "Pineapple Monkey", + 0.1, + "Great", ], [ - "Evil Deer", - 1, - "Nice", + "Flower Cat", + 0.001, + "Insane", ], [ - "Demon Serpents", - 0.005, + "Sun Agony", + 0.000025, + "Insane", + ], + [ + "Huge Pineapple Monkey", + 0.0000375, "Insane", ], ], @@ -24229,37 +24426,43 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Lava Monster Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "977f0405aebfbd16", + "configName": "Egg Hunt Egg 75x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.175Z", + "hashShort": "f4afcdb5027ce02b", }, { - "category": "Evil", + "category": "Egg Hunt", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", - "icon": "rbxassetid://18150705084", + "currency": "VoidCoins", + "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Imp Egg", - "overrideCost": 4000, + "name": "Obby Egg Hunt Egg", + "overrideCost": 120000, "pets": [ [ - "Evil Imp", - 90, + "Sailor Seal", + 99, ], [ - "Evil Deer", - 10, + "Pineapple Monkey", + 0.1, + "Great", ], [ - "Demon Serpents", - 0.05, - "Great", + "Flower Cat", + 0.001, + "Insane", ], [ - "Dark Lord", - 0.0001, + "Sun Agony", + 0.000025, + "Insane", + ], + [ + "Huge Pineapple Monkey", + 0.000049999999999999996, "Insane", ], ], @@ -24276,33 +24479,44 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Imp Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "3261c1964b8670d0", + "configName": "Egg Hunt Egg 100x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.180Z", + "hashShort": "e27cafd7873c7c99", }, { - "category": "Evil", + "category": "Egg Hunt", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Demon Spider Egg", - "overrideCost": 16000, + "name": "Obby Egg Hunt Egg", + "overrideCost": 120000, "pets": [ [ - "Evil Bat", - 90, + "Sailor Seal", + 99, ], [ - "Evil Minotaur", - 10, + "Pineapple Monkey", + 0.1, + "Great", ], [ - "Hell Scorpion", - 1, - "Nice", + "Flower Cat", + 0.001, + "Insane", + ], + [ + "Sun Agony", + 0.000025, + "Insane", + ], + [ + "Huge Pineapple Monkey", + 0.000012499999999999999, + "Insane", ], ], "rarity": { @@ -24318,47 +24532,37 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "7 | Demon Spider Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "ce61a3a0bd1c9c7c", + "configName": "Egg Hunt Egg 25x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.177Z", + "hashShort": "064c7f2f7656a1dd", }, { - "category": "Evil", + "category": "Beach Island Parkour", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", - "icon": "rbxassetid://18258754427", + "currency": "VoidCoins", + "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Devil Egg", - "overrideCost": 32000, + "name": "Summer Beach Egg", + "overrideCost": 6000, "pets": [ [ - "Evil Minotaur", - 90, - ], - [ - "Hell Scorpion", - 10, - ], - [ - "Devil Agony", - 0.05, - "Great", + "Scuba Dog", + 69.3707175, ], [ - "Devil Dominus", - 0.0001, - "Insane", + "Scuba Shark", + 28.73929725, ], [ - "Huge Evil Imp", - 0.000006, - "Insane", + "Floatie Ducky", + 0.99101025, + "Nice", ], [ - "Huge Devil Agony", - 0.000003, + "Huge Pineapple Monkey", + 0.000001, "Insane", ], ], @@ -24375,34 +24579,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "8 | Devil Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "8bd8f8837e22df57", + "configName": "Beach Island Parkour 2x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.192Z", + "hashShort": "667648869b384383", }, { - "category": "Evil", + "category": "Beach Island Parkour", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Chained Egg", - "overrideCost": 8000, + "name": "Summer Beach Egg", + "overrideCost": 6000, "pets": [ [ - "Dark Lord", - 90, + "Scuba Dog", + 69.3707175, ], [ - "Demon Dog", - 10, + "Scuba Shark", + 28.73929725, ], [ - "Evil Bat", - 1, + "Floatie Ducky", + 0.99101025, "Nice", ], + [ + "Huge Pineapple Monkey", + 0.0000015, + "Insane", + ], ], "rarity": { "Announce": true, @@ -24417,34 +24626,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "6 | Chained Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "6333a356e401f7cf", + "configName": "Beach Island Parkour 3x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.190Z", + "hashShort": "9e6d11b51ffb2e90", }, { - "category": "Good", + "category": "Beach Island Parkour", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Blessing Egg", - "overrideCost": 250, + "name": "Summer Beach Egg", + "overrideCost": 6000, "pets": [ [ - "Good vs Evil Cat", - 90, + "Scuba Dog", + 69.3707175, ], [ - "Angel Lamb", - 10, + "Scuba Shark", + 28.73929725, ], [ - "Angel Seal", - 1, + "Floatie Ducky", + 0.99101025, "Nice", ], + [ + "Huge Pineapple Monkey", + 0.0000024999999999999998, + "Insane", + ], ], "rarity": { "Announce": true, @@ -24459,34 +24673,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Blessing Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "7aaf756a49ff047d", + "configName": "Beach Island Parkour 5x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.181Z", + "hashShort": "742a1ecb085d7dc4", }, { - "category": "Good", + "category": "Tiki Island Parkour", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Divine Floral Egg", - "overrideCost": 500, + "name": "Summer Melon Egg", + "overrideCost": 30000, "pets": [ [ - "Angel Lamb", - 90, + "Beach Ball Dolphin", + 84.23587125, ], [ - "Angel Seal", - 10, + "Beach Ball Monkey", + 14.6174011875, ], [ - "Heavenly Dove", - 1, + "Flower Cat", + 0.2477525625, "Nice", ], + [ + "Huge Pineapple Monkey", + 0.000001, + "Insane", + ], ], "rarity": { "Announce": true, @@ -24501,34 +24720,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Divine Floral Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "0169a8ac2be905d7", + "configName": "Tiki Island Parkour 2x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.173Z", + "hashShort": "3a82edf309407b04", }, { - "category": "Good", + "category": "Tiki Island Parkour", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Utopia Egg", - "overrideCost": 1000, + "name": "Summer Melon Egg", + "overrideCost": 30000, "pets": [ [ - "Angel Seal", - 90, + "Beach Ball Dolphin", + 84.23587125, ], [ - "Heavenly Dove", - 10, + "Beach Ball Monkey", + 14.6174011875, ], [ - "Angel Pegasus", - 1, + "Flower Cat", + 0.2477525625, "Nice", ], + [ + "Huge Pineapple Monkey", + 0.0000015, + "Insane", + ], ], "rarity": { "Announce": true, @@ -24543,37 +24767,37 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "3 | Utopia Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "00dd9c414b5ac4d2", + "configName": "Tiki Island Parkour 3x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.191Z", + "hashShort": "952022a59de9ac37", }, { - "category": "Good", + "category": "Tiki Island Parkour", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Heavenly Throne Egg", - "overrideCost": 2000, + "name": "Summer Melon Egg", + "overrideCost": 30000, "pets": [ [ - "Heavenly Dove", - 90, + "Beach Ball Dolphin", + 84.23587125, ], [ - "Angel Pegasus", - 10, + "Beach Ball Monkey", + 14.6174011875, ], [ - "Avenging Griffin", - 1, + "Flower Cat", + 0.2477525625, "Nice", ], [ - "Pentangelus", - 0.005, + "Huge Pineapple Monkey", + 0.0000024999999999999998, "Insane", ], ], @@ -24590,37 +24814,37 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Heavenly Throne Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "2013c49476a493d4", + "configName": "Tiki Island Parkour 5x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.191Z", + "hashShort": "b7daf04490e5bfb0", }, { - "category": "Good", + "category": "Ocean Island Parkour", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", - "icon": "rbxassetid://18150705407", + "currency": "VoidCoins", + "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Angelic Egg", - "overrideCost": 4000, + "name": "Summer Floatie Egg", + "overrideCost": 12000, "pets": [ [ - "Angel Pegasus", - 90, + "Floatie Ducky", + 79.28082, ], [ - "Avenging Griffin", - 10, + "Floatie Flamingo", + 19.324699875, ], [ - "Pentangelus", - 0.05, - "Great", + "Beach Ball Dolphin", + 0.495505125, + "Nice", ], [ - "Divinus", - 0.0001, + "Huge Pineapple Monkey", + 0.000001, "Insane", ], ], @@ -24637,47 +24861,37 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Angelic Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "6c6ed5eca78c42da", + "configName": "Ocean Island Parkour 2x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.192Z", + "hashShort": "d14740024bca1559", }, { - "category": "Good", + "category": "Ocean Island Parkour", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", - "icon": "rbxassetid://18258754192", + "currency": "VoidCoins", + "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Majestic Egg", - "overrideCost": 32000, + "name": "Summer Floatie Egg", + "overrideCost": 12000, "pets": [ [ - "Angel Moth", - 90, - ], - [ - "Angel Pony", - 10, - ], - [ - "Sage Axolotl", - 0.05, - "Great", + "Floatie Ducky", + 79.28082, ], [ - "Warrior Wolf", - 0.0001, - "Insane", + "Floatie Flamingo", + 19.324699875, ], [ - "Huge Avenging Griffin", - 0.000006, - "Insane", + "Beach Ball Dolphin", + 0.495505125, + "Nice", ], [ - "Huge Sage Axolotl", - 0.000003, + "Huge Pineapple Monkey", + 0.0000015, "Insane", ], ], @@ -24694,32 +24908,38 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "8 | Majestic Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "fbd74813b754c60a", + "configName": "Ocean Island Parkour 3x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.178Z", + "hashShort": "7b5b4fd3f624d47a", }, { - "category": "Good", + "category": "Ocean Island Parkour", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Musical Harp Egg", - "overrideCost": 8000, + "name": "Summer Floatie Egg", + "overrideCost": 12000, "pets": [ [ - "Divinus", - 90, + "Floatie Ducky", + 79.28082, ], [ - "Archangel Cat", - 10, + "Floatie Flamingo", + 19.324699875, ], [ - "Angel Fawn", - 1, + "Beach Ball Dolphin", + 0.495505125, + "Nice", + ], + [ + "Huge Pineapple Monkey", + 0.0000024999999999999998, + "Insane", ], ], "rarity": { @@ -24735,73 +24955,42 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "6 | Musical Harp Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "91ab43f93c9cc979", + "configName": "Ocean Island Parkour 5x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.192Z", + "hashShort": "5cbda7e586dc4c22", }, { - "category": "Good", + "category": "Jungle Island Parkour", "collection": "Eggs", "configData": { - "currency": "GoodVsEvilCoins", + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Avenging Egg", - "overrideCost": 16000, + "name": "Summer Beachball Egg", + "overrideCost": 60000, "pets": [ [ - "Angel Fawn", - 90, + "Flower Cat", + 84.14331360503446, ], [ - "Angel Moth", - 10, + "Surfboard Corgi", + 14.848820047947259, ], [ - "Angel Pony", - 1, - "Nice", + "Surfboard Axolotl", + 0.09899213365298173, + "Great", ], - ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, - "configName": "7 | Avenging Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "2e770d87eefc10dd", - }, - { - "category": "Good vs Evil", - "collection": "Eggs", - "configData": { - "currency": "Diamonds", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Good vs Evil Diamond Egg", - "oddsFFlags": { - "Huge Good vs Evil Dragon": "EggMultiplier_D1", - }, - "overrideCost": 50, - "pets": [ [ - "Good vs Evil Dragon", - 100.0501, + "Sailor Seal", + 0.009899213365298172, + "Insane", ], [ - "Huge Good vs Evil Dragon", - 0.000012, + "Huge Pineapple Monkey", + 0.000001, "Insane", ], ], @@ -24818,76 +25007,43 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Good vs Evil Diamond Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "c1cb7a6d00d7914a", + "configName": "Jungle Island Parkour 2x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.185Z", + "hashShort": "f29b19d2e84ba291", }, { - "category": "Rave", + "category": "Jungle Island Parkour", "collection": "Eggs", "configData": { - "currency": "RaveCoins", + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "DJ Egg", - "overrideCost": 250, + "name": "Summer Beachball Egg", + "overrideCost": 60000, "pets": [ [ - "UV Cat", - 99, + "Flower Cat", + 84.14331360503446, ], [ - "Rave Corgi", - 1, + "Surfboard Corgi", + 14.848820047947259, ], [ - "DJ Panda", - 0.01, + "Surfboard Axolotl", + 0.09899213365298173, "Great", ], - ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, - "configName": "1 | DJ Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "da360801d00d428c", - }, - { - "category": "Rave", - "collection": "Eggs", - "configData": { - "currency": "RaveCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Rhythm Egg", - "overrideCost": 500, - "pets": [ - [ - "Rave Corgi", - 99, - ], [ - "DJ Panda", - 1, - "Nice", + "Sailor Seal", + 0.009899213365298172, + "Insane", ], [ - "Rave Troll", - 0.01, - "Great", + "Huge Pineapple Monkey", + 0.0000015, + "Insane", ], ], "rarity": { @@ -24903,35 +25059,44 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Rhythm Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "e4bf4be044c6241d", + "configName": "Jungle Island Parkour 3x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.176Z", + "hashShort": "b978cd0592167dbc", }, { - "category": "Rave", + "category": "Jungle Island Parkour", "collection": "Eggs", "configData": { - "currency": "RaveCoins", + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Electronic Egg", - "overrideCost": 1000, + "name": "Summer Beachball Egg", + "overrideCost": 60000, "pets": [ [ - "DJ Panda", - 99, + "Flower Cat", + 84.14331360503446, ], [ - "Rave Troll", - 1, - "Nice", + "Surfboard Corgi", + 14.848820047947259, ], [ - "Rave Bunny", - 0.01, + "Surfboard Axolotl", + 0.09899213365298173, "Great", ], + [ + "Sailor Seal", + 0.009899213365298172, + "Insane", + ], + [ + "Huge Pineapple Monkey", + 0.0000024999999999999998, + "Insane", + ], ], "rarity": { "Announce": true, @@ -24946,37 +25111,43 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "3 | Electronic Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "a1071cfeadae5092", + "configName": "Jungle Island Parkour 5x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.184Z", + "hashShort": "2799de8e7c3b7f2c", }, { - "category": "Rave", + "category": "Volcano Island Parkour", "collection": "Eggs", "configData": { - "currency": "RaveCoins", + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Disco Egg", - "overrideCost": 2000, + "name": "Summer Sun Egg", + "overrideCost": 120000, "pets": [ [ - "Rave Troll", + "Surfboard Axolotl", 99, ], [ - "Rave Bunny", - 1, + "Sailor Seal", + 0.1, + "Great", ], [ - "UV Kitsune", - 0.05, - "Great", + "Pineapple Monkey", + 0.001, + "Insane", ], [ - "Rave Meebo in a Spaceship", - 0.000075, + "Sun Agony", + 0.000025, + "Insane", + ], + [ + "Huge Pineapple Monkey", + 0.000001, "Insane", ], ], @@ -24993,94 +25164,97 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Disco Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "51226e93941c170a", + "configName": "Volcano Island Parkour 2x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.182Z", + "hashShort": "9203d9e5632f8516", }, { - "category": "Exclusive Eggs", + "category": "Volcano Island Parkour", "collection": "Eggs", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://18465449444", - "name": "Exclusive Valkyrie Egg", + "currency": "VoidCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Summer Sun Egg", + "overrideCost": 120000, "pets": [ [ - "Valkyrie Dog", - 50, - ], - [ - "Valkyrie Dragon", - 35, + "Surfboard Axolotl", + 99, ], [ - "Valkyrie Wolf", - 13, + "Sailor Seal", + 0.1, + "Great", ], [ - "Huge Valkyrie Dog", - 1.25, + "Pineapple Monkey", + 0.001, + "Insane", ], [ - "Huge Valkyrie Wolf", - 0.7, + "Sun Agony", + 0.000025, + "Insane", ], [ - "Titanic Valkyrie Pegasus", - 0.05, + "Huge Pineapple Monkey", + 0.0000015, + "Insane", ], ], - "productIds": { - "10 Exclusive Eggs": 1874313205, - "100 Exclusive Eggs": 1874313337, - "3 Exclusive Eggs": 1874313122, - "Exclusive Egg": 1874312994, - }, - "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "shinyChance": 2, }, - "configName": "Exclusive Egg 30", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "025da0b9bb2ee802", + "configName": "Volcano Island Parkour 3x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.174Z", + "hashShort": "5daa29ad0f996526", }, { - "category": "Rave", + "category": "Volcano Island Parkour", "collection": "Eggs", "configData": { - "currency": "RaveCoins", + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Neon Swirl Egg", - "overrideCost": 8000, + "name": "Summer Sun Egg", + "overrideCost": 120000, "pets": [ [ - "UV Kitsune", + "Surfboard Axolotl", 99, ], [ - "Rave Meebo in a Spaceship", - 1, + "Sailor Seal", + 0.1, + "Great", ], [ - "Rave Cat", - 0.01, + "Pineapple Monkey", + 0.001, + "Insane", + ], + [ + "Sun Agony", + 0.000025, + "Insane", + ], + [ + "Huge Pineapple Monkey", + 0.0000024999999999999998, + "Insane", ], ], "rarity": { @@ -25096,32 +25270,44 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Neon Swirl Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "93ca2bc9c418fe37", + "configName": "Volcano Island Parkour 5x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.183Z", + "hashShort": "605669c501770ac9", }, { - "category": "Rave", + "category": "Volcano Island Parkour", "collection": "Eggs", "configData": { - "currency": "RaveCoins", + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Rave Punk Egg", - "overrideCost": 32000, + "name": "Summer Sun Egg", + "overrideCost": 120000, "pets": [ [ - "Rave Meebo in a Spaceship", + "Surfboard Axolotl", 99, ], [ - "Rave Cat", - 1, + "Sailor Seal", + 0.1, + "Great", ], [ - "Rave Axolotl", - 0.01, + "Pineapple Monkey", + 0.001, + "Insane", + ], + [ + "Sun Agony", + 0.000025, + "Insane", + ], + [ + "Huge Pineapple Monkey", + 0.0000049999999999999996, + "Insane", ], ], "rarity": { @@ -25137,282 +25323,247 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "6 | Rave Punk Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "c5b6606e116c0c7f", + "configName": "Volcano Island Parkour 10x", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:24.184Z", + "hashShort": "51df6eedca4ea8b1", }, { - "category": "Rave", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "RaveCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Festival Speaker Egg", - "overrideCost": 128000, + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://17775083088", + "name": "Exclusive Blazing Egg", "pets": [ [ - "Rave Cat", - 89, - ], - [ - "Rave Axolotl", - 10, + "Blazing Shark", + 50, ], [ - "Rave Jaguar", - 1, + "Blazing Corgi", + 35, ], [ - "Rave Unicorn", - 0.05, + "Blazing Bat", + 13, ], [ - "Rave Butterfly", - 0.005, + "Huge Blazing Shark", + 1.25, ], [ - "Disco Ball Dragon", - 0.00005, + "Huge Blazing Bat", + 0.7, ], [ - "Huge Rave Butterfly", - 0.000006, - "Insane", + "Titanic Blazing Dragon", + 0.05, ], ], + "productIds": { + "10 Exclusive Eggs": 1843807645, + "100 Exclusive Eggs": 1843807709, + "3 Exclusive Eggs": 1843807584, + "Exclusive Egg": 1843807444, + }, + "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "shinyChance": 2, }, - "configName": "7 | Festival Speaker Egg", + "configName": "Exclusive Egg 28", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "0f451b6a49faba07", + "hashShort": "c5548106668e95ed", }, { - "category": "Update 21", + "category": "Update 15", "collection": "Eggs", "configData": { "currency": "VoidCoins", - "eggNumber": 227, - "icon": "rbxassetid://15172355963", - "name": "Growing Egg", + "eggNumber": 222, + "goldenThumbnail": "rbxassetid://106960204324979", + "icon": "rbxassetid://91228732593483", + "name": "Hacker Circuit Egg", "pets": [ [ - "Humble Hen", - 99, + "Hooded Bobcat", + 100, ], [ - "Humble Rabbit", + "Hooded Piggy", 1, - "Nice", - ], - [ - "Fortress Dog", - 0.1, - "Great", ], ], "worldNumber": 3, }, - "configName": "227 | Growing Egg", + "configName": "222 | Hacker Circuit Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "015e6be640e83f34", + "dateModified": "2026-04-18T15:56:37.207Z", + "hashShort": "90358f796276dfeb", }, { - "category": "Update 21", + "category": "Update 15", "collection": "Eggs", "configData": { "currency": "VoidCoins", - "eggNumber": 228, - "icon": "rbxassetid://15172355963", - "name": "Sturdy Egg", + "eggNumber": 223, + "goldenThumbnail": "rbxassetid://111039577199851", + "icon": "rbxassetid://103653376594174", + "name": "Hacker Wireframe Egg", "pets": [ [ - "Humble Rabbit", - 90, - ], - [ - "Fortress Dog", - 10, + "Hooded Monkey", + 99, ], [ - "Fortress Owl", + "Hooded Dragon", 1, "Nice", ], - [ - "Pristine Snake", - 0.1, - "Great", - ], ], "worldNumber": 3, }, - "configName": "228 | Sturdy Egg", + "configName": "223 | Hacker Wireframe Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "0ff8d8c0d34344ea", + "dateModified": "2026-04-18T15:56:37.201Z", + "hashShort": "2610d12b9c0576ef", }, { - "category": "Update 21", + "category": "Update 15", "collection": "Eggs", "configData": { "currency": "VoidCoins", - "eggNumber": 229, - "icon": "rbxassetid://15172355963", - "name": "Established Egg", + "eggNumber": 224, + "goldenThumbnail": "rbxassetid://94889219472441", + "icon": "rbxassetid://114804346883526", + "name": "Hacker Crystal Egg", "pets": [ [ - "Fortress Owl", - 90, - ], - [ - "Pristine Snake", - 10, + "Hacker Corgi", + 100, ], [ - "Pristine Poodle", + "Hacker Bear", 1, - "Nice", - ], - [ - "Treasure Turtle", - 0.1, - "Great", ], ], "worldNumber": 3, }, - "configName": "229 | Established Egg", + "configName": "224 | Hacker Crystal Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "0f69ac7fb86458b0", + "dateModified": "2026-04-18T15:56:37.184Z", + "hashShort": "0e006242aaeba636", }, { - "category": "Update 21", + "category": "Update 15", "collection": "Eggs", "configData": { "currency": "VoidCoins", - "eggNumber": 230, - "icon": "rbxassetid://15172355963", - "name": "Elegant Egg", + "eggNumber": 225, + "goldenThumbnail": "rbxassetid://133739544925656", + "icon": "rbxassetid://95754193514044", + "name": "Hacker Electric Egg", "pets": [ [ - "Pristine Poodle", - 90, - ], - [ - "Treasure Turtle", - 10, + "Hacker Axolotl", + 99, ], [ - "Elegant Eagle", + "Hacker Cat", 1, "Nice", ], - [ - "Diamond Dragon", - 0.1, - "Great", - ], ], "worldNumber": 3, }, - "configName": "230 | Elegant Egg", + "configName": "225 | Hacker Electric Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "2acffa14db60283a", + "dateModified": "2026-04-18T15:56:37.200Z", + "hashShort": "03e125ab3ebdf32d", }, { - "category": "Update 21", + "category": "Update 15", "collection": "Eggs", "configData": { "currency": "VoidCoins", - "eggNumber": 231, - "icon": "rbxassetid://15172355963", - "name": "Luxe Egg", + "eggNumber": 226, + "goldenThumbnail": "rbxassetid://82570861881337", + "icon": "rbxassetid://98362749466505", + "name": "Hacker Secure Egg", "pets": [ [ - "Elegant Eagle", - 99, - ], - [ - "Diamond Dragon", - 1, + "Hacked Computer", + 100, ], [ - "Luxe Axolotl", + "Hacked Skeleton", 0.001, "Insane", ], [ - "Luxe Peacock", + "Masked Fox", 0.000025, "Insane", ], - [ - "Huge Pristine Snake", - 5e-7, - "Insane", - ], ], "worldNumber": 3, }, - "configName": "231 | Luxe Egg", + "configName": "226 | Hacker Secure Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "6d758a887612e8e4", + "dateModified": "2026-04-18T15:56:37.185Z", + "hashShort": "695e33f365998714", }, { - "category": "Exclusive Eggs", + "category": "Machine Eggs", "collection": "Eggs", "configData": { - "disableGold": true, + "disableGold": false, "disableModifiers": true, "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://18673507287", - "name": "Exclusive SpongeBob Egg", + "goldChance": 5, + "icon": "rbxassetid://17846766229", + "name": "Huge Machine Butterfly Egg", "pets": [ [ - "Mr Krabs", - 50, + "Huge Mushroom Raccoon", + 49.75, ], [ - "Gary the Snail", - 35, + "Huge Vibrant Toucan", + 30, ], [ - "Patrick Star", - 13, + "Huge Mantis Shrimp", + 15, ], [ - "Huge Mr Krabs", - 1.25, + "Huge Pixie Fox", + 4, ], [ - "Huge Patrick Star", - 0.7, + "Huge Umbrella Cat", + 1, ], [ - "Titanic SpongeBob SquarePants", - 0.05, + "Titanic Butterfly", + 0.25, ], ], - "productIds": [], "rainbowChance": 2, "rarity": { "Announce": true, @@ -25428,352 +25579,339 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` }, "shinyChance": 2, }, - "configName": "Exclusive Egg 31", + "configName": "Huge Machine Egg 4", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "87d140e7b38b1e59", + "hashShort": "2735111d0db327de", }, { - "category": "Merch Series 3", + "category": "Hacker", "collection": "Eggs", "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "giftCallback": null, - "goldChance": 10, - "icon": "rbxassetid://18652573424", - "name": "Series 3 Basic Gift", + "currency": "VoidCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Virus Egg", + "overrideCost": 8000000, "pets": [ [ - "Inferno Stealth Cat", - 38, + "Hacked Computer", + 100, ], [ - "Inferno Stealth Bobcat", - 35, + "Hacked Skeleton", + 0.01, + "Insane", ], [ - "Inferno Stealth Dragon", - 25, + "Masked Fox", + 0.005, + "Insane", ], [ - "Huge Inferno Stealth Cat", - 2, + "Matrix Monkey", + 0.001, + "Insane", + ], + [ + "Virus Griffin", + 0.000025, + "Insane", + ], + [ + "Huge Virus Griffin", + 0.0000075, + "Insane", ], ], - "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "shinyChance": 2, }, - "configName": "Series 3 Basic Gift", + "configName": "Virus Egg 1x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "9250a332f4efd89d", + "hashShort": "7151ce96eb732bf0", }, { - "category": "Merch Series 3", + "category": "Hacker", "collection": "Eggs", "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "giftCallback": null, - "goldChance": 10, - "icon": "rbxassetid://18652573656", - "name": "Series 3 Epic Gift", + "currency": "VoidCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Virus Egg", + "overrideCost": 8000000, "pets": [ [ - "Tropical Flamingo", - 35, + "Hacked Computer", + 100, ], [ - "Tropical Parrot", - 30, + "Hacked Skeleton", + 0.01, + "Insane", ], [ - "Tropical Toucan", - 20, + "Masked Fox", + 0.005, + "Insane", ], [ - "Huge Tropical Flamingo", - 7.5, + "Matrix Monkey", + 0.001, + "Insane", ], [ - "Huge Tropical Toucan", - 7.5, + "Virus Griffin", + 0.000025, + "Insane", + ], + [ + "Huge Virus Griffin", + 0.000015, + "Insane", ], ], - "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "shinyChance": 2, }, - "configName": "Series 3 Epic Gift", + "configName": "Virus Egg 2x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "75c4eb09b5db2557", + "hashShort": "1d747eaa03a3f972", }, { - "category": "Merch Series 3", + "category": "Hacker", "collection": "Eggs", "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "giftCallback": null, - "goldChance": 10, - "icon": "rbxassetid://18652573925", - "name": "Series 3 Legendary Gift", + "currency": "VoidCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Virus Egg", + "overrideCost": 8000000, "pets": [ [ - "Old Wizard Dragon", - 30, + "Hacked Computer", + 100, ], [ - "Old Wizard Corgi", - 25, + "Hacked Skeleton", + 0.01, + "Insane", ], [ - "Old Wizard Owl", - 20, + "Masked Fox", + 0.005, + "Insane", ], [ - "Huge Tropical Parrot", - 10, + "Matrix Monkey", + 0.001, + "Insane", ], [ - "Huge Old Wizard Corgi", - 10, + "Virus Griffin", + 0.000025, + "Insane", ], [ - "Huge Old Wizard Owl", - 5, + "Huge Virus Griffin", + 0.0000225, + "Insane", ], ], - "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "shinyChance": 2, }, - "configName": "Series 3 Legendary Gift", + "configName": "Virus Egg 3x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "98c9264b58c85090", + "hashShort": "33e4cf765b05a075", }, { - "category": "Merch Series 3", + "category": "Hacker", "collection": "Eggs", "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "giftCallback": null, - "goldChance": 10, - "icon": "rbxassetid://18652574250", - "name": "Series 3 Mythical Gift", + "currency": "VoidCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Virus Egg", + "overrideCost": 8000000, "pets": [ [ - "Huge Inferno Stealth Cat", - 15, - ], - [ - "Huge Inferno Stealth Bobcat", - 15, + "Hacked Computer", + 100, ], [ - "Huge Tropical Flamingo", - 15, + "Hacked Skeleton", + 0.01, + "Insane", ], [ - "Huge Tropical Parrot", - 15, + "Masked Fox", + 0.005, + "Insane", ], [ - "Huge Tropical Toucan", - 15, + "Matrix Monkey", + 0.001, + "Insane", ], [ - "Huge Old Wizard Corgi", - 12.5, + "Virus Griffin", + 0.000025, + "Insane", ], [ - "Huge Old Wizard Owl", - 12.5, + "Huge Virus Griffin", + 0.000037500000000000003, + "Insane", ], ], - "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "shinyChance": 2, }, - "configName": "Series 3 Mythical Gift", + "configName": "Virus Egg 5x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "c521e10b5b0bb665", + "hashShort": "8d8c412f051d7f0c", }, { - "category": "Merch Series 3", + "category": "Hacker", "collection": "Eggs", "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "giftCallback": null, - "goldChance": 10, - "icon": "rbxassetid://18652574448", - "name": "Series 3 Rare Gift", + "currency": "VoidCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Virus Egg", + "overrideCost": 8000000, "pets": [ [ - "Inferno Stealth Bobcat", - 30, + "Hacked Computer", + 100, ], [ - "Inferno Stealth Dragon", - 30, + "Hacked Skeleton", + 0.01, + "Insane", ], [ - "Tropical Flamingo", - 20, + "Masked Fox", + 0.005, + "Insane", ], [ - "Tropical Parrot", - 16, + "Matrix Monkey", + 0.001, + "Insane", ], [ - "Huge Inferno Stealth Cat", - 2, + "Virus Griffin", + 0.000025, + "Insane", ], [ - "Huge Inferno Stealth Bobcat", - 2, + "Huge Virus Griffin", + 0.00007500000000000001, + "Insane", ], ], - "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "shinyChance": 2, }, - "configName": "Series 3 Rare Gift", + "configName": "Virus Egg 10x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "802e6e74899921d3", + "hashShort": "0e8a4e4734ea9824", }, { - "category": "Dino Tycoon", + "category": "Hacker", "collection": "Eggs", "configData": { - "currency": "DinoTycoonCoins", + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Dino Paw Egg", - "overrideCost": 200, + "name": "Virus Egg", + "overrideCost": 8000000, "pets": [ [ - "Dino Dog", - 90, + "Hacked Computer", + 100, ], [ - "Dino Axolotl", - 10, + "Hacked Skeleton", + 0.01, + "Insane", ], [ - "Dino Monkey", - 0.1, - "Nice", + "Masked Fox", + 0.005, + "Insane", ], - ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, - "configName": "1 | Dino Paw Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "ca40f99a152df49a", - }, - { - "category": "Dino Tycoon", - "collection": "Eggs", - "configData": { - "currency": "DinoTycoonCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Jurassic Jungle Egg", - "overrideCost": 1000, - "pets": [ [ - "Dino Axolotl", - 90, + "Matrix Monkey", + 0.001, + "Insane", ], [ - "Dino Monkey", - 10, + "Virus Griffin", + 0.000025, + "Insane", ], [ - "Safari Dog", - 0.1, - "Nice", + "Huge Virus Griffin", + 0.00015000000000000001, + "Insane", ], ], "rarity": { @@ -25789,75 +25927,49 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Jurassic Jungle Egg", + "configName": "Virus Egg 20x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "827b4b9aa71a9c72", + "hashShort": "15283da5e81dbfac", }, { - "category": "Dino Tycoon", + "category": "Hacker", "collection": "Eggs", "configData": { - "currency": "DinoTycoonCoins", + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Clawed Egg", - "overrideCost": 4000, + "name": "Virus Egg", + "overrideCost": 8000000, "pets": [ [ - "Dino Monkey", - 90, + "Hacked Computer", + 100, ], [ - "Safari Dog", - 10, + "Hacked Skeleton", + 0.01, + "Insane", ], [ - "Research Cat", - 0.1, - "Nice", + "Masked Fox", + 0.005, + "Insane", ], - ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, - "configName": "3 | Clawed Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "cea9930331740b62", - }, - { - "category": "Dino Tycoon", - "collection": "Eggs", - "configData": { - "currency": "DinoTycoonCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Dino Cat Egg", - "overrideCost": 8000, - "pets": [ [ - "Safari Dog", - 90, + "Matrix Monkey", + 0.001, + "Insane", ], [ - "Research Cat", - 10, + "Virus Griffin", + 0.000025, + "Insane", ], [ - "Angry Dino", - 0.1, - "Nice", + "Huge Virus Griffin", + 0.0001125, + "Insane", ], ], "rarity": { @@ -25873,42 +25985,48 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Dino Cat Egg", + "configName": "Virus Egg 15x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "1a03b388130c47a9", + "hashShort": "372b619f044a733e", }, { - "category": "Dino Tycoon", + "category": "Hacker", "collection": "Eggs", "configData": { - "currency": "DinoTycoonCoins", + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Nest Egg", - "overrideCost": 16000, + "name": "Virus Egg", + "overrideCost": 8000000, "pets": [ [ - "Research Cat", - 89.05, + "Hacked Computer", + 100, ], [ - "Angry Dino", - 10, + "Hacked Skeleton", + 0.01, + "Insane", ], [ - "Triceratops", - 1, - "Nice", + "Masked Fox", + 0.005, + "Insane", ], [ - "Electric Dino", - 0.005, + "Matrix Monkey", + 0.001, "Insane", ], [ - "Mech Dino", - 0.00005, + "Virus Griffin", + 0.000025, + "Insane", + ], + [ + "Huge Virus Griffin", + 0.0001875, "Insane", ], ], @@ -25925,42 +26043,49 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Nest Egg", + "configName": "Virus Egg 25x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "44c3987717b21ee6", + "hashShort": "b9306b647b6a7edd", }, { - "category": "Dino Tycoon", + "category": "Hacker", "collection": "Eggs", "configData": { - "currency": "DinoTycoonCoins", + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Breakout Egg", - "overrideCost": 32000, + "name": "Virus Egg", + "overrideCost": 8000000, "pets": [ [ - "Electric Dino", - 89, + "Hacked Computer", + 100, ], [ - "Mech Dino", - 7, + "Hacked Skeleton", + 0.01, + "Insane", ], [ - "Egg Dino", - 3, + "Masked Fox", + 0.005, + "Insane", ], [ - "Egg Triceratops", - 1, - "Nice", + "Matrix Monkey", + 0.001, + "Insane", ], [ - "Egg Spitting Dino", - 0.1, - "Nice", + "Virus Griffin", + 0.000025, + "Insane", + ], + [ + "Huge Virus Griffin", + 0.000375, + "Insane", ], ], "rarity": { @@ -25976,80 +26101,49 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "6 | Breakout Egg", + "configName": "Virus Egg 50x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "65aa239582dd051a", + "hashShort": "bb03517f4acd045b", }, { - "category": "Dino Tycoon", + "category": "Hacker", "collection": "Eggs", "configData": { - "currency": "DinoTycoonCoins", + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Cage Egg", - "overrideCost": 64000, + "name": "Virus Egg", + "overrideCost": 8000000, "pets": [ [ - "Egg Triceratops", - 90, - ], - [ - "Egg Spitting Dino", - 10, + "Hacked Computer", + 100, ], [ - "Safari Cat", - 0.1, - "Nice", + "Hacked Skeleton", + 0.01, + "Insane", ], - ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, - "configName": "7 | Cage Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "32bfd1384a9ce610", - }, - { - "category": "Dino Tycoon", - "collection": "Eggs", - "configData": { - "currency": "DinoTycoonCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Dino Lab Egg", - "overrideCost": 128000, - "pets": [ [ - "Egg Spitting Dino", - 90, + "Masked Fox", + 0.005, + "Insane", ], [ - "Safari Cat", - 10, + "Matrix Monkey", + 0.001, + "Insane", ], [ - "Research Dog", - 0.1, - "Nice", + "Virus Griffin", + 0.000025, + "Insane", ], [ - "Stegosaurus", - 0.01, - "Great", + "Huge Virus Griffin", + 0.0005625000000000001, + "Insane", ], ], "rarity": { @@ -26065,47 +26159,48 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "8 | Dino Lab Egg", + "configName": "Virus Egg 75x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "a9f76bf0aa530450", + "hashShort": "f940d723a2867783", }, { - "category": "Dino Tycoon", + "category": "Hacker", "collection": "Eggs", "configData": { - "currency": "DinoTycoonCoins", + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Dino HQ Egg", - "overrideCost": 256000, + "name": "Virus Egg", + "overrideCost": 8000000, "pets": [ [ - "Safari Cat", - 89.05, + "Hacked Computer", + 100, ], [ - "Research Dog", - 10, + "Hacked Skeleton", + 0.01, + "Insane", ], [ - "Stegosaurus", - 1, - "Nice", + "Masked Fox", + 0.005, + "Insane", ], [ - "Raptor", - 0.005, + "Matrix Monkey", + 0.001, "Insane", ], [ - "Hydra Dino", - 0.00005, + "Virus Griffin", + 0.000025, "Insane", ], [ - "Huge Egg Dino", - 1.7142857142857143e-7, + "Huge Virus Griffin", + 0.00075, "Insane", ], ], @@ -26122,10 +26217,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "9 | Dino HQ Egg", + "configName": "Virus Egg 100x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "5dd1c44c32f72593", + "hashShort": "f95054eda8133032", }, { "category": "Exclusive Eggs", @@ -26135,39 +26230,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "disableModifiers": true, "disableRainbow": false, "goldChance": 0, - "icon": "rbxassetid://18883126241", - "name": "Exclusive Classic Egg", + "icon": "rbxassetid://18101456848", + "name": "Exclusive Flex Egg", "pets": [ [ - "Classic Dog", + "Flex Fluffy Cat", 50, ], [ - "Classic Bunny", + "Flex Bear", 35, ], [ - "Classic Dragon", + "Flex Tiger", 13, ], [ - "Huge Classic Dog", + "Huge Flex Fluffy Cat", 1.25, ], [ - "Huge Classic Dragon", + "Huge Flex Tiger", 0.7, ], [ - "Titanic Classic Cat", + "Titanic Flex Cat", 0.05, ], ], "productIds": { - "10 Exclusive Eggs": 1902011783, - "100 Exclusive Eggs": 1902011861, - "3 Exclusive Eggs": 1902011563, - "Exclusive Egg": 1902011439, + "10 Exclusive Eggs": 1853702345, + "100 Exclusive Eggs": 1853702426, + "3 Exclusive Eggs": 1853702238, + "Exclusive Egg": 1853702100, }, "rainbowChance": 2, "rarity": { @@ -26184,104 +26279,76 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` }, "shinyChance": 2, }, - "configName": "Exclusive Egg 32", + "configName": "Exclusive Egg 29", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "9414b662cba17da3", + "hashShort": "4e7039fad99cc4b9", }, { - "category": "Exclusive Eggs", + "category": "Good vs Evil", "collection": "Eggs", "configData": { + "currency": "GoodVsEvilCoins", "disableGold": true, "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://72200617710757", - "name": "Exclusive Luchador Egg", + "disableRainbow": true, + "disableShiny": true, + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Good vs Evil Egg", + "overrideCost": 0, "pets": [ [ - "Luchador Coyote", + "Angel Lamb", 50, ], [ - "Luchador Axolotl", - 35, - ], - [ - "Luchador Eagle", - 13, - ], - [ - "Huge Luchador Coyote", - 1.25, - ], - [ - "Huge Luchador Eagle", - 0.7, - ], - [ - "Titanic Luchador Cat", - 0.05, + "Demon Cat", + 50, ], ], - "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "shinyChance": 2, }, - "configName": "Exclusive Egg 33", + "configName": "Good Vs Evil Team Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "013c7ba2d64c316d", + "hashShort": "b7c652e6c9a45b31", }, { - "category": "Other", + "category": "Evil", "collection": "Eggs", "configData": { - "currency": "VoidCoins", + "currency": "GoodVsEvilCoins", + "egg": null, + "goldenEgg": null, "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Tokyo Alley Egg", - "overrideCost": 10000, + "name": "Overgrown Magma Egg", + "overrideCost": 250, "pets": [ [ - "Chef Monkey", - 99, - ], - [ - "Cupcake Unicorn", - 1, - ], - [ - "Kawaii Dragon", - 0.001, - "Insane", - ], - [ - "Ninja Axolotl", - 0.000375, - "Insane", + "Good vs Evil Cat", + 90, ], [ - "Masked Owl", - 0.000015000000000000002, - "Insane", + "Demon Cat", + 10, ], [ - "Huge Cupcake Unicorn", - 0.000003, - "Insane", + "Evil Ram", + 1, + "Nice", ], ], "rarity": { @@ -26297,230 +26364,227 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Tokyo Alley Egg", + "configName": "Overgrown Magma Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "0e9ffc52eca0c03f", + "hashShort": "c7d4a37ff88358e9", }, { - "category": "Update 26", + "category": "Evil", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "eggNumber": 232, + "currency": "GoodVsEvilCoins", + "egg": null, + "goldenEgg": null, "icon": "rbxassetid://15172355963", - "name": "Sakura Blossom Egg", + "isCustomEgg": true, + "name": "Horned Egg", + "overrideCost": 500, "pets": [ [ - "Kawaii Cat", - 99, + "Demon Cat", + 90, ], [ - "Flower Panda", - 1, - "Nice", + "Evil Ram", + 10, ], [ - "Dino Bear", - 0.1, - "Great", + "Chimera", + 1, + "Nice", ], ], - "worldNumber": 3, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "232 | Sakura Blossom Egg", + "configName": "Horned Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "8221e9c2750d4f9b", + "hashShort": "bdd973a599238f9b", }, { - "category": "Update 26", + "category": "Evil", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "eggNumber": 233, + "currency": "GoodVsEvilCoins", + "egg": null, + "goldenEgg": null, "icon": "rbxassetid://15172355963", - "name": "Dream Egg", + "isCustomEgg": true, + "name": "Evil Dragon Egg", + "overrideCost": 1000, "pets": [ [ - "Flower Panda", + "Evil Ram", 90, ], [ - "Dino Bear", + "Chimera", 10, ], [ - "Sailor Narwhal", + "Evil Imp", 1, "Nice", ], - [ - "Playful Seal", - 0.1, - "Great", - ], - [ - "Seedling Squirrel", - 0.05, - "Insane", - ], ], - "worldNumber": 3, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "233 | Dream Egg", + "configName": "Evil Dragon Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "42bef0cfb86ba64d", + "hashShort": "a3560913effa0e11", }, { - "category": "Update 26", + "category": "Evil", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "eggNumber": 234, + "currency": "GoodVsEvilCoins", + "egg": null, + "goldenEgg": null, "icon": "rbxassetid://15172355963", - "name": "Moonlight Egg", + "isCustomEgg": true, + "name": "Lava Monster Egg", + "overrideCost": 2000, "pets": [ [ - "Playful Seal", + "Chimera", 90, ], [ - "Seedling Squirrel", + "Evil Imp", 10, ], [ - "Kawaii Mushroom Fox", + "Evil Deer", 1, "Nice", ], [ - "Butterfly Llama", - 0.1, - "Great", - ], - [ - "Bread Shiba", - 0.05, - "Great", + "Demon Serpents", + 0.005, + "Insane", ], ], - "worldNumber": 3, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "234 | Moonlight Egg", + "configName": "Lava Monster Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "9e010e7294d46fab", + "hashShort": "3b0dd04ed6639723", }, { - "category": "Update 26", + "category": "Evil", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "eggNumber": 235, - "icon": "rbxassetid://15172355963", - "name": "Strawberry Egg", + "currency": "GoodVsEvilCoins", + "egg": null, + "goldenEgg": null, + "icon": "rbxassetid://18150705084", + "isCustomEgg": true, + "name": "Imp Egg", + "overrideCost": 4000, "pets": [ [ - "Butterfly Llama", + "Evil Imp", 90, ], [ - "Bread Shiba", + "Evil Deer", 10, ], [ - "Strawberry Cow", - 0.5, - "Nice", - ], - [ - "Chef Monkey", - 0.1, - "Great", - ], - [ - "Cupcake Unicorn", + "Demon Serpents", 0.05, "Great", ], - ], - "worldNumber": 3, - }, - "configName": "235 | Strawberry Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "72a22c40f4093f5e", - }, - { - "category": "Update 26", - "collection": "Eggs", - "configData": { - "currency": "VoidCoins", - "eggNumber": 236, - "icon": "rbxassetid://15172355963", - "name": "Kawaii Egg", - "pets": [ - [ - "Chef Monkey", - 99, - ], - [ - "Cupcake Unicorn", - 1, - ], - [ - "Kawaii Dragon", - 0.001, - "Insane", - ], - [ - "Ninja Axolotl", - 0.00025, - "Insane", - ], [ - "Masked Owl", - 0.000025, - "Insane", - ], - [ - "Kawaii Tiger", - 0.0000185, + "Dark Lord", + 0.0001, "Insane", ], [ - "Huge Chef Monkey", - 0.000001, + "Huge Evil Imp", + 0.000006, "Insane", ], ], - "worldNumber": 3, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "236 | Kawaii Egg", + "configName": "Imp Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "5272ceb691a8e4de", + "hashShort": "59d3bd3b98c80e63", }, { - "category": "Color Event", + "category": "Good", "collection": "Eggs", "configData": { - "currency": "ColorCoins", + "currency": "GoodVsEvilCoins", + "egg": null, + "goldenEgg": null, "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Colorful Flowers Egg", + "name": "Blessing Egg", "overrideCost": 250, "pets": [ [ - "Flowers Hedgehog", + "Good vs Evil Cat", 90, ], [ - "Flowers Fox", + "Angel Lamb", 10, ], + [ + "Angel Seal", + 1, + "Nice", + ], ], "rarity": { "Announce": true, @@ -26535,32 +26599,34 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Colorful Flowers Egg", + "configName": "Blessing Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "e9c39d264c5c504f", + "hashShort": "71bbcef775f8b998", }, { - "category": "Color Event", + "category": "Good", "collection": "Eggs", "configData": { - "currency": "ColorCoins", + "currency": "GoodVsEvilCoins", + "egg": null, + "goldenEgg": null, "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Colorful Crystals Egg", + "name": "Divine Floral Egg", "overrideCost": 500, "pets": [ [ - "Flowers Hedgehog", - 70, + "Angel Lamb", + 90, ], [ - "Flowers Fox", - 30, + "Angel Seal", + 10, ], [ - "Gemstone Gargoyle Dragon", - 0.5, + "Heavenly Dove", + 1, "Nice", ], ], @@ -26577,32 +26643,34 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Colorful Crystals Egg", + "configName": "Divine Floral Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "f3d72963f622ddb9", + "hashShort": "6e2c0a7cc76ced23", }, { - "category": "Color Event", + "category": "Good", "collection": "Eggs", "configData": { - "currency": "ColorCoins", + "currency": "GoodVsEvilCoins", + "egg": null, + "goldenEgg": null, "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Colorful Banners Egg", + "name": "Utopia Egg", "overrideCost": 1000, "pets": [ [ - "Gemstone Gargoyle Dragon", + "Angel Seal", 90, ], [ - "Painter Cat", + "Heavenly Dove", 10, ], [ - "Painter Dog", - 0.1, + "Angel Pegasus", + 1, "Nice", ], ], @@ -26619,34 +26687,41 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "3 | Colorful Banners Egg", + "configName": "Utopia Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "bb17a891d5040506", + "hashShort": "7a341b620a8dd572", }, { - "category": "Color Event", + "category": "Good", "collection": "Eggs", "configData": { - "currency": "ColorCoins", + "currency": "GoodVsEvilCoins", + "egg": null, + "goldenEgg": null, "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Colorful Stripes Egg", + "name": "Heavenly Throne Egg", "overrideCost": 2000, "pets": [ [ - "Painter Cat", + "Heavenly Dove", 90, ], [ - "Painter Dog", + "Angel Pegasus", 10, ], [ - "Paintbot Spider", - 0.1, + "Avenging Griffin", + 1, "Nice", ], + [ + "Pentangelus", + 0.005, + "Insane", + ], ], "rarity": { "Announce": true, @@ -26661,37 +26736,44 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Colorful Stripes Egg", + "configName": "Heavenly Throne Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "ae0114255539a17c", + "hashShort": "99a3853aebce59cc", }, { - "category": "Color Event", + "category": "Good", "collection": "Eggs", "configData": { - "currency": "ColorCoins", - "icon": "rbxassetid://92622840787162", + "currency": "GoodVsEvilCoins", + "egg": null, + "goldenEgg": null, + "icon": "rbxassetid://18150705407", "isCustomEgg": true, - "name": "Colorful Spots Egg", + "name": "Angelic Egg", "overrideCost": 4000, "pets": [ [ - "Paintbot Spider", - 99, + "Angel Pegasus", + 90, ], [ - "Abstract Dragon", - 1, + "Avenging Griffin", + 10, ], [ - "Abstract Agony", + "Pentangelus", 0.05, - "Nice", + "Great", ], [ - "Chroma Tiger", - 0.000075, + "Divinus", + 0.0001, + "Insane", + ], + [ + "Huge Avenging Griffin", + 0.000006, "Insane", ], ], @@ -26708,101 +26790,76 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Colorful Spots Egg", + "configName": "Angelic Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "0af2e8d4e9bafbf1", + "hashShort": "b56292b0b70098d3", }, { - "category": "Exclusive Eggs", + "category": "Evil", "collection": "Eggs", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://137130517995200", - "name": "Exclusive Sad Egg", + "currency": "GoodVsEvilCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Overgrown Magma Egg", + "overrideCost": 250, "pets": [ [ - "Sad Doge", - 50, - ], - [ - "Sad Bunny", - 35, - ], - [ - "Sad Hamster", - 13, - ], - [ - "Huge Sad Doge", - 1.25, + "Good vs Evil Cat", + 90, ], [ - "Huge Sad Hamster", - 0.7, + "Demon Cat", + 10, ], [ - "Titanic Sad Cat", - 0.05, + "Evil Ram", + 1, + "Nice", ], ], - "productIds": [], - "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "shinyChance": 2, }, - "configName": "Exclusive Egg 34", + "configName": "1 | Overgrown Magma Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "f28930879c8fa5fc", + "hashShort": "53125fdca02d5118", }, { - "category": "Color Event", + "category": "Evil", "collection": "Eggs", "configData": { - "currency": "ColorCoins", - "icon": "rbxassetid://92622840787162", + "currency": "GoodVsEvilCoins", + "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Colorful Palms Egg", - "overrideCost": 8000, + "name": "Horned Egg", + "overrideCost": 500, "pets": [ [ - "Abstract Agony", + "Demon Cat", 90, ], [ - "Chroma Tiger", + "Evil Ram", 10, ], [ - "Shimmering Fish", - 0.1, + "Chimera", + 1, "Nice", ], - [ - "Shimmering Octopus", - 0.05, - "Insane", - ], - [ - "Color Ruins Parrot", - 0.0001, - "Insane", - ], ], "rarity": { "Announce": true, @@ -26817,48 +26874,34 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "6 | Colorful Palms Egg", + "configName": "2 | Horned Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "47a56bff14882cbe", + "hashShort": "c1777d6b99f5a2dc", }, { - "category": "Color Event", + "category": "Evil", "collection": "Eggs", "configData": { - "currency": "ColorCoins", - "icon": "rbxassetid://92622840787162", + "currency": "GoodVsEvilCoins", + "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Colorful Relics Egg", - "overrideCost": 16000, + "name": "Evil Dragon Egg", + "overrideCost": 1000, "pets": [ [ - "Shimmering Fish", + "Evil Ram", 90, ], [ - "Shimmering Octopus", + "Chimera", 10, ], [ - "Color Ruins Parrot", - 0.1, - ], - [ - "Color Ruins Monkey", - 0.05, + "Evil Imp", + 1, "Nice", ], - [ - "Graffiti Raccoon", - 0.001, - "Insane", - ], - [ - "Graffiti Dino", - 0.0001, - "Insane", - ], ], "rarity": { "Announce": true, @@ -26873,46 +26916,37 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "7 | Colorful Relics Egg", + "configName": "3 | Evil Dragon Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "88f81034d4fcbdfb", + "hashShort": "31e7d268dd1bc9d8", }, { - "category": "Color Event", + "category": "Evil", "collection": "Eggs", "configData": { - "currency": "ColorCoins", - "icon": "rbxassetid://133600279983793", + "currency": "GoodVsEvilCoins", + "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Colorful Graffiti Egg", - "overrideCost": 32000, + "name": "Lava Monster Egg", + "overrideCost": 2000, "pets": [ [ - "Graffiti Raccoon", - 99, - ], - [ - "Graffiti Dino", - 1, + "Chimera", + 90, ], [ - "Painted Balloon", - 0.05, + "Evil Imp", + 10, ], [ - "Painted King Crab", - 0.025, + "Evil Deer", + 1, "Nice", ], [ - "Chroma Phoenix", - 0.000075, - "Insane", - ], - [ - "Huge Chroma Phoenix", - 0.000006, + "Demon Serpents", + 0.005, "Insane", ], ], @@ -26929,337 +26963,220 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "8 | Colorful Graffiti Egg", + "configName": "4 | Lava Monster Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "fe7fd10dddd63a25", + "hashShort": "977f0405aebfbd16", }, { - "category": "Exclusive Eggs", + "category": "Evil", "collection": "Eggs", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://72844454700436", - "name": "Exclusive Soul Egg", + "currency": "GoodVsEvilCoins", + "icon": "rbxassetid://18150705084", + "isCustomEgg": true, + "name": "Imp Egg", + "overrideCost": 4000, "pets": [ [ - "Soul Cat", - 50, - ], - [ - "Soul Bat", - 35, - ], - [ - "Soul Dragon", - 13, + "Evil Imp", + 90, ], [ - "Huge Soul Cat", - 1.25, + "Evil Deer", + 10, ], [ - "Huge Soul Dragon", - 0.7, + "Demon Serpents", + 0.05, + "Great", ], [ - "Titanic Soul Owl", - 0.05, + "Dark Lord", + 0.0001, + "Insane", ], ], - "productIds": { - "10 Exclusive Eggs": 1936849681, - "100 Exclusive Eggs": 1936849731, - "3 Exclusive Eggs": 1936849641, - "Exclusive Egg": 1936849596, - }, - "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "shinyChance": 2, - }, - "configName": "Exclusive Egg 35", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "3225c66a0fe20124", - }, - { - "category": "Update 29", - "collection": "Eggs", - "configData": { - "currency": "VoidCoins", - "eggNumber": 237, - "icon": "rbxassetid://15172355963", - "name": "Grass Type Egg", - "pets": [ - [ - "Grass Bunny", - 99, - ], - [ - "Rock Monkey", - 1, - "Nice", - ], - [ - "Ice Snake", - 0.1, - "Great", - ], - ], - "worldNumber": 3, - }, - "configName": "237 | Grass Type Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "1ee9cfa576468246", - }, - { - "category": "Update 29", - "collection": "Eggs", - "configData": { - "currency": "VoidCoins", - "eggNumber": 238, - "icon": "rbxassetid://15172355963", - "name": "Rock Type Egg", - "pets": [ - [ - "Rock Monkey", - 90, - ], - [ - "Ice Snake", - 10, - ], - [ - "Poison Turtle", - 1, - "Nice", - ], - [ - "Water Zebra", - 0.1, - "Great", - ], - ], - "worldNumber": 3, }, - "configName": "238 | Rock Type Egg", + "configName": "5 | Imp Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "0adc5f8cbc78e08c", + "hashShort": "3261c1964b8670d0", }, { - "category": "Update 29", + "category": "Evil", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "eggNumber": 239, + "currency": "GoodVsEvilCoins", "icon": "rbxassetid://15172355963", - "name": "Water Type Egg", + "isCustomEgg": true, + "name": "Demon Spider Egg", + "overrideCost": 16000, "pets": [ [ - "Poison Turtle", + "Evil Bat", 90, ], [ - "Water Zebra", + "Evil Minotaur", 10, ], [ - "Storm Griffin", + "Hell Scorpion", 1, "Nice", ], - [ - "Electric Penguin", - 0.1, - "Great", - ], ], - "worldNumber": 3, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "239 | Water Type Egg", + "configName": "7 | Demon Spider Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "f1cbe079092a3f7d", + "hashShort": "ce61a3a0bd1c9c7c", }, { - "category": "Update 29", + "category": "Evil", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "eggNumber": 240, - "icon": "rbxassetid://15172355963", - "name": "Electric Type Egg", + "currency": "GoodVsEvilCoins", + "icon": "rbxassetid://18258754427", + "isCustomEgg": true, + "name": "Devil Egg", + "overrideCost": 32000, "pets": [ [ - "Storm Griffin", + "Evil Minotaur", 90, ], [ - "Electric Penguin", + "Hell Scorpion", 10, ], [ - "Psychic Seal", - 1, - "Great", - ], - [ - "Fire Bat", - 0.1, - "Nice", - ], - ], - "worldNumber": 3, - }, - "configName": "240 | Electric Type Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "8bdf844c14286dee", - }, - { - "category": "Update 29", - "collection": "Eggs", - "configData": { - "currency": "VoidCoins", - "eggNumber": 241, - "icon": "rbxassetid://15172355963", - "name": "Fire Type Egg", - "pets": [ - [ - "Psychic Seal", - 99, - ], - [ - "Fire Bat", - 1, - ], - [ - "Dark Dragon", - 0.001, + "Devil Agony", + 0.05, "Great", ], [ - "Ghost Axolotl", - 0.00025, + "Devil Dominus", + 0.0001, "Insane", ], [ - "Elemental Phoenix", - 0.0000185, + "Huge Evil Imp", + 0.000006, "Insane", ], [ - "Huge Electric Penguin", - 0.000001, + "Huge Devil Agony", + 0.000003, "Insane", ], ], - "worldNumber": 3, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "241 | Fire Type Egg", + "configName": "8 | Devil Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "b8c8b1832e587282", + "hashShort": "8bd8f8837e22df57", }, { - "category": "Exclusive Eggs", + "category": "Evil", "collection": "Eggs", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://133438295958475", - "name": "Exclusive Horror Egg", + "currency": "GoodVsEvilCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Chained Egg", + "overrideCost": 8000, "pets": [ [ - "Slasher Sloth", - 50, - ], - [ - "Cannibal Meerkat", - 35, - ], - [ - "Machete Dog", - 13, - ], - [ - "Huge Slasher Sloth", - 1.25, + "Dark Lord", + 90, ], [ - "Huge Machete Dog", - 0.7, + "Demon Dog", + 10, ], [ - "Titanic Ghostface Cat", - 0.05, + "Evil Bat", + 1, + "Nice", ], ], - "productIds": { - "10 Exclusive Eggs": 2317380800, - "100 Exclusive Eggs": 2317380902, - "3 Exclusive Eggs": 2317380699, - "Exclusive Egg": 2317380619, - }, - "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "shinyChance": 2, }, - "configName": "Exclusive Egg 36", + "configName": "6 | Chained Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "cc382ae69be33502", + "hashShort": "6333a356e401f7cf", }, { - "category": "Halloween", + "category": "Good", "collection": "Eggs", "configData": { - "currency": "HalloweenCandy", + "currency": "GoodVsEvilCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Halloween Pumpkin Egg", + "name": "Blessing Egg", "overrideCost": 250, "pets": [ [ - "Albino Bat", + "Good vs Evil Cat", 90, ], [ - "Pumpkin Cat", + "Angel Lamb", 10, ], [ - "Zombie Deer", - 0.1, + "Angel Seal", + 1, "Nice", ], ], @@ -27276,32 +27193,32 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Halloween Pumpkin Egg", + "configName": "1 | Blessing Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "48c54a22b6ae1d27", + "hashShort": "7aaf756a49ff047d", }, { - "category": "Halloween", + "category": "Good", "collection": "Eggs", "configData": { - "currency": "HalloweenCandy", + "currency": "GoodVsEvilCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Halloween Spooky Egg", + "name": "Divine Floral Egg", "overrideCost": 500, "pets": [ [ - "Pumpkin Cat", + "Angel Lamb", 90, ], [ - "Zombie Deer", + "Angel Seal", 10, ], [ - "Little Melty", - 0.1, + "Heavenly Dove", + 1, "Nice", ], ], @@ -27318,32 +27235,32 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Halloween Spooky Egg", + "configName": "2 | Divine Floral Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "cee05a091db10b9a", + "hashShort": "0169a8ac2be905d7", }, { - "category": "Halloween", + "category": "Good", "collection": "Eggs", "configData": { - "currency": "HalloweenCandy", + "currency": "GoodVsEvilCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Halloween Bat Egg", + "name": "Utopia Egg", "overrideCost": 1000, "pets": [ [ - "Zombie Deer", + "Angel Seal", 90, ], [ - "Little Melty", + "Heavenly Dove", 10, ], [ - "Broomstick Cat", - 0.1, + "Angel Pegasus", + 1, "Nice", ], ], @@ -27360,34 +27277,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "3 | Halloween Bat Egg", + "configName": "3 | Utopia Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "6cdc421f50f18abc", + "hashShort": "00dd9c414b5ac4d2", }, { - "category": "Halloween", + "category": "Good", "collection": "Eggs", "configData": { - "currency": "HalloweenCandy", + "currency": "GoodVsEvilCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Halloween Ghost Egg", + "name": "Heavenly Throne Egg", "overrideCost": 2000, "pets": [ [ - "Little Melty", + "Heavenly Dove", 90, ], [ - "Broomstick Cat", + "Angel Pegasus", 10, ], [ - "Skeleton Cat", - 0.1, + "Avenging Griffin", + 1, "Nice", ], + [ + "Pentangelus", + 0.005, + "Insane", + ], ], "rarity": { "Announce": true, @@ -27402,42 +27324,37 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Halloween Ghost Egg", + "configName": "4 | Heavenly Throne Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "6ecd7130abfc7d0f", + "hashShort": "2013c49476a493d4", }, { - "category": "Halloween", + "category": "Good", "collection": "Eggs", "configData": { - "currency": "HalloweenCandy", - "icon": "rbxassetid://15172355963", + "currency": "GoodVsEvilCoins", + "icon": "rbxassetid://18150705407", "isCustomEgg": true, - "name": "Halloween Cauldron Egg", + "name": "Angelic Egg", "overrideCost": 4000, "pets": [ [ - "Broomstick Cat", - 89.05, + "Angel Pegasus", + 90, ], [ - "Skeleton Cat", + "Avenging Griffin", 10, ], [ - "Glowy the Ghost", - 1, - "Nice", - ], - [ - "Hippokin", - 0.005, - "Insane", + "Pentangelus", + 0.05, + "Great", ], [ - "Pumpkin Scarecrow", - 0.00005, + "Divinus", + 0.0001, "Insane", ], ], @@ -27454,49 +27371,48 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Halloween Cauldron Egg", + "configName": "5 | Angelic Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "f2cc4259431bb715", + "hashShort": "6c6ed5eca78c42da", }, { - "category": "Backrooms", + "category": "Good", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", + "currency": "GoodVsEvilCoins", + "icon": "rbxassetid://18258754192", "isCustomEgg": true, - "name": "Backrooms Jack o Lantern Egg 1x", - "oddsFFlags": { - "Huge Glowy the Ghost": "EggMultiplier_D2", - }, - "overrideCost": 200, + "name": "Majestic Egg", + "overrideCost": 32000, "pets": [ [ - "Albino Bat", - 69.985, + "Angel Moth", + 90, ], [ - "Pumpkin Cat", - 29, + "Angel Pony", + 10, ], [ - "Zombie Deer", - 0.9, + "Sage Axolotl", + 0.05, + "Great", ], [ - "Little Melty", - 0.1, + "Warrior Wolf", + 0.0001, + "Insane", ], [ - "Broomstick Cat", - 0.015, + "Huge Avenging Griffin", + 0.000006, + "Insane", ], [ - "Huge Glowy the Ghost", - 0.000002, + "Huge Sage Axolotl", + 0.000003, + "Insane", ], ], "rarity": { @@ -27512,49 +27428,32 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Backrooms Jack o Lantern Egg 1x", + "configName": "8 | Majestic Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "5289f956f9df62b5", + "hashShort": "fbd74813b754c60a", }, { - "category": "Backrooms", + "category": "Good", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", + "currency": "GoodVsEvilCoins", + "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Backrooms Jack o Lantern Egg 2x", - "oddsFFlags": { - "Huge Glowy the Ghost": "EggMultiplier_D2", - }, - "overrideCost": 200, + "name": "Musical Harp Egg", + "overrideCost": 8000, "pets": [ [ - "Albino Bat", - 69.985, - ], - [ - "Pumpkin Cat", - 29, - ], - [ - "Zombie Deer", - 0.9, - ], - [ - "Little Melty", - 0.1, + "Divinus", + 90, ], [ - "Broomstick Cat", - 0.015, + "Archangel Cat", + 10, ], [ - "Huge Glowy the Ghost", - 0.000004, + "Angel Fawn", + 1, ], ], "rarity": { @@ -27570,49 +27469,33 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Backrooms Jack o Lantern Egg 2x", + "configName": "6 | Musical Harp Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "d8b2167f53875696", + "hashShort": "91ab43f93c9cc979", }, { - "category": "Backrooms", + "category": "Good", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", + "currency": "GoodVsEvilCoins", + "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Backrooms Jack o Lantern Egg 3x", - "oddsFFlags": { - "Huge Glowy the Ghost": "EggMultiplier_D2", - }, - "overrideCost": 200, + "name": "Avenging Egg", + "overrideCost": 16000, "pets": [ [ - "Albino Bat", - 69.985, - ], - [ - "Pumpkin Cat", - 29, - ], - [ - "Zombie Deer", - 0.9, - ], - [ - "Little Melty", - 0.1, + "Angel Fawn", + 90, ], [ - "Broomstick Cat", - 0.015, + "Angel Moth", + 10, ], [ - "Huge Glowy the Ghost", - 0.000006, + "Angel Pony", + 1, + "Nice", ], ], "rarity": { @@ -27628,49 +27511,32 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Backrooms Jack o Lantern Egg 3x", + "configName": "7 | Avenging Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "bbaa8b95b76c0e26", + "hashShort": "2e770d87eefc10dd", }, { - "category": "Backrooms", + "category": "Good vs Evil", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", + "currency": "Diamonds", + "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Backrooms Cyclops Egg 10x", + "name": "Good vs Evil Diamond Egg", "oddsFFlags": { - "Huge Glowy the Ghost": "EggMultiplier_D2", + "Huge Good vs Evil Dragon": "EggMultiplier_D1", }, - "overrideCost": 250, + "overrideCost": 50, "pets": [ [ - "Pumpkin Cat", - 80.4325, - ], - [ - "Zombie Deer", - 19, - ], - [ - "Little Melty", - 0.5, - ], - [ - "Broomstick Cat", - 0.06, - ], - [ - "Skeleton Cat", - 0.0075, + "Good vs Evil Dragon", + 100.0501, ], [ - "Huge Glowy the Ghost", - 0.00002, + "Huge Good vs Evil Dragon", + 0.000012, + "Insane", ], ], "rarity": { @@ -27686,49 +27552,33 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Backrooms Cyclops Egg 10x", + "configName": "Good vs Evil Diamond Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "e64b7271ee63f470", + "hashShort": "c1cb7a6d00d7914a", }, { - "category": "Backrooms", + "category": "Rave", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", + "currency": "RaveCoins", + "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Backrooms Cyclops Egg 15x", - "oddsFFlags": { - "Huge Glowy the Ghost": "EggMultiplier_D2", - }, + "name": "DJ Egg", "overrideCost": 250, "pets": [ [ - "Pumpkin Cat", - 80.4325, - ], - [ - "Zombie Deer", - 19, - ], - [ - "Little Melty", - 0.5, - ], - [ - "Broomstick Cat", - 0.06, + "UV Cat", + 99, ], [ - "Skeleton Cat", - 0.0075, + "Rave Corgi", + 1, ], [ - "Huge Glowy the Ghost", - 0.00003, + "DJ Panda", + 0.01, + "Great", ], ], "rarity": { @@ -27744,49 +27594,34 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Backrooms Cyclops Egg 15x", + "configName": "1 | DJ Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "c11dec62193321da", + "hashShort": "da360801d00d428c", }, { - "category": "Backrooms", + "category": "Rave", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", + "currency": "RaveCoins", + "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Backrooms Cyclops Egg 5x", - "oddsFFlags": { - "Huge Glowy the Ghost": "EggMultiplier_D2", - }, - "overrideCost": 250, + "name": "Rhythm Egg", + "overrideCost": 500, "pets": [ [ - "Pumpkin Cat", - 80.4325, - ], - [ - "Zombie Deer", - 19, - ], - [ - "Little Melty", - 0.5, - ], - [ - "Broomstick Cat", - 0.06, + "Rave Corgi", + 99, ], [ - "Skeleton Cat", - 0.0075, + "DJ Panda", + 1, + "Nice", ], [ - "Huge Glowy the Ghost", - 0.00001, + "Rave Troll", + 0.01, + "Great", ], ], "rarity": { @@ -27802,53 +27637,34 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Backrooms Cyclops Egg 5x", + "configName": "2 | Rhythm Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "a0bda97a82886298", + "hashShort": "e4bf4be044c6241d", }, { - "category": "Backrooms", + "category": "Rave", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", + "currency": "RaveCoins", + "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Backrooms Ghostface Egg 20x", - "oddsFFlags": { - "Huge Glowy the Ghost": "EggMultiplier_D2", - }, - "overrideCost": 300, + "name": "Electronic Egg", + "overrideCost": 1000, "pets": [ [ - "Glowy the Ghost", - 82.463, - ], - [ - "Hippokin", - 17, - ], - [ - "Evil Wolverine", - 0.4, - ], - [ - "Tarantula", - 0.1, - ], - [ - "Mummy Bunny", - 0.03, + "DJ Panda", + 99, ], [ - "Reaper Cat", - 0.007, + "Rave Troll", + 1, + "Nice", ], [ - "Huge Glowy the Ghost", - 0.00004, + "Rave Bunny", + 0.01, + "Great", ], ], "rarity": { @@ -27864,53 +27680,38 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "3 | Backrooms Ghostface Egg 20x", + "configName": "3 | Electronic Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "8d6a918d484aec2c", + "hashShort": "a1071cfeadae5092", }, { - "category": "Backrooms", + "category": "Rave", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", + "currency": "RaveCoins", + "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Backrooms Ghostface Egg 25x", - "oddsFFlags": { - "Huge Glowy the Ghost": "EggMultiplier_D2", - }, - "overrideCost": 300, + "name": "Disco Egg", + "overrideCost": 2000, "pets": [ [ - "Glowy the Ghost", - 82.463, - ], - [ - "Hippokin", - 17, - ], - [ - "Evil Wolverine", - 0.4, - ], - [ - "Tarantula", - 0.1, + "Rave Troll", + 99, ], [ - "Mummy Bunny", - 0.03, + "Rave Bunny", + 1, ], [ - "Reaper Cat", - 0.007, + "UV Kitsune", + 0.05, + "Great", ], [ - "Huge Glowy the Ghost", - 0.00005, + "Rave Meebo in a Spaceship", + 0.000075, + "Insane", ], ], "rarity": { @@ -27926,115 +27727,94 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "3 | Backrooms Ghostface Egg 25x", + "configName": "4 | Disco Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "04d85e42cbbc35c5", + "hashShort": "51226e93941c170a", }, { - "category": "Backrooms", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", - "isCustomEgg": true, - "name": "Backrooms Ghostface Egg 30x", - "oddsFFlags": { - "Huge Glowy the Ghost": "EggMultiplier_D2", - }, - "overrideCost": 300, + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://18465449444", + "name": "Exclusive Valkyrie Egg", "pets": [ [ - "Glowy the Ghost", - 82.463, - ], - [ - "Hippokin", - 17, + "Valkyrie Dog", + 50, ], [ - "Evil Wolverine", - 0.4, + "Valkyrie Dragon", + 35, ], [ - "Tarantula", - 0.1, + "Valkyrie Wolf", + 13, ], [ - "Mummy Bunny", - 0.03, + "Huge Valkyrie Dog", + 1.25, ], [ - "Reaper Cat", - 0.007, + "Huge Valkyrie Wolf", + 0.7, ], [ - "Huge Glowy the Ghost", - 0.00006, + "Titanic Valkyrie Pegasus", + 0.05, ], ], + "productIds": { + "10 Exclusive Eggs": 1874313205, + "100 Exclusive Eggs": 1874313337, + "3 Exclusive Eggs": 1874313122, + "Exclusive Egg": 1874312994, + }, + "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "shinyChance": 2, }, - "configName": "3 | Backrooms Ghostface Egg 30x", + "configName": "Exclusive Egg 30", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "130ef1f81551c594", + "hashShort": "025da0b9bb2ee802", }, { - "category": "Backrooms", + "category": "Rave", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", + "currency": "RaveCoins", + "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Backrooms Clown Egg 100x", - "oddsFFlags": { - "Huge Glowy the Ghost": "EggMultiplier_D2", - }, - "overrideCost": 500, + "name": "Neon Swirl Egg", + "overrideCost": 8000, "pets": [ [ - "Evil Wolverine", - 86.585, - ], - [ - "Tarantula", - 13, - ], - [ - "Mummy Bunny", - 0.32, - ], - [ - "Reaper Cat", - 0.07, - ], - [ - "Vampire Dragon", - 0.02, + "UV Kitsune", + 99, ], [ - "Abomination", - 0.001, + "Rave Meebo in a Spaceship", + 1, ], [ - "Huge Glowy the Ghost", - 0.0002, + "Rave Cat", + 0.01, ], ], "rarity": { @@ -28050,53 +27830,32 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Backrooms Clown Egg 100x", + "configName": "5 | Neon Swirl Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "f48d77d976ca9664", + "hashShort": "93ca2bc9c418fe37", }, { - "category": "Backrooms", + "category": "Rave", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", + "currency": "RaveCoins", + "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Backrooms Clown Egg 50x", - "oddsFFlags": { - "Huge Glowy the Ghost": "EggMultiplier_D2", - }, - "overrideCost": 500, + "name": "Rave Punk Egg", + "overrideCost": 32000, "pets": [ [ - "Evil Wolverine", - 86.585, - ], - [ - "Tarantula", - 13, - ], - [ - "Mummy Bunny", - 0.32, - ], - [ - "Reaper Cat", - 0.07, - ], - [ - "Vampire Dragon", - 0.02, + "Rave Meebo in a Spaceship", + 99, ], [ - "Abomination", - 0.001, + "Rave Cat", + 1, ], [ - "Huge Glowy the Ghost", - 0.0001, + "Rave Axolotl", + 0.01, ], ], "rarity": { @@ -28112,53 +27871,49 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Backrooms Clown Egg 50x", + "configName": "6 | Rave Punk Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "b0ca24f711a822e5", + "hashShort": "c5b6606e116c0c7f", }, { - "category": "Backrooms", + "category": "Rave", "collection": "Eggs", "configData": { - "currency": "BackroomsCoins", - "egg": null, - "goldenEgg": null, - "icon": "", + "currency": "RaveCoins", + "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Backrooms Clown Egg 75x", - "oddsFFlags": { - "Huge Glowy the Ghost": "EggMultiplier_D2", - }, - "overrideCost": 500, + "name": "Festival Speaker Egg", + "overrideCost": 128000, "pets": [ [ - "Evil Wolverine", - 86.585, + "Rave Cat", + 89, ], [ - "Tarantula", - 13, + "Rave Axolotl", + 10, ], [ - "Mummy Bunny", - 0.32, + "Rave Jaguar", + 1, ], [ - "Reaper Cat", - 0.07, + "Rave Unicorn", + 0.05, ], [ - "Vampire Dragon", - 0.02, + "Rave Butterfly", + 0.005, ], [ - "Abomination", - 0.001, + "Disco Ball Dragon", + 0.00005, ], [ - "Huge Glowy the Ghost", - 0.00015, + "Huge Rave Butterfly", + 0.000006, + "Insane", ], ], "rarity": { @@ -28174,153 +27929,191 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Backrooms Clown Egg 75x", + "configName": "7 | Festival Speaker Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "17c26feb39e3b17e", + "hashShort": "0f451b6a49faba07", }, { - "category": "Halloween", + "category": "Update 21", "collection": "Eggs", "configData": { - "currency": "HalloweenCandy", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Halloween Cobweb Egg", - "overrideCost": 8000, + "currency": "VoidCoins", + "eggNumber": 227, + "goldenThumbnail": "rbxassetid://91628760135446", + "icon": "rbxassetid://133425168144935", + "name": "Growing Egg", "pets": [ [ - "Pumpkin Scarecrow", - 90, + "Humble Hen", + 99, ], [ - "Evil Wolverine", - 10, + "Humble Rabbit", + 1, + "Nice", ], [ - "Tarantula", - 1, + "Fortress Dog", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 3, }, - "configName": "6 | Halloween Cobweb Egg", + "configName": "227 | Growing Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "ab4eed47665e255c", + "dateModified": "2026-04-18T15:56:37.182Z", + "hashShort": "29d1d116cb49b865", }, { - "category": "Halloween", + "category": "Update 21", "collection": "Eggs", "configData": { - "currency": "HalloweenCandy", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Halloween Scythe Egg", - "overrideCost": 16000, + "currency": "VoidCoins", + "eggNumber": 228, + "goldenThumbnail": "rbxassetid://124433637693908", + "icon": "rbxassetid://130412058554363", + "name": "Sturdy Egg", "pets": [ [ - "Tarantula", + "Humble Rabbit", 90, ], [ - "Mummy Bunny", + "Fortress Dog", 10, ], [ - "Reaper Cat", + "Fortress Owl", 1, "Nice", ], + [ + "Pristine Snake", + 0.1, + "Great", + ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 3, }, - "configName": "7 | Halloween Scythe Egg", + "configName": "228 | Sturdy Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "4aafc7083c0db11f", + "dateModified": "2026-04-18T15:56:37.184Z", + "hashShort": "d6be44b16e8ff8ac", }, { - "category": "Halloween", + "category": "Update 21", "collection": "Eggs", "configData": { - "currency": "HalloweenCandy", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Halloween Coffin Egg", - "oddsFFlags": { - "Titanic Pumpkin Cat": "EggMultiplier_D3", - }, - "overrideCost": 32000, + "currency": "VoidCoins", + "eggNumber": 229, + "goldenThumbnail": "rbxassetid://70848815536815", + "icon": "rbxassetid://120074731000277", + "name": "Established Egg", "pets": [ [ - "Mummy Bunny", + "Fortress Owl", 90, ], [ - "Reaper Cat", + "Pristine Snake", 10, ], [ - "Vampire Dragon", - 0.05, + "Pristine Poodle", + 1, + "Nice", + ], + [ + "Treasure Turtle", + 0.1, + "Great", + ], + ], + "worldNumber": 3, + }, + "configName": "229 | Established Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:37.191Z", + "hashShort": "7bb3b66975f9df8b", + }, + { + "category": "Update 21", + "collection": "Eggs", + "configData": { + "currency": "VoidCoins", + "eggNumber": 230, + "goldenThumbnail": "rbxassetid://95706001100523", + "icon": "rbxassetid://112789294486347", + "name": "Elegant Egg", + "pets": [ + [ + "Pristine Poodle", + 90, + ], + [ + "Treasure Turtle", + 10, + ], + [ + "Elegant Eagle", + 1, + "Nice", + ], + [ + "Diamond Dragon", + 0.1, "Great", ], + ], + "worldNumber": 3, + }, + "configName": "230 | Elegant Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:37.183Z", + "hashShort": "a107d72bdddd6d8e", + }, + { + "category": "Update 21", + "collection": "Eggs", + "configData": { + "currency": "VoidCoins", + "eggNumber": 231, + "goldenThumbnail": "rbxassetid://82987572094000", + "icon": "rbxassetid://102932546031574", + "name": "Luxe Egg", + "pets": [ + [ + "Elegant Eagle", + 99, + ], [ - "Abomination", - 0.0001, + "Diamond Dragon", + 1, + ], + [ + "Luxe Axolotl", + 0.001, "Insane", ], [ - "Huge Abomination", - 0.000006, + "Luxe Peacock", + 0.000025, "Insane", ], [ - "Titanic Pumpkin Cat", - 1.5e-7, + "Huge Pristine Snake", + 5e-7, "Insane", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 3, }, - "configName": "8 | Halloween Coffin Egg", + "configName": "231 | Luxe Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "7d07b7d851d79605", + "dateModified": "2026-04-18T15:56:37.207Z", + "hashShort": "d5e0d66761e677ea", }, { "category": "Exclusive Eggs", @@ -28330,40 +28123,35 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "disableModifiers": true, "disableRainbow": false, "goldChance": 0, - "icon": "rbxassetid://92993491169749", - "name": "Exclusive Cartoon Egg", + "icon": "rbxassetid://18673507287", + "name": "Exclusive SpongeBob Egg", "pets": [ [ - "Cartoon Bunny", + "Mr Krabs", 50, ], [ - "Cartoon Corgi", + "Gary the Snail", 35, ], [ - "Cartoon Demon", + "Patrick Star", 13, ], [ - "Huge Cartoon Bunny", + "Huge Mr Krabs", 1.25, ], [ - "Huge Cartoon Demon", + "Huge Patrick Star", 0.7, ], [ - "Titanic Cartoon Cat", + "Titanic SpongeBob SquarePants", 0.05, ], ], - "productIds": { - "10 Exclusive Eggs": 2650803388, - "100 Exclusive Eggs": 2650803422, - "3 Exclusive Eggs": 2650803313, - "Exclusive Egg": 2650803236, - }, + "productIds": [], "rainbowChance": 2, "rarity": { "Announce": true, @@ -28379,263 +28167,310 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` }, "shinyChance": 2, }, - "configName": "Exclusive Egg 37", + "configName": "Exclusive Egg 31", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "4ebb46e9132525a2", + "hashShort": "87d140e7b38b1e59", }, { - "category": "Update 32", + "category": "Merch Series 3", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "eggNumber": 242, - "icon": "rbxassetid://15172355963", - "name": "Elysium Egg", + "disableGold": false, + "disableModifiers": true, + "disableRainbow": false, + "giftCallback": null, + "goldChance": 10, + "icon": "rbxassetid://18652573424", + "name": "Series 3 Basic Gift", "pets": [ [ - "Sacred Boar", - 99, + "Inferno Stealth Cat", + 38, ], [ - "Sacred Deer", - 1, - "Nice", + "Inferno Stealth Bobcat", + 35, ], [ - "Ocean Horse", - 0.1, - "Great", + "Inferno Stealth Dragon", + 25, + ], + [ + "Huge Inferno Stealth Cat", + 2, ], ], - "worldNumber": 3, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "242 | Elysium Egg", + "configName": "Series 3 Basic Gift", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "749f611fb80d57d7", + "hashShort": "9250a332f4efd89d", }, { - "category": "Update 32", + "category": "Merch Series 3", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "eggNumber": 243, - "icon": "rbxassetid://15172355963", - "name": "Paradise Egg", + "disableGold": false, + "disableModifiers": true, + "disableRainbow": false, + "giftCallback": null, + "goldChance": 10, + "icon": "rbxassetid://18652573656", + "name": "Series 3 Epic Gift", "pets": [ [ - "Sacred Deer", - 90, + "Tropical Flamingo", + 35, ], [ - "Ocean Horse", - 10, + "Tropical Parrot", + 30, ], [ - "Apollo Raven", - 0.5, - "Great", + "Tropical Toucan", + 20, + ], + [ + "Huge Tropical Flamingo", + 7.5, + ], + [ + "Huge Tropical Toucan", + 7.5, ], ], - "worldNumber": 3, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "243 | Paradise Egg", + "configName": "Series 3 Epic Gift", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "b267eb59e6ff8655", + "hashShort": "75c4eb09b5db2557", }, { - "category": "Update 32", + "category": "Merch Series 3", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "eggNumber": 244, - "icon": "rbxassetid://15172355963", - "name": "Lost Library Egg", + "disableGold": false, + "disableModifiers": true, + "disableRainbow": false, + "giftCallback": null, + "goldChance": 10, + "icon": "rbxassetid://18652573925", + "name": "Series 3 Legendary Gift", "pets": [ [ - "Ocean Horse", - 90, + "Old Wizard Dragon", + 30, ], [ - "Apollo Raven", - 10, + "Old Wizard Corgi", + 25, ], [ - "Trojan Horse", - 1, - "Nice", + "Old Wizard Owl", + 20, ], - ], - "worldNumber": 3, - }, - "configName": "244 | Lost Library Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "4696bd60fae6a4b7", - }, - { - "category": "Update 32", - "collection": "Eggs", - "configData": { - "currency": "VoidCoins", - "eggNumber": 245, - "icon": "rbxassetid://15172355963", - "name": "Nebula Egg", - "pets": [ [ - "Apollo Raven", - 90, + "Huge Tropical Parrot", + 10, ], [ - "Trojan Horse", + "Huge Old Wizard Corgi", 10, ], [ - "Athena Owl", - 0.25, - "Great", + "Huge Old Wizard Owl", + 5, ], ], - "worldNumber": 3, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "245 | Nebula Egg", + "configName": "Series 3 Legendary Gift", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "21cb93e9f1b358b8", + "hashShort": "98c9264b58c85090", }, { - "category": "Update 32", + "category": "Merch Series 3", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "eggNumber": 246, - "icon": "rbxassetid://15172355963", - "name": "Colosseum Egg", + "disableGold": false, + "disableModifiers": true, + "disableRainbow": false, + "giftCallback": null, + "goldChance": 10, + "icon": "rbxassetid://18652574250", + "name": "Series 3 Mythical Gift", "pets": [ [ - "Trojan Horse", - 99, + "Huge Inferno Stealth Cat", + 15, ], [ - "Athena Owl", - 1, + "Huge Inferno Stealth Bobcat", + 15, ], [ - "Artemis Bear", - 0.001, - "Great", + "Huge Tropical Flamingo", + 15, ], [ - "Gorgon", - 0.00025, - "Insane", + "Huge Tropical Parrot", + 15, ], [ - "Zeus Bull", - 0.0000185, - "Insane", + "Huge Tropical Toucan", + 15, ], [ - "Huge Gorgon", - 0.000001, - "Insane", + "Huge Old Wizard Corgi", + 12.5, + ], + [ + "Huge Old Wizard Owl", + 12.5, ], ], - "worldNumber": 3, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "246 | Colosseum Egg", + "configName": "Series 3 Mythical Gift", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "95a7357ed457e09b", + "hashShort": "c521e10b5b0bb665", }, { - "category": "Line For Huge", + "category": "Merch Series 3", "collection": "Eggs", "configData": { - "currency": "LineCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "maxNumPerAction": 1, - "name": "Line Egg", - "oddsFFlags": { - "Huge Student Corgi": "EggMultiplier_D4", - }, - "overrideCost": 0, + "disableGold": false, + "disableModifiers": true, + "disableRainbow": false, + "giftCallback": null, + "goldChance": 10, + "icon": "rbxassetid://18652574448", + "name": "Series 3 Rare Gift", "pets": [ [ - "Coach Tiger", - 89.7245, + "Inferno Stealth Bobcat", + 30, ], [ - "Nurse Shark", - 10, + "Inferno Stealth Dragon", + 30, ], [ - "Librarian Beaver", - 0.25, + "Tropical Flamingo", + 20, ], [ - "Principal Anteater", - 0.025, + "Tropical Parrot", + 16, ], [ - "Huge Student Corgi", - 0.0005, + "Huge Inferno Stealth Cat", + 2, + ], + [ + "Huge Inferno Stealth Bobcat", + 2, ], ], + "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "shinyChance": 2, }, - "configName": "Line Egg 1", + "configName": "Series 3 Rare Gift", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "706d67040bd5233c", + "hashShort": "802e6e74899921d3", }, { - "category": "Line For Huge", + "category": "Dino Tycoon", "collection": "Eggs", "configData": { - "currency": "LineCoins", + "currency": "DinoTycoonCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "maxNumPerAction": 1, - "name": "Line Egg", - "oddsFFlags": { - "Huge Student Corgi": "EggMultiplier_D4", - }, - "overrideCost": 0, + "name": "Dino Paw Egg", + "overrideCost": 200, "pets": [ [ - "Coach Tiger", - 94.8623, - ], - [ - "Nurse Shark", - 5, - ], - [ - "Librarian Beaver", - 0.125, + "Dino Dog", + 90, ], [ - "Principal Anteater", - 0.0125, + "Dino Axolotl", + 10, ], [ - "Huge Student Corgi", - 0.0002, + "Dino Monkey", + 0.1, + "Nice", ], ], "rarity": { @@ -28651,44 +28486,33 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Line Egg 2", + "configName": "1 | Dino Paw Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "0e652d79c6b4168f", + "hashShort": "ca40f99a152df49a", }, { - "category": "Line For Huge", + "category": "Dino Tycoon", "collection": "Eggs", "configData": { - "currency": "LineCoins", + "currency": "DinoTycoonCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "maxNumPerAction": 1, - "name": "Line Egg", - "oddsFFlags": { - "Huge Student Corgi": "EggMultiplier_D4", - }, - "overrideCost": 0, + "name": "Jurassic Jungle Egg", + "overrideCost": 1000, "pets": [ [ - "Student Corgi", - 78.89985, - ], - [ - "Coach Tiger", - 20, + "Dino Axolotl", + 90, ], [ - "Nurse Shark", - 1, + "Dino Monkey", + 10, ], [ - "Librarian Beaver", + "Safari Dog", 0.1, - ], - [ - "Huge Student Corgi", - 0.00015, + "Nice", ], ], "rarity": { @@ -28704,44 +28528,33 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Line Egg 3", + "configName": "2 | Jurassic Jungle Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "104b7525c34a4c08", + "hashShort": "827b4b9aa71a9c72", }, { - "category": "Line For Huge", + "category": "Dino Tycoon", "collection": "Eggs", "configData": { - "currency": "LineCoins", + "currency": "DinoTycoonCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "maxNumPerAction": 1, - "name": "Line Egg", - "oddsFFlags": { - "Huge Student Corgi": "EggMultiplier_D4", - }, - "overrideCost": 0, + "name": "Clawed Egg", + "overrideCost": 4000, "pets": [ [ - "Student Corgi", - 89.4499, + "Dino Monkey", + 90, ], [ - "Coach Tiger", + "Safari Dog", 10, ], [ - "Nurse Shark", - 0.5, - ], - [ - "Librarian Beaver", - 0.05, - ], - [ - "Huge Student Corgi", - 0.0001, + "Research Cat", + 0.1, + "Nice", ], ], "rarity": { @@ -28757,44 +28570,33 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Line Egg 4", + "configName": "3 | Clawed Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "67568b1162c46f91", + "hashShort": "cea9930331740b62", }, { - "category": "Line For Huge", + "category": "Dino Tycoon", "collection": "Eggs", "configData": { - "currency": "LineCoins", + "currency": "DinoTycoonCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "maxNumPerAction": 1, - "name": "Line Egg", - "oddsFFlags": { - "Huge Student Corgi": "EggMultiplier_D4", - }, - "overrideCost": 0, + "name": "Dino Cat Egg", + "overrideCost": 8000, "pets": [ [ - "Student Corgi", - 94.72492, - ], - [ - "Coach Tiger", - 5, - ], - [ - "Nurse Shark", - 0.25, + "Safari Dog", + 90, ], [ - "Librarian Beaver", - 0.025, + "Research Cat", + 10, ], [ - "Huge Student Corgi", - 0.00008, + "Angry Dino", + 0.1, + "Nice", ], ], "rarity": { @@ -28810,44 +28612,43 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Line Egg 5", + "configName": "4 | Dino Cat Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "0b9cf5fe9d6df42c", + "hashShort": "1a03b388130c47a9", }, { - "category": "Line For Huge", + "category": "Dino Tycoon", "collection": "Eggs", "configData": { - "currency": "LineCoins", + "currency": "DinoTycoonCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "maxNumPerAction": 1, - "name": "Line Egg", - "oddsFFlags": { - "Huge Student Corgi": "EggMultiplier_D4", - }, - "overrideCost": 0, + "name": "Nest Egg", + "overrideCost": 16000, "pets": [ [ - "Teacher Cat", - 78.89995, + "Research Cat", + 89.05, ], [ - "Student Corgi", - 20, + "Angry Dino", + 10, ], [ - "Coach Tiger", + "Triceratops", 1, + "Nice", ], [ - "Nurse Shark", - 0.1, + "Electric Dino", + 0.005, + "Insane", ], [ - "Huge Student Corgi", + "Mech Dino", 0.00005, + "Insane", ], ], "rarity": { @@ -28863,44 +28664,42 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Line Egg 6", + "configName": "5 | Nest Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "a8105494faabaf62", + "hashShort": "44c3987717b21ee6", }, { - "category": "Line For Huge", + "category": "Dino Tycoon", "collection": "Eggs", "configData": { - "currency": "LineCoins", + "currency": "DinoTycoonCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "maxNumPerAction": 1, - "name": "Line Egg", - "oddsFFlags": { - "Huge Student Corgi": "EggMultiplier_D4", - }, - "overrideCost": 0, + "name": "Breakout Egg", + "overrideCost": 32000, "pets": [ [ - "Teacher Cat", - 89.44996, + "Electric Dino", + 89, ], [ - "Student Corgi", - 10, + "Mech Dino", + 7, ], [ - "Coach Tiger", - 0.5, + "Egg Dino", + 3, ], [ - "Nurse Shark", - 0.05, + "Egg Triceratops", + 1, + "Nice", ], [ - "Huge Student Corgi", - 0.00004, + "Egg Spitting Dino", + 0.1, + "Nice", ], ], "rarity": { @@ -28916,44 +28715,33 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Line Egg 7", + "configName": "6 | Breakout Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "f2fdf61d5a5110b8", + "hashShort": "65aa239582dd051a", }, { - "category": "Line For Huge", + "category": "Dino Tycoon", "collection": "Eggs", "configData": { - "currency": "LineCoins", + "currency": "DinoTycoonCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "maxNumPerAction": 1, - "name": "Line Egg", - "oddsFFlags": { - "Huge Student Corgi": "EggMultiplier_D4", - }, - "overrideCost": 0, + "name": "Cage Egg", + "overrideCost": 64000, "pets": [ [ - "Teacher Cat", - 89.44997, + "Egg Triceratops", + 90, ], [ - "Student Corgi", + "Egg Spitting Dino", 10, ], [ - "Coach Tiger", - 0.5, - ], - [ - "Nurse Shark", - 0.05, - ], - [ - "Huge Student Corgi", - 0.00003, + "Safari Cat", + 0.1, + "Nice", ], ], "rarity": { @@ -28969,40 +28757,38 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Line Egg 8", + "configName": "7 | Cage Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "2503fae2ba8a24f1", + "hashShort": "32bfd1384a9ce610", }, { - "category": "Line For Huge", + "category": "Dino Tycoon", "collection": "Eggs", "configData": { - "currency": "LineCoins", + "currency": "DinoTycoonCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "maxNumPerAction": 1, - "name": "Line Egg", - "oddsFFlags": { - "Huge Student Corgi": "EggMultiplier_D4", - }, - "overrideCost": 0, + "name": "Dino Lab Egg", + "overrideCost": 128000, "pets": [ [ - "Teacher Cat", - 89.49998, + "Egg Spitting Dino", + 90, ], [ - "Student Corgi", + "Safari Cat", 10, ], [ - "Coach Tiger", - 0.5, + "Research Dog", + 0.1, + "Nice", ], [ - "Huge Student Corgi", - 0.00002, + "Stegosaurus", + 0.01, + "Great", ], ], "rarity": { @@ -29018,40 +28804,48 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Line Egg 9", + "configName": "8 | Dino Lab Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "43557f5d9423a860", + "hashShort": "a9f76bf0aa530450", }, { - "category": "Line For Huge", + "category": "Dino Tycoon", "collection": "Eggs", "configData": { - "currency": "LineCoins", + "currency": "DinoTycoonCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "maxNumPerAction": 1, - "name": "Line Egg", - "oddsFFlags": { - "Huge Student Corgi": "EggMultiplier_D4", - }, - "overrideCost": 0, + "name": "Dino HQ Egg", + "overrideCost": 256000, "pets": [ [ - "Teacher Cat", - 89.49999, + "Safari Cat", + 89.05, ], [ - "Student Corgi", + "Research Dog", 10, ], [ - "Coach Tiger", - 0.5, + "Stegosaurus", + 1, + "Nice", ], [ - "Huge Student Corgi", - 0.00001, + "Raptor", + 0.005, + "Insane", + ], + [ + "Hydra Dino", + 0.00005, + "Insane", + ], + [ + "Huge Egg Dino", + 1.7142857142857143e-7, + "Insane", ], ], "rarity": { @@ -29067,68 +28861,72 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Line Egg 10", + "configName": "9 | Dino HQ Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "58823a047853b832", + "hashShort": "5dd1c44c32f72593", }, { - "category": "Line For Huge", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "LineCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "maxNumPerAction": 1, - "name": "Line Egg", - "oddsFFlags": { - "Huge Teacher Cat": "EggMultiplier_D5", - "Titanic Teacher Cat": "EggMultiplier_D7", - }, - "overrideCost": 0, + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://18883126241", + "name": "Exclusive Classic Egg", "pets": [ [ - "Coach Tiger", - 79.44497515, + "Classic Dog", + 50, ], [ - "Nurse Shark", - 20, + "Classic Bunny", + 35, ], [ - "Librarian Beaver", - 0.5, + "Classic Dragon", + 13, ], [ - "Principal Anteater", - 0.05, + "Huge Classic Dog", + 1.25, ], [ - "Huge Teacher Cat", - 0.005, + "Huge Classic Dragon", + 0.7, ], [ - "Titanic Teacher Cat", - 0.00002485, + "Titanic Classic Cat", + 0.05, ], ], + "productIds": { + "10 Exclusive Eggs": 1902011783, + "100 Exclusive Eggs": 1902011861, + "3 Exclusive Eggs": 1902011563, + "Exclusive Egg": 1902011439, + }, + "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "shinyChance": 2, }, - "configName": "Line Egg Inside", + "configName": "Exclusive Egg 32", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "5fd7f010ad7337db", + "hashShort": "9414b662cba17da3", }, { "category": "Exclusive Eggs", @@ -29138,31 +28936,31 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "disableModifiers": true, "disableRainbow": false, "goldChance": 0, - "icon": "rbxassetid://134908672851123", - "name": "Exclusive Chad Egg", + "icon": "rbxassetid://72200617710757", + "name": "Exclusive Luchador Egg", "pets": [ [ - "Chad Elephant", + "Luchador Coyote", 50, ], [ - "Buff Doge", + "Luchador Axolotl", 35, ], [ - "Chad Bunny", + "Luchador Eagle", 13, ], [ - "Huge Chad Elephant", + "Huge Luchador Coyote", 1.25, ], [ - "Huge Chad Bunny", + "Huge Luchador Eagle", 0.7, ], [ - "Titanic Chad Gorilla", + "Titanic Luchador Cat", 0.05, ], ], @@ -29181,54 +28979,51 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` }, "shinyChance": 2, }, - "configName": "Exclusive Egg 38", + "configName": "Exclusive Egg 33", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "d467960170347547", + "hashShort": "013c7ba2d64c316d", }, { - "category": "Line For Huge", + "category": "Other", "collection": "Eggs", "configData": { - "currency": "LineCoins", + "currency": "VoidCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "maxNumPerAction": 1, - "name": "Line Egg", + "name": "Tokyo Alley Egg", "oddsFFlags": { - "Huge Principal Anteater": "EggMultiplier_D6", - "Huge Teacher Cat": "EggMultiplier_D5", - "Titanic Teacher Cat": "EggMultiplier_D7", + "Huge Cupcake Unicorn": "TokyoAlleyEgg_HugeCupcakeUnicorn", }, - "overrideCost": 0, + "overrideCost": 10000, "pets": [ [ - "Coach Tiger", - 79.44442545, - ], - [ - "Nurse Shark", - 20, + "Chef Monkey", + 99, ], [ - "Librarian Beaver", - 0.5, + "Cupcake Unicorn", + 1, ], [ - "Principal Anteater", - 0.05, + "Kawaii Dragon", + 0.001, + "Insane", ], [ - "Huge Teacher Cat", - 0.005, + "Ninja Axolotl", + 0.000375, + "Insane", ], [ - "Huge Principal Anteater", - 0.0005, + "Masked Owl", + 0.000015000000000000002, + "Insane", ], [ - "Titanic Teacher Cat", - 0.00007455, + "Huge Cupcake Unicorn", + 0.000003, + "Insane", ], ], "rarity": { @@ -29244,125 +29039,242 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Line Egg Secret Inside", + "configName": "Tokyo Alley Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "b91d8eff2d2914fc", + "dateModified": "2026-04-25T17:31:18.343Z", + "hashShort": "50f5b84b5f771101", }, { - "category": "Autumn", + "category": "Update 26", "collection": "Eggs", "configData": { - "currency": "Acorns", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Autumn Egg", - "overrideCost": 250, + "currency": "VoidCoins", + "eggNumber": 232, + "goldenThumbnail": "rbxassetid://82517377454219", + "icon": "rbxassetid://98957156790367", + "name": "Sakura Blossom Egg", "pets": [ [ - "Beagle", - 90, + "Kawaii Cat", + 99, ], [ - "Mouse", - 10, + "Flower Panda", + 1, + "Nice", ], [ - "Beaver", + "Dino Bear", 0.1, - "Nice", + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 3, }, - "configName": "1 | Autumn Egg", + "configName": "232 | Sakura Blossom Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "f67e13a80132b0b9", + "dateModified": "2026-04-18T15:56:37.206Z", + "hashShort": "9ce41294da930c8e", }, { - "category": "Autumn", + "category": "Update 26", "collection": "Eggs", "configData": { - "currency": "Acorns", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Apple Egg", - "overrideCost": 500, + "currency": "VoidCoins", + "eggNumber": 233, + "goldenThumbnail": "rbxassetid://116401942269755", + "icon": "rbxassetid://106575966211550", + "name": "Dream Egg", "pets": [ [ - "Mouse", + "Flower Panda", 90, ], [ - "Beaver", + "Dino Bear", 10, ], [ - "Red Fox", - 0.1, + "Sailor Narwhal", + 1, "Nice", ], + [ + "Playful Seal", + 0.1, + "Great", + ], + [ + "Seedling Squirrel", + 0.05, + "Insane", + ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 3, }, - "configName": "2 | Apple Egg", + "configName": "233 | Dream Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "96903dde10b674d5", + "dateModified": "2026-04-18T15:56:37.205Z", + "hashShort": "584bca67c4a7f2de", }, { - "category": "Autumn", + "category": "Update 26", "collection": "Eggs", "configData": { - "currency": "Acorns", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Scarecrow Egg", - "overrideCost": 1000, + "currency": "VoidCoins", + "eggNumber": 234, + "goldenThumbnail": "rbxassetid://116833942385253", + "icon": "rbxassetid://82653819180800", + "name": "Moonlight Egg", "pets": [ [ - "Beaver", + "Playful Seal", 90, ], [ - "Red Fox", + "Seedling Squirrel", 10, ], [ - "Orange Squirrel", - 0.1, + "Kawaii Mushroom Fox", + 1, "Nice", ], + [ + "Butterfly Llama", + 0.1, + "Great", + ], + [ + "Bread Shiba", + 0.05, + "Great", + ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, + "worldNumber": 3, + }, + "configName": "234 | Moonlight Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:37.230Z", + "hashShort": "665cd58c6282291d", + }, + { + "category": "Update 26", + "collection": "Eggs", + "configData": { + "currency": "VoidCoins", + "eggNumber": 235, + "goldenThumbnail": "rbxassetid://109101627304445", + "icon": "rbxassetid://100804087669558", + "name": "Strawberry Egg", + "pets": [ + [ + "Butterfly Llama", + 90, + ], + [ + "Bread Shiba", + 10, + ], + [ + "Strawberry Cow", + 0.5, + "Nice", + ], + [ + "Chef Monkey", + 0.1, + "Great", + ], + [ + "Cupcake Unicorn", + 0.05, + "Great", + ], + ], + "worldNumber": 3, + }, + "configName": "235 | Strawberry Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:37.194Z", + "hashShort": "44137b67874cadd1", + }, + { + "category": "Update 26", + "collection": "Eggs", + "configData": { + "currency": "VoidCoins", + "eggNumber": 236, + "goldenThumbnail": "rbxassetid://72793130105332", + "icon": "rbxassetid://125587519494825", + "name": "Kawaii Egg", + "pets": [ + [ + "Chef Monkey", + 99, + ], + [ + "Cupcake Unicorn", + 1, + ], + [ + "Kawaii Dragon", + 0.001, + "Insane", + ], + [ + "Ninja Axolotl", + 0.00025, + "Insane", + ], + [ + "Masked Owl", + 0.000025, + "Insane", + ], + [ + "Kawaii Tiger", + 0.0000185, + "Insane", + ], + [ + "Huge Chef Monkey", + 0.000001, + "Insane", + ], + ], + "worldNumber": 3, + }, + "configName": "236 | Kawaii Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:37.193Z", + "hashShort": "3550e465a1c7404b", + }, + { + "category": "Color Event", + "collection": "Eggs", + "configData": { + "currency": "ColorCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Colorful Flowers Egg", + "overrideCost": 250, + "pets": [ + [ + "Flowers Hedgehog", + 90, + ], + [ + "Flowers Fox", + 10, + ], + ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, "Lootbag": null, "Message": null, "RarityNumber": 9, @@ -29370,31 +29282,73 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "3 | Scarecrow Egg", + "configName": "1 | Colorful Flowers Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "a6f0215853d20e4f", + "hashShort": "e9c39d264c5c504f", }, { - "category": "Autumn", + "category": "Color Event", "collection": "Eggs", "configData": { - "currency": "Acorns", + "currency": "ColorCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Campfire Egg", - "overrideCost": 2000, + "name": "Colorful Crystals Egg", + "overrideCost": 500, "pets": [ [ - "Red Fox", + "Flowers Hedgehog", + 70, + ], + [ + "Flowers Fox", + 30, + ], + [ + "Gemstone Gargoyle Dragon", + 0.5, + "Nice", + ], + ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + "configName": "2 | Colorful Crystals Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "f3d72963f622ddb9", + }, + { + "category": "Color Event", + "collection": "Eggs", + "configData": { + "currency": "ColorCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Colorful Banners Egg", + "overrideCost": 1000, + "pets": [ + [ + "Gemstone Gargoyle Dragon", 90, ], [ - "Orange Squirrel", + "Painter Cat", 10, ], [ - "Scarecrow Dog", + "Painter Dog", 0.1, "Nice", ], @@ -29412,51 +29366,79 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Campfire Egg", + "configName": "3 | Colorful Banners Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "7c0e39c4d467e613", + "hashShort": "bb17a891d5040506", }, { - "category": "Autumn", + "category": "Color Event", "collection": "Eggs", "configData": { - "currency": "Acorns", + "currency": "ColorCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Pilgrim Egg", - "oddsFFlags": { - "Corn Cat": "EggMultiplier_E2", - "Huge Scarecrow Dog": "EggMultiplier_E3", - "Pumpkin Spice Cat": "EggMultiplier_E1", - }, - "overrideCost": 4000, + "name": "Colorful Stripes Egg", + "overrideCost": 2000, "pets": [ [ - "Orange Squirrel", + "Painter Cat", 90, ], [ - "Scarecrow Dog", - 9.996776, + "Painter Dog", + 10, ], [ - "Autumn Retriever", - 0.05, + "Paintbot Spider", + 0.1, + "Nice", + ], + ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + "configName": "4 | Colorful Stripes Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "ae0114255539a17c", + }, + { + "category": "Color Event", + "collection": "Eggs", + "configData": { + "currency": "ColorCoins", + "icon": "rbxassetid://92622840787162", + "isCustomEgg": true, + "name": "Colorful Spots Egg", + "overrideCost": 4000, + "pets": [ + [ + "Paintbot Spider", + 99, ], [ - "Pumpkin Spice Cat", - 0.003, - "Great", + "Abstract Dragon", + 1, ], [ - "Corn Cat", - 0.0003, - "Insane", + "Abstract Agony", + 0.05, + "Nice", ], [ - "Huge Scarecrow Dog", - 0.00003, + "Chroma Tiger", + 0.000075, "Insane", ], ], @@ -29473,10 +29455,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Pilgrim Egg", + "configName": "5 | Colorful Spots Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "b044dc63ab1d95ab", + "hashShort": "0af2e8d4e9bafbf1", }, { "category": "Exclusive Eggs", @@ -29486,34 +29468,35 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "disableModifiers": true, "disableRainbow": false, "goldChance": 0, - "icon": "rbxassetid://120489631271296", - "name": "Exclusive Midnight Egg", + "icon": "rbxassetid://137130517995200", + "name": "Exclusive Sad Egg", "pets": [ [ - "Midnight Cat", + "Sad Doge", 50, ], [ - "Midnight Deer", + "Sad Bunny", 35, ], [ - "Midnight Zebra", + "Sad Hamster", 13, ], [ - "Huge Midnight Cat", + "Huge Sad Doge", 1.25, ], [ - "Huge Midnight Zebra", + "Huge Sad Hamster", 0.7, ], [ - "Titanic Midnight Lion", + "Titanic Sad Cat", 0.05, ], ], + "productIds": [], "rainbowChance": 2, "rarity": { "Announce": true, @@ -29529,32 +29512,43 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` }, "shinyChance": 2, }, - "configName": "Exclusive Egg 39", + "configName": "Exclusive Egg 34", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "2f9c67791d4b5c2b", + "hashShort": "f28930879c8fa5fc", }, { - "category": "Autumn", + "category": "Color Event", "collection": "Eggs", "configData": { - "currency": "Acorns", - "icon": "rbxassetid://15172355963", + "currency": "ColorCoins", + "icon": "rbxassetid://92622840787162", "isCustomEgg": true, - "name": "Autumn Mushroom Egg", + "name": "Colorful Palms Egg", "overrideCost": 8000, "pets": [ [ - "Corn Cat", + "Abstract Agony", 90, ], [ - "Skunk", + "Chroma Tiger", 10, ], [ - "Red Wolf", - 1, + "Shimmering Fish", + 0.1, + "Nice", + ], + [ + "Shimmering Octopus", + 0.05, + "Insane", + ], + [ + "Color Ruins Parrot", + 0.0001, + "Insane", ], ], "rarity": { @@ -29570,34 +29564,48 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "6 | Autumn Mushroom Egg", + "configName": "6 | Colorful Palms Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "8b7784e609254b0f", + "hashShort": "47a56bff14882cbe", }, { - "category": "Autumn", + "category": "Color Event", "collection": "Eggs", "configData": { - "currency": "Acorns", - "icon": "rbxassetid://15172355963", + "currency": "ColorCoins", + "icon": "rbxassetid://92622840787162", "isCustomEgg": true, - "name": "Creek Egg", + "name": "Colorful Relics Egg", "overrideCost": 16000, "pets": [ [ - "Skunk", + "Shimmering Fish", 90, ], [ - "Red Wolf", + "Shimmering Octopus", 10, ], [ - "Autumn Red Panda", + "Color Ruins Parrot", 0.1, + ], + [ + "Color Ruins Monkey", + 0.05, "Nice", ], + [ + "Graffiti Raccoon", + 0.001, + "Insane", + ], + [ + "Graffiti Dino", + 0.0001, + "Insane", + ], ], "rarity": { "Announce": true, @@ -29612,51 +29620,46 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "7 | Creek Egg", + "configName": "7 | Colorful Relics Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "6e5b5355d8f89550", + "hashShort": "88f81034d4fcbdfb", }, { - "category": "Autumn", + "category": "Color Event", "collection": "Eggs", "configData": { - "currency": "Acorns", - "icon": "rbxassetid://15172355963", + "currency": "ColorCoins", + "icon": "rbxassetid://133600279983793", "isCustomEgg": true, - "name": "Maple Egg", - "oddsFFlags": { - "Autumn Chest Mimic": "EggMultiplier_E2", - "Autumn Teddy Bear": "EggMultiplier_E1", - "Huge Red Wolf": "EggMultiplier_E3", - }, - "overrideCost": 35000, + "name": "Colorful Graffiti Egg", + "overrideCost": 32000, "pets": [ [ - "Red Wolf", - 90, + "Graffiti Raccoon", + 99, ], [ - "Autumn Red Panda", - 9.996766, + "Graffiti Dino", + 1, ], [ - "Dark Fox", + "Painted Balloon", 0.05, ], [ - "Autumn Teddy Bear", - 0.003, - "Great", + "Painted King Crab", + 0.025, + "Nice", ], [ - "Autumn Chest Mimic", - 0.0003, + "Chroma Phoenix", + 0.000075, "Insane", ], [ - "Huge Red Wolf", - 0.00004, + "Huge Chroma Phoenix", + 0.000006, "Insane", ], ], @@ -29673,10 +29676,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "8 | Maple Egg", + "configName": "8 | Colorful Graffiti Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "226b6275b0dbe481", + "hashShort": "fe7fd10dddd63a25", }, { "category": "Exclusive Eggs", @@ -29686,34 +29689,40 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "disableModifiers": true, "disableRainbow": false, "goldChance": 0, - "icon": "rbxassetid://78055889793752", - "name": "Exclusive Snow Globe Egg", + "icon": "rbxassetid://72844454700436", + "name": "Exclusive Soul Egg", "pets": [ [ - "Snow Globe Corgi", + "Soul Cat", 50, ], [ - "Snow Globe Axolotl", + "Soul Bat", 35, ], [ - "Snow Globe Hamster", + "Soul Dragon", 13, ], [ - "Huge Snow Globe Corgi", + "Huge Soul Cat", 1.25, ], [ - "Huge Snow Globe Hamster", + "Huge Soul Dragon", 0.7, ], [ - "Titanic Snow Globe Cat", + "Titanic Soul Owl", 0.05, ], ], + "productIds": { + "10 Exclusive Eggs": 1936849681, + "100 Exclusive Eggs": 1936849731, + "3 Exclusive Eggs": 1936849641, + "Exclusive Egg": 1936849596, + }, "rainbowChance": 2, "rarity": { "Announce": true, @@ -29729,157 +29738,279 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` }, "shinyChance": 2, }, - "configName": "Exclusive Egg 40", + "configName": "Exclusive Egg 35", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "2493e3a72f4b2cce", + "hashShort": "3225c66a0fe20124", }, { - "category": "Christmas2024", + "category": "Update 29", "collection": "Eggs", "configData": { - "currency": "GingerbreadCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Gingerbread Egg", - "overrideCost": 250, + "currency": "VoidCoins", + "eggNumber": 237, + "goldenThumbnail": "rbxassetid://103225139851942", + "icon": "rbxassetid://140478037974696", + "name": "Grass Type Egg", "pets": [ [ - "Festive Seal", + "Grass Bunny", + 99, + ], + [ + "Rock Monkey", + 1, + "Nice", + ], + [ + "Ice Snake", + 0.1, + "Great", + ], + ], + "worldNumber": 3, + }, + "configName": "237 | Grass Type Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:37.236Z", + "hashShort": "0d5809129e75d802", + }, + { + "category": "Update 29", + "collection": "Eggs", + "configData": { + "currency": "VoidCoins", + "eggNumber": 238, + "goldenThumbnail": "rbxassetid://130133196644865", + "icon": "rbxassetid://83964925016530", + "name": "Rock Type Egg", + "pets": [ + [ + "Rock Monkey", 90, ], [ - "Hot Cocoa Bear", + "Ice Snake", 10, ], [ - "Frost Hamster", - 0.1, + "Poison Turtle", + 1, "Nice", ], + [ + "Water Zebra", + 0.1, + "Great", + ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 3, }, - "configName": "1 | Gingerbread Egg", + "configName": "238 | Rock Type Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "5ef17804ea5bb80d", + "dateModified": "2026-04-18T15:56:37.232Z", + "hashShort": "74d16e8e32015a98", }, { - "category": "Christmas2024", + "category": "Update 29", "collection": "Eggs", "configData": { - "currency": "GingerbreadCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Jolly Egg", - "overrideCost": 500, + "currency": "VoidCoins", + "eggNumber": 239, + "goldenThumbnail": "rbxassetid://118437661800564", + "icon": "rbxassetid://81389093553673", + "name": "Water Type Egg", "pets": [ [ - "Hot Cocoa Bear", + "Poison Turtle", 90, ], [ - "Frost Hamster", + "Water Zebra", 10, ], [ - "Gingerbread Lion", - 0.1, + "Storm Griffin", + 1, "Nice", ], + [ + "Electric Penguin", + 0.1, + "Great", + ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 3, }, - "configName": "2 | Jolly Egg", + "configName": "239 | Water Type Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "00ae4d032485f9fc", + "dateModified": "2026-04-18T15:56:37.233Z", + "hashShort": "83418200a7e7ada3", }, { - "category": "Christmas2024", + "category": "Update 29", "collection": "Eggs", "configData": { - "currency": "GingerbreadCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Icy Egg", - "overrideCost": 1000, + "currency": "VoidCoins", + "eggNumber": 240, + "goldenThumbnail": "rbxassetid://113540783743756", + "icon": "rbxassetid://88953522625470", + "name": "Electric Type Egg", "pets": [ [ - "Frost Hamster", + "Storm Griffin", 90, ], [ - "Gingerbread Lion", + "Electric Penguin", 10, ], [ - "Nutcracker Bunny", + "Psychic Seal", + 1, + "Great", + ], + [ + "Fire Bat", 0.1, "Nice", ], ], + "worldNumber": 3, + }, + "configName": "240 | Electric Type Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:37.227Z", + "hashShort": "d36f10222ff1cd20", + }, + { + "category": "Update 29", + "collection": "Eggs", + "configData": { + "currency": "VoidCoins", + "eggNumber": 241, + "goldenThumbnail": "rbxassetid://75496895087863", + "icon": "rbxassetid://120512952599184", + "name": "Fire Type Egg", + "pets": [ + [ + "Psychic Seal", + 99, + ], + [ + "Fire Bat", + 1, + ], + [ + "Dark Dragon", + 0.001, + "Great", + ], + [ + "Ghost Axolotl", + 0.00025, + "Insane", + ], + [ + "Elemental Phoenix", + 0.0000185, + "Insane", + ], + [ + "Huge Ghost Axolotl", + 0.000001, + "Insane", + ], + ], + "worldNumber": 3, + }, + "configName": "241 | Fire Type Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-25T17:31:21.594Z", + "hashShort": "185b3a339f47d2e5", + }, + { + "category": "Exclusive Eggs", + "collection": "Eggs", + "configData": { + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://133438295958475", + "name": "Exclusive Horror Egg", + "pets": [ + [ + "Slasher Sloth", + 50, + ], + [ + "Cannibal Meerkat", + 35, + ], + [ + "Machete Dog", + 13, + ], + [ + "Huge Slasher Sloth", + 1.25, + ], + [ + "Huge Machete Dog", + 0.7, + ], + [ + "Titanic Ghostface Cat", + 0.05, + ], + ], + "productIds": { + "10 Exclusive Eggs": 2317380800, + "100 Exclusive Eggs": 2317380902, + "3 Exclusive Eggs": 2317380699, + "Exclusive Egg": 2317380619, + }, + "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "shinyChance": 2, }, - "configName": "3 | Icy Egg", + "configName": "Exclusive Egg 36", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "65c14c40e92bb626", + "hashShort": "cc382ae69be33502", }, { - "category": "Christmas2024", + "category": "Halloween", "collection": "Eggs", "configData": { - "currency": "GingerbreadCoins", + "currency": "HalloweenCandy", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Candy Cane Egg", - "overrideCost": 2000, + "name": "Halloween Pumpkin Egg", + "overrideCost": 250, "pets": [ [ - "Gingerbread Lion", + "Albino Bat", 90, ], [ - "Nutcracker Bunny", + "Pumpkin Cat", 10, ], [ - "North Pole Unicorn", + "Zombie Deer", 0.1, "Nice", ], @@ -29897,42 +30028,33 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Candy Cane Egg", + "configName": "1 | Halloween Pumpkin Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "c351e6f7ce52120b", + "hashShort": "48c54a22b6ae1d27", }, { - "category": "Christmas2024", + "category": "Halloween", "collection": "Eggs", "configData": { - "currency": "GingerbreadCoins", + "currency": "HalloweenCandy", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Frosty Egg", - "overrideCost": 4000, + "name": "Halloween Spooky Egg", + "overrideCost": 500, "pets": [ [ - "Nutcracker Bunny", + "Pumpkin Cat", 90, ], [ - "North Pole Unicorn", - 9.996796, - ], - [ - "Evil Snowman", - 0.05, - ], - [ - "Crackling Dragon", - 0.003, - "Great", + "Zombie Deer", + 10, ], [ - "Lit Cat", - 0.0003, - "Insane", + "Little Melty", + 0.1, + "Nice", ], ], "rarity": { @@ -29948,32 +30070,33 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Frosty Egg", + "configName": "2 | Halloween Spooky Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "620a04ae0af827bd", + "hashShort": "cee05a091db10b9a", }, { - "category": "Christmas2024", + "category": "Halloween", "collection": "Eggs", "configData": { - "currency": "GingerbreadCoins", + "currency": "HalloweenCandy", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Elf Egg", - "overrideCost": 8000, + "name": "Halloween Bat Egg", + "overrideCost": 1000, "pets": [ [ - "Lit Cat", + "Zombie Deer", 90, ], [ - "Holly Corgi", + "Little Melty", 10, ], [ - "Holiday Hedgehog", - 1, + "Broomstick Cat", + 0.1, + "Nice", ], ], "rarity": { @@ -29989,31 +30112,31 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "6 | Elf Egg", + "configName": "3 | Halloween Bat Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "d129f3080d676ada", + "hashShort": "6cdc421f50f18abc", }, { - "category": "Christmas2024", + "category": "Halloween", "collection": "Eggs", "configData": { - "currency": "GingerbreadCoins", + "currency": "HalloweenCandy", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Tundra Egg", - "overrideCost": 16000, + "name": "Halloween Ghost Egg", + "overrideCost": 2000, "pets": [ [ - "Holly Corgi", + "Little Melty", 90, ], [ - "Holiday Hedgehog", + "Broomstick Cat", 10, ], [ - "Festive Bear", + "Skeleton Cat", 0.1, "Nice", ], @@ -30031,54 +30154,42 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "7 | Tundra Egg", + "configName": "4 | Halloween Ghost Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "259b2b76d5502a1f", + "hashShort": "6ecd7130abfc7d0f", }, { - "category": "Christmas2024", + "category": "Halloween", "collection": "Eggs", "configData": { - "currency": "GingerbreadCoins", - "extraPetsClient": null, - "extraPetsServer": null, + "currency": "HalloweenCandy", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Present Egg", - "oddsFFlags": { - "Huge Festive Elf": "EggMultiplier_F2", - "Huge Holly Corgi": "EggMultiplier_F1", - "Icy Phoenix": "EggMultiplier_E2", - "Lit Octopus": "EggMultiplier_E1", - }, - "overrideCost": 35000, + "name": "Halloween Cauldron Egg", + "overrideCost": 4000, "pets": [ [ - "Holiday Hedgehog", - 90, - ], - [ - "Festive Bear", - 9.996796, + "Broomstick Cat", + 89.05, ], [ - "Naughty Cat", - 0.05, + "Skeleton Cat", + 10, ], [ - "Lit Octopus", - 0.003, - "Great", + "Glowy the Ghost", + 1, + "Nice", ], [ - "Icy Phoenix", - 0.0003, + "Hippokin", + 0.005, "Insane", ], [ - "Huge Holly Corgi", - 0.00001, + "Pumpkin Scarecrow", + 0.00005, "Insane", ], ], @@ -30095,51 +30206,49 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "8 | Present Egg", + "configName": "5 | Halloween Cauldron Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "20fafc32d313238c", + "hashShort": "f2cc4259431bb715", }, { - "category": "SnowstormSurvival", + "category": "Backrooms", "collection": "Eggs", "configData": { - "currency": "SnowstormSurvival", - "forceFree": true, - "icon": "rbxassetid://15172355963", + "currency": "BackroomsCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Snowstorm Survival 5x", + "name": "Backrooms Jack o Lantern Egg 1x", "oddsFFlags": { - "Huge Snowflake Pegasus": "EggMultiplier_G1", + "Huge Glowy the Ghost": "EggMultiplier_D2", }, - "overrideCost": 0, + "overrideCost": 200, "pets": [ [ - "Holiday Hedgehog", - 90, + "Albino Bat", + 69.985, ], [ - "Festive Bear", - 9.996796, + "Pumpkin Cat", + 29, ], [ - "Naughty Cat", - 0.05, + "Zombie Deer", + 0.9, ], [ - "Lit Octopus", - 0.003, - "Great", + "Little Melty", + 0.1, ], [ - "Icy Phoenix", - 0.0003, - "Insane", + "Broomstick Cat", + 0.015, ], [ - "Huge Snowflake Pegasus", - 0.0000049999999999999996, - "Insane", + "Huge Glowy the Ghost", + 0.000002, ], ], "rarity": { @@ -30155,51 +30264,49 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Snowstorm Survival 5x", + "configName": "1 | Backrooms Jack o Lantern Egg 1x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "d76d3dee0f3af36f", + "hashShort": "5289f956f9df62b5", }, { - "category": "SnowstormSurvival", + "category": "Backrooms", "collection": "Eggs", "configData": { - "currency": "SnowstormSurvival", - "forceFree": true, - "icon": "rbxassetid://15172355963", + "currency": "BackroomsCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Snowstorm Survival 15x", + "name": "Backrooms Jack o Lantern Egg 2x", "oddsFFlags": { - "Huge Snowflake Pegasus": "EggMultiplier_G1", + "Huge Glowy the Ghost": "EggMultiplier_D2", }, - "overrideCost": 0, + "overrideCost": 200, "pets": [ [ - "Holiday Hedgehog", - 90, + "Albino Bat", + 69.985, ], [ - "Festive Bear", - 9.996796, + "Pumpkin Cat", + 29, ], [ - "Naughty Cat", - 0.05, + "Zombie Deer", + 0.9, ], [ - "Lit Octopus", - 0.003, - "Great", + "Little Melty", + 0.1, ], [ - "Icy Phoenix", - 0.0003, - "Insane", + "Broomstick Cat", + 0.015, ], [ - "Huge Snowflake Pegasus", - 0.000014999999999999999, - "Insane", + "Huge Glowy the Ghost", + 0.000004, ], ], "rarity": { @@ -30215,51 +30322,49 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Snowstorm Survival 15x", + "configName": "1 | Backrooms Jack o Lantern Egg 2x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "9b6cb4ec96c42cfa", + "hashShort": "d8b2167f53875696", }, { - "category": "SnowstormSurvival", + "category": "Backrooms", "collection": "Eggs", "configData": { - "currency": "SnowstormSurvival", - "forceFree": true, - "icon": "rbxassetid://15172355963", + "currency": "BackroomsCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Snowstorm Survival 50x", + "name": "Backrooms Jack o Lantern Egg 3x", "oddsFFlags": { - "Huge Snowflake Pegasus": "EggMultiplier_G1", + "Huge Glowy the Ghost": "EggMultiplier_D2", }, - "overrideCost": 0, + "overrideCost": 200, "pets": [ [ - "Holiday Hedgehog", - 90, + "Albino Bat", + 69.985, ], [ - "Festive Bear", - 9.996796, + "Pumpkin Cat", + 29, ], [ - "Naughty Cat", - 0.05, + "Zombie Deer", + 0.9, ], [ - "Lit Octopus", - 0.003, - "Great", + "Little Melty", + 0.1, ], [ - "Icy Phoenix", - 0.0003, - "Insane", + "Broomstick Cat", + 0.015, ], [ - "Huge Snowflake Pegasus", - 0.000049999999999999996, - "Insane", + "Huge Glowy the Ghost", + 0.000006, ], ], "rarity": { @@ -30275,51 +30380,49 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "3 | Snowstorm Survival 50x", + "configName": "1 | Backrooms Jack o Lantern Egg 3x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "c95f08f471d62b9a", + "hashShort": "bbaa8b95b76c0e26", }, { - "category": "SnowstormSurvival", + "category": "Backrooms", "collection": "Eggs", "configData": { - "currency": "SnowstormSurvival", - "forceFree": true, - "icon": "rbxassetid://15172355963", + "currency": "BackroomsCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Snowstorm Survival 100x", + "name": "Backrooms Cyclops Egg 10x", "oddsFFlags": { - "Huge Snowflake Pegasus": "EggMultiplier_G1", + "Huge Glowy the Ghost": "EggMultiplier_D2", }, - "overrideCost": 0, + "overrideCost": 250, "pets": [ [ - "Holiday Hedgehog", - 90, + "Pumpkin Cat", + 80.4325, ], [ - "Festive Bear", - 9.996796, + "Zombie Deer", + 19, ], [ - "Naughty Cat", - 0.05, + "Little Melty", + 0.5, ], [ - "Lit Octopus", - 0.003, - "Great", + "Broomstick Cat", + 0.06, ], [ - "Icy Phoenix", - 0.0003, - "Insane", + "Skeleton Cat", + 0.0075, ], [ - "Huge Snowflake Pegasus", - 0.00009999999999999999, - "Insane", + "Huge Glowy the Ghost", + 0.00002, ], ], "rarity": { @@ -30335,93 +30438,107 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Snowstorm Survival 100x", + "configName": "2 | Backrooms Cyclops Egg 10x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "c33b5df15ab0c1af", + "hashShort": "e64b7271ee63f470", }, { - "category": "Exclusive Eggs", + "category": "Backrooms", "collection": "Eggs", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://105703918956378", - "name": "Exclusive Snowflake Egg", + "currency": "BackroomsCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Cyclops Egg 15x", + "oddsFFlags": { + "Huge Glowy the Ghost": "EggMultiplier_D2", + }, + "overrideCost": 250, "pets": [ [ - "Holiday Bearserker", - 50, - ], - [ - "Festive Hydra", - 35, + "Pumpkin Cat", + 80.4325, ], [ - "Naughty Dominus", - 13, + "Zombie Deer", + 19, ], [ - "Huge Holiday Bearserker", - 1.5, + "Little Melty", + 0.5, ], [ - "Huge Naughty Dominus", - 0.39, + "Broomstick Cat", + 0.06, ], [ - "Titanic Snowflake Angelus", - 0.1, + "Skeleton Cat", + 0.0075, ], [ - "Gargantuan Santa Paws", - 0.01, + "Huge Glowy the Ghost", + 0.00003, ], ], - "productIds": [], - "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "shinyChance": 2, }, - "configName": "Exclusive Egg 41", + "configName": "2 | Backrooms Cyclops Egg 15x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "0b4481afaa47b6b5", + "hashShort": "c11dec62193321da", }, { - "category": "Christmas2024", + "category": "Backrooms", "collection": "Eggs", "configData": { - "currency": "GingerbreadCoins", - "icon": "rbxassetid://15172355963", + "currency": "BackroomsCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Festive Egg", - "overrideCost": 7000000, + "name": "Backrooms Cyclops Egg 5x", + "oddsFFlags": { + "Huge Glowy the Ghost": "EggMultiplier_D2", + }, + "overrideCost": 250, "pets": [ [ - "Icy Phoenix", - 90, + "Pumpkin Cat", + 80.4325, ], [ - "Marzipan Piggy", - 10, + "Zombie Deer", + 19, ], [ - "Nutcracker Squirrel", - 1, + "Little Melty", + 0.5, + ], + [ + "Broomstick Cat", + 0.06, + ], + [ + "Skeleton Cat", + 0.0075, + ], + [ + "Huge Glowy the Ghost", + 0.00001, ], ], "rarity": { @@ -30437,33 +30554,53 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "9 | Snowstorm Egg", + "configName": "2 | Backrooms Cyclops Egg 5x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "5277530bbf08995d", + "hashShort": "a0bda97a82886298", }, { - "category": "Christmas2024", + "category": "Backrooms", "collection": "Eggs", "configData": { - "currency": "GingerbreadCoins", - "icon": "rbxassetid://15172355963", + "currency": "BackroomsCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Ornament Egg", - "overrideCost": 20000000, + "name": "Backrooms Ghostface Egg 20x", + "oddsFFlags": { + "Huge Glowy the Ghost": "EggMultiplier_D2", + }, + "overrideCost": 300, "pets": [ [ - "Marzipan Piggy", - 90, + "Glowy the Ghost", + 82.463, ], [ - "Nutcracker Squirrel", - 10, + "Hippokin", + 17, ], [ - "Merry Manatee", + "Evil Wolverine", + 0.4, + ], + [ + "Tarantula", 0.1, - "Nice", + ], + [ + "Mummy Bunny", + 0.03, + ], + [ + "Reaper Cat", + 0.007, + ], + [ + "Huge Glowy the Ghost", + 0.00004, ], ], "rarity": { @@ -30479,55 +30616,53 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "10 | Ornament Egg", + "configName": "3 | Backrooms Ghostface Egg 20x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "daec7ab0a0e17b27", + "hashShort": "8d6a918d484aec2c", }, { - "category": "Christmas2024", + "category": "Backrooms", "collection": "Eggs", "configData": { - "currency": "GingerbreadCoins", - "extraPetsClient": null, - "extraPetsServer": null, - "icon": "rbxassetid://15172355963", + "currency": "BackroomsCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Christmas Tree Egg", + "name": "Backrooms Ghostface Egg 25x", "oddsFFlags": { - "Huge Festive Elf": "EggMultiplier_F2", - "Huge Nutcracker Squirrel": "EggMultiplier_F1", - "Jolly Dino": "EggMultiplier_E1", - "Snow Elf": "EggMultiplier_E2", + "Huge Glowy the Ghost": "EggMultiplier_D2", }, - "overrideCost": 85000000, + "overrideCost": 300, "pets": [ [ - "Nutcracker Squirrel", - 90, + "Glowy the Ghost", + 82.463, ], [ - "Merry Manatee", - 9.996796, + "Hippokin", + 17, ], [ - "Figgy Fox", - 0.05, + "Evil Wolverine", + 0.4, ], [ - "Jolly Dino", - 0.003, - "Great", + "Tarantula", + 0.1, ], [ - "Snow Elf", - 0.0003, - "Insane", + "Mummy Bunny", + 0.03, ], [ - "Huge Nutcracker Squirrel", - 0.00001, - "Insane", + "Reaper Cat", + 0.007, + ], + [ + "Huge Glowy the Ghost", + 0.00005, ], ], "rarity": { @@ -30543,61 +30678,177 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "11 | Pine Tree Egg", + "configName": "3 | Backrooms Ghostface Egg 25x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "4c04e89e3537d24c", + "hashShort": "04d85e42cbbc35c5", }, { - "category": "SecretSantaRoom", + "category": "Backrooms", "collection": "Eggs", "configData": { - "currency": "GingerbreadCoins", - "extraPetsClient": null, - "extraPetsServer": null, - "icon": "rbxassetid://15172355963", + "currency": "BackroomsCoins", + "egg": null, + "goldenEgg": null, + "icon": "", "isCustomEgg": true, - "name": "Santa's Cottage Egg", + "name": "Backrooms Ghostface Egg 30x", "oddsFFlags": { - "Huge Festive Elf": "EggMultiplier_F2", - "Huge Merry Manatee": "EggMultiplier_F3", - "Huge Nutcracker Squirrel": "EggMultiplier_F1", - "Jolly Dino": "EggMultiplier_E1", - "Snow Elf": "EggMultiplier_E2", + "Huge Glowy the Ghost": "EggMultiplier_D2", }, - "overrideCost": 350000, + "overrideCost": 300, "pets": [ [ - "Nutcracker Squirrel", - 90, + "Glowy the Ghost", + 82.463, ], [ - "Merry Manatee", - 9.996796, + "Hippokin", + 17, ], [ - "Figgy Fox", - 0.05, + "Evil Wolverine", + 0.4, ], [ - "Jolly Dino", - 0.003, - "Great", + "Tarantula", + 0.1, ], [ - "Snow Elf", - 0.0003, - "Insane", + "Mummy Bunny", + 0.03, ], [ - "Huge Nutcracker Squirrel", - 0.00001, - "Insane", + "Reaper Cat", + 0.007, ], [ - "Huge Merry Manatee", + "Huge Glowy the Ghost", + 0.00006, + ], + ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + "configName": "3 | Backrooms Ghostface Egg 30x", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "130ef1f81551c594", + }, + { + "category": "Backrooms", + "collection": "Eggs", + "configData": { + "currency": "BackroomsCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Clown Egg 100x", + "oddsFFlags": { + "Huge Glowy the Ghost": "EggMultiplier_D2", + }, + "overrideCost": 500, + "pets": [ + [ + "Evil Wolverine", + 86.585, + ], + [ + "Tarantula", + 13, + ], + [ + "Mummy Bunny", + 0.32, + ], + [ + "Reaper Cat", + 0.07, + ], + [ + "Vampire Dragon", + 0.02, + ], + [ + "Abomination", + 0.001, + ], + [ + "Huge Glowy the Ghost", + 0.0002, + ], + ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + "configName": "4 | Backrooms Clown Egg 100x", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "f48d77d976ca9664", + }, + { + "category": "Backrooms", + "collection": "Eggs", + "configData": { + "currency": "BackroomsCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Clown Egg 50x", + "oddsFFlags": { + "Huge Glowy the Ghost": "EggMultiplier_D2", + }, + "overrideCost": 500, + "pets": [ + [ + "Evil Wolverine", + 86.585, + ], + [ + "Tarantula", + 13, + ], + [ + "Mummy Bunny", + 0.32, + ], + [ + "Reaper Cat", + 0.07, + ], + [ + "Vampire Dragon", + 0.02, + ], + [ + "Abomination", + 0.001, + ], + [ + "Huge Glowy the Ghost", 0.0001, - "Insane", ], ], "rarity": { @@ -30613,41 +30864,215 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Secret Santa Egg", + "configName": "4 | Backrooms Clown Egg 50x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "27712bee508b87d3", + "hashShort": "b0ca24f711a822e5", }, { - "category": "Exclusive Eggs", + "category": "Backrooms", "collection": "Eggs", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": true, - "goldChance": 0, - "icon": "rbxassetid://15187975109", - "name": "Grinch Egg", - "pets": [], - "rainbowChance": 0, + "currency": "BackroomsCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Clown Egg 75x", + "oddsFFlags": { + "Huge Glowy the Ghost": "EggMultiplier_D2", + }, + "overrideCost": 500, + "pets": [ + [ + "Evil Wolverine", + 86.585, + ], + [ + "Tarantula", + 13, + ], + [ + "Mummy Bunny", + 0.32, + ], + [ + "Reaper Cat", + 0.07, + ], + [ + "Vampire Dragon", + 0.02, + ], + [ + "Abomination", + 0.001, + ], + [ + "Huge Glowy the Ghost", + 0.00015, + ], + ], "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "shinyChance": 0, }, - "configName": "Grinch Egg", + "configName": "4 | Backrooms Clown Egg 75x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "b78f0dd10d4148ee", + "hashShort": "17c26feb39e3b17e", + }, + { + "category": "Halloween", + "collection": "Eggs", + "configData": { + "currency": "HalloweenCandy", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Halloween Cobweb Egg", + "overrideCost": 8000, + "pets": [ + [ + "Pumpkin Scarecrow", + 90, + ], + [ + "Evil Wolverine", + 10, + ], + [ + "Tarantula", + 1, + ], + ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + "configName": "6 | Halloween Cobweb Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "ab4eed47665e255c", + }, + { + "category": "Halloween", + "collection": "Eggs", + "configData": { + "currency": "HalloweenCandy", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Halloween Scythe Egg", + "overrideCost": 16000, + "pets": [ + [ + "Tarantula", + 90, + ], + [ + "Mummy Bunny", + 10, + ], + [ + "Reaper Cat", + 1, + "Nice", + ], + ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + "configName": "7 | Halloween Scythe Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "4aafc7083c0db11f", + }, + { + "category": "Halloween", + "collection": "Eggs", + "configData": { + "currency": "HalloweenCandy", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Halloween Coffin Egg", + "oddsFFlags": { + "Titanic Pumpkin Cat": "EggMultiplier_D3", + }, + "overrideCost": 32000, + "pets": [ + [ + "Mummy Bunny", + 90, + ], + [ + "Reaper Cat", + 10, + ], + [ + "Vampire Dragon", + 0.05, + "Great", + ], + [ + "Abomination", + 0.0001, + "Insane", + ], + [ + "Huge Abomination", + 0.000006, + "Insane", + ], + [ + "Titanic Pumpkin Cat", + 1.5e-7, + "Insane", + ], + ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + "configName": "8 | Halloween Coffin Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "7d07b7d851d79605", }, { "category": "Exclusive Eggs", @@ -30657,43 +31082,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "disableModifiers": true, "disableRainbow": false, "goldChance": 0, - "icon": "rbxassetid://99979001566139", - "name": "Exclusive Hypnotic Egg", + "icon": "rbxassetid://92993491169749", + "name": "Exclusive Cartoon Egg", "pets": [ [ - "Hypnotic Cat", + "Cartoon Bunny", 50, ], [ - "Hypnotic Griffin", + "Cartoon Corgi", 35, ], [ - "Hypnotic Dragon", + "Cartoon Demon", 13, ], [ - "Huge Hypnotic Cat", - 1.5, - ], - [ - "Huge Hypnotic Dragon", - 0.39, + "Huge Cartoon Bunny", + 1.25, ], [ - "Titanic Hypnotic Monkey", - 0.1, + "Huge Cartoon Demon", + 0.7, ], [ - "Gargantuan Hypnotic Kitsune", - 0.01, + "Titanic Cartoon Cat", + 0.05, ], ], "productIds": { - "10 Exclusive Eggs": 2690050254, - "100 Exclusive Eggs": 2690053074, - "3 Exclusive Eggs": 2690049831, - "Exclusive Egg": 2690049522, + "10 Exclusive Eggs": 2650803388, + "100 Exclusive Eggs": 2650803422, + "3 Exclusive Eggs": 2650803313, + "Exclusive Egg": 2650803236, }, "rainbowChance": 2, "rarity": { @@ -30710,224 +31131,215 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` }, "shinyChance": 2, }, - "configName": "Exclusive Egg 42", + "configName": "Exclusive Egg 37", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "90a31a2b1ff93814", + "hashShort": "4ebb46e9132525a2", }, { - "category": "Update 41", + "category": "Update 32", "collection": "Eggs", "configData": { "currency": "VoidCoins", - "eggNumber": 247, - "icon": "rbxassetid://15172355963", - "name": "Doodle Flower Egg ", + "eggNumber": 242, + "goldenThumbnail": "rbxassetid://112541186626705", + "icon": "rbxassetid://135113295865332", + "name": "Elysium Egg", "pets": [ [ - "Doodle Cat", + "Sacred Boar", 99, ], [ - "Doodle Corgi", + "Sacred Deer", 1, "Nice", ], [ - "Doodle Bunny", + "Ocean Horse", 0.1, "Great", ], ], "worldNumber": 3, }, - "configName": "247 | Doodle Flower Egg ", + "configName": "242 | Elysium Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "d1f64f480b23045c", + "dateModified": "2026-04-18T15:56:37.192Z", + "hashShort": "9897124350eaee72", }, { - "category": "Update 41", + "category": "Update 32", "collection": "Eggs", "configData": { "currency": "VoidCoins", - "eggNumber": 248, - "icon": "rbxassetid://15172355963", - "name": "Doodle Safari Egg", + "eggNumber": 243, + "goldenThumbnail": "rbxassetid://86357139962241", + "icon": "rbxassetid://88183016488229", + "name": "Paradise Egg", "pets": [ [ - "Doodle Tiger", + "Sacred Deer", 90, ], [ - "Doodle Elephant", + "Ocean Horse", 10, ], [ - "Doodle Rhino", + "Apollo Raven", 0.5, "Great", ], ], "worldNumber": 3, }, - "configName": "248 | Doodle Safari Egg", + "configName": "243 | Paradise Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "8b1c0e3f0eb9c608", + "dateModified": "2026-04-18T15:56:37.189Z", + "hashShort": "27b84ade7b472ab4", }, { - "category": "Update 41", + "category": "Update 32", "collection": "Eggs", "configData": { "currency": "VoidCoins", - "eggNumber": 249, - "icon": "rbxassetid://15172355963", - "name": "Doodle Fairy Egg", + "eggNumber": 244, + "goldenThumbnail": "rbxassetid://135205423887237", + "icon": "rbxassetid://78925486465104", + "name": "Lost Library Egg", "pets": [ [ - "Doodle Fairy", + "Ocean Horse", 90, ], [ - "Doodle Griffin", + "Apollo Raven", 10, ], [ - "Doodle Dragon", + "Trojan Horse", 1, "Nice", ], ], "worldNumber": 3, }, - "configName": "249 | Doodle Fairy Egg", + "configName": "244 | Lost Library Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "6262cab838e84eb7", + "dateModified": "2026-04-18T15:56:37.225Z", + "hashShort": "67068e5163ec4306", }, { - "category": "Update 41", + "category": "Update 32", "collection": "Eggs", "configData": { "currency": "VoidCoins", - "eggNumber": 250, - "icon": "rbxassetid://15172355963", - "name": "Doodle Gem Egg", + "eggNumber": 245, + "goldenThumbnail": "rbxassetid://140705730348406", + "icon": "rbxassetid://96175837797418", + "name": "Nebula Egg", "pets": [ [ - "Doodle Unicorn", + "Apollo Raven", 90, ], [ - "Doodle Agony", + "Trojan Horse", 10, ], [ - "Doodle Hydra", + "Athena Owl", 0.25, "Great", ], ], "worldNumber": 3, }, - "configName": "250 | Doodle Gem Egg", + "configName": "245 | Nebula Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "d266092b680329b6", + "dateModified": "2026-04-18T15:56:37.204Z", + "hashShort": "c149f93dc24e0c4c", }, { - "category": "Update 41", + "category": "Update 32", "collection": "Eggs", "configData": { "currency": "VoidCoins", - "eggNumber": 251, - "icon": "rbxassetid://15172355963", - "name": "Doodle Tropical Egg", + "eggNumber": 246, + "goldenThumbnail": "rbxassetid://74234962705352", + "icon": "rbxassetid://84524150390084", + "name": "Colosseum Egg", "pets": [ [ - "Doodle Narwhal", + "Trojan Horse", 99, ], [ - "Doodle Crocodile", + "Athena Owl", 1, ], [ - "Doodle Dolphin", + "Artemis Bear", 0.001, "Great", ], [ - "Doodle Shark", + "Gorgon", 0.00025, "Insane", ], [ - "Doodle Axolotl", + "Zeus Bull", 0.0000185, "Insane", ], [ - "Huge Chroma Doodle Axolotl", + "Huge Gorgon", 0.000001, "Insane", ], ], "worldNumber": 3, }, - "configName": "251 | Doodle Tropical Egg", + "configName": "246 | Colosseum Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "75437f837760d360", + "dateModified": "2026-04-18T15:56:37.202Z", + "hashShort": "3d51441ad5738f9c", }, { - "category": "ControlRoom", + "category": "Line For Huge", "collection": "Eggs", "configData": { - "currency": "GameCoins", + "currency": "LineCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Control Room Egg", + "maxNumPerAction": 1, + "name": "Line Egg", "oddsFFlags": { - "Frontman Jellyfish": "EggMultiplier_E2", - "Guard Dominus": "EggMultiplier_E1", - "Huge Frontman Jellyfish": "EggMultiplier_H2", - "Huge Player Panda": "EggMultiplier_H1", + "Huge Student Corgi": "EggMultiplier_D4", }, - "overrideCost": 8000, + "overrideCost": 0, "pets": [ [ - "Guard Wolf", - 90, - ], - [ - "Player Corgi", - 9.996796, - ], - [ - "Guard Dragon", - 0.05, + "Coach Tiger", + 89.7245, ], [ - "Guard Dominus", - 0.003, - "Great", + "Nurse Shark", + 10, ], [ - "Frontman Jellyfish", - 0.0003, - "Insane", + "Librarian Beaver", + 0.25, ], [ - "Huge Player Panda", - 0.00002, - "Insane", + "Principal Anteater", + 0.025, ], [ - "Huge Frontman Jellyfish", - 0.0000033333333333333337, - "Insane", + "Huge Student Corgi", + 0.0005, ], ], "rarity": { @@ -30943,33 +31355,44 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Control Room Egg", + "configName": "Line Egg 1", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "3cd36a026a37ea23", + "hashShort": "706d67040bd5233c", }, { - "category": "PetGamesEvent", + "category": "Line For Huge", "collection": "Eggs", "configData": { - "currency": "GameCoins", + "currency": "LineCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Guard Egg", - "overrideCost": 250, + "maxNumPerAction": 1, + "name": "Line Egg", + "oddsFFlags": { + "Huge Student Corgi": "EggMultiplier_D4", + }, + "overrideCost": 0, "pets": [ [ - "Doll Cat", - 90, + "Coach Tiger", + 94.8623, ], [ - "Player Panda", - 10, + "Nurse Shark", + 5, ], [ - "Guard Raccoon", - 0.1, - "Nice", + "Librarian Beaver", + 0.125, + ], + [ + "Principal Anteater", + 0.0125, + ], + [ + "Huge Student Corgi", + 0.0002, ], ], "rarity": { @@ -30985,33 +31408,44 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Guard Egg", + "configName": "Line Egg 2", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "e0e30173394837a4", + "hashShort": "0e652d79c6b4168f", }, { - "category": "PetGamesEvent", + "category": "Line For Huge", "collection": "Eggs", "configData": { - "currency": "GameCoins", + "currency": "LineCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Playground Egg", - "overrideCost": 500, + "maxNumPerAction": 1, + "name": "Line Egg", + "oddsFFlags": { + "Huge Student Corgi": "EggMultiplier_D4", + }, + "overrideCost": 0, "pets": [ [ - "Player Panda", - 90, + "Student Corgi", + 78.89985, ], [ - "Guard Raccoon", - 10, + "Coach Tiger", + 20, ], [ - "Player Piggy", + "Nurse Shark", + 1, + ], + [ + "Librarian Beaver", 0.1, - "Nice", + ], + [ + "Huge Student Corgi", + 0.00015, ], ], "rarity": { @@ -31027,33 +31461,44 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Playground Egg", + "configName": "Line Egg 3", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "a6959793287ba339", + "hashShort": "104b7525c34a4c08", }, { - "category": "PetGamesEvent", + "category": "Line For Huge", "collection": "Eggs", "configData": { - "currency": "GameCoins", + "currency": "LineCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Frontman Egg", - "overrideCost": 1000, + "maxNumPerAction": 1, + "name": "Line Egg", + "oddsFFlags": { + "Huge Student Corgi": "EggMultiplier_D4", + }, + "overrideCost": 0, "pets": [ [ - "Guard Raccoon", - 90, + "Student Corgi", + 89.4499, ], [ - "Player Piggy", + "Coach Tiger", 10, ], [ - "Guard Wolf", - 0.1, - "Nice", + "Nurse Shark", + 0.5, + ], + [ + "Librarian Beaver", + 0.05, + ], + [ + "Huge Student Corgi", + 0.0001, ], ], "rarity": { @@ -31069,33 +31514,44 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "3 | Frontman Egg", + "configName": "Line Egg 4", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "9cc6f1fc2a4dcf72", + "hashShort": "67568b1162c46f91", }, { - "category": "PetGamesEvent", + "category": "Line For Huge", "collection": "Eggs", "configData": { - "currency": "GameCoins", + "currency": "LineCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Staircase Egg", - "overrideCost": 2000, + "maxNumPerAction": 1, + "name": "Line Egg", + "oddsFFlags": { + "Huge Student Corgi": "EggMultiplier_D4", + }, + "overrideCost": 0, "pets": [ [ - "Player Piggy", - 90, + "Student Corgi", + 94.72492, ], [ - "Guard Wolf", - 10, + "Coach Tiger", + 5, ], [ - "Player Corgi", - 0.1, - "Nice", + "Nurse Shark", + 0.25, + ], + [ + "Librarian Beaver", + 0.025, + ], + [ + "Huge Student Corgi", + 0.00008, ], ], "rarity": { @@ -31111,42 +31567,44 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Staircase Egg", + "configName": "Line Egg 5", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "14248d4fc0688142", + "hashShort": "0b9cf5fe9d6df42c", }, { - "category": "PetGamesEvent", + "category": "Line For Huge", "collection": "Eggs", "configData": { - "currency": "GameCoins", + "currency": "LineCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Player Egg", - "overrideCost": 4000, + "maxNumPerAction": 1, + "name": "Line Egg", + "oddsFFlags": { + "Huge Student Corgi": "EggMultiplier_D4", + }, + "overrideCost": 0, "pets": [ [ - "Guard Wolf", - 90, + "Teacher Cat", + 78.89995, ], [ - "Player Corgi", - 9.996796, + "Student Corgi", + 20, ], [ - "Guard Dragon", - 0.05, + "Coach Tiger", + 1, ], [ - "Guard Dominus", - 0.003, - "Great", + "Nurse Shark", + 0.1, ], [ - "Frontman Jellyfish", - 0.0003, - "Insane", + "Huge Student Corgi", + 0.00005, ], ], "rarity": { @@ -31162,92 +31620,97 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Player Egg", + "configName": "Line Egg 6", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "909b4430845e8eee", + "hashShort": "a8105494faabaf62", }, { - "category": "Exclusive Eggs", + "category": "Line For Huge", "collection": "Eggs", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://87034502118666", - "name": "Exclusive Googly Egg", + "currency": "LineCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "maxNumPerAction": 1, + "name": "Line Egg", + "oddsFFlags": { + "Huge Student Corgi": "EggMultiplier_D4", + }, + "overrideCost": 0, "pets": [ [ - "Googly Corgi", - 50, - ], - [ - "Googly Cat", - 35, - ], - [ - "Googly Shark", - 13, + "Teacher Cat", + 89.44996, ], [ - "Huge Googly Corgi", - 1.5, + "Student Corgi", + 10, ], [ - "Huge Googly Shark", - 0.39, + "Coach Tiger", + 0.5, ], [ - "Titanic Googly Blobfish", - 0.1, + "Nurse Shark", + 0.05, ], [ - "Gargantuan Googly Agony", - 0.01, + "Huge Student Corgi", + 0.00004, ], ], - "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "shinyChance": 2, }, - "configName": "Exclusive Egg 43", + "configName": "Line Egg 7", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "e966f7269a798d3f", + "hashShort": "f2fdf61d5a5110b8", }, { - "category": "PetGamesEvent", + "category": "Line For Huge", "collection": "Eggs", "configData": { - "currency": "GameCoins", + "currency": "LineCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Marble Bag Egg", - "overrideCost": 8000, + "maxNumPerAction": 1, + "name": "Line Egg", + "oddsFFlags": { + "Huge Student Corgi": "EggMultiplier_D4", + }, + "overrideCost": 0, "pets": [ [ - "Frontman Jellyfish", - 90, + "Teacher Cat", + 89.44997, ], [ - "Player Penguin", + "Student Corgi", 10, ], [ - "Player Gecko", - 1, + "Coach Tiger", + 0.5, + ], + [ + "Nurse Shark", + 0.05, + ], + [ + "Huge Student Corgi", + 0.00003, ], ], "rarity": { @@ -31263,33 +31726,40 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "6 | Marble Bag Egg", + "configName": "Line Egg 8", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "607ff92cbca2c32c", + "hashShort": "2503fae2ba8a24f1", }, { - "category": "PetGamesEvent", + "category": "Line For Huge", "collection": "Eggs", "configData": { - "currency": "GameCoins", + "currency": "LineCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Dalgona Egg", - "overrideCost": 16000, + "maxNumPerAction": 1, + "name": "Line Egg", + "oddsFFlags": { + "Huge Student Corgi": "EggMultiplier_D4", + }, + "overrideCost": 0, "pets": [ [ - "Player Penguin", - 90, + "Teacher Cat", + 89.49998, ], [ - "Player Gecko", + "Student Corgi", 10, ], [ - "Player Fox", - 0.1, - "Nice", + "Coach Tiger", + 0.5, + ], + [ + "Huge Student Corgi", + 0.00002, ], ], "rarity": { @@ -31305,52 +31775,98 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "7 | Dalgona Egg", + "configName": "Line Egg 9", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "5c28cdb31f3bc6f8", + "hashShort": "43557f5d9423a860", }, { - "category": "PetGamesEvent", + "category": "Line For Huge", "collection": "Eggs", "configData": { - "currency": "GameCoins", + "currency": "LineCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Prize Egg", + "maxNumPerAction": 1, + "name": "Line Egg", "oddsFFlags": { - "Guard Bunny": "EggMultiplier_E1", - "Guard Hydra": "EggMultiplier_E2", - "Huge Player Fox": "EggMultiplier_E3", + "Huge Student Corgi": "EggMultiplier_D4", }, - "overrideCost": 35000, + "overrideCost": 0, "pets": [ [ - "Player Gecko", - 90, + "Teacher Cat", + 89.49999, ], [ - "Player Fox", - 9.998441, + "Student Corgi", + 10, ], [ - "Recruiter Axolotl", - 0.05, + "Coach Tiger", + 0.5, ], [ - "Guard Bunny", - 0.0015, - "Great", - ], + "Huge Student Corgi", + 0.00001, + ], + ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + "configName": "Line Egg 10", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "58823a047853b832", + }, + { + "category": "Line For Huge", + "collection": "Eggs", + "configData": { + "currency": "LineCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "maxNumPerAction": 1, + "name": "Line Egg", + "oddsFFlags": { + "Huge Teacher Cat": "EggMultiplier_D5", + "Titanic Teacher Cat": "EggMultiplier_D7", + }, + "overrideCost": 0, + "pets": [ [ - "Guard Hydra", - 0.00015, - "Insane", + "Coach Tiger", + 79.44497515, ], [ - "Huge Player Fox", - 0.000015, - "Insane", + "Nurse Shark", + 20, + ], + [ + "Librarian Beaver", + 0.5, + ], + [ + "Principal Anteater", + 0.05, + ], + [ + "Huge Teacher Cat", + 0.005, + ], + [ + "Titanic Teacher Cat", + 0.00002485, ], ], "rarity": { @@ -31366,31 +31882,150 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "8 | Prize Egg", + "configName": "Line Egg Inside", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "0c3df30ea27c3fe8", + "hashShort": "5fd7f010ad7337db", }, { - "category": "CannonTycoon", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "CannonTycoonCoins", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://134908672851123", + "name": "Exclusive Chad Egg", + "pets": [ + [ + "Chad Elephant", + 50, + ], + [ + "Buff Doge", + 35, + ], + [ + "Chad Bunny", + 13, + ], + [ + "Huge Chad Elephant", + 1.25, + ], + [ + "Huge Chad Bunny", + 0.7, + ], + [ + "Titanic Chad Gorilla", + 0.05, + ], + ], + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, + }, + "configName": "Exclusive Egg 38", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "d467960170347547", + }, + { + "category": "Line For Huge", + "collection": "Eggs", + "configData": { + "currency": "LineCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Hellfire Egg", - "overrideCost": 1, + "maxNumPerAction": 1, + "name": "Line Egg", + "oddsFFlags": { + "Huge Principal Anteater": "EggMultiplier_D6", + "Huge Teacher Cat": "EggMultiplier_D5", + "Titanic Teacher Cat": "EggMultiplier_D7", + }, + "overrideCost": 0, "pets": [ [ - "Rocket Shark", + "Coach Tiger", + 79.44442545, + ], + [ + "Nurse Shark", + 20, + ], + [ + "Librarian Beaver", + 0.5, + ], + [ + "Principal Anteater", + 0.05, + ], + [ + "Huge Teacher Cat", + 0.005, + ], + [ + "Huge Principal Anteater", + 0.0005, + ], + [ + "Titanic Teacher Cat", + 0.00007455, + ], + ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + "configName": "Line Egg Secret Inside", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "b91d8eff2d2914fc", + }, + { + "category": "Autumn", + "collection": "Eggs", + "configData": { + "currency": "Acorns", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Autumn Egg", + "overrideCost": 250, + "pets": [ + [ + "Beagle", 90, ], [ - "Stunt Raccoon", + "Mouse", 10, ], [ - "Crash Dummy Noob", + "Beaver", 0.1, "Nice", ], @@ -31408,31 +32043,31 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Hellfire Egg", + "configName": "1 | Autumn Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "1af8eb51f7737b77", + "hashShort": "f67e13a80132b0b9", }, { - "category": "CannonTycoon", + "category": "Autumn", "collection": "Eggs", "configData": { - "currency": "CannonTycoonCoins", + "currency": "Acorns", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Striped Balloon Egg", - "overrideCost": 10, + "name": "Apple Egg", + "overrideCost": 500, "pets": [ [ - "Stunt Raccoon", + "Mouse", 90, ], [ - "Crash Dummy Noob", + "Beaver", 10, ], [ - "Turbo Cheetah", + "Red Fox", 0.1, "Nice", ], @@ -31450,31 +32085,31 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Striped Balloon Egg", + "configName": "2 | Apple Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "ecb2e82b97238ea0", + "hashShort": "96903dde10b674d5", }, { - "category": "CannonTycoon", + "category": "Autumn", "collection": "Eggs", "configData": { - "currency": "CannonTycoonCoins", + "currency": "Acorns", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Rocketeer Egg", - "overrideCost": 150, + "name": "Scarecrow Egg", + "overrideCost": 1000, "pets": [ [ - "Crash Dummy Noob", + "Beaver", 90, ], [ - "Turbo Cheetah", + "Red Fox", 10, ], [ - "Plane Dragon", + "Orange Squirrel", 0.1, "Nice", ], @@ -31492,31 +32127,31 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "3 | Rocketeer Egg", + "configName": "3 | Scarecrow Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "ad4a12c028284279", + "hashShort": "a6f0215853d20e4f", }, { - "category": "CannonTycoon", + "category": "Autumn", "collection": "Eggs", "configData": { - "currency": "CannonTycoonCoins", + "currency": "Acorns", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Jetpack Egg", - "overrideCost": 750, + "name": "Campfire Egg", + "overrideCost": 2000, "pets": [ [ - "Turbo Cheetah", + "Red Fox", 90, ], [ - "Plane Dragon", + "Orange Squirrel", 10, ], [ - "Torpedo Shepherd", + "Scarecrow Dog", 0.1, "Nice", ], @@ -31534,49 +32169,51 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Jetpack Egg", + "configName": "4 | Campfire Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "b9be63883bd56660", + "hashShort": "7c0e39c4d467e613", }, { - "category": "CannonTycoon", + "category": "Autumn", "collection": "Eggs", "configData": { - "currency": "CannonTycoonCoins", + "currency": "Acorns", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Stunt Egg", + "name": "Pilgrim Egg", "oddsFFlags": { - "Huge Stunt Corgi": "EggMultiplier_I1", + "Corn Cat": "EggMultiplier_E2", + "Huge Scarecrow Dog": "EggMultiplier_E3", + "Pumpkin Spice Cat": "EggMultiplier_E1", }, - "overrideCost": 2500, + "overrideCost": 4000, "pets": [ [ - "Plane Dragon", + "Orange Squirrel", 90, ], [ - "Torpedo Shepherd", - 9.996796, + "Scarecrow Dog", + 9.996776, ], [ - "Stunt Corgi", + "Autumn Retriever", 0.05, ], [ - "Stunt Cat", + "Pumpkin Spice Cat", 0.003, "Great", ], [ - "Fireball Cat", + "Corn Cat", 0.0003, "Insane", ], [ - "Huge Stunt Corgi", - 0.00001, + "Huge Scarecrow Dog", + 0.00003, "Insane", ], ], @@ -31593,10 +32230,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Stunt Egg", + "configName": "5 | Pilgrim Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "7e28f5fa9523bce2", + "hashShort": "b044dc63ab1d95ab", }, { "category": "Exclusive Eggs", @@ -31606,36 +32243,32 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "disableModifiers": true, "disableRainbow": false, "goldChance": 0, - "icon": "rbxassetid://127054123305927", - "name": "Exclusive Matryoshka Egg", + "icon": "rbxassetid://120489631271296", + "name": "Exclusive Midnight Egg", "pets": [ [ - "Matryoshka Capybara", + "Midnight Cat", 50, ], [ - "Matryoshka Fox", + "Midnight Deer", 35, ], [ - "Matryoshka Dino", + "Midnight Zebra", 13, ], [ - "Huge Matryoshka Capybara", - 1.5, - ], - [ - "Huge Matryoshka Dino", - 0.39, + "Huge Midnight Cat", + 1.25, ], [ - "Titanic Matryoshka Cat", - 0.1, + "Huge Midnight Zebra", + 0.7, ], [ - "Gargantuan Matryoshka Bear", - 0.01, + "Titanic Midnight Lion", + 0.05, ], ], "rainbowChance": 2, @@ -31653,31 +32286,31 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` }, "shinyChance": 2, }, - "configName": "Exclusive Egg 44", + "configName": "Exclusive Egg 39", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "e31eb6c93ba71a02", + "hashShort": "2f9c67791d4b5c2b", }, { - "category": "CannonTycoon", + "category": "Autumn", "collection": "Eggs", "configData": { - "currency": "CannonTycoonCoins", + "currency": "Acorns", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Wild Fire Egg", - "overrideCost": 10000, + "name": "Autumn Mushroom Egg", + "overrideCost": 8000, "pets": [ [ - "Fireball Cat", + "Corn Cat", 90, ], [ - "Springy Axolotl", + "Skunk", 10, ], [ - "Parachute Monkey", + "Red Wolf", 1, ], ], @@ -31694,32 +32327,32 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "6 | Wild Fire Egg", + "configName": "6 | Autumn Mushroom Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "12be59035450994f", + "hashShort": "8b7784e609254b0f", }, { - "category": "CannonTycoon", + "category": "Autumn", "collection": "Eggs", "configData": { - "currency": "CannonTycoonCoins", + "currency": "Acorns", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Wild Frost Egg", - "overrideCost": 50000, + "name": "Creek Egg", + "overrideCost": 16000, "pets": [ [ - "Parachute Monkey", + "Skunk", 90, ], [ - "Jetpack Tiger", + "Red Wolf", 10, ], [ - "Wild Frost Agony", - 1, + "Autumn Red Panda", + 0.1, "Nice", ], ], @@ -31736,45 +32369,51 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "7 | Wild Frost Egg", + "configName": "7 | Creek Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "806b398133716dac", + "hashShort": "6e5b5355d8f89550", }, { - "category": "CannonTycoon", + "category": "Autumn", "collection": "Eggs", "configData": { - "currency": "CannonTycoonCoins", + "currency": "Acorns", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Wild Galaxy Egg", + "name": "Maple Egg", "oddsFFlags": { - "Huge Parachute Monkey": "EggMultiplier_I1", + "Autumn Chest Mimic": "EggMultiplier_E2", + "Autumn Teddy Bear": "EggMultiplier_E1", + "Huge Red Wolf": "EggMultiplier_E3", }, - "overrideCost": 250000, + "overrideCost": 35000, "pets": [ [ - "Jetpack Tiger", + "Red Wolf", 90, ], [ - "Wild Frost Agony", - 10, + "Autumn Red Panda", + 9.996766, ], [ - "Wild Fire Agony", + "Dark Fox", 0.05, + ], + [ + "Autumn Teddy Bear", + 0.003, "Great", ], [ - "Wild Galaxy Agony", - 0.0001, + "Autumn Chest Mimic", + 0.0003, "Insane", ], [ - "Huge Parachute Monkey", - 0.000006, + "Huge Red Wolf", + 0.00004, "Insane", ], ], @@ -31791,10 +32430,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "8 | Wild Galaxy Egg", + "configName": "8 | Maple Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "9bfda36bb2335bfb", + "hashShort": "226b6275b0dbe481", }, { "category": "Exclusive Eggs", @@ -31804,32 +32443,32 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "disableModifiers": true, "disableRainbow": false, "goldChance": 0, - "icon": "rbxassetid://78947231277939", - "name": "Valentine's Present", + "icon": "rbxassetid://78055889793752", + "name": "Exclusive Snow Globe Egg", "pets": [ [ - "Valentines Dominus", + "Snow Globe Corgi", 50, ], [ - "Lovemelon", + "Snow Globe Axolotl", 35, ], [ - "Valentines Angelus", + "Snow Globe Hamster", 13, ], [ - "Huge Valentines Dominus", - 1.5, + "Huge Snow Globe Corgi", + 1.25, ], [ - "Huge Valentines Angelus", - 0.4, + "Huge Snow Globe Hamster", + 0.7, ], [ - "Titanic M-14 PROTOTYPE", - 0.1, + "Titanic Snow Globe Cat", + 0.05, ], ], "rainbowChance": 2, @@ -31847,31 +32486,31 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` }, "shinyChance": 2, }, - "configName": "Valentines Present", + "configName": "Exclusive Egg 40", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "c0809be39150a426", + "hashShort": "2493e3a72f4b2cce", }, { - "category": "TowerTycoon", + "category": "Christmas2024", "collection": "Eggs", "configData": { - "currency": "ValentinesCoins", + "currency": "GingerbreadCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Love Tower Egg", + "name": "Gingerbread Egg", "overrideCost": 250, "pets": [ [ - "Valentines Sloth", + "Festive Seal", 90, ], [ - "Rose Garden Cat", + "Hot Cocoa Bear", 10, ], [ - "Raining Love Dog", + "Frost Hamster", 0.1, "Nice", ], @@ -31889,42 +32528,34 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "0 | Love Tower Egg", + "configName": "1 | Gingerbread Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "560c7029e7dd4ada", + "hashShort": "5ef17804ea5bb80d", }, { - "category": "TowerTycoon", + "category": "Christmas2024", "collection": "Eggs", "configData": { - "currency": "ValentinesCoins", + "currency": "GingerbreadCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Arrow Egg", - "oddsFFlags": { - "Huge Valentines Bear": "ValHuge1", - }, - "overrideCost": 250, + "name": "Jolly Egg", + "overrideCost": 500, "pets": [ [ - "Pink Poodle", + "Hot Cocoa Bear", 90, ], [ - "Valentines Bee", + "Frost Hamster", 10, ], [ - "Cupcake Hamster", + "Gingerbread Lion", 0.1, "Nice", ], - [ - "Huge Valentines Bear", - 0.0000012, - "Insane", - ], ], "rarity": { "Announce": true, @@ -31939,42 +32570,34 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Arrow Egg", + "configName": "2 | Jolly Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "ddf6c48a995c24ef", + "hashShort": "00ae4d032485f9fc", }, { - "category": "TowerTycoon", + "category": "Christmas2024", "collection": "Eggs", "configData": { - "currency": "ValentinesCoins", + "currency": "GingerbreadCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Cupid Egg", - "oddsFFlags": { - "Huge Valentines Bear": "ValHuge1", - }, - "overrideCost": 250, + "name": "Icy Egg", + "overrideCost": 1000, "pets": [ [ - "Valentines Bee", + "Frost Hamster", 90, ], [ - "Cupcake Hamster", + "Gingerbread Lion", 10, ], [ - "Valentines Bear", + "Nutcracker Bunny", 0.1, "Nice", ], - [ - "Huge Valentines Bear", - 0.0000012, - "Insane", - ], ], "rarity": { "Announce": true, @@ -31989,42 +32612,34 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Cupid Egg", + "configName": "3 | Icy Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "bbf69301c4c4cfa1", + "hashShort": "65c14c40e92bb626", }, { - "category": "TowerTycoon", + "category": "Christmas2024", "collection": "Eggs", "configData": { - "currency": "ValentinesCoins", + "currency": "GingerbreadCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Valentine Heart Egg", - "oddsFFlags": { - "Huge Valentines Bear": "ValHuge1", - }, - "overrideCost": 250, + "name": "Candy Cane Egg", + "overrideCost": 2000, "pets": [ [ - "Cupcake Hamster", + "Gingerbread Lion", 90, ], [ - "Valentines Bear", + "Nutcracker Bunny", 10, ], [ - "Love Cow", + "North Pole Unicorn", 0.1, "Nice", ], - [ - "Huge Valentines Bear", - 0.0000012, - "Insane", - ], ], "rarity": { "Announce": true, @@ -32039,40 +32654,41 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "3 | Valentine Heart Egg", + "configName": "4 | Candy Cane Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "249ba76af3015eb0", + "hashShort": "c351e6f7ce52120b", }, { - "category": "TowerTycoon", + "category": "Christmas2024", "collection": "Eggs", "configData": { - "currency": "ValentinesCoins", + "currency": "GingerbreadCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Valentine Bow Egg", - "oddsFFlags": { - "Huge Valentines Bear": "ValHuge1", - }, - "overrideCost": 250, + "name": "Frosty Egg", + "overrideCost": 4000, "pets": [ [ - "Valentines Bear", + "Nutcracker Bunny", 90, ], [ - "Love Cow", - 10, + "North Pole Unicorn", + 9.996796, ], [ - "Valentines Owl", - 0.1, - "Nice", + "Evil Snowman", + 0.05, ], [ - "Huge Valentines Bear", - 0.0000012, + "Crackling Dragon", + 0.003, + "Great", + ], + [ + "Lit Cat", + 0.0003, "Insane", ], ], @@ -32089,51 +32705,74 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Valentine Bow Egg", + "configName": "5 | Frosty Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "904027f20eac57c3", + "hashShort": "620a04ae0af827bd", }, { - "category": "TowerTycoon", + "category": "Christmas2024", "collection": "Eggs", "configData": { - "currency": "ValentinesCoins", + "currency": "GingerbreadCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Valentine Cupcake Egg", - "oddsFFlags": { - "Huge Valentines Bear": "ValHuge1", - }, - "overrideCost": 250, + "name": "Elf Egg", + "overrideCost": 8000, "pets": [ [ - "Love Cow", - 89.05, + "Lit Cat", + 90, ], [ - "Valentines Owl", + "Holly Corgi", 10, ], [ - "Love Lion", + "Holiday Hedgehog", 1, - "Nice", ], + ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + "configName": "6 | Elf Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "d129f3080d676ada", + }, + { + "category": "Christmas2024", + "collection": "Eggs", + "configData": { + "currency": "GingerbreadCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Tundra Egg", + "overrideCost": 16000, + "pets": [ [ - "Rose Cat", - 0.005, - "Insane", + "Holly Corgi", + 90, ], [ - "Valentines Unicorn", - 0.00005, - "Insane", + "Holiday Hedgehog", + 10, ], [ - "Huge Valentines Bear", - 0.0000012, - "Insane", + "Festive Bear", + 0.1, + "Nice", ], ], "rarity": { @@ -32149,56 +32788,54 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Valentine Cupcake Egg", + "configName": "7 | Tundra Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "e594129440338238", + "hashShort": "259b2b76d5502a1f", }, { - "category": "TowerTycoon", + "category": "Christmas2024", "collection": "Eggs", "configData": { - "currency": "ValentinesCoins", + "currency": "GingerbreadCoins", + "extraPetsClient": null, + "extraPetsServer": null, "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Valentine Cupcake Egg", + "name": "Present Egg", "oddsFFlags": { - "Huge Love Corgi": "ValHuge2", - "Huge Valentines Bear": "ValHuge1", + "Huge Festive Elf": "EggMultiplier_F2", + "Huge Holly Corgi": "EggMultiplier_F1", + "Icy Phoenix": "EggMultiplier_E2", + "Lit Octopus": "EggMultiplier_E1", }, - "overrideCost": 250, + "overrideCost": 35000, "pets": [ [ - "Love Cow", - 89.05, - ], - [ - "Valentines Owl", - 10, + "Holiday Hedgehog", + 90, ], [ - "Love Lion", - 1, - "Nice", + "Festive Bear", + 9.996796, ], [ - "Rose Cat", - 0.005, - "Insane", + "Naughty Cat", + 0.05, ], [ - "Valentines Unicorn", - 0.00005, - "Insane", + "Lit Octopus", + 0.003, + "Great", ], [ - "Huge Valentines Bear", - 0.0000012, + "Icy Phoenix", + 0.0003, "Insane", ], [ - "Huge Love Corgi", - 3e-7, + "Huge Holly Corgi", + 0.00001, "Insane", ], ], @@ -32215,62 +32852,50 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "6 | Valentine Cupcake Egg 2", + "configName": "8 | Present Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "fba855cf242c83cb", + "hashShort": "20fafc32d313238c", }, { - "category": "TowerTycoon", + "category": "SnowstormSurvival", "collection": "Eggs", "configData": { - "currency": "ValentinesCoins", + "currency": "SnowstormSurvival", + "forceFree": true, "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Valentine Cupcake Egg", + "name": "Snowstorm Survival 5x", "oddsFFlags": { - "Huge Love Corgi": "ValHuge2", - "Huge Valentines Bear": "ValHuge1", - "Titanic Love Corgi": "ValTitanic1", + "Huge Snowflake Pegasus": "EggMultiplier_G1", }, - "overrideCost": 250, + "overrideCost": 0, "pets": [ [ - "Love Cow", - 89.05, - ], - [ - "Valentines Owl", - 10, - ], - [ - "Love Lion", - 1, - "Nice", + "Holiday Hedgehog", + 90, ], [ - "Rose Cat", - 0.005, - "Insane", + "Festive Bear", + 9.996796, ], [ - "Valentines Unicorn", - 0.00005, - "Insane", + "Naughty Cat", + 0.05, ], [ - "Huge Valentines Bear", - 0.0000012, - "Insane", + "Lit Octopus", + 0.003, + "Great", ], [ - "Huge Love Corgi", - 3e-7, + "Icy Phoenix", + 0.0003, "Insane", ], [ - "Titanic Love Corgi", - 1.5e-8, + "Huge Snowflake Pegasus", + 0.0000049999999999999996, "Insane", ], ], @@ -32287,103 +32912,110 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "7 | Valentine Cupcake Egg 3", + "configName": "1 | Snowstorm Survival 5x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "7e872c0cf8e69c04", + "hashShort": "d76d3dee0f3af36f", }, { - "category": "Exclusive Eggs", + "category": "SnowstormSurvival", "collection": "Eggs", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://88086887334640", - "name": "Exclusive Jurassic Egg", + "currency": "SnowstormSurvival", + "forceFree": true, + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Snowstorm Survival 15x", + "oddsFFlags": { + "Huge Snowflake Pegasus": "EggMultiplier_G1", + }, + "overrideCost": 0, "pets": [ [ - "Jurassic Crocodile", - 50, - ], - [ - "Jurassic Elephant", - 35, + "Holiday Hedgehog", + 90, ], [ - "Jurassic Beaver", - 13, + "Festive Bear", + 9.996796, ], [ - "Huge Jurassic Crocodile", - 1.5, + "Naughty Cat", + 0.05, ], [ - "Huge Jurassic Beaver", - 0.39, + "Lit Octopus", + 0.003, + "Great", ], [ - "Titanic Jurassic Feline", - 0.1, + "Icy Phoenix", + 0.0003, + "Insane", ], [ - "Gargantuan Jurassic Dragon", - 0.01, + "Huge Snowflake Pegasus", + 0.000014999999999999999, + "Insane", ], ], - "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "shinyChance": 2, }, - "configName": "Exclusive Egg 45", + "configName": "2 | Snowstorm Survival 15x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "30959fbe71e1b8d1", + "hashShort": "9b6cb4ec96c42cfa", }, { - "category": "TowerTycoon", + "category": "SnowstormSurvival", "collection": "Eggs", "configData": { - "currency": "ValentinesCoins", - "extraPetsClient": null, - "extraPetsServer": null, + "currency": "SnowstormSurvival", + "forceFree": true, "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Valentine Cupcake Egg", + "name": "Snowstorm Survival 50x", "oddsFFlags": { - "Huge Heartbreak Fairy": "ValHuge1", - "Huge Shattered Heart Agony": "ValHuge3", + "Huge Snowflake Pegasus": "EggMultiplier_G1", }, - "overrideCost": 250, + "overrideCost": 0, "pets": [ [ - "Valentines Sloth", + "Holiday Hedgehog", 90, ], [ - "Rose Garden Cat", - 10, + "Festive Bear", + 9.996796, ], [ - "Raining Love Dog", - 0.1, - "Nice", + "Naughty Cat", + 0.05, ], [ - "Huge Heartbreak Fairy", - 0.0000012, + "Lit Octopus", + 0.003, + "Great", + ], + [ + "Icy Phoenix", + 0.0003, + "Insane", + ], + [ + "Huge Snowflake Pegasus", + 0.000049999999999999996, "Insane", ], ], @@ -32400,43 +33032,50 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Valentine Cupcake Egg", + "configName": "3 | Snowstorm Survival 50x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "28ddcb35b89b18e9", + "hashShort": "c95f08f471d62b9a", }, { - "category": "TowerTycoon", + "category": "SnowstormSurvival", "collection": "Eggs", "configData": { - "currency": "ValentinesCoins", - "extraPetsClient": null, - "extraPetsServer": null, + "currency": "SnowstormSurvival", + "forceFree": true, "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Valentine Rose Egg", + "name": "Snowstorm Survival 100x", "oddsFFlags": { - "Huge Heartbreak Fairy": "ValHuge1", - "Huge Shattered Heart Agony": "ValHuge3", + "Huge Snowflake Pegasus": "EggMultiplier_G1", }, - "overrideCost": 250, + "overrideCost": 0, "pets": [ [ - "Rose Garden Cat", + "Holiday Hedgehog", 90, ], [ - "Raining Love Dog", - 10, + "Festive Bear", + 9.996796, ], [ - "Valentines Axolotl", - 0.1, - "Nice", + "Naughty Cat", + 0.05, ], [ - "Huge Heartbreak Fairy", - 0.0000012, + "Lit Octopus", + 0.003, + "Great", + ], + [ + "Icy Phoenix", + 0.0003, + "Insane", + ], + [ + "Huge Snowflake Pegasus", + 0.00009999999999999999, "Insane", ], ], @@ -32453,97 +33092,93 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Valentine Rose Egg", + "configName": "4 | Snowstorm Survival 100x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "d95fb568e96ac80e", + "hashShort": "c33b5df15ab0c1af", }, { - "category": "TowerTycoon", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "ValentinesCoins", - "extraPetsClient": null, - "extraPetsServer": null, - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Valentine Ice Cream Egg", - "oddsFFlags": { - "Huge Heartbreak Fairy": "ValHuge1", - "Huge Shattered Heart Agony": "ValHuge3", - }, - "overrideCost": 250, + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://105703918956378", + "name": "Exclusive Snowflake Egg", "pets": [ [ - "Raining Love Dog", - 90, + "Holiday Bearserker", + 50, ], [ - "Valentines Axolotl", - 10, + "Festive Hydra", + 35, ], [ - "Heartbreak Fairy", + "Naughty Dominus", + 13, + ], + [ + "Huge Holiday Bearserker", + 1.5, + ], + [ + "Huge Naughty Dominus", + 0.39, + ], + [ + "Titanic Snowflake Angelus", 0.1, - "Nice", ], [ - "Huge Heartbreak Fairy", - 0.0000012, - "Insane", + "Gargantuan Santa Paws", + 0.01, ], ], + "productIds": [], + "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "shinyChance": 2, }, - "configName": "3 | Valentine Ice Cream Egg", + "configName": "Exclusive Egg 41", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "ce4e475f9496f1d4", + "hashShort": "0b4481afaa47b6b5", }, { - "category": "TowerTycoon", + "category": "Christmas2024", "collection": "Eggs", "configData": { - "currency": "ValentinesCoins", - "extraPetsClient": null, - "extraPetsServer": null, + "currency": "GingerbreadCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Valentine Jar Egg", - "oddsFFlags": { - "Huge Heartbreak Fairy": "ValHuge1", - "Huge Shattered Heart Agony": "ValHuge3", - }, - "overrideCost": 250, + "name": "Festive Egg", + "overrideCost": 7000000, "pets": [ [ - "Valentines Axolotl", + "Icy Phoenix", 90, ], [ - "Heartbreak Fairy", + "Marzipan Piggy", 10, ], [ - "Mr. Love Cat", - 0.1, - "Nice", - ], - [ - "Huge Heartbreak Fairy", - 0.0000012, - "Insane", + "Nutcracker Squirrel", + 1, ], ], "rarity": { @@ -32559,55 +33194,34 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Valentine Jar Egg", + "configName": "9 | Snowstorm Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "7c3ec7423a6ab199", + "hashShort": "5277530bbf08995d", }, { - "category": "TowerTycoon", + "category": "Christmas2024", "collection": "Eggs", "configData": { - "currency": "ValentinesCoins", - "extraPetsClient": null, - "extraPetsServer": null, + "currency": "GingerbreadCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Valentine Present Egg", - "oddsFFlags": { - "Huge Heartbreak Fairy": "ValHuge1", - "Huge Shattered Heart Agony": "ValHuge3", - }, - "overrideCost": 250, + "name": "Ornament Egg", + "overrideCost": 20000000, "pets": [ [ - "Heartbreak Fairy", - 89.05, + "Marzipan Piggy", + 90, ], [ - "Mr. Love Cat", + "Nutcracker Squirrel", 10, ], [ - "Love Peacock", - 1, + "Merry Manatee", + 0.1, "Nice", ], - [ - "Shattered Heart Agony", - 0.005, - "Insane", - ], - [ - "Loveserker", - 0.00005, - "Insane", - ], - [ - "Huge Heartbreak Fairy", - 0.0000012, - "Insane", - ], ], "rarity": { "Announce": true, @@ -32622,65 +33236,54 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Valentine Present Egg", + "configName": "10 | Ornament Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "b68f34416b3b0648", + "hashShort": "daec7ab0a0e17b27", }, { - "category": "TowerTycoon", + "category": "Christmas2024", "collection": "Eggs", "configData": { - "currency": "ValentinesCoins", + "currency": "GingerbreadCoins", "extraPetsClient": null, "extraPetsServer": null, "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Valentine Present Egg 3", + "name": "Christmas Tree Egg", "oddsFFlags": { - "Huge Heartbreak Fairy": "ValHuge1", - "Huge Love Corgi": "ValHuge2", - "Huge Shattered Heart Agony": "ValHuge3", - "Titanic Loveserker": "ValTitanic1", + "Huge Festive Elf": "EggMultiplier_F2", + "Huge Nutcracker Squirrel": "EggMultiplier_F1", + "Jolly Dino": "EggMultiplier_E1", + "Snow Elf": "EggMultiplier_E2", }, - "overrideCost": 250, + "overrideCost": 85000000, "pets": [ [ - "Love Cow", - 89.05, - ], - [ - "Valentines Owl", - 10, - ], - [ - "Love Lion", - 1, - "Nice", + "Nutcracker Squirrel", + 90, ], [ - "Rose Cat", - 0.005, - "Insane", + "Merry Manatee", + 9.996796, ], [ - "Valentines Unicorn", - 0.00005, - "Insane", + "Figgy Fox", + 0.05, ], [ - "Huge Heartbreak Fairy", - 0.0000012, - "Insane", + "Jolly Dino", + 0.003, + "Great", ], [ - "Huge Love Corgi", - 2.4000000000000003e-7, + "Snow Elf", + 0.0003, "Insane", ], [ - "Titanic Loveserker", - 1.5e-8, + "Huge Nutcracker Squirrel", + 0.00001, "Insane", ], ], @@ -32697,59 +33300,60 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "7 | Valentine Present Egg 3", + "configName": "11 | Pine Tree Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "bf688544d83b810f", + "hashShort": "4c04e89e3537d24c", }, { - "category": "TowerTycoon", + "category": "SecretSantaRoom", "collection": "Eggs", "configData": { - "currency": "ValentinesCoins", + "currency": "GingerbreadCoins", "extraPetsClient": null, "extraPetsServer": null, "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Valentine Present Egg 2", + "name": "Santa's Cottage Egg", "oddsFFlags": { - "Huge Heartbreak Fairy": "ValHuge1", - "Huge Loveserker": "ValHuge2", - "Huge Shattered Heart Agony": "ValHuge3", + "Huge Festive Elf": "EggMultiplier_F2", + "Huge Merry Manatee": "EggMultiplier_F3", + "Huge Nutcracker Squirrel": "EggMultiplier_F1", + "Jolly Dino": "EggMultiplier_E1", + "Snow Elf": "EggMultiplier_E2", }, - "overrideCost": 250, + "overrideCost": 350000, "pets": [ [ - "Love Cow", - 89.05, + "Nutcracker Squirrel", + 90, ], [ - "Valentines Owl", - 10, + "Merry Manatee", + 9.996796, ], [ - "Love Lion", - 1, - "Nice", + "Figgy Fox", + 0.05, ], [ - "Rose Cat", - 0.005, - "Insane", + "Jolly Dino", + 0.003, + "Great", ], [ - "Valentines Unicorn", - 0.00005, + "Snow Elf", + 0.0003, "Insane", ], [ - "Huge Heartbreak Fairy", - 0.0000012, + "Huge Nutcracker Squirrel", + 0.00001, "Insane", ], [ - "Huge Loveserker", - 2.4000000000000003e-7, + "Huge Merry Manatee", + 0.0001, "Insane", ], ], @@ -32766,156 +33370,88 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "6 | Valentine Present Egg 2", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "be4f74ef89558906", - }, - { - "category": "CardPacks", - "collection": "Eggs", - "configData": { - "currency": "CardCoins", - "icon": "rbxassetid://15172355963", - "instant_purchase": [ - [ - "Lootbox", - "Fantasy Pack", - ], - ], - "isCardPack": true, - "isCustomEgg": true, - "name": "Fantasy Pack", - "overrideCost": 250000, - "pets": [], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, - "configName": "Fantasy Pack", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "ca59c363fc77136c", - }, - { - "category": "CardPacks", - "collection": "Eggs", - "configData": { - "currency": "CardCoins", - "icon": "rbxassetid://15172355963", - "instant_purchase": [ - [ - "Lootbox", - "Retro Pack", - ], - ], - "isCardPack": true, - "isCustomEgg": true, - "name": "Retro Pack", - "overrideCost": 10000, - "pets": [], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, - "configName": "Retro Pack", + "configName": "1 | Secret Santa Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "e7e76e37b2a51b83", + "hashShort": "27712bee508b87d3", }, { - "category": "CardPacks", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "CardCoins", - "icon": "rbxassetid://15172355963", - "instant_purchase": [ - [ - "Lootbox", - "Nightmare Pack", - ], - ], - "isCardPack": true, - "isCustomEgg": true, - "name": "Nightmare Pack", - "overrideCost": 50000, + "disableGold": true, + "disableModifiers": true, + "disableRainbow": true, + "goldChance": 0, + "icon": "rbxassetid://15187975109", + "name": "Grinch Egg", "pets": [], + "rainbowChance": 0, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "shinyChance": 0, }, - "configName": "Nightmare Pack", + "configName": "Grinch Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "dcaf8b4efbf982f2", + "hashShort": "b78f0dd10d4148ee", }, { - "category": "Machine Eggs", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "disableGold": false, + "disableGold": true, "disableModifiers": true, "disableRainbow": false, - "goldChance": 5, - "icon": "rbxassetid://81653039212838", - "name": "Gargantuan Machine Grim Reaper Egg", + "goldChance": 0, + "icon": "rbxassetid://99979001566139", + "name": "Exclusive Hypnotic Egg", "pets": [ [ - "Huge Green Cobra", - 49.45, + "Hypnotic Cat", + 50, ], [ - "Huge Detective Terrier", - 30, + "Hypnotic Griffin", + 35, ], [ - "Huge Ladybug", - 15, + "Hypnotic Dragon", + 13, ], [ - "Huge Spitting Dino", - 4, + "Huge Hypnotic Cat", + 1.5, ], [ - "Huge Stacked Dominus", - 1, + "Huge Hypnotic Dragon", + 0.39, ], [ - "Titanic Owl", - 0.5, + "Titanic Hypnotic Monkey", + 0.1, ], [ - "Gargantuan Grim Reaper", - 0.05, + "Gargantuan Hypnotic Kitsune", + 0.01, ], ], + "productIds": { + "10 Exclusive Eggs": 2690050254, + "100 Exclusive Eggs": 2690053074, + "3 Exclusive Eggs": 2690049831, + "Exclusive Egg": 2690049522, + }, "rainbowChance": 2, "rarity": { "Announce": true, @@ -32931,226 +33467,227 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` }, "shinyChance": 2, }, - "configName": "Huge Machine Egg 5", + "configName": "Exclusive Egg 42", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "8555e92991b1840d", + "hashShort": "90a31a2b1ff93814", }, { - "category": "CardPacks", + "category": "Update 41", "collection": "Eggs", "configData": { - "currency": "CardCoins", + "currency": "VoidCoins", + "eggNumber": 247, "icon": "rbxassetid://15172355963", - "instant_purchase": [ + "name": "Doodle Flower Egg ", + "pets": [ [ - "Lootbox", - "Pog Pack", + "Doodle Cat", + 99, + ], + [ + "Doodle Corgi", + 1, + "Nice", + ], + [ + "Doodle Bunny", + 0.1, + "Great", ], ], - "isCardPack": true, - "isCustomEgg": true, - "name": "Pog Pack", - "overrideCost": 50000, - "pets": [], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 3, }, - "configName": "Pog Pack", + "configName": "247 | Doodle Flower Egg ", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "d1a9cdfa0a04da3b", + "hashShort": "d1f64f480b23045c", }, { - "category": "CardPacks", + "category": "Update 41", "collection": "Eggs", "configData": { - "currency": "CardCoins", - "icon": "rbxassetid://15172355963", - "instant_purchase": [ + "currency": "VoidCoins", + "eggNumber": 248, + "goldenThumbnail": "rbxassetid://121799286739213", + "icon": "rbxassetid://132468687993989", + "name": "Doodle Safari Egg", + "pets": [ [ - "Lootbox", - "Axolotl Pack", + "Doodle Tiger", + 90, + ], + [ + "Doodle Elephant", + 10, + ], + [ + "Doodle Rhino", + 0.5, + "Great", ], ], - "isCardPack": true, - "isCustomEgg": true, - "name": "Axolotl Pack", - "overrideCost": 75000, - "pets": [], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 3, }, - "configName": "Axolotl Pack", + "configName": "248 | Doodle Safari Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "a3ce730bcc11b8f4", + "dateModified": "2026-04-18T15:56:37.194Z", + "hashShort": "71f8986c30f7ad90", }, { - "category": "Exclusive Eggs", + "category": "Update 41", "collection": "Eggs", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://110505952197309", - "name": "Exclusive Dot Matrix Egg", + "currency": "VoidCoins", + "eggNumber": 249, + "goldenThumbnail": "rbxassetid://96619994698724", + "icon": "rbxassetid://99248678833646", + "name": "Doodle Fairy Egg", "pets": [ [ - "Dot Matrix Cat", - 50, - ], - [ - "Dot Matrix Snail", - 35, + "Doodle Fairy", + 90, ], [ - "Dot Matrix Axolotl", - 13, + "Doodle Griffin", + 10, ], [ - "Huge Dot Matrix Cat", - 1.5, + "Doodle Dragon", + 1, + "Nice", ], + ], + "worldNumber": 3, + }, + "configName": "249 | Doodle Fairy Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:37.200Z", + "hashShort": "30ba34047f1cbeaa", + }, + { + "category": "Update 41", + "collection": "Eggs", + "configData": { + "currency": "VoidCoins", + "eggNumber": 250, + "goldenThumbnail": "rbxassetid://72175519858354", + "icon": "rbxassetid://86293510501945", + "name": "Doodle Gem Egg", + "pets": [ [ - "Huge Dot Matrix Axolotl", - 0.39, + "Doodle Unicorn", + 90, ], [ - "Titanic Dot Matrix Kitsune", - 0.1, + "Doodle Agony", + 10, ], [ - "Gargantuan Dot Matrix Pegasus", - 0.01, + "Doodle Hydra", + 0.25, + "Great", ], ], - "productIds": { - "10 Exclusive Eggs": 3234244263, - "100 Exclusive Eggs": 3234244354, - "3 Exclusive Eggs": 3234243894, - "Exclusive Egg": 3234243790, - }, - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, + "worldNumber": 3, }, - "configName": "Exclusive Egg 46", + "configName": "250 | Doodle Gem Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "42321b99563dbd17", + "dateModified": "2026-04-18T15:56:37.197Z", + "hashShort": "7174cb0d3caeb130", }, { - "category": "Lobby", + "category": "Update 41", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Horseshoe Egg", - "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", - }, - "overrideCost": 100, + "currency": "VoidCoins", + "eggNumber": 251, + "goldenThumbnail": "rbxassetid://137828380319186", + "icon": "rbxassetid://77993376309886", + "name": "Doodle Tropical Egg", "pets": [ [ - "Lucki Cat", + "Doodle Narwhal", 99, ], [ - "Leprechaun Dog", + "Doodle Crocodile", 1, ], [ - "Lucki Tiger", - 0.005, - "Nice", + "Doodle Dolphin", + 0.001, + "Great", ], [ - "Huge Clover Griffin", - 0.0000012, + "Doodle Shark", + 0.00025, + "Insane", + ], + [ + "Doodle Axolotl", + 0.0000185, + "Insane", + ], + [ + "Huge Chroma Doodle Axolotl", + 0.000001, "Insane", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 3, }, - "configName": "2 | Lucky Raid Lobby Egg 2", + "configName": "251 | Doodle Tropical Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "91d63b8891b1f631", + "dateModified": "2026-04-18T15:56:37.228Z", + "hashShort": "8ddb608dc6cd53b2", }, { - "category": "Lobby", + "category": "ControlRoom", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "GameCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Clover Egg", + "name": "Control Room Egg", "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", + "Frontman Jellyfish": "EggMultiplier_E2", + "Guard Dominus": "EggMultiplier_E1", + "Huge Frontman Jellyfish": "EggMultiplier_H2", + "Huge Player Panda": "EggMultiplier_H1", }, - "overrideCost": 100, + "overrideCost": 8000, "pets": [ [ - "Leprechaun Dog", - 99.9, + "Guard Wolf", + 90, ], [ - "Lucki Tiger", - 0.1, + "Player Corgi", + 9.996796, ], [ - "Lucki Monkey", - 0.00005, - "Nice", + "Guard Dragon", + 0.05, ], [ - "Huge Clover Griffin", - 0.0000012, + "Guard Dominus", + 0.003, + "Great", + ], + [ + "Frontman Jellyfish", + 0.0003, + "Insane", + ], + [ + "Huge Player Panda", + 0.00002, + "Insane", + ], + [ + "Huge Frontman Jellyfish", + 0.0000033333333333333337, "Insane", ], ], @@ -33167,47 +33704,34 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "3 | Lucky Raid Lobby Egg 3", + "configName": "1 | Control Room Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "e32ba6d8b84dd12b", + "hashShort": "3cd36a026a37ea23", }, { - "category": "Lobby", + "category": "PetGamesEvent", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "GameCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Clover Egg", - "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", - }, - "overrideCost": 100, + "name": "Guard Egg", + "overrideCost": 250, "pets": [ [ - "Leprechaun Dog", - 99.954545, - ], - [ - "Lucki Tiger", - 0.1, + "Doll Cat", + 90, ], [ - "Lucki Monkey", - 0.0005, - "Nice", + "Player Panda", + 10, ], [ - "Clover Lion", - 0.000005, + "Guard Raccoon", + 0.1, "Nice", ], - [ - "Huge Clover Griffin", - 0.0000012, - "Insane", - ], ], "rarity": { "Announce": true, @@ -33222,47 +33746,34 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Lucky Raid Lobby Egg 4", + "configName": "1 | Guard Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "7a049cba20ac0688", + "hashShort": "e0e30173394837a4", }, { - "category": "Lobby", + "category": "PetGamesEvent", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "GameCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Clover Egg", - "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", - }, - "overrideCost": 100, + "name": "Playground Egg", + "overrideCost": 500, "pets": [ [ - "Lucki Tiger", - 99.954545, - ], - [ - "Lucki Monkey", - 0.1, + "Player Panda", + 90, ], [ - "Clover Lion", - 0.0005, - "Nice", + "Guard Raccoon", + 10, ], [ - "Lucki Wolf", - 0.000005, + "Player Piggy", + 0.1, "Nice", ], - [ - "Huge Clover Griffin", - 0.0000012, - "Insane", - ], ], "rarity": { "Announce": true, @@ -33277,47 +33788,34 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Lucky Raid Lobby Egg 5", + "configName": "2 | Playground Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "f36adc8c8ecd8c47", + "hashShort": "a6959793287ba339", }, { - "category": "Lobby", + "category": "PetGamesEvent", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "GameCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Leprechaun Egg", - "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", - }, - "overrideCost": 100, + "name": "Frontman Egg", + "overrideCost": 1000, "pets": [ [ - "Lucki Monkey", - 99.954545, - ], - [ - "Clover Lion", - 0.1, + "Guard Raccoon", + 90, ], [ - "Lucki Wolf", - 0.0005, - "Nice", + "Player Piggy", + 10, ], [ - "Clover Peacock", - 0.000005, + "Guard Wolf", + 0.1, "Nice", ], - [ - "Huge Clover Griffin", - 0.0000012, - "Insane", - ], ], "rarity": { "Announce": true, @@ -33332,47 +33830,34 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "6 | Lucky Raid Lobby Egg 6", + "configName": "3 | Frontman Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "891f6dbdda3630b6", + "hashShort": "9cc6f1fc2a4dcf72", }, { - "category": "Lobby", + "category": "PetGamesEvent", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "GameCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Leprechaun Egg", - "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", - }, - "overrideCost": 100, + "name": "Staircase Egg", + "overrideCost": 2000, "pets": [ [ - "Clover Lion", - 99.954545, - ], - [ - "Lucki Wolf", - 0.1, + "Player Piggy", + 90, ], [ - "Clover Peacock", - 0.0005, - "Nice", + "Guard Wolf", + 10, ], [ - "Clover Butterfly", - 0.000005, + "Player Corgi", + 0.1, "Nice", ], - [ - "Huge Clover Griffin", - 0.0000012, - "Insane", - ], ], "rarity": { "Announce": true, @@ -33387,45 +33872,41 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "7 | Lucky Raid Lobby Egg 7", + "configName": "4 | Staircase Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "651eb9a487dc2f18", + "hashShort": "14248d4fc0688142", }, { - "category": "Lobby", + "category": "PetGamesEvent", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "GameCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Pot of Gold Egg", - "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", - }, - "overrideCost": 100, + "name": "Player Egg", + "overrideCost": 4000, "pets": [ [ - "Lucki Wolf", - 99.954545, + "Guard Wolf", + 90, ], [ - "Clover Peacock", - 0.1, + "Player Corgi", + 9.996796, ], [ - "Clover Butterfly", - 0.0005, - "Great", + "Guard Dragon", + 0.05, ], [ - "Lucki Dominus", - 0.000005, - "Insane", + "Guard Dominus", + 0.003, + "Great", ], [ - "Huge Clover Griffin", - 0.0000012, + "Frontman Jellyfish", + 0.0003, "Insane", ], ], @@ -33442,93 +33923,92 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "8 | Lucky Raid Lobby Egg 8", + "configName": "5 | Player Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "7a415608d3c8daf3", + "hashShort": "909b4430845e8eee", }, { - "category": "Lobby", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Pot of Gold Egg", - "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", - }, - "overrideCost": 100, + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://87034502118666", + "name": "Exclusive Googly Egg", "pets": [ [ - "Lucki Wolf", - 99.949995, + "Googly Corgi", + 50, ], [ - "Clover Peacock", - 0.1, + "Googly Cat", + 35, ], [ - "Clover Butterfly", - 0.005, - "Great", + "Googly Shark", + 13, ], [ - "Lucki Dominus", - 0.00005, - "Insane", + "Huge Googly Corgi", + 1.5, ], [ - "Pot of Gold Cat", - 0.000005, - "Insane", + "Huge Googly Shark", + 0.39, ], [ - "Huge Clover Griffin", - 0.0000012, - "Insane", + "Titanic Googly Blobfish", + 0.1, + ], + [ + "Gargantuan Googly Agony", + 0.01, ], ], + "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "shinyChance": 2, }, - "configName": "9 | Lucky Raid Lobby Egg 9", + "configName": "Exclusive Egg 43", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "9ad7f08132419722", + "hashShort": "e966f7269a798d3f", }, { - "category": "Lobby", + "category": "PetGamesEvent", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "GameCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Horseshoe Egg", - "overrideCost": 100, + "name": "Marble Bag Egg", + "overrideCost": 8000, "pets": [ [ - "Lucki Cat", - 99, + "Frontman Jellyfish", + 90, ], [ - "Leprechaun Dog", - 1, + "Player Penguin", + 10, ], [ - "Huge Clover Griffin", - 0.0000012, - "Insane", + "Player Gecko", + 1, ], ], "rarity": { @@ -33544,33 +34024,33 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Lucky Raid Lobby Egg 1", + "configName": "6 | Marble Bag Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "db7c7bda3e9e1335", + "hashShort": "607ff92cbca2c32c", }, { - "category": "Raid", + "category": "PetGamesEvent", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "GameCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Horseshoe Egg", - "overrideCost": 200, + "name": "Dalgona Egg", + "overrideCost": 16000, "pets": [ [ - "Lucki Cat", - 99, + "Player Penguin", + 90, ], [ - "Leprechaun Dog", - 1, + "Player Gecko", + 10, ], [ - "Huge Clover Griffin", - 0.0000012, - "Insane", + "Player Fox", + 0.1, + "Nice", ], ], "rarity": { @@ -33586,40 +34066,51 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Lucky Raid Egg 1", + "configName": "7 | Dalgona Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "6abf44953d65a728", + "hashShort": "5c28cdb31f3bc6f8", }, { - "category": "Raid", + "category": "PetGamesEvent", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "GameCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Horseshoe Egg", + "name": "Prize Egg", "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", + "Guard Bunny": "EggMultiplier_E1", + "Guard Hydra": "EggMultiplier_E2", + "Huge Player Fox": "EggMultiplier_E3", }, - "overrideCost": 200, + "overrideCost": 35000, "pets": [ [ - "Lucki Cat", - 95, + "Player Gecko", + 90, ], [ - "Leprechaun Dog", - 5, + "Player Fox", + 9.998441, ], [ - "Lucki Tiger", + "Recruiter Axolotl", 0.05, - "Nice", ], [ - "Huge Clover Griffin", - 0.0000012, + "Guard Bunny", + 0.0015, + "Great", + ], + [ + "Guard Hydra", + 0.00015, + "Insane", + ], + [ + "Huge Player Fox", + 0.000015, "Insane", ], ], @@ -33636,42 +34127,34 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Lucky Raid Egg 2", + "configName": "8 | Prize Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "b5e7c859b25f44bd", + "hashShort": "0c3df30ea27c3fe8", }, { - "category": "Raid", + "category": "CannonTycoon", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "CannonTycoonCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Clover Egg", - "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", - }, - "overrideCost": 200, + "name": "Hellfire Egg", + "overrideCost": 1, "pets": [ [ - "Leprechaun Dog", - 99, + "Rocket Shark", + 90, ], [ - "Lucki Tiger", - 1, + "Stunt Raccoon", + 10, ], [ - "Lucki Monkey", - 0.0005, + "Crash Dummy Noob", + 0.1, "Nice", ], - [ - "Huge Clover Griffin", - 0.0000012, - "Insane", - ], ], "rarity": { "Announce": true, @@ -33686,47 +34169,34 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "3 | Lucky Raid Egg 3", + "configName": "1 | Hellfire Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "1a5ae274ebe4072c", + "hashShort": "1af8eb51f7737b77", }, { - "category": "Raid", + "category": "CannonTycoon", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "CannonTycoonCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Clover Egg", - "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", - }, - "overrideCost": 200, + "name": "Striped Balloon Egg", + "overrideCost": 10, "pets": [ [ - "Leprechaun Dog", - 99.05, - ], - [ - "Lucki Tiger", - 1, + "Stunt Raccoon", + 90, ], [ - "Lucki Monkey", - 0.005, - "Nice", + "Crash Dummy Noob", + 10, ], [ - "Clover Lion", - 0.00005, + "Turbo Cheetah", + 0.1, "Nice", ], - [ - "Huge Clover Griffin", - 0.0000012, - "Insane", - ], ], "rarity": { "Announce": true, @@ -33741,47 +34211,34 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Lucky Raid Egg 4", + "configName": "2 | Striped Balloon Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "a6da00234ba71481", + "hashShort": "ecb2e82b97238ea0", }, { - "category": "Raid", + "category": "CannonTycoon", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "CannonTycoonCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Clover Egg", - "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", - }, - "overrideCost": 200, + "name": "Rocketeer Egg", + "overrideCost": 150, "pets": [ [ - "Lucki Tiger", - 99.05, - ], - [ - "Lucki Monkey", - 1, + "Crash Dummy Noob", + 90, ], [ - "Clover Lion", - 0.005, - "Nice", + "Turbo Cheetah", + 10, ], [ - "Lucki Wolf", - 0.00005, + "Plane Dragon", + 0.1, "Nice", ], - [ - "Huge Clover Griffin", - 0.0000012, - "Insane", - ], ], "rarity": { "Announce": true, @@ -33796,47 +34253,34 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Lucky Raid Egg 5", + "configName": "3 | Rocketeer Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "28c43155db842853", + "hashShort": "ad4a12c028284279", }, { - "category": "Raid", + "category": "CannonTycoon", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "CannonTycoonCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Leprechaun Egg", - "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", - }, - "overrideCost": 200, + "name": "Jetpack Egg", + "overrideCost": 750, "pets": [ [ - "Lucki Monkey", - 99.05, - ], - [ - "Clover Lion", - 1, + "Turbo Cheetah", + 90, ], [ - "Lucki Wolf", - 0.005, - "Nice", + "Plane Dragon", + 10, ], [ - "Clover Peacock", - 0.00005, + "Torpedo Shepherd", + 0.1, "Nice", ], - [ - "Huge Clover Griffin", - 0.0000012, - "Insane", - ], ], "rarity": { "Announce": true, @@ -33851,45 +34295,49 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "6 | Lucky Raid Egg 6", + "configName": "4 | Jetpack Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "54e0338911471273", + "hashShort": "b9be63883bd56660", }, { - "category": "Raid", + "category": "CannonTycoon", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "CannonTycoonCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Leprechaun Egg", + "name": "Stunt Egg", "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", + "Huge Stunt Corgi": "EggMultiplier_I1", }, - "overrideCost": 200, + "overrideCost": 2500, "pets": [ [ - "Clover Lion", - 99.05, + "Plane Dragon", + 90, ], [ - "Lucki Wolf", - 1, + "Torpedo Shepherd", + 9.996796, ], [ - "Clover Peacock", - 0.005, - "Nice", + "Stunt Corgi", + 0.05, ], [ - "Clover Butterfly", - 0.00005, - "Nice", + "Stunt Cat", + 0.003, + "Great", ], [ - "Huge Clover Griffin", - 0.0000012, + "Fireball Cat", + 0.0003, + "Insane", + ], + [ + "Huge Stunt Corgi", + 0.00001, "Insane", ], ], @@ -33906,106 +34354,92 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "7 | Lucky Raid Egg 7", + "configName": "5 | Stunt Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "f230a6b51a0f8057", + "hashShort": "7e28f5fa9523bce2", }, { - "category": "Raid", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Pot of Gold Egg", - "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", - }, - "overrideCost": 200, + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://127054123305927", + "name": "Exclusive Matryoshka Egg", "pets": [ [ - "Lucki Wolf", - 99.05, + "Matryoshka Capybara", + 50, ], [ - "Clover Peacock", - 1, + "Matryoshka Fox", + 35, ], [ - "Clover Butterfly", - 0.005, - "Great", + "Matryoshka Dino", + 13, ], [ - "Lucki Dominus", - 0.00005, - "Insane", + "Huge Matryoshka Capybara", + 1.5, ], [ - "Huge Clover Griffin", - 0.0000012, - "Insane", + "Huge Matryoshka Dino", + 0.39, + ], + [ + "Titanic Matryoshka Cat", + 0.1, + ], + [ + "Gargantuan Matryoshka Bear", + 0.01, ], ], + "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "shinyChance": 2, }, - "configName": "8 | Lucky Raid Egg 8", + "configName": "Exclusive Egg 44", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "998fb854605c31ab", + "hashShort": "e31eb6c93ba71a02", }, { - "category": "Raid", + "category": "CannonTycoon", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "CannonTycoonCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Pot of Gold Egg", - "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", - }, - "overrideCost": 200, + "name": "Wild Fire Egg", + "overrideCost": 10000, "pets": [ [ - "Lucki Wolf", - 99.0045, - ], - [ - "Clover Peacock", - 1, - ], - [ - "Clover Butterfly", - 0.05, - "Great", - ], - [ - "Lucki Dominus", - 0.0005, - "Insane", + "Fireball Cat", + 90, ], [ - "Pot of Gold Cat", - 0.00005, - "Insane", + "Springy Axolotl", + 10, ], [ - "Huge Clover Griffin", - 0.0000012, - "Insane", + "Parachute Monkey", + 1, ], ], "rarity": { @@ -34021,47 +34455,34 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "9 | Lucky Raid Egg 9", + "configName": "6 | Wild Fire Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "274485de6e0e107a", + "hashShort": "12be59035450994f", }, { - "category": "Lobby", + "category": "CannonTycoon", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "CannonTycoonCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Lucky Bow Egg", - "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", - }, - "overrideCost": 100, + "name": "Wild Frost Egg", + "overrideCost": 50000, "pets": [ [ - "Clover Butterfly", - 99.954545, - ], - [ - "Lucki Dominus", - 0.1, + "Parachute Monkey", + 90, ], [ - "Pot of Gold Cat", - 0.0005, - "Nice", + "Jetpack Tiger", + 10, ], [ - "Clover Bee", - 0.000005, + "Wild Frost Agony", + 1, "Nice", ], - [ - "Huge Clover Griffin", - 0.0000012, - "Insane", - ], ], "rarity": { "Announce": true, @@ -34076,45 +34497,45 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "10 | Lucky Raid Lobby Egg 10", + "configName": "7 | Wild Frost Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "c81089a676779547", + "hashShort": "806b398133716dac", }, { - "category": "Lobby", + "category": "CannonTycoon", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "CannonTycoonCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Lucky Bow Egg", + "name": "Wild Galaxy Egg", "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", + "Huge Parachute Monkey": "EggMultiplier_I1", }, - "overrideCost": 100, + "overrideCost": 250000, "pets": [ [ - "Lucki Dominus", - 99.954545, + "Jetpack Tiger", + 90, ], [ - "Pot of Gold Cat", - 0.1, + "Wild Frost Agony", + 10, ], [ - "Clover Bee", - 0.0005, - "Nice", + "Wild Fire Agony", + 0.05, + "Great", ], [ - "Lucki Bunny", - 0.000005, - "Nice", + "Wild Galaxy Agony", + 0.0001, + "Insane", ], [ - "Huge Clover Griffin", - 0.0000012, + "Huge Parachute Monkey", + 0.000006, "Insane", ], ], @@ -34131,101 +34552,89 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "11 | Lucky Raid Lobby Egg 11", + "configName": "8 | Wild Galaxy Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "22b6466a615795e4", + "hashShort": "9bfda36bb2335bfb", }, { - "category": "Lobby", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Lucky Bow Egg", - "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", - }, - "overrideCost": 100, + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://78947231277939", + "name": "Valentine's Present", "pets": [ [ - "Pot of Gold Cat", - 99.954545, + "Valentines Dominus", + 50, ], [ - "Clover Bee", - 0.1, + "Lovemelon", + 35, ], [ - "Lucki Bunny", - 0.0005, - "Nice", + "Valentines Angelus", + 13, ], [ - "Lucki Elephant", - 0.000005, - "Nice", + "Huge Valentines Dominus", + 1.5, ], [ - "Huge Clover Griffin", - 0.0000012, - "Insane", + "Huge Valentines Angelus", + 0.4, + ], + [ + "Titanic M-14 PROTOTYPE", + 0.1, ], ], + "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "shinyChance": 2, }, - "configName": "12 | Lucky Raid Lobby Egg 12", + "configName": "Valentines Present", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "033ab518b106519f", + "hashShort": "c0809be39150a426", }, { - "category": "Lobby", + "category": "TowerTycoon", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "ValentinesCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Lucky Loot Egg", - "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", - }, - "overrideCost": 100, + "name": "Love Tower Egg", + "overrideCost": 250, "pets": [ [ - "Clover Griffin", - 99.954545, - ], - [ - "Emerald Owl", - 0.1, - ], - [ - "Lucki Agony", - 0.0005, - "Great", + "Valentines Sloth", + 90, ], [ - "Wishing Dragon", - 0.000005, - "Insane", + "Rose Garden Cat", + 10, ], [ - "Huge Clover Griffin", - 0.0000012, - "Insane", + "Raining Love Dog", + 0.1, + "Nice", ], ], "rarity": { @@ -34241,44 +34650,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "18 | Lucky Raid Lobby Egg 18", + "configName": "0 | Love Tower Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "77dde93505f4a0d1", + "hashShort": "560c7029e7dd4ada", }, { - "category": "Lobby", + "category": "TowerTycoon", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "ValentinesCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Lucky Wings Egg", + "name": "Arrow Egg", "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", + "Huge Valentines Bear": "ValHuge1", }, - "overrideCost": 100, + "overrideCost": 250, "pets": [ [ - "Clover Bee", - 99.954545, - ], - [ - "Lucki Bunny", - 0.1, + "Pink Poodle", + 90, ], [ - "Lucki Elephant", - 0.0005, - "Nice", + "Valentines Bee", + 10, ], [ - "Leprechaun Corgi", - 0.000005, + "Cupcake Hamster", + 0.1, "Nice", ], [ - "Huge Clover Griffin", + "Huge Valentines Bear", 0.0000012, "Insane", ], @@ -34296,44 +34700,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "13 | Lucky Raid Lobby Egg 13", + "configName": "1 | Arrow Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "dd74903d5ae33e49", + "hashShort": "ddf6c48a995c24ef", }, { - "category": "Lobby", + "category": "TowerTycoon", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "ValentinesCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Lucky Wings Egg", + "name": "Cupid Egg", "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", + "Huge Valentines Bear": "ValHuge1", }, - "overrideCost": 100, + "overrideCost": 250, "pets": [ [ - "Lucki Bunny", - 99.954545, - ], - [ - "Lucki Elephant", - 0.1, + "Valentines Bee", + 90, ], [ - "Leprechaun Corgi", - 0.0005, - "Nice", + "Cupcake Hamster", + 10, ], [ - "Horseshoe Crab", - 0.000005, + "Valentines Bear", + 0.1, "Nice", ], [ - "Huge Clover Griffin", + "Huge Valentines Bear", 0.0000012, "Insane", ], @@ -34351,44 +34750,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "14 | Lucky Raid Lobby Egg 14", + "configName": "2 | Cupid Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "b35a9238ba245899", + "hashShort": "bbf69301c4c4cfa1", }, { - "category": "Lobby", + "category": "TowerTycoon", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "ValentinesCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Lucky Wings Egg", + "name": "Valentine Heart Egg", "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", + "Huge Valentines Bear": "ValHuge1", }, - "overrideCost": 100, + "overrideCost": 250, "pets": [ [ - "Lucki Elephant", - 99.954545, - ], - [ - "Leprechaun Corgi", - 0.1, + "Cupcake Hamster", + 90, ], [ - "Horseshoe Crab", - 0.0005, - "Nice", + "Valentines Bear", + 10, ], [ - "Clover Griffin", - 0.000005, + "Love Cow", + 0.1, "Nice", ], [ - "Huge Clover Griffin", + "Huge Valentines Bear", 0.0000012, "Insane", ], @@ -34406,44 +34800,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "15 | Lucky Raid Lobby Egg 15", + "configName": "3 | Valentine Heart Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "a7de477b80905279", + "hashShort": "249ba76af3015eb0", }, { - "category": "Lobby", + "category": "TowerTycoon", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "ValentinesCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Lucky Wings Egg", + "name": "Valentine Bow Egg", "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", + "Huge Valentines Bear": "ValHuge1", }, - "overrideCost": 100, + "overrideCost": 250, "pets": [ [ - "Leprechaun Corgi", - 99.954545, - ], - [ - "Horseshoe Crab", - 0.1, + "Valentines Bear", + 90, ], [ - "Clover Griffin", - 0.0005, - "Nice", + "Love Cow", + 10, ], [ - "Emerald Owl", - 0.000005, + "Valentines Owl", + 0.1, "Nice", ], [ - "Huge Clover Griffin", + "Huge Valentines Bear", 0.0000012, "Insane", ], @@ -34461,44 +34850,49 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "16 | Lucky Raid Lobby Egg 16", + "configName": "4 | Valentine Bow Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "e68b85208efad778", + "hashShort": "904027f20eac57c3", }, { - "category": "Lobby", + "category": "TowerTycoon", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "ValentinesCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Lucky Loot Egg", + "name": "Valentine Cupcake Egg", "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", + "Huge Valentines Bear": "ValHuge1", }, - "overrideCost": 100, + "overrideCost": 250, "pets": [ [ - "Horseshoe Crab", - 99.954545, + "Love Cow", + 89.05, ], [ - "Clover Griffin", - 0.1, + "Valentines Owl", + 10, ], [ - "Emerald Owl", - 0.0005, + "Love Lion", + 1, "Nice", ], [ - "Lucki Agony", - 0.000005, - "Nice", + "Rose Cat", + 0.005, + "Insane", + ], + [ + "Valentines Unicorn", + 0.00005, + "Insane", ], [ - "Huge Clover Griffin", + "Huge Valentines Bear", 0.0000012, "Insane", ], @@ -34516,52 +34910,58 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "17 | Lucky Raid Lobby Egg 17", + "configName": "5 | Valentine Cupcake Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "d7df53692cf5a75a", + "hashShort": "e594129440338238", }, { - "category": "Lobby", + "category": "TowerTycoon", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "ValentinesCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Lucky Loot Egg", + "name": "Valentine Cupcake Egg", "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", + "Huge Love Corgi": "ValHuge2", + "Huge Valentines Bear": "ValHuge1", }, - "overrideCost": 100, + "overrideCost": 250, "pets": [ [ - "Clover Griffin", - 99.949995, + "Love Cow", + 89.05, ], [ - "Emerald Owl", - 0.1, + "Valentines Owl", + 10, ], [ - "Lucki Agony", - 0.005, - "Great", + "Love Lion", + 1, + "Nice", ], [ - "Wishing Dragon", - 0.00003, + "Rose Cat", + 0.005, "Insane", ], [ - "Lucki Angelus", - 0.0000025, + "Valentines Unicorn", + 0.00005, "Insane", ], [ - "Huge Clover Griffin", + "Huge Valentines Bear", 0.0000012, "Insane", ], + [ + "Huge Love Corgi", + 3e-7, + "Insane", + ], ], "rarity": { "Announce": true, @@ -34576,47 +34976,64 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "19 | Lucky Raid Lobby Egg 19", + "configName": "6 | Valentine Cupcake Egg 2", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "ef4002b8a7510148", + "hashShort": "fba855cf242c83cb", }, { - "category": "Raid", + "category": "TowerTycoon", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "ValentinesCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Lucky Bow Egg", + "name": "Valentine Cupcake Egg", "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", + "Huge Love Corgi": "ValHuge2", + "Huge Valentines Bear": "ValHuge1", + "Titanic Love Corgi": "ValTitanic1", }, - "overrideCost": 100, + "overrideCost": 250, "pets": [ [ - "Clover Butterfly", - 99.05, + "Love Cow", + 89.05, + ], + [ + "Valentines Owl", + 10, ], [ - "Lucki Dominus", + "Love Lion", 1, + "Nice", ], [ - "Pot of Gold Cat", + "Rose Cat", 0.005, - "Nice", + "Insane", ], [ - "Clover Bee", + "Valentines Unicorn", 0.00005, - "Nice", + "Insane", ], [ - "Huge Clover Griffin", + "Huge Valentines Bear", 0.0000012, "Insane", ], + [ + "Huge Love Corgi", + 3e-7, + "Insane", + ], + [ + "Titanic Love Corgi", + 1.5e-8, + "Insane", + ], ], "rarity": { "Announce": true, @@ -34631,104 +35048,102 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "10 | Lucky Raid Egg 10", + "configName": "7 | Valentine Cupcake Egg 3", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "5f690d172dc1c861", + "hashShort": "7e872c0cf8e69c04", }, { - "category": "Raid", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Lucky Loot Egg", - "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", - }, - "overrideCost": 100, + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://88086887334640", + "name": "Exclusive Jurassic Egg", "pets": [ [ - "Clover Griffin", - 99.0045, + "Jurassic Crocodile", + 50, ], [ - "Emerald Owl", - 1, + "Jurassic Elephant", + 35, ], [ - "Lucki Agony", - 0.05, - "Great", + "Jurassic Beaver", + 13, ], [ - "Wishing Dragon", - 0.0003, - "Insane", + "Huge Jurassic Crocodile", + 1.5, ], [ - "Lucki Angelus", - 0.000025, - "Insane", + "Huge Jurassic Beaver", + 0.39, ], [ - "Huge Clover Griffin", - 0.0000012, - "Insane", + "Titanic Jurassic Feline", + 0.1, + ], + [ + "Gargantuan Jurassic Dragon", + 0.01, ], ], + "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "shinyChance": 2, }, - "configName": "19 | Lucky Raid Egg 19", + "configName": "Exclusive Egg 45", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "58be89889893c806", + "hashShort": "30959fbe71e1b8d1", }, { - "category": "Raid", + "category": "TowerTycoon", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "ValentinesCoins", + "extraPetsClient": null, + "extraPetsServer": null, "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Lucky Loot Egg", + "name": "Valentine Cupcake Egg", "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", + "Huge Heartbreak Fairy": "ValHuge1", + "Huge Shattered Heart Agony": "ValHuge3", }, - "overrideCost": 100, + "overrideCost": 250, "pets": [ [ - "Clover Griffin", - 99.05, - ], - [ - "Emerald Owl", - 1, + "Valentines Sloth", + 90, ], [ - "Lucki Agony", - 0.005, - "Great", + "Rose Garden Cat", + 10, ], [ - "Wishing Dragon", - 0.00005, - "Insane", + "Raining Love Dog", + 0.1, + "Nice", ], [ - "Huge Clover Griffin", + "Huge Heartbreak Fairy", 0.0000012, "Insane", ], @@ -34746,44 +35161,42 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "18 | Lucky Raid Egg 18", + "configName": "1 | Valentine Cupcake Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "d085a9e4052945e0", + "hashShort": "28ddcb35b89b18e9", }, { - "category": "Raid", + "category": "TowerTycoon", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "ValentinesCoins", + "extraPetsClient": null, + "extraPetsServer": null, "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Lucky Loot Egg", + "name": "Valentine Rose Egg", "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", + "Huge Heartbreak Fairy": "ValHuge1", + "Huge Shattered Heart Agony": "ValHuge3", }, - "overrideCost": 100, + "overrideCost": 250, "pets": [ [ - "Horseshoe Crab", - 99.05, - ], - [ - "Clover Griffin", - 1, + "Rose Garden Cat", + 90, ], [ - "Emerald Owl", - 0.005, - "Nice", + "Raining Love Dog", + 10, ], [ - "Lucki Agony", - 0.00005, + "Valentines Axolotl", + 0.1, "Nice", ], [ - "Huge Clover Griffin", + "Huge Heartbreak Fairy", 0.0000012, "Insane", ], @@ -34801,44 +35214,42 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "17 | Lucky Raid Egg 17", + "configName": "2 | Valentine Rose Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "f7963801d9f64978", + "hashShort": "d95fb568e96ac80e", }, { - "category": "Raid", + "category": "TowerTycoon", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "ValentinesCoins", + "extraPetsClient": null, + "extraPetsServer": null, "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Lucky Wings Egg", + "name": "Valentine Ice Cream Egg", "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", + "Huge Heartbreak Fairy": "ValHuge1", + "Huge Shattered Heart Agony": "ValHuge3", }, - "overrideCost": 100, + "overrideCost": 250, "pets": [ [ - "Leprechaun Corgi", - 99.05, - ], - [ - "Horseshoe Crab", - 1, + "Raining Love Dog", + 90, ], [ - "Clover Griffin", - 0.005, - "Nice", + "Valentines Axolotl", + 10, ], [ - "Emerald Owl", - 0.00005, + "Heartbreak Fairy", + 0.1, "Nice", ], [ - "Huge Clover Griffin", + "Huge Heartbreak Fairy", 0.0000012, "Insane", ], @@ -34856,44 +35267,42 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "16 | Lucky Raid Egg 16", + "configName": "3 | Valentine Ice Cream Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "055e5430ef0bb84d", + "hashShort": "ce4e475f9496f1d4", }, { - "category": "Raid", + "category": "TowerTycoon", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "ValentinesCoins", + "extraPetsClient": null, + "extraPetsServer": null, "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Lucky Wings Egg", + "name": "Valentine Jar Egg", "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", + "Huge Heartbreak Fairy": "ValHuge1", + "Huge Shattered Heart Agony": "ValHuge3", }, - "overrideCost": 100, + "overrideCost": 250, "pets": [ [ - "Lucki Elephant", - 99.05, - ], - [ - "Leprechaun Corgi", - 1, + "Valentines Axolotl", + 90, ], [ - "Horseshoe Crab", - 0.005, - "Nice", + "Heartbreak Fairy", + 10, ], [ - "Clover Griffin", - 0.00005, + "Mr. Love Cat", + 0.1, "Nice", ], [ - "Huge Clover Griffin", + "Huge Heartbreak Fairy", 0.0000012, "Insane", ], @@ -34911,44 +35320,52 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "15 | Lucky Raid Egg 15", + "configName": "4 | Valentine Jar Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "c918dd461b17ffd2", + "hashShort": "7c3ec7423a6ab199", }, { - "category": "Raid", + "category": "TowerTycoon", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "ValentinesCoins", + "extraPetsClient": null, + "extraPetsServer": null, "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Lucky Wings Egg", + "name": "Valentine Present Egg", "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", + "Huge Heartbreak Fairy": "ValHuge1", + "Huge Shattered Heart Agony": "ValHuge3", }, - "overrideCost": 100, + "overrideCost": 250, "pets": [ [ - "Lucki Bunny", - 99.05, + "Heartbreak Fairy", + 89.05, + ], + [ + "Mr. Love Cat", + 10, ], [ - "Lucki Elephant", + "Love Peacock", 1, + "Nice", ], [ - "Leprechaun Corgi", + "Shattered Heart Agony", 0.005, - "Nice", + "Insane", ], [ - "Horseshoe Crab", + "Loveserker", 0.00005, - "Nice", + "Insane", ], [ - "Huge Clover Griffin", + "Huge Heartbreak Fairy", 0.0000012, "Insane", ], @@ -34966,47 +35383,67 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "14 | Lucky Raid Egg 14", + "configName": "5 | Valentine Present Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "63d4c8927d7f77b8", + "hashShort": "b68f34416b3b0648", }, { - "category": "Raid", + "category": "TowerTycoon", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "ValentinesCoins", + "extraPetsClient": null, + "extraPetsServer": null, "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Lucky Wings Egg", + "name": "Valentine Present Egg 3", "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", + "Huge Heartbreak Fairy": "ValHuge1", + "Huge Love Corgi": "ValHuge2", + "Huge Shattered Heart Agony": "ValHuge3", + "Titanic Loveserker": "ValTitanic1", }, - "overrideCost": 100, + "overrideCost": 250, "pets": [ [ - "Clover Bee", - 99.05, + "Love Cow", + 89.05, + ], + [ + "Valentines Owl", + 10, ], [ - "Lucki Bunny", + "Love Lion", 1, + "Nice", ], [ - "Lucki Elephant", + "Rose Cat", 0.005, - "Nice", + "Insane", ], [ - "Leprechaun Corgi", + "Valentines Unicorn", 0.00005, - "Nice", + "Insane", ], [ - "Huge Clover Griffin", + "Huge Heartbreak Fairy", 0.0000012, "Insane", ], + [ + "Huge Love Corgi", + 2.4000000000000003e-7, + "Insane", + ], + [ + "Titanic Loveserker", + 1.5e-8, + "Insane", + ], ], "rarity": { "Announce": true, @@ -35021,47 +35458,61 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "13 | Lucky Raid Egg 13", + "configName": "7 | Valentine Present Egg 3", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "e03d95159c500255", + "hashShort": "bf688544d83b810f", }, { - "category": "Raid", + "category": "TowerTycoon", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "ValentinesCoins", + "extraPetsClient": null, + "extraPetsServer": null, "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Lucky Bow Egg", + "name": "Valentine Present Egg 2", "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", + "Huge Heartbreak Fairy": "ValHuge1", + "Huge Loveserker": "ValHuge2", + "Huge Shattered Heart Agony": "ValHuge3", }, - "overrideCost": 100, + "overrideCost": 250, "pets": [ [ - "Lucki Dominus", - 99.05, + "Love Cow", + 89.05, + ], + [ + "Valentines Owl", + 10, ], [ - "Pot of Gold Cat", + "Love Lion", 1, + "Nice", ], [ - "Clover Bee", + "Rose Cat", 0.005, - "Nice", + "Insane", ], [ - "Lucki Bunny", + "Valentines Unicorn", 0.00005, - "Nice", + "Insane", ], [ - "Huge Clover Griffin", + "Huge Heartbreak Fairy", 0.0000012, "Insane", ], + [ + "Huge Loveserker", + 2.4000000000000003e-7, + "Insane", + ], ], "rarity": { "Announce": true, @@ -35076,48 +35527,28 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "11 | Lucky Raid Egg 11", + "configName": "6 | Valentine Present Egg 2", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "032541683ac69b98", + "hashShort": "be4f74ef89558906", }, { - "category": "Raid", + "category": "CardPacks", "collection": "Eggs", "configData": { - "currency": "LuckyCoins", + "currency": "CardCoins", "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Lucky Bow Egg", - "oddsFFlags": { - "Huge Clover Griffin": "LuckyRaidEggHuge", - }, - "overrideCost": 100, - "pets": [ - [ - "Pot of Gold Cat", - 99.05, - ], - [ - "Clover Bee", - 1, - ], - [ - "Lucki Bunny", - 0.005, - "Nice", - ], - [ - "Lucki Elephant", - 0.00005, - "Nice", - ], + "instant_purchase": [ [ - "Huge Clover Griffin", - 0.0000012, - "Insane", + "Lootbox", + "Fantasy Pack", ], ], + "isCardPack": true, + "isCustomEgg": true, + "name": "Fantasy Pack", + "overrideCost": 250000, + "pets": [], "rarity": { "Announce": true, "Color": null, @@ -35131,80 +35562,119 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "12 | Lucky Raid Egg 12", + "configName": "Fantasy Pack", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "43b5c30fa654ae00", + "hashShort": "ca59c363fc77136c", }, { - "category": "Update 41", + "category": "CardPacks", "collection": "Eggs", "configData": { - "currency": "VoidCoins", - "eggNumber": 247, + "currency": "CardCoins", "icon": "rbxassetid://15172355963", - "name": "Doodle Flower Egg", - "pets": [ - [ - "Doodle Cat", - 99, - ], + "instant_purchase": [ [ - "Doodle Corgi", - 1, - "Nice", + "Lootbox", + "Retro Pack", ], + ], + "isCardPack": true, + "isCustomEgg": true, + "name": "Retro Pack", + "overrideCost": 10000, + "pets": [], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + "configName": "Retro Pack", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "e7e76e37b2a51b83", + }, + { + "category": "CardPacks", + "collection": "Eggs", + "configData": { + "currency": "CardCoins", + "icon": "rbxassetid://15172355963", + "instant_purchase": [ [ - "Doodle Bunny", - 0.1, - "Great", + "Lootbox", + "Nightmare Pack", ], ], - "worldNumber": 3, + "isCardPack": true, + "isCustomEgg": true, + "name": "Nightmare Pack", + "overrideCost": 50000, + "pets": [], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "247 | Doodle Flower Egg", + "configName": "Nightmare Pack", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "585ad42c6846509f", + "hashShort": "dcaf8b4efbf982f2", }, { - "category": "Exclusive Eggs", + "category": "Machine Eggs", "collection": "Eggs", "configData": { - "disableGold": true, + "disableGold": false, "disableModifiers": true, "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://129455545171389", - "name": "Exclusive Kaiju Egg", + "goldChance": 5, + "icon": "rbxassetid://81653039212838", + "name": "Gargantuan Machine Grim Reaper Egg", "pets": [ [ - "Kaiju Sea Dragon", - 50, + "Huge Green Cobra", + 49.45, ], [ - "Kaiju Volcano", - 35, + "Huge Detective Terrier", + 30, ], [ - "Kaiju Hydra", - 13, + "Huge Ladybug", + 15, ], [ - "Huge Kaiju Sea Dragon", - 1.5, + "Huge Spitting Dino", + 4, ], [ - "Huge Kaiju Hydra", - 0.39, + "Huge Stacked Dominus", + 1, ], [ - "Titanic Kaiju Moth", - 0.1, + "Titanic Owl", + 0.5, ], [ - "Gargantuan Kaiju King", - 0.01, + "Gargantuan Grim Reaper", + 0.05, ], ], "rainbowChance": 2, @@ -35222,35 +35692,28 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` }, "shinyChance": 2, }, - "configName": "Exclusive Egg 47", + "configName": "Huge Machine Egg 5", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "3d7688927a4c778b", + "hashShort": "8555e92991b1840d", }, { - "category": "Mining", + "category": "CardPacks", "collection": "Eggs", "configData": { - "currency": "MiningCoins", + "currency": "CardCoins", "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Sapphire Egg", - "overrideCost": 100, - "pets": [ - [ - "Mining Raccoon", - 90, - ], - [ - "Mining Penguin", - 10, - ], + "instant_purchase": [ [ - "Minecart Hamster", - 0.1, - "Nice", + "Lootbox", + "Pog Pack", ], ], + "isCardPack": true, + "isCustomEgg": true, + "name": "Pog Pack", + "overrideCost": 50000, + "pets": [], "rarity": { "Announce": true, "Color": null, @@ -35264,35 +35727,28 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Sapphire Egg", + "configName": "Pog Pack", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "3697829bd4cc0580", + "hashShort": "d1a9cdfa0a04da3b", }, { - "category": "Mining", + "category": "CardPacks", "collection": "Eggs", "configData": { - "currency": "MiningCoins", + "currency": "CardCoins", "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Ruby Egg", - "overrideCost": 300, - "pets": [ - [ - "Mining Penguin", - 90, - ], - [ - "Minecart Hamster", - 10, - ], + "instant_purchase": [ [ - "Crystal Spider", - 0.1, - "Nice", + "Lootbox", + "Axolotl Pack", ], ], + "isCardPack": true, + "isCustomEgg": true, + "name": "Axolotl Pack", + "overrideCost": 75000, + "pets": [], "rarity": { "Announce": true, "Color": null, @@ -35306,76 +35762,108 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Ruby Egg", + "configName": "Axolotl Pack", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "0729ad16daa29c44", + "hashShort": "a3ce730bcc11b8f4", }, { - "category": "Mining", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "MiningCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Emerald Egg", - "overrideCost": 1000, + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://110505952197309", + "name": "Exclusive Dot Matrix Egg", "pets": [ [ - "Minecart Hamster", - 90, + "Dot Matrix Cat", + 50, ], [ - "Crystal Spider", - 10, + "Dot Matrix Snail", + 35, ], [ - "Crystal Bat", + "Dot Matrix Axolotl", + 13, + ], + [ + "Huge Dot Matrix Cat", + 1.5, + ], + [ + "Huge Dot Matrix Axolotl", + 0.39, + ], + [ + "Titanic Dot Matrix Kitsune", 0.1, - "Nice", + ], + [ + "Gargantuan Dot Matrix Pegasus", + 0.01, ], ], + "productIds": { + "10 Exclusive Eggs": 3234244263, + "100 Exclusive Eggs": 3234244354, + "3 Exclusive Eggs": 3234243894, + "Exclusive Egg": 3234243790, + }, + "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "shinyChance": 2, }, - "configName": "3 | Emerald Egg", + "configName": "Exclusive Egg 46", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "1d63fe5d2f84435b", + "hashShort": "42321b99563dbd17", }, { - "category": "Mining", + "category": "Lobby", "collection": "Eggs", "configData": { - "currency": "MiningCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Amethyst Egg", - "overrideCost": 2000, + "name": "Horseshoe Egg", + "oddsFFlags": { + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", + }, + "overrideCost": 300, "pets": [ [ - "Crystal Spider", - 90, + "Lucki Snake", + 99.9, ], [ - "Crystal Bat", - 10, + "Lucki Lamb", + 0.1, ], [ - "Jungle Golem", - 0.1, + "Lucki Horse", + 0.0005, "Nice", ], + [ + "Huge Lucki Lamb", + 0.0000012, + "Insane", + ], ], "rarity": { "Announce": true, @@ -35390,41 +35878,40 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Amethyst Egg", + "configName": "2 | Lucky Raid Lobby Egg 2", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "a6d16b4751bc0a8e", + "dateModified": "2026-03-14T15:52:32.035Z", + "hashShort": "d5e7d8e22f89f360", }, { - "category": "Mining", + "category": "Lobby", "collection": "Eggs", "configData": { - "currency": "MiningCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Rainbow Ore Egg", - "overrideCost": 4000, + "name": "Clover Egg", + "oddsFFlags": { + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", + }, + "overrideCost": 300, "pets": [ [ - "Crystal Bat", - 99.849995, - ], - [ - "Jungle Golem", - 0.2, + "Lucki Lamb", + 99.95, ], [ - "Fragmented Golem", - 0.005, + "Lucki Horse", + 0.1, ], [ - "Abstract Dominus", - 0.0003, - "Great", + "Clover Penguin", + 0.0005, + "Nice", ], [ - "Abyss Carbuncle", - 0.000025, + "Huge Lucki Lamb", + 0.0000012, "Insane", ], ], @@ -35441,34 +35928,42 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Rainbow Ore Egg", + "configName": "3 | Lucky Raid Lobby Egg 3", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "4c8edaf9a926802a", + "dateModified": "2026-03-14T15:52:32.043Z", + "hashShort": "6da5bdb2ca0af6aa", }, { - "category": "Mining", + "category": "Lobby", "collection": "Eggs", "configData": { - "currency": "MiningCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Quartz Ore Egg", - "overrideCost": 30000, + "name": "Clover Egg", + "oddsFFlags": { + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", + }, + "overrideCost": 300, "pets": [ [ - "Abyss Carbuncle", - 90, + "Lucki Lamb", + 99.95, ], [ - "Minecart Piggy", - 10, + "Lucki Horse", + 0.1, ], [ - "Mining Monkey", - 0.1, + "Clover Penguin", + 0.0005, "Nice", ], + [ + "Huge Lucki Lamb", + 0.0000012, + "Insane", + ], ], "rarity": { "Announce": true, @@ -35483,34 +35978,42 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "6 | Quartz Ore Egg", + "configName": "4 | Lucky Raid Lobby Egg 4", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "84620e3758faedfe", + "dateModified": "2026-03-14T15:52:32.049Z", + "hashShort": "419e69b93879ab23", }, { - "category": "Mining", + "category": "Lobby", "collection": "Eggs", "configData": { - "currency": "MiningCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Topaz Ore Egg", - "overrideCost": 250000, + "name": "Clover Egg", + "oddsFFlags": { + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", + }, + "overrideCost": 300, "pets": [ [ - "Minecart Piggy", - 90, + "Lucki Horse", + 99.95, ], [ - "Mining Monkey", - 10, + "Clover Penguin", + 0.1, ], [ - "Gem Mole", - 0.1, + "Horseshoe Capybara", + 0.0005, "Nice", ], + [ + "Huge Lucki Lamb", + 0.0000012, + "Insane", + ], ], "rarity": { "Announce": true, @@ -35525,51 +36028,40 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "7 | Topaz Ore Egg", + "configName": "5 | Lucky Raid Lobby Egg 5", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "3c4db6502f272ca9", + "dateModified": "2026-03-14T15:52:32.036Z", + "hashShort": "b73f4f035c2ee97e", }, { - "category": "Mining", + "category": "Lobby", "collection": "Eggs", "configData": { - "currency": "MiningCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Onyx Ore Egg", + "name": "Leprechaun Egg", "oddsFFlags": { - "Huge Minecart Hamster": "MiningEggHuge", - "Mining Robot": "MiningEggPet1", - "Obsidian Dragon": "MiningEggPet2", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 1000000, + "overrideCost": 300, "pets": [ [ - "Minecart Piggy", - 70, + "Lucki Horse", + 99.95, ], [ - "Mining Monkey", - 30, + "Clover Penguin", + 0.1, ], [ - "Gem Mole", - 0.1, - ], - [ - "Mining Robot", - 0.0003, - "Great", - ], - [ - "Obsidian Dragon", - 0.000025, - "Insane", + "Horseshoe Capybara", + 0.0005, + "Nice", ], [ - "Huge Minecart Hamster", - 0.000059999999999999995, + "Huge Lucki Lamb", + 0.0000012, "Insane", ], ], @@ -35586,94 +36078,89 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "8 | Onyx Ore Egg", + "configName": "6 | Lucky Raid Lobby Egg 6", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "1642034419116511", + "dateModified": "2026-03-14T15:52:32.035Z", + "hashShort": "dfb8d1eefcb62b3d", }, { - "category": "Exclusive Eggs", + "category": "Lobby", "collection": "Eggs", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://95913164974324", - "name": "Exclusive Beast Egg", + "currency": "LuckyCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Leprechaun Egg", + "oddsFFlags": { + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", + }, + "overrideCost": 300, "pets": [ [ - "Snuggle Beast", - 50, - ], - [ - "Feral Beast", - 35, - ], - [ - "Claw Beast", - 13, - ], - [ - "Huge Snuggle Beast", - 1.5, + "Clover Penguin", + 99.95, ], [ - "Huge Claw Beast", - 0.39, + "Horseshoe Capybara", + 0.1, ], [ - "Titanic Warrior Beast", - 0.1, + "Clover Phoenix", + 0.0005, + "Nice", ], [ - "Gargantuan Royal Beast", - 0.01, + "Huge Lucki Lamb", + 0.0000012, + "Insane", ], ], - "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "shinyChance": 2, }, - "configName": "Exclusive Egg 48", + "configName": "7 | Lucky Raid Lobby Egg 7", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "1d0f101810fbbb90", + "dateModified": "2026-03-14T15:52:32.041Z", + "hashShort": "a5fcf83d40b7c85e", }, { - "category": "Conveyor", + "category": "Lobby", "collection": "Eggs", "configData": { - "currency": "FactoryCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Lemon Jelly Egg", + "name": "Pot of Gold Egg", "oddsFFlags": { - "Huge Rave Slime": "ConveyorEggHuge", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 500, + "overrideCost": 300, "pets": [ [ - "Spotted Elephant", - 99, + "Clover Penguin", + 99.95, ], [ - "Ooze Axolotl", - 1, + "Horseshoe Capybara", + 0.1, ], [ - "Huge Rave Slime", + "Clover Phoenix", + 0.0005, + "Nice", + ], + [ + "Huge Lucki Lamb", 0.0000012, "Insane", ], @@ -35691,39 +36178,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Conveyor Egg 1", + "configName": "8 | Lucky Raid Lobby Egg 8", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "fd6a4c263607b371", + "dateModified": "2026-03-14T15:52:32.047Z", + "hashShort": "7d7bae550d4b2ab5", }, { - "category": "Conveyor", + "category": "Lobby", "collection": "Eggs", "configData": { - "currency": "FactoryCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Orange Jelly Egg", + "name": "Pot of Gold Egg", "oddsFFlags": { - "Huge Rave Slime": "ConveyorEggHuge", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 870, + "overrideCost": 300, "pets": [ [ - "Spotted Elephant", - 99, + "Horseshoe Capybara", + 99.95, ], [ - "Ooze Axolotl", - 1, + "Clover Phoenix", + 0.1, ], [ - "Ooze Corgi", - 0.005, + "Clover Deer", + 0.0005, "Nice", ], [ - "Huge Rave Slime", + "Huge Lucki Lamb", 0.0000012, "Insane", ], @@ -35741,39 +36228,34 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Conveyor Egg 2", + "configName": "9 | Lucky Raid Lobby Egg 9", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "963cc22139fb2db7", + "dateModified": "2026-03-14T15:52:32.043Z", + "hashShort": "37560ed43fbe9d01", }, { - "category": "Conveyor", + "category": "Lobby", "collection": "Eggs", "configData": { - "currency": "FactoryCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Cherry Jelly Egg", + "name": "Horseshoe Egg", "oddsFFlags": { - "Huge Rave Slime": "ConveyorEggHuge", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 1700, + "overrideCost": 300, "pets": [ [ - "Ooze Axolotl", + "Lucki Snake", 99.9, ], [ - "Ooze Corgi", + "Lucki Lamb", 0.1, ], [ - "Knight Slime", - 0.00005, - "Nice", - ], - [ - "Huge Rave Slime", + "Huge Lucki Lamb", 0.0000012, "Insane", ], @@ -35791,44 +36273,34 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "3 | Conveyor Egg 3", + "configName": "1 | Lucky Raid Lobby Egg 1", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "94836913f0ca1607", + "dateModified": "2026-03-14T15:52:32.037Z", + "hashShort": "014e6b86bc865033", }, { - "category": "Conveyor", + "category": "Raid", "collection": "Eggs", "configData": { - "currency": "FactoryCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Strawberry Jelly Egg", + "name": "Horseshoe Egg", "oddsFFlags": { - "Huge Rave Slime": "ConveyorEggHuge", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 3500, + "overrideCost": 500, "pets": [ [ - "Ooze Axolotl", - 99.954545, - ], - [ - "Ooze Corgi", - 0.1, - ], - [ - "Knight Slime", - 0.0005, - "Nice", + "Lucki Snake", + 99, ], [ - "Bubble Cat", - 0.000005, - "Nice", + "Lucki Lamb", + 1, ], [ - "Huge Rave Slime", + "Huge Lucki Lamb", 0.0000012, "Insane", ], @@ -35846,44 +36318,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Conveyor Egg 4", + "configName": "1 | Lucky Raid Egg 1", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "67d296b74974c7d7", + "dateModified": "2026-03-14T15:52:32.039Z", + "hashShort": "ee45711453296628", }, { - "category": "Conveyor", + "category": "Raid", "collection": "Eggs", "configData": { - "currency": "FactoryCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Lime Jelly Egg", + "name": "Horseshoe Egg", "oddsFFlags": { - "Huge Rave Slime": "ConveyorEggHuge", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 7500, + "overrideCost": 500, "pets": [ [ - "Ooze Corgi", - 99.954545, - ], - [ - "Knight Slime", - 0.1, + "Lucki Snake", + 99, ], [ - "Bubble Cat", - 0.0005, - "Nice", + "Lucki Lamb", + 1, ], [ - "Jelly Butterfly", - 0.000005, + "Lucki Horse", + 0.005, "Nice", ], [ - "Huge Rave Slime", + "Huge Lucki Lamb", 0.0000012, "Insane", ], @@ -35901,44 +36368,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Conveyor Egg 5", + "configName": "2 | Lucky Raid Egg 2", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "d9f3de898908603d", + "dateModified": "2026-03-14T15:52:32.055Z", + "hashShort": "18a79840a403240e", }, { - "category": "Conveyor", + "category": "Raid", "collection": "Eggs", "configData": { - "currency": "FactoryCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Lime Jelly Egg", + "name": "Clover Egg", "oddsFFlags": { - "Huge Rave Slime": "ConveyorEggHuge", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 16000, + "overrideCost": 500, "pets": [ [ - "Knight Slime", - 99.954545, - ], - [ - "Bubble Cat", - 0.1, + "Lucki Lamb", + 99.05, ], [ - "Jelly Butterfly", - 0.0005, - "Nice", + "Lucki Horse", + 1, ], [ - "Jelly Hydra", - 0.000005, + "Clover Penguin", + 0.005, "Nice", ], [ - "Huge Rave Slime", + "Huge Lucki Lamb", 0.0000012, "Insane", ], @@ -35956,44 +36418,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "6 | Conveyor Egg 6", + "configName": "3 | Lucky Raid Egg 3", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "4f3c046c3daab407", + "dateModified": "2026-03-14T15:52:32.037Z", + "hashShort": "5898bcad0465c65d", }, { - "category": "Conveyor", + "category": "Raid", "collection": "Eggs", "configData": { - "currency": "FactoryCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Blueberry Jelly Egg", + "name": "Clover Egg", "oddsFFlags": { - "Huge Rave Slime": "ConveyorEggHuge", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 36000, + "overrideCost": 500, "pets": [ [ - "Bubble Cat", - 99.954545, - ], - [ - "Jelly Butterfly", - 0.1, + "Lucki Lamb", + 99.05, ], [ - "Jelly Hydra", - 0.0005, - "Nice", + "Lucki Horse", + 1, ], [ - "Firegel Dragon", - 0.000005, + "Clover Penguin", + 0.005, "Nice", ], [ - "Huge Rave Slime", + "Huge Lucki Lamb", 0.0000012, "Insane", ], @@ -36011,49 +36468,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "7 | Conveyor Egg 7", + "configName": "4 | Lucky Raid Egg 4", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "226b5ee18d8b8769", + "dateModified": "2026-03-14T15:52:32.038Z", + "hashShort": "546f1fbb1f7b792d", }, { - "category": "Conveyor", + "category": "Raid", "collection": "Eggs", "configData": { - "currency": "FactoryCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Cherry Slime Egg", + "name": "Clover Egg", "oddsFFlags": { - "Huge Rave Slime": "ConveyorEggHuge", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 78000, + "overrideCost": 500, "pets": [ [ - "Bubble Cat", - 99.949995, - ], - [ - "Jelly Butterfly", - 0.1, - ], - [ - "Jelly Hydra", - 0.05, - "Great", + "Lucki Horse", + 99.05, ], [ - "Firegel Dragon", - 0.0005, - "Insane", + "Clover Penguin", + 1, ], [ - "Jelly Wizard", - 0.00005, - "Insane", + "Horseshoe Capybara", + 0.005, + "Nice", ], [ - "Huge Rave Slime", + "Huge Lucki Lamb", 0.0000012, "Insane", ], @@ -36071,44 +36518,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "8 | Conveyor Egg 8", + "configName": "5 | Lucky Raid Egg 5", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "1a18de387a6e035d", + "dateModified": "2026-03-14T15:52:32.039Z", + "hashShort": "f61612d6ffe8d773", }, { - "category": "Conveyor", + "category": "Raid", "collection": "Eggs", "configData": { - "currency": "FactoryCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Cherry Slime Egg", + "name": "Leprechaun Egg", "oddsFFlags": { - "Huge Rave Slime": "ConveyorEggHuge", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 17000, + "overrideCost": 500, "pets": [ [ - "Jelly Hydra", - 99.954545, - ], - [ - "Firegel Dragon", - 0.1, + "Lucki Horse", + 99.05, ], [ - "Jelly Wizard", - 0.0005, - "Nice", + "Clover Penguin", + 1, ], [ - "Ooze Cat", - 0.000005, + "Horseshoe Capybara", + 0.005, "Nice", ], [ - "Huge Rave Slime", + "Huge Lucki Lamb", 0.0000012, "Insane", ], @@ -36126,44 +36568,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "9 | Conveyor Egg 9", + "configName": "6 | Lucky Raid Egg 6", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "3d6987ee8ce92d75", + "dateModified": "2026-03-14T15:52:32.262Z", + "hashShort": "d22d43a79abf947f", }, { - "category": "Conveyor", + "category": "Raid", "collection": "Eggs", "configData": { - "currency": "FactoryCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Orange Slime Egg", + "name": "Leprechaun Egg", "oddsFFlags": { - "Huge Rave Slime": "ConveyorEggHuge", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 380000, + "overrideCost": 500, "pets": [ [ - "Firegel Dragon", - 99.954545, - ], - [ - "Jelly Wizard", - 0.1, + "Clover Penguin", + 99.05, ], [ - "Ooze Cat", - 0.0005, - "Nice", + "Horseshoe Capybara", + 1, ], [ - "Rave Slime", - 0.000005, + "Clover Phoenix", + 0.005, "Nice", ], [ - "Huge Rave Slime", + "Huge Lucki Lamb", 0.0000012, "Insane", ], @@ -36181,44 +36618,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "10 | Conveyor Egg 10", + "configName": "7 | Lucky Raid Egg 7", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "7c8f2b202a77e730", + "dateModified": "2026-03-14T15:52:32.258Z", + "hashShort": "e437037270860ac7", }, { - "category": "Conveyor", + "category": "Raid", "collection": "Eggs", "configData": { - "currency": "FactoryCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Lemon Slime Egg", + "name": "Pot of Gold Egg", "oddsFFlags": { - "Huge Rave Slime": "ConveyorEggHuge", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 840000, + "overrideCost": 500, "pets": [ [ - "Jelly Wizard", - 99.954545, - ], - [ - "Ooze Cat", - 0.1, + "Clover Penguin", + 99.05, ], [ - "Rave Slime", - 0.0005, - "Nice", + "Horseshoe Capybara", + 1, ], [ - "Bubble Hydra", - 0.000005, + "Clover Phoenix", + 0.005, "Nice", ], [ - "Huge Rave Slime", + "Huge Lucki Lamb", 0.0000012, "Insane", ], @@ -36236,44 +36668,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "11 | Conveyor Egg 11", + "configName": "8 | Lucky Raid Egg 8", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "c9608f67573fb048", + "dateModified": "2026-03-14T15:52:32.259Z", + "hashShort": "2ec100061e457e4c", }, { - "category": "Conveyor", + "category": "Raid", "collection": "Eggs", "configData": { - "currency": "FactoryCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Lime Slime Egg", + "name": "Pot of Gold Egg", "oddsFFlags": { - "Huge Rave Slime": "ConveyorEggHuge", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 1900000, + "overrideCost": 500, "pets": [ [ - "Ooze Cat", - 99.954545, - ], - [ - "Rave Slime", - 0.1, + "Horseshoe Capybara", + 99.05, ], [ - "Bubble Hydra", - 0.0005, - "Nice", + "Clover Phoenix", + 1, ], [ - "Sticky Lamb", - 0.000005, + "Clover Deer", + 0.005, "Nice", ], [ - "Huge Rave Slime", + "Huge Lucki Lamb", 0.0000012, "Insane", ], @@ -36291,44 +36718,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "12 | Conveyor Egg 12", + "configName": "9 | Lucky Raid Egg 9", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "91baf21957e10f93", + "dateModified": "2026-03-14T15:52:32.310Z", + "hashShort": "ce5bfb2717365710", }, { - "category": "Conveyor", + "category": "Lobby", "collection": "Eggs", "configData": { - "currency": "FactoryCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Blueberry Slime Egg", + "name": "Lucky Bow Egg", "oddsFFlags": { - "Huge Rave Slime": "ConveyorEggHuge", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 4100000, + "overrideCost": 300, "pets": [ [ - "Rave Slime", - 99.954545, + "Horseshoe Capybara", + 99.95, ], [ - "Bubble Hydra", + "Clover Phoenix", 0.1, ], [ - "Sticky Lamb", + "Clover Deer", 0.0005, "Nice", ], [ - "Jelly Kitsune", - 0.000005, - "Nice", - ], - [ - "Huge Rave Slime", + "Huge Lucki Lamb", 0.0000012, "Insane", ], @@ -36346,44 +36768,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "13 | Conveyor Egg 13", + "configName": "10 | Lucky Raid Lobby Egg 10", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "33a458ea83f6e521", + "dateModified": "2026-03-14T15:52:32.051Z", + "hashShort": "e3bf02834cdc5eca", }, { - "category": "Conveyor", + "category": "Lobby", "collection": "Eggs", "configData": { - "currency": "FactoryCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Strawberry Slime Egg", + "name": "Lucky Bow Egg", "oddsFFlags": { - "Huge Rave Slime": "ConveyorEggHuge", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 9100000, + "overrideCost": 300, "pets": [ [ - "Bubble Hydra", - 99.954545, + "Clover Phoenix", + 99.95, ], [ - "Sticky Lamb", + "Clover Deer", 0.1, ], [ - "Jelly Kitsune", + "Clover Owl", 0.0005, "Nice", ], [ - "Nightmare Sludge", - 0.000005, - "Nice", - ], - [ - "Huge Rave Slime", + "Huge Lucki Lamb", 0.0000012, "Insane", ], @@ -36401,51 +36818,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "14 | Conveyor Egg 14", + "configName": "11 | Lucky Raid Lobby Egg 11", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "131c65459c7394ef", + "dateModified": "2026-03-14T15:52:32.062Z", + "hashShort": "3a242be8f8227025", }, { - "category": "Conveyor", + "category": "Lobby", "collection": "Eggs", "configData": { - "currency": "FactoryCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Grapefruit Slime Egg", + "name": "Lucky Bow Egg", "oddsFFlags": { - "Huge Rave Slime": "ConveyorEggHuge", - "Nightmare Sludge": "ConveyorEggP1", - "Slimezilla": "ConveyorEggP2", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 20000000, + "overrideCost": 300, "pets": [ [ - "Bubble Hydra", - 99.949995, + "Clover Phoenix", + 99.95, ], [ - "Sticky Lamb", + "Clover Deer", 0.1, ], [ - "Jelly Kitsune", - 0.05, - "Great", - ], - [ - "Nightmare Sludge", + "Clover Owl", 0.0005, - "Insane", - ], - [ - "Slimezilla", - 0.00005, - "Insane", + "Nice", ], [ - "Huge Rave Slime", + "Huge Lucki Lamb", 0.0000012, "Insane", ], @@ -36463,110 +36868,40 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "15 | Conveyor Egg 15", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "fe7d663f10ae2e28", - }, - { - "category": "Exclusive Eggs", - "collection": "Eggs", - "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://76237149926893", - "name": "Exclusive Patchwork Egg", - "pets": [ - [ - "Patchwork Bunny", - 50, - ], - [ - "Patchwork Yeti", - 35, - ], - [ - "Patchwork Teddy Bear", - 13, - ], - [ - "Huge Patchwork Bunny", - 1.5, - ], - [ - "Huge Patchwork Teddy Bear", - 0.39, - ], - [ - "Titanic Patchwork Capybara", - 0.1, - ], - [ - "Gargantuan Patchwork Agony", - 0.01, - ], - ], - "productIds": { - "10 Exclusive Eggs": 3269320058, - "100 Exclusive Eggs": 3269320229, - "3 Exclusive Eggs": 3269318753, - "Exclusive Egg": 3269318607, - }, - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, - }, - "configName": "Exclusive Egg 49", + "configName": "12 | Lucky Raid Lobby Egg 12", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "1bb19f97c8f866cd", + "dateModified": "2026-03-14T15:52:32.060Z", + "hashShort": "a5f4179935bf94ba", }, { - "category": "Easter", + "category": "Lobby", "collection": "Eggs", "configData": { - "currency": "Diamonds", - "disableModifiers": true, + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Easter Diamond Egg", + "name": "Lucky Loot Egg", "oddsFFlags": { - "Huge Diamond Bunny": "EDE_H", - "Titanic Diamond Bunny": "EDE_T", - "Titanic Luxe Axolotl": "EDE_T2", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 200, + "overrideCost": 300, "pets": [ [ - "Diamond Bunny", - 99.999878776, + "Pot of Gold Corgi", + 99.95, ], [ - "Huge Diamond Bunny", - 0.00012, - "Insane", + "Leprechaun Kitsune", + 0.1, ], [ - "Titanic Diamond Bunny", - 0.0000012, + "Lucki Chest Mimic", + 0.0000025, "Insane", ], [ - "Titanic Luxe Axolotl", - 2.4e-8, + "Huge Lucki Lamb", + 0.0000012, "Insane", ], ], @@ -36583,44 +36918,40 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Easter Diamond Egg 1x", + "configName": "18 | Lucky Raid Lobby Egg 18", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "1e12cb76c15ac5f1", + "dateModified": "2026-03-14T15:52:32.059Z", + "hashShort": "609d05b0b723c439", }, { - "category": "Easter", + "category": "Lobby", "collection": "Eggs", "configData": { - "currency": "Diamonds", - "disableModifiers": true, + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Easter Diamond Egg", + "name": "Lucky Wings Egg", "oddsFFlags": { - "Huge Diamond Bunny": "EDE_H", - "Titanic Diamond Bunny": "EDE_T", - "Titanic Luxe Axolotl": "EDE_T2", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 2000, + "overrideCost": 300, "pets": [ [ - "Diamond Bunny", - 99.99878776, + "Clover Deer", + 99.95, ], [ - "Huge Diamond Bunny", - 0.0012, - "Insane", + "Clover Owl", + 0.1, ], [ - "Titanic Diamond Bunny", - 0.000012, - "Insane", + "Pot of Gold Corgi", + 0.0005, + "Nice", ], [ - "Titanic Luxe Axolotl", - 2.4e-7, + "Huge Lucki Lamb", + 0.0000012, "Insane", ], ], @@ -36637,44 +36968,40 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Easter Diamond Egg 10x", + "configName": "13 | Lucky Raid Lobby Egg 13", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "8f91399f4551b14b", + "dateModified": "2026-03-14T15:52:32.036Z", + "hashShort": "e5b956af030245f5", }, { - "category": "Easter", + "category": "Lobby", "collection": "Eggs", "configData": { - "currency": "Diamonds", - "disableModifiers": true, + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Easter Diamond Egg", + "name": "Lucky Wings Egg", "oddsFFlags": { - "Huge Diamond Bunny": "EDE_H", - "Titanic Diamond Bunny": "EDE_T", - "Titanic Luxe Axolotl": "EDE_T2", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 20000, + "overrideCost": 300, "pets": [ [ - "Diamond Bunny", - 99.9878776, + "Clover Deer", + 99.95, ], [ - "Huge Diamond Bunny", - 0.012, - "Insane", + "Clover Owl", + 0.1, ], [ - "Titanic Diamond Bunny", - 0.00012, - "Insane", + "Pot of Gold Corgi", + 0.0005, + "Nice", ], [ - "Titanic Luxe Axolotl", - 0.0000024, + "Huge Lucki Lamb", + 0.0000012, "Insane", ], ], @@ -36691,34 +37018,42 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Easter Diamond Egg 100x", + "configName": "14 | Lucky Raid Lobby Egg 14", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "76d9ce078a647cba", + "dateModified": "2026-03-14T15:52:32.058Z", + "hashShort": "3530b516d1ef5812", }, { - "category": "Easter", + "category": "Lobby", "collection": "Eggs", "configData": { - "currency": "EasterCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Bow Egg", - "overrideCost": 250, + "name": "Lucky Wings Egg", + "oddsFFlags": { + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", + }, + "overrideCost": 300, "pets": [ [ - "Easter Cat", - 90, + "Clover Owl", + 99.95, ], [ - "Easter Fox", - 10, + "Pot of Gold Corgi", + 0.1, ], [ - "Easter Lamb", - 0.1, + "Leprechaun Kitsune", + 0.0005, "Nice", ], + [ + "Huge Lucki Lamb", + 0.0000012, + "Insane", + ], ], "rarity": { "Announce": true, @@ -36733,34 +37068,42 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Bow Egg", + "configName": "15 | Lucky Raid Lobby Egg 15", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "ed2cc2ca735f7ef7", + "dateModified": "2026-03-14T15:52:32.049Z", + "hashShort": "dac1de3f8b4848fe", }, { - "category": "Easter", + "category": "Lobby", "collection": "Eggs", "configData": { - "currency": "EasterCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Flower Pot Egg", - "overrideCost": 500, + "name": "Lucky Wings Egg", + "oddsFFlags": { + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", + }, + "overrideCost": 300, "pets": [ [ - "Easter Fox", - 90, + "Clover Owl", + 99.95, ], [ - "Easter Lamb", - 10, + "Pot of Gold Corgi", + 0.1, ], [ - "Basket Bunny", - 0.1, + "Leprechaun Kitsune", + 0.0005, "Nice", ], + [ + "Huge Lucki Lamb", + 0.0000012, + "Insane", + ], ], "rarity": { "Announce": true, @@ -36775,75 +37118,41 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Flower Pot Egg", + "configName": "16 | Lucky Raid Lobby Egg 16", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "b9746fcc5f781fe7", + "dateModified": "2026-03-14T15:52:32.058Z", + "hashShort": "e2569e3c9e32a778", }, { - "category": "Easter", + "category": "Lobby", "collection": "Eggs", "configData": { - "currency": "EasterCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Flower Egg", - "overrideCost": 1000, + "name": "Lucky Loot Egg", + "oddsFFlags": { + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", + }, + "overrideCost": 300, "pets": [ [ - "Easter Lamb", - 90, - ], - [ - "Basket Bunny", - 10, + "Pot of Gold Corgi", + 99.95, ], [ - "Marshmallow Kitsune", + "Leprechaun Kitsune", 0.1, - "Nice", - ], - ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, - "configName": "3 | Flower Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "698698f6b8dea556", - }, - { - "category": "Easter", - "collection": "Eggs", - "configData": { - "currency": "EasterCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Rainbow Wave Egg", - "overrideCost": 2000, - "pets": [ - [ - "Basket Bunny", - 90, ], [ - "Marshmallow Kitsune", - 10, + "Lucki Chest Mimic", + 2.5e-7, + "Insane", ], [ - "Easter Agony", - 0.1, - "Nice", + "Huge Lucki Lamb", + 0.0000012, + "Insane", ], ], "rarity": { @@ -36859,45 +37168,45 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Rainbow Wave Egg", + "configName": "17 | Lucky Raid Lobby Egg 17", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "21d79e7d52aec804", + "dateModified": "2026-03-14T15:52:32.059Z", + "hashShort": "8cd6f91edb71c3f7", }, { - "category": "Easter", + "category": "Lobby", "collection": "Eggs", "configData": { - "currency": "EasterCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Easter Bunny Egg", + "name": "Lucky Loot Egg", "oddsFFlags": { - "Easter Angelus": "EggMultiplier_J2", - "Easter Dominus": "EggMultiplier_J1", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 4000, + "overrideCost": 300, "pets": [ [ - "Marshmallow Kitsune", - 99.949995, + "Leprechaun Kitsune", + 99.9, ], [ - "Easter Agony", - 0.2, + "Pot of Gold Corgi", + 0.1, ], [ - "The Easter Bunny", - 0.05, + "Lucki Chest Mimic", + 0.000015, + "Insane", ], [ - "Easter Dominus", - 0.0005, - "Great", + "Lucki Golem", + 0.00000125, + "Insane", ], [ - "Easter Angelus", - 0.00005, + "Huge Lucki Lamb", + 0.0000012, "Insane", ], ], @@ -36914,38 +37223,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Easter Bunny Egg", + "configName": "19 | Lucky Raid Lobby Egg 19", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "cb0eb882a428f8b9", + "dateModified": "2026-03-14T15:52:32.056Z", + "hashShort": "b453420d5cde2afa", }, { - "category": "Easter", + "category": "Raid", "collection": "Eggs", "configData": { - "currency": "EasterCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Easter Chest Egg 1", + "name": "Lucky Bow Egg", "oddsFFlags": { - "Huge Spring Bee": "EggMultiplier_J3", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 6000, + "overrideCost": 400, "pets": [ [ - "Easter Dominus", - 99.100545, + "Horseshoe Capybara", + 99.05, ], [ - "Easter Angelus", + "Clover Phoenix", 1, ], [ - "Egg Chick", - 0.1, + "Clover Deer", + 0.005, + "Nice", ], [ - "Huge Spring Bee", + "Huge Lucki Lamb", 0.0000012, "Insane", ], @@ -36963,39 +37273,44 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "6 | Easter Chest Egg 1", + "configName": "10 | Lucky Raid Egg 10", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "c004241f0955b1fd", + "dateModified": "2026-03-14T15:52:32.264Z", + "hashShort": "6817da41b84d51e7", }, { - "category": "Easter", + "category": "Raid", "collection": "Eggs", "configData": { - "currency": "EasterCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Easter Chest Egg 2", + "name": "Lucky Loot Egg", "oddsFFlags": { - "Huge Spring Bee": "EggMultiplier_J3", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 6100, + "overrideCost": 400, "pets": [ [ - "Easter Angelus", - 95.150545, + "Leprechaun Kitsune", + 99, ], [ - "Egg Chick", - 5, + "Pot of Gold Corgi", + 1, ], [ - "Spring Griffin", - 0.05, - "Nice", + "Lucki Chest Mimic", + 0.00015, + "Insane", ], [ - "Huge Spring Bee", + "Lucki Golem", + 0.0000125, + "Insane", + ], + [ + "Huge Lucki Lamb", 0.0000012, "Insane", ], @@ -37013,39 +37328,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "7 | Easter Chest Egg 2", + "configName": "19 | Lucky Raid Egg 19", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "1bb125584837fc54", + "dateModified": "2026-03-14T15:52:32.305Z", + "hashShort": "67bd99b95e217803", }, { - "category": "Easter", + "category": "Raid", "collection": "Eggs", "configData": { - "currency": "EasterCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Easter Chest Egg 3", + "name": "Lucky Loot Egg", "oddsFFlags": { - "Huge Spring Bee": "EggMultiplier_J3", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 6300, + "overrideCost": 400, "pets": [ [ - "Easter Angelus", - 95.000545, + "Pot of Gold Corgi", + 99.05, ], [ - "Egg Chick", - 5, + "Leprechaun Kitsune", + 1, ], [ - "Spring Griffin", - 0.2, - "Nice", + "Lucki Chest Mimic", + 0.000025, + "Insane", ], [ - "Huge Spring Bee", + "Huge Lucki Lamb", 0.0000012, "Insane", ], @@ -37063,39 +37378,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "8 | Easter Chest Egg 3", + "configName": "18 | Lucky Raid Egg 18", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "c6653d2299a1c3cb", + "dateModified": "2026-03-14T15:52:32.261Z", + "hashShort": "5ee45af8714d68ac", }, { - "category": "Easter", + "category": "Raid", "collection": "Eggs", "configData": { - "currency": "EasterCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Easter Chest Egg 4", + "name": "Lucky Loot Egg", "oddsFFlags": { - "Huge Spring Bee": "EggMultiplier_J3", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 7200, + "overrideCost": 400, "pets": [ [ - "Egg Chick", - 99.195545, + "Pot of Gold Corgi", + 99.05, ], [ - "Spring Griffin", + "Leprechaun Kitsune", 1, ], [ - "Easter Axolotl", - 0.005, - "Nice", + "Lucki Chest Mimic", + 0.0000025, + "Insane", ], [ - "Huge Spring Bee", + "Huge Lucki Lamb", 0.0000012, "Insane", ], @@ -37113,44 +37428,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "9 | Easter Chest Egg 4", + "configName": "17 | Lucky Raid Egg 17", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "817d9f37e28597d6", + "dateModified": "2026-03-14T15:52:32.262Z", + "hashShort": "0c0d3c20f7937bcb", }, { - "category": "Easter", + "category": "Raid", "collection": "Eggs", "configData": { - "currency": "EasterCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Easter Chest Egg 5", + "name": "Lucky Wings Egg", "oddsFFlags": { - "Huge Spring Bee": "EggMultiplier_J3", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 10000, + "overrideCost": 400, "pets": [ [ - "Egg Chick", - 99.195495, + "Clover Owl", + 99.05, ], [ - "Spring Griffin", + "Pot of Gold Corgi", 1, ], [ - "Easter Axolotl", + "Leprechaun Kitsune", 0.005, "Nice", ], [ - "Spring Bee", - 0.00005, - "Nice", - ], - [ - "Huge Spring Bee", + "Huge Lucki Lamb", 0.0000012, "Insane", ], @@ -37168,44 +37478,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "10 | Easter Chest Egg 5", + "configName": "16 | Lucky Raid Egg 16", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "496c4372797d3767", + "dateModified": "2026-03-14T15:52:32.260Z", + "hashShort": "505ec0bb1827d397", }, { - "category": "Easter", + "category": "Raid", "collection": "Eggs", "configData": { - "currency": "EasterCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Easter Chest Egg 6", + "name": "Lucky Wings Egg", "oddsFFlags": { - "Huge Spring Bee": "EggMultiplier_J3", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 20000, + "overrideCost": 400, "pets": [ [ - "Egg Chick", - 99.145545, + "Clover Owl", + 99.05, ], [ - "Spring Griffin", + "Pot of Gold Corgi", 1, ], [ - "Easter Axolotl", - 0.05, - "Nice", - ], - [ - "Spring Bee", + "Leprechaun Kitsune", 0.005, "Nice", ], [ - "Huge Spring Bee", + "Huge Lucki Lamb", 0.0000012, "Insane", ], @@ -37223,44 +37528,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "11 | Easter Chest Egg 6", + "configName": "15 | Lucky Raid Egg 15", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "b01ba6491a531f65", + "dateModified": "2026-03-14T15:52:32.268Z", + "hashShort": "409f7355ab2f9c92", }, { - "category": "Easter", + "category": "Raid", "collection": "Eggs", "configData": { - "currency": "EasterCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Easter Chest Egg 7", + "name": "Lucky Wings Egg", "oddsFFlags": { - "Huge Spring Bee": "EggMultiplier_J3", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 55000, + "overrideCost": 400, "pets": [ [ - "Spring Griffin", - 99.195495, + "Clover Deer", + 99.05, ], [ - "Easter Axolotl", + "Clover Owl", 1, ], [ - "Spring Bee", + "Pot of Gold Corgi", 0.005, "Nice", ], [ - "Painted Cat", - 0.00005, - "Nice", - ], - [ - "Huge Spring Bee", + "Huge Lucki Lamb", 0.0000012, "Insane", ], @@ -37278,44 +37578,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "12 | Easter Chest Egg 7", + "configName": "14 | Lucky Raid Egg 14", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "3094de96188c3702", + "dateModified": "2026-03-14T15:52:32.269Z", + "hashShort": "5975618d1db031b0", }, { - "category": "Easter", + "category": "Raid", "collection": "Eggs", "configData": { - "currency": "EasterCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Easter Chest Egg 8", + "name": "Lucky Wings Egg", "oddsFFlags": { - "Huge Spring Bee": "EggMultiplier_J3", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 180000, + "overrideCost": 400, "pets": [ [ - "Easter Axolotl", - 99.195495, + "Clover Deer", + 99.05, ], [ - "Spring Bee", + "Clover Owl", 1, ], [ - "Painted Cat", + "Pot of Gold Corgi", 0.005, "Nice", ], [ - "Easter Yeti", - 0.00005, - "Nice", - ], - [ - "Huge Spring Bee", + "Huge Lucki Lamb", 0.0000012, "Insane", ], @@ -37333,44 +37628,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "13 | Easter Chest Egg 8", + "configName": "13 | Lucky Raid Egg 13", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "04ee363302c5a8a7", + "dateModified": "2026-03-14T15:52:32.260Z", + "hashShort": "c3afe0956ca8e057", }, { - "category": "Easter", + "category": "Raid", "collection": "Eggs", "configData": { - "currency": "EasterCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Easter Chest Egg 9", + "name": "Lucky Bow Egg", "oddsFFlags": { - "Huge Spring Bee": "EggMultiplier_J3", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 590000, + "overrideCost": 400, "pets": [ [ - "Spring Bee", - 99.195495, + "Clover Phoenix", + 99.05, ], [ - "Painted Cat", + "Clover Deer", 1, ], [ - "Easter Yeti", + "Clover Owl", 0.005, "Nice", ], [ - "Marshmallow Agony", - 0.00005, - "Nice", - ], - [ - "Huge Spring Bee", + "Huge Lucki Lamb", 0.0000012, "Insane", ], @@ -37388,44 +37678,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "14 | Easter Chest Egg 9", + "configName": "11 | Lucky Raid Egg 11", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "861451351105330e", + "dateModified": "2026-03-14T15:52:32.263Z", + "hashShort": "053fb336c50a9e67", }, { - "category": "Easter", + "category": "Raid", "collection": "Eggs", "configData": { - "currency": "EasterCoins", + "currency": "LuckyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Easter Chest Egg 10", + "name": "Lucky Bow Egg", "oddsFFlags": { - "Huge Spring Bee": "EggMultiplier_J3", + "Huge Lucki Lamb": "LuckyRaidEggHugeV2", }, - "overrideCost": 2000000, + "overrideCost": 400, "pets": [ [ - "Painted Cat", - 99.195495, + "Clover Phoenix", + 99.05, ], [ - "Easter Yeti", + "Clover Deer", 1, ], [ - "Marshmallow Agony", + "Clover Owl", 0.005, "Nice", ], [ - "Easter Golem", - 0.00005, - "Nice", - ], - [ - "Huge Spring Bee", + "Huge Lucki Lamb", 0.0000012, "Insane", ], @@ -37443,48 +37728,80 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "15 | Easter Chest Egg 10", + "configName": "12 | Lucky Raid Egg 12", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "3c4e087b9edaac4e", + "dateModified": "2026-03-14T15:52:32.263Z", + "hashShort": "2e74ee9130b78a69", }, { - "category": "Exclusive Eggs", + "category": "Update 41", + "collection": "Eggs", + "configData": { + "currency": "VoidCoins", + "eggNumber": 247, + "goldenThumbnail": "rbxassetid://75422411263181", + "icon": "rbxassetid://89327552705706", + "name": "Doodle Flower Egg", + "pets": [ + [ + "Doodle Cat", + 99, + ], + [ + "Doodle Corgi", + 1, + "Nice", + ], + [ + "Doodle Bunny", + 0.1, + "Great", + ], + ], + "worldNumber": 3, + }, + "configName": "247 | Doodle Flower Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:37.208Z", + "hashShort": "d158dce434894300", + }, + { + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { "disableGold": true, "disableModifiers": true, "disableRainbow": false, "goldChance": 0, - "icon": "rbxassetid://121397272180623", - "name": "Exclusive Aura Egg", + "icon": "rbxassetid://129455545171389", + "name": "Exclusive Kaiju Egg", "pets": [ [ - "Aura Fox", + "Kaiju Sea Dragon", 50, ], [ - "Aura Bull", + "Kaiju Volcano", 35, ], [ - "Aura Dominus", + "Kaiju Hydra", 13, ], [ - "Huge Aura Fox", + "Huge Kaiju Sea Dragon", 1.5, ], [ - "Huge Aura Dominus", + "Huge Kaiju Hydra", 0.39, ], [ - "Titanic Aura Kitsune", + "Titanic Kaiju Moth", 0.1, ], [ - "Gargantuan Aura Cat", + "Gargantuan Kaiju King", 0.01, ], ], @@ -37503,31 +37820,31 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` }, "shinyChance": 2, }, - "configName": "Exclusive Egg 50", + "configName": "Exclusive Egg 47", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "abf92ab23a1ed187", + "hashShort": "3d7688927a4c778b", }, { - "category": "Fishing", + "category": "Mining", "collection": "Eggs", "configData": { - "currency": "FishingEvent", + "currency": "MiningCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Ahoy Egg", - "overrideCost": 250, + "name": "Sapphire Egg", + "overrideCost": 100, "pets": [ [ - "Pirate Dog", + "Mining Raccoon", 90, ], [ - "Captain Octopus", + "Mining Penguin", 10, ], [ - "Skeleton Shark", + "Minecart Hamster", 0.1, "Nice", ], @@ -37545,31 +37862,31 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Fishing Island Egg 1", + "configName": "1 | Sapphire Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "19a5007e2cbd655e", + "hashShort": "3697829bd4cc0580", }, { - "category": "Fishing", + "category": "Mining", "collection": "Eggs", "configData": { - "currency": "FishingEvent", + "currency": "MiningCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Forgotten Egg", - "overrideCost": 500, + "name": "Ruby Egg", + "overrideCost": 300, "pets": [ [ - "Captain Octopus", + "Mining Penguin", 90, ], [ - "Skeleton Shark", + "Minecart Hamster", 10, ], [ - "Leafy Seahorse", + "Crystal Spider", 0.1, "Nice", ], @@ -37587,31 +37904,31 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Fishing Island Egg 2", + "configName": "2 | Ruby Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "d98a8f15b596e1cc", + "hashShort": "0729ad16daa29c44", }, { - "category": "Fishing", + "category": "Mining", "collection": "Eggs", "configData": { - "currency": "FishingEvent", + "currency": "MiningCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Twisted Egg", + "name": "Emerald Egg", "overrideCost": 1000, "pets": [ [ - "Skeleton Shark", + "Minecart Hamster", 90, ], [ - "Leafy Seahorse", + "Crystal Spider", 10, ], [ - "Seamine Pufferfish", + "Crystal Bat", 0.1, "Nice", ], @@ -37629,31 +37946,31 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "3 | Fishing Island Egg 3", + "configName": "3 | Emerald Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "2a167d92e986b2e6", + "hashShort": "1d63fe5d2f84435b", }, { - "category": "Fishing", + "category": "Mining", "collection": "Eggs", "configData": { - "currency": "FishingEvent", + "currency": "MiningCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Mystical Egg", + "name": "Amethyst Egg", "overrideCost": 2000, "pets": [ [ - "Leafy Seahorse", + "Crystal Spider", 90, ], [ - "Seamine Pufferfish", + "Crystal Bat", 10, ], [ - "Mystical Whale", + "Jungle Golem", 0.1, "Nice", ], @@ -37671,44 +37988,41 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Fishing Island Egg 4", + "configName": "4 | Amethyst Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "368014ba4aaa10a8", + "hashShort": "a6d16b4751bc0a8e", }, { - "category": "Fishing", + "category": "Mining", "collection": "Eggs", "configData": { - "currency": "FishingEvent", + "currency": "MiningCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Kraken Egg", - "oddsFFlags": { - "Huge Pirate Dog": "EggMultiplier_J4", - }, + "name": "Rainbow Ore Egg", "overrideCost": 4000, "pets": [ [ - "Seamine Pufferfish", - 99.949995, + "Crystal Bat", + 99.849995, ], [ - "Mystical Whale", + "Jungle Golem", 0.2, ], [ - "Rogue Squid", - 0.05, + "Fragmented Golem", + 0.005, ], [ - "Anglerfish", - 0.0005, + "Abstract Dominus", + 0.0003, "Great", ], [ - "Krakling Kraken", - 0.00005, + "Abyss Carbuncle", + 0.000025, "Insane", ], ], @@ -37725,93 +38039,76 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Fishing Island Egg 5", + "configName": "5 | Rainbow Ore Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "404d6ee177fcb648", + "hashShort": "4c8edaf9a926802a", }, { - "category": "Other", + "category": "Mining", "collection": "Eggs", "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 5, - "icon": "rbxassetid://15249783107", - "name": "Diamond Cat Egg", + "currency": "MiningCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Quartz Ore Egg", + "overrideCost": 30000, "pets": [ [ - "Diamond Cat", - 99, + "Abyss Carbuncle", + 90, ], [ - "Huge Diamond Cat", - 1, + "Minecart Piggy", + 10, + ], + [ + "Mining Monkey", + 0.1, + "Nice", ], ], - "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "shinyChance": 2, }, - "configName": "Exclusive Huge Egg", + "configName": "6 | Quartz Ore Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "3c4ed09ebbb38549", + "hashShort": "84620e3758faedfe", }, { - "category": "Fishing", + "category": "Mining", "collection": "Eggs", "configData": { - "currency": "FishingEvent", - "icon": "rbxassetid://15172355062", + "currency": "MiningCoins", + "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Frozen Egg", - "oddsFFlags": { - "Huge Pirate Dog": "EggMultiplier_J4", - }, - "overrideCost": 6500, + "name": "Topaz Ore Egg", + "overrideCost": 250000, "pets": [ [ - "Snow Crab", - 99.749995, + "Minecart Piggy", + 90, ], [ - "Mystical Whale", - 0.4, - "Nice", + "Mining Monkey", + 10, ], [ - "Rogue Squid", - 0.05, + "Gem Mole", + 0.1, "Nice", ], - [ - "Anglerfish", - 0.0005, - "Great", - ], - [ - "Beluga Whale", - 0.00005, - "Insane", - ], - [ - "Huge Pirate Dog", - 0.0000012, - "Insane", - ], ], "rarity": { "Announce": true, @@ -37826,651 +38123,948 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "6 | Fishing Island Egg 6", + "configName": "7 | Topaz Ore Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "8b009389d34c45a6", + "hashShort": "3c4db6502f272ca9", }, { - "category": "Update 59", + "category": "Mining", "collection": "Eggs", "configData": { - "currency": "FantasyCoins", - "eggNumber": 252, + "currency": "MiningCoins", "icon": "rbxassetid://15172355963", - "name": "Fantasy Egg", + "isCustomEgg": true, + "name": "Onyx Ore Egg", + "oddsFFlags": { + "Huge Minecart Hamster": "MiningEggHuge", + "Mining Robot": "MiningEggPet1", + "Obsidian Dragon": "MiningEggPet2", + }, + "overrideCost": 1000000, "pets": [ [ - "Enchanted Bunny", - 90, + "Minecart Piggy", + 70, ], [ - "Enchanted Dog", - 10, + "Mining Monkey", + 30, ], - ], - "worldNumber": 4, - }, - "configName": "252 | Fantasy Egg", - "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "f184efee665531e2", - }, - { - "category": "Update 59", - "collection": "Eggs", - "configData": { - "currency": "FantasyCoins", - "eggNumber": 253, - "icon": "rbxassetid://15172355963", - "name": "Flora Egg", - "pets": [ [ - "Enchanted Bunny", - 90, + "Gem Mole", + 0.1, ], [ - "Enchanted Dog", - 9, + "Mining Robot", + 0.0003, + "Great", ], [ - "Lilypad Cat", - 1, - "Nice", + "Obsidian Dragon", + 0.000025, + "Insane", + ], + [ + "Huge Minecart Hamster", + 0.000059999999999999995, + "Insane", ], ], - "worldNumber": 4, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "253 | Flora Egg", + "configName": "8 | Onyx Ore Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "f4d0a43e43903b8f", + "hashShort": "1642034419116511", }, { - "category": "Update 59", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "FantasyCoins", - "eggNumber": 254, - "icon": "rbxassetid://15172355963", - "name": "Firefly Forest Egg", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://95913164974324", + "name": "Exclusive Beast Egg", "pets": [ [ - "Enchanted Dog", - 90, + "Snuggle Beast", + 50, ], [ - "Lilypad Cat", - 9, - "Nice", + "Feral Beast", + 35, ], [ - "Wisp Deer", - 1, - "Nice", + "Claw Beast", + 13, + ], + [ + "Huge Snuggle Beast", + 1.5, + ], + [ + "Huge Claw Beast", + 0.39, + ], + [ + "Titanic Warrior Beast", + 0.1, + ], + [ + "Gargantuan Royal Beast", + 0.01, ], ], - "worldNumber": 4, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "254 | Firefly Forest Egg", + "configName": "Exclusive Egg 48", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "4486d086faa2bb4d", + "hashShort": "1d0f101810fbbb90", }, { - "category": "Update 59", + "category": "Conveyor", "collection": "Eggs", "configData": { - "currency": "FantasyCoins", - "eggNumber": 255, + "currency": "FactoryCoins", "icon": "rbxassetid://15172355963", - "name": "Honeycomb Egg", + "isCustomEgg": true, + "name": "Lemon Jelly Egg", + "oddsFFlags": { + "Huge Rave Slime": "ConveyorEggHuge", + }, + "overrideCost": 500, "pets": [ [ - "Lilypad Cat", - 90, + "Spotted Elephant", + 99, ], [ - "Wisp Deer", - 9, + "Ooze Axolotl", + 1, ], [ - "Pixie Bee", - 1, - "Nice", + "Huge Rave Slime", + 0.0000012, + "Insane", ], ], - "worldNumber": 4, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "255 | Honeycomb Egg", + "configName": "1 | Conveyor Egg 1", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "c0546dab64228ed4", + "hashShort": "fd6a4c263607b371", }, { - "category": "Update 59", + "category": "Conveyor", "collection": "Eggs", "configData": { - "currency": "FantasyCoins", - "eggNumber": 256, + "currency": "FactoryCoins", "icon": "rbxassetid://15172355963", - "name": "Fairy Mushroom Egg", + "isCustomEgg": true, + "name": "Orange Jelly Egg", + "oddsFFlags": { + "Huge Rave Slime": "ConveyorEggHuge", + }, + "overrideCost": 870, "pets": [ [ - "Wisp Deer", - 90, + "Spotted Elephant", + 99, ], [ - "Pixie Bee", - 9, + "Ooze Axolotl", + 1, ], [ - "Beegle Dog", - 1, + "Ooze Corgi", + 0.005, "Nice", ], [ - "Honey Golem", - 0.1, - "Great", + "Huge Rave Slime", + 0.0000012, + "Insane", ], ], - "worldNumber": 4, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "256 | Fairy Mushroom Egg", + "configName": "2 | Conveyor Egg 2", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "eb74c04f05e31cd7", + "hashShort": "963cc22139fb2db7", }, { - "category": "Update 59", + "category": "Conveyor", "collection": "Eggs", "configData": { - "currency": "FantasyCoins", - "eggNumber": 257, + "currency": "FactoryCoins", "icon": "rbxassetid://15172355963", - "name": "Fantasy Meadow Egg", + "isCustomEgg": true, + "name": "Cherry Jelly Egg", + "oddsFFlags": { + "Huge Rave Slime": "ConveyorEggHuge", + }, + "overrideCost": 1700, "pets": [ [ - "Beegle Dog", - 90, + "Ooze Axolotl", + 99.9, ], [ - "Honey Golem", - 9, + "Ooze Corgi", + 0.1, ], [ - "Mushroom Snail", - 1, + "Knight Slime", + 0.00005, "Nice", ], [ - "Mushroom Corgi", - 0.1, - "Great", + "Huge Rave Slime", + 0.0000012, + "Insane", ], ], - "worldNumber": 4, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "257 | Fantasy Meadow Egg", + "configName": "3 | Conveyor Egg 3", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "3483b234bc147311", + "hashShort": "94836913f0ca1607", }, { - "category": "Update 59", + "category": "Conveyor", "collection": "Eggs", "configData": { - "currency": "FantasyCoins", - "eggNumber": 258, + "currency": "FactoryCoins", "icon": "rbxassetid://15172355963", - "name": "Radiant Runestones Egg", + "isCustomEgg": true, + "name": "Strawberry Jelly Egg", + "oddsFFlags": { + "Huge Rave Slime": "ConveyorEggHuge", + }, + "overrideCost": 3500, "pets": [ [ - "Mushroom Snail", - 90, + "Ooze Axolotl", + 99.954545, ], [ - "Mushroom Corgi", - 9, + "Ooze Corgi", + 0.1, ], [ - "Mossy Lamb", - 1, + "Knight Slime", + 0.0005, "Nice", ], [ - "Flying Piggy", - 0.1, - "Great", + "Bubble Cat", + 0.000005, + "Nice", + ], + [ + "Huge Rave Slime", + 0.0000012, + "Insane", ], ], - "worldNumber": 4, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "258 | Radiant Runestones Egg", + "configName": "4 | Conveyor Egg 4", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "f997a5282ff4c913", + "hashShort": "67d296b74974c7d7", }, { - "category": "Update 59", + "category": "Conveyor", "collection": "Eggs", "configData": { - "currency": "FantasyCoins", - "eggNumber": 259, + "currency": "FactoryCoins", "icon": "rbxassetid://15172355963", - "name": "Fogbound Forest Egg", + "isCustomEgg": true, + "name": "Lime Jelly Egg", + "oddsFFlags": { + "Huge Rave Slime": "ConveyorEggHuge", + }, + "overrideCost": 7500, "pets": [ [ - "Mossy Lamb", - 90, + "Ooze Corgi", + 99.954545, ], [ - "Flying Piggy", - 9, + "Knight Slime", + 0.1, ], [ - "Relic Cat", - 1, + "Bubble Cat", + 0.0005, "Nice", ], [ - "Relic Deer", - 0.1, - "Great", + "Jelly Butterfly", + 0.000005, + "Nice", + ], + [ + "Huge Rave Slime", + 0.0000012, + "Insane", ], ], - "worldNumber": 4, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "259 | Fogbound Forest Egg", + "configName": "5 | Conveyor Egg 5", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "f16f8c5f8ca77baf", + "hashShort": "d9f3de898908603d", }, { - "category": "Update 59", + "category": "Conveyor", "collection": "Eggs", "configData": { - "currency": "FantasyCoins", - "eggNumber": 260, + "currency": "FactoryCoins", "icon": "rbxassetid://15172355963", - "name": "Rune Graveyard Egg", + "isCustomEgg": true, + "name": "Lime Jelly Egg", + "oddsFFlags": { + "Huge Rave Slime": "ConveyorEggHuge", + }, + "overrideCost": 16000, "pets": [ [ - "Relic Cat", - 90, + "Knight Slime", + 99.954545, ], [ - "Relic Deer", - 9, + "Bubble Cat", + 0.1, ], [ - "Glade Griffin", - 1, + "Jelly Butterfly", + 0.0005, "Nice", ], [ - "Angel Dragon", - 0.1, - "Great", + "Jelly Hydra", + 0.000005, + "Nice", + ], + [ + "Huge Rave Slime", + 0.0000012, + "Insane", ], ], - "worldNumber": 4, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "260 | Rune Graveyard Egg", + "configName": "6 | Conveyor Egg 6", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "a3b47b201275b725", + "hashShort": "4f3c046c3daab407", }, { - "category": "Update 59", + "category": "Conveyor", "collection": "Eggs", "configData": { - "currency": "FantasyCoins", - "eggNumber": 261, + "currency": "FactoryCoins", "icon": "rbxassetid://15172355963", - "name": "Halo Spires Egg", + "isCustomEgg": true, + "name": "Blueberry Jelly Egg", + "oddsFFlags": { + "Huge Rave Slime": "ConveyorEggHuge", + }, + "overrideCost": 36000, "pets": [ [ - "Glade Griffin", - 91, + "Bubble Cat", + 99.954545, ], [ - "Angel Dragon", - 9.1, + "Jelly Butterfly", + 0.1, ], [ - "Empyrean Corgi", - 0.001, - "Insane", + "Jelly Hydra", + 0.0005, + "Nice", ], [ - "Empyrean Owl", - 0.000075, + "Firegel Dragon", + 0.000005, + "Nice", + ], + [ + "Huge Rave Slime", + 0.0000012, "Insane", ], ], - "worldNumber": 4, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "261 | Halo Spires Egg", + "configName": "7 | Conveyor Egg 7", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "16567cff86f76c17", + "hashShort": "226b5ee18d8b8769", }, { - "category": "Exclusive Eggs", + "category": "Conveyor", "collection": "Eggs", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://92009010203013", - "name": "Exclusive Spirit Egg", + "currency": "FactoryCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Cherry Slime Egg", + "oddsFFlags": { + "Huge Rave Slime": "ConveyorEggHuge", + }, + "overrideCost": 78000, "pets": [ [ - "Blossom Spirit", - 50, - ], - [ - "Light Spirit", - 35, + "Bubble Cat", + 99.949995, ], [ - "Wave Spirit", - 13, + "Jelly Butterfly", + 0.1, ], [ - "Huge Blossom Spirit", - 1.5, + "Jelly Hydra", + 0.05, + "Great", ], [ - "Huge Wave Spirit", - 0.39, + "Firegel Dragon", + 0.0005, + "Insane", ], [ - "Titanic Wood Spirit", - 0.1, + "Jelly Wizard", + 0.00005, + "Insane", ], [ - "Gargantuan Magma Spirit", - 0.01, + "Huge Rave Slime", + 0.0000012, + "Insane", ], ], - "productIds": { - "10 Exclusive Eggs": 3287449418, - "100 Exclusive Eggs": 3287449543, - "3 Exclusive Eggs": 3287449290, - "Exclusive Egg": 3287449166, - }, - "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "shinyChance": 2, }, - "configName": "Exclusive Egg 51", + "configName": "8 | Conveyor Egg 8", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "7a5e081fac75d44a", + "hashShort": "1a18de387a6e035d", }, { - "category": "Other", + "category": "Conveyor", "collection": "Eggs", "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 5, - "icon": "rbxassetid://15249783107", - "name": "Large Diamond Dog Egg", + "currency": "FactoryCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Cherry Slime Egg", + "oddsFFlags": { + "Huge Rave Slime": "ConveyorEggHuge", + }, + "overrideCost": 17000, "pets": [ [ - "Diamond Dog", - 90, + "Jelly Hydra", + 99.954545, ], [ - "Huge Diamond Dog", - 10, + "Firegel Dragon", + 0.1, + ], + [ + "Jelly Wizard", + 0.0005, + "Nice", + ], + [ + "Ooze Cat", + 0.000005, + "Nice", + ], + [ + "Huge Rave Slime", + 0.0000012, + "Insane", ], ], - "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "shinyChance": 2, }, - "configName": "Large Diamond Dog Egg", + "configName": "9 | Conveyor Egg 9", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "dd5f6b911ac1b2c1", + "hashShort": "3d6987ee8ce92d75", }, { - "category": "Other", + "category": "Conveyor", "collection": "Eggs", "configData": { - "disableGold": false, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 5, - "icon": "rbxassetid://15249783107", - "name": "Diamond Dog Egg", + "currency": "FactoryCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Orange Slime Egg", + "oddsFFlags": { + "Huge Rave Slime": "ConveyorEggHuge", + }, + "overrideCost": 380000, "pets": [ [ - "Diamond Dog", - 68, + "Firegel Dragon", + 99.954545, ], [ - "Huge Diamond Dog", - 30, + "Jelly Wizard", + 0.1, ], [ - "Titanic Diamond Dog", - 2, + "Ooze Cat", + 0.0005, + "Nice", + ], + [ + "Rave Slime", + 0.000005, + "Nice", + ], + [ + "Huge Rave Slime", + 0.0000012, + "Insane", ], ], - "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "shinyChance": 2, }, - "configName": "Diamond Dog Egg", + "configName": "10 | Conveyor Egg 10", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "f3bb84febdda25cd", + "hashShort": "7c8f2b202a77e730", }, { - "category": "Update 61", + "category": "Conveyor", "collection": "Eggs", "configData": { - "currency": "FantasyCoins", - "eggNumber": 262, + "currency": "FactoryCoins", "icon": "rbxassetid://15172355963", - "name": "Twilight Grove Egg", + "isCustomEgg": true, + "name": "Lemon Slime Egg", + "oddsFFlags": { + "Huge Rave Slime": "ConveyorEggHuge", + }, + "overrideCost": 840000, "pets": [ [ - "Glimmercap Turtle", - 90, + "Jelly Wizard", + 99.954545, ], [ - "Sprout Pegasus", - 9, + "Ooze Cat", + 0.1, ], [ - "Meteor Mole", - 1, + "Rave Slime", + 0.0005, + "Nice", + ], + [ + "Bubble Hydra", + 0.000005, "Nice", ], + [ + "Huge Rave Slime", + 0.0000012, + "Insane", + ], ], - "worldNumber": 4, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "262 | Twilight Grove Egg", + "configName": "11 | Conveyor Egg 11", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "8326f714c70fc2e3", + "hashShort": "c9608f67573fb048", }, { - "category": "Update 61", + "category": "Conveyor", "collection": "Eggs", "configData": { - "currency": "FantasyCoins", - "eggNumber": 263, + "currency": "FactoryCoins", "icon": "rbxassetid://15172355963", - "name": "Moonlight Ridge Egg", + "isCustomEgg": true, + "name": "Lime Slime Egg", + "oddsFFlags": { + "Huge Rave Slime": "ConveyorEggHuge", + }, + "overrideCost": 1900000, "pets": [ [ - "Sprout Pegasus", - 90, + "Ooze Cat", + 99.954545, ], [ - "Meteor Mole", - 9, + "Rave Slime", + 0.1, ], [ - "Rootkin Fox", - 1, + "Bubble Hydra", + 0.0005, + "Nice", + ], + [ + "Sticky Lamb", + 0.000005, "Nice", ], + [ + "Huge Rave Slime", + 0.0000012, + "Insane", + ], ], - "worldNumber": 4, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "263 | Moonlight Ridge Egg", + "configName": "12 | Conveyor Egg 12", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "8368b147901d6d07", + "hashShort": "91baf21957e10f93", }, { - "category": "Update 61", + "category": "Conveyor", "collection": "Eggs", "configData": { - "currency": "FantasyCoins", - "eggNumber": 264, + "currency": "FactoryCoins", "icon": "rbxassetid://15172355963", - "name": "Starroot Oak Egg", + "isCustomEgg": true, + "name": "Blueberry Slime Egg", + "oddsFFlags": { + "Huge Rave Slime": "ConveyorEggHuge", + }, + "overrideCost": 4100000, "pets": [ [ - "Meteor Mole", - 90, + "Rave Slime", + 99.954545, ], [ - "Rootkin Fox", - 9, + "Bubble Hydra", + 0.1, ], [ - "Starry Eye Bunny", - 1, + "Sticky Lamb", + 0.0005, "Nice", ], [ - "Scroll Dragon", - 0.1, - "Great", + "Jelly Kitsune", + 0.000005, + "Nice", + ], + [ + "Huge Rave Slime", + 0.0000012, + "Insane", ], ], - "worldNumber": 4, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "264 | Starroot Oak Egg", + "configName": "13 | Conveyor Egg 13", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "275eeb3cf1e7de37", + "hashShort": "33a458ea83f6e521", }, { - "category": "Update 61", + "category": "Conveyor", "collection": "Eggs", "configData": { - "currency": "FantasyCoins", - "eggNumber": 265, + "currency": "FactoryCoins", "icon": "rbxassetid://15172355963", - "name": "Aether Egg", + "isCustomEgg": true, + "name": "Strawberry Slime Egg", + "oddsFFlags": { + "Huge Rave Slime": "ConveyorEggHuge", + }, + "overrideCost": 9100000, "pets": [ [ - "Rootkin Fox", - 90, + "Bubble Hydra", + 99.954545, ], [ - "Starry Eye Bunny", - 9, + "Sticky Lamb", + 0.1, ], [ - "Scroll Dragon", - 1, + "Jelly Kitsune", + 0.0005, "Nice", ], [ - "Wisp Wolf", - 0.1, - "Great", + "Nightmare Sludge", + 0.000005, + "Nice", + ], + [ + "Huge Rave Slime", + 0.0000012, + "Insane", ], ], - "worldNumber": 4, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "265 | Aether Egg", + "configName": "14 | Conveyor Egg 14", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "e920033d1324dfd5", + "hashShort": "131c65459c7394ef", }, { - "category": "Update 61", + "category": "Conveyor", "collection": "Eggs", "configData": { - "currency": "FantasyCoins", - "eggNumber": 266, + "currency": "FactoryCoins", "icon": "rbxassetid://15172355963", - "name": "Crescent Moon Egg", + "isCustomEgg": true, + "name": "Grapefruit Slime Egg", + "oddsFFlags": { + "Huge Rave Slime": "ConveyorEggHuge", + "Nightmare Sludge": "ConveyorEggP1", + "Slimezilla": "ConveyorEggP2", + }, + "overrideCost": 20000000, "pets": [ [ - "Scroll Dragon", - 91, + "Bubble Hydra", + 99.949995, ], [ - "Wisp Wolf", - 9.1, + "Sticky Lamb", + 0.1, ], [ - "Telescope Owl", - 0.001, + "Jelly Kitsune", + 0.05, + "Great", + ], + [ + "Nightmare Sludge", + 0.0005, "Insane", ], [ - "Starlight Pony", - 0.000025, + "Slimezilla", + 0.00005, + "Insane", + ], + [ + "Huge Rave Slime", + 0.0000012, "Insane", ], ], - "worldNumber": 4, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "266 | Crescent Moon Egg", + "configName": "15 | Conveyor Egg 15", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "2dab1efd05bb0844", + "hashShort": "fe7d663f10ae2e28", }, { "category": "Exclusive Eggs", @@ -38480,43 +39074,43 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "disableModifiers": true, "disableRainbow": false, "goldChance": 0, - "icon": "rbxassetid://71800431354706", - "name": "Exclusive Yin-Yang Egg", + "icon": "rbxassetid://76237149926893", + "name": "Exclusive Patchwork Egg", "pets": [ [ - "Yin-Yang Dragon", + "Patchwork Bunny", 50, ], [ - "Yin-Yang Griffin", + "Patchwork Yeti", 35, ], [ - "Yin-Yang Bunny", + "Patchwork Teddy Bear", 13, ], [ - "Huge Yin-Yang Dragon", + "Huge Patchwork Bunny", 1.5, ], [ - "Huge Yin-Yang Bunny", + "Huge Patchwork Teddy Bear", 0.39, ], [ - "Titanic Yin-Yang Grim Reaper", + "Titanic Patchwork Capybara", 0.1, ], [ - "Gargantuan Yin-Yang Kitsune", + "Gargantuan Patchwork Agony", 0.01, ], ], "productIds": { - "10 Exclusive Eggs": 3296562215, - "100 Exclusive Eggs": 3296562344, - "3 Exclusive Eggs": 3296562087, - "Exclusive Egg": 3296562002, + "10 Exclusive Eggs": 3269320058, + "100 Exclusive Eggs": 3269320229, + "3 Exclusive Eggs": 3269318753, + "Exclusive Egg": 3269318607, }, "rainbowChance": 2, "rarity": { @@ -38533,46 +39127,47 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` }, "shinyChance": 2, }, - "configName": "Exclusive Egg 52", + "configName": "Exclusive Egg 49", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "e5f1244b6c9a9211", + "hashShort": "1bb19f97c8f866cd", }, { - "category": "Other", + "category": "Easter", "collection": "Eggs", "configData": { - "allPetsRare": true, - "disableGold": true, + "currency": "Diamonds", "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://92729315855673", - "name": "Basketball Egg", - "nonStackable": true, + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Easter Diamond Egg", + "oddsFFlags": { + "Huge Diamond Bunny": "EDE_H", + "Titanic Diamond Bunny": "EDE_T", + "Titanic Luxe Axolotl": "EDE_T2", + }, + "overrideCost": 200, "pets": [ [ - "Blurred Bear Ball", - 55, - ], - [ - "Comet Cyclops Ball", - 37, + "Diamond Bunny", + 99.999878776, ], [ - "Glitched Cat Ball", - 5, + "Huge Diamond Bunny", + 0.00012, + "Insane", ], [ - "Huge Electric Bunny Ball", - 2.85, + "Titanic Diamond Bunny", + 0.0000012, + "Insane", ], [ - "Titanic Comet Cyclops Ball", - 0.15, + "Titanic Luxe Axolotl", + 2.4e-8, + "Insane", ], ], - "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, @@ -38585,35 +39180,46 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_id": "Celestial", "_script": null, }, - "shinyChance": 2, }, - "configName": "Basketball Egg", + "configName": "Easter Diamond Egg 1x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "976bfb4d2c9380dd", + "hashShort": "1e12cb76c15ac5f1", }, { - "category": "Basketball", + "category": "Easter", "collection": "Eggs", "configData": { - "currency": "BasketballCoins", + "currency": "Diamonds", + "disableModifiers": true, "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Basketball Egg 2", - "overrideCost": 500, + "name": "Easter Diamond Egg", + "oddsFFlags": { + "Huge Diamond Bunny": "EDE_H", + "Titanic Diamond Bunny": "EDE_T", + "Titanic Luxe Axolotl": "EDE_T2", + }, + "overrideCost": 2000, "pets": [ [ - "Basketball Cat", - 89, + "Diamond Bunny", + 99.99878776, ], [ - "Basketball Corgi", - 10, + "Huge Diamond Bunny", + 0.0012, + "Insane", ], [ - "Strawberry Cow Ball", - 1, - "Nice", + "Titanic Diamond Bunny", + 0.000012, + "Insane", + ], + [ + "Titanic Luxe Axolotl", + 2.4e-7, + "Insane", ], ], "rarity": { @@ -38629,33 +39235,45 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Basketball Egg 2", + "configName": "Easter Diamond Egg 10x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "4fcf637b9cd6d167", + "hashShort": "8f91399f4551b14b", }, { - "category": "Basketball", + "category": "Easter", "collection": "Eggs", "configData": { - "currency": "BasketballCoins", + "currency": "Diamonds", + "disableModifiers": true, "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Basketball Egg 3", - "overrideCost": 1000, + "name": "Easter Diamond Egg", + "oddsFFlags": { + "Huge Diamond Bunny": "EDE_H", + "Titanic Diamond Bunny": "EDE_T", + "Titanic Luxe Axolotl": "EDE_T2", + }, + "overrideCost": 20000, "pets": [ [ - "Basketball Corgi", - 90, + "Diamond Bunny", + 99.9878776, ], [ - "Strawberry Cow Ball", - 10, + "Huge Diamond Bunny", + 0.012, + "Insane", ], [ - "Kawaii Dragon Ball", - 0.1, - "Nice", + "Titanic Diamond Bunny", + 0.00012, + "Insane", + ], + [ + "Titanic Luxe Axolotl", + 0.0000024, + "Insane", ], ], "rarity": { @@ -38671,32 +39289,32 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "3 | Basketball Egg 3", + "configName": "Easter Diamond Egg 100x", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "c0c2190985b0b2d7", + "hashShort": "76d9ce078a647cba", }, { - "category": "Basketball", + "category": "Easter", "collection": "Eggs", "configData": { - "currency": "BasketballCoins", + "currency": "EasterCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Basketball Egg 4", - "overrideCost": 2000, + "name": "Bow Egg", + "overrideCost": 250, "pets": [ [ - "Strawberry Cow Ball", - 97, + "Easter Cat", + 90, ], [ - "Kawaii Dragon Ball", - 3, + "Easter Fox", + 10, ], [ - "UV Kitsune Ball", - 0.01, + "Easter Lamb", + 0.1, "Nice", ], ], @@ -38713,38 +39331,33 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Basketball Egg 4", + "configName": "1 | Bow Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "99d5a3756a3241e8", + "hashShort": "ed2cc2ca735f7ef7", }, { - "category": "Basketball", + "category": "Easter", "collection": "Eggs", "configData": { - "currency": "BasketballCoins", + "currency": "EasterCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Basketball Egg 5 Tier 1", - "overrideCost": 4000, + "name": "Flower Pot Egg", + "overrideCost": 500, "pets": [ [ - "Kawaii Dragon Ball", + "Easter Fox", 90, ], [ - "UV Kitsune Ball", - 8, - ], - [ - "Storm Axolotl Ball", - 2, - "Great", + "Easter Lamb", + 10, ], [ - "Electric Bunny Ball", + "Basket Bunny", 0.1, - "Insane", + "Nice", ], ], "rarity": { @@ -38760,28 +39373,33 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Basketball Egg 5 Tier 1", + "configName": "2 | Flower Pot Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "d6dfaa31518348f6", + "hashShort": "b9746fcc5f781fe7", }, { - "category": "Basketball", + "category": "Easter", "collection": "Eggs", "configData": { - "currency": "BasketballCoins", + "currency": "EasterCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Basketball Egg 1", - "overrideCost": 250, + "name": "Flower Egg", + "overrideCost": 1000, "pets": [ [ - "Basketball Cat", - 98, + "Easter Lamb", + 90, ], [ - "Basketball Corgi", - 2, + "Basket Bunny", + 10, + ], + [ + "Marshmallow Kitsune", + 0.1, + "Nice", ], ], "rarity": { @@ -38797,38 +39415,33 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Basketball Egg 1", + "configName": "3 | Flower Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "b92ed8150ea91840", + "hashShort": "698698f6b8dea556", }, { - "category": "Basketball", + "category": "Easter", "collection": "Eggs", "configData": { - "currency": "BasketballCoins", + "currency": "EasterCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Basketball Egg 5 Tier 2", - "overrideCost": 4000, + "name": "Rainbow Wave Egg", + "overrideCost": 2000, "pets": [ [ - "UV Kitsune Ball", - 92, - ], - [ - "Storm Axolotl Ball", - 6, + "Basket Bunny", + 90, ], [ - "Electric Bunny Ball", - 1, - "Great", + "Marshmallow Kitsune", + 10, ], [ - "Meebo The Alien Ball", + "Easter Agony", 0.1, - "Insane", + "Nice", ], ], "rarity": { @@ -38844,42 +39457,45 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "6 | Basketball Egg 5 Tier 2", + "configName": "4 | Rainbow Wave Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "583c5b505272d63e", + "hashShort": "21d79e7d52aec804", }, { - "category": "Basketball", + "category": "Easter", "collection": "Eggs", "configData": { - "currency": "BasketballCoins", + "currency": "EasterCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Basketball Egg 5 Tier 3", + "name": "Easter Bunny Egg", + "oddsFFlags": { + "Easter Angelus": "EggMultiplier_J2", + "Easter Dominus": "EggMultiplier_J1", + }, "overrideCost": 4000, "pets": [ [ - "UV Kitsune Ball", - 80, + "Marshmallow Kitsune", + 99.949995, ], [ - "Storm Axolotl Ball", - 15, + "Easter Agony", + 0.2, ], [ - "Electric Bunny Ball", - 3, - "Great", + "The Easter Bunny", + 0.05, ], [ - "Meebo The Alien Ball", - 0.5, - "Insane", + "Easter Dominus", + 0.0005, + "Great", ], [ - "Blurred Bear Ball", - 0.1, + "Easter Angelus", + 0.00005, "Insane", ], ], @@ -38896,45 +39512,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "6 | Basketball Egg 5 Tier 3", + "configName": "5 | Easter Bunny Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "7a2670f830ab1706", + "hashShort": "cb0eb882a428f8b9", }, { - "category": "Basketball", + "category": "Easter", "collection": "Eggs", "configData": { - "currency": "BasketballCoins", + "currency": "EasterCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Basketball Egg 5 Tier 4", + "name": "Easter Chest Egg 1", "oddsFFlags": { - "Comet Cyclops Ball": "EggMultiplier_K1", + "Huge Spring Bee": "EggMultiplier_J3", }, - "overrideCost": 4000, + "overrideCost": 6000, "pets": [ [ - "Storm Axolotl Ball", - 92, - ], - [ - "Electric Bunny Ball", - 7, + "Easter Dominus", + 99.100545, ], [ - "Meebo The Alien Ball", + "Easter Angelus", 1, - "Great", ], [ - "Blurred Bear Ball", - 0.2, - "Great", + "Egg Chick", + 0.1, ], [ - "Comet Cyclops Ball", - 0.0005, + "Huge Spring Bee", + 0.0000012, "Insane", ], ], @@ -38951,51 +39561,40 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "6 | Basketball Egg 5 Tier 4", + "configName": "6 | Easter Chest Egg 1", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "3e30adee7eb383f8", + "hashShort": "c004241f0955b1fd", }, { - "category": "Basketball", + "category": "Easter", "collection": "Eggs", "configData": { - "currency": "BasketballCoins", + "currency": "EasterCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Basketball Egg 5 Tier 5", + "name": "Easter Chest Egg 2", "oddsFFlags": { - "Comet Cyclops Ball": "EggMultiplier_K1", - "Glitched Cat Ball": "EggMultiplier_K2", + "Huge Spring Bee": "EggMultiplier_J3", }, - "overrideCost": 4000, + "overrideCost": 6100, "pets": [ [ - "Storm Axolotl Ball", - 86, - ], - [ - "Electric Bunny Ball", - 12, - ], - [ - "Meebo The Alien Ball", - 2, - "Great", + "Easter Angelus", + 95.150545, ], [ - "Blurred Bear Ball", - 0.5, - "Great", + "Egg Chick", + 5, ], [ - "Comet Cyclops Ball", - 0.0005, - "Insane", + "Spring Griffin", + 0.05, + "Nice", ], [ - "Glitched Cat Ball", - 0.00005, + "Huge Spring Bee", + 0.0000012, "Insane", ], ], @@ -39012,57 +39611,40 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "6 | Basketball Egg 5 Tier 5", + "configName": "7 | Easter Chest Egg 2", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "2d8480075da026c1", + "hashShort": "1bb125584837fc54", }, { - "category": "Basketball", + "category": "Easter", "collection": "Eggs", "configData": { - "currency": "BasketballCoins", + "currency": "EasterCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Basketball Egg 5 Tier 6", + "name": "Easter Chest Egg 3", "oddsFFlags": { - "Comet Cyclops Ball": "EggMultiplier_K1", - "Glitched Cat Ball": "EggMultiplier_K2", - "Hippomelon Ball": "EggMultiplier_K3", + "Huge Spring Bee": "EggMultiplier_J3", }, - "overrideCost": 4000, + "overrideCost": 6300, "pets": [ [ - "Storm Axolotl Ball", - 80, - ], - [ - "Electric Bunny Ball", - 15, - ], - [ - "Meebo The Alien Ball", - 3, - "Great", - ], - [ - "Blurred Bear Ball", - 0.5, - "Great", + "Easter Angelus", + 95.000545, ], [ - "Comet Cyclops Ball", - 0.0005, - "Insane", + "Egg Chick", + 5, ], [ - "Glitched Cat Ball", - 0.00005, - "Insane", + "Spring Griffin", + 0.2, + "Nice", ], [ - "Hippomelon Ball", - 0.00002, + "Huge Spring Bee", + 0.0000012, "Insane", ], ], @@ -39079,95 +39661,95 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "6 | Basketball Egg 5 Tier 6", + "configName": "8 | Easter Chest Egg 3", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "8939a25ee27e33e9", + "hashShort": "c6653d2299a1c3cb", }, { - "category": "Other", + "category": "Easter", "collection": "Eggs", "configData": { - "allPetsRare": true, - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://127597256491079", - "name": "Cosmic Basketball Egg", - "nonStackable": true, + "currency": "EasterCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Easter Chest Egg 4", + "oddsFFlags": { + "Huge Spring Bee": "EggMultiplier_J3", + }, + "overrideCost": 7200, "pets": [ [ - "Atomic Monkey Ball", - 55, - ], - [ - "Holographic Axolotl Ball", - 36, - ], - [ - "Fragmented Dominus Ball", - 5, + "Egg Chick", + 99.195545, ], [ - "Huge Fragmented Dominus Ball", - 2.85, + "Spring Griffin", + 1, ], [ - "Huge LeGoat Ball", - 1, + "Easter Axolotl", + 0.005, + "Nice", ], [ - "Titanic Black Hole Angelus Ball", - 0.15, + "Huge Spring Bee", + 0.0000012, + "Insane", ], ], - "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "shinyChance": 2, }, - "configName": "Cosmic Basketball Egg", + "configName": "9 | Easter Chest Egg 4", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "8aede7ebb5f17f3b", + "hashShort": "817d9f37e28597d6", }, { - "category": "Basketball", + "category": "Easter", "collection": "Eggs", "configData": { - "currency": "BasketballCoins", + "currency": "EasterCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Basketball Egg 6", - "overrideCost": 5000, + "name": "Easter Chest Egg 5", + "oddsFFlags": { + "Huge Spring Bee": "EggMultiplier_J3", + }, + "overrideCost": 10000, "pets": [ [ - "Storm Axolotl Ball", - 90, + "Egg Chick", + 99.195495, ], [ - "Electric Bunny Ball", - 8, + "Spring Griffin", + 1, ], [ - "Meebo The Alien Ball", - 2, - "Great", + "Easter Axolotl", + 0.005, + "Nice", ], [ - "Robot Ball", - 0.1, + "Spring Bee", + 0.00005, + "Nice", + ], + [ + "Huge Spring Bee", + 0.0000012, "Insane", ], ], @@ -39184,42 +39766,45 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "6 | Basketball Egg 6", + "configName": "10 | Easter Chest Egg 5", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "59c4170b69af5cdd", + "hashShort": "496c4372797d3767", }, { - "category": "Basketball", + "category": "Easter", "collection": "Eggs", "configData": { - "currency": "BasketballCoins", + "currency": "EasterCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Basketball Egg 5", - "overrideCost": 4000, + "name": "Easter Chest Egg 6", + "oddsFFlags": { + "Huge Spring Bee": "EggMultiplier_J3", + }, + "overrideCost": 20000, "pets": [ [ - "Kawaii Dragon Ball", - 90, + "Egg Chick", + 99.145545, ], [ - "UV Kitsune Ball", - 8, + "Spring Griffin", + 1, ], [ - "Storm Axolotl Ball", - 2, - "Great", + "Easter Axolotl", + 0.05, + "Nice", ], [ - "Electric Bunny Ball", - 0.1, - "Insane", + "Spring Bee", + 0.005, + "Nice", ], [ - "Meebo The Alien Ball", - 0.01, + "Huge Spring Bee", + 0.0000012, "Insane", ], ], @@ -39236,37 +39821,45 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Basketball Egg 5", + "configName": "11 | Easter Chest Egg 6", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "56553cf323b19d89", + "hashShort": "b01ba6491a531f65", }, { - "category": "Basketball", + "category": "Easter", "collection": "Eggs", "configData": { - "currency": "BasketballCoins", + "currency": "EasterCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Basketball Egg 7", - "overrideCost": 6000, + "name": "Easter Chest Egg 7", + "oddsFFlags": { + "Huge Spring Bee": "EggMultiplier_J3", + }, + "overrideCost": 55000, "pets": [ [ - "Electric Bunny Ball", - 90, + "Spring Griffin", + 99.195495, ], [ - "Meebo The Alien Ball", - 8, + "Easter Axolotl", + 1, ], [ - "Robot Ball", - 2, - "Great", + "Spring Bee", + 0.005, + "Nice", ], [ - "Junkyard Hound Ball", - 0.1, + "Painted Cat", + 0.00005, + "Nice", + ], + [ + "Huge Spring Bee", + 0.0000012, "Insane", ], ], @@ -39283,37 +39876,45 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "7 | Basketball Egg 7", + "configName": "12 | Easter Chest Egg 7", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "b14ed9d1c0477be0", + "hashShort": "3094de96188c3702", }, { - "category": "Basketball", + "category": "Easter", "collection": "Eggs", "configData": { - "currency": "BasketballCoins", + "currency": "EasterCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Basketball Egg 8 Tier 1", - "overrideCost": 7000, + "name": "Easter Chest Egg 8", + "oddsFFlags": { + "Huge Spring Bee": "EggMultiplier_J3", + }, + "overrideCost": 180000, "pets": [ [ - "Robot Ball", - 90, + "Easter Axolotl", + 99.195495, ], [ - "Junkyard Hound Ball", - 8, + "Spring Bee", + 1, ], [ - "Astronaut Cat Ball", - 2, - "Great", + "Painted Cat", + 0.005, + "Nice", ], [ - "Brain Ball", - 0.1, + "Easter Yeti", + 0.00005, + "Nice", + ], + [ + "Huge Spring Bee", + 0.0000012, "Insane", ], ], @@ -39330,37 +39931,45 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "8 | Basketball Egg 8 Tier 1", + "configName": "13 | Easter Chest Egg 8", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "f146e55df93bb835", + "hashShort": "04ee363302c5a8a7", }, { - "category": "Basketball", + "category": "Easter", "collection": "Eggs", "configData": { - "currency": "BasketballCoins", + "currency": "EasterCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Basketball Egg 8 Tier 2", - "overrideCost": 7000, + "name": "Easter Chest Egg 9", + "oddsFFlags": { + "Huge Spring Bee": "EggMultiplier_J3", + }, + "overrideCost": 590000, "pets": [ [ - "Junkyard Hound Ball", - 92, + "Spring Bee", + 99.195495, ], [ - "Astronaut Cat Ball", - 6, + "Painted Cat", + 1, ], [ - "Brain Ball", - 1, - "Great", + "Easter Yeti", + 0.005, + "Nice", ], [ - "Glitched Unicorn Ball", - 0.1, + "Marshmallow Agony", + 0.00005, + "Nice", + ], + [ + "Huge Spring Bee", + 0.0000012, "Insane", ], ], @@ -39377,42 +39986,45 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "8 | Basketball Egg 8 Tier 2", + "configName": "14 | Easter Chest Egg 9", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "b9102961ff542ea3", + "hashShort": "861451351105330e", }, { - "category": "Basketball", + "category": "Easter", "collection": "Eggs", "configData": { - "currency": "BasketballCoins", + "currency": "EasterCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Basketball Egg 8 Tier 3", - "overrideCost": 7000, + "name": "Easter Chest Egg 10", + "oddsFFlags": { + "Huge Spring Bee": "EggMultiplier_J3", + }, + "overrideCost": 2000000, "pets": [ [ - "Junkyard Hound Ball", - 80, + "Painted Cat", + 99.195495, ], [ - "Astronaut Cat Ball", - 15, + "Easter Yeti", + 1, ], [ - "Brain Ball", - 3, - "Great", + "Marshmallow Agony", + 0.005, + "Nice", ], [ - "Glitched Unicorn Ball", - 0.5, - "Insane", + "Easter Golem", + 0.00005, + "Nice", ], [ - "Atomic Monkey Ball", - 0.1, + "Huge Spring Bee", + 0.0000012, "Insane", ], ], @@ -39429,107 +40041,93 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "8 | Basketball Egg 8 Tier 3", + "configName": "15 | Easter Chest Egg 10", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "fb19b5b69d609215", + "hashShort": "3c4e087b9edaac4e", }, { - "category": "Basketball", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "BasketballCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Basketball Egg 8 Tier 4", - "oddsFFlags": { - "Holographic Axolotl Ball": "EggMultiplier_K1", - }, - "overrideCost": 7000, + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://121397272180623", + "name": "Exclusive Aura Egg", "pets": [ [ - "Astronaut Cat Ball", - 92, + "Aura Fox", + 50, ], [ - "Brain Ball", - 7, + "Aura Bull", + 35, ], [ - "Glitched Unicorn Ball", - 1, - "Great", + "Aura Dominus", + 13, ], [ - "Atomic Monkey Ball", - 0.2, - "Great", + "Huge Aura Fox", + 1.5, ], [ - "Holographic Axolotl Ball", - 0.0005, - "Insane", + "Huge Aura Dominus", + 0.39, + ], + [ + "Titanic Aura Kitsune", + 0.1, + ], + [ + "Gargantuan Aura Cat", + 0.01, ], ], + "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "shinyChance": 2, }, - "configName": "8 | Basketball Egg 8 Tier 4", + "configName": "Exclusive Egg 50", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "5154d373e7c3dd08", + "hashShort": "abf92ab23a1ed187", }, { - "category": "Basketball", + "category": "Fishing", "collection": "Eggs", "configData": { - "currency": "BasketballCoins", + "currency": "FishingEvent", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Basketball Egg 8 Tier 5", - "oddsFFlags": { - "Fragmented Dominus Ball": "EggMultiplier_K2", - "Holographic Axolotl Ball": "EggMultiplier_K1", - }, - "overrideCost": 7000, + "name": "Ahoy Egg", + "overrideCost": 250, "pets": [ [ - "Astronaut Cat Ball", - 86, - ], - [ - "Brain Ball", - 12, - ], - [ - "Glitched Unicorn Ball", - 2, - "Great", - ], - [ - "Atomic Monkey Ball", - 0.5, - "Great", + "Pirate Dog", + 90, ], [ - "Holographic Axolotl Ball", - 0.0005, - "Insane", + "Captain Octopus", + 10, ], [ - "Fragmented Dominus Ball", - 0.00005, - "Insane", + "Skeleton Shark", + 0.1, + "Nice", ], ], "rarity": { @@ -39545,58 +40143,33 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "8 | Basketball Egg 8 Tier 5", + "configName": "1 | Fishing Island Egg 1", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "4b153e09974f752b", + "hashShort": "19a5007e2cbd655e", }, { - "category": "Basketball", + "category": "Fishing", "collection": "Eggs", "configData": { - "currency": "BasketballCoins", + "currency": "FishingEvent", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Basketball Egg 8 Tier 6", - "oddsFFlags": { - "Black Hole Angelus Ball": "EggMultiplier_K3", - "Fragmented Dominus Ball": "EggMultiplier_K2", - "Holographic Axolotl Ball": "EggMultiplier_K1", - }, - "overrideCost": 7000, + "name": "Forgotten Egg", + "overrideCost": 500, "pets": [ [ - "Astronaut Cat Ball", - 80, - ], - [ - "Brain Ball", - 15, - ], - [ - "Glitched Unicorn Ball", - 3, - "Great", - ], - [ - "Atomic Monkey Ball", - 0.5, - "Great", - ], - [ - "Holographic Axolotl Ball", - 0.0005, - "Insane", + "Captain Octopus", + 90, ], [ - "Fragmented Dominus Ball", - 0.00005, - "Insane", + "Skeleton Shark", + 10, ], [ - "Black Hole Angelus Ball", - 0.00002, - "Insane", + "Leafy Seahorse", + 0.1, + "Nice", ], ], "rarity": { @@ -39612,472 +40185,673 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "8 | Basketball Egg 8 Tier 6", + "configName": "2 | Fishing Island Egg 2", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "2e02cfe0c2137445", + "hashShort": "d98a8f15b596e1cc", }, { - "category": "Update 63", + "category": "Fishing", "collection": "Eggs", "configData": { - "currency": "FantasyCoins", - "eggNumber": 267, + "currency": "FishingEvent", "icon": "rbxassetid://15172355963", - "name": "Whispering Hills Egg", + "isCustomEgg": true, + "name": "Twisted Egg", + "overrideCost": 1000, "pets": [ [ - "Boulder Boar", + "Skeleton Shark", 90, ], [ - "Glow Worm", - 9, + "Leafy Seahorse", + 10, ], [ - "Starry Tail Anteater", - 1, + "Seamine Pufferfish", + 0.1, "Nice", ], ], - "worldNumber": 4, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "267 | Whispering Hills Egg", + "configName": "3 | Fishing Island Egg 3", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "94178fe2aca10a4b", + "hashShort": "2a167d92e986b2e6", }, { - "category": "Update 63", + "category": "Fishing", "collection": "Eggs", "configData": { - "currency": "FantasyCoins", - "eggNumber": 268, + "currency": "FishingEvent", "icon": "rbxassetid://15172355963", - "name": "Runestone Bluff Egg", + "isCustomEgg": true, + "name": "Mystical Egg", + "overrideCost": 2000, "pets": [ [ - "Glow Worm", + "Leafy Seahorse", 90, ], [ - "Starry Tail Anteater", - 9, + "Seamine Pufferfish", + 10, ], [ - "Totem Cub", - 1, + "Mystical Whale", + 0.1, "Nice", ], ], - "worldNumber": 4, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "268 | Runestone Bluff Egg", + "configName": "4 | Fishing Island Egg 4", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "b3fea90a20a3825b", + "hashShort": "368014ba4aaa10a8", }, { - "category": "Update 63", + "category": "Fishing", "collection": "Eggs", "configData": { - "currency": "FantasyCoins", - "eggNumber": 269, + "currency": "FishingEvent", "icon": "rbxassetid://15172355963", - "name": "Totem Trail Egg", + "isCustomEgg": true, + "name": "Kraken Egg", + "oddsFFlags": { + "Huge Pirate Dog": "EggMultiplier_J4", + }, + "overrideCost": 4000, "pets": [ [ - "Starry Tail Anteater", - 90, + "Seamine Pufferfish", + 99.949995, ], [ - "Totem Cub", - 9, + "Mystical Whale", + 0.2, ], [ - "Sprout Wyrmling", - 1, - "Nice", + "Rogue Squid", + 0.05, ], [ - "Happy Cyclops", - 0.1, + "Anglerfish", + 0.0005, "Great", ], + [ + "Krakling Kraken", + 0.00005, + "Insane", + ], ], - "worldNumber": 4, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "269 | Totem Trail Egg", + "configName": "5 | Fishing Island Egg 5", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "5779b84e95b6b381", + "hashShort": "404d6ee177fcb648", }, { - "category": "Update 63", + "category": "Other", "collection": "Eggs", "configData": { - "currency": "FantasyCoins", - "eggNumber": 270, - "icon": "rbxassetid://15172355963", - "name": "Wyrmwatch Ridge Egg", + "disableGold": false, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 5, + "icon": "rbxassetid://15249783107", + "name": "Diamond Cat Egg", "pets": [ [ - "Totem Cub", - 90, - ], - [ - "Sprout Wyrmling", - 9, + "Diamond Cat", + 99, ], [ - "Happy Cyclops", + "Huge Diamond Cat", 1, - "Nice", - ], - [ - "Runebound Bobcat", - 0.1, - "Great", ], ], - "worldNumber": 4, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "270 | Wyrmwatch Ridge Egg", + "configName": "Exclusive Huge Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "5c3afb17bbb9af82", + "hashShort": "3c4ed09ebbb38549", }, { - "category": "Update 63", + "category": "Fishing", "collection": "Eggs", "configData": { - "currency": "FantasyCoins", - "eggNumber": 271, - "icon": "rbxassetid://15172355963", - "name": "Highcliff Sanctuary Egg", + "currency": "FishingEvent", + "icon": "rbxassetid://15172355062", + "isCustomEgg": true, + "name": "Frozen Egg", + "oddsFFlags": { + "Huge Pirate Dog": "EggMultiplier_J4", + }, + "overrideCost": 6500, "pets": [ [ - "Happy Cyclops", - 91, + "Snow Crab", + 99.749995, ], [ - "Runebound Bobcat", - 9.1, + "Mystical Whale", + 0.4, + "Nice", ], [ - "Glimmer Goat", - 0.001, + "Rogue Squid", + 0.05, + "Nice", + ], + [ + "Anglerfish", + 0.0005, + "Great", + ], + [ + "Beluga Whale", + 0.00005, "Insane", ], [ - "Ancestor Eagle", - 0.000025, + "Huge Pirate Dog", + 0.0000012, "Insane", ], ], - "worldNumber": 4, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "271 | Highcliff Sanctuary Egg", + "configName": "6 | Fishing Island Egg 6", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "0090caffc7742a77", + "hashShort": "8b009389d34c45a6", }, { - "category": "Exclusive Eggs", + "category": "Update 59", "collection": "Eggs", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://95622991998696", - "name": "Exclusive Totem Egg", + "currency": "FantasyCoins", + "eggNumber": 252, + "goldenThumbnail": "rbxassetid://89317874871657", + "icon": "rbxassetid://75379912621562", + "name": "Fantasy Egg", "pets": [ [ - "Totem Wolf", - 50, + "Enchanted Bunny", + 90, ], [ - "Totem Bear", - 35, + "Enchanted Dog", + 10, + ], + ], + "worldNumber": 4, + }, + "configName": "252 | Fantasy Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:34.914Z", + "hashShort": "e364faa1bdd7ffd4", + }, + { + "category": "Update 59", + "collection": "Eggs", + "configData": { + "currency": "FantasyCoins", + "eggNumber": 253, + "goldenThumbnail": "rbxassetid://119688219492642", + "icon": "rbxassetid://106044526170184", + "name": "Flora Egg", + "pets": [ + [ + "Enchanted Bunny", + 90, ], [ - "Totem Cat", - 13, + "Enchanted Dog", + 9, ], [ - "Huge Totem Wolf", - 1.5, + "Lilypad Cat", + 1, + "Nice", ], + ], + "worldNumber": 4, + }, + "configName": "253 | Flora Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:34.897Z", + "hashShort": "6b81fa3eda6760bc", + }, + { + "category": "Update 59", + "collection": "Eggs", + "configData": { + "currency": "FantasyCoins", + "eggNumber": 254, + "goldenThumbnail": "rbxassetid://110130598243291", + "icon": "rbxassetid://116648418712253", + "name": "Firefly Forest Egg", + "pets": [ [ - "Huge Totem Cat", - 0.39, + "Enchanted Dog", + 90, ], [ - "Titanic Totem Owl", - 0.1, + "Lilypad Cat", + 9, + "Nice", ], [ - "Gargantuan Totem Monkey", - 0.01, + "Wisp Deer", + 1, + "Nice", ], ], - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 2, + "worldNumber": 4, }, - "configName": "Exclusive Egg 53", + "configName": "254 | Firefly Forest Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "7826b7f9d6dce971", + "dateModified": "2026-04-18T15:56:34.898Z", + "hashShort": "64b169154cd1b093", }, { - "category": "Other", + "category": "Update 59", "collection": "Eggs", "configData": { - "allPetsRare": true, - "disableGold": true, - "disableModifiers": true, - "disableRainbow": true, - "disableShiny": true, - "goldChance": 0, - "icon": "rbxassetid://135486833669615", - "name": "Dark Unit Egg", - "nonStackable": true, + "currency": "FantasyCoins", + "eggNumber": 255, + "goldenThumbnail": "rbxassetid://110725492912479", + "icon": "rbxassetid://71426175151562", + "name": "Honeycomb Egg", "pets": [ [ - "(TD) Demolition Panda", - 54.65, + "Lilypad Cat", + 90, ], [ - "(TD) Tech Samurai Axolotl", - 40, + "Wisp Deer", + 9, ], [ - "(TD) Electric Eel", - 5, + "Pixie Bee", + 1, + "Nice", ], + ], + "worldNumber": 4, + }, + "configName": "255 | Honeycomb Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:34.913Z", + "hashShort": "dcdfdae81a2e3758", + }, + { + "category": "Update 59", + "collection": "Eggs", + "configData": { + "currency": "FantasyCoins", + "eggNumber": 256, + "goldenThumbnail": "rbxassetid://93260965869786", + "icon": "rbxassetid://100607787040525", + "name": "Fairy Mushroom Egg", + "pets": [ [ - "Huge Zeus Bear", - 0.25, + "Wisp Deer", + 90, ], [ - "Titanic Mechanical Griffin", + "Pixie Bee", + 9, + ], + [ + "Beegle Dog", + 1, + "Nice", + ], + [ + "Honey Golem", 0.1, + "Great", ], ], - "rainbowChance": 0, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "shinyChance": 0, + "worldNumber": 4, }, - "configName": "Dark Unit Egg", + "configName": "256 | Fairy Mushroom Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "19f8cb4099e15af0", + "dateModified": "2026-04-18T15:56:34.916Z", + "hashShort": "b46a3d999c11e6f1", }, { - "category": "TD", + "category": "Update 59", "collection": "Eggs", "configData": { - "currency": "TowerDefenseRubies", - "disableGold": true, - "disableModifiers": true, - "disableRainbow": true, - "disableShiny": true, - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Unit Egg", - "overrideCost": 30, + "currency": "FantasyCoins", + "eggNumber": 257, + "goldenThumbnail": "rbxassetid://76057706992153", + "icon": "rbxassetid://97455882259409", + "name": "Fantasy Meadow Egg", "pets": [ [ - "(TD) Safari Monkey", - 15.4067, - ], - [ - "(TD) Ninja Dalmatian", - 30.8133, + "Beegle Dog", + 90, ], [ - "(TD) Ronin Piggy", - 30.8133, + "Honey Golem", + 9, ], [ - "(TD) Cyborg Kitsune", - 5, + "Mushroom Snail", + 1, + "Nice", ], [ - "(TD) DJ Shark", - 5, + "Mushroom Corgi", + 0.1, + "Great", ], + ], + "worldNumber": 4, + }, + "configName": "257 | Fantasy Meadow Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:34.928Z", + "hashShort": "4ff79f81e382a3fa", + }, + { + "category": "Update 59", + "collection": "Eggs", + "configData": { + "currency": "FantasyCoins", + "eggNumber": 258, + "goldenThumbnail": "rbxassetid://94158633111132", + "icon": "rbxassetid://134583165343925", + "name": "Radiant Runestones Egg", + "pets": [ [ - "(TD) Demolition Panda", - 4, + "Mushroom Snail", + 90, ], [ - "(TD) Flamethrower Spider", - 3, + "Mushroom Corgi", + 9, ], [ - "(TD) Knight Chicken", - 2, + "Mossy Lamb", + 1, + "Nice", ], [ - "(TD) Detective Bunny", - 1, + "Flying Piggy", + 0.1, + "Great", ], + ], + "worldNumber": 4, + }, + "configName": "258 | Radiant Runestones Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:34.918Z", + "hashShort": "20243bab653968cb", + }, + { + "category": "Update 59", + "collection": "Eggs", + "configData": { + "currency": "FantasyCoins", + "eggNumber": 259, + "goldenThumbnail": "rbxassetid://80647496897079", + "icon": "rbxassetid://101885745023541", + "name": "Fogbound Forest Egg", + "pets": [ [ - "(TD) Frostbyte Griffin", - 0.5, + "Mossy Lamb", + 90, ], [ - "(TD) Old Wizard Cat", - 0.375, + "Flying Piggy", + 9, ], [ - "(TD) Umbrella Elephant", - 0.375, + "Relic Cat", + 1, + "Nice", ], [ - "(TD) Potion Penguin", - 0.3, + "Relic Deer", + 0.1, + "Great", ], + ], + "worldNumber": 4, + }, + "configName": "259 | Fogbound Forest Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:34.926Z", + "hashShort": "123facc927009abc", + }, + { + "category": "Update 59", + "collection": "Eggs", + "configData": { + "currency": "FantasyCoins", + "eggNumber": 260, + "goldenThumbnail": "rbxassetid://132951364663585", + "icon": "rbxassetid://139777124180987", + "name": "Rune Graveyard Egg", + "pets": [ [ - "(TD) Tech Samurai Axolotl", - 0.25, + "Relic Cat", + 90, ], [ - "(TD) Ooze Dragon", - 0.25, + "Relic Deer", + 9, ], [ - "(TD) Shadow Pegasus", - 0.25, + "Glade Griffin", + 1, + "Nice", ], [ - "(TD) Torpedo Cat", - 0.125, + "Angel Dragon", + 0.1, + "Great", ], + ], + "worldNumber": 4, + }, + "configName": "260 | Rune Graveyard Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:34.921Z", + "hashShort": "7649e54645994dbe", + }, + { + "category": "Update 59", + "collection": "Eggs", + "configData": { + "currency": "FantasyCoins", + "eggNumber": 261, + "goldenThumbnail": "rbxassetid://139247564997132", + "icon": "rbxassetid://75883534280918", + "name": "Halo Spires Egg", + "pets": [ [ - "(TD) Disco Ball Agony", - 0.075, + "Glade Griffin", + 91, ], [ - "(TD) Comet Dragon", - 0.12, + "Angel Dragon", + 9.1, ], [ - "(TD) Electric Eel", - 0.08, + "Empyrean Corgi", + 0.001, + "Insane", ], [ - "(TD) Forged Armadillo", - 0.08, + "Empyrean Owl", + 0.000075, + "Insane", ], + ], + "worldNumber": 4, + }, + "configName": "261 | Halo Spires Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:34.917Z", + "hashShort": "aff4055a57da2c3f", + }, + { + "category": "Exclusive Eggs", + "collection": "Eggs", + "configData": { + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://92009010203013", + "name": "Exclusive Spirit Egg", + "pets": [ [ - "(TD) Abyssal Turtle", - 0.04, + "Blossom Spirit", + 50, ], [ - "(TD) Jetpack Cat", - 0.02, + "Light Spirit", + 35, ], [ - "(TD) Arcade Angelus", - 0.02001, + "Wave Spirit", + 13, ], [ - "(TD) Nuclear Dominus", - 0.016675, + "Huge Blossom Spirit", + 1.5, ], [ - "(TD) Blurred Owl", - 0.01334, + "Huge Wave Spirit", + 0.39, ], [ - "(TD) Nightmare Cyclops", - 0.010005, + "Titanic Wood Spirit", + 0.1, ], [ - "(TD) Crystal Giraffe", - 0.00667, + "Gargantuan Magma Spirit", + 0.01, ], ], + "productIds": { + "10 Exclusive Eggs": 3287449418, + "100 Exclusive Eggs": 3287449543, + "3 Exclusive Eggs": 3287449290, + "Exclusive Egg": 3287449166, + }, + "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "shinyChance": 2, }, - "configName": "0 | Unit Egg", + "configName": "Exclusive Egg 51", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "79c872e92f5f7fe0", + "hashShort": "7a5e081fac75d44a", }, { "category": "Other", "collection": "Eggs", "configData": { - "allPetsRare": true, - "disableGold": true, + "disableGold": false, "disableModifiers": true, - "disableRainbow": true, - "disableShiny": true, - "goldChance": 0, - "icon": "rbxassetid://77753362474623", - "name": "Magma Unit Egg", - "nonStackable": true, + "disableRainbow": false, + "goldChance": 5, + "icon": "rbxassetid://15249783107", + "name": "Large Diamond Dog Egg", "pets": [ [ - "Dino Corgi", - 55, - ], - [ - "Pinata Dragon", - 36, - ], - [ - "Poseidon Axolotl", - 5, - ], - [ - "Huge Arcade Meebo in a Spaceship", - 2.5, + "Diamond Dog", + 90, ], [ - "Titanic Helicopter Corgi", - 0.15, + "Huge Diamond Dog", + 10, ], ], - "rainbowChance": 0, + "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, @@ -40090,34 +40864,34 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "shinyChance": 0, + "shinyChance": 2, }, - "configName": "Magma Unit Egg", + "configName": "Large Diamond Dog Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "3b779f310d04d5dc", + "hashShort": "dd5f6b911ac1b2c1", }, { "category": "Other", "collection": "Eggs", "configData": { - "disableGold": true, + "disableGold": false, "disableModifiers": true, "disableRainbow": false, "goldChance": 5, "icon": "rbxassetid://15249783107", - "name": "Poseidon Axolotl Egg", + "name": "Diamond Dog Egg", "pets": [ [ - "Poseidon Axolotl", + "Diamond Dog", 68, ], [ - "Huge Poseidon Axolotl", + "Huge Diamond Dog", 30, ], [ - "Titanic Poseidon Axolotl", + "Titanic Diamond Dog", 2, ], ], @@ -40136,175 +40910,180 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` }, "shinyChance": 2, }, - "configName": "Poseidon Axolotl Egg", + "configName": "Diamond Dog Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "ecf4af6fefe12096", + "hashShort": "f3bb84febdda25cd", }, { - "category": "Update 65", + "category": "Update 61", "collection": "Eggs", "configData": { "currency": "FantasyCoins", - "eggNumber": 272, - "icon": "rbxassetid://15172355963", - "name": "Ember Cliffs Egg", + "eggNumber": 262, + "goldenThumbnail": "rbxassetid://82148135221466", + "icon": "rbxassetid://71229133570124", + "name": "Twilight Grove Egg", "pets": [ [ - "Charred Bat", + "Glimmercap Turtle", 90, ], [ - "Charred Dragon", + "Sprout Pegasus", 9, ], [ - "Molten Wisp", + "Meteor Mole", 1, "Nice", ], ], "worldNumber": 4, }, - "configName": "272 | Ember Cliffs Egg", + "configName": "262 | Twilight Grove Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "d79994658a761b35", + "dateModified": "2026-04-18T15:56:34.913Z", + "hashShort": "f5eeb438d13420af", }, { - "category": "Update 65", + "category": "Update 61", "collection": "Eggs", "configData": { "currency": "FantasyCoins", - "eggNumber": 273, - "icon": "rbxassetid://15172355963", - "name": "Charred Canyon Egg", + "eggNumber": 263, + "goldenThumbnail": "rbxassetid://73796733720474", + "icon": "rbxassetid://79418297754593", + "name": "Moonlight Ridge Egg", "pets": [ [ - "Charred Dragon", + "Sprout Pegasus", 90, ], [ - "Molten Wisp", + "Meteor Mole", 9, ], [ - "Molten Werelynx", + "Rootkin Fox", 1, "Nice", ], ], "worldNumber": 4, }, - "configName": "273 | Charred Canyon Egg", + "configName": "263 | Moonlight Ridge Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "364fee0185a2e2a1", + "dateModified": "2026-04-18T15:56:34.912Z", + "hashShort": "2b5ff94095aedd80", }, { - "category": "Update 65", + "category": "Update 61", "collection": "Eggs", "configData": { "currency": "FantasyCoins", - "eggNumber": 274, - "icon": "rbxassetid://15172355963", - "name": "Ember Chasm Egg", + "eggNumber": 264, + "goldenThumbnail": "rbxassetid://129531794453043", + "icon": "rbxassetid://126764225787796", + "name": "Starroot Oak Egg", "pets": [ [ - "Molten Wisp", + "Meteor Mole", 90, ], [ - "Molten Werelynx", + "Rootkin Fox", 9, ], [ - "Molten Gecko", + "Starry Eye Bunny", 1, "Nice", ], [ - "Ember Vulture", + "Scroll Dragon", 0.1, "Great", ], ], "worldNumber": 4, }, - "configName": "274 | Ember Chasm Egg", + "configName": "264 | Starroot Oak Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "3c257a35cbbfd0ec", + "dateModified": "2026-04-18T15:56:34.914Z", + "hashShort": "d3e3c82b15390f0d", }, { - "category": "Update 65", + "category": "Update 61", "collection": "Eggs", "configData": { "currency": "FantasyCoins", - "eggNumber": 275, - "icon": "rbxassetid://15172355963", - "name": "Molten Nest Egg", + "eggNumber": 265, + "goldenThumbnail": "rbxassetid://100036408095536", + "icon": "rbxassetid://115387135338574", + "name": "Aether Egg", "pets": [ [ - "Molten Werelynx", + "Rootkin Fox", 90, ], [ - "Molten Gecko", + "Starry Eye Bunny", 9, ], [ - "Ember Vulture", + "Scroll Dragon", 1, "Nice", ], [ - "Obsidian Griffin", + "Wisp Wolf", 0.1, "Great", ], ], "worldNumber": 4, }, - "configName": "275 | Molten Nest Egg", + "configName": "265 | Aether Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "5255c1771d190cfb", + "dateModified": "2026-04-18T15:56:34.904Z", + "hashShort": "62d0fa21821d1d77", }, { - "category": "Update 65", + "category": "Update 61", "collection": "Eggs", "configData": { "currency": "FantasyCoins", - "eggNumber": 276, - "icon": "rbxassetid://15172355963", - "name": "Obsidian Spire Egg", + "eggNumber": 266, + "goldenThumbnail": "rbxassetid://133063837563699", + "icon": "rbxassetid://79812914032675", + "name": "Crescent Moon Egg", "pets": [ [ - "Ember Vulture", + "Scroll Dragon", 91, ], [ - "Obsidian Griffin", + "Wisp Wolf", 9.1, ], [ - "Firefossil Wolf", + "Telescope Owl", 0.001, "Insane", ], [ - "Fire Kitsune", + "Starlight Pony", 0.000025, "Insane", ], ], "worldNumber": 4, }, - "configName": "276 | Obsidian Spire Egg", + "configName": "266 | Crescent Moon Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "a2f64e82cd91b26c", + "dateModified": "2026-04-18T15:56:34.905Z", + "hashShort": "08fd026351f452d3", }, { "category": "Exclusive Eggs", @@ -40314,43 +41093,43 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "disableModifiers": true, "disableRainbow": false, "goldChance": 0, - "icon": "rbxassetid://110937441567661", - "name": "Exclusive Super Coral Egg", + "icon": "rbxassetid://71800431354706", + "name": "Exclusive Yin-Yang Egg", "pets": [ [ - "Super Coral Axolotl", + "Yin-Yang Dragon", 50, ], [ - "Super Coral Whale", + "Yin-Yang Griffin", 35, ], [ - "Super Coral Hydra", + "Yin-Yang Bunny", 13, ], [ - "Huge Super Coral Axolotl", + "Huge Yin-Yang Dragon", 1.5, ], [ - "Huge Super Coral Hydra", + "Huge Yin-Yang Bunny", 0.39, ], [ - "Titanic Super Coral Stingray", + "Titanic Yin-Yang Grim Reaper", 0.1, ], [ - "Gargantuan Super Coral Kraken", + "Gargantuan Yin-Yang Kitsune", 0.01, ], ], "productIds": { - "10 Exclusive Eggs": 3319090456, - "100 Exclusive Eggs": 3319090572, - "3 Exclusive Eggs": 3319089982, - "Exclusive Egg": 3319089877, + "10 Exclusive Eggs": 3296562215, + "100 Exclusive Eggs": 3296562344, + "3 Exclusive Eggs": 3296562087, + "Exclusive Egg": 3296562002, }, "rainbowChance": 2, "rarity": { @@ -40367,10 +41146,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` }, "shinyChance": 2, }, - "configName": "Exclusive Egg 54", + "configName": "Exclusive Egg 52", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "f1385a32b3d53f81", + "hashShort": "e5f1244b6c9a9211", }, { "category": "Other", @@ -40381,28 +41160,28 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "disableModifiers": true, "disableRainbow": false, "goldChance": 0, - "icon": "rbxassetid://126567465243826", - "name": "Gym Egg", + "icon": "rbxassetid://92729315855673", + "name": "Basketball Egg", "nonStackable": true, "pets": [ [ - "Gym Shark", + "Blurred Bear Ball", 55, ], [ - "Gym Piggy", + "Comet Cyclops Ball", 37, ], [ - "Gym Corgi", + "Glitched Cat Ball", 5, ], [ - "Huge Gym Corgi", + "Huge Electric Bunny Ball", 2.85, ], [ - "Titanic Gym Dragon", + "Titanic Comet Cyclops Ball", 0.15, ], ], @@ -40410,39 +41189,44 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, "shinyChance": 2, }, - "configName": "Gym Egg", + "configName": "Basketball Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "336f65f0f3172df6", + "hashShort": "976bfb4d2c9380dd", }, { - "category": "Gym", + "category": "Basketball", "collection": "Eggs", "configData": { - "currency": "GymCoins", + "currency": "BasketballCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Muscle Beach Egg", - "overrideCost": 250, + "name": "Basketball Egg 2", + "overrideCost": 500, "pets": [ [ - "Football Tiger", - 98, + "Basketball Cat", + 89, ], [ - "Boxing Elephant", - 2, + "Basketball Corgi", + 10, + ], + [ + "Strawberry Cow Ball", + 1, + "Nice", ], ], "rarity": { @@ -40458,32 +41242,32 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Muscle Beach Egg", + "configName": "2 | Basketball Egg 2", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "38db08dc21452412", + "hashShort": "4fcf637b9cd6d167", }, { - "category": "Gym", + "category": "Basketball", "collection": "Eggs", "configData": { - "currency": "GymCoins", + "currency": "BasketballCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Rizz Reef Egg", - "overrideCost": 500, + "name": "Basketball Egg 3", + "overrideCost": 1000, "pets": [ [ - "Football Tiger", - 89, + "Basketball Corgi", + 90, ], [ - "Boxing Elephant", + "Strawberry Cow Ball", 10, ], [ - "Basketball Monkey", - 1, + "Kawaii Dragon Ball", + 0.1, "Nice", ], ], @@ -40500,32 +41284,32 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Rizz Reef Egg", + "configName": "3 | Basketball Egg 3", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "ec118ba64a2fbe35", + "hashShort": "c0c2190985b0b2d7", }, { - "category": "Gym", + "category": "Basketball", "collection": "Eggs", "configData": { - "currency": "GymCoins", + "currency": "BasketballCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Chiseled Volcano Egg", - "overrideCost": 1000, + "name": "Basketball Egg 4", + "overrideCost": 2000, "pets": [ [ - "Boxing Elephant", - 90, + "Strawberry Cow Ball", + 97, ], [ - "Basketball Monkey", - 10, + "Kawaii Dragon Ball", + 3, ], [ - "Baseball Dolphin", - 0.1, + "UV Kitsune Ball", + 0.01, "Nice", ], ], @@ -40542,33 +41326,38 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "3 | Chiseled Volcano Egg", + "configName": "4 | Basketball Egg 4", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "918e03ed525fb3e8", + "hashShort": "99d5a3756a3241e8", }, { - "category": "Gym", + "category": "Basketball", "collection": "Eggs", "configData": { - "currency": "GymCoins", + "currency": "BasketballCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Giga Castle Egg", - "overrideCost": 2000, + "name": "Basketball Egg 5 Tier 1", + "overrideCost": 4000, "pets": [ [ - "Basketball Monkey", - 97, + "Kawaii Dragon Ball", + 90, ], [ - "Baseball Dolphin", - 3, + "UV Kitsune Ball", + 8, ], [ - "Gym Panda", - 0.01, - "Nice", + "Storm Axolotl Ball", + 2, + "Great", + ], + [ + "Electric Bunny Ball", + 0.1, + "Insane", ], ], "rarity": { @@ -40584,46 +41373,28 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Giga Castle Egg", + "configName": "5 | Basketball Egg 5 Tier 1", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "f4aa84b81d57bca6", + "hashShort": "d6dfaa31518348f6", }, { - "category": "Gym", + "category": "Basketball", "collection": "Eggs", "configData": { - "currency": "GymCoins", + "currency": "BasketballCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Sigma Beach Egg Tier 1", - "oddsFFlags": { - "Huge Gym Panda": "EggMultiplier_K4", - }, - "overrideCost": 4000, + "name": "Basketball Egg 1", + "overrideCost": 250, "pets": [ [ - "Baseball Dolphin", - 90, - ], - [ - "Gym Panda", - 8, + "Basketball Cat", + 98, ], [ - "Soccer Terrier", + "Basketball Corgi", 2, - "Great", - ], - [ - "Gym Anteater", - 0.1, - "Insane", - ], - [ - "Huge Gym Panda", - 0.000006, - "Insane", ], ], "rarity": { @@ -40639,47 +41410,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Sigma Beach Egg Tier 1", + "configName": "1 | Basketball Egg 1", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "2e9651afa6b78af3", + "hashShort": "b92ed8150ea91840", }, { - "category": "Gym", + "category": "Basketball", "collection": "Eggs", "configData": { - "currency": "GymCoins", + "currency": "BasketballCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Sigma Beach Egg Tier 2", - "oddsFFlags": { - "Huge Gym Panda": "EggMultiplier_K4", - }, + "name": "Basketball Egg 5 Tier 2", "overrideCost": 4000, "pets": [ [ - "Gym Panda", + "UV Kitsune Ball", 92, ], [ - "Soccer Terrier", + "Storm Axolotl Ball", 6, ], [ - "Gym Anteater", + "Electric Bunny Ball", 1, "Great", ], [ - "Gym Scorpion", + "Meebo The Alien Ball", 0.1, "Insane", ], - [ - "Huge Gym Panda", - 0.000006, - "Insane", - ], ], "rarity": { "Announce": true, @@ -40694,52 +41457,44 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Sigma Beach Egg Tier 2", + "configName": "6 | Basketball Egg 5 Tier 2", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "bd287d17401e475f", + "hashShort": "583c5b505272d63e", }, { - "category": "Gym", + "category": "Basketball", "collection": "Eggs", "configData": { - "currency": "GymCoins", + "currency": "BasketballCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Sigma Beach Egg Tier 3", - "oddsFFlags": { - "Huge Gym Panda": "EggMultiplier_K4", - }, + "name": "Basketball Egg 5 Tier 3", "overrideCost": 4000, "pets": [ [ - "Gym Panda", + "UV Kitsune Ball", 80, ], [ - "Soccer Terrier", + "Storm Axolotl Ball", 15, ], [ - "Gym Anteater", + "Electric Bunny Ball", 3, "Great", ], [ - "Gym Scorpion", + "Meebo The Alien Ball", 0.5, "Insane", ], [ - "Gym Shark", + "Blurred Bear Ball", 0.1, "Insane", ], - [ - "Huge Gym Panda", - 0.000006, - "Insane", - ], ], "rarity": { "Announce": true, @@ -40754,53 +41509,47 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Sigma Beach Egg Tier 3", + "configName": "6 | Basketball Egg 5 Tier 3", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "bfb9ab6203c5fd9d", + "hashShort": "7a2670f830ab1706", }, { - "category": "Gym", + "category": "Basketball", "collection": "Eggs", "configData": { - "currency": "GymCoins", + "currency": "BasketballCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Sigma Beach Egg Tier 4", + "name": "Basketball Egg 5 Tier 4", "oddsFFlags": { "Comet Cyclops Ball": "EggMultiplier_K1", - "Huge Gym Panda": "EggMultiplier_K4", }, "overrideCost": 4000, "pets": [ [ - "Soccer Terrier", + "Storm Axolotl Ball", 92, ], [ - "Gym Anteater", + "Electric Bunny Ball", 7, ], [ - "Gym Scorpion", + "Meebo The Alien Ball", 1, "Great", ], [ - "Gym Shark", + "Blurred Bear Ball", 0.2, "Great", ], [ - "Gym Piggy", + "Comet Cyclops Ball", 0.0005, "Insane", ], - [ - "Huge Gym Panda", - 0.000006, - "Insane", - ], ], "rarity": { "Announce": true, @@ -40815,59 +41564,53 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Sigma Beach Egg Tier 4", + "configName": "6 | Basketball Egg 5 Tier 4", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "37927363cf75ca90", + "hashShort": "3e30adee7eb383f8", }, { - "category": "Gym", + "category": "Basketball", "collection": "Eggs", "configData": { - "currency": "GymCoins", + "currency": "BasketballCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Sigma Beach Egg Tier 5", + "name": "Basketball Egg 5 Tier 5", "oddsFFlags": { "Comet Cyclops Ball": "EggMultiplier_K1", "Glitched Cat Ball": "EggMultiplier_K2", - "Huge Gym Panda": "EggMultiplier_K4", }, "overrideCost": 4000, "pets": [ [ - "Soccer Terrier", + "Storm Axolotl Ball", 86, ], [ - "Gym Anteater", + "Electric Bunny Ball", 12, ], [ - "Gym Scorpion", + "Meebo The Alien Ball", 2, "Great", ], [ - "Gym Shark", + "Blurred Bear Ball", 0.5, "Great", ], [ - "Gym Piggy", + "Comet Cyclops Ball", 0.0005, "Insane", ], [ - "Gym Corgi", + "Glitched Cat Ball", 0.00005, "Insane", ], - [ - "Huge Gym Panda", - 0.000006, - "Insane", - ], ], "rarity": { "Announce": true, @@ -40882,65 +41625,59 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Sigma Beach Egg Tier 5", + "configName": "6 | Basketball Egg 5 Tier 5", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "2ee5dd729c7668d9", + "hashShort": "2d8480075da026c1", }, { - "category": "Gym", + "category": "Basketball", "collection": "Eggs", "configData": { - "currency": "GymCoins", + "currency": "BasketballCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Sigma Beach Egg Tier 6", + "name": "Basketball Egg 5 Tier 6", "oddsFFlags": { - "Gym Corgi": "EggMultiplier_K2", - "Gym Dragon": "EggMultiplier_K3", - "Gym Piggy": "EggMultiplier_K1", - "Huge Gym Panda": "EggMultiplier_K4", + "Comet Cyclops Ball": "EggMultiplier_K1", + "Glitched Cat Ball": "EggMultiplier_K2", + "Hippomelon Ball": "EggMultiplier_K3", }, "overrideCost": 4000, "pets": [ [ - "Soccer Terrier", + "Storm Axolotl Ball", 80, ], [ - "Gym Anteater", + "Electric Bunny Ball", 15, ], [ - "Gym Scorpion", + "Meebo The Alien Ball", 3, "Great", ], [ - "Gym Shark", + "Blurred Bear Ball", 0.5, "Great", ], [ - "Gym Piggy", + "Comet Cyclops Ball", 0.0005, "Insane", ], [ - "Gym Corgi", + "Glitched Cat Ball", 0.00005, "Insane", ], [ - "Gym Dragon", + "Hippomelon Ball", 0.00002, "Insane", ], - [ - "Huge Gym Panda", - 0.000006, - "Insane", - ], ], "rarity": { "Announce": true, @@ -40955,10 +41692,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Sigma Beach Egg Tier 6", + "configName": "6 | Basketball Egg 5 Tier 6", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "e88aac4ef9b2914b", + "hashShort": "8939a25ee27e33e9", }, { "category": "Other", @@ -40969,37 +41706,35 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "disableModifiers": true, "disableRainbow": false, "goldChance": 0, - "icon": "rbxassetid://72995061495948", - "name": "Buff Gym Egg", + "icon": "rbxassetid://127597256491079", + "name": "Cosmic Basketball Egg", "nonStackable": true, "pets": [ [ - "Gym Beaver", + "Atomic Monkey Ball", 55, ], [ - "Gym Cat", - 37, + "Holographic Axolotl Ball", + 36, ], [ - "Gym Unicorn", + "Fragmented Dominus Ball", 5, ], [ - "Huge Gym Cow", + "Huge Fragmented Dominus Ball", 2.85, ], [ - "Titanic Gym Cat", + "Huge LeGoat Ball", + 1, + ], + [ + "Titanic Black Hole Angelus Ball", 0.15, ], ], - "productIds": { - "10 Basketball Eggs": 3325141240, - "100 Basketball Eggs": 3325141397, - "3 Basketball Eggs": 3325141051, - "Basketball Egg": 3325140793, - }, "rainbowChance": 2, "rarity": { "Announce": true, @@ -41015,44 +41750,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` }, "shinyChance": 2, }, - "configName": "Buff Gym Egg", + "configName": "Cosmic Basketball Egg", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "2e421a856b6b0b55", + "hashShort": "8aede7ebb5f17f3b", }, { - "category": "Gym", + "category": "Basketball", "collection": "Eggs", "configData": { - "currency": "GymCoins", + "currency": "BasketballCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Sigma Beach Egg", - "overrideCost": 4000, + "name": "Basketball Egg 6", + "overrideCost": 5000, "pets": [ [ - "Baseball Dolphin", + "Storm Axolotl Ball", 90, ], [ - "Gym Panda", + "Electric Bunny Ball", 8, ], [ - "Soccer Terrier", + "Meebo The Alien Ball", 2, "Great", ], [ - "Gym Anteater", + "Robot Ball", 0.1, "Insane", ], - [ - "Gym Scorpion", - 0.01, - "Insane", - ], ], "rarity": { "Announce": true, @@ -41067,39 +41797,44 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Sigma Beach Egg", + "configName": "6 | Basketball Egg 6", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "aa7f99b9e8035bc6", + "hashShort": "59c4170b69af5cdd", }, { - "category": "Gym", + "category": "Basketball", "collection": "Eggs", "configData": { - "currency": "GymCoins", - "icon": "", + "currency": "BasketballCoins", + "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Drip Dock Egg", - "overrideCost": 5000, + "name": "Basketball Egg 5", + "overrideCost": 4000, "pets": [ [ - "Soccer Terrier", + "Kawaii Dragon Ball", 90, ], [ - "Gym Anteater", + "UV Kitsune Ball", 8, ], [ - "Gym Scorpion", + "Storm Axolotl Ball", 2, "Great", ], [ - "Golf Griffin", + "Electric Bunny Ball", 0.1, "Insane", ], + [ + "Meebo The Alien Ball", + 0.01, + "Insane", + ], ], "rarity": { "Announce": true, @@ -41114,36 +41849,36 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "6 | Drip Dock Egg", + "configName": "5 | Basketball Egg 5", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "09b9af7fdf4dc834", + "hashShort": "56553cf323b19d89", }, { - "category": "Gym", + "category": "Basketball", "collection": "Eggs", "configData": { - "currency": "GymCoins", - "icon": "", + "currency": "BasketballCoins", + "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Cliff Gains Egg", + "name": "Basketball Egg 7", "overrideCost": 6000, "pets": [ [ - "Gym Anteater", + "Electric Bunny Ball", 90, ], [ - "Gym Scorpion", + "Meebo The Alien Ball", 8, ], [ - "Golf Griffin", + "Robot Ball", 2, "Great", ], [ - "Tennis Squirrel", + "Junkyard Hound Ball", 0.1, "Insane", ], @@ -41161,47 +41896,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "7 | Cliff Gains Egg", + "configName": "7 | Basketball Egg 7", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "df23c4a6af2da0df", + "hashShort": "b14ed9d1c0477be0", }, { - "category": "Gym", + "category": "Basketball", "collection": "Eggs", "configData": { - "currency": "GymCoins", + "currency": "BasketballCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Crashed Out Egg Tier 1", - "oddsFFlags": { - "Huge Coach Hippo": "EggMultiplier_K4", - }, + "name": "Basketball Egg 8 Tier 1", "overrideCost": 7000, "pets": [ [ - "Golf Griffin", + "Robot Ball", 90, ], [ - "Tennis Squirrel", + "Junkyard Hound Ball", 8, ], [ - "Coach Hippo", + "Astronaut Cat Ball", 2, "Great", ], [ - "Gym Axolotl", + "Brain Ball", 0.1, "Insane", ], - [ - "Huge Coach Hippo", - 0.000006, - "Insane", - ], ], "rarity": { "Announce": true, @@ -41216,47 +41943,39 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "8 | Crashed Out Egg Tier 1", + "configName": "8 | Basketball Egg 8 Tier 1", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "5c686e04c2ef356b", + "hashShort": "f146e55df93bb835", }, { - "category": "Gym", + "category": "Basketball", "collection": "Eggs", "configData": { - "currency": "GymCoins", + "currency": "BasketballCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Crashed Out Egg Tier 2", - "oddsFFlags": { - "Huge Coach Hippo": "EggMultiplier_K4", - }, + "name": "Basketball Egg 8 Tier 2", "overrideCost": 7000, "pets": [ [ - "Tennis Squirrel", + "Junkyard Hound Ball", 92, ], [ - "Coach Hippo", + "Astronaut Cat Ball", 6, ], [ - "Gym Axolotl", + "Brain Ball", 1, "Great", ], [ - "Gym Cow", + "Glitched Unicorn Ball", 0.1, "Insane", ], - [ - "Huge Coach Hippo", - 0.000006, - "Insane", - ], ], "rarity": { "Announce": true, @@ -41271,52 +41990,44 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "8 | Crashed Out Egg Tier 2", + "configName": "8 | Basketball Egg 8 Tier 2", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "65177b6f078999a2", + "hashShort": "b9102961ff542ea3", }, { - "category": "Gym", + "category": "Basketball", "collection": "Eggs", "configData": { - "currency": "GymCoins", + "currency": "BasketballCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Crashed Out Egg Tier 3", - "oddsFFlags": { - "Huge Coach Hippo": "EggMultiplier_K4", - }, + "name": "Basketball Egg 8 Tier 3", "overrideCost": 7000, "pets": [ [ - "Tennis Squirrel", + "Junkyard Hound Ball", 80, ], [ - "Coach Hippo", + "Astronaut Cat Ball", 15, ], [ - "Gym Axolotl", + "Brain Ball", 3, "Great", ], [ - "Gym Cow", + "Glitched Unicorn Ball", 0.5, "Insane", ], [ - "Gym Beaver", + "Atomic Monkey Ball", 0.1, "Insane", ], - [ - "Huge Coach Hippo", - 0.000006, - "Insane", - ], ], "rarity": { "Announce": true, @@ -41331,53 +42042,47 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "8 | Crashed Out Egg Tier 3", + "configName": "8 | Basketball Egg 8 Tier 3", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "5abb8330a9d1590b", + "hashShort": "fb19b5b69d609215", }, { - "category": "Gym", + "category": "Basketball", "collection": "Eggs", "configData": { - "currency": "GymCoins", + "currency": "BasketballCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Crashed Out Egg Tier 4", + "name": "Basketball Egg 8 Tier 4", "oddsFFlags": { - "Gym Cat": "EggMultiplier_K1", - "Huge Coach Hippo": "EggMultiplier_K4", + "Holographic Axolotl Ball": "EggMultiplier_K1", }, "overrideCost": 7000, "pets": [ [ - "Coach Hippo", + "Astronaut Cat Ball", 92, ], [ - "Gym Axolotl", + "Brain Ball", 7, ], [ - "Gym Cow", + "Glitched Unicorn Ball", 1, "Great", ], [ - "Gym Beaver", + "Atomic Monkey Ball", 0.2, "Great", ], [ - "Gym Cat", + "Holographic Axolotl Ball", 0.0005, "Insane", ], - [ - "Huge Coach Hippo", - 0.000006, - "Insane", - ], ], "rarity": { "Announce": true, @@ -41392,59 +42097,53 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "8 | Crashed Out Egg Tier 4", + "configName": "8 | Basketball Egg 8 Tier 4", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "bb61e0ed28812243", + "hashShort": "5154d373e7c3dd08", }, { - "category": "Gym", + "category": "Basketball", "collection": "Eggs", "configData": { - "currency": "GymCoins", + "currency": "BasketballCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Crashed Out Egg Tier 5", + "name": "Basketball Egg 8 Tier 5", "oddsFFlags": { - "Gym Cat": "EggMultiplier_K1", - "Gym Unicorn": "EggMultiplier_K2", - "Huge Coach Hippo": "EggMultiplier_K4", + "Fragmented Dominus Ball": "EggMultiplier_K2", + "Holographic Axolotl Ball": "EggMultiplier_K1", }, "overrideCost": 7000, "pets": [ [ - "Coach Hippo", + "Astronaut Cat Ball", 86, ], [ - "Gym Axolotl", + "Brain Ball", 12, ], [ - "Gym Cow", + "Glitched Unicorn Ball", 2, "Great", ], [ - "Gym Beaver", + "Atomic Monkey Ball", 0.5, "Great", ], [ - "Gym Cat", + "Holographic Axolotl Ball", 0.0005, "Insane", ], [ - "Gym Unicorn", + "Fragmented Dominus Ball", 0.00005, "Insane", ], - [ - "Huge Coach Hippo", - 0.000006, - "Insane", - ], ], "rarity": { "Announce": true, @@ -41459,65 +42158,59 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "8 | Crashed Out Egg Tier 5", + "configName": "8 | Basketball Egg 8 Tier 5", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "628e2e576dfcbde9", + "hashShort": "4b153e09974f752b", }, { - "category": "Gym", + "category": "Basketball", "collection": "Eggs", "configData": { - "currency": "GymCoins", + "currency": "BasketballCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Crashed Out Egg Tier 6", + "name": "Basketball Egg 8 Tier 6", "oddsFFlags": { - "Buff Tiger": "EggMultiplier_K3", - "Gym Cat": "EggMultiplier_K1", - "Gym Unicorn": "EggMultiplier_K2", - "Huge Coach Hippo": "EggMultiplier_K4", + "Black Hole Angelus Ball": "EggMultiplier_K3", + "Fragmented Dominus Ball": "EggMultiplier_K2", + "Holographic Axolotl Ball": "EggMultiplier_K1", }, "overrideCost": 7000, "pets": [ [ - "Coach Hippo", + "Astronaut Cat Ball", 80, ], [ - "Gym Axolotl", + "Brain Ball", 15, ], [ - "Gym Cow", + "Glitched Unicorn Ball", 3, "Great", ], [ - "Gym Beaver", + "Atomic Monkey Ball", 0.5, "Great", ], [ - "Gym Cat", + "Holographic Axolotl Ball", 0.0005, "Insane", ], [ - "Gym Unicorn", + "Fragmented Dominus Ball", 0.00005, "Insane", ], [ - "Buff Tiger", + "Black Hole Angelus Ball", 0.00002, "Insane", ], - [ - "Huge Coach Hippo", - 0.000006, - "Insane", - ], ], "rarity": { "Announce": true, @@ -41532,185 +42225,180 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "8 | Crashed Out Egg Tier 6", + "configName": "8 | Basketball Egg 8 Tier 6", "dateCreated": "2025-07-05T23:23:27.191Z", "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "a5d37d09546f03ce", + "hashShort": "2e02cfe0c2137445", }, { - "category": "Update 67", + "category": "Update 63", "collection": "Eggs", "configData": { "currency": "FantasyCoins", - "eggNumber": 277, - "icon": "rbxassetid://15172355963", - "name": "Crystalfall Hollow Egg", + "eggNumber": 267, + "goldenThumbnail": "rbxassetid://127807545519644", + "icon": "rbxassetid://129363042457149", + "name": "Whispering Hills Egg", "pets": [ [ - "Archivist Ferret", + "Boulder Boar", 90, ], [ - "Scribe Squirrel", + "Glow Worm", 9, ], [ - "Crystal Jackalope", + "Starry Tail Anteater", 1, "Nice", ], ], "worldNumber": 4, }, - "configName": "277 | Crystalfall Hollow Egg", + "configName": "267 | Whispering Hills Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "cd4fcf36735d5c64", + "dateModified": "2026-04-18T15:56:34.915Z", + "hashShort": "62249deefde32e45", }, { - "category": "Update 67", + "category": "Update 63", "collection": "Eggs", "configData": { "currency": "FantasyCoins", - "eggNumber": 278, - "icon": "rbxassetid://15172355963", - "name": "Glimmer Grottos Egg", + "eggNumber": 268, + "goldenThumbnail": "rbxassetid://101031592541924", + "icon": "rbxassetid://126409128959232", + "name": "Runestone Bluff Egg", "pets": [ [ - "Scribe Squirrel", + "Glow Worm", 90, ], [ - "Crystal Jackalope", + "Starry Tail Anteater", 9, ], [ - "Sentry Drake", + "Totem Cub", 1, "Nice", ], ], "worldNumber": 4, }, - "configName": "278 | Glimmer Grottos Egg", + "configName": "268 | Runestone Bluff Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "fc0fbff9317757f8", + "dateModified": "2026-04-18T15:56:34.902Z", + "hashShort": "413db763490ec12a", }, { - "category": "Update 67", + "category": "Update 63", "collection": "Eggs", "configData": { "currency": "FantasyCoins", - "eggNumber": 279, - "icon": "rbxassetid://15172355963", - "name": "Mirror Tome Path Egg", + "eggNumber": 269, + "goldenThumbnail": "rbxassetid://94345889697361", + "icon": "rbxassetid://87954620473272", + "name": "Totem Trail Egg", "pets": [ [ - "Crystal Jackalope", + "Starry Tail Anteater", 90, ], [ - "Sentry Drake", + "Totem Cub", 9, ], [ - "Tome Owl", + "Sprout Wyrmling", 1, "Nice", ], [ - "Inkwell Wisp", + "Happy Cyclops", 0.1, "Great", ], ], "worldNumber": 4, }, - "configName": "279 | Mirror Tome Path Egg", + "configName": "269 | Totem Trail Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "65546c888e3aaac4", + "dateModified": "2026-04-18T15:56:34.903Z", + "hashShort": "e7991b9b7981686c", }, { - "category": "Update 67", + "category": "Update 63", "collection": "Eggs", "configData": { "currency": "FantasyCoins", - "eggNumber": 280, - "icon": "rbxassetid://15172355963", - "name": "Scribes Terrace Egg", + "eggNumber": 270, + "goldenThumbnail": "rbxassetid://129582157422831", + "icon": "rbxassetid://96426094457245", + "name": "Wyrmwatch Ridge Egg", "pets": [ [ - "Sentry Drake", + "Totem Cub", 90, ], [ - "Tome Owl", + "Sprout Wyrmling", 9, ], [ - "Inkwell Wisp", + "Happy Cyclops", 1, "Nice", ], [ - "Grimoire Agony", + "Runebound Bobcat", 0.1, "Great", ], ], "worldNumber": 4, }, - "configName": "280 | Scribes Terrace Egg", + "configName": "270 | Wyrmwatch Ridge Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-05T23:23:27.191Z", - "hashShort": "8c78dd4f7ef0dcbd", + "dateModified": "2026-04-18T15:56:34.906Z", + "hashShort": "33a4deb2e6867112", }, { - "category": "Update 67", + "category": "Update 63", "collection": "Eggs", "configData": { "currency": "FantasyCoins", - "eggNumber": 281, - "icon": "rbxassetid://15172355963", - "name": "Archivists Tower Egg", - "oddsFFlags": { - "Huge Scribe Squirrel": "FantasyEggHuge", - "Quartz Fox": "FantasyEggPet2", - "Wise Cat": "FantasyEggPet1", - }, + "eggNumber": 271, + "goldenThumbnail": "rbxassetid://128017825917644", + "icon": "rbxassetid://110575069285745", + "name": "Highcliff Sanctuary Egg", "pets": [ [ - "Inkwell Wisp", + "Happy Cyclops", 91, ], [ - "Grimoire Agony", + "Runebound Bobcat", 9.1, ], [ - "Wise Cat", + "Glimmer Goat", 0.001, "Insane", ], [ - "Quartz Fox", + "Ancestor Eagle", 0.000025, "Insane", ], - [ - "Huge Scribe Squirrel", - 0.000006, - "Insane", - ], ], "worldNumber": 4, }, - "configName": "281 | Archivists Tower Egg", + "configName": "271 | Highcliff Sanctuary Egg", "dateCreated": "2025-07-05T23:23:27.191Z", - "dateModified": "2025-07-19T17:28:56.997Z", - "hashShort": "27d90f879ed9bf55", + "dateModified": "2026-04-18T15:56:34.932Z", + "hashShort": "7b739427bd62ac32", }, { "category": "Exclusive Eggs", @@ -41720,35 +42408,35 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "disableModifiers": true, "disableRainbow": false, "goldChance": 0, - "icon": "rbxassetid://112984138677487", - "name": "Exclusive Treasure Egg", + "icon": "rbxassetid://95622991998696", + "name": "Exclusive Totem Egg", "pets": [ [ - "Treasure Scorpion", + "Totem Wolf", 50, ], [ - "Treasure Unicorn", + "Totem Bear", 35, ], [ - "Treasure Golem", + "Totem Cat", 13, ], [ - "Huge Treasure Scorpion", + "Huge Totem Wolf", 1.5, ], [ - "Huge Treasure Golem", + "Huge Totem Cat", 0.39, ], [ - "Titanic Treasure Mimic", + "Titanic Totem Owl", 0.1, ], [ - "Gargantuan Treasure Angelus", + "Gargantuan Totem Monkey", 0.01, ], ], @@ -41767,113 +42455,191 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` }, "shinyChance": 2, }, - "configName": "Exclusive Egg 55", - "dateCreated": "2025-07-12T16:08:45.134Z", - "dateModified": "2025-10-19T02:11:38.353Z", - "hashShort": "6ef22e4f4c4ecb89", + "configName": "Exclusive Egg 53", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "7826b7f9d6dce971", }, { - "category": "Tier 3", + "category": "Other", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Block Party Tier Three 25x", - "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1", - "Huge Splash Angelus": "EggMultiplier_L2", - }, - "overrideCost": 30, + "allPetsRare": true, + "disableGold": true, + "disableModifiers": true, + "disableRainbow": true, + "disableShiny": true, + "goldChance": 0, + "icon": "rbxassetid://135486833669615", + "name": "Dark Unit Egg", + "nonStackable": true, "pets": [ [ - "Chill Sloth", - 87, - ], - [ - "Chill Polar Bear", - 11, + "(TD) Demolition Panda", + 54.65, ], [ - "Coconut Corgi", - 0.5, - "Great", + "(TD) Tech Samurai Axolotl", + 40, ], [ - "Coconut Crab", - 0.005, - "Insane", + "(TD) Electric Eel", + 5, ], [ - "Huge Chill Parrot", - 0.00000125, - "Insane", + "Huge Zeus Bear", + 0.25, ], [ - "Huge Splash Angelus", - 2.5e-9, - "Insane", + "Titanic Mechanical Griffin", + 0.1, ], ], + "rainbowChance": 0, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "shinyChance": 0, }, - "configName": "Block Party Tier Three 25x", - "dateCreated": "2025-07-12T16:08:45.431Z", - "dateModified": "2025-07-19T17:28:56.959Z", - "hashShort": "a4b95cfa6e19e42a", + "configName": "Dark Unit Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "19f8cb4099e15af0", }, { - "category": "Tier 3", + "category": "TD", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", + "currency": "TowerDefenseRubies", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": true, + "disableShiny": true, "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Three 5x", - "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1", - "Huge Splash Angelus": "EggMultiplier_L2", - }, + "name": "Unit Egg", "overrideCost": 30, "pets": [ [ - "Chill Sloth", - 87, + "(TD) Safari Monkey", + 15.4067, ], [ - "Chill Polar Bear", - 11, + "(TD) Ninja Dalmatian", + 30.8133, ], [ - "Coconut Corgi", + "(TD) Ronin Piggy", + 30.8133, + ], + [ + "(TD) Cyborg Kitsune", + 5, + ], + [ + "(TD) DJ Shark", + 5, + ], + [ + "(TD) Demolition Panda", + 4, + ], + [ + "(TD) Flamethrower Spider", + 3, + ], + [ + "(TD) Knight Chicken", + 2, + ], + [ + "(TD) Detective Bunny", + 1, + ], + [ + "(TD) Frostbyte Griffin", 0.5, - "Great", ], [ - "Coconut Crab", - 0.005, - "Insane", + "(TD) Old Wizard Cat", + 0.375, ], [ - "Huge Chill Parrot", - 2.5e-7, - "Insane", + "(TD) Umbrella Elephant", + 0.375, ], [ - "Huge Splash Angelus", - 5e-10, - "Insane", + "(TD) Potion Penguin", + 0.3, + ], + [ + "(TD) Tech Samurai Axolotl", + 0.25, + ], + [ + "(TD) Ooze Dragon", + 0.25, + ], + [ + "(TD) Shadow Pegasus", + 0.25, + ], + [ + "(TD) Torpedo Cat", + 0.125, + ], + [ + "(TD) Disco Ball Agony", + 0.075, + ], + [ + "(TD) Comet Dragon", + 0.12, + ], + [ + "(TD) Electric Eel", + 0.08, + ], + [ + "(TD) Forged Armadillo", + 0.08, + ], + [ + "(TD) Abyssal Turtle", + 0.04, + ], + [ + "(TD) Jetpack Cat", + 0.02, + ], + [ + "(TD) Arcade Angelus", + 0.02001, + ], + [ + "(TD) Nuclear Dominus", + 0.016675, + ], + [ + "(TD) Blurred Owl", + 0.01334, + ], + [ + "(TD) Nightmare Cyclops", + 0.010005, + ], + [ + "(TD) Crystal Giraffe", + 0.00667, ], ], "rarity": { @@ -41889,434 +42655,417 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Three 5x", - "dateCreated": "2025-07-12T16:08:45.433Z", - "dateModified": "2025-07-19T17:28:56.960Z", - "hashShort": "cd67fb0a450363da", + "configName": "0 | Unit Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "79c872e92f5f7fe0", }, { - "category": "Tier 3", + "category": "Other", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Block Party Tier Three 100x", - "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1V2", - "Huge Splash Angelus": "EggMultiplier_L2V2", - }, - "overrideCost": 30, + "allPetsRare": true, + "disableGold": true, + "disableModifiers": true, + "disableRainbow": true, + "disableShiny": true, + "goldChance": 0, + "icon": "rbxassetid://77753362474623", + "name": "Magma Unit Egg", + "nonStackable": true, "pets": [ [ - "Chill Sloth", - 87, - ], - [ - "Chill Polar Bear", - 11, + "Dino Corgi", + 55, ], [ - "Coconut Corgi", - 0.5, - "Great", + "Pinata Dragon", + 36, ], [ - "Coconut Crab", - 0.005, - "Insane", + "Poseidon Axolotl", + 5, ], [ - "Huge Chill Parrot", - 0.000005, - "Insane", + "Huge Arcade Meebo in a Spaceship", + 2.5, ], [ - "Huge Splash Angelus", - 1e-8, - "Insane", + "Titanic Helicopter Corgi", + 0.15, ], ], + "rainbowChance": 0, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "shinyChance": 0, }, - "configName": "Block Party Tier Three 100x", - "dateCreated": "2025-07-12T16:08:45.444Z", - "dateModified": "2025-07-19T17:28:56.975Z", - "hashShort": "3473f4a5ac938088", + "configName": "Magma Unit Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "3b779f310d04d5dc", }, { - "category": "Tier 1", + "category": "Other", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Block Party Tier One 2x", - "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1", - "Huge Splash Angelus": "EggMultiplier_L2", - }, - "overrideCost": 10, + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 5, + "icon": "rbxassetid://15249783107", + "name": "Poseidon Axolotl Egg", "pets": [ [ - "Chill Cat", - 90, - ], - [ - "Chill Bunny", - 8, - ], - [ - "Chill Sloth", - 0.5, - "Great", - ], - [ - "Chill Polar Bear", - 0.005, - "Insane", + "Poseidon Axolotl", + 68, ], [ - "Huge Chill Parrot", - 1e-9, - "Insane", + "Huge Poseidon Axolotl", + 30, ], [ - "Huge Splash Angelus", - 2e-12, - "Insane", + "Titanic Poseidon Axolotl", + 2, ], ], + "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "shinyChance": 2, }, - "configName": "Block Party Tier One 2x", - "dateCreated": "2025-07-12T16:08:45.443Z", - "dateModified": "2025-07-19T17:28:56.488Z", - "hashShort": "0c7901fd068fa80f", + "configName": "Poseidon Axolotl Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "ecf4af6fefe12096", }, { - "category": "Tier 1", + "category": "Update 65", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Block Party Tier One 25x", - "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1", - "Huge Splash Angelus": "EggMultiplier_L2", - }, - "overrideCost": 10, + "currency": "FantasyCoins", + "eggNumber": 272, + "goldenThumbnail": "rbxassetid://93786305501310", + "icon": "rbxassetid://102300787470329", + "name": "Ember Cliffs Egg", "pets": [ [ - "Chill Cat", + "Charred Bat", 90, ], [ - "Chill Bunny", - 8, + "Charred Dragon", + 9, ], [ - "Chill Sloth", - 0.5, - "Great", + "Molten Wisp", + 1, + "Nice", ], + ], + "worldNumber": 4, + }, + "configName": "272 | Ember Cliffs Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:34.901Z", + "hashShort": "6865a1c4dd59f68f", + }, + { + "category": "Update 65", + "collection": "Eggs", + "configData": { + "currency": "FantasyCoins", + "eggNumber": 273, + "goldenThumbnail": "rbxassetid://112829973028241", + "icon": "rbxassetid://127493900335223", + "name": "Charred Canyon Egg", + "pets": [ [ - "Chill Polar Bear", - 0.005, - "Insane", + "Charred Dragon", + 90, ], [ - "Huge Chill Parrot", - 1.25e-8, - "Insane", + "Molten Wisp", + 9, ], [ - "Huge Splash Angelus", - 2.5e-11, - "Insane", + "Molten Werelynx", + 1, + "Nice", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 4, }, - "configName": "Block Party Tier One 25x", - "dateCreated": "2025-07-12T16:08:45.446Z", - "dateModified": "2025-07-19T17:28:56.490Z", - "hashShort": "d6687700c67fe3c0", + "configName": "273 | Charred Canyon Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:34.909Z", + "hashShort": "c04c87616424c112", }, { - "category": "Tier 2", + "category": "Update 65", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Block Party Tier Two 5x", - "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1", - "Huge Splash Angelus": "EggMultiplier_L2", - }, - "overrideCost": 20, + "currency": "FantasyCoins", + "eggNumber": 274, + "goldenThumbnail": "rbxassetid://117528352614331", + "icon": "rbxassetid://81448209660715", + "name": "Ember Chasm Egg", "pets": [ [ - "Chill Bunny", - 89, + "Molten Wisp", + 90, ], [ - "Chill Sloth", + "Molten Werelynx", 9, ], [ - "Chill Polar Bear", - 0.5, - "Great", - ], - [ - "Coconut Corgi", - 0.005, - "Insane", - ], - [ - "Huge Chill Parrot", - 2.5e-8, - "Insane", + "Molten Gecko", + 1, + "Nice", ], [ - "Huge Splash Angelus", - 5e-11, - "Insane", + "Ember Vulture", + 0.1, + "Great", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 4, }, - "configName": "Block Party Tier Two 5x", - "dateCreated": "2025-07-12T16:08:45.449Z", - "dateModified": "2025-07-19T17:28:56.955Z", - "hashShort": "91af66a15a9202e1", + "configName": "274 | Ember Chasm Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:34.896Z", + "hashShort": "8807051032b8676d", }, { - "category": "Tier 1", + "category": "Update 65", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Block Party Tier One 1x", - "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1", - "Huge Splash Angelus": "EggMultiplier_L2", - }, - "overrideCost": 10, + "currency": "FantasyCoins", + "eggNumber": 275, + "goldenThumbnail": "rbxassetid://111302317717386", + "icon": "rbxassetid://133896537189249", + "name": "Molten Nest Egg", "pets": [ [ - "Chill Cat", + "Molten Werelynx", 90, ], [ - "Chill Bunny", - 8, + "Molten Gecko", + 9, ], [ - "Chill Sloth", - 0.5, + "Ember Vulture", + 1, + "Nice", + ], + [ + "Obsidian Griffin", + 0.1, "Great", ], + ], + "worldNumber": 4, + }, + "configName": "275 | Molten Nest Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:34.905Z", + "hashShort": "1886e7d7862c35ac", + }, + { + "category": "Update 65", + "collection": "Eggs", + "configData": { + "currency": "FantasyCoins", + "eggNumber": 276, + "goldenThumbnail": "rbxassetid://77864691432287", + "icon": "rbxassetid://91311346827645", + "name": "Obsidian Spire Egg", + "pets": [ [ - "Chill Polar Bear", - 0.005, - "Insane", + "Ember Vulture", + 91, ], [ - "Huge Chill Parrot", - 5e-10, + "Obsidian Griffin", + 9.1, + ], + [ + "Firefossil Wolf", + 0.001, "Insane", ], [ - "Huge Splash Angelus", - 1e-12, + "Fire Kitsune", + 0.000025, "Insane", ], ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, + "worldNumber": 4, }, - "configName": "Block Party Tier One 1x", - "dateCreated": "2025-07-12T16:08:45.449Z", - "dateModified": "2025-07-19T17:28:56.489Z", - "hashShort": "ab3bba06019d1afd", + "configName": "276 | Obsidian Spire Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:34.907Z", + "hashShort": "6b09c9571232d560", }, { - "category": "Tier 3", + "category": "Exclusive Eggs", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Block Party Tier Three 2x", - "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1", - "Huge Splash Angelus": "EggMultiplier_L2", - }, - "overrideCost": 30, + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://110937441567661", + "name": "Exclusive Super Coral Egg", "pets": [ [ - "Chill Sloth", - 87, + "Super Coral Axolotl", + 50, ], [ - "Chill Polar Bear", - 11, + "Super Coral Whale", + 35, ], [ - "Coconut Corgi", - 0.5, - "Great", + "Super Coral Hydra", + 13, ], [ - "Coconut Crab", - 0.005, - "Insane", + "Huge Super Coral Axolotl", + 1.5, ], [ - "Huge Chill Parrot", - 1e-7, - "Insane", + "Huge Super Coral Hydra", + 0.39, ], [ - "Huge Splash Angelus", - 2e-10, - "Insane", + "Titanic Super Coral Stingray", + 0.1, + ], + [ + "Gargantuan Super Coral Kraken", + 0.01, ], ], + "productIds": { + "10 Exclusive Eggs": 3319090456, + "100 Exclusive Eggs": 3319090572, + "3 Exclusive Eggs": 3319089982, + "Exclusive Egg": 3319089877, + }, + "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "shinyChance": 2, }, - "configName": "Block Party Tier Three 2x", - "dateCreated": "2025-07-12T16:08:45.452Z", - "dateModified": "2025-07-19T17:28:56.962Z", - "hashShort": "f53d5f8a5f55e47f", + "configName": "Exclusive Egg 54", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "f1385a32b3d53f81", }, { - "category": "Tier 5", + "category": "Other", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Block Party Tier Five 25x", - "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1", - "Huge Splash Angelus": "EggMultiplier_L2", - "Titanic Pineapple Dog": "EggMultiplier_L3V2", - }, - "overrideCost": 50, + "allPetsRare": true, + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://126567465243826", + "name": "Gym Egg", + "nonStackable": true, "pets": [ [ - "Floatie Cat", - 83, - ], - [ - "Floatie Penguin", - 15, - ], - [ - "Sandcastle Kraken", - 0.5, - "Great", + "Gym Shark", + 55, ], [ - "Lifeguard Shark", - 0.05, - "Great", + "Gym Piggy", + 37, ], [ - "Sun Griffin", - 0.005, - "Insane", + "Gym Corgi", + 5, ], [ - "Splash Angelus", - 0.002, - "Insane", + "Huge Gym Corgi", + 2.85, ], [ - "Huge Chill Parrot", - 0.000125, - "Insane", + "Titanic Gym Dragon", + 0.15, ], + ], + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, + }, + "configName": "Gym Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "336f65f0f3172df6", + }, + { + "category": "Gym", + "collection": "Eggs", + "configData": { + "currency": "GymCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Muscle Beach Egg", + "overrideCost": 250, + "pets": [ [ - "Huge Splash Angelus", - 2.5e-7, - "Insane", + "Football Tiger", + 98, ], [ - "Titanic Pineapple Dog", - 6e-7, - "Insane", + "Boxing Elephant", + 2, ], ], "rarity": { @@ -42332,52 +43081,33 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Five 25x", - "dateCreated": "2025-07-12T16:08:45.454Z", - "dateModified": "2025-07-19T17:28:56.961Z", - "hashShort": "f106d70b07aad83d", + "configName": "1 | Muscle Beach Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "38db08dc21452412", }, { - "category": "Tier 3", + "category": "Gym", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", + "currency": "GymCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Three 1x", - "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1", - "Huge Splash Angelus": "EggMultiplier_L2", - }, - "overrideCost": 30, + "name": "Rizz Reef Egg", + "overrideCost": 500, "pets": [ [ - "Chill Sloth", - 87, - ], - [ - "Chill Polar Bear", - 11, - ], - [ - "Coconut Corgi", - 0.5, - "Great", - ], - [ - "Coconut Crab", - 0.005, - "Insane", + "Football Tiger", + 89, ], [ - "Huge Chill Parrot", - 5e-8, - "Insane", + "Boxing Elephant", + 10, ], [ - "Huge Splash Angelus", - 1e-10, - "Insane", + "Basketball Monkey", + 1, + "Nice", ], ], "rarity": { @@ -42393,52 +43123,75 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Three 1x", - "dateCreated": "2025-07-12T16:08:45.455Z", - "dateModified": "2025-07-19T17:28:56.959Z", - "hashShort": "04fd297e06504a06", + "configName": "2 | Rizz Reef Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "ec118ba64a2fbe35", }, { - "category": "Tier 4", + "category": "Gym", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", + "currency": "GymCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Four 2x", - "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1", - "Huge Splash Angelus": "EggMultiplier_L2", - }, - "overrideCost": 69, + "name": "Chiseled Volcano Egg", + "overrideCost": 1000, "pets": [ [ - "Coconut Crab", - 85, + "Boxing Elephant", + 90, ], [ - "Floatie Cat", - 13, + "Basketball Monkey", + 10, ], [ - "Floatie Penguin", - 0.5, - "Great", + "Baseball Dolphin", + 0.1, + "Nice", ], + ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + "configName": "3 | Chiseled Volcano Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "918e03ed525fb3e8", + }, + { + "category": "Gym", + "collection": "Eggs", + "configData": { + "currency": "GymCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Giga Castle Egg", + "overrideCost": 2000, + "pets": [ [ - "Sandcastle Kraken", - 0.005, - "Insane", + "Basketball Monkey", + 97, ], [ - "Huge Chill Parrot", - 0.000001, - "Insane", + "Baseball Dolphin", + 3, ], [ - "Huge Splash Angelus", - 2e-9, - "Insane", + "Gym Panda", + 0.01, + "Nice", ], ], "rarity": { @@ -42454,51 +43207,45 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Four 2x", - "dateCreated": "2025-07-12T16:08:45.455Z", - "dateModified": "2025-07-19T17:28:56.973Z", - "hashShort": "ee3de3646505f6b2", + "configName": "4 | Giga Castle Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "f4aa84b81d57bca6", }, { - "category": "Tier 1", + "category": "Gym", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", + "currency": "GymCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier One 5x", + "name": "Sigma Beach Egg Tier 1", "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1", - "Huge Splash Angelus": "EggMultiplier_L2", + "Huge Gym Panda": "EggMultiplier_K4", }, - "overrideCost": 10, + "overrideCost": 4000, "pets": [ [ - "Chill Cat", + "Baseball Dolphin", 90, ], [ - "Chill Bunny", + "Gym Panda", 8, ], [ - "Chill Sloth", - 0.5, + "Soccer Terrier", + 2, "Great", ], [ - "Chill Polar Bear", - 0.005, - "Insane", - ], - [ - "Huge Chill Parrot", - 2.5e-9, + "Gym Anteater", + 0.1, "Insane", ], [ - "Huge Splash Angelus", - 5e-12, + "Huge Gym Panda", + 0.000006, "Insane", ], ], @@ -42515,51 +43262,45 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier One 5x", - "dateCreated": "2025-07-12T16:08:45.460Z", - "dateModified": "2025-07-19T17:28:56.489Z", - "hashShort": "9b82c9102a0e29a9", + "configName": "5 | Sigma Beach Egg Tier 1", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "2e9651afa6b78af3", }, { - "category": "Tier 2", + "category": "Gym", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", + "currency": "GymCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Two 2x", + "name": "Sigma Beach Egg Tier 2", "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1", - "Huge Splash Angelus": "EggMultiplier_L2", + "Huge Gym Panda": "EggMultiplier_K4", }, - "overrideCost": 20, + "overrideCost": 4000, "pets": [ [ - "Chill Bunny", - 89, + "Gym Panda", + 92, ], [ - "Chill Sloth", - 9, + "Soccer Terrier", + 6, ], [ - "Chill Polar Bear", - 0.5, + "Gym Anteater", + 1, "Great", ], [ - "Coconut Corgi", - 0.005, - "Insane", - ], - [ - "Huge Chill Parrot", - 1e-8, + "Gym Scorpion", + 0.1, "Insane", ], [ - "Huge Splash Angelus", - 2e-11, + "Huge Gym Panda", + 0.000006, "Insane", ], ], @@ -42576,51 +43317,50 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Two 2x", - "dateCreated": "2025-07-12T16:08:45.464Z", - "dateModified": "2025-07-19T17:28:56.485Z", - "hashShort": "71fe7ce54d6ffb64", + "configName": "5 | Sigma Beach Egg Tier 2", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "bd287d17401e475f", }, { - "category": "Tier 2", + "category": "Gym", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", + "currency": "GymCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Two 25x", + "name": "Sigma Beach Egg Tier 3", "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1", - "Huge Splash Angelus": "EggMultiplier_L2", + "Huge Gym Panda": "EggMultiplier_K4", }, - "overrideCost": 20, + "overrideCost": 4000, "pets": [ [ - "Chill Bunny", - 89, + "Gym Panda", + 80, ], [ - "Chill Sloth", - 9, + "Soccer Terrier", + 15, ], [ - "Chill Polar Bear", - 0.5, + "Gym Anteater", + 3, "Great", ], [ - "Coconut Corgi", - 0.005, + "Gym Scorpion", + 0.5, "Insane", ], [ - "Huge Chill Parrot", - 1.25e-7, + "Gym Shark", + 0.1, "Insane", ], [ - "Huge Splash Angelus", - 2.5e-10, + "Huge Gym Panda", + 0.000006, "Insane", ], ], @@ -42637,67 +43377,51 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Two 25x", - "dateCreated": "2025-07-12T16:08:45.464Z", - "dateModified": "2025-07-19T17:28:56.955Z", - "hashShort": "91569d34eb74bbff", + "configName": "5 | Sigma Beach Egg Tier 3", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "bfb9ab6203c5fd9d", }, { - "category": "Tier 5", + "category": "Gym", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", + "currency": "GymCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Five 5x", + "name": "Sigma Beach Egg Tier 4", "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1", - "Huge Splash Angelus": "EggMultiplier_L2", - "Titanic Pineapple Dog": "EggMultiplier_L3V2", + "Comet Cyclops Ball": "EggMultiplier_K1", + "Huge Gym Panda": "EggMultiplier_K4", }, - "overrideCost": 50, + "overrideCost": 4000, "pets": [ [ - "Floatie Cat", - 83, + "Soccer Terrier", + 92, ], [ - "Floatie Penguin", - 15, + "Gym Anteater", + 7, ], [ - "Sandcastle Kraken", - 0.5, + "Gym Scorpion", + 1, "Great", ], [ - "Lifeguard Shark", - 0.05, + "Gym Shark", + 0.2, "Great", ], [ - "Sun Griffin", - 0.005, - "Insane", - ], - [ - "Splash Angelus", - 0.002, - "Insane", - ], - [ - "Huge Chill Parrot", - 0.000025, - "Insane", - ], - [ - "Huge Splash Angelus", - 5e-8, + "Gym Piggy", + 0.0005, "Insane", ], [ - "Titanic Pineapple Dog", - 6e-7, + "Huge Gym Panda", + 0.000006, "Insane", ], ], @@ -42714,51 +43438,57 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Five 5x", - "dateCreated": "2025-07-12T16:08:45.465Z", - "dateModified": "2025-07-19T17:28:56.962Z", - "hashShort": "e6e2ef6e94d7e766", + "configName": "5 | Sigma Beach Egg Tier 4", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "37927363cf75ca90", }, { - "category": "Tier 4", + "category": "Gym", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", + "currency": "GymCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Four 5x", + "name": "Sigma Beach Egg Tier 5", "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1", - "Huge Splash Angelus": "EggMultiplier_L2", + "Comet Cyclops Ball": "EggMultiplier_K1", + "Glitched Cat Ball": "EggMultiplier_K2", + "Huge Gym Panda": "EggMultiplier_K4", }, - "overrideCost": 40, + "overrideCost": 4000, "pets": [ [ - "Coconut Crab", - 85, + "Soccer Terrier", + 86, ], [ - "Floatie Cat", - 13, + "Gym Anteater", + 12, ], [ - "Floatie Penguin", + "Gym Scorpion", + 2, + "Great", + ], + [ + "Gym Shark", 0.5, "Great", ], [ - "Sandcastle Kraken", - 0.005, + "Gym Piggy", + 0.0005, "Insane", ], [ - "Huge Chill Parrot", - 0.0000025, + "Gym Corgi", + 0.00005, "Insane", ], [ - "Huge Splash Angelus", - 5e-9, + "Huge Gym Panda", + 0.000006, "Insane", ], ], @@ -42775,67 +43505,63 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Four 5x", - "dateCreated": "2025-07-12T16:08:45.467Z", - "dateModified": "2025-07-19T17:28:56.958Z", - "hashShort": "c60a6493c6171710", + "configName": "5 | Sigma Beach Egg Tier 5", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "2ee5dd729c7668d9", }, { - "category": "Tier 5", + "category": "Gym", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", + "currency": "GymCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Five 1x", + "name": "Sigma Beach Egg Tier 6", "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1", - "Huge Splash Angelus": "EggMultiplier_L2", - "Titanic Pineapple Dog": "EggMultiplier_L3V2", + "Gym Corgi": "EggMultiplier_K2", + "Gym Dragon": "EggMultiplier_K3", + "Gym Piggy": "EggMultiplier_K1", + "Huge Gym Panda": "EggMultiplier_K4", }, - "overrideCost": 50, + "overrideCost": 4000, "pets": [ [ - "Floatie Cat", - 83, + "Soccer Terrier", + 80, ], [ - "Floatie Penguin", + "Gym Anteater", 15, ], [ - "Sandcastle Kraken", - 0.5, + "Gym Scorpion", + 3, "Great", ], [ - "Lifeguard Shark", - 0.05, + "Gym Shark", + 0.5, "Great", ], [ - "Sun Griffin", - 0.005, - "Insane", - ], - [ - "Splash Angelus", - 0.002, + "Gym Piggy", + 0.0005, "Insane", ], [ - "Huge Chill Parrot", - 0.000005, + "Gym Corgi", + 0.00005, "Insane", ], [ - "Huge Splash Angelus", - 1e-8, + "Gym Dragon", + 0.00002, "Insane", ], [ - "Titanic Pineapple Dog", - 6e-7, + "Huge Gym Panda", + 0.000006, "Insane", ], ], @@ -42852,112 +43578,102 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Five 1x", - "dateCreated": "2025-07-12T16:08:45.468Z", - "dateModified": "2025-07-19T17:28:56.967Z", - "hashShort": "f9b83bd22be52691", + "configName": "5 | Sigma Beach Egg Tier 6", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "e88aac4ef9b2914b", }, { - "category": "Tier 2", + "category": "Other", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Block Party Tier Two 100x", - "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1V2", - "Huge Splash Angelus": "EggMultiplier_L2V2", - }, - "overrideCost": 20, + "allPetsRare": true, + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://72995061495948", + "name": "Buff Gym Egg", + "nonStackable": true, "pets": [ [ - "Chill Bunny", - 89, - ], - [ - "Chill Sloth", - 9, + "Gym Beaver", + 55, ], [ - "Chill Polar Bear", - 0.5, - "Great", + "Gym Cat", + 37, ], [ - "Coconut Corgi", - 0.005, - "Insane", + "Gym Unicorn", + 5, ], [ - "Huge Chill Parrot", - 5e-7, - "Insane", + "Huge Gym Cow", + 2.85, ], [ - "Huge Splash Angelus", - 1e-9, - "Insane", + "Titanic Gym Cat", + 0.15, ], ], + "productIds": { + "10 Basketball Eggs": 3325141240, + "100 Basketball Eggs": 3325141397, + "3 Basketball Eggs": 3325141051, + "Basketball Egg": 3325140793, + }, + "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "shinyChance": 2, }, - "configName": "Block Party Tier Two 100x", - "dateCreated": "2025-07-12T16:08:45.471Z", - "dateModified": "2025-07-19T17:28:56.956Z", - "hashShort": "3c66c1fbedf2f021", + "configName": "Buff Gym Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "2e421a856b6b0b55", }, { - "category": "Tier 4", + "category": "Gym", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", + "currency": "GymCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Four 1x", - "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1", - "Huge Splash Angelus": "EggMultiplier_L2", - }, - "overrideCost": 40, + "name": "Sigma Beach Egg", + "overrideCost": 4000, "pets": [ [ - "Coconut Crab", - 85, + "Baseball Dolphin", + 90, ], [ - "Floatie Cat", - 13, + "Gym Panda", + 8, ], [ - "Floatie Penguin", - 0.5, + "Soccer Terrier", + 2, "Great", ], [ - "Sandcastle Kraken", - 0.005, - "Insane", - ], - [ - "Huge Chill Parrot", - 5e-7, + "Gym Anteater", + 0.1, "Insane", ], [ - "Huge Splash Angelus", - 1e-9, + "Gym Scorpion", + 0.01, "Insane", ], ], @@ -42974,51 +43690,37 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Four 1x", - "dateCreated": "2025-07-12T16:08:45.469Z", - "dateModified": "2025-07-19T17:28:56.976Z", - "hashShort": "ac72cd4412add2c0", + "configName": "5 | Sigma Beach Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "aa7f99b9e8035bc6", }, { - "category": "Tier 4", + "category": "Gym", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", - "icon": "rbxassetid://15172355963", + "currency": "GymCoins", + "icon": "", "isCustomEgg": true, - "name": "Block Party Tier Four 25x", - "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1", - "Huge Splash Angelus": "EggMultiplier_L2", - }, - "overrideCost": 40, + "name": "Drip Dock Egg", + "overrideCost": 5000, "pets": [ [ - "Coconut Crab", - 85, + "Soccer Terrier", + 90, ], [ - "Floatie Cat", - 13, + "Gym Anteater", + 8, ], [ - "Floatie Penguin", - 0.5, + "Gym Scorpion", + 2, "Great", ], [ - "Sandcastle Kraken", - 0.005, - "Insane", - ], - [ - "Huge Chill Parrot", - 0.0000125, - "Insane", - ], - [ - "Huge Splash Angelus", - 2.5e-8, + "Golf Griffin", + 0.1, "Insane", ], ], @@ -43035,51 +43737,37 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Four 25x", - "dateCreated": "2025-07-12T16:08:45.471Z", - "dateModified": "2025-07-19T17:28:56.967Z", - "hashShort": "b8c3a53838100bc4", + "configName": "6 | Drip Dock Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "09b9af7fdf4dc834", }, { - "category": "Tier 4", + "category": "Gym", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", - "icon": "rbxassetid://15172355963", + "currency": "GymCoins", + "icon": "", "isCustomEgg": true, - "name": "Block Party Tier Four 100x", - "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1V2", - "Huge Splash Angelus": "EggMultiplier_L2V2", - }, - "overrideCost": 40, + "name": "Cliff Gains Egg", + "overrideCost": 6000, "pets": [ [ - "Coconut Crab", - 85, + "Gym Anteater", + 90, ], [ - "Floatie Cat", - 13, + "Gym Scorpion", + 8, ], [ - "Floatie Penguin", - 0.5, + "Golf Griffin", + 2, "Great", ], [ - "Sandcastle Kraken", - 0.005, - "Insane", - ], - [ - "Huge Chill Parrot", - 0.00005, - "Insane", - ], - [ - "Huge Splash Angelus", - 1e-7, + "Tennis Squirrel", + 0.1, "Insane", ], ], @@ -43096,51 +43784,45 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Four 100x", - "dateCreated": "2025-07-12T16:08:45.475Z", - "dateModified": "2025-07-19T17:28:56.963Z", - "hashShort": "c10a50e3bf61c1ba", + "configName": "7 | Cliff Gains Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "df23c4a6af2da0df", }, { - "category": "Tier 2", + "category": "Gym", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", + "currency": "GymCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Two 1x", + "name": "Crashed Out Egg Tier 1", "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1", - "Huge Splash Angelus": "EggMultiplier_L2", + "Huge Coach Hippo": "EggMultiplier_K4", }, - "overrideCost": 20, + "overrideCost": 7000, "pets": [ [ - "Chill Bunny", - 89, + "Golf Griffin", + 90, ], [ - "Chill Sloth", - 9, + "Tennis Squirrel", + 8, ], [ - "Chill Polar Bear", - 0.5, + "Coach Hippo", + 2, "Great", ], [ - "Coconut Corgi", - 0.005, - "Insane", - ], - [ - "Huge Chill Parrot", - 5e-9, + "Gym Axolotl", + 0.1, "Insane", ], [ - "Huge Splash Angelus", - 1e-11, + "Huge Coach Hippo", + 0.000006, "Insane", ], ], @@ -43157,67 +43839,45 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Two 1x", - "dateCreated": "2025-07-12T16:08:45.472Z", - "dateModified": "2025-07-19T17:28:56.484Z", - "hashShort": "33f9837f12b7c6fb", + "configName": "8 | Crashed Out Egg Tier 1", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "5c686e04c2ef356b", }, { - "category": "Tier 5", + "category": "Gym", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", + "currency": "GymCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Five 100x", + "name": "Crashed Out Egg Tier 2", "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1V2", - "Huge Splash Angelus": "EggMultiplier_L2V2", - "Titanic Pineapple Dog": "EggMultiplier_L3V2", + "Huge Coach Hippo": "EggMultiplier_K4", }, - "overrideCost": 50, + "overrideCost": 7000, "pets": [ [ - "Floatie Cat", - 83, - ], - [ - "Floatie Penguin", - 15, + "Tennis Squirrel", + 92, ], [ - "Sandcastle Kraken", - 0.5, - "Great", + "Coach Hippo", + 6, ], [ - "Lifeguard Shark", - 0.05, + "Gym Axolotl", + 1, "Great", ], [ - "Sun Griffin", - 0.005, - "Insane", - ], - [ - "Splash Angelus", - 0.002, - "Insane", - ], - [ - "Huge Chill Parrot", - 0.0005, - "Insane", - ], - [ - "Huge Splash Angelus", - 0.000001, + "Gym Cow", + 0.1, "Insane", ], [ - "Titanic Pineapple Dog", - 6e-7, + "Huge Coach Hippo", + 0.000006, "Insane", ], ], @@ -43234,67 +43894,50 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Five 100x", - "dateCreated": "2025-07-12T16:08:45.473Z", - "dateModified": "2025-07-19T17:28:56.978Z", - "hashShort": "2ef2897c938a18e8", + "configName": "8 | Crashed Out Egg Tier 2", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "65177b6f078999a2", }, { - "category": "Tier 5", + "category": "Gym", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", + "currency": "GymCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Five 2x", + "name": "Crashed Out Egg Tier 3", "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1", - "Huge Splash Angelus": "EggMultiplier_L2", - "Titanic Pineapple Dog": "EggMultiplier_L3V2", + "Huge Coach Hippo": "EggMultiplier_K4", }, - "overrideCost": 50, + "overrideCost": 7000, "pets": [ [ - "Floatie Cat", - 83, + "Tennis Squirrel", + 80, ], [ - "Floatie Penguin", + "Coach Hippo", 15, ], [ - "Sandcastle Kraken", - 0.5, - "Great", - ], - [ - "Lifeguard Shark", - 0.05, + "Gym Axolotl", + 3, "Great", ], [ - "Sun Griffin", - 0.005, - "Insane", - ], - [ - "Splash Angelus", - 0.002, - "Insane", - ], - [ - "Huge Chill Parrot", - 0.00001, + "Gym Cow", + 0.5, "Insane", ], [ - "Huge Splash Angelus", - 2e-8, + "Gym Beaver", + 0.1, "Insane", ], [ - "Titanic Pineapple Dog", - 6e-7, + "Huge Coach Hippo", + 0.000006, "Insane", ], ], @@ -43311,51 +43954,51 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Five 2x", - "dateCreated": "2025-07-12T16:08:45.479Z", - "dateModified": "2025-07-19T17:28:56.954Z", - "hashShort": "f48dc3769ff7d234", + "configName": "8 | Crashed Out Egg Tier 3", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "5abb8330a9d1590b", }, { - "category": "Tier 1", + "category": "Gym", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", + "currency": "GymCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier One 100x", + "name": "Crashed Out Egg Tier 4", "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1V2", - "Huge Splash Angelus": "EggMultiplier_L2V2", + "Gym Cat": "EggMultiplier_K1", + "Huge Coach Hippo": "EggMultiplier_K4", }, - "overrideCost": 10, + "overrideCost": 7000, "pets": [ [ - "Chill Cat", - 90, + "Coach Hippo", + 92, ], [ - "Chill Bunny", - 8, + "Gym Axolotl", + 7, ], [ - "Chill Sloth", - 0.5, + "Gym Cow", + 1, "Great", ], [ - "Chill Polar Bear", - 0.005, - "Insane", + "Gym Beaver", + 0.2, + "Great", ], [ - "Huge Chill Parrot", - 5e-8, + "Gym Cat", + 0.0005, "Insane", ], [ - "Huge Splash Angelus", - 1e-10, + "Huge Coach Hippo", + 0.000006, "Insane", ], ], @@ -43372,64 +44015,57 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier One 100x", - "dateCreated": "2025-07-12T16:08:45.483Z", - "dateModified": "2025-07-19T17:28:56.486Z", - "hashShort": "1e7da05e24d7f5b8", + "configName": "8 | Crashed Out Egg Tier 4", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "bb61e0ed28812243", }, { - "category": "Tier 6 (Update)", + "category": "Gym", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", + "currency": "GymCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Six 1x", + "name": "Crashed Out Egg Tier 5", "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1", - "Huge Splash Angelus": "EggMultiplier_L2", - "Titanic Pineapple Dog": "EggMultiplier_L3V2", + "Gym Cat": "EggMultiplier_K1", + "Gym Unicorn": "EggMultiplier_K2", + "Huge Coach Hippo": "EggMultiplier_K4", }, - "overrideCost": 50, + "overrideCost": 7000, "pets": [ [ - "Floatie Cat", - 50, - ], - [ - "Chill Ducky", - 40, - ], - [ - "Chill Turtle", - 10, + "Coach Hippo", + 86, ], [ - "Chill Parrot", - 5, + "Gym Axolotl", + 12, ], [ - "Coconut Flamingo", - 1, + "Gym Cow", + 2, + "Great", ], [ - "Flamingo Cat", - 0.1, + "Gym Beaver", + 0.5, "Great", ], [ - "Huge Chill Parrot", - 0.000005, + "Gym Cat", + 0.0005, "Insane", ], [ - "Huge Splash Angelus", - 1e-8, + "Gym Unicorn", + 0.00005, "Insane", ], [ - "Titanic Pineapple Dog", - 6e-7, + "Huge Coach Hippo", + 0.000006, "Insane", ], ], @@ -43446,67 +44082,63 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Six 1x", - "dateCreated": "2025-07-19T17:28:56.954Z", - "dateModified": "2025-07-19T17:28:56.954Z", - "hashShort": "6bed05c0296d7047", + "configName": "8 | Crashed Out Egg Tier 5", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "628e2e576dfcbde9", }, { - "category": "Tier 8 ( Update)", + "category": "Gym", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", + "currency": "GymCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Eight 1x", + "name": "Crashed Out Egg Tier 6", "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1", - "Huge Splash Angelus": "EggMultiplier_L2", - "Titanic Pineapple Dog": "EggMultiplier_L3V2", + "Buff Tiger": "EggMultiplier_K3", + "Gym Cat": "EggMultiplier_K1", + "Gym Unicorn": "EggMultiplier_K2", + "Huge Coach Hippo": "EggMultiplier_K4", }, - "overrideCost": 50, + "overrideCost": 7000, "pets": [ [ - "Coconut Flamingo", - 83, + "Coach Hippo", + 80, ], [ - "Flamingo Cat", + "Gym Axolotl", 15, ], [ - "Flamingo Hippo", - 0.5, + "Gym Cow", + 3, "Great", ], [ - "Pineapple Dog", - 0.05, + "Gym Beaver", + 0.5, "Great", ], [ - "Beach Ball Capybara", - 0.005, - "Insane", - ], - [ - "Watermelon Golem", - 0.002, + "Gym Cat", + 0.0005, "Insane", ], [ - "Huge Chill Parrot", - 0.000005, + "Gym Unicorn", + 0.00005, "Insane", ], [ - "Huge Splash Angelus", - 1e-8, + "Buff Tiger", + 0.00002, "Insane", ], [ - "Titanic Pineapple Dog", - 6e-7, + "Huge Coach Hippo", + 0.000006, "Insane", ], ], @@ -43523,139 +44155,291 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Eight 1x", - "dateCreated": "2025-07-19T17:28:56.954Z", - "dateModified": "2025-07-19T17:28:56.954Z", - "hashShort": "70f91a8f481ae80c", + "configName": "8 | Crashed Out Egg Tier 6", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2025-07-05T23:23:27.191Z", + "hashShort": "a5d37d09546f03ce", }, { - "category": "Tier 8 ( Update)", + "category": "Update 67", "collection": "Eggs", "configData": { - "currency": "BlockPartyCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Block Party Tier Eight 5x", - "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1", - "Huge Splash Angelus": "EggMultiplier_L2", - "Titanic Pineapple Dog": "EggMultiplier_L3V2", - }, - "overrideCost": 50, + "currency": "FantasyCoins", + "eggNumber": 277, + "goldenThumbnail": "rbxassetid://109131564162389", + "icon": "rbxassetid://129734255459817", + "name": "Crystalfall Hollow Egg", "pets": [ [ - "Coconut Flamingo", - 83, + "Archivist Ferret", + 90, ], [ - "Flamingo Cat", - 15, + "Scribe Squirrel", + 9, ], [ - "Flamingo Hippo", - 0.5, + "Crystal Jackalope", + 1, + "Nice", + ], + ], + "worldNumber": 4, + }, + "configName": "277 | Crystalfall Hollow Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:34.904Z", + "hashShort": "4651bad3188cce48", + }, + { + "category": "Update 67", + "collection": "Eggs", + "configData": { + "currency": "FantasyCoins", + "eggNumber": 278, + "goldenThumbnail": "rbxassetid://114564936005767", + "icon": "rbxassetid://76985060617385", + "name": "Glimmer Grottos Egg", + "pets": [ + [ + "Scribe Squirrel", + 90, + ], + [ + "Crystal Jackalope", + 9, + ], + [ + "Sentry Drake", + 1, + "Nice", + ], + ], + "worldNumber": 4, + }, + "configName": "278 | Glimmer Grottos Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:34.928Z", + "hashShort": "899f04d6ab5667c1", + }, + { + "category": "Update 67", + "collection": "Eggs", + "configData": { + "currency": "FantasyCoins", + "eggNumber": 279, + "goldenThumbnail": "rbxassetid://101291582451360", + "icon": "rbxassetid://82367711572429", + "name": "Mirror Tome Path Egg", + "pets": [ + [ + "Crystal Jackalope", + 90, + ], + [ + "Sentry Drake", + 9, + ], + [ + "Tome Owl", + 1, + "Nice", + ], + [ + "Inkwell Wisp", + 0.1, "Great", ], + ], + "worldNumber": 4, + }, + "configName": "279 | Mirror Tome Path Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:34.872Z", + "hashShort": "76d2f21236cbd464", + }, + { + "category": "Update 67", + "collection": "Eggs", + "configData": { + "currency": "FantasyCoins", + "eggNumber": 280, + "goldenThumbnail": "rbxassetid://76128588207056", + "icon": "rbxassetid://105728345710508", + "name": "Scribes Terrace Egg", + "pets": [ + [ + "Sentry Drake", + 90, + ], [ - "Pineapple Dog", - 0.05, + "Tome Owl", + 9, + ], + [ + "Inkwell Wisp", + 1, + "Nice", + ], + [ + "Grimoire Agony", + 0.1, "Great", ], + ], + "worldNumber": 4, + }, + "configName": "280 | Scribes Terrace Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:34.909Z", + "hashShort": "5d99c4bdb6841d62", + }, + { + "category": "Update 67", + "collection": "Eggs", + "configData": { + "currency": "FantasyCoins", + "eggNumber": 281, + "goldenThumbnail": "rbxassetid://77179686083802", + "icon": "rbxassetid://95117856724450", + "name": "Archivists Tower Egg", + "oddsFFlags": { + "Huge Scribe Squirrel": "FantasyEggHuge", + "Quartz Fox": "FantasyEggPet2", + "Wise Cat": "FantasyEggPet1", + }, + "pets": [ + [ + "Inkwell Wisp", + 91, + ], [ - "Beach Ball Capybara", - 0.005, - "Insane", + "Grimoire Agony", + 9.1, ], [ - "Watermelon Golem", - 0.002, + "Wise Cat", + 0.001, "Insane", ], [ - "Huge Chill Parrot", + "Quartz Fox", 0.000025, "Insane", ], [ - "Huge Splash Angelus", - 5e-8, + "Huge Scribe Squirrel", + 0.000006, "Insane", ], + ], + "worldNumber": 4, + }, + "configName": "281 | Archivists Tower Egg", + "dateCreated": "2025-07-05T23:23:27.191Z", + "dateModified": "2026-04-18T15:56:34.908Z", + "hashShort": "b7ab75863952b350", + }, + { + "category": "Exclusive Eggs", + "collection": "Eggs", + "configData": { + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://112984138677487", + "name": "Exclusive Treasure Egg", + "pets": [ [ - "Titanic Pineapple Dog", - 6e-7, - "Insane", + "Treasure Scorpion", + 50, + ], + [ + "Treasure Unicorn", + 35, + ], + [ + "Treasure Golem", + 13, + ], + [ + "Huge Treasure Scorpion", + 1.5, + ], + [ + "Huge Treasure Golem", + 0.39, + ], + [ + "Titanic Treasure Mimic", + 0.1, + ], + [ + "Gargantuan Treasure Angelus", + 0.01, ], ], + "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "shinyChance": 2, }, - "configName": "Block Party Tier Eight 5x", - "dateCreated": "2025-07-19T17:28:56.961Z", - "dateModified": "2025-07-19T17:28:56.961Z", - "hashShort": "4c2df6bc733e8d33", + "configName": "Exclusive Egg 55", + "dateCreated": "2025-07-12T16:08:45.134Z", + "dateModified": "2025-10-19T02:11:38.353Z", + "hashShort": "6ef22e4f4c4ecb89", }, { - "category": "Tier 7 (Update)", + "category": "Tier 3", "collection": "Eggs", "configData": { "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Seven 2x", + "name": "Block Party Tier Three 25x", "oddsFFlags": { "Huge Chill Parrot": "EggMultiplier_L1", "Huge Splash Angelus": "EggMultiplier_L2", - "Titanic Pineapple Dog": "EggMultiplier_L3V2", }, - "overrideCost": 50, + "overrideCost": 30, "pets": [ [ - "Chill Parrot", - 85, + "Chill Sloth", + 87, ], [ - "Coconut Flamingo", - 13, + "Chill Polar Bear", + 11, ], [ - "Flamingo Cat", + "Coconut Corgi", 0.5, "Great", ], [ - "Flamingo Hippo", + "Coconut Crab", 0.005, "Insane", ], - [ - "Pineapple Dog", - 0.0005, - "Insane", - ], [ "Huge Chill Parrot", - 0.00001, + 0.00000125, "Insane", ], [ "Huge Splash Angelus", - 2e-8, - "Insane", - ], - [ - "Titanic Pineapple Dog", - 6e-7, + 2.5e-9, "Insane", ], ], @@ -43672,64 +44456,51 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Seven 2x", - "dateCreated": "2025-07-19T17:28:56.963Z", - "dateModified": "2025-07-19T17:28:56.963Z", - "hashShort": "63b75137103d507d", + "configName": "Block Party Tier Three 25x", + "dateCreated": "2025-07-12T16:08:45.431Z", + "dateModified": "2025-07-19T17:28:56.959Z", + "hashShort": "a4b95cfa6e19e42a", }, { - "category": "Tier 6 (Update)", + "category": "Tier 3", "collection": "Eggs", "configData": { "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Six 25x", + "name": "Block Party Tier Three 5x", "oddsFFlags": { "Huge Chill Parrot": "EggMultiplier_L1", "Huge Splash Angelus": "EggMultiplier_L2", - "Titanic Pineapple Dog": "EggMultiplier_L3V2", }, - "overrideCost": 50, + "overrideCost": 30, "pets": [ [ - "Floatie Cat", - 50, - ], - [ - "Chill Ducky", - 40, - ], - [ - "Chill Turtle", - 10, - ], - [ - "Chill Parrot", - 5, + "Chill Sloth", + 87, ], [ - "Coconut Flamingo", - 1, + "Chill Polar Bear", + 11, ], [ - "Flamingo Cat", - 0.1, + "Coconut Corgi", + 0.5, "Great", ], [ - "Huge Chill Parrot", - 0.000125, + "Coconut Crab", + 0.005, "Insane", ], [ - "Huge Splash Angelus", + "Huge Chill Parrot", 2.5e-7, "Insane", ], [ - "Titanic Pineapple Dog", - 6e-7, + "Huge Splash Angelus", + 5e-10, "Insane", ], ], @@ -43746,64 +44517,51 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Six 25x", - "dateCreated": "2025-07-19T17:28:56.964Z", - "dateModified": "2025-07-19T17:28:56.964Z", - "hashShort": "a7bb5651e1fd7ef9", + "configName": "Block Party Tier Three 5x", + "dateCreated": "2025-07-12T16:08:45.433Z", + "dateModified": "2025-07-19T17:28:56.960Z", + "hashShort": "cd67fb0a450363da", }, { - "category": "Tier 6 (Update)", + "category": "Tier 3", "collection": "Eggs", "configData": { "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Six 100x", + "name": "Block Party Tier Three 100x", "oddsFFlags": { "Huge Chill Parrot": "EggMultiplier_L1V2", "Huge Splash Angelus": "EggMultiplier_L2V2", - "Titanic Pineapple Dog": "EggMultiplier_L3V2", }, - "overrideCost": 50, + "overrideCost": 30, "pets": [ [ - "Floatie Cat", - 50, - ], - [ - "Chill Ducky", - 40, - ], - [ - "Chill Turtle", - 10, - ], - [ - "Chill Parrot", - 5, + "Chill Sloth", + 87, ], [ - "Coconut Flamingo", - 1, + "Chill Polar Bear", + 11, ], [ - "Flamingo Cat", - 0.1, + "Coconut Corgi", + 0.5, "Great", ], [ - "Huge Chill Parrot", - 0.0005, + "Coconut Crab", + 0.005, "Insane", ], [ - "Huge Splash Angelus", - 0.000001, + "Huge Chill Parrot", + 0.000005, "Insane", ], [ - "Titanic Pineapple Dog", - 6e-7, + "Huge Splash Angelus", + 1e-8, "Insane", ], ], @@ -43820,64 +44578,51 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Six 100x", - "dateCreated": "2025-07-19T17:28:56.965Z", - "dateModified": "2025-07-19T17:28:56.965Z", - "hashShort": "8894c0c66ef59ffc", + "configName": "Block Party Tier Three 100x", + "dateCreated": "2025-07-12T16:08:45.444Z", + "dateModified": "2025-07-19T17:28:56.975Z", + "hashShort": "3473f4a5ac938088", }, { - "category": "Tier 6 (Update)", + "category": "Tier 1", "collection": "Eggs", "configData": { "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Six 2x", + "name": "Block Party Tier One 2x", "oddsFFlags": { "Huge Chill Parrot": "EggMultiplier_L1", "Huge Splash Angelus": "EggMultiplier_L2", - "Titanic Pineapple Dog": "EggMultiplier_L3V2", }, - "overrideCost": 50, + "overrideCost": 10, "pets": [ [ - "Floatie Cat", - 50, - ], - [ - "Chill Ducky", - 40, - ], - [ - "Chill Turtle", - 10, - ], - [ - "Chill Parrot", - 5, + "Chill Cat", + 90, ], [ - "Coconut Flamingo", - 1, + "Chill Bunny", + 8, ], [ - "Flamingo Cat", - 0.1, + "Chill Sloth", + 0.5, "Great", ], [ - "Huge Chill Parrot", - 0.00001, + "Chill Polar Bear", + 0.005, "Insane", ], [ - "Huge Splash Angelus", - 2e-8, + "Huge Chill Parrot", + 1e-9, "Insane", ], [ - "Titanic Pineapple Dog", - 6e-7, + "Huge Splash Angelus", + 2e-12, "Insane", ], ], @@ -43894,67 +44639,51 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Six 2x", - "dateCreated": "2025-07-19T17:28:56.966Z", - "dateModified": "2025-07-19T17:28:56.966Z", - "hashShort": "1e13e7ac775d1ff9", + "configName": "Block Party Tier One 2x", + "dateCreated": "2025-07-12T16:08:45.443Z", + "dateModified": "2025-07-19T17:28:56.488Z", + "hashShort": "0c7901fd068fa80f", }, { - "category": "Tier 8 ( Update)", + "category": "Tier 1", "collection": "Eggs", "configData": { "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Eight 2x", + "name": "Block Party Tier One 25x", "oddsFFlags": { "Huge Chill Parrot": "EggMultiplier_L1", "Huge Splash Angelus": "EggMultiplier_L2", - "Titanic Pineapple Dog": "EggMultiplier_L3V2", }, - "overrideCost": 50, + "overrideCost": 10, "pets": [ [ - "Coconut Flamingo", - 83, + "Chill Cat", + 90, ], [ - "Flamingo Cat", - 15, + "Chill Bunny", + 8, ], [ - "Flamingo Hippo", + "Chill Sloth", 0.5, "Great", ], [ - "Pineapple Dog", - 0.05, - "Great", - ], - [ - "Beach Ball Capybara", + "Chill Polar Bear", 0.005, "Insane", ], - [ - "Watermelon Golem", - 0.002, - "Insane", - ], [ "Huge Chill Parrot", - 0.00001, + 1.25e-8, "Insane", ], [ "Huge Splash Angelus", - 2e-8, - "Insane", - ], - [ - "Titanic Pineapple Dog", - 6e-7, + 2.5e-11, "Insane", ], ], @@ -43971,64 +44700,112 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Eight 2x", - "dateCreated": "2025-07-19T17:28:56.968Z", - "dateModified": "2025-07-19T17:28:56.968Z", - "hashShort": "7283e7d621a54391", + "configName": "Block Party Tier One 25x", + "dateCreated": "2025-07-12T16:08:45.446Z", + "dateModified": "2025-07-19T17:28:56.490Z", + "hashShort": "d6687700c67fe3c0", }, { - "category": "Tier 6 (Update)", + "category": "Tier 2", "collection": "Eggs", "configData": { "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Six 5x", + "name": "Block Party Tier Two 5x", "oddsFFlags": { "Huge Chill Parrot": "EggMultiplier_L1", "Huge Splash Angelus": "EggMultiplier_L2", - "Titanic Pineapple Dog": "EggMultiplier_L3V2", }, - "overrideCost": 50, + "overrideCost": 20, "pets": [ [ - "Floatie Cat", - 50, + "Chill Bunny", + 89, ], [ - "Chill Ducky", - 40, + "Chill Sloth", + 9, ], [ - "Chill Turtle", - 10, + "Chill Polar Bear", + 0.5, + "Great", ], [ - "Chill Parrot", - 5, + "Coconut Corgi", + 0.005, + "Insane", ], [ - "Coconut Flamingo", - 1, + "Huge Chill Parrot", + 2.5e-8, + "Insane", ], [ - "Flamingo Cat", - 0.1, + "Huge Splash Angelus", + 5e-11, + "Insane", + ], + ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + "configName": "Block Party Tier Two 5x", + "dateCreated": "2025-07-12T16:08:45.449Z", + "dateModified": "2025-07-19T17:28:56.955Z", + "hashShort": "91af66a15a9202e1", + }, + { + "category": "Tier 1", + "collection": "Eggs", + "configData": { + "currency": "BlockPartyCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Block Party Tier One 1x", + "oddsFFlags": { + "Huge Chill Parrot": "EggMultiplier_L1", + "Huge Splash Angelus": "EggMultiplier_L2", + }, + "overrideCost": 10, + "pets": [ + [ + "Chill Cat", + 90, + ], + [ + "Chill Bunny", + 8, + ], + [ + "Chill Sloth", + 0.5, "Great", ], [ - "Huge Chill Parrot", - 0.000025, + "Chill Polar Bear", + 0.005, "Insane", ], [ - "Huge Splash Angelus", - 5e-8, + "Huge Chill Parrot", + 5e-10, "Insane", ], [ - "Titanic Pineapple Dog", - 6e-7, + "Huge Splash Angelus", + 1e-12, "Insane", ], ], @@ -44045,62 +44822,51 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Six 5x", - "dateCreated": "2025-07-19T17:28:56.974Z", - "dateModified": "2025-07-19T17:28:56.974Z", - "hashShort": "d34d3b461dfc9892", + "configName": "Block Party Tier One 1x", + "dateCreated": "2025-07-12T16:08:45.449Z", + "dateModified": "2025-07-19T17:28:56.489Z", + "hashShort": "ab3bba06019d1afd", }, { - "category": "Tier 7 (Update)", + "category": "Tier 3", "collection": "Eggs", "configData": { "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Seven 1x", + "name": "Block Party Tier Three 2x", "oddsFFlags": { "Huge Chill Parrot": "EggMultiplier_L1", "Huge Splash Angelus": "EggMultiplier_L2", - "Titanic Pineapple Dog": "EggMultiplier_L3V2", }, - "overrideCost": 50, + "overrideCost": 30, "pets": [ [ - "Chill Parrot", - 85, + "Chill Sloth", + 87, ], [ - "Coconut Flamingo", - 13, + "Chill Polar Bear", + 11, ], [ - "Flamingo Cat", + "Coconut Corgi", 0.5, "Great", ], [ - "Flamingo Hippo", + "Coconut Crab", 0.005, "Insane", ], - [ - "Pineapple Dog", - 0.0005, - "Insane", - ], [ "Huge Chill Parrot", - 0.000005, + 1e-7, "Insane", ], [ "Huge Splash Angelus", - 1e-8, - "Insane", - ], - [ - "Titanic Pineapple Dog", - 6e-7, + 2e-10, "Insane", ], ], @@ -44117,62 +44883,62 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Seven 1x", - "dateCreated": "2025-07-19T17:28:56.980Z", - "dateModified": "2025-07-19T17:28:56.980Z", - "hashShort": "5529dee751070fbf", + "configName": "Block Party Tier Three 2x", + "dateCreated": "2025-07-12T16:08:45.452Z", + "dateModified": "2025-07-19T17:28:56.962Z", + "hashShort": "f53d5f8a5f55e47f", }, { - "category": "Tier 8 ( Update)", + "category": "Tier 5", "collection": "Eggs", "configData": { "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Eight 100x", + "name": "Block Party Tier Five 25x", "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1V2", - "Huge Splash Angelus": "EggMultiplier_L2V2", + "Huge Chill Parrot": "EggMultiplier_L1", + "Huge Splash Angelus": "EggMultiplier_L2", "Titanic Pineapple Dog": "EggMultiplier_L3V2", }, "overrideCost": 50, "pets": [ [ - "Coconut Flamingo", + "Floatie Cat", 83, ], [ - "Flamingo Cat", + "Floatie Penguin", 15, ], [ - "Flamingo Hippo", + "Sandcastle Kraken", 0.5, "Great", ], [ - "Pineapple Dog", + "Lifeguard Shark", 0.05, "Great", ], [ - "Beach Ball Capybara", + "Sun Griffin", 0.005, "Insane", ], [ - "Watermelon Golem", + "Splash Angelus", 0.002, "Insane", ], [ "Huge Chill Parrot", - 0.0005, + 0.000125, "Insane", ], [ "Huge Splash Angelus", - 0.000001, + 2.5e-7, "Insane", ], [ @@ -44194,92 +44960,112 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Eight 100x", - "dateCreated": "2025-07-19T17:28:56.980Z", - "dateModified": "2025-07-19T17:28:56.980Z", - "hashShort": "0d21f2ec9590f712", + "configName": "Block Party Tier Five 25x", + "dateCreated": "2025-07-12T16:08:45.454Z", + "dateModified": "2025-07-19T17:28:56.961Z", + "hashShort": "f106d70b07aad83d", }, { - "category": "Update 69", + "category": "Tier 3", "collection": "Eggs", "configData": { - "currency": "FantasyCoins", - "eggNumber": 282, + "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", - "name": "Mystmire Bloom Egg", + "isCustomEgg": true, + "name": "Block Party Tier Three 1x", + "oddsFFlags": { + "Huge Chill Parrot": "EggMultiplier_L1", + "Huge Splash Angelus": "EggMultiplier_L2", + }, + "overrideCost": 30, "pets": [ [ - "Poofy Pixie", - 90, + "Chill Sloth", + 87, ], [ - "Fiddlefern Cat", - 9, + "Chill Polar Bear", + 11, ], [ - "Mushroom Frog", - 1, - "Nice", + "Coconut Corgi", + 0.5, + "Great", + ], + [ + "Coconut Crab", + 0.005, + "Insane", + ], + [ + "Huge Chill Parrot", + 5e-8, + "Insane", + ], + [ + "Huge Splash Angelus", + 1e-10, + "Insane", ], ], - "worldNumber": 4, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "282 | Mystmire Bloom Egg", - "dateCreated": "2025-07-19T17:28:56.998Z", - "dateModified": "2025-07-19T17:28:56.998Z", - "hashShort": "e6adb22165759519", + "configName": "Block Party Tier Three 1x", + "dateCreated": "2025-07-12T16:08:45.455Z", + "dateModified": "2025-07-19T17:28:56.959Z", + "hashShort": "04fd297e06504a06", }, { - "category": "Tier 7 (Update)", + "category": "Tier 4", "collection": "Eggs", "configData": { "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Seven 25x", + "name": "Block Party Tier Four 2x", "oddsFFlags": { "Huge Chill Parrot": "EggMultiplier_L1", "Huge Splash Angelus": "EggMultiplier_L2", - "Titanic Pineapple Dog": "EggMultiplier_L3V2", }, - "overrideCost": 50, + "overrideCost": 69, "pets": [ [ - "Chill Parrot", + "Coconut Crab", 85, ], [ - "Coconut Flamingo", + "Floatie Cat", 13, ], [ - "Flamingo Cat", + "Floatie Penguin", 0.5, "Great", ], [ - "Flamingo Hippo", + "Sandcastle Kraken", 0.005, "Insane", ], - [ - "Pineapple Dog", - 0.0005, - "Insane", - ], [ "Huge Chill Parrot", - 0.000125, + 0.000001, "Insane", ], [ "Huge Splash Angelus", - 2.5e-7, - "Insane", - ], - [ - "Titanic Pineapple Dog", - 6e-7, + 2e-9, "Insane", ], ], @@ -44296,102 +45082,112 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Seven 25x", - "dateCreated": "2025-07-19T17:28:56.983Z", - "dateModified": "2025-07-19T17:28:56.983Z", - "hashShort": "7052c0c2cb5c2b7a", + "configName": "Block Party Tier Four 2x", + "dateCreated": "2025-07-12T16:08:45.455Z", + "dateModified": "2025-07-19T17:28:56.973Z", + "hashShort": "ee3de3646505f6b2", }, { - "category": "Update 69", + "category": "Tier 1", "collection": "Eggs", "configData": { - "currency": "FantasyCoins", - "eggNumber": 284, + "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", - "name": "Faerie Hex Glade Egg", + "isCustomEgg": true, + "name": "Block Party Tier One 5x", + "oddsFFlags": { + "Huge Chill Parrot": "EggMultiplier_L1", + "Huge Splash Angelus": "EggMultiplier_L2", + }, + "overrideCost": 10, "pets": [ [ - "Mushroom Frog", + "Chill Cat", 90, ], [ - "Fairy Grasshopper", - 9, + "Chill Bunny", + 8, ], [ - "Mushroom Dragon", - 1, - "Nice", + "Chill Sloth", + 0.5, + "Great", ], [ - "Petal Pixie", - 0.1, - "Great", + "Chill Polar Bear", + 0.005, + "Insane", + ], + [ + "Huge Chill Parrot", + 2.5e-9, + "Insane", + ], + [ + "Huge Splash Angelus", + 5e-12, + "Insane", ], ], - "worldNumber": 4, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "284 | Faerie Hex Glade Egg", - "dateCreated": "2025-07-19T17:28:56.998Z", - "dateModified": "2025-07-19T17:28:56.998Z", - "hashShort": "179a578500b6d20f", + "configName": "Block Party Tier One 5x", + "dateCreated": "2025-07-12T16:08:45.460Z", + "dateModified": "2025-07-19T17:28:56.489Z", + "hashShort": "9b82c9102a0e29a9", }, { - "category": "Tier 8 ( Update)", + "category": "Tier 2", "collection": "Eggs", "configData": { "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Eight 25x", + "name": "Block Party Tier Two 2x", "oddsFFlags": { "Huge Chill Parrot": "EggMultiplier_L1", "Huge Splash Angelus": "EggMultiplier_L2", - "Titanic Pineapple Dog": "EggMultiplier_L3V2", }, - "overrideCost": 50, + "overrideCost": 20, "pets": [ [ - "Coconut Flamingo", - 83, + "Chill Bunny", + 89, ], [ - "Flamingo Cat", - 15, + "Chill Sloth", + 9, ], [ - "Flamingo Hippo", + "Chill Polar Bear", 0.5, "Great", ], [ - "Pineapple Dog", - 0.05, - "Great", - ], - [ - "Beach Ball Capybara", + "Coconut Corgi", 0.005, "Insane", ], - [ - "Watermelon Golem", - 0.002, - "Insane", - ], [ "Huge Chill Parrot", - 0.000125, + 1e-8, "Insane", ], [ "Huge Splash Angelus", - 2.5e-7, - "Insane", - ], - [ - "Titanic Pineapple Dog", - 6e-7, + 2e-11, "Insane", ], ], @@ -44408,62 +45204,51 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Eight 25x", - "dateCreated": "2025-07-19T17:28:56.985Z", - "dateModified": "2025-07-19T17:28:56.985Z", - "hashShort": "5db81af4ca4ffaa5", + "configName": "Block Party Tier Two 2x", + "dateCreated": "2025-07-12T16:08:45.464Z", + "dateModified": "2025-07-19T17:28:56.485Z", + "hashShort": "71fe7ce54d6ffb64", }, { - "category": "Tier 7 (Update)", + "category": "Tier 2", "collection": "Eggs", "configData": { "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Seven 100x", + "name": "Block Party Tier Two 25x", "oddsFFlags": { - "Huge Chill Parrot": "EggMultiplier_L1V2", - "Huge Splash Angelus": "EggMultiplier_L2V2", - "Titanic Pineapple Dog": "EggMultiplier_L3V2", + "Huge Chill Parrot": "EggMultiplier_L1", + "Huge Splash Angelus": "EggMultiplier_L2", }, - "overrideCost": 50, + "overrideCost": 20, "pets": [ [ - "Chill Parrot", - 85, + "Chill Bunny", + 89, ], [ - "Coconut Flamingo", - 13, + "Chill Sloth", + 9, ], [ - "Flamingo Cat", + "Chill Polar Bear", 0.5, "Great", ], [ - "Flamingo Hippo", + "Coconut Corgi", 0.005, "Insane", ], - [ - "Pineapple Dog", - 0.0005, - "Insane", - ], [ "Huge Chill Parrot", - 0.0005, + 1.25e-7, "Insane", ], [ "Huge Splash Angelus", - 0.000001, - "Insane", - ], - [ - "Titanic Pineapple Dog", - 6e-7, + 2.5e-10, "Insane", ], ], @@ -44480,19 +45265,19 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Seven 100x", - "dateCreated": "2025-07-19T17:28:56.986Z", - "dateModified": "2025-07-19T17:28:56.986Z", - "hashShort": "9c06fbb343fbb0ba", + "configName": "Block Party Tier Two 25x", + "dateCreated": "2025-07-12T16:08:45.464Z", + "dateModified": "2025-07-19T17:28:56.955Z", + "hashShort": "91569d34eb74bbff", }, { - "category": "Tier 7 (Update)", + "category": "Tier 5", "collection": "Eggs", "configData": { "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Block Party Tier Seven 5x", + "name": "Block Party Tier Five 5x", "oddsFFlags": { "Huge Chill Parrot": "EggMultiplier_L1", "Huge Splash Angelus": "EggMultiplier_L2", @@ -44501,26 +45286,31 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "overrideCost": 50, "pets": [ [ - "Chill Parrot", - 85, + "Floatie Cat", + 83, ], [ - "Coconut Flamingo", - 13, + "Floatie Penguin", + 15, ], [ - "Flamingo Cat", + "Sandcastle Kraken", 0.5, "Great", ], [ - "Flamingo Hippo", + "Lifeguard Shark", + 0.05, + "Great", + ], + [ + "Sun Griffin", 0.005, "Insane", ], [ - "Pineapple Dog", - 0.0005, + "Splash Angelus", + 0.002, "Insane", ], [ @@ -44552,289 +45342,433 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Block Party Tier Seven 5x", - "dateCreated": "2025-07-19T17:28:56.988Z", - "dateModified": "2025-07-19T17:28:56.988Z", - "hashShort": "db040371db97197a", + "configName": "Block Party Tier Five 5x", + "dateCreated": "2025-07-12T16:08:45.465Z", + "dateModified": "2025-07-19T17:28:56.962Z", + "hashShort": "e6e2ef6e94d7e766", }, { - "category": "Update 69", + "category": "Tier 4", "collection": "Eggs", "configData": { - "bestEgg": true, - "currency": "FantasyCoins", - "eggNumber": 286, + "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", - "name": "Toadstool Throne Egg", + "isCustomEgg": true, + "name": "Block Party Tier Four 5x", "oddsFFlags": { - "Huge Fiddlefern Cat": "FantasyEggHuge", - "Palace Pooka": "FantasyEggPet2", - "Rose Pooka": "FantasyEggPet1", + "Huge Chill Parrot": "EggMultiplier_L1", + "Huge Splash Angelus": "EggMultiplier_L2", }, + "overrideCost": 40, "pets": [ [ - "Petal Pixie", - 91, + "Coconut Crab", + 85, ], [ - "Blooming Axolotl", - 9.1, + "Floatie Cat", + 13, ], [ - "Rose Pooka", - 0.001, + "Floatie Penguin", + 0.5, + "Great", + ], + [ + "Sandcastle Kraken", + 0.005, "Insane", ], [ - "Palace Pooka", - 0.000025, + "Huge Chill Parrot", + 0.0000025, "Insane", ], [ - "Huge Fiddlefern Cat", - 0.000006, + "Huge Splash Angelus", + 5e-9, "Insane", ], ], - "worldNumber": 4, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "286 | Toadstool Throne Egg", - "dateCreated": "2025-07-19T17:28:56.999Z", - "dateModified": "2025-10-19T02:11:38.956Z", - "hashShort": "58cda5da137c3df3", + "configName": "Block Party Tier Four 5x", + "dateCreated": "2025-07-12T16:08:45.467Z", + "dateModified": "2025-07-19T17:28:56.958Z", + "hashShort": "c60a6493c6171710", }, { - "category": "Update 69", + "category": "Tier 5", "collection": "Eggs", "configData": { - "currency": "FantasyCoins", - "eggNumber": 285, + "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", - "name": "Bloomcourt Terrace Egg", + "isCustomEgg": true, + "name": "Block Party Tier Five 1x", + "oddsFFlags": { + "Huge Chill Parrot": "EggMultiplier_L1", + "Huge Splash Angelus": "EggMultiplier_L2", + "Titanic Pineapple Dog": "EggMultiplier_L3V2", + }, + "overrideCost": 50, "pets": [ [ - "Fairy Grasshopper", - 90, + "Floatie Cat", + 83, ], [ - "Mushroom Dragon", - 9, + "Floatie Penguin", + 15, ], [ - "Petal Pixie", - 1, - "Nice", + "Sandcastle Kraken", + 0.5, + "Great", ], [ - "Blooming Axolotl", - 0.1, + "Lifeguard Shark", + 0.05, "Great", ], + [ + "Sun Griffin", + 0.005, + "Insane", + ], + [ + "Splash Angelus", + 0.002, + "Insane", + ], + [ + "Huge Chill Parrot", + 0.000005, + "Insane", + ], + [ + "Huge Splash Angelus", + 1e-8, + "Insane", + ], + [ + "Titanic Pineapple Dog", + 6e-7, + "Insane", + ], ], - "worldNumber": 4, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "285 | Bloomcourt Terrace Egg", - "dateCreated": "2025-07-19T17:28:56.999Z", - "dateModified": "2025-07-19T17:28:56.999Z", - "hashShort": "df261f3a1048b0ae", + "configName": "Block Party Tier Five 1x", + "dateCreated": "2025-07-12T16:08:45.468Z", + "dateModified": "2025-07-19T17:28:56.967Z", + "hashShort": "f9b83bd22be52691", }, { - "category": "Update 69", + "category": "Tier 2", "collection": "Eggs", "configData": { - "currency": "FantasyCoins", - "eggNumber": 283, + "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", - "name": "Lotus Fenlight Egg", + "isCustomEgg": true, + "name": "Block Party Tier Two 100x", + "oddsFFlags": { + "Huge Chill Parrot": "EggMultiplier_L1V2", + "Huge Splash Angelus": "EggMultiplier_L2V2", + }, + "overrideCost": 20, "pets": [ [ - "Fiddlefern Cat", - 90, + "Chill Bunny", + 89, ], [ - "Mushroom Frog", + "Chill Sloth", 9, ], [ - "Fairy Grasshopper", - 1, - "Nice", + "Chill Polar Bear", + 0.5, + "Great", + ], + [ + "Coconut Corgi", + 0.005, + "Insane", + ], + [ + "Huge Chill Parrot", + 5e-7, + "Insane", + ], + [ + "Huge Splash Angelus", + 1e-9, + "Insane", ], ], - "worldNumber": 4, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "283 | Lotus Fenlight Egg", - "dateCreated": "2025-07-19T17:28:57.000Z", - "dateModified": "2025-07-19T17:28:57.000Z", - "hashShort": "f9af5f69169b957b", + "configName": "Block Party Tier Two 100x", + "dateCreated": "2025-07-12T16:08:45.471Z", + "dateModified": "2025-07-19T17:28:56.956Z", + "hashShort": "3c66c1fbedf2f021", }, { - "category": "Exclusive Eggs", + "category": "Tier 4", "collection": "Eggs", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://89468892055847", - "name": "Exclusive Brainrot Egg", + "currency": "BlockPartyCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Block Party Tier Four 1x", + "oddsFFlags": { + "Huge Chill Parrot": "EggMultiplier_L1", + "Huge Splash Angelus": "EggMultiplier_L2", + }, + "overrideCost": 40, "pets": [ [ - "Cappuccina Brainrot", - 50, - ], - [ - "Patapim Brainrot", - 35, + "Coconut Crab", + 85, ], [ - "Tralala Brainrot", + "Floatie Cat", 13, ], [ - "Huge Cappuccina Brainrot", - 1.5, + "Floatie Penguin", + 0.5, + "Great", ], [ - "Huge Tralala Brainrot", - 0.39, + "Sandcastle Kraken", + 0.005, + "Insane", ], [ - "Titanic Crocodilo Brainrot", - 0.1, + "Huge Chill Parrot", + 5e-7, + "Insane", ], [ - "Gargantuan Cappuccino Brainrot", - 0.01, + "Huge Splash Angelus", + 1e-9, + "Insane", ], ], - "productIds": { - "10 Exclusive Eggs": 3434133761, - "100 Exclusive Eggs": 3434134059, - "3 Exclusive Eggs": 3434133327, - "Exclusive Egg": 3434133167, - }, - "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "shinyChance": 2, }, - "configName": "Exclusive Egg 56", - "dateCreated": "2025-10-19T02:11:38.355Z", - "dateModified": "2025-10-19T02:11:38.355Z", - "hashShort": "9df01b04c75b16d7", + "configName": "Block Party Tier Four 1x", + "dateCreated": "2025-07-12T16:08:45.469Z", + "dateModified": "2025-07-19T17:28:56.976Z", + "hashShort": "ac72cd4412add2c0", }, { - "category": "Exclusive Eggs", + "category": "Tier 4", "collection": "Eggs", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://103334132797001", - "name": "Exclusive Harvest Egg", + "currency": "BlockPartyCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Block Party Tier Four 25x", + "oddsFFlags": { + "Huge Chill Parrot": "EggMultiplier_L1", + "Huge Splash Angelus": "EggMultiplier_L2", + }, + "overrideCost": 40, "pets": [ [ - "Honey Bear", - 50, + "Coconut Crab", + 85, ], [ - "Molten Pumpkin Cat", - 35, + "Floatie Cat", + 13, ], [ - "Leafstorm Wolf", + "Floatie Penguin", + 0.5, + "Great", + ], + [ + "Sandcastle Kraken", + 0.005, + "Insane", + ], + [ + "Huge Chill Parrot", + 0.0000125, + "Insane", + ], + [ + "Huge Splash Angelus", + 2.5e-8, + "Insane", + ], + ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + "configName": "Block Party Tier Four 25x", + "dateCreated": "2025-07-12T16:08:45.471Z", + "dateModified": "2025-07-19T17:28:56.967Z", + "hashShort": "b8c3a53838100bc4", + }, + { + "category": "Tier 4", + "collection": "Eggs", + "configData": { + "currency": "BlockPartyCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Block Party Tier Four 100x", + "oddsFFlags": { + "Huge Chill Parrot": "EggMultiplier_L1V2", + "Huge Splash Angelus": "EggMultiplier_L2V2", + }, + "overrideCost": 40, + "pets": [ + [ + "Coconut Crab", + 85, + ], + [ + "Floatie Cat", 13, ], [ - "Huge Honey Bear", - 1.5, + "Floatie Penguin", + 0.5, + "Great", ], [ - "Huge Leafstorm Wolf", - 0.39, + "Sandcastle Kraken", + 0.005, + "Insane", ], [ - "Titanic Spirit Mushroom", - 0.1, + "Huge Chill Parrot", + 0.00005, + "Insane", ], [ - "Gargantuan Evil Scarecrow Pumpkin", - 0.01, + "Huge Splash Angelus", + 1e-7, + "Insane", ], ], - "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "shinyChance": 2, }, - "configName": "Exclusive Egg 57", - "dateCreated": "2025-11-22T17:15:29.203Z", - "dateModified": "2025-12-20T17:55:31.636Z", - "hashShort": "5fa1d7a25b3012ae", + "configName": "Block Party Tier Four 100x", + "dateCreated": "2025-07-12T16:08:45.475Z", + "dateModified": "2025-07-19T17:28:56.963Z", + "hashShort": "c10a50e3bf61c1ba", }, { - "category": "Thanksgiving", + "category": "Tier 2", "collection": "Eggs", "configData": { - "currency": "Diamonds", - "disableModifiers": true, + "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Autumn Egg", + "name": "Block Party Tier Two 1x", "oddsFFlags": { - "Gargantuan Leafy Deer": "TGE_G", - "Huge Strawhat Tanuki": "TGE_H", - "Titanic Persimmony Cricket": "TGE_T", + "Huge Chill Parrot": "EggMultiplier_L1", + "Huge Splash Angelus": "EggMultiplier_L2", }, - "overrideCost": 2000, + "overrideCost": 20, "pets": [ [ - "Persimmony Cricket", - 97.98959592, + "Chill Bunny", + 89, ], [ - "Strawhat Tanuki", - 2, + "Chill Sloth", + 9, ], [ - "Cinnamon Bunny", - 0.01, + "Chill Polar Bear", + 0.5, + "Great", ], [ - "Huge Strawhat Tanuki", - 0.0004, + "Coconut Corgi", + 0.005, "Insane", ], [ - "Titanic Persimmony Cricket", - 0.000004, + "Huge Chill Parrot", + 5e-9, "Insane", ], [ - "Gargantuan Leafy Deer", - 8e-8, + "Huge Splash Angelus", + 1e-11, "Insane", ], ], @@ -44851,46 +45785,67 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Autumn Egg", - "dateCreated": "2025-11-22T17:15:30.307Z", - "dateModified": "2025-12-07T23:02:17.522Z", - "hashShort": "556aa1087e44255d", + "configName": "Block Party Tier Two 1x", + "dateCreated": "2025-07-12T16:08:45.472Z", + "dateModified": "2025-07-19T17:28:56.484Z", + "hashShort": "33f9837f12b7c6fb", }, { - "category": "Thanksgiving", + "category": "Tier 5", "collection": "Eggs", "configData": { - "currency": "Diamonds", - "disableModifiers": true, + "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Apple Egg", + "name": "Block Party Tier Five 100x", "oddsFFlags": { - "Huge Strawhat Tanuki": "TGE_H", - "Titanic Persimmony Cricket": "TGE_T", + "Huge Chill Parrot": "EggMultiplier_L1V2", + "Huge Splash Angelus": "EggMultiplier_L2V2", + "Titanic Pineapple Dog": "EggMultiplier_L3V2", }, - "overrideCost": 200, + "overrideCost": 50, "pets": [ [ - "Chesnut Chipmunk", - 94.8999596, + "Floatie Cat", + 83, ], [ - "Persimmony Cricket", - 5, + "Floatie Penguin", + 15, ], [ - "Strawhat Tanuki", - 0.1, + "Sandcastle Kraken", + 0.5, + "Great", ], [ - "Huge Strawhat Tanuki", - 0.00004, + "Lifeguard Shark", + 0.05, + "Great", + ], + [ + "Sun Griffin", + 0.005, "Insane", ], [ - "Titanic Persimmony Cricket", - 4e-7, + "Splash Angelus", + 0.002, + "Insane", + ], + [ + "Huge Chill Parrot", + 0.0005, + "Insane", + ], + [ + "Huge Splash Angelus", + 0.000001, + "Insane", + ], + [ + "Titanic Pineapple Dog", + 6e-7, "Insane", ], ], @@ -44907,56 +45862,67 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Apple Egg", - "dateCreated": "2025-11-22T17:15:30.309Z", - "dateModified": "2025-12-07T23:02:17.513Z", - "hashShort": "9ff1e90372e6cde7", + "configName": "Block Party Tier Five 100x", + "dateCreated": "2025-07-12T16:08:45.473Z", + "dateModified": "2025-07-19T17:28:56.978Z", + "hashShort": "2ef2897c938a18e8", }, { - "category": "Thanksgiving", + "category": "Tier 5", "collection": "Eggs", "configData": { - "currency": "Diamonds", - "disableModifiers": true, + "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Scarecrow Egg", + "name": "Block Party Tier Five 2x", "oddsFFlags": { - "Gargantuan Leafy Deer": "TGE_G", - "Huge Maple Owl": "TGE_H", - "Titanic Persimmony Cricket": "TGE_T", + "Huge Chill Parrot": "EggMultiplier_L1", + "Huge Splash Angelus": "EggMultiplier_L2", + "Titanic Pineapple Dog": "EggMultiplier_L3V2", }, - "overrideCost": 20000, + "overrideCost": 50, "pets": [ [ - "Strawhat Tanuki", - 97.8859592, + "Floatie Cat", + 83, ], [ - "Cinnamon Bunny", - 2, + "Floatie Penguin", + 15, ], [ - "Maple Owl", - 0.1, + "Sandcastle Kraken", + 0.5, + "Great", ], [ - "Leafy Deer", - 0.01, + "Lifeguard Shark", + 0.05, + "Great", ], [ - "Huge Maple Owl", - 0.004, + "Sun Griffin", + 0.005, "Insane", ], [ - "Titanic Persimmony Cricket", - 0.00004, + "Splash Angelus", + 0.002, "Insane", ], [ - "Gargantuan Leafy Deer", - 8e-7, + "Huge Chill Parrot", + 0.00001, + "Insane", + ], + [ + "Huge Splash Angelus", + 2e-8, + "Insane", + ], + [ + "Titanic Pineapple Dog", + 6e-7, "Insane", ], ], @@ -44973,118 +45939,202 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Scarecrow Egg", - "dateCreated": "2025-11-22T17:15:30.323Z", - "dateModified": "2025-12-07T23:02:17.537Z", - "hashShort": "1fdc5690bf60695c", + "configName": "Block Party Tier Five 2x", + "dateCreated": "2025-07-12T16:08:45.479Z", + "dateModified": "2025-07-19T17:28:56.954Z", + "hashShort": "f48dc3769ff7d234", }, { - "category": "Exclusive Eggs", + "category": "Tier 1", "collection": "Eggs", "configData": { - "disableGold": true, - "disableModifiers": true, - "disableRainbow": false, - "goldChance": 0, - "icon": "rbxassetid://135060964483981", - "name": "Exclusive Ice Cube Egg", + "currency": "BlockPartyCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Block Party Tier One 100x", + "oddsFFlags": { + "Huge Chill Parrot": "EggMultiplier_L1V2", + "Huge Splash Angelus": "EggMultiplier_L2V2", + }, + "overrideCost": 10, "pets": [ [ - "Ice Cube Penguin", + "Chill Cat", + 90, + ], + [ + "Chill Bunny", + 8, + ], + [ + "Chill Sloth", + 0.5, + "Great", + ], + [ + "Chill Polar Bear", + 0.005, + "Insane", + ], + [ + "Huge Chill Parrot", + 5e-8, + "Insane", + ], + [ + "Huge Splash Angelus", + 1e-10, + "Insane", + ], + ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + "configName": "Block Party Tier One 100x", + "dateCreated": "2025-07-12T16:08:45.483Z", + "dateModified": "2025-07-19T17:28:56.486Z", + "hashShort": "1e7da05e24d7f5b8", + }, + { + "category": "Tier 6 (Update)", + "collection": "Eggs", + "configData": { + "currency": "BlockPartyCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Block Party Tier Six 1x", + "oddsFFlags": { + "Huge Chill Parrot": "EggMultiplier_L1", + "Huge Splash Angelus": "EggMultiplier_L2", + "Titanic Pineapple Dog": "EggMultiplier_L3V2", + }, + "overrideCost": 50, + "pets": [ + [ + "Floatie Cat", 50, ], [ - "Snowflake Lattice Tiger", - 35, + "Chill Ducky", + 40, ], [ - "Sleigh Axolotl", - 13, + "Chill Turtle", + 10, ], [ - "Huge Ice Cube Penguin", - 1.5, + "Chill Parrot", + 5, ], [ - "Huge Sleigh Axolotl", - 0.39, + "Coconut Flamingo", + 1, ], [ - "Titanic Snow Globe Snowman", + "Flamingo Cat", 0.1, + "Great", ], [ - "Gargantuan Cookie Cut Cat", - 0.01, + "Huge Chill Parrot", + 0.000005, + "Insane", + ], + [ + "Huge Splash Angelus", + 1e-8, + "Insane", + ], + [ + "Titanic Pineapple Dog", + 6e-7, + "Insane", ], ], - "productIds": { - "10 Exclusive Eggs": 3484124665, - "100 Exclusive Eggs": 3484124857, - "3 Exclusive Eggs": 3484125002, - "Exclusive Egg": 3484125064, - }, - "rainbowChance": 2, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "shinyChance": 2, }, - "configName": "Exclusive Egg 58", - "dateCreated": "2025-12-20T17:55:31.639Z", - "dateModified": "2025-12-20T17:55:31.639Z", - "hashShort": "a0613cc61a5e8419", + "configName": "Block Party Tier Six 1x", + "dateCreated": "2025-07-19T17:28:56.954Z", + "dateModified": "2025-07-19T17:28:56.954Z", + "hashShort": "6bed05c0296d7047", }, { - "category": "Christmas2025", + "category": "Tier 8 ( Update)", "collection": "Eggs", "configData": { - "currency": "GingerbreadCoins2", - "extraPetsClient": null, - "extraPetsServer": null, + "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Candy Cane Egg", + "name": "Block Party Tier Eight 1x", "oddsFFlags": { - "Huge Merry Mule": "EggMultiplier_Christmas1", - "Huge Pajamas Shark": "EggMultiplier_Christmas2", + "Huge Chill Parrot": "EggMultiplier_L1", + "Huge Splash Angelus": "EggMultiplier_L2", + "Titanic Pineapple Dog": "EggMultiplier_L3V2", }, - "overrideCost": 200, + "overrideCost": 50, "pets": [ [ - "Festive Bunny", - 90, + "Coconut Flamingo", + 83, ], [ - "Pajamas Shark", - 9.996796, + "Flamingo Cat", + 15, ], [ - "Hot Cocoa Cow", - 0.05, + "Flamingo Hippo", + 0.5, + "Great", ], [ - "Holly Capybara", - 0.03, + "Pineapple Dog", + 0.05, "Great", ], [ - "Lit Loris", - 0.003, + "Beach Ball Capybara", + 0.005, "Insane", ], [ - "Huge Merry Mule", - 0.00001, + "Watermelon Golem", + 0.002, + "Insane", + ], + [ + "Huge Chill Parrot", + 0.000005, + "Insane", + ], + [ + "Huge Splash Angelus", + 1e-8, + "Insane", + ], + [ + "Titanic Pineapple Dog", + 6e-7, "Insane", ], ], @@ -45101,54 +46151,67 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Candy Cane Egg", - "dateCreated": "2025-12-20T17:55:34.684Z", - "dateModified": "2025-12-20T17:55:34.684Z", - "hashShort": "b772e906a3f64efa", + "configName": "Block Party Tier Eight 1x", + "dateCreated": "2025-07-19T17:28:56.954Z", + "dateModified": "2025-07-19T17:28:56.954Z", + "hashShort": "70f91a8f481ae80c", }, { - "category": "Christmas2025", + "category": "Tier 8 ( Update)", "collection": "Eggs", "configData": { - "currency": "GingerbreadCoins2", - "extraPetsClient": null, - "extraPetsServer": null, + "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Icy Egg", + "name": "Block Party Tier Eight 5x", "oddsFFlags": { - "Hippomint": "EggMultiplier_Christmas5", - "Huge Merry Mule": "EggMultiplier_Christmas1", - "Huge Pajamas Shark": "EggMultiplier_Christmas2", - "Snowflake Dragon": "EggMultiplier_Christmas4", + "Huge Chill Parrot": "EggMultiplier_L1", + "Huge Splash Angelus": "EggMultiplier_L2", + "Titanic Pineapple Dog": "EggMultiplier_L3V2", }, - "overrideCost": 300, + "overrideCost": 50, "pets": [ [ - "Hot Cocoa Cow", - 90, + "Coconut Flamingo", + 83, ], [ - "Evergreen Unicorn", - 9.886796, + "Flamingo Cat", + 15, ], [ - "Deerserker", - 0.05, + "Flamingo Hippo", + 0.5, + "Great", ], [ - "Snowflake Dragon", - 0.003, + "Pineapple Dog", + 0.05, "Great", ], [ - "Hippomint", - 0.0003, + "Beach Ball Capybara", + 0.005, "Insane", ], [ - "Huge Merry Mule", - 0.00001, + "Watermelon Golem", + 0.002, + "Insane", + ], + [ + "Huge Chill Parrot", + 0.000025, + "Insane", + ], + [ + "Huge Splash Angelus", + 5e-8, + "Insane", + ], + [ + "Titanic Pineapple Dog", + 6e-7, "Insane", ], ], @@ -45165,56 +46228,64 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Icy Egg", - "dateCreated": "2025-12-20T17:55:34.691Z", - "dateModified": "2025-12-20T17:55:34.691Z", - "hashShort": "e71091cc6b05f61c", + "configName": "Block Party Tier Eight 5x", + "dateCreated": "2025-07-19T17:28:56.961Z", + "dateModified": "2025-07-19T17:28:56.961Z", + "hashShort": "4c2df6bc733e8d33", }, { - "category": "Christmas2025", + "category": "Tier 7 (Update)", "collection": "Eggs", "configData": { - "currency": "GingerbreadCoins2", - "extraPetsClient": null, - "extraPetsServer": null, + "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Ornament Egg", + "name": "Block Party Tier Seven 2x", "oddsFFlags": { - "Candycane Kitsune": "EggMultiplier_Christmas5", - "Holiday Owl": "EggMultiplier_Christmas4", - "Huge Merry Mule": "EggMultiplier_Christmas1", - "Huge Pajamas Shark": "EggMultiplier_Christmas2", + "Huge Chill Parrot": "EggMultiplier_L1", + "Huge Splash Angelus": "EggMultiplier_L2", + "Titanic Pineapple Dog": "EggMultiplier_L3V2", }, - "overrideCost": 500, + "overrideCost": 50, "pets": [ [ - "Holly Capybara", - 90, + "Chill Parrot", + 85, ], [ - "Evergreen Unicorn", - 9.886796, + "Coconut Flamingo", + 13, ], [ - "Deerserker", - 0.05, + "Flamingo Cat", + 0.5, + "Great", ], [ - "Holiday Owl", - 0.003, - "Great", + "Flamingo Hippo", + 0.005, + "Insane", ], [ - "Candycane Kitsune", - 0.0003, + "Pineapple Dog", + 0.0005, "Insane", ], [ - "Huge Merry Mule", + "Huge Chill Parrot", 0.00001, "Insane", ], + [ + "Huge Splash Angelus", + 2e-8, + "Insane", + ], + [ + "Titanic Pineapple Dog", + 6e-7, + "Insane", + ], ], "rarity": { "Announce": true, @@ -45229,54 +46300,64 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "3 | Ornament Egg", - "dateCreated": "2025-12-20T17:55:34.692Z", - "dateModified": "2025-12-20T17:55:34.692Z", - "hashShort": "8b377e56a3168726", + "configName": "Block Party Tier Seven 2x", + "dateCreated": "2025-07-19T17:28:56.963Z", + "dateModified": "2025-07-19T17:28:56.963Z", + "hashShort": "63b75137103d507d", }, { - "category": "Christmas2025", + "category": "Tier 6 (Update)", "collection": "Eggs", "configData": { - "currency": "GingerbreadCoins2", - "extraPetsClient": null, - "extraPetsServer": null, + "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Sudoku Egg", + "name": "Block Party Tier Six 25x", "oddsFFlags": { - "Huge Festive Walrus": "EggMultiplier_ChristmasSudoku", - "Huge Pajamas Shark": "EggMultiplier_Christmas2", - "Krampus": "EggMultiplier_Christmas5", - "Merry Mule": "EggMultiplier_Christmas4", + "Huge Chill Parrot": "EggMultiplier_L1", + "Huge Splash Angelus": "EggMultiplier_L2", + "Titanic Pineapple Dog": "EggMultiplier_L3V2", }, - "overrideCost": 500, + "overrideCost": 50, "pets": [ [ - "Hot Cocoa Cow", - 90, + "Floatie Cat", + 50, ], [ - "Holly Capybara", - 9.996796, + "Chill Ducky", + 40, ], [ - "Lit Loris", - 0.05, + "Chill Turtle", + 10, ], [ - "Merry Mule", - 0.03, + "Chill Parrot", + 5, + ], + [ + "Coconut Flamingo", + 1, + ], + [ + "Flamingo Cat", + 0.1, "Great", ], [ - "Krampus", - 0.003, + "Huge Chill Parrot", + 0.000125, "Insane", ], [ - "Huge Festive Walrus", - 0.00001, + "Huge Splash Angelus", + 2.5e-7, + "Insane", + ], + [ + "Titanic Pineapple Dog", + 6e-7, "Insane", ], ], @@ -45293,54 +46374,64 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "Sudoku Egg", - "dateCreated": "2025-12-20T17:55:34.695Z", - "dateModified": "2025-12-20T17:55:34.695Z", - "hashShort": "ae034d7b5df2c15b", + "configName": "Block Party Tier Six 25x", + "dateCreated": "2025-07-19T17:28:56.964Z", + "dateModified": "2025-07-19T17:28:56.964Z", + "hashShort": "a7bb5651e1fd7ef9", }, { - "category": "Christmas2025", + "category": "Tier 6 (Update)", "collection": "Eggs", "configData": { - "currency": "GingerbreadCoins2", - "extraPetsClient": null, - "extraPetsServer": null, + "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Pine Tree Egg", + "name": "Block Party Tier Six 100x", "oddsFFlags": { - "Elf Golem": "EggMultiplier_Christmas5", - "Gingerbread Angelus": "EggMultiplier_Christmas4", - "Huge Merry Mule": "EggMultiplier_Christmas1", - "Huge Pajamas Shark": "EggMultiplier_Christmas2", + "Huge Chill Parrot": "EggMultiplier_L1V2", + "Huge Splash Angelus": "EggMultiplier_L2V2", + "Titanic Pineapple Dog": "EggMultiplier_L3V2", }, - "overrideCost": 800, + "overrideCost": 50, "pets": [ [ - "Lit Loris", - 90, + "Floatie Cat", + 50, ], [ - "Evergreen Unicorn", - 9.886796, + "Chill Ducky", + 40, ], [ - "Deerserker", - 0.05, + "Chill Turtle", + 10, ], [ - "Gingerbread Angelus", - 0.003, + "Chill Parrot", + 5, + ], + [ + "Coconut Flamingo", + 1, + ], + [ + "Flamingo Cat", + 0.1, "Great", ], [ - "Elf Golem", - 0.0003, + "Huge Chill Parrot", + 0.0005, "Insane", ], [ - "Huge Merry Mule", - 0.00001, + "Huge Splash Angelus", + 0.000001, + "Insane", + ], + [ + "Titanic Pineapple Dog", + 6e-7, "Insane", ], ], @@ -45357,54 +46448,64 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Pine Tree Egg", - "dateCreated": "2025-12-20T17:55:34.696Z", - "dateModified": "2025-12-20T17:55:34.696Z", - "hashShort": "4a5b39361b0bae8f", + "configName": "Block Party Tier Six 100x", + "dateCreated": "2025-07-19T17:28:56.965Z", + "dateModified": "2025-07-19T17:28:56.965Z", + "hashShort": "8894c0c66ef59ffc", }, { - "category": "Christmas2025", + "category": "Tier 6 (Update)", "collection": "Eggs", "configData": { - "currency": "GingerbreadCoins2", - "extraPetsClient": null, - "extraPetsServer": null, + "currency": "BlockPartyCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Present Egg", + "name": "Block Party Tier Six 2x", "oddsFFlags": { - "Huge Candycane Kitsune": "EggMultiplier_Christmas3", - "Huge Pajamas Shark": "EggMultiplier_Christmas2", - "Krampus": "EggMultiplier_Christmas5", - "Merry Mule": "EggMultiplier_Christmas4", + "Huge Chill Parrot": "EggMultiplier_L1", + "Huge Splash Angelus": "EggMultiplier_L2", + "Titanic Pineapple Dog": "EggMultiplier_L3V2", }, - "overrideCost": 400, + "overrideCost": 50, "pets": [ [ - "Hot Cocoa Cow", - 90, + "Floatie Cat", + 50, ], [ - "Holly Capybara", - 9.996796, + "Chill Ducky", + 40, ], [ - "Lit Loris", - 0.05, + "Chill Turtle", + 10, ], [ - "Merry Mule", - 0.03, + "Chill Parrot", + 5, + ], + [ + "Coconut Flamingo", + 1, + ], + [ + "Flamingo Cat", + 0.1, "Great", ], [ - "Krampus", - 0.003, + "Huge Chill Parrot", + 0.00001, "Insane", ], [ - "Huge Candycane Kitsune", - 0.00001, + "Huge Splash Angelus", + 2e-8, + "Insane", + ], + [ + "Titanic Pineapple Dog", + 6e-7, "Insane", ], ], @@ -45421,7369 +46522,5191 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Present Egg", - "dateCreated": "2025-12-20T17:55:34.701Z", - "dateModified": "2025-12-20T17:55:34.701Z", - "hashShort": "25028c3194e75513", + "configName": "Block Party Tier Six 2x", + "dateCreated": "2025-07-19T17:28:56.966Z", + "dateModified": "2025-07-19T17:28:56.966Z", + "hashShort": "1e13e7ac775d1ff9", }, - ], - "status": "ok", -} -`; - -exports[`Pet Simulator Public Live API Test Enchants shape 1`] = ` -{ - "data": [ { - "category": "Enchants", - "collection": "Enchants", + "category": "Tier 8 ( Update)", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 336, - "EmpoweredBoost": 40, - "MaxTier": 10, - "PageIcon": "rbxassetid://13824100032", - "Tiers": [ - { - "Desc": "Increases the strength of your pets by 15%!", - "DisplayName": "Strong Pets I", - "Icon": "rbxassetid://15030239929", - "Power": 15, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - }, - { - "Desc": "Increases the strength of your pets by 25%!", - "DisplayName": "Strong Pets II", - "Icon": "rbxassetid://15030239753", - "Power": 25, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - }, - { - "Desc": "Increases the strength of your pets by 40%!", - "DisplayName": "Strong Pets III", - "Icon": "rbxassetid://15030239649", - "Power": 40, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, - }, - }, - { - "Desc": "Increases the strength of your pets by 60%!", - "DisplayName": "Strong Pets IV", - "Icon": "rbxassetid://15030239477", - "Power": 60, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - }, - { - "Desc": "Increases the strength of your pets by 75%!", - "DisplayName": "Strong Pets V", - "Icon": "rbxassetid://15030239264", - "Power": 75, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - }, - { - "Desc": "Increases the strength of your pets by 90%!", - "DisplayName": "Strong Pets VI", - "Icon": "rbxassetid://15696986509", - "Power": 90, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - }, - { - "Desc": "Increases the strength of your pets by 105%!", - "DisplayName": "Strong Pets VII", - "Icon": "rbxassetid://15801600870", - "Power": 105, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, - }, - }, - { - "Desc": "Increases the strength of your pets by 120%!", - "DisplayName": "Strong Pets VIII", - "Icon": "rbxassetid://16318190917", - "Power": 120, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, - }, - }, - { - "Desc": "Increases the strength of your pets by 135%!", - "DisplayName": "Strong Pets IX", - "Icon": "rbxassetid://16888547248", - "Power": 135, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, - { - "Desc": "Increases the strength of your pets by 140%!", - "DisplayName": "Strong Pets X", - "Icon": "rbxassetid://93291705199169", - "Power": 140, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, + "currency": "BlockPartyCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Block Party Tier Eight 2x", + "oddsFFlags": { + "Huge Chill Parrot": "EggMultiplier_L1", + "Huge Splash Angelus": "EggMultiplier_L2", + "Titanic Pineapple Dog": "EggMultiplier_L3V2", + }, + "overrideCost": 50, + "pets": [ + [ + "Coconut Flamingo", + 83, + ], + [ + "Flamingo Cat", + 15, + ], + [ + "Flamingo Hippo", + 0.5, + "Great", + ], + [ + "Pineapple Dog", + 0.05, + "Great", + ], + [ + "Beach Ball Capybara", + 0.005, + "Insane", + ], + [ + "Watermelon Golem", + 0.002, + "Insane", + ], + [ + "Huge Chill Parrot", + 0.00001, + "Insane", + ], + [ + "Huge Splash Angelus", + 2e-8, + "Insane", + ], + [ + "Titanic Pineapple Dog", + 6e-7, + "Insane", + ], ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "Enchant | Strong Pets", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.137Z", - "hashShort": "d1ae0cab90f00de1", + "configName": "Block Party Tier Eight 2x", + "dateCreated": "2025-07-19T17:28:56.968Z", + "dateModified": "2025-07-19T17:28:56.968Z", + "hashShort": "7283e7d621a54391", }, { - "category": "Enchants", - "collection": "Enchants", + "category": "Tier 6 (Update)", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 27.200000000000003, - "EmpoweredBoost": 25, - "MaxTier": 10, - "PageIcon": "rbxassetid://13824100032", - "Tiers": [ - { - "Desc": "2% chance your pet inflicts a critical hit (5x damage)!", - "DisplayName": "Criticals I", - "Icon": "rbxassetid://15030243121", - "Power": 2, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - }, - { - "Desc": "4% chance your pet inflicts a critical hit (5x damage)!", - "DisplayName": "Criticals II", - "Icon": "rbxassetid://15030243011", - "Power": 4, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - }, - { - "Desc": "7% chance your pet inflicts a critical hit (5x damage)!", - "DisplayName": "Criticals III", - "Icon": "rbxassetid://15030242864", - "Power": 7, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, - }, - }, - { - "Desc": "11% chance your pet inflicts a critical hit (5x damage)!", - "DisplayName": "Criticals IV", - "Icon": "rbxassetid://15030242716", - "Power": 11, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - }, - { - "Desc": "14% chance your pet inflicts a critical hit (5x damage)!", - "DisplayName": "Criticals V", - "Icon": "rbxassetid://15030242482", - "Power": 14, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - }, - { - "Desc": "17% chance your pet inflicts a critical hit (5x damage)!", - "DisplayName": "Criticals VI", - "Icon": "rbxassetid://15696962297", - "Power": 17, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - }, - { - "Desc": "20% chance your pet inflicts a critical hit (5x damage)!", - "DisplayName": "Criticals VII", - "Icon": "rbxassetid://15801601919", - "Power": 20, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, - }, - }, - { - "Desc": "23% chance your pet inflicts a critical hit (5x damage)!", - "DisplayName": "Criticals VIII", - "Icon": "rbxassetid://16318191964", - "Power": 23, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, - }, - }, - { - "Desc": "26% chance your pet inflicts a critical hit (5x damage)!", - "DisplayName": "Criticals IX", - "Icon": "rbxassetid://16888547469", - "Power": 26, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, - { - "Desc": "29% chance your pet inflicts a critical hit (5x damage)!", - "DisplayName": "Criticals X", - "Icon": "rbxassetid://127022719765452", - "Power": 29, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, + "currency": "BlockPartyCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Block Party Tier Six 5x", + "oddsFFlags": { + "Huge Chill Parrot": "EggMultiplier_L1", + "Huge Splash Angelus": "EggMultiplier_L2", + "Titanic Pineapple Dog": "EggMultiplier_L3V2", + }, + "overrideCost": 50, + "pets": [ + [ + "Floatie Cat", + 50, + ], + [ + "Chill Ducky", + 40, + ], + [ + "Chill Turtle", + 10, + ], + [ + "Chill Parrot", + 5, + ], + [ + "Coconut Flamingo", + 1, + ], + [ + "Flamingo Cat", + 0.1, + "Great", + ], + [ + "Huge Chill Parrot", + 0.000025, + "Insane", + ], + [ + "Huge Splash Angelus", + 5e-8, + "Insane", + ], + [ + "Titanic Pineapple Dog", + 6e-7, + "Insane", + ], ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "Enchant | Criticals", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.152Z", - "hashShort": "2a5d18872b5a9037", + "configName": "Block Party Tier Six 5x", + "dateCreated": "2025-07-19T17:28:56.974Z", + "dateModified": "2025-07-19T17:28:56.974Z", + "hashShort": "d34d3b461dfc9892", }, { - "category": "Enchants", - "collection": "Enchants", + "category": "Tier 7 (Update)", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 160, - "EmpoweredBoost": 50, - "MaxTier": 5, - "PageIcon": "rbxassetid://13824100032", - "Tiers": [ - { - "Desc": "Increases player and pet speed by 25%!", - "DisplayName": "Speed I", - "Icon": "rbxassetid://15030237790", - "Power": 25, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - }, - { - "Desc": "Increases player and pet speed by 40%!", - "DisplayName": "Speed II", - "Icon": "rbxassetid://15030237682", - "Power": 40, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - }, - { - "Desc": "Increases player and pet speed by 55%!", - "DisplayName": "Speed III", - "Icon": "rbxassetid://15030237571", - "Power": 55, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, - }, - }, - { - "Desc": "Increases player and pet speed by 70%!", - "DisplayName": "Speed IV", - "Icon": "rbxassetid://15030237474", - "Power": 70, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - }, - { - "Desc": "Increases player and pet speed by 100%!", - "DisplayName": "Speed V", - "Icon": "rbxassetid://15030237367", - "Power": 100, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - }, + "currency": "BlockPartyCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Block Party Tier Seven 1x", + "oddsFFlags": { + "Huge Chill Parrot": "EggMultiplier_L1", + "Huge Splash Angelus": "EggMultiplier_L2", + "Titanic Pineapple Dog": "EggMultiplier_L3V2", + }, + "overrideCost": 50, + "pets": [ + [ + "Chill Parrot", + 85, + ], + [ + "Coconut Flamingo", + 13, + ], + [ + "Flamingo Cat", + 0.5, + "Great", + ], + [ + "Flamingo Hippo", + 0.005, + "Insane", + ], + [ + "Pineapple Dog", + 0.0005, + "Insane", + ], + [ + "Huge Chill Parrot", + 0.000005, + "Insane", + ], + [ + "Huge Splash Angelus", + 1e-8, + "Insane", + ], + [ + "Titanic Pineapple Dog", + 6e-7, + "Insane", + ], ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "Enchant | Walkspeed", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.151Z", - "hashShort": "d1ce8a39f5f8096e", + "configName": "Block Party Tier Seven 1x", + "dateCreated": "2025-07-19T17:28:56.980Z", + "dateModified": "2025-07-19T17:28:56.980Z", + "hashShort": "5529dee751070fbf", }, { - "category": "Enchants", - "collection": "Enchants", + "category": "Tier 8 ( Update)", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 2160, - "EmpoweredBoost": 100, - "MaxTier": 10, - "PageIcon": "rbxassetid://13824100032", - "Tiers": [ - { - "Desc": "Increases your tap power by 25%!", - "DisplayName": "Tap Power I", - "Icon": "rbxassetid://15030239092", - "Power": 25, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - }, - { - "Desc": "Increases your tap power by 50%!", - "DisplayName": "Tap Power II", - "Icon": "rbxassetid://15030238976", - "Power": 50, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - }, - { - "Desc": "Increases your tap power by 100%!", - "DisplayName": "Tap Power III", - "Icon": "rbxassetid://15030238822", - "Power": 100, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, - }, - }, - { - "Desc": "Increases your tap power by 200%!", - "DisplayName": "Tap Power IV", - "Icon": "rbxassetid://15030238646", - "Power": 200, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - }, - { - "Desc": "Increases your tap power by 400%!", - "DisplayName": "Tap Power V", - "Icon": "rbxassetid://15030238497", - "Power": 400, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - }, - { - "Desc": "Increases your tap power by 500%!", - "DisplayName": "Tap Power VI", - "Icon": "rbxassetid://15696961637", - "Power": 500, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - }, - { - "Desc": "Increases your tap power by 600%!", - "DisplayName": "Tap Power VII", - "Icon": "rbxassetid://15801600712", - "Power": 600, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, - }, - }, - { - "Desc": "Increases your tap power by 700%!", - "DisplayName": "Tap Power VIII", - "Icon": "rbxassetid://16318190735", - "Power": 700, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, - }, - }, - { - "Desc": "Increases your tap power by 800%!", - "DisplayName": "Tap Power IX", - "Icon": "rbxassetid://16888547174", - "Power": 800, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, - { - "Desc": "Increases your tap power by 900%!", - "DisplayName": "Tap Power X", - "Icon": "rbxassetid://130430035493945", - "Power": 900, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, + "currency": "BlockPartyCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Block Party Tier Eight 100x", + "oddsFFlags": { + "Huge Chill Parrot": "EggMultiplier_L1V2", + "Huge Splash Angelus": "EggMultiplier_L2V2", + "Titanic Pineapple Dog": "EggMultiplier_L3V2", + }, + "overrideCost": 50, + "pets": [ + [ + "Coconut Flamingo", + 83, + ], + [ + "Flamingo Cat", + 15, + ], + [ + "Flamingo Hippo", + 0.5, + "Great", + ], + [ + "Pineapple Dog", + 0.05, + "Great", + ], + [ + "Beach Ball Capybara", + 0.005, + "Insane", + ], + [ + "Watermelon Golem", + 0.002, + "Insane", + ], + [ + "Huge Chill Parrot", + 0.0005, + "Insane", + ], + [ + "Huge Splash Angelus", + 0.000001, + "Insane", + ], + [ + "Titanic Pineapple Dog", + 6e-7, + "Insane", + ], ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "Enchant | Tap Power", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.156Z", - "hashShort": "2798037fb986afe3", + "configName": "Block Party Tier Eight 100x", + "dateCreated": "2025-07-19T17:28:56.980Z", + "dateModified": "2025-07-19T17:28:56.980Z", + "hashShort": "0d21f2ec9590f712", }, { - "category": "Enchants", - "collection": "Enchants", + "category": "Update 69", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 104, - "EmpoweredBoost": 25, - "MaxTier": 10, - "PageIcon": "rbxassetid://13824100032", - "Tiers": [ - { - "Desc": "Increases the number of Diamonds you earn from breakables by 10%!", - "DisplayName": "Diamonds I", - "Icon": "rbxassetid://15030242315", - "Power": 10, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - }, - { - "Desc": "Increases the number of Diamonds you earn from breakables by 20%!", - "DisplayName": "Diamonds II", - "Icon": "rbxassetid://15030242164", - "Power": 20, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - }, - { - "Desc": "Increases the number of Diamonds you earn from breakables by 30%!", - "DisplayName": "Diamonds III", - "Icon": "rbxassetid://15030242071", - "Power": 30, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, - }, - }, - { - "Desc": "Increases the number of Diamonds you earn from breakables by 35%!", - "DisplayName": "Diamonds IV", - "Icon": "rbxassetid://15030241880", - "Power": 35, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - }, - { - "Desc": "Increases the number of Diamonds you earn from breakables by 40%!", - "DisplayName": "Diamonds V", - "Icon": "rbxassetid://15030241672", - "Power": 40, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - }, - { - "Desc": "Increases the number of Diamonds you earn from breakables by 45%!", - "DisplayName": "Diamonds VI", - "Icon": "rbxassetid://15696962163", - "Power": 45, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - }, - { - "Desc": "Increases the number of Diamonds you earn from breakables by 50%!", - "DisplayName": "Diamonds VII", - "Icon": "rbxassetid://15801601732", - "Power": 50, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, - }, - }, - { - "Desc": "Increases the number of Diamonds you earn from breakables by 55%!", - "DisplayName": "Diamonds VIII", - "Icon": "rbxassetid://16318191770", - "Power": 55, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, - }, - }, - { - "Desc": "Increases the number of Diamonds you earn from breakables by 60%!", - "DisplayName": "Diamonds IX", - "Icon": "rbxassetid://16888547376", - "Power": 60, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, - { - "Desc": "Increases the number of Diamonds you earn from breakables by 65%!", - "DisplayName": "Diamonds X", - "Icon": "rbxassetid://98965567848472", - "Power": 65, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, + "currency": "FantasyCoins", + "eggNumber": 282, + "goldenThumbnail": "rbxassetid://133877766154330", + "icon": "rbxassetid://105207930092251", + "name": "Mystmire Bloom Egg", + "pets": [ + [ + "Poofy Pixie", + 90, + ], + [ + "Fiddlefern Cat", + 9, + ], + [ + "Mushroom Frog", + 1, + "Nice", + ], ], + "worldNumber": 4, }, - "configName": "Enchant | Diamonds", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.170Z", - "hashShort": "fa93f78a8c14b186", + "configName": "282 | Mystmire Bloom Egg", + "dateCreated": "2025-07-19T17:28:56.998Z", + "dateModified": "2026-04-18T15:56:34.870Z", + "hashShort": "8694880a0f6e65e6", }, { - "category": "Enchants", - "collection": "Enchants", + "category": "Tier 7 (Update)", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 384, - "EmpoweredBoost": 25, - "MaxTier": 10, - "PageIcon": "rbxassetid://13824100032", - "Tiers": [ - { - "Desc": "Increases your egg luck by 15%!", - "DisplayName": "Lucky Eggs I", - "Icon": "rbxassetid://15030240936", - "Power": 15, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - }, - { - "Desc": "Increases your egg luck by 30%!", - "DisplayName": "Lucky Eggs II", - "Icon": "rbxassetid://15030240839", - "Power": 30, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - }, - { - "Desc": "Increases your egg luck by 50%!", - "DisplayName": "Lucky Eggs III", - "Icon": "rbxassetid://15030240731", - "Power": 50, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, - }, - }, - { - "Desc": "Increases your egg luck by 75%!", - "DisplayName": "Lucky Eggs IV", - "Icon": "rbxassetid://15030240650", - "Power": 75, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - }, - { - "Desc": "Increases your egg luck by 95%!", - "DisplayName": "Lucky Eggs V", - "Icon": "rbxassetid://15030240562", - "Power": 95, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - }, - { - "Desc": "Increases your egg luck by 110%!", - "DisplayName": "Lucky Eggs VI", - "Icon": "rbxassetid://15696961903", - "Power": 110, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - }, - { - "Desc": "Increases your egg luck by 125%!", - "DisplayName": "Lucky Eggs VII", - "Icon": "rbxassetid://15801601280", - "Power": 125, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, - }, - }, - { - "Desc": "Increases your egg luck by 140%!", - "DisplayName": "Lucky Eggs VIII", - "Icon": "rbxassetid://16318191353", - "Power": 140, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, - }, - }, - { - "Desc": "Increases your egg luck by 155%!", - "DisplayName": "Lucky Eggs IX", - "Icon": "rbxassetid://16888547308", - "Power": 155, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, - { - "Desc": "Increases your egg luck by 160%!", - "DisplayName": "Lucky Eggs X", - "Icon": "rbxassetid://119384620589816", - "Power": 160, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, + "currency": "BlockPartyCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Block Party Tier Seven 25x", + "oddsFFlags": { + "Huge Chill Parrot": "EggMultiplier_L1", + "Huge Splash Angelus": "EggMultiplier_L2", + "Titanic Pineapple Dog": "EggMultiplier_L3V2", + }, + "overrideCost": 50, + "pets": [ + [ + "Chill Parrot", + 85, + ], + [ + "Coconut Flamingo", + 13, + ], + [ + "Flamingo Cat", + 0.5, + "Great", + ], + [ + "Flamingo Hippo", + 0.005, + "Insane", + ], + [ + "Pineapple Dog", + 0.0005, + "Insane", + ], + [ + "Huge Chill Parrot", + 0.000125, + "Insane", + ], + [ + "Huge Splash Angelus", + 2.5e-7, + "Insane", + ], + [ + "Titanic Pineapple Dog", + 6e-7, + "Insane", + ], ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "Enchant | Lucky Eggs", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.172Z", - "hashShort": "0ac846027ee2fa75", + "configName": "Block Party Tier Seven 25x", + "dateCreated": "2025-07-19T17:28:56.983Z", + "dateModified": "2025-07-19T17:28:56.983Z", + "hashShort": "7052c0c2cb5c2b7a", }, { - "category": "Enchants", - "collection": "Enchants", + "category": "Update 69", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "EmpoweredBoost": 50, - "MaxTier": 3, - "PageIcon": "rbxassetid://13824100032", - "Tiers": [ - { - "Desc": "Increases your magnet distance by 8!", - "DisplayName": "Magnet I", - "Icon": "rbxassetid://15030240467", - "Power": 8, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - }, - { - "Desc": "Increases your magnet distance by 15!", - "DisplayName": "Magnet II", - "Icon": "rbxassetid://15030240353", - "Power": 15, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - }, - { - "Desc": "Increases your magnet distance by 25!", - "DisplayName": "Magnet III", - "Icon": "rbxassetid://15030240240", - "Power": 25, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, - }, - }, + "currency": "FantasyCoins", + "eggNumber": 284, + "goldenThumbnail": "rbxassetid://102397168840123", + "icon": "rbxassetid://107627293877023", + "name": "Faerie Hex Glade Egg", + "pets": [ + [ + "Mushroom Frog", + 90, + ], + [ + "Fairy Grasshopper", + 9, + ], + [ + "Mushroom Dragon", + 1, + "Nice", + ], + [ + "Petal Pixie", + 0.1, + "Great", + ], ], + "worldNumber": 4, }, - "configName": "Enchant | Magnet", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.184Z", - "hashShort": "40c9d7cd1d458429", + "configName": "284 | Faerie Hex Glade Egg", + "dateCreated": "2025-07-19T17:28:56.998Z", + "dateModified": "2026-04-18T15:56:34.926Z", + "hashShort": "0aa6d84c23f02184", }, { - "category": "Enchants", - "collection": "Enchants", + "category": "Tier 8 ( Update)", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 88, - "EmpoweredBoost": 40, - "MaxTier": 10, - "PageIcon": "rbxassetid://13824100032", - "Tiers": [ - { - "Desc": "Increases your chances of drops from breakables by 10%!", - "DisplayName": "Treasure Hunter I", - "Icon": "rbxassetid://15030238336", - "Power": 10, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - }, - { - "Desc": "Increases your chances of drops from breakables by 15%!", - "DisplayName": "Treasure Hunter II", - "Icon": "rbxassetid://15030238207", - "Power": 15, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - }, - { - "Desc": "Increases your chances of drops from breakables by 20%!", - "DisplayName": "Treasure Hunter III", - "Icon": "rbxassetid://15030238126", - "Power": 20, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, - }, - }, - { - "Desc": "Increases your chances of drops from breakables by 25%!", - "DisplayName": "Treasure Hunter IV", - "Icon": "rbxassetid://15030238034", - "Power": 25, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - }, - { - "Desc": "Increases your chances of drops from breakables by 30%!", - "DisplayName": "Treasure Hunter V", - "Icon": "rbxassetid://15030237944", - "Power": 30, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - }, - { - "Desc": "Increases your chances of drops from breakables by 35%!", - "DisplayName": "Treasure Hunter VI", - "Icon": "rbxassetid://15696961536", - "Power": 35, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - }, - { - "Desc": "Increases your chances of drops from breakables by 40%!", - "DisplayName": "Treasure Hunter VII", - "Icon": "rbxassetid://15801600434", - "Power": 40, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, - }, - }, - { - "Desc": "Increases your chances of drops from breakables by 45%!", - "DisplayName": "Treasure Hunter VIII", - "Icon": "rbxassetid://16318190415", - "Power": 45, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, - }, - }, - { - "Desc": "Increases your chances of drops from breakables by 50%!", - "DisplayName": "Treasure Hunter IX", - "Icon": "rbxassetid://16888547124", - "Power": 50, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, - { - "Desc": "Increases your chances of drops from breakables by 55%!", - "DisplayName": "Treasure Hunter X", - "Icon": "rbxassetid://93835312698682", - "Power": 55, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, + "currency": "BlockPartyCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Block Party Tier Eight 25x", + "oddsFFlags": { + "Huge Chill Parrot": "EggMultiplier_L1", + "Huge Splash Angelus": "EggMultiplier_L2", + "Titanic Pineapple Dog": "EggMultiplier_L3V2", + }, + "overrideCost": 50, + "pets": [ + [ + "Coconut Flamingo", + 83, + ], + [ + "Flamingo Cat", + 15, + ], + [ + "Flamingo Hippo", + 0.5, + "Great", + ], + [ + "Pineapple Dog", + 0.05, + "Great", + ], + [ + "Beach Ball Capybara", + 0.005, + "Insane", + ], + [ + "Watermelon Golem", + 0.002, + "Insane", + ], + [ + "Huge Chill Parrot", + 0.000125, + "Insane", + ], + [ + "Huge Splash Angelus", + 2.5e-7, + "Insane", + ], + [ + "Titanic Pineapple Dog", + 6e-7, + "Insane", + ], ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "Enchant | Treasure Hunter", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.187Z", - "hashShort": "4ada612b226db2c9", + "configName": "Block Party Tier Eight 25x", + "dateCreated": "2025-07-19T17:28:56.985Z", + "dateModified": "2025-07-19T17:28:56.985Z", + "hashShort": "5db81af4ca4ffaa5", }, { - "category": "Enchants", - "collection": "Enchants", + "category": "Tier 7 (Update)", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 480, - "EmpoweredBoost": 50, - "MaxTier": 10, - "PageIcon": "rbxassetid://13824100032", - "Tiers": [ - { - "Desc": "Increases the number of Coins you earn from breakables by 20%!", - "DisplayName": "Coins I", - "Icon": "rbxassetid://15030243757", - "Power": 20, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - }, - { - "Desc": "Increases the number of Coins you earn from breakables by 40%!", - "DisplayName": "Coins II", - "Icon": "rbxassetid://15030243629", - "Power": 40, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - }, - { - "Desc": "Increases the number of Coins you earn from breakables by 60%!", - "DisplayName": "Coins III", - "Icon": "rbxassetid://15030243525", - "Power": 60, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, - }, - }, - { - "Desc": "Increases the number of Coins you earn from breakables by 80%!", - "DisplayName": "Coins IV", - "Icon": "rbxassetid://15030327119", - "Power": 80, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - }, - { - "Desc": "Increases the number of Coins you earn from breakables by 100%!", - "DisplayName": "Coins V", - "Icon": "rbxassetid://15030243249", - "Power": 100, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - }, - { - "Desc": "Increases the number of Coins you earn from breakables by 120%!", - "DisplayName": "Coins VI", - "Icon": "rbxassetid://15696962457", - "Power": 120, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - }, - { - "Desc": "Increases the number of Coins you earn from breakables by 140%!", - "DisplayName": "Coins VII", - "Icon": "rbxassetid://15801602105", - "Power": 140, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, - }, - }, - { - "Desc": "Increases the number of Coins you earn from breakables by 160%!", - "DisplayName": "Coins VIII", - "Icon": "rbxassetid://16318192171", - "Power": 160, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, - }, - }, - { - "Desc": "Increases the number of Coins you earn from breakables by 180%!", - "DisplayName": "Coins IX", - "Icon": "rbxassetid://16888547603", - "Power": 180, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, - { - "Desc": "Increases the number of Coins you earn from breakables by 200%!", - "DisplayName": "Coins X", - "Icon": "rbxassetid://117145802658778", - "Power": 200, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, + "currency": "BlockPartyCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Block Party Tier Seven 100x", + "oddsFFlags": { + "Huge Chill Parrot": "EggMultiplier_L1V2", + "Huge Splash Angelus": "EggMultiplier_L2V2", + "Titanic Pineapple Dog": "EggMultiplier_L3V2", + }, + "overrideCost": 50, + "pets": [ + [ + "Chill Parrot", + 85, + ], + [ + "Coconut Flamingo", + 13, + ], + [ + "Flamingo Cat", + 0.5, + "Great", + ], + [ + "Flamingo Hippo", + 0.005, + "Insane", + ], + [ + "Pineapple Dog", + 0.0005, + "Insane", + ], + [ + "Huge Chill Parrot", + 0.0005, + "Insane", + ], + [ + "Huge Splash Angelus", + 0.000001, + "Insane", + ], + [ + "Titanic Pineapple Dog", + 6e-7, + "Insane", + ], ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "Enchant | Coins", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.191Z", - "hashShort": "690afe771ae787f9", + "configName": "Block Party Tier Seven 100x", + "dateCreated": "2025-07-19T17:28:56.986Z", + "dateModified": "2025-07-19T17:28:56.986Z", + "hashShort": "9c06fbb343fbb0ba", }, { - "category": "Special", - "collection": "Enchants", + "category": "Tier 7 (Update)", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 16, - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Taps have a 10% chance to ignite an explosion, damaging nearby breakables!", - "DisplayName": "Tap Blast", - "Icon": "rbxassetid://15012896094", - "Power": 10, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - }, - ], - }, - "configName": "Enchant | Blast", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.946Z", - "hashShort": "4be0b8a11213d815", + "currency": "BlockPartyCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Block Party Tier Seven 5x", + "oddsFFlags": { + "Huge Chill Parrot": "EggMultiplier_L1", + "Huge Splash Angelus": "EggMultiplier_L2", + "Titanic Pineapple Dog": "EggMultiplier_L3V2", + }, + "overrideCost": 50, + "pets": [ + [ + "Chill Parrot", + 85, + ], + [ + "Coconut Flamingo", + 13, + ], + [ + "Flamingo Cat", + 0.5, + "Great", + ], + [ + "Flamingo Hippo", + 0.005, + "Insane", + ], + [ + "Pineapple Dog", + 0.0005, + "Insane", + ], + [ + "Huge Chill Parrot", + 0.000025, + "Insane", + ], + [ + "Huge Splash Angelus", + 5e-8, + "Insane", + ], + [ + "Titanic Pineapple Dog", + 6e-7, + "Insane", + ], + ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + "configName": "Block Party Tier Seven 5x", + "dateCreated": "2025-07-19T17:28:56.988Z", + "dateModified": "2025-07-19T17:28:56.988Z", + "hashShort": "db040371db97197a", }, { - "category": "Special", - "collection": "Enchants", + "category": "Update 69", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 2, - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Pets get random bursts of joy, moving 25% faster and attacking 40% quicker!", - "DisplayName": "Happy Pets", - "Icon": "rbxassetid://15012895724", - "Power": 2, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, - }, - }, + "currency": "FantasyCoins", + "eggNumber": 286, + "goldenThumbnail": "rbxassetid://130179464932374", + "icon": "rbxassetid://72285773619235", + "name": "Toadstool Throne Egg", + "oddsFFlags": { + "Huge Fiddlefern Cat": "FantasyEggHuge", + "Palace Pooka": "FantasyEggPet2", + "Rose Pooka": "FantasyEggPet1", + }, + "pets": [ + [ + "Petal Pixie", + 91, + ], + [ + "Blooming Axolotl", + 9.1, + ], + [ + "Rose Pooka", + 0.001, + "Insane", + ], + [ + "Palace Pooka", + 0.000025, + "Insane", + ], + [ + "Huge Fiddlefern Cat", + 0.000006, + "Insane", + ], ], + "worldNumber": 4, }, - "configName": "Enchant | Happy Pets", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.204Z", - "hashShort": "772df6e88f45a5be", + "configName": "286 | Toadstool Throne Egg", + "dateCreated": "2025-07-19T17:28:56.999Z", + "dateModified": "2026-05-02T17:32:49.097Z", + "hashShort": "33f30c07c4dc30e6", }, { - "category": "Special", - "collection": "Enchants", + "category": "Update 69", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 10.5, - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Increases your tap radius!", - "DisplayName": "Large Taps", - "Icon": "rbxassetid://16022160439", - "Power": 10.5, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - }, + "currency": "FantasyCoins", + "eggNumber": 285, + "goldenThumbnail": "rbxassetid://102436137426764", + "icon": "rbxassetid://127270301826318", + "name": "Bloomcourt Terrace Egg", + "pets": [ + [ + "Fairy Grasshopper", + 90, + ], + [ + "Mushroom Dragon", + 9, + ], + [ + "Petal Pixie", + 1, + "Nice", + ], + [ + "Blooming Axolotl", + 0.1, + "Great", + ], ], + "worldNumber": 4, }, - "configName": "Enchant | Large Taps", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.206Z", - "hashShort": "2e3babec35a3e473", + "configName": "285 | Bloomcourt Terrace Egg", + "dateCreated": "2025-07-19T17:28:56.999Z", + "dateModified": "2026-04-18T15:56:34.930Z", + "hashShort": "b91f10d584d4a939", }, { - "category": "Special", - "collection": "Enchants", + "category": "Update 69", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 15, - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Breakables have a chance to turn gold, making them worth 5x!", - "DisplayName": "Midas Touch", - "Icon": "rbxassetid://15012895285", - "Power": 15, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - }, + "currency": "FantasyCoins", + "eggNumber": 283, + "goldenThumbnail": "rbxassetid://109304032961484", + "icon": "rbxassetid://93777011037787", + "name": "Lotus Fenlight Egg", + "pets": [ + [ + "Fiddlefern Cat", + 90, + ], + [ + "Mushroom Frog", + 9, + ], + [ + "Fairy Grasshopper", + 1, + "Nice", + ], ], + "worldNumber": 4, }, - "configName": "Enchant | Midas Touch", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.216Z", - "hashShort": "461792b29a78d400", + "configName": "283 | Lotus Fenlight Egg", + "dateCreated": "2025-07-19T17:28:57.000Z", + "dateModified": "2026-04-18T15:56:34.911Z", + "hashShort": "d877828bfeec2e75", }, { - "category": "Special", - "collection": "Enchants", + "category": "Exclusive Eggs", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 6, - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Tapping has a chance to send bolts of lightning to nearby breakables!", - "DisplayName": "Lightning", - "Icon": "rbxassetid://15012895375", - "Power": 6, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - }, + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://89468892055847", + "name": "Exclusive Brainrot Egg", + "pets": [ + [ + "Cappuccina Brainrot", + 50, + ], + [ + "Patapim Brainrot", + 35, + ], + [ + "Tralala Brainrot", + 13, + ], + [ + "Huge Cappuccina Brainrot", + 1.5, + ], + [ + "Huge Tralala Brainrot", + 0.39, + ], + [ + "Titanic Crocodilo Brainrot", + 0.1, + ], + [ + "Gargantuan Cappuccino Brainrot", + 0.01, + ], ], + "productIds": { + "10 Exclusive Eggs": 3434133761, + "100 Exclusive Eggs": 3434134059, + "3 Exclusive Eggs": 3434133327, + "Exclusive Egg": 3434133167, + }, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "Enchant | Lightning", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.221Z", - "hashShort": "5b36d3d02e850146", + "configName": "Exclusive Egg 56", + "dateCreated": "2025-10-19T02:11:38.355Z", + "dateModified": "2025-10-19T02:11:38.355Z", + "hashShort": "9df01b04c75b16d7", }, { - "category": "Special", - "collection": "Enchants", + "category": "Exclusive Eggs", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 150, - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Increases the strength of your BEST pet by 150%!", - "DisplayName": "Exotic Pet", - "Icon": "rbxassetid://15054823167", - "Power": 150, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - }, + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://103334132797001", + "name": "Exclusive Harvest Egg", + "pets": [ + [ + "Honey Bear", + 50, + ], + [ + "Molten Pumpkin Cat", + 35, + ], + [ + "Leafstorm Wolf", + 13, + ], + [ + "Huge Honey Bear", + 1.5, + ], + [ + "Huge Leafstorm Wolf", + 0.39, + ], + [ + "Titanic Spirit Mushroom", + 0.1, + ], + [ + "Gargantuan Evil Scarecrow Pumpkin", + 0.01, + ], ], + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "Enchant | Exotic Pet", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.227Z", - "hashShort": "bc556fd2bca7b2b9", + "configName": "Exclusive Egg 57", + "dateCreated": "2025-11-22T17:15:29.203Z", + "dateModified": "2025-12-20T17:55:31.636Z", + "hashShort": "5fa1d7a25b3012ae", }, { - "category": "Special", - "collection": "Enchants", + "category": "Thanksgiving", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 10, - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Tapping with your pets creates a Tap Teamwork buff, making your pets attack 10% faster! Stacks up to 6 times.", - "DisplayName": "Tap Teamwork", - "Icon": "rbxassetid://15012894876", - "Power": 10, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, - }, - }, + "currency": "Diamonds", + "disableModifiers": true, + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Autumn Egg", + "oddsFFlags": { + "Gargantuan Leafy Deer": "TGE_G", + "Huge Strawhat Tanuki": "TGE_H", + "Titanic Persimmony Cricket": "TGE_T", + }, + "overrideCost": 2000, + "pets": [ + [ + "Persimmony Cricket", + 97.98959592, + ], + [ + "Strawhat Tanuki", + 2, + ], + [ + "Cinnamon Bunny", + 0.01, + ], + [ + "Huge Strawhat Tanuki", + 0.0004, + "Insane", + ], + [ + "Titanic Persimmony Cricket", + 0.000004, + "Insane", + ], + [ + "Gargantuan Leafy Deer", + 8e-8, + "Insane", + ], ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "Enchant | Tap Teamwork", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.238Z", - "hashShort": "4d8dcbab3cb9ae74", + "configName": "Autumn Egg", + "dateCreated": "2025-11-22T17:15:30.307Z", + "dateModified": "2025-12-07T23:02:17.522Z", + "hashShort": "556aa1087e44255d", }, { - "category": "Special", - "collection": "Enchants", + "category": "Thanksgiving", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 12, - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Tapping has a chance to send bolts of super-charged lightning to nearby breakables!", - "DisplayName": "Super Lightning", - "Icon": "rbxassetid://15012894984", - "Power": 12, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, - }, - }, + "currency": "Diamonds", + "disableModifiers": true, + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Apple Egg", + "oddsFFlags": { + "Huge Strawhat Tanuki": "TGE_H", + "Titanic Persimmony Cricket": "TGE_T", + }, + "overrideCost": 200, + "pets": [ + [ + "Chesnut Chipmunk", + 94.8999596, + ], + [ + "Persimmony Cricket", + 5, + ], + [ + "Strawhat Tanuki", + 0.1, + ], + [ + "Huge Strawhat Tanuki", + 0.00004, + "Insane", + ], + [ + "Titanic Persimmony Cricket", + 4e-7, + "Insane", + ], ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "Enchant | Super Lightning", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.240Z", - "hashShort": "ac8b2d434c9672af", + "configName": "Apple Egg", + "dateCreated": "2025-11-22T17:15:30.309Z", + "dateModified": "2025-12-07T23:02:17.513Z", + "hashShort": "9ff1e90372e6cde7", }, { - "category": "Special", - "collection": "Enchants", + "category": "Thanksgiving", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 1, - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Chance for a Comet Shower to happen while equipped!", - "DisplayName": "Starfall", - "Icon": "rbxassetid://15012895109", - "Power": 1, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - }, + "currency": "Diamonds", + "disableModifiers": true, + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Scarecrow Egg", + "oddsFFlags": { + "Gargantuan Leafy Deer": "TGE_G", + "Huge Maple Owl": "TGE_H", + "Titanic Persimmony Cricket": "TGE_T", + }, + "overrideCost": 20000, + "pets": [ + [ + "Strawhat Tanuki", + 97.8859592, + ], + [ + "Cinnamon Bunny", + 2, + ], + [ + "Maple Owl", + 0.1, + ], + [ + "Leafy Deer", + 0.01, + ], + [ + "Huge Maple Owl", + 0.004, + "Insane", + ], + [ + "Titanic Persimmony Cricket", + 0.00004, + "Insane", + ], + [ + "Gargantuan Leafy Deer", + 8e-7, + "Insane", + ], ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "Enchant | Starfall", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.248Z", - "hashShort": "eb9d774929207875", + "configName": "Scarecrow Egg", + "dateCreated": "2025-11-22T17:15:30.323Z", + "dateModified": "2025-12-07T23:02:17.537Z", + "hashShort": "1fdc5690bf60695c", }, { - "category": "Special", - "collection": "Enchants", + "category": "Exclusive Eggs", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 96, - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Increases the odds of hatching shiny pets by +60%!", - "DisplayName": "Shiny Hunter", - "Icon": "rbxassetid://15012895193", - "Power": 60, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - }, + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://135060964483981", + "name": "Exclusive Ice Cube Egg", + "pets": [ + [ + "Ice Cube Penguin", + 50, + ], + [ + "Snowflake Lattice Tiger", + 35, + ], + [ + "Sleigh Axolotl", + 13, + ], + [ + "Huge Ice Cube Penguin", + 1.5, + ], + [ + "Huge Sleigh Axolotl", + 0.39, + ], + [ + "Titanic Snow Globe Snowman", + 0.1, + ], + [ + "Gargantuan Cookie Cut Cat", + 0.01, + ], ], + "productIds": { + "10 Exclusive Eggs": 3484124665, + "100 Exclusive Eggs": 3484124857, + "3 Exclusive Eggs": 3484125002, + "Exclusive Egg": 3484125064, + }, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "Enchant | Shiny Hunter", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.256Z", - "hashShort": "326834e5da9236a1", + "configName": "Exclusive Egg 58", + "dateCreated": "2025-12-20T17:55:31.639Z", + "dateModified": "2025-12-20T17:55:31.639Z", + "hashShort": "a0613cc61a5e8419", }, { - "category": "Special", - "collection": "Enchants", + "category": "Christmas2025", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 80, - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Increases the odds of hatching Active Huge Pets by 25%!", - "DisplayName": "Huge Hunter", - "Icon": "rbxassetid://15012895531", - "Power": 25, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - }, + "currency": "GingerbreadCoins2", + "extraPetsClient": null, + "extraPetsServer": null, + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Candy Cane Egg", + "oddsFFlags": { + "Huge Merry Mule": "EggMultiplier_Christmas1", + "Huge Pajamas Shark": "EggMultiplier_Christmas2", + }, + "overrideCost": 200, + "pets": [ + [ + "Festive Bunny", + 90, + ], + [ + "Pajamas Shark", + 9.996796, + ], + [ + "Hot Cocoa Cow", + 0.05, + ], + [ + "Holly Capybara", + 0.03, + "Great", + ], + [ + "Lit Loris", + 0.003, + "Insane", + ], + [ + "Huge Merry Mule", + 0.00001, + "Insane", + ], ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "Enchant | Huge Hunter", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.263Z", - "hashShort": "37556a0a97644965", + "configName": "1 | Candy Cane Egg", + "dateCreated": "2025-12-20T17:55:34.684Z", + "dateModified": "2025-12-20T17:55:34.684Z", + "hashShort": "b772e906a3f64efa", }, { - "category": "Special", - "collection": "Enchants", + "category": "Christmas2025", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 200, - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Increases the damage you deal to chests by 200%!", - "DisplayName": "Chest Breaker", - "Icon": "rbxassetid://15012896012", - "Power": 200, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, - }, - }, + "currency": "GingerbreadCoins2", + "extraPetsClient": null, + "extraPetsServer": null, + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Icy Egg", + "oddsFFlags": { + "Hippomint": "EggMultiplier_Christmas5", + "Huge Merry Mule": "EggMultiplier_Christmas1", + "Huge Pajamas Shark": "EggMultiplier_Christmas2", + "Snowflake Dragon": "EggMultiplier_Christmas4", + }, + "overrideCost": 300, + "pets": [ + [ + "Hot Cocoa Cow", + 90, + ], + [ + "Evergreen Unicorn", + 9.886796, + ], + [ + "Deerserker", + 0.05, + ], + [ + "Snowflake Dragon", + 0.003, + "Great", + ], + [ + "Hippomint", + 0.0003, + "Insane", + ], + [ + "Huge Merry Mule", + 0.00001, + "Insane", + ], ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "Enchant | Chest Breaker", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.944Z", - "hashShort": "952a0d8e9fa5e37c", + "configName": "2 | Icy Egg", + "dateCreated": "2025-12-20T17:55:34.691Z", + "dateModified": "2025-12-20T17:55:34.691Z", + "hashShort": "e71091cc6b05f61c", }, { - "category": "Special", - "collection": "Enchants", + "category": "Christmas2025", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 100, - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Increases the Coins you earn from breakables by 100% and Diamonds by 40%!", - "DisplayName": "Fortune", - "Icon": "rbxassetid://15012895819", - "Power": 100, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - }, + "currency": "GingerbreadCoins2", + "extraPetsClient": null, + "extraPetsServer": null, + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Ornament Egg", + "oddsFFlags": { + "Candycane Kitsune": "EggMultiplier_Christmas5", + "Holiday Owl": "EggMultiplier_Christmas4", + "Huge Merry Mule": "EggMultiplier_Christmas1", + "Huge Pajamas Shark": "EggMultiplier_Christmas2", + }, + "overrideCost": 500, + "pets": [ + [ + "Holly Capybara", + 90, + ], + [ + "Evergreen Unicorn", + 9.886796, + ], + [ + "Deerserker", + 0.05, + ], + [ + "Holiday Owl", + 0.003, + "Great", + ], + [ + "Candycane Kitsune", + 0.0003, + "Insane", + ], + [ + "Huge Merry Mule", + 0.00001, + "Insane", + ], ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "Enchant | Fortune", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.275Z", - "hashShort": "f0e817484756d2b1", + "configName": "3 | Ornament Egg", + "dateCreated": "2025-12-20T17:55:34.692Z", + "dateModified": "2025-12-20T17:55:34.692Z", + "hashShort": "8b377e56a3168726", }, { - "category": "Special", - "collection": "Enchants", + "category": "Christmas2025", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 10, - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Pets have a chance of igniting an explosive!", - "DisplayName": "Explosive", - "Icon": "rbxassetid://16037377524", - "Power": 10, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - }, + "currency": "GingerbreadCoins2", + "extraPetsClient": null, + "extraPetsServer": null, + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Sudoku Egg", + "oddsFFlags": { + "Huge Festive Walrus": "EggMultiplier_ChristmasSudoku", + "Huge Pajamas Shark": "EggMultiplier_Christmas2", + "Krampus": "EggMultiplier_Christmas5", + "Merry Mule": "EggMultiplier_Christmas4", + }, + "overrideCost": 500, + "pets": [ + [ + "Hot Cocoa Cow", + 90, + ], + [ + "Holly Capybara", + 9.996796, + ], + [ + "Lit Loris", + 0.05, + ], + [ + "Merry Mule", + 0.03, + "Great", + ], + [ + "Krampus", + 0.003, + "Insane", + ], + [ + "Huge Festive Walrus", + 0.00001, + "Insane", + ], ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "Enchant | Explosive", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.281Z", - "hashShort": "d818378bae6d6324", + "configName": "Sudoku Egg", + "dateCreated": "2025-12-20T17:55:34.695Z", + "dateModified": "2025-12-20T17:55:34.695Z", + "hashShort": "ae034d7b5df2c15b", }, { - "category": "Special", - "collection": "Enchants", + "category": "Christmas2025", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 100, - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Spawns an orb companion that fires at nearby breakables!", - "DisplayName": "Magic Orb", - "Icon": "rbxassetid://15938765507", - "Power": 100, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, - }, - }, + "currency": "GingerbreadCoins2", + "extraPetsClient": null, + "extraPetsServer": null, + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Pine Tree Egg", + "oddsFFlags": { + "Elf Golem": "EggMultiplier_Christmas5", + "Gingerbread Angelus": "EggMultiplier_Christmas4", + "Huge Merry Mule": "EggMultiplier_Christmas1", + "Huge Pajamas Shark": "EggMultiplier_Christmas2", + }, + "overrideCost": 800, + "pets": [ + [ + "Lit Loris", + 90, + ], + [ + "Evergreen Unicorn", + 9.886796, + ], + [ + "Deerserker", + 0.05, + ], + [ + "Gingerbread Angelus", + 0.003, + "Great", + ], + [ + "Elf Golem", + 0.0003, + "Insane", + ], + [ + "Huge Merry Mule", + 0.00001, + "Insane", + ], ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "Enchant | Magic Orb", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.942Z", - "hashShort": "7d7f6242a6e1f53c", + "configName": "4 | Pine Tree Egg", + "dateCreated": "2025-12-20T17:55:34.696Z", + "dateModified": "2025-12-20T17:55:34.696Z", + "hashShort": "4a5b39361b0bae8f", }, { - "category": "Exclusive", - "collection": "Enchants", + "category": "Christmas2025", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 24, - "MaxTier": 1, - "ProductId": 1674740229, - "Tiers": [ - { - "Desc": "Sporadically shoot fireworks to explode breakables you tap!", - "DisplayName": "Fireworks", - "Icon": "rbxassetid://15257719053", - "Power": 10, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, + "currency": "GingerbreadCoins2", + "extraPetsClient": null, + "extraPetsServer": null, + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Present Egg", + "oddsFFlags": { + "Huge Candycane Kitsune": "EggMultiplier_Christmas3", + "Huge Pajamas Shark": "EggMultiplier_Christmas2", + "Krampus": "EggMultiplier_Christmas5", + "Merry Mule": "EggMultiplier_Christmas4", + }, + "overrideCost": 400, + "pets": [ + [ + "Hot Cocoa Cow", + 90, + ], + [ + "Holly Capybara", + 9.996796, + ], + [ + "Lit Loris", + 0.05, + ], + [ + "Merry Mule", + 0.03, + "Great", + ], + [ + "Krampus", + 0.003, + "Insane", + ], + [ + "Huge Candycane Kitsune", + 0.00001, + "Insane", + ], ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "Enchant | Fireworks", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.940Z", - "hashShort": "f4d65df436459cf9", + "configName": "5 | Present Egg", + "dateCreated": "2025-12-20T17:55:34.701Z", + "dateModified": "2025-12-20T17:55:34.701Z", + "hashShort": "25028c3194e75513", }, { - "category": "Exclusive", - "collection": "Enchants", + "category": "Exclusive Eggs", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 8, - "MaxTier": 1, - "ProductId": 1718430474, - "Tiers": [ - { - "Desc": "Time to party! Random Events happen more often for you!", - "DisplayName": "Party Time", - "Icon": "rbxassetid://15799383770", - "Power": 5, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://132891272688100", + "name": "Exclusive Glass Egg", + "pets": [ + [ + "Glass Crocodile", + 50, + ], + [ + "Glass Kraken", + 35, + ], + [ + "Glass Dominus", + 13, + ], + [ + "Huge Glass Crocodile", + 1.5, + ], + [ + "Huge Glass Dominus", + 0.39, + ], + [ + "Titanic Glass Blobfish", + 0.1, + ], + [ + "Gargantuan Glass Squid", + 0.01, + ], ], + "productIds": { + "10 Exclusive Eggs": 3555203949, + "100 Exclusive Eggs": 3555204020, + "3 Exclusive Eggs": 3555203860, + "Exclusive Egg": 3555203781, + }, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "Enchant | Party Time", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.949Z", - "hashShort": "e27ba05a6aa648f8", + "configName": "Exclusive Egg 59", + "dateCreated": "2026-03-14T15:52:31.753Z", + "dateModified": "2026-04-18T15:56:32.273Z", + "hashShort": "ed61d908eb23c27c", }, { - "category": "Exclusive", - "collection": "Enchants", + "category": "Exclusive Eggs", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 0.8, - "MaxTier": 1, - "ProductId": 1674740376, - "Tiers": [ - { - "Desc": "Lucky Blocks may randomly appear in your area!", - "DisplayName": "Lucky Block", - "Icon": "rbxassetid://15257718885", - "Power": 0.5, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://73621348462405", + "name": "Exclusive Special Ops Egg", + "pets": [ + [ + "Special Ops Ram", + 50, + ], + [ + "Special Ops Skunk", + 35, + ], + [ + "Special Ops Dog", + 13, + ], + [ + "Huge Special Ops Ram", + 1.5, + ], + [ + "Huge Special Ops Dog", + 0.39, + ], + [ + "Titanic Special Ops Goat", + 0.1, + ], + [ + "Gargantuan Special Ops Moth", + 0.01, + ], ], + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "Enchant | Lucky Block", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.943Z", - "hashShort": "2c28c289a32d3a39", + "configName": "Exclusive Egg 60", + "dateCreated": "2026-04-18T15:56:32.289Z", + "dateModified": "2026-05-09T17:52:29.442Z", + "hashShort": "1374d95a58dfb84a", }, { - "category": "Exclusive", - "collection": "Enchants", + "category": "Spring", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 0.4, - "MaxTier": 1, - "ProductId": 1718434271, - "Tiers": [ - { - "Desc": "Chance to spawn a Massive Comet! Drops items, diamonds and coins!", - "DisplayName": "Massive Comet", - "Icon": "rbxassetid://15799384059", - "Power": 0.25, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, + "currency": "SpringCoins", + "goldChance": 5, + "icon": "rbxassetid://137841732368903", + "isCustomEgg": true, + "name": "Spring Egg", + "oddsFFlags": { + "Huge Tree Frog": "Easter2026Egg3HugeMult", + }, + "overrideCost": 600, + "pets": [ + [ + "Sunflower Calf", + 60, + ], + [ + "Tree Frog", + 25, + ], + [ + "Spring Dino", + 10, + ], + [ + "Spring Onion", + 5, + ], + [ + "Huge Tree Frog", + 0.0004, + "Insane", + ], ], + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "Enchant | Massive Comet", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.130Z", - "hashShort": "99618c8b690dd791", + "configName": "Spring Egg 3", + "dateCreated": "2026-04-18T15:56:34.872Z", + "dateModified": "2026-04-25T17:31:19.621Z", + "hashShort": "fde323042ea6480b", }, { - "category": "Exclusive", - "collection": "Enchants", + "category": "Spring", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 0.9600000000000002, - "MaxTier": 1, - "ProductId": 1674746599, - "Tiers": [ - { - "Desc": "Destroying a breakable can reveal a Mini Chest!", - "DisplayName": "Chest Mimic", - "Icon": "rbxassetid://15257719276", - "Power": 0.4, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, + "currency": "Diamonds", + "disableModifiers": true, + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Spring Diamond Egg", + "oddsFFlags": { + "Huge Diamond Chick": "Easter2026DEHugeMult", + "Titanic Diamond Chick": "Easter2026DETitanicMult", + "Titanic Diamond Monkey": "Easter2026DEMonkeyMult", + }, + "overrideCost": 2000, + "pets": [ + [ + "Diamond Chick", + 99.99878776, + ], + [ + "Huge Diamond Chick", + 0.0012, + "Insane", + ], + [ + "Titanic Diamond Chick", + 0.000012, + "Insane", + ], + [ + "Titanic Diamond Monkey", + 2.4e-7, + "Insane", + ], ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "Enchant | Chest Mimic", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.977Z", - "hashShort": "957bf756594631d7", + "configName": "Spring Diamond Egg 10x", + "dateCreated": "2026-04-18T15:56:34.877Z", + "dateModified": "2026-04-25T17:31:19.619Z", + "hashShort": "cfd99bdbad6bfc83", }, { - "category": "Exclusive", - "collection": "Enchants", + "category": "Spring", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 0.26666666666666666, - "MaxTier": 1, - "ProductId": 1718434784, - "Tiers": [ - { - "Desc": "Destroying a breakable can reveal a Diamond Mini Chest!", - "DisplayName": "Diamond Chest Mimic", - "Icon": "rbxassetid://15801837068", - "Power": 0.16666666666666666, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, + "currency": "SpringCoins", + "goldChance": 5, + "icon": "rbxassetid://137841732368903", + "isCustomEgg": true, + "name": "Spring Egg", + "oddsFFlags": { + "Huge Tree Frog": "Easter2026Egg1HugeMult", + }, + "overrideCost": 50, + "pets": [ + [ + "Bandana Shiba", + 60, + ], + [ + "Egg Dog", + 30, + ], + [ + "Bunny Cat", + 10, + ], + [ + "Huge Tree Frog", + 0.0004, + "Insane", + ], ], + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "Enchant | Diamond Chest Mimic", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.980Z", - "hashShort": "610a9b2d83c0e558", + "configName": "Spring Egg 1", + "dateCreated": "2026-04-18T15:56:34.880Z", + "dateModified": "2026-04-25T17:31:19.615Z", + "hashShort": "28e394af8c5b6908", }, { - "category": "Exclusive", - "collection": "Enchants", + "category": "Spring", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 240, - "MaxTier": 1, - "ProductId": 1759520039, - "Tiers": [ - { - "Desc": "Increases the odds of hatching shiny pets by +150%!", - "DisplayName": "Super Shiny Hunter", - "Icon": "rbxassetid://16457058699", - "Power": 150, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, + "currency": "SpringCoins", + "goldChance": 5, + "icon": "rbxassetid://137841732368903", + "isCustomEgg": true, + "name": "Spring Egg", + "oddsFFlags": { + "Huge Tree Frog": "Easter2026Egg2HugeMult", + }, + "overrideCost": 250, + "pets": [ + [ + "Egg Dog", + 60, + ], + [ + "Bunny Cat", + 25, + ], + [ + "Sunflower Calf", + 10, + ], + [ + "Tree Frog", + 5, + ], + [ + "Huge Tree Frog", + 0.0004, + "Insane", + ], ], + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "Enchant | Super Shiny Hunter", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.973Z", - "hashShort": "3aec46dbf46377b4", + "configName": "Spring Egg 2", + "dateCreated": "2026-04-18T15:56:34.880Z", + "dateModified": "2026-04-25T17:31:19.625Z", + "hashShort": "1b487091ca23f855", }, { - "category": "Special", - "collection": "Enchants", + "category": "Spring", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 0.25, - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Increase the power of your fruits by 25%, but they expire twice as fast!", - "DisplayName": "Fruity", - "Icon": "rbxassetid://16504664274", - "Power": 0.25, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, - }, - }, + "currency": "SpringCoins", + "goldChance": 5, + "icon": "rbxassetid://137841732368903", + "isCustomEgg": true, + "name": "Spring Egg", + "oddsFFlags": { + "Huge Egg Piggy": "Easter2026Egg4HugeMult", + "Leafy Yeti": "Easter2026Egg4RareMult", + "Spring Dragon": "Easter2026Egg4RareMult", + "Withered Agony": "Easter2026Egg4RareMult", + }, + "overrideCost": 1200, + "pets": [ + [ + "Spring Dino", + 90, + ], + [ + "Spring Onion", + 9.94695, + ], + [ + "Spring Dragon", + 0.01, + "Nice", + ], + [ + "Withered Agony", + 0.0004, + "Nice", + ], + [ + "Leafy Yeti", + 0.000003, + "Insane", + ], + [ + "Huge Egg Piggy", + 0.0004, + "Insane", + ], ], + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "Enchant | Fruity", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.948Z", - "hashShort": "fddb80f6b73f89bc", + "configName": "Spring Egg 4", + "dateCreated": "2026-04-18T15:56:34.888Z", + "dateModified": "2026-04-25T17:31:19.617Z", + "hashShort": "ea6335057506db16", }, { - "category": "Exclusive", - "collection": "Enchants", + "category": "Spring", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 0.24000000000000005, - "MaxTier": 1, - "ProductId": 1759511562, - "Tiers": [ - { - "Desc": "Destroying a breakable can reveal a Boss Chest!", - "DisplayName": "Boss Chest Mimic", - "Icon": "rbxassetid://16457058891", - "Power": 0.1, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, + "currency": "Diamonds", + "disableModifiers": true, + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Spring Diamond Egg", + "oddsFFlags": { + "Huge Diamond Chick": "Easter2026DEHugeMult", + "Titanic Diamond Chick": "Easter2026DETitanicMult", + "Titanic Diamond Monkey": "Easter2026DEMonkeyMult", + }, + "overrideCost": 20000, + "pets": [ + [ + "Diamond Chick", + 99.9878776, + ], + [ + "Huge Diamond Chick", + 0.012, + "Insane", + ], + [ + "Titanic Diamond Chick", + 0.00012, + "Insane", + ], + [ + "Titanic Diamond Monkey", + 0.0000024, + "Insane", + ], ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "Enchant | Boss Chest Mimic", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.011Z", - "hashShort": "c338422e31285482", + "configName": "Spring Diamond Egg 100x", + "dateCreated": "2026-04-18T15:56:34.897Z", + "dateModified": "2026-04-25T17:31:19.620Z", + "hashShort": "d0424fd6964cc250", }, { - "category": "Exclusive", - "collection": "Enchants", + "category": "Spring", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 1, - "MaxTier": 1, - "ProductId": 1775110157, - "Tiers": [ - { - "Desc": "Collect coins, lootbags and dropped items from anywhere & everywhere!", - "DisplayName": "Super Magnet", - "Icon": "rbxassetid://16736074645", - "Power": 1, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, + "currency": "SpringCoins", + "goldChance": 5, + "icon": "rbxassetid://137841732368903", + "isCustomEgg": true, + "name": "Spring Egg", + "oddsFFlags": { + "Butterfly Pony": "Easter2026Egg5ButterflyMult", + "Dawn Phoenix": "Easter2026Egg5DawnMult", + "Huge Egg Piggy": "Easter2026Egg5HugeMult", + "Leafy Yeti": "Easter2026Egg5RareMult", + }, + "overrideCost": 2500, + "pets": [ + [ + "Spring Dragon", + 95, + ], + [ + "Withered Agony", + 4.9469975, + ], + [ + "Leafy Yeti", + 0.008, + "Nice", + ], + [ + "Butterfly Pony", + 0.002, + "Insane", + ], + [ + "Dawn Phoenix", + 0.0004, + "Insane", + ], + [ + "Huge Egg Piggy", + 0.0004, + "Insane", + ], ], + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "Enchant | Super Magnet", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.975Z", - "hashShort": "fb80315a6ee5df80", + "configName": "Spring Egg 5", + "dateCreated": "2026-04-18T15:56:34.900Z", + "dateModified": "2026-04-25T17:31:19.613Z", + "hashShort": "ab6095bdfe45288e", }, { - "category": "Exclusive", - "collection": "Enchants", + "category": "Spring", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 0.2, - "MaxTier": 1, - "ProductId": 1775110873, - "Tiers": [ - { - "Desc": "Boss Lucky Blocks may randomly appear in your area!", - "DisplayName": "Boss Lucky Block", - "Icon": "rbxassetid://16735810565", - "Power": 0.125, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, + "currency": "Diamonds", + "disableModifiers": true, + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Spring Diamond Egg", + "oddsFFlags": { + "Huge Diamond Chick": "Easter2026DEHugeMult", + "Titanic Diamond Chick": "Easter2026DETitanicMult", + "Titanic Diamond Monkey": "Easter2026DEMonkeyMult", + }, + "overrideCost": 200, + "pets": [ + [ + "Diamond Chick", + 99.999878776, + ], + [ + "Huge Diamond Chick", + 0.00012, + "Insane", + ], + [ + "Titanic Diamond Chick", + 0.0000012, + "Insane", + ], + [ + "Titanic Diamond Monkey", + 2.4e-8, + "Insane", + ], ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, }, - "configName": "Enchant | Boss Lucky Block", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.976Z", - "hashShort": "012bc832834df369", + "configName": "Spring Diamond Egg 1x", + "dateCreated": "2026-04-18T15:56:34.927Z", + "dateModified": "2026-04-25T17:31:19.618Z", + "hashShort": "5eb2020058b87d22", }, { - "category": "Exclusive", - "collection": "Enchants", + "category": "Spring", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 100, - "MaxTier": 1, - "ProductId": 1795853901, - "Tiers": [ - { - "Desc": "Spawns an orb companion that fires bolts of lightning to nearby breakables!", - "DisplayName": "Lightning Orb", - "Icon": "rbxassetid://18655090446", - "Power": 100, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, + "currency": "SpringCoins", + "goldChance": 5, + "icon": "rbxassetid://137841732368903", + "isCustomEgg": true, + "name": "Spring Egg", + "oddsFFlags": { + "Huge Spring Elephant": "Easter2026Egg7HugeButterflyMult", + }, + "overrideCost": 10000, + "pets": [ + [ + "Egg Piggy", + 60, + ], + [ + "Spring Elephant", + 25, + ], + [ + "Lamb Wolf", + 10, + ], + [ + "Garden Goblin", + 4.9996, + ], + [ + "Huge Spring Elephant", + 0.0004, + "Insane", + ], ], + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "Enchant | Lightning Orb", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.978Z", - "hashShort": "688c6933e574dafd", + "configName": "Spring Egg 7", + "dateCreated": "2026-04-25T17:31:19.605Z", + "dateModified": "2026-04-25T17:31:19.605Z", + "hashShort": "e21b71e9aabee5f4", }, { - "category": "Exclusive", - "collection": "Enchants", + "category": "Spring", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 2, - "MaxTier": 1, - "ProductId": 1816773521, - "Tiers": [ - { - "Desc": "Mini Chests drop 2x better items!", - "DisplayName": "Mini Chest Fortune", - "Icon": "rbxassetid://17276030055", - "Power": 2, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, - ], - }, - "configName": "Enchant | Mini Chest Fortune", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.971Z", - "hashShort": "2e66444decdd6d58", - }, - { - "category": "Exclusive", - "collection": "Enchants", - "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 100, - "MaxTier": 1, - "ProductId": 1816774438, - "Tiers": [ - { - "Desc": "Increases the strength of your shiny pets by 100%!", - "DisplayName": "Shiny Supercharge", - "Icon": "rbxassetid://17276029951", - "Power": 100, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, - ], - }, - "configName": "Enchant | Shiny Supercharge", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.977Z", - "hashShort": "ff7c91554b83a6df", - }, - { - "category": "Special", - "collection": "Enchants", - "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 1, - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Chance to apply corruption to breakables and increase the amount of damage you do!", - "DisplayName": "Corruption", - "Icon": "rbxassetid://17375424643", - "Power": 1, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, - ], - }, - "configName": "Enchant | Corruption", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.945Z", - "hashShort": "5e44fbde84849e3c", - }, - { - "category": "Special", - "collection": "Enchants", - "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 100, - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Spawns an orb companion that fires balls of terror at nearby breakables!", - "DisplayName": "Nightmare Orb", - "Icon": "rbxassetid://17375424435", - "Power": 100, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, - ], - }, - "configName": "Enchant | Nightmare Orb", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.939Z", - "hashShort": "b98802ba1e1769bb", - }, - { - "category": "Exclusive", - "collection": "Enchants", - "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 0.24000000000000005, - "MaxTier": 1, - "ProductId": 1829171313, - "Tiers": [ - { - "Desc": "Destroying a breakable can reveal a Superior Mini Chest!", - "DisplayName": "Superior Chest Mimic", - "Icon": "rbxassetid://17502541549", - "Power": 0.1, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, - ], - }, - "configName": "Enchant | Superior Chest Mimic", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:49.980Z", - "hashShort": "84b0faa8ab311230", - }, - { - "category": "Special", - "collection": "Enchants", - "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 1, - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Each hacker key drop provides two or three keys!", - "DisplayName": "Hacker Key Hunter", - "Icon": "rbxassetid://17760584353", - "Power": 1, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, - }, - }, - ], - }, - "configName": "Enchant | Hacker Key Hunter", - "dateCreated": "2025-07-05T23:23:25.503Z", - "dateModified": "2025-07-05T23:23:25.503Z", - "hashShort": "b3e9ba3bc829b20d", - }, - { - "category": "Special", - "collection": "Enchants", - "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 1.04, - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Chance to strike breakables with a demonic curse dealing more damage with every strike! Strikes up to 5 times!", - "DisplayName": "Demonic", - "Icon": "rbxassetid://18255411160", - "Power": 0.65, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, - }, - }, - ], - }, - "configName": "Enchant | Demonic", - "dateCreated": "2025-07-05T23:23:25.503Z", - "dateModified": "2025-07-05T23:23:25.503Z", - "hashShort": "8680fe1814210faf", - }, - { - "category": "Special", - "collection": "Enchants", - "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 1.04, - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Chance to strike breakables with angelic justice dealing more damage with every strike! Strikes up to 5 times!", - "DisplayName": "Angelic", - "Icon": "rbxassetid://18222206298", - "Power": 0.65, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, - }, - }, - ], - }, - "configName": "Enchant | Angelic", - "dateCreated": "2025-07-05T23:23:25.503Z", - "dateModified": "2025-07-05T23:23:25.503Z", - "hashShort": "16a280717aa26524", - }, - { - "category": "Exclusive", - "collection": "Enchants", - "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 0.5333333333333333, - "MaxTier": 1, - "ProductId": 1861245836, - "Tiers": [ - { - "Desc": "Destroying a breakable can drop a Diamond Gift Bag!", - "DisplayName": "Diamond Gift Hunter", - "Icon": "rbxassetid://18222206998", - "Power": 0.3333333333333333, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, - ], - }, - "configName": "Enchant | Diamond Gift Hunter", - "dateCreated": "2025-07-05T23:23:25.503Z", - "dateModified": "2025-07-05T23:23:25.503Z", - "hashShort": "f64b572df3622742", - }, - { - "category": "Exclusive", - "collection": "Enchants", - "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 100, - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Spawns an orb companion that has a chance to turn breakables into Diamond!", - "DisplayName": "Diamond Orb", - "Icon": "rbxassetid://18655090651", - "Power": 100, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, - ], - "Tradable": true, - }, - "configName": "Enchant | Diamond Orb", - "dateCreated": "2025-07-05T23:23:25.503Z", - "dateModified": "2025-07-05T23:23:25.503Z", - "hashShort": "526722cfc2d782be", - }, - { - "category": "Exclusive", - "collection": "Enchants", - "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 40, - "MaxTier": 1, - "ProductId": 2313608101, - "Tiers": [ - { - "Desc": "Adds +1 RARE Active Huge to hatch! - -Increases Active Huge hatch luck by 40%!", - "DisplayName": "Active Huge Overload", - "Icon": "rbxassetid://90697119855056", - "Power": 40, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, - ], - }, - "configName": "Enchant | Active Huge Overload", - "dateCreated": "2025-07-05T23:23:25.503Z", - "dateModified": "2025-07-05T23:23:25.503Z", - "hashShort": "8fd02b8b03353ec0", - }, - { - "category": "Exclusive", - "collection": "Enchants", - "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 12, - "MaxTier": 1, - "ProductId": 2662224833, - "Tiers": [ - { - "Desc": "Boosts your ability to hatch Rainbow pets!", - "DisplayName": "Rainbow Egg", - "Icon": "rbxassetid://82449205025738", - "Power": 10, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, - ], - }, - "configName": "Enchant | Rainbow Eggs", - "dateCreated": "2025-07-05T23:23:25.503Z", - "dateModified": "2025-07-05T23:23:25.503Z", - "hashShort": "60d2c9f6efc0720f", - }, - { - "category": "Exclusive", - "collection": "Enchants", - "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 1, - "MaxTier": 1, - "ProductId": 2665766404, - "Tiers": [ - { - "Desc": "Gives DOUBLE the coins from destroying breakables!", - "DisplayName": "Double Coins", - "Icon": "rbxassetid://92136936171430", - "Power": 1, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, - ], - }, - "configName": "Enchant | Double Coins", - "dateCreated": "2025-07-05T23:23:25.503Z", - "dateModified": "2025-07-05T23:23:25.503Z", - "hashShort": "37a92b06b76708b5", - }, - { - "category": "Exclusive", - "collection": "Enchants", - "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 1, - "MaxTier": 1, - "ProductId": 2689880249, - "Tiers": [ - { - "Desc": "Random HUGE & TITANIC chance while destroying breakables! - -Huge & Titanic rotates DAILY!", - "DisplayName": "Breakable Mayhem", - "Icon": "rbxassetid://136082909959165", - "Power": 0.5, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, + "currency": "SpringCoins", + "goldChance": 5, + "icon": "rbxassetid://137841732368903", + "isCustomEgg": true, + "name": "Spring Egg", + "oddsFFlags": { + "Bloom Dominus": "Easter2026Egg8RareMult", + "Garden Goblin": "Easter2026Egg8RareMult", + "Gargantuan Bloom Dominus": "Easter2026Egg8GargantuanMult", + "Huge Bloom Dominus": "Easter2026Egg8HugeDawnMult", + "Titanic Garden Goblin": "Easter2026Egg8TitanicMult", + }, + "overrideCost": 20000, + "pets": [ + [ + "Spring Elephant", + 95, + ], + [ + "Lamb Wolf", + 4.9469975, + ], + [ + "Garden Goblin", + 0.008, + "Nice", + ], + [ + "Bloom Dominus", + 0.002, + "Insane", + ], + [ + "Huge Bloom Dominus", + 0.0004, + "Insane", + ], + [ + "Titanic Garden Goblin", + 0.000004, + "Insane", + ], + [ + "Gargantuan Bloom Dominus", + 8e-8, + "Insane", + ], ], + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "Enchant | Breakable Mayhem", - "dateCreated": "2025-07-05T23:23:25.503Z", - "dateModified": "2025-07-05T23:23:25.503Z", - "hashShort": "b4ea2320e9db8c1d", + "configName": "Spring Egg 8", + "dateCreated": "2026-04-25T17:31:19.609Z", + "dateModified": "2026-04-25T17:31:19.609Z", + "hashShort": "71ac6a97afcd1ecc", }, { - "category": "Special", - "collection": "Enchants", + "category": "Spring", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 500, - "MaxTier": 1, - "Tiers": [ - { - "Desc": "Increases the damage you deal to chests by 500%!", - "DisplayName": "Mega Chest Breaker", - "Icon": "rbxassetid://116837175751892", - "Power": 500, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, + "currency": "SpringCoins", + "goldChance": 5, + "icon": "rbxassetid://137841732368903", + "isCustomEgg": true, + "name": "Spring Egg", + "oddsFFlags": { + "Huge Egg Piggy": "Easter2026Egg6HugeButterflyMult", + }, + "overrideCost": 5000, + "pets": [ + [ + "Spring Kitten", + 60, + ], + [ + "Egg Piggy", + 30, + ], + [ + "Spring Elephant", + 9.9996, + ], + [ + "Huge Egg Piggy", + 0.0004, + "Insane", + ], ], + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "Enchant | Mega Chest Breaker", - "dateCreated": "2025-07-05T23:23:25.503Z", - "dateModified": "2025-07-05T23:23:25.503Z", - "hashShort": "f890e664894fd9b2", + "configName": "Spring Egg 6", + "dateCreated": "2026-04-25T17:31:19.602Z", + "dateModified": "2026-04-25T17:31:19.602Z", + "hashShort": "39d4cd3c713ed528", }, { - "category": "Exclusive", - "collection": "Enchants", + "category": "Other", + "collection": "Eggs", "configData": { - "BaseTier": 1, - "DiminishPowerThreshold": 600, - "MaxTier": 1, - "ProductId": 3296149716, - "Tiers": [ - { - "Desc": "Grants 3x Huge, Titanic, and Gargantuan XP!", - "DisplayName": "Superior Wisdom", - "Icon": "rbxassetid://127001486940469", - "Power": 300, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, + "currency": "Coins", + "disableModifiers": true, + "icon": "rbxassetid://0", + "isCustomEgg": true, + "name": "Infinity Egg", + "overrideCost": 1, + "pets": [], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + "worldNumbers": [ + 1, + 2, + 3, + 4, ], }, - "configName": "Enchant | Superior Wisdom", - "dateCreated": "2025-07-05T23:23:25.503Z", - "dateModified": "2025-07-05T23:23:25.503Z", - "hashShort": "4576011c338c05bc", + "configName": "Infinity Egg", + "dateCreated": "2026-05-02T17:32:46.270Z", + "dateModified": "2026-05-02T17:32:46.270Z", + "hashShort": "a2f7c89a9f98f9e6", }, - ], - "status": "ok", -} -`; - -exports[`Pet Simulator Public Live API Test FishingRods shape 1`] = ` -{ - "data": [ { - "category": "FishingRods", - "collection": "FishingRods", + "category": "Machine Eggs", + "collection": "Eggs", "configData": { - "AssociatedItemID": "Wooden Fishing Rod", - "BarSize": 0.5, - "DisplayName": "Wooden Fishing Rod", - "FishingChance": 0.75, - "FishingCurrencyMultiplier": 1.2, - "FishingGameSpeedMultiplier": 1, - "FishingOdds": [ + "disableGold": false, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 5, + "icon": "rbxassetid://116863600662539", + "name": "Gargantuan Machine Hippomelon Egg", + "pets": [ [ - "Basic", - 95, + "Huge Lunar Deer", + 49.45, ], [ - "Legendary", - 5, + "Huge Electric Slime", + 30, ], - ], - "Icon": "rbxassetid://16028878115", - "LineColor": null, - "MinFishingTime": 2, - "Model": null, - }, - "configName": "FishingRod | Wooden Fishing Rod", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.234Z", - "hashShort": "d99efe6e485cbfe8", - }, - { - "category": "FishingRods", - "collection": "FishingRods", - "configData": { - "AssociatedItemID": "Sturdy Fishing Rod", - "BarSize": 0.4, - "DisplayName": "Sturdy Fishing Rod", - "FishingChance": 0.75, - "FishingCurrencyMultiplier": 7.5, - "FishingGameSpeedMultiplier": 0.975, - "FishingOdds": [ [ - "Basic", - 93, + "Huge Dino", + 15, ], [ - "Legendary", - 7, + "Huge Ducky Magician", + 4, + ], + [ + "Huge Midnight Axolotl", + 1, + ], + [ + "Titanic Lucky Cat", + 0.5, + ], + [ + "Gargantuan Hippomelon", + 0.05, ], ], - "Icon": "rbxassetid://16028878219", - "LineColor": null, - "MerchantSalePrice": 100, - "MinFishingTime": 1.9, - "Model": null, + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "shinyChance": 2, }, - "configName": "FishingRod | Sturdy Fishing Rod", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.227Z", - "hashShort": "f4d73eddac1c5fd3", + "configName": "Huge Machine Egg 6", + "dateCreated": "2026-05-02T17:32:46.284Z", + "dateModified": "2026-05-02T17:32:46.284Z", + "hashShort": "a805860b5850f88a", }, { - "category": "FishingRods", - "collection": "FishingRods", + "category": "Update 77", + "collection": "Eggs", "configData": { - "AssociatedItemID": "Advanced Fishing Rod", - "BarSize": 0.4, - "DisplayName": "Advanced Fishing Rod", - "FishingChance": 0.75, - "FishingCurrencyMultiplier": 15, - "FishingGameSpeedMultiplier": 0.925, - "FishingOdds": [ + "currency": "FantasyCoins", + "eggNumber": 290, + "goldenThumbnail": "rbxassetid://133877766154330", + "icon": "rbxassetid://105207930092251", + "name": "Veilroot Egg", + "pets": [ [ - "Basic", + "Crystal Axolotl", 90, ], [ - "Legendary", - 10, + "Wisp Griffin", + 9, + ], + [ + "Ruinous Angelus", + 1, + "Nice", ], ], - "Icon": "rbxassetid://16028879358", - "LineColor": null, - "MerchantSalePrice": 2500, - "MinFishingTime": 1.85, - "Model": null, + "worldNumber": 4, }, - "configName": "FishingRod | Advanced Fishing Rod", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.237Z", - "hashShort": "ef0933069f467d18", + "configName": "290 | Veilroot Egg", + "dateCreated": "2026-05-02T17:32:49.091Z", + "dateModified": "2026-05-02T17:32:49.091Z", + "hashShort": "8541fa98f25e469b", }, { - "category": "FishingRods", - "collection": "FishingRods", + "category": "Update 77", + "collection": "Eggs", "configData": { - "AssociatedItemID": "Pro Fishing Rod", - "BarSize": 0.4, - "DisplayName": "Iron Fishing Rod", - "FishingChance": 0.75, - "FishingCurrencyMultiplier": 50, - "FishingGameSpeedMultiplier": 0.75, - "FishingOdds": [ + "bestEgg": true, + "currency": "FantasyCoins", + "eggNumber": 291, + "goldenThumbnail": "rbxassetid://133877766154330", + "icon": "rbxassetid://105207930092251", + "name": "Hollow Egg", + "oddsFFlags": { + "Huge Wisp Griffin": "FantasyEggHuge_U77", + "Knight Golem": "FantasyEggPet1_U77", + "Veil Horse": "FantasyEggPet2_U77", + }, + "pets": [ [ - "Basic", - 70, + "Wisp Griffin", + 91, ], [ - "Legendary", - 30, + "Ruinous Angelus", + 9.1, ], - ], - "Icon": "rbxassetid://16028878776", - "LineColor": null, - "MerchantSalePrice": 100000, - "MinFishingTime": 1.6, - "Model": null, - }, - "configName": "FishingRod | Pro Fishing Rod", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.234Z", - "hashShort": "00b715a29a5b4283", - }, - { - "category": "FishingRods", - "collection": "FishingRods", - "configData": { - "AssociatedItemID": "Super Fishing Rod", - "BarSize": 0.4, - "DisplayName": "Stone Fishing Rod", - "FishingChance": 0.75, - "FishingCurrencyMultiplier": 25, - "FishingGameSpeedMultiplier": 0.85, - "FishingOdds": [ [ - "Basic", - 85, + "Knight Golem", + 0.001, + "Insane", ], [ - "Legendary", - 15, + "Veil Horse", + 0.000025, + "Insane", ], - ], - "Icon": "rbxassetid://16028878295", - "LineColor": null, - "MerchantSalePrice": 25000, - "MinFishingTime": 1.75, - "Model": null, - }, - "configName": "FishingRod | Super Fishing Rod", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.231Z", - "hashShort": "f285b69e5a66ee83", - }, - { - "category": "FishingRods", - "collection": "FishingRods", - "configData": { - "AssociatedItemID": "Golden Fishing Rod", - "BarSize": 0.4, - "DisplayName": "Golden Fishing Rod", - "FishingChance": 0.75, - "FishingCurrencyMultiplier": 50, - "FishingGameSpeedMultiplier": 0.75, - "FishingOdds": [ [ - "Basic", - 70, + "Wicked Kirin", + 0.000006, + "Insane", ], [ - "Legendary", - 30, + "Huge Wisp Griffin", + 0.000006, + "Insane", ], ], - "Icon": "rbxassetid://16028878947", - "LineColor": null, - "MinFishingTime": 1.6, - "Model": null, + "worldNumber": 4, }, - "configName": "FishingRod | Golden Fishing Rod", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.230Z", - "hashShort": "3fa854dad557da56", + "configName": "291 | Hollow Egg", + "dateCreated": "2026-05-02T17:32:49.100Z", + "dateModified": "2026-05-02T17:32:49.100Z", + "hashShort": "27b6e856b552489a", }, { - "category": "FishingRods", - "collection": "FishingRods", + "category": "Update 77", + "collection": "Eggs", "configData": { - "AssociatedItemID": "Platinum Fishing Rod", - "BarSize": 0.4, - "DisplayName": "Platinum Fishing Rod", - "FishingChance": 0.75, - "FishingCurrencyMultiplier": 150, - "FishingGameSpeedMultiplier": 0.975, - "FishingOdds": [ + "currency": "FantasyCoins", + "eggNumber": 287, + "goldenThumbnail": "rbxassetid://133877766154330", + "icon": "rbxassetid://105207930092251", + "name": "Bloomfade Egg", + "pets": [ [ - "Advanced Basic", - 93, + "Jackalope", + 90, ], [ - "Advanced Legendary", - 7, + "Caterpillar", + 9, + ], + [ + "Mushroom Pixie", + 1, + "Nice", ], ], - "Icon": "rbxassetid://16028878591", - "LineColor": null, - "MerchantSalePrice": 40000, - "MinFishingTime": 2, - "Model": null, + "worldNumber": 4, }, - "configName": "FishingRod | Platinum Fishing Rod", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.242Z", - "hashShort": "754ddd5ed957f0fb", + "configName": "287 | Bloomfade Egg", + "dateCreated": "2026-05-02T17:32:49.102Z", + "dateModified": "2026-05-02T17:32:49.102Z", + "hashShort": "eae1238d6912f41c", }, { - "category": "FishingRods", - "collection": "FishingRods", + "category": "Update 77", + "collection": "Eggs", "configData": { - "AssociatedItemID": "Diamond Fishing Rod", - "BarSize": 0.4, - "DisplayName": "Diamond Fishing Rod", - "FishingChance": 0.75, - "FishingCurrencyMultiplier": 1400, - "FishingGameSpeedMultiplier": 0.75, - "FishingOdds": [ + "currency": "FantasyCoins", + "eggNumber": 289, + "goldenThumbnail": "rbxassetid://133877766154330", + "icon": "rbxassetid://105207930092251", + "name": "Wraithcap Egg", + "pets": [ [ - "Advanced Basic", - 70, + "Mushroom Pixie", + 90, ], [ - "Advanced Legendary", - 30, + "Crystal Axolotl", + 9, + ], + [ + "Wisp Griffin", + 1, + "Nice", + ], + [ + "Ruinous Angelus", + 0.1, + "Great", ], ], - "Icon": "rbxassetid://16028879185", - "LineColor": null, - "MinFishingTime": 1.6, - "Model": null, + "worldNumber": 4, }, - "configName": "FishingRod | Diamond Fishing Rod", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.245Z", - "hashShort": "b8020f85ce04d46c", + "configName": "289 | Wraithcap Egg", + "dateCreated": "2026-05-02T17:32:49.105Z", + "dateModified": "2026-05-02T17:32:49.105Z", + "hashShort": "d71a2c5f9da99772", }, { - "category": "FishingRods", - "collection": "FishingRods", + "category": "Update 77", + "collection": "Eggs", "configData": { - "AssociatedItemID": "Emerald Fishing Rod", - "BarSize": 0.4, - "DisplayName": "Emerald Fishing Rod", - "FishingChance": 0.75, - "FishingCurrencyMultiplier": 350, - "FishingGameSpeedMultiplier": 0.925, - "FishingOdds": [ + "currency": "FantasyCoins", + "eggNumber": 288, + "goldenThumbnail": "rbxassetid://133877766154330", + "icon": "rbxassetid://105207930092251", + "name": "Duskwillow Egg", + "pets": [ [ - "Advanced Basic", + "Caterpillar", 90, ], [ - "Advanced Legendary", - 10, + "Mushroom Pixie", + 9, + ], + [ + "Crystal Axolotl", + 1, + "Nice", ], ], - "Icon": "rbxassetid://16028879073", - "LineColor": null, - "MerchantSalePrice": 150000, - "MinFishingTime": 1.9, - "Model": null, + "worldNumber": 4, }, - "configName": "FishingRod | Emerald Fishing Rod", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.244Z", - "hashShort": "e9ffc804f26082f8", + "configName": "288 | Duskwillow Egg", + "dateCreated": "2026-05-02T17:32:49.108Z", + "dateModified": "2026-05-02T17:32:49.108Z", + "hashShort": "20fa704ff643e9b3", }, { - "category": "FishingRods", - "collection": "FishingRods", + "category": "Exclusive Eggs", + "collection": "Eggs", "configData": { - "AssociatedItemID": "Sapphire Fishing Rod", - "BarSize": 0.4, - "DisplayName": "Sapphire Fishing Rod", - "FishingChance": 0.75, - "FishingCurrencyMultiplier": 700, - "FishingGameSpeedMultiplier": 0.85, - "FishingOdds": [ + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://75203419198563", + "name": "Exclusive Origami Egg", + "pets": [ [ - "Advanced Basic", - 85, + "Origami Bunny", + 50, ], [ - "Advanced Legendary", - 15, + "Origami Fox", + 35, ], - ], - "Icon": "rbxassetid://16028878380", - "LineColor": null, - "MerchantSalePrice": 425000, - "MinFishingTime": 1.75, - "Model": null, - }, - "configName": "FishingRod | Sapphire Fishing Rod", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.226Z", - "hashShort": "889a882353085ee1", - }, - { - "category": "FishingRods", - "collection": "FishingRods", - "configData": { - "AssociatedItemID": "Amethyst Fishing Rod", - "BarSize": 0.4, - "DisplayName": "Amethyst Fishing Rod", - "FishingChance": 0.75, - "FishingCurrencyMultiplier": 1400, - "FishingGameSpeedMultiplier": 0.75, - "FishingOdds": [ [ - "Advanced Basic", - 70, + "Origami Shark", + 13, ], [ - "Advanced Legendary", - 30, + "Huge Origami Bunny", + 1.5, + ], + [ + "Huge Origami Shark", + 0.39, + ], + [ + "Titanic Origami Crane", + 0.1, + ], + [ + "Gargantuan Origami Kitsune", + 0.01, ], ], - "Icon": "rbxassetid://16028879272", - "LineColor": null, - "MerchantSalePrice": 2250000, - "MinFishingTime": 1.6, - "Model": null, - }, - "configName": "FishingRod | Amethyst Fishing Rod", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.239Z", - "hashShort": "5940d226f6627eb2", - }, - ], - "status": "ok", -} -`; - -exports[`Pet Simulator Public Live API Test Fruits shape 1`] = ` -{ - "data": [ - { - "category": "Fruits", - "collection": "Fruits", - "configData": { - "Boost": [ - { - "Amount": 1.5, - "Type": "Drops", - }, - ], - "Desc": "Christmas snack for your pets! Increases chance for drops by %! -(Stacks!)", - "DisplayName": "Candycane", - "Duration": 300, - "Icon": "rbxassetid://15636388090", - "IgnoreFruitMachine": true, - "Rarity": { - "Announce": false, + "rainbowChance": 2, + "rarity": { + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "shinyChance": 2, }, - "configName": "Fruit | Candycane", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.068Z", - "hashShort": "fc6bbcc077d1d2c8", + "configName": "Exclusive Egg 61", + "dateCreated": "2026-05-09T17:52:29.458Z", + "dateModified": "2026-06-13T23:13:49.278Z", + "hashShort": "02beb28b252c571d", }, { - "category": "Fruits", - "collection": "Fruits", + "category": "Exclusive Eggs", + "collection": "Eggs", "configData": { - "Boost": [ - { - "Amount": 5, - "Type": "Coins", - }, - ], - "Desc": null, - "DisplayName": "Banana", - "Duration": 300, - "Icon": "rbxassetid://15030757462", - "Rarity": { - "Announce": false, + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://96530605023559", + "name": "Exclusive Space Egg", + "pets": [ + [ + "Earth Dog", + 50, + ], + [ + "Moon Raccoon", + 35, + ], + [ + "Mars Monkey", + 13, + ], + [ + "Huge Earth Dog", + 1.5, + ], + [ + "Huge Mars Monkey", + 0.39, + ], + [ + "Titanic Space Bat", + 0.1, + ], + [ + "Gargantuan Solar Lion", + 0.01, + ], + ], + "rainbowChance": 2, + "rarity": { + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "ShinyIcon": "rbxassetid://18577433706", + "shinyChance": 2, }, - "configName": "Fruit | Banana", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.053Z", - "hashShort": "7f2ea7b98374ada4", + "configName": "Exclusive Egg 62", + "dateCreated": "2026-06-13T23:13:49.279Z", + "dateModified": "2026-06-27T16:07:01.988Z", + "hashShort": "12f3f1814c868703", }, { - "category": "Fruits", - "collection": "Fruits", + "category": "Backrooms Update 2", + "collection": "Eggs", "configData": { - "Boost": [ - { - "Amount": 1, - "Type": "Diamonds", - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Scribble Egg 30x", + "overrideCost": 300, + "pets": [ + [ + "Faceling Raccoon", + 82.463, + ], + [ + "Tripod Octopus", + 17, + ], + [ + "Piggy Piggy", + 0.4, + ], + [ + "Omen", + 0.1, + ], + [ + "Partygoer Cat", + 0.03, + ], + [ + "Guest 666", + 0.007, + ], ], - "Desc": null, - "DisplayName": "Orange", - "Duration": 300, - "Icon": "rbxassetid://15030757291", - "Rarity": { - "Announce": false, + "rarity": { + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "ShinyIcon": "rbxassetid://18577433264", }, - "configName": "Fruit | Orange", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.073Z", - "hashShort": "05009207f7bda15d", + "configName": "3 | Backrooms Scribble Egg 30x", + "dateCreated": "2026-06-13T23:13:53.553Z", + "dateModified": "2026-06-20T16:08:52.884Z", + "hashShort": "ab1f25402b88621a", }, { - "category": "Fruits", - "collection": "Fruits", + "category": "Backrooms Update 2", + "collection": "Eggs", "configData": { - "Boost": [ - { - "Amount": 1, - "Type": "Drops", - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Smile Egg 3x", + "overrideCost": 200, + "pets": [ + [ + "Daydream Fox", + 69.985, + ], + [ + "Skin Stealer", + 29, + ], + [ + "Faceling Raccoon", + 0.9, + ], + [ + "Tripod Octopus", + 0.1, + ], + [ + "Piggy Piggy", + 0.015, + ], ], - "Desc": null, - "DisplayName": "Pineapple", - "Duration": 300, - "Icon": "rbxassetid://15030757105", - "Rarity": { - "Announce": false, + "rarity": { + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "ShinyIcon": "rbxassetid://18577434101", }, - "configName": "Fruit | Pineapple", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.071Z", - "hashShort": "752e7b675e097016", + "configName": "1 | Backrooms Smile Egg 3x", + "dateCreated": "2026-06-13T23:13:53.554Z", + "dateModified": "2026-06-20T16:08:52.891Z", + "hashShort": "5c3780cb2c8073fd", }, { - "category": "Fruits", - "collection": "Fruits", + "category": "Backrooms Update 2", + "collection": "Eggs", "configData": { - "Boost": [ - { - "Amount": 5, - "Type": "Coins", - }, - { - "Amount": 1, - "Type": "Diamonds", - }, - { - "Amount": 1.5, - "Type": "Damage", - }, - { - "Amount": 1, - "Type": "Drops", - }, - { - "Amount": 1, - "Type": "Bonus", - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Scribble Egg 20x", + "overrideCost": 300, + "pets": [ + [ + "Faceling Raccoon", + 82.463, + ], + [ + "Tripod Octopus", + 17, + ], + [ + "Piggy Piggy", + 0.4, + ], + [ + "Omen", + 0.1, + ], + [ + "Partygoer Cat", + 0.03, + ], + [ + "Guest 666", + 0.007, + ], ], - "Desc": null, - "DisplayName": "Rainbow Fruit", - "Duration": 300, - "Icon": "rbxassetid://15030756988", - "Rarity": { - "Announce": false, + "rarity": { + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "ShinyIcon": "rbxassetid://18577433891", - "preventShiny": true, }, - "configName": "Fruit | Rainbow", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.058Z", - "hashShort": "3a6ee5ae9485ac5c", + "configName": "3 | Backrooms Scribble Egg 20x", + "dateCreated": "2026-06-13T23:13:53.554Z", + "dateModified": "2026-06-20T16:08:52.897Z", + "hashShort": "886e2ff694aafe9d", }, { - "category": "Fruits", - "collection": "Fruits", + "category": "Backrooms Update 2", + "collection": "Eggs", "configData": { - "Boost": [ - { - "Amount": 1.5, - "Type": "Damage", - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Keep Out Egg 50x", + "overrideCost": 500, + "pets": [ + [ + "Tripod Octopus", + 86.585, + ], + [ + "Piggy Piggy", + 13, + ], + [ + "Omen", + 0.32, + ], + [ + "Partygoer Cat", + 0.07, + ], + [ + "Guest 666", + 0.02, + ], ], - "Desc": null, - "DisplayName": "Apple", - "Duration": 300, - "Icon": "rbxassetid://15030757644", - "Rarity": { - "Announce": false, + "rarity": { + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "ShinyIcon": "rbxassetid://18577434379", }, - "configName": "Fruit | Apple", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.073Z", - "hashShort": "9d3bd6398681f5d4", + "configName": "4 | Backrooms Keep Out Egg 50x", + "dateCreated": "2026-06-13T23:13:53.557Z", + "dateModified": "2026-06-20T16:08:52.889Z", + "hashShort": "834cab4cc7c7982e", }, { - "category": "Fruits", - "collection": "Fruits", + "category": "Backrooms Update 2", + "collection": "Eggs", "configData": { - "Boost": [ - { - "Amount": 1, - "Type": "Bonus", - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Smile Egg 1x", + "overrideCost": 200, + "pets": [ + [ + "Daydream Fox", + 69.985, + ], + [ + "Skin Stealer", + 29, + ], + [ + "Faceling Raccoon", + 0.9, + ], + [ + "Tripod Octopus", + 0.1, + ], + [ + "Piggy Piggy", + 0.015, + ], ], - "Desc": "Tasty snack for your pets! Boosts chance of bonuses by %! -(Stacks!)", - "DisplayName": "Watermelon", - "Duration": 300, - "Icon": "rbxassetid://16717381270", - "Rarity": { - "Announce": false, + "rarity": { + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "ShinyIcon": "rbxassetid://18577639540", }, - "configName": "Fruit | Watermelon", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.055Z", - "hashShort": "810b9c7230de8249", + "configName": "1 | Backrooms Smile Egg 1x", + "dateCreated": "2026-06-13T23:13:53.558Z", + "dateModified": "2026-06-20T16:08:52.890Z", + "hashShort": "b1b668429ee685de", }, - ], - "status": "ok", -} -`; - -exports[`Pet Simulator Public Live API Test GuildBattles shape 1`] = ` -{ - "data": [ { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 2", + "collection": "Eggs", "configData": { - "FinishTime": 1766768400, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift 2", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "BestContributor": 1, - "Item": { - "_data": { - "id": "Titanic Silver Stag", - "pt": 2, - }, - }, - "Worst": 1, - "WorstContributor": 3, - }, - { - "Best": 1, - "BestContributor": 4, - "Item": { - "_data": { - "id": "Titanic Silver Stag", - "pt": 1, - }, - }, - "Worst": 1, - "WorstContributor": 10, - }, - { - "Best": 1, - "BestContributor": 11, - "Item": { - "_data": { - "id": "Titanic Silver Stag", - }, - }, - "Worst": 1, - "WorstContributor": 100, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Silver", - }, - }, - "Worst": 50, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Silver", - }, - }, - "Worst": 10, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Silver Bison", - "pt": 2, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Silver Bison", - "pt": 1, - }, - }, - "Worst": 10, - }, - { - "Best": 11, - "Item": { - "_data": { - "id": "Huge Silver Bison", - }, - }, - "Worst": 50, - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Flower Egg 15x", + "overrideCost": 250, + "pets": [ + [ + "Skin Stealer", + 80.4325, + ], + [ + "Faceling Raccoon", + 19, + ], + [ + "Tripod Octopus", + 0.5, + ], + [ + "Piggy Piggy", + 0.06, + ], + [ + "Omen", + 0.0075, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1766250000, - "Title": "Gingerbread Battle 2025", }, - "configName": "Christmas2025", - "dateCreated": "2025-12-20T17:55:27.573Z", - "dateModified": "2025-12-20T17:55:27.573Z", - "hashShort": "bd8a8d3668667300", + "configName": "2 | Backrooms Flower Egg 15x", + "dateCreated": "2026-06-13T23:13:53.558Z", + "dateModified": "2026-06-20T16:08:52.903Z", + "hashShort": "6ac1c2368dcef563", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 2", + "collection": "Eggs", "configData": { - "FinishTime": 1764954000, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift 2", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "BestContributor": 1, - "Item": { - "_data": { - "id": "Titanic Spectral Deer", - "pt": 2, - }, - }, - "Worst": 1, - "WorstContributor": 3, - }, - { - "Best": 1, - "BestContributor": 4, - "Item": { - "_data": { - "id": "Titanic Spectral Deer", - "pt": 1, - }, - }, - "Worst": 1, - "WorstContributor": 10, - }, - { - "Best": 1, - "BestContributor": 11, - "Item": { - "_data": { - "id": "Titanic Spectral Deer", - }, - }, - "Worst": 1, - "WorstContributor": 100, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Forged Robot", - "pt": 2, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Forged Robot", - "pt": 1, - }, - }, - "Worst": 8, - }, - { - "Best": 9, - "Item": { - "_data": { - "id": "Huge Forged Robot", - }, - }, - "Worst": 20, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Huge Forged Cyclops", - }, - }, - "Worst": 50, - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Flower Egg 10x", + "overrideCost": 250, + "pets": [ + [ + "Skin Stealer", + 80.4325, + ], + [ + "Faceling Raccoon", + 19, + ], + [ + "Tripod Octopus", + 0.5, + ], + [ + "Piggy Piggy", + 0.06, + ], + [ + "Omen", + 0.0075, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1764435600, - "Title": "Thanksgiving 2025 Battle", }, - "configName": "Turkey2025", - "dateCreated": "2025-12-07T23:02:15.833Z", - "dateModified": "2025-12-07T23:02:15.833Z", - "hashShort": "49b8a57d34afb36b", + "configName": "2 | Backrooms Flower Egg 10x", + "dateCreated": "2026-06-13T23:13:53.556Z", + "dateModified": "2026-06-20T16:08:52.885Z", + "hashShort": "185e3d21acd95aea", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 2", + "collection": "Eggs", "configData": { - "FinishTime": 1761321600, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift 2", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "BestContributor": 1, - "Item": { - "_data": { - "id": "Titanic Spectral Deer", - "pt": 2, - }, - }, - "Worst": 1, - "WorstContributor": 3, - }, - { - "Best": 1, - "BestContributor": 4, - "Item": { - "_data": { - "id": "Titanic Spectral Deer", - "pt": 1, - }, - }, - "Worst": 1, - "WorstContributor": 10, - }, - { - "Best": 1, - "BestContributor": 11, - "Item": { - "_data": { - "id": "Titanic Spectral Deer", - }, - }, - "Worst": 1, - "WorstContributor": 100, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Mummy Cow", - "pt": 2, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Mummy Cow", - "pt": 1, - }, - }, - "Worst": 8, - }, - { - "Best": 9, - "Item": { - "_data": { - "id": "Huge Mummy Cow", - }, - }, - "Worst": 20, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Patchwork", - }, - }, - "Worst": 30, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Reaper", - }, - }, - "Worst": 50, - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Scribble Egg 25x", + "overrideCost": 300, + "pets": [ + [ + "Faceling Raccoon", + 82.463, + ], + [ + "Tripod Octopus", + 17, + ], + [ + "Piggy Piggy", + 0.4, + ], + [ + "Omen", + 0.1, + ], + [ + "Partygoer Cat", + 0.03, + ], + [ + "Guest 666", + 0.007, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1760803200, - "Title": "Trick or Treat Battle", }, - "configName": "TrickOrTreat", - "dateCreated": "2025-10-19T02:11:36.671Z", - "dateModified": "2025-10-19T02:11:36.671Z", - "hashShort": "c39f388e38d564a8", + "configName": "3 | Backrooms Scribble Egg 25x", + "dateCreated": "2026-06-13T23:13:53.556Z", + "dateModified": "2026-06-20T16:08:52.887Z", + "hashShort": "4c04d8110582d2bd", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 2", + "collection": "Eggs", "configData": { - "FinishTime": 1752854400, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift 2", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "BestContributor": 1, - "Item": { - "_data": { - "id": "Titanic Sun Angelus", - "pt": 2, - }, - }, - "Worst": 1, - "WorstContributor": 3, - }, - { - "Best": 1, - "BestContributor": 4, - "Item": { - "_data": { - "id": "Titanic Sun Angelus", - "pt": 1, - }, - }, - "Worst": 1, - "WorstContributor": 10, - }, - { - "Best": 1, - "BestContributor": 11, - "Item": { - "_data": { - "id": "Titanic Sun Angelus", - }, - }, - "Worst": 1, - "WorstContributor": 100, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Sun Griffin", - "pt": 2, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Sun Griffin", - "pt": 1, - }, - }, - "Worst": 8, - }, - { - "Best": 9, - "Item": { - "_data": { - "id": "Huge Sun Griffin", - }, - }, - "Worst": 20, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Sun Angelus", - }, - }, - "Worst": 30, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Sun Angelus", - }, - }, - "Worst": 50, - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Swirl Egg 1x", + "overrideCost": 1000, + "pets": [ + [ + "Faceling Raccoon", + 69.985, + ], + [ + "Memory Worm", + 29, + ], + [ + "Tripod Octopus", + 0.9, + ], + [ + "Piggy Piggy", + 0.1, + ], + [ + "Death Moth", + 0.015, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1752336000, - "Title": "Block Party Battle", }, - "configName": "BlockPartyBattle", - "dateCreated": "2025-07-12T16:08:43.628Z", - "dateModified": "2025-07-12T16:08:43.628Z", - "hashShort": "d7f5fda5cc7420a0", + "configName": "5 | Backrooms Swirl Egg 1x", + "dateCreated": "2026-06-13T23:13:53.555Z", + "dateModified": "2026-06-20T16:08:52.902Z", + "hashShort": "4e31c73957f7250e", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 2", + "collection": "Eggs", "configData": { - "FinishTime": 1751644800, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift 2", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "BestContributor": 1, - "Item": { - "_data": { - "id": "Titanic Sun Angelus", - "pt": 2, - }, - }, - "Worst": 1, - "WorstContributor": 3, - }, - { - "Best": 1, - "BestContributor": 4, - "Item": { - "_data": { - "id": "Titanic Sun Angelus", - "pt": 1, - }, - }, - "Worst": 1, - "WorstContributor": 10, - }, - { - "Best": 1, - "BestContributor": 11, - "Item": { - "_data": { - "id": "Titanic Sun Angelus", - }, - }, - "Worst": 1, - "WorstContributor": 100, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Scuba Dog", - "pt": 2, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Scuba Dog", - "pt": 1, - }, - }, - "Worst": 8, - }, - { - "Best": 9, - "Item": { - "_data": { - "id": "Huge Scuba Dog", - }, - }, - "Worst": 20, - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Keep Out Egg 100x", + "overrideCost": 500, + "pets": [ + [ + "Tripod Octopus", + 86.585, + ], + [ + "Piggy Piggy", + 13, + ], + [ + "Omen", + 0.32, + ], + [ + "Partygoer Cat", + 0.07, + ], + [ + "Guest 666", + 0.02, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1751126400, - "Title": "Strength Battle", }, - "configName": "StrengthBattle", - "dateCreated": "2025-07-05T23:23:43.021Z", - "dateModified": "2025-07-05T23:23:43.021Z", - "hashShort": "da755b9c7414a4a8", + "configName": "4 | Backrooms Keep Out Egg 100x", + "dateCreated": "2026-06-13T23:13:53.559Z", + "dateModified": "2026-06-20T16:08:52.905Z", + "hashShort": "4351aacaeafc8771", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 2", + "collection": "Eggs", "configData": { - "FinishTime": 1750435200, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift 2", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "BestContributor": 1, - "Item": { - "_data": { - "id": "Titanic Mosaic Cat", - "pt": 2, - }, - }, - "Worst": 1, - "WorstContributor": 3, - }, - { - "Best": 1, - "BestContributor": 4, - "Item": { - "_data": { - "id": "Titanic Mosaic Cat", - "pt": 1, - }, - }, - "Worst": 1, - "WorstContributor": 10, - }, - { - "Best": 1, - "BestContributor": 11, - "Item": { - "_data": { - "id": "Titanic Mosaic Cat", - }, - }, - "Worst": 1, - "WorstContributor": 100, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Nightmare Cyclops", - "pt": 2, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Nightmare Cyclops", - "pt": 1, - }, - }, - "Worst": 8, - }, - { - "Best": 9, - "Item": { - "_data": { - "id": "Huge Nightmare Cyclops", - }, - }, - "Worst": 20, - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Smile Egg 2x", + "overrideCost": 200, + "pets": [ + [ + "Daydream Fox", + 69.985, + ], + [ + "Skin Stealer", + 29, + ], + [ + "Faceling Raccoon", + 0.9, + ], + [ + "Tripod Octopus", + 0.1, + ], + [ + "Piggy Piggy", + 0.015, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1749916800, - "Title": "Tower Defense Battle", }, - "configName": "TowerBattle", - "dateCreated": "2025-07-05T23:23:43.021Z", - "dateModified": "2025-07-05T23:23:43.021Z", - "hashShort": "f3c9dbaab993ee3d", + "configName": "1 | Backrooms Smile Egg 2x", + "dateCreated": "2026-06-13T23:13:53.560Z", + "dateModified": "2026-06-20T16:08:52.886Z", + "hashShort": "f967ce013f631bfb", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 2", + "collection": "Eggs", "configData": { - "FinishTime": 1749225600, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift 2", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "BestContributor": 1, - "Item": { - "_data": { - "id": "Titanic Mosaic Cat", - "pt": 2, - }, - }, - "Worst": 1, - "WorstContributor": 3, - }, - { - "Best": 1, - "BestContributor": 4, - "Item": { - "_data": { - "id": "Titanic Mosaic Cat", - "pt": 1, - }, - }, - "Worst": 1, - "WorstContributor": 10, - }, - { - "Best": 1, - "BestContributor": 11, - "Item": { - "_data": { - "id": "Titanic Mosaic Cat", - }, - }, - "Worst": 1, - "WorstContributor": 100, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Junkyard Hound", - "pt": 2, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Junkyard Hound", - "pt": 1, - }, - }, - "Worst": 8, - }, - { - "Best": 9, - "Item": { - "_data": { - "id": "Huge Junkyard Hound", - }, - }, - "Worst": 20, - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Swirl Egg 2x", + "overrideCost": 1000, + "pets": [ + [ + "Faceling Raccoon", + 69.985, + ], + [ + "Memory Worm", + 29, + ], + [ + "Tripod Octopus", + 0.9, + ], + [ + "Piggy Piggy", + 0.1, + ], + [ + "Death Moth", + 0.015, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1748707200, - "Title": "Basketball Battle", }, - "configName": "BasketballBattle", - "dateCreated": "2025-07-05T23:23:43.021Z", - "dateModified": "2025-07-05T23:23:43.021Z", - "hashShort": "1bb3b65b33b159d3", + "configName": "5 | Backrooms Swirl Egg 2x", + "dateCreated": "2026-06-13T23:13:53.564Z", + "dateModified": "2026-06-20T16:08:52.907Z", + "hashShort": "09bd93021ab9e4b3", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 2", + "collection": "Eggs", "configData": { - "FinishTime": 1748016000, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift 2", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "BestContributor": 1, - "Item": { - "_data": { - "id": "Titanic Mosaic Cat", - "pt": 2, - }, - }, - "Worst": 1, - "WorstContributor": 3, - }, - { - "Best": 1, - "BestContributor": 4, - "Item": { - "_data": { - "id": "Titanic Mosaic Cat", - "pt": 1, - }, - }, - "Worst": 1, - "WorstContributor": 10, - }, - { - "Best": 1, - "BestContributor": 11, - "Item": { - "_data": { - "id": "Titanic Mosaic Cat", - }, - }, - "Worst": 1, - "WorstContributor": 100, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Balloon Corgi", - "pt": 2, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Balloon Corgi", - "pt": 1, - }, - }, - "Worst": 8, - }, - { - "Best": 9, - "Item": { - "_data": { - "id": "Huge Balloon Corgi", - }, - }, - "Worst": 20, - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Flower Egg 5x", + "overrideCost": 250, + "pets": [ + [ + "Skin Stealer", + 80.4325, + ], + [ + "Faceling Raccoon", + 19, + ], + [ + "Tripod Octopus", + 0.5, + ], + [ + "Piggy Piggy", + 0.06, + ], + [ + "Omen", + 0.0075, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1747497600, - "Title": "Balloon Corgi Battle", }, - "configName": "BalloonCorgiBattle", - "dateCreated": "2025-07-05T23:23:43.021Z", - "dateModified": "2025-07-05T23:23:43.021Z", - "hashShort": "624cfe86b418e803", + "configName": "2 | Backrooms Flower Egg 5x", + "dateCreated": "2026-06-13T23:13:53.566Z", + "dateModified": "2026-06-20T16:08:52.889Z", + "hashShort": "0bcc895948ef556b", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 2", + "collection": "Eggs", "configData": { - "FinishTime": 1746806400, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift 2", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "BestContributor": 1, - "Item": { - "_data": { - "id": "Titanic Mosaic Cat", - "pt": 2, - }, - }, - "Worst": 1, - "WorstContributor": 3, - }, - { - "Best": 1, - "BestContributor": 4, - "Item": { - "_data": { - "id": "Titanic Mosaic Cat", - "pt": 1, - }, - }, - "Worst": 1, - "WorstContributor": 10, - }, - { - "Best": 1, - "BestContributor": 11, - "Item": { - "_data": { - "id": "Titanic Mosaic Cat", - }, - }, - "Worst": 1, - "WorstContributor": 100, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Poison Turtle", - "pt": 2, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Poison Turtle", - "pt": 1, - }, - }, - "Worst": 8, - }, - { - "Best": 9, - "Item": { - "_data": { - "id": "Huge Poison Turtle", - }, - }, - "Worst": 20, - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Swirl Egg 3x", + "overrideCost": 1000, + "pets": [ + [ + "Faceling Raccoon", + 69.985, + ], + [ + "Memory Worm", + 29, + ], + [ + "Tripod Octopus", + 0.9, + ], + [ + "Piggy Piggy", + 0.1, + ], + [ + "Death Moth", + 0.015, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1746288000, - "Title": "Poison Turtle Battle", }, - "configName": "PoisonTurtleBattle", - "dateCreated": "2025-07-05T23:23:43.021Z", - "dateModified": "2025-07-05T23:23:43.021Z", - "hashShort": "c3c65f23c3e13510", + "configName": "5 | Backrooms Swirl Egg 3x", + "dateCreated": "2026-06-13T23:13:53.568Z", + "dateModified": "2026-06-20T16:08:52.904Z", + "hashShort": "4ec0275ccb0a72d9", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 2", + "collection": "Eggs", "configData": { - "FinishTime": 1745596800, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift 2", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "BestContributor": 1, - "Item": { - "_data": { - "id": "Titanic Mosaic Cat", - "pt": 2, - }, - }, - "Worst": 1, - "WorstContributor": 3, - }, - { - "Best": 1, - "BestContributor": 4, - "Item": { - "_data": { - "id": "Titanic Mosaic Cat", - "pt": 1, - }, - }, - "Worst": 1, - "WorstContributor": 10, - }, - { - "Best": 1, - "BestContributor": 11, - "Item": { - "_data": { - "id": "Titanic Mosaic Cat", - }, - }, - "Worst": 1, - "WorstContributor": 100, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Pixel Chick", - "pt": 2, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Pixel Chick", - "pt": 1, - }, - }, - "Worst": 8, - }, - { - "Best": 9, - "Item": { - "_data": { - "id": "Huge Pixel Chick", - }, - }, - "Worst": 20, - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Keep Out Egg 75x", + "overrideCost": 500, + "pets": [ + [ + "Tripod Octopus", + 86.585, + ], + [ + "Piggy Piggy", + 13, + ], + [ + "Omen", + 0.32, + ], + [ + "Partygoer Cat", + 0.07, + ], + [ + "Guest 666", + 0.02, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1745078400, - "Title": "Pixel Chick Battle", }, - "configName": "PixelChickBattle", - "dateCreated": "2025-07-05T23:23:43.021Z", - "dateModified": "2025-07-05T23:23:43.021Z", - "hashShort": "d0d8f8983329940e", + "configName": "4 | Backrooms Keep Out Egg 75x", + "dateCreated": "2026-06-13T23:13:53.574Z", + "dateModified": "2026-06-20T16:08:52.905Z", + "hashShort": "b325387456ded451", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 3", + "collection": "Eggs", "configData": { - "FinishTime": 1743782400, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift 2", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "BestContributor": 1, - "Item": { - "_data": { - "id": "Titanic Mosaic Cat", - "pt": 2, - }, - }, - "Worst": 1, - "WorstContributor": 3, - }, - { - "Best": 1, - "BestContributor": 4, - "Item": { - "_data": { - "id": "Titanic Mosaic Cat", - "pt": 1, - }, - }, - "Worst": 1, - "WorstContributor": 10, - }, - { - "Best": 1, - "BestContributor": 11, - "Item": { - "_data": { - "id": "Titanic Mosaic Cat", - }, - }, - "Worst": 1, - "WorstContributor": 100, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Athena Owl", - "pt": 2, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Athena Owl", - "pt": 1, - }, - }, - "Worst": 8, - }, - { - "Best": 9, - "Item": { - "_data": { - "id": "Huge Athena Owl", - }, - }, - "Worst": 20, - }, - ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Rain Egg 25x", + "oddsFFlags": { + "Huge Partypooper Dog": "Backrooms3RainPartyPooperMult", }, - "StartTime": 1743264000, - "Title": "Athena Battle", - }, - "configName": "AthenaBattle", - "dateCreated": "2025-07-05T23:23:43.021Z", - "dateModified": "2025-07-05T23:23:43.021Z", - "hashShort": "43a2051dc3c74cb4", - }, - { - "category": "GuildBattles", - "collection": "GuildBattles", - "configData": { - "FinishTime": 1742572800, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Tie Dye", - }, - }, - "Worst": 50, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Tie Dye", - }, - }, - "Worst": 10, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Huge Tiedye Dog", - "pt": 2, - }, - }, - "Worst": 1, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Tiedye Dog", - "pt": 1, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Tiedye Dog", - }, - }, - "Worst": 10, - }, + "overrideCost": 3000, + "pets": [ + [ + "Faceling Owl", + 70, + ], + [ + "Daydream Axolotl", + 27.4, + ], + [ + "Tripod Dominus", + 2, + ], + [ + "Partypooper Dog", + 0.5, + ], + [ + "Smiley Penguin", + 0.08, + ], + [ + "Gamemaster Cat", + 0.018, + ], + [ + "1x1x1x1", + 0.004, + ], + [ + "Huge Partypooper Dog", + 0.000002, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rareGlobalFFlag": "Backrooms3LowerEggGlobalMult", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1742054400, - "Title": "Tie Dye Battle", }, - "configName": "TieDyeBattle", - "dateCreated": "2025-07-05T23:23:43.021Z", - "dateModified": "2025-07-05T23:23:43.021Z", - "hashShort": "ff371430deb46548", + "configName": "3 | Backrooms Rain Egg 25x", + "dateCreated": "2026-06-20T16:08:52.888Z", + "dateModified": "2026-06-20T16:08:52.888Z", + "hashShort": "b76e6604bde6b764", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 3", + "collection": "Eggs", "configData": { - "FinishTime": 1741971600, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Sphinx", - }, - }, - "Worst": 50, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Sphinx", - }, - }, - "Worst": 10, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Huge Sphinx", - "pt": 2, - }, - }, - "Worst": 1, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Sphinx", - "pt": 1, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Sphinx", - }, - }, - "Worst": 10, - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Balloon Egg 15x", + "oddsFFlags": { + "Huge Daydream Axolotl": "Backrooms3HeartBalloonCrayonMult", + }, + "overrideCost": 2500, + "pets": [ + [ + "Daydream Axolotl", + 70, + ], + [ + "Faceling Owl", + 27.4, + ], + [ + "Tripod Dominus", + 2, + ], + [ + "Partypooper Dog", + 0.5, + ], + [ + "Smiley Penguin", + 0.08, + ], + [ + "Gamemaster Cat", + 0.018, + ], + [ + "1x1x1x1", + 0.004, + ], + [ + "Huge Daydream Axolotl", + 0.000014999999999999999, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rareGlobalFFlag": "Backrooms3LowerEggGlobalMult", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1741453200, - "Title": "Lucky Battle", }, - "configName": "LuckyBattle", - "dateCreated": "2025-07-05T23:23:43.021Z", - "dateModified": "2025-07-05T23:23:43.021Z", - "hashShort": "e607d21ad22288e3", + "configName": "2 | Backrooms Balloon Egg 15x", + "dateCreated": "2026-06-20T16:08:52.887Z", + "dateModified": "2026-06-20T16:08:52.887Z", + "hashShort": "a25a0fbdb9844e1d", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 3", + "collection": "Eggs", "configData": { - "FinishTime": 1740762000, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Evil", - }, - }, - "Worst": 50, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Evil", - }, - }, - "Worst": 10, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Huge Evil Deer", - "pt": 2, - }, - }, - "Worst": 1, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Evil Deer", - "pt": 1, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Evil Deer", - }, - }, - "Worst": 10, - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Eyes Egg 45x", + "oddsFFlags": { + "Huge Smiley Penguin": "Backrooms3EyesHoundMult", + }, + "overrideCost": 7500, + "pets": [ + [ + "Faceling Owl", + 70, + ], + [ + "Daydream Axolotl", + 27.4, + ], + [ + "Tripod Dominus", + 2, + ], + [ + "Partypooper Dog", + 0.5, + ], + [ + "Smiley Penguin", + 0.08, + ], + [ + "Gamemaster Cat", + 0.018, + ], + [ + "1x1x1x1", + 0.004, + ], + [ + "Huge Smiley Penguin", + 0.000044999999999999996, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rareGlobalFFlag": "Backrooms3LowerEggGlobalMult", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1740243600, - "Title": "Evil Battle", }, - "configName": "CardBattle", - "dateCreated": "2025-07-05T23:23:43.021Z", - "dateModified": "2025-07-05T23:23:43.021Z", - "hashShort": "30cf4a1de588b996", + "configName": "4 | Backrooms Eyes Egg 45x", + "dateCreated": "2026-06-20T16:08:52.904Z", + "dateModified": "2026-06-20T16:08:52.904Z", + "hashShort": "80031d09439cabbc", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 3", + "collection": "Eggs", "configData": { - "FinishTime": 1739552400, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Holographic", - }, - }, - "Worst": 50, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Holographic", - }, - }, - "Worst": 10, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Huge Holographic Monkey", - "pt": 2, - }, - }, - "Worst": 1, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Holographic Monkey", - "pt": 1, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Holographic Monkey", - }, - }, - "Worst": 10, - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Eyes Egg 35x", + "oddsFFlags": { + "Huge Smiley Penguin": "Backrooms3EyesHoundMult", + }, + "overrideCost": 7500, + "pets": [ + [ + "Faceling Owl", + 70, + ], + [ + "Daydream Axolotl", + 27.4, + ], + [ + "Tripod Dominus", + 2, + ], + [ + "Partypooper Dog", + 0.5, + ], + [ + "Smiley Penguin", + 0.08, + ], + [ + "Gamemaster Cat", + 0.018, + ], + [ + "1x1x1x1", + 0.004, + ], + [ + "Huge Smiley Penguin", + 0.000035, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rareGlobalFFlag": "Backrooms3LowerEggGlobalMult", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1739034000, - "Title": "Holographic Battle", }, - "configName": "ValBattle", - "dateCreated": "2025-07-05T23:23:43.021Z", - "dateModified": "2025-07-05T23:23:43.021Z", - "hashShort": "6a10df8ae1a89834", + "configName": "4 | Backrooms Eyes Egg 35x", + "dateCreated": "2026-06-20T16:08:52.906Z", + "dateModified": "2026-06-20T16:08:52.906Z", + "hashShort": "79a509dc171668c2", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 3", + "collection": "Eggs", "configData": { - "FinishTime": 1738342800, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Mushroom", - }, - }, - "Worst": 50, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Mushroom", - }, - }, - "Worst": 10, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Huge Mushroom King", - "pt": 2, - }, - }, - "Worst": 1, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Mushroom King", - "pt": 1, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Mushroom King", - }, - }, - "Worst": 10, - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Danger Egg 250x", + "oddsFFlags": { + "Gargantuan 1x1x1x1": "Backrooms3DangerGargantuanMult", + "Huge Daydream Axolotl": "Backrooms3DangerCrayonMult", + "Huge Partypooper Dog": "Backrooms3DangerPartyPooperMult", + "Huge Smiley Penguin": "Backrooms3DangerHoundMult", + "Titanic Gamemaster Cat": "Backrooms3DangerTitanicMult", + }, + "overrideCost": 25000, + "pets": [ + [ + "Tripod Dominus", + 86.585, + ], + [ + "Partypooper Dog", + 13, + ], + [ + "Smiley Penguin", + 0.32, + ], + [ + "Gamemaster Cat", + 0.07, + ], + [ + "1x1x1x1", + 0.02, + ], + [ + "Huge Daydream Axolotl", + 0.0000375, + ], + [ + "Huge Partypooper Dog", + 0.00002, + ], + [ + "Huge Smiley Penguin", + 0.000029999999999999997, + ], + [ + "Titanic Gamemaster Cat", + 0.000001875, + ], + [ + "Gargantuan 1x1x1x1", + 4.1249999999999995e-8, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rareGlobalFFlag": "Backrooms3DangerGlobalMult", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1737824400, - "Title": "Cannon Battle", }, - "configName": "CannonBattle", - "dateCreated": "2025-07-05T23:23:43.021Z", - "dateModified": "2025-07-05T23:23:43.021Z", - "hashShort": "a1a49141892059de", + "configName": "5 | Backrooms Danger Egg 250x", + "dateCreated": "2026-06-20T16:08:52.914Z", + "dateModified": "2026-06-20T16:08:52.914Z", + "hashShort": "4a41d0e3efadec9d", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 3", + "collection": "Eggs", "configData": { - "FinishTime": 1737738000, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Wyvern of Hades", - }, - }, - "Worst": 50, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Wyvern of Hades", - }, - }, - "Worst": 10, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Huge Wyvern of Hades", - "pt": 2, - }, - }, - "Worst": 1, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Wyvern of Hades", - "pt": 1, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Wyvern of Hades", - }, - }, - "Worst": 10, - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Danger Egg 75x", + "oddsFFlags": { + "Huge Daydream Axolotl": "Backrooms3DangerCrayonMult", + "Huge Partypooper Dog": "Backrooms3DangerPartyPooperMult", + "Huge Smiley Penguin": "Backrooms3DangerHoundMult", + }, + "overrideCost": 12500, + "pets": [ + [ + "Tripod Dominus", + 86.585, + ], + [ + "Partypooper Dog", + 13, + ], + [ + "Smiley Penguin", + 0.32, + ], + [ + "Gamemaster Cat", + 0.07, + ], + [ + "1x1x1x1", + 0.02, + ], + [ + "Huge Daydream Axolotl", + 0.000011249999999999999, + ], + [ + "Huge Partypooper Dog", + 0.000006, + ], + [ + "Huge Smiley Penguin", + 0.000008999999999999999, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rareGlobalFFlag": "Backrooms3DangerGlobalMult", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1736614800, - "Title": "Pet Games Battle", }, - "configName": "SquidBattle", - "dateCreated": "2025-07-05T23:23:43.021Z", - "dateModified": "2025-07-05T23:23:43.021Z", - "hashShort": "1295b64a68ef2cff", + "configName": "5 | Backrooms Danger Egg 75x", + "dateCreated": "2026-06-20T16:08:52.900Z", + "dateModified": "2026-06-20T16:08:52.900Z", + "hashShort": "46c6dbb6557c5c21", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 3", + "collection": "Eggs", "configData": { - "FinishTime": 1735923600, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Blurred", - }, - }, - "Worst": 50, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Blurred", - }, - }, - "Worst": 10, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Huge Blurred Agony", - "pt": 2, - }, - }, - "Worst": 1, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Blurred Agony", - "pt": 1, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Blurred Agony", - }, - }, - "Worst": 10, - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Heart Egg 1x", + "oddsFFlags": { + "Huge Daydream Axolotl": "Backrooms3HeartBalloonCrayonMult", + }, + "overrideCost": 2000, + "pets": [ + [ + "Daydream Axolotl", + 70, + ], + [ + "Faceling Owl", + 27.4, + ], + [ + "Tripod Dominus", + 2, + ], + [ + "Partypooper Dog", + 0.5, + ], + [ + "Smiley Penguin", + 0.08, + ], + [ + "Gamemaster Cat", + 0.018, + ], + [ + "1x1x1x1", + 0.004, + ], + [ + "Huge Daydream Axolotl", + 0.000001, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rareGlobalFFlag": "Backrooms3LowerEggGlobalMult", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1735405200, - "Title": "New Years Battle", }, - "configName": "NewYear2024", - "dateCreated": "2025-07-05T23:23:43.021Z", - "dateModified": "2025-07-05T23:23:43.021Z", - "hashShort": "fff01c1b8053c8b8", + "configName": "1 | Backrooms Heart Egg 1x", + "dateCreated": "2026-06-20T16:08:52.896Z", + "dateModified": "2026-06-20T16:08:52.896Z", + "hashShort": "264ef4716b855bf5", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 3", + "collection": "Eggs", "configData": { - "FinishTime": 1735318800, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Diamond", - }, - }, - "Worst": 50, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Diamond", - }, - }, - "Worst": 10, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Huge Diamond Dragon", - "pt": 2, - }, - }, - "Worst": 1, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Diamond Dragon", - "pt": 1, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Diamond Dragon", - }, - }, - "Worst": 10, - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Rain Egg 20x", + "oddsFFlags": { + "Huge Partypooper Dog": "Backrooms3RainPartyPooperMult", + }, + "overrideCost": 3000, + "pets": [ + [ + "Faceling Owl", + 70, + ], + [ + "Daydream Axolotl", + 27.4, + ], + [ + "Tripod Dominus", + 2, + ], + [ + "Partypooper Dog", + 0.5, + ], + [ + "Smiley Penguin", + 0.08, + ], + [ + "Gamemaster Cat", + 0.018, + ], + [ + "1x1x1x1", + 0.004, + ], + [ + "Huge Partypooper Dog", + 0.0000016, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rareGlobalFFlag": "Backrooms3LowerEggGlobalMult", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1734800400, - "Title": "Christmas Present Battle", }, - "configName": "YearEnd2024", - "dateCreated": "2025-07-05T23:23:43.021Z", - "dateModified": "2025-07-05T23:23:43.021Z", - "hashShort": "f44e25586a462dd9", + "configName": "3 | Backrooms Rain Egg 20x", + "dateCreated": "2026-06-20T16:08:52.906Z", + "dateModified": "2026-06-20T16:08:52.906Z", + "hashShort": "7bb963418ad7f7a6", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 3", + "collection": "Eggs", "configData": { - "FinishTime": 1734714000, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Gingerbread", - }, - }, - "Worst": 50, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Gingerbread", - }, - }, - "Worst": 10, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Huge Gingerbread Dragon", - "pt": 2, - }, - }, - "Worst": 1, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Gingerbread Dragon", - "pt": 1, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Gingerbread Dragon", - }, - }, - "Worst": 10, - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Danger Egg 100x", + "oddsFFlags": { + "Gargantuan 1x1x1x1": "Backrooms3DangerGargantuanMult", + "Huge Daydream Axolotl": "Backrooms3DangerCrayonMult", + "Huge Partypooper Dog": "Backrooms3DangerPartyPooperMult", + "Huge Smiley Penguin": "Backrooms3DangerHoundMult", + "Titanic Gamemaster Cat": "Backrooms3DangerTitanicMult", + }, + "overrideCost": 12500, + "pets": [ + [ + "Tripod Dominus", + 86.585, + ], + [ + "Partypooper Dog", + 13, + ], + [ + "Smiley Penguin", + 0.32, + ], + [ + "Gamemaster Cat", + 0.07, + ], + [ + "1x1x1x1", + 0.02, + ], + [ + "Huge Daydream Axolotl", + 0.000014999999999999999, + ], + [ + "Huge Partypooper Dog", + 0.000008, + ], + [ + "Huge Smiley Penguin", + 0.000011999999999999999, + ], + [ + "Titanic Gamemaster Cat", + 0.0000015, + ], + [ + "Gargantuan 1x1x1x1", + 3.3e-8, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rareGlobalFFlag": "Backrooms3DangerGlobalMult", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1734195630, - "Title": "Gingerbread Battle", }, - "configName": "Christmas2024", - "dateCreated": "2025-07-05T23:23:43.021Z", - "dateModified": "2025-07-05T23:23:43.021Z", - "hashShort": "82fb6701fc2e60f0", + "configName": "5 | Backrooms Danger Egg 100x", + "dateCreated": "2026-06-20T16:08:52.914Z", + "dateModified": "2026-06-20T16:08:52.914Z", + "hashShort": "4f5b34c0d58dbf2a", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 3", + "collection": "Eggs", "configData": { - "FinishTime": 1734109200, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Bee", - }, - }, - "Worst": 50, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Bee", - }, - }, - "Worst": 10, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Huge Doodle Bee", - "pt": 2, - }, - }, - "Worst": 1, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Doodle Bee", - "pt": 1, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Doodle Bee", - }, - }, - "Worst": 10, - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Balloon Egg 5x", + "oddsFFlags": { + "Huge Daydream Axolotl": "Backrooms3HeartBalloonCrayonMult", + }, + "overrideCost": 2500, + "pets": [ + [ + "Daydream Axolotl", + 70, + ], + [ + "Faceling Owl", + 27.4, + ], + [ + "Tripod Dominus", + 2, + ], + [ + "Partypooper Dog", + 0.5, + ], + [ + "Smiley Penguin", + 0.08, + ], + [ + "Gamemaster Cat", + 0.018, + ], + [ + "1x1x1x1", + 0.004, + ], + [ + "Huge Daydream Axolotl", + 0.0000049999999999999996, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rareGlobalFFlag": "Backrooms3LowerEggGlobalMult", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1733590800, - "Title": "Bee Battle", }, - "configName": "SantaBattle", - "dateCreated": "2025-07-05T23:23:43.021Z", - "dateModified": "2025-07-05T23:23:43.021Z", - "hashShort": "8da8ff988383f2c7", + "configName": "2 | Backrooms Balloon Egg 5x", + "dateCreated": "2026-06-20T16:08:52.901Z", + "dateModified": "2026-06-20T16:08:52.901Z", + "hashShort": "73842e26757702ba", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 3", + "collection": "Eggs", "configData": { - "FinishTime": 1732291200, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Blimp Dragon", - }, - }, - "Worst": 50, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Blimp Dragon", - }, - }, - "Worst": 10, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Huge Blimp Dragon", - "pt": 2, - }, - }, - "Worst": 1, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Blimp Dragon", - "pt": 1, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Blimp Dragon", - }, - }, - "Worst": 10, - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Eyes Egg 40x", + "oddsFFlags": { + "Huge Smiley Penguin": "Backrooms3EyesHoundMult", + }, + "overrideCost": 7500, + "pets": [ + [ + "Faceling Owl", + 70, + ], + [ + "Daydream Axolotl", + 27.4, + ], + [ + "Tripod Dominus", + 2, + ], + [ + "Partypooper Dog", + 0.5, + ], + [ + "Smiley Penguin", + 0.08, + ], + [ + "Gamemaster Cat", + 0.018, + ], + [ + "1x1x1x1", + 0.004, + ], + [ + "Huge Smiley Penguin", + 0.000039999999999999996, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rareGlobalFFlag": "Backrooms3LowerEggGlobalMult", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1731168000, - "Title": "Line Battle", }, - "configName": "LineBattle", - "dateCreated": "2025-07-05T23:23:43.021Z", - "dateModified": "2025-07-05T23:23:43.021Z", - "hashShort": "4b55fba1e60ef394", + "configName": "4 | Backrooms Eyes Egg 40x", + "dateCreated": "2026-06-20T16:08:52.907Z", + "dateModified": "2026-06-20T16:08:52.907Z", + "hashShort": "9e2cd35c27b2d86b", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 3", + "collection": "Eggs", "configData": { - "FinishTime": 1730476800, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Ghost Cat", - }, - }, - "Worst": 50, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Ghost", - }, - }, - "Worst": 10, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Huge Ghost Cat", - "pt": 2, - }, - }, - "Worst": 1, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Ghost Cat", - "pt": 1, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Ghost Cat", - }, - }, - "Worst": 10, - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Danger Egg 50x", + "oddsFFlags": { + "Huge Daydream Axolotl": "Backrooms3DangerCrayonMult", + "Huge Partypooper Dog": "Backrooms3DangerPartyPooperMult", + "Huge Smiley Penguin": "Backrooms3DangerHoundMult", + }, + "overrideCost": 12500, + "pets": [ + [ + "Tripod Dominus", + 86.585, + ], + [ + "Partypooper Dog", + 13, + ], + [ + "Smiley Penguin", + 0.32, + ], + [ + "Gamemaster Cat", + 0.07, + ], + [ + "1x1x1x1", + 0.02, + ], + [ + "Huge Daydream Axolotl", + 0.000007499999999999999, + ], + [ + "Huge Partypooper Dog", + 0.000004, + ], + [ + "Huge Smiley Penguin", + 0.000005999999999999999, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rareGlobalFFlag": "Backrooms3DangerGlobalMult", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1729353600, - "Title": "Ghost Battle", }, - "configName": "HalloweenBattle", - "dateCreated": "2025-07-05T23:23:43.021Z", - "dateModified": "2025-07-05T23:23:43.021Z", - "hashShort": "25abcc6e7baa049b", + "configName": "5 | Backrooms Danger Egg 50x", + "dateCreated": "2026-06-20T16:08:52.915Z", + "dateModified": "2026-06-20T16:08:52.915Z", + "hashShort": "86e15bfcc1e8cc31", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 3", + "collection": "Eggs", "configData": { - "FinishTime": 1728057600, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Reversed", - }, - }, - "Worst": 50, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Reversed", - }, - }, - "Worst": 10, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Huge Reversed Cat", - "pt": 2, - }, - }, - "Worst": 1, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Reversed Cat", - "pt": 1, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Reversed Cat", - }, - }, - "Worst": 10, - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Rain Egg 30x", + "oddsFFlags": { + "Huge Partypooper Dog": "Backrooms3RainPartyPooperMult", + }, + "overrideCost": 3000, + "pets": [ + [ + "Faceling Owl", + 70, + ], + [ + "Daydream Axolotl", + 27.4, + ], + [ + "Tripod Dominus", + 2, + ], + [ + "Partypooper Dog", + 0.5, + ], + [ + "Smiley Penguin", + 0.08, + ], + [ + "Gamemaster Cat", + 0.018, + ], + [ + "1x1x1x1", + 0.004, + ], + [ + "Huge Partypooper Dog", + 0.0000024, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rareGlobalFFlag": "Backrooms3LowerEggGlobalMult", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1726934400, - "Title": "Catching Battle", }, - "configName": "CatchingBattle", - "dateCreated": "2025-07-05T23:23:43.021Z", - "dateModified": "2025-07-05T23:23:43.021Z", - "hashShort": "b6db7dc15a9c2e39", + "configName": "3 | Backrooms Rain Egg 30x", + "dateCreated": "2026-06-20T16:08:52.899Z", + "dateModified": "2026-06-20T16:08:52.899Z", + "hashShort": "2623edcaeb824801", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 3", + "collection": "Eggs", "configData": { - "FinishTime": 1726243200, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Rave Crab", - }, - }, - "Worst": 50, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Rave Crab", - }, - }, - "Worst": 10, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Huge Rave Crab", - "pt": 2, - }, - }, - "Worst": 1, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Rave Crab", - "pt": 1, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Rave Crab", - }, - }, - "Worst": 10, - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Balloon Egg 10x", + "oddsFFlags": { + "Huge Daydream Axolotl": "Backrooms3HeartBalloonCrayonMult", + }, + "overrideCost": 2500, + "pets": [ + [ + "Daydream Axolotl", + 70, + ], + [ + "Faceling Owl", + 27.4, + ], + [ + "Tripod Dominus", + 2, + ], + [ + "Partypooper Dog", + 0.5, + ], + [ + "Smiley Penguin", + 0.08, + ], + [ + "Gamemaster Cat", + 0.018, + ], + [ + "1x1x1x1", + 0.004, + ], + [ + "Huge Daydream Axolotl", + 0.000009999999999999999, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rareGlobalFFlag": "Backrooms3LowerEggGlobalMult", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1725120000, - "Title": "Crab Battle", }, - "configName": "CrabBattle", - "dateCreated": "2025-07-05T23:23:43.021Z", - "dateModified": "2025-07-05T23:23:43.021Z", - "hashShort": "74bf065243d512f7", + "configName": "2 | Backrooms Balloon Egg 10x", + "dateCreated": "2026-06-20T16:08:52.903Z", + "dateModified": "2026-06-20T16:08:52.903Z", + "hashShort": "8c43c98ce62ef7f5", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 3", + "collection": "Eggs", "configData": { - "FinishTime": 1724428800, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Ice Cream", - }, - }, - "Worst": 50, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Ice Cream", - }, - }, - "Worst": 10, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Huge Ice Cream Cone", - "pt": 2, - }, - }, - "Worst": 1, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Ice Cream Cone", - "pt": 1, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Ice Cream Cone", - }, - }, - "Worst": 10, - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Heart Egg 2x", + "oddsFFlags": { + "Huge Daydream Axolotl": "Backrooms3HeartBalloonCrayonMult", + }, + "overrideCost": 2000, + "pets": [ + [ + "Daydream Axolotl", + 70, + ], + [ + "Faceling Owl", + 27.4, + ], + [ + "Tripod Dominus", + 2, + ], + [ + "Partypooper Dog", + 0.5, + ], + [ + "Smiley Penguin", + 0.08, + ], + [ + "Gamemaster Cat", + 0.018, + ], + [ + "1x1x1x1", + 0.004, + ], + [ + "Huge Daydream Axolotl", + 0.000002, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rareGlobalFFlag": "Backrooms3LowerEggGlobalMult", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1723305600, - "Title": "RNG Battle", }, - "configName": "RngBattle", - "dateCreated": "2025-07-05T23:23:43.021Z", - "dateModified": "2025-07-05T23:23:43.021Z", - "hashShort": "821b3fed7faec478", + "configName": "1 | Backrooms Heart Egg 2x", + "dateCreated": "2026-06-20T16:08:52.902Z", + "dateModified": "2026-06-20T16:08:52.902Z", + "hashShort": "0551dd1372b63a1a", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Backrooms Update 3", + "collection": "Eggs", "configData": { - "FinishTime": 1722614400, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Clown", - }, - }, - "Worst": 50, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Clown", - }, - }, - "Worst": 10, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Huge Clown Cat", - "pt": 2, - }, - }, - "Worst": 1, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Clown Cat", - "pt": 1, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Clown Cat", - }, - }, - "Worst": 10, - }, + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Heart Egg 3x", + "oddsFFlags": { + "Huge Daydream Axolotl": "Backrooms3HeartBalloonCrayonMult", + }, + "overrideCost": 2000, + "pets": [ + [ + "Daydream Axolotl", + 70, + ], + [ + "Faceling Owl", + 27.4, + ], + [ + "Tripod Dominus", + 2, + ], + [ + "Partypooper Dog", + 0.5, + ], + [ + "Smiley Penguin", + 0.08, + ], + [ + "Gamemaster Cat", + 0.018, + ], + [ + "1x1x1x1", + 0.004, + ], + [ + "Huge Daydream Axolotl", + 0.000003, + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rareGlobalFFlag": "Backrooms3LowerEggGlobalMult", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1721491200, - "Title": "Millionaire Run Battle", }, - "configName": "MillionaireRunBattle", - "dateCreated": "2025-07-05T23:23:43.021Z", - "dateModified": "2025-07-05T23:23:43.021Z", - "hashShort": "e3079c3f40ac3b06", + "configName": "1 | Backrooms Heart Egg 3x", + "dateCreated": "2026-06-20T16:08:52.897Z", + "dateModified": "2026-06-20T16:08:52.897Z", + "hashShort": "275c66071a193e06", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Soccer", + "collection": "Eggs", "configData": { - "FinishTime": 1720195200, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Safety", - }, - }, - "Worst": 50, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Safety", - }, - }, - "Worst": 10, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Huge Safety Cat", - "pt": 2, - }, - }, - "Worst": 1, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Safety Cat", - "pt": 1, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Safety Cat", - }, - }, - "Worst": 10, - }, + "currency": "SoccerCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Soccer Egg 4", + "overrideCost": 2000, + "pets": [ + [ + "Soccerball Griffin", + 80, + ], + [ + "Jersey Seal", + 15, + ], + [ + "Coach Chihuahua", + 4, + "Great", + ], + [ + "Referee Zebra", + 1, + "Insane", + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1719072000, - "Title": "Good vs. Evil Battle", }, - "configName": "GoodEvilBattle", - "dateCreated": "2025-07-05T23:23:43.021Z", - "dateModified": "2025-07-05T23:23:43.021Z", - "hashShort": "1457406ef9ceec0f", + "configName": "4 | Soccer Egg 4", + "dateCreated": "2026-06-27T16:06:53.641Z", + "dateModified": "2026-06-27T16:06:53.641Z", + "hashShort": "2f291ed4eebe8e81", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Soccer", + "collection": "Eggs", "configData": { - "FinishTime": 1718985600, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Wicked", - }, - }, - "Worst": 50, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Wicked", - }, - }, - "Worst": 10, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Huge Wicked Empyrean Dragon", - "pt": 2, - }, - }, - "Worst": 1, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Wicked Empyrean Dragon", - "pt": 1, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Wicked Empyrean Dragon", - }, - }, - "Worst": 10, - }, + "currency": "SoccerCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Soccer Egg 1", + "overrideCost": 250, + "pets": [ + [ + "Soccerball Cat", + 88, + ], + [ + "Soccerball Dog", + 10, + ], + [ + "Soccerball Jaguar", + 2, + "Nice", + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1717862400, - "Title": "Wicked Battle", }, - "configName": "HackerBattle", - "dateCreated": "2025-07-05T23:23:43.021Z", - "dateModified": "2025-07-05T23:23:43.021Z", - "hashShort": "0c76467a7ff6bae0", + "configName": "1 | Soccer Egg 1", + "dateCreated": "2026-06-27T16:06:53.641Z", + "dateModified": "2026-06-27T16:06:53.641Z", + "hashShort": "2a31408fb7022794", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Soccer", + "collection": "Eggs", "configData": { - "FinishTime": 1717171200, - "PlacementRewards": [ - { - "Best": 1, - "Item": { - "_data": { - "id": "Clan Gift", - }, - }, - "Worst": 500, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Fragmented", - }, - }, - "Worst": 50, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Fragmented", - }, - }, - "Worst": 10, - }, - { - "Best": 1, - "Item": { - "_data": { - "id": "Huge Fragmented Dominus", - "pt": 2, - }, - }, - "Worst": 1, - }, - { - "Best": 2, - "Item": { - "_data": { - "id": "Huge Fragmented Dominus", - "pt": 1, - }, - }, - "Worst": 3, - }, - { - "Best": 4, - "Item": { - "_data": { - "id": "Huge Fragmented Dominus", - }, - }, - "Worst": 10, - }, + "currency": "SoccerCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Soccer Egg 2", + "overrideCost": 500, + "pets": [ + [ + "Soccerball Dog", + 80, + ], + [ + "Soccerball Jaguar", + 15, + ], + [ + "Soccerball Red Panda", + 4, + "Nice", + ], + [ + "Soccerball Elephant", + 1, + "Great", + ], ], - "Rewards": { - "Bronze": [], - "Gold": [], - "Good": [], - "Silver": [], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1716048000, - "Title": "Prison Battle", }, - "configName": "PrisonBattle", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.557Z", - "hashShort": "6fbf663f05701638", + "configName": "2 | Soccer Egg 2", + "dateCreated": "2026-06-27T16:06:53.640Z", + "dateModified": "2026-06-27T16:06:53.640Z", + "hashShort": "87ccbf1d2122aa3d", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Soccer", + "collection": "Eggs", "configData": { - "FinishTime": 1715443200, - "Rewards": { - "Bronze": [ - { - "_data": { - "id": "Bubble", - }, - }, + "currency": "SoccerCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Soccer Egg 3", + "overrideCost": 1000, + "pets": [ + [ + "Soccerball Red Panda", + 80, ], - "Gold": [ - { - "_data": { - "id": "Huge Bubble Dog", - }, - }, + [ + "Soccerball Elephant", + 15, ], - "Good": [ - { - "_data": { - "id": "Clan Gift", - }, - }, + [ + "Soccerball Griffin", + 4, + "Nice", ], - "Silver": [ - { - "_data": { - "id": "Bubble", - }, - }, + [ + "Jersey Seal", + 1, + "Great", ], + ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1714233600, - "Title": "Bubble Battle", }, - "configName": "GlitchBattle", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.554Z", - "hashShort": "2a2ba2c3b84f77f2", + "configName": "3 | Soccer Egg 3", + "dateCreated": "2026-06-27T16:06:53.642Z", + "dateModified": "2026-06-27T16:06:53.642Z", + "hashShort": "bd0c8f955f6f1ed0", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Soccer", + "collection": "Eggs", "configData": { - "FinishTime": 1713628800, - "HasGoals": true, - "Rewards": { - "Bronze": [ - { - "_data": { - "id": "Pixel", - }, - }, + "currency": "SoccerCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Soccer Egg 5 Tier 3", + "oddsFFlags": { + "Goalie Monkey": "Soccer_GoalieMonkeyEggOdds", + "Soccerball Trophy Angelus": "Soccer_AngelusEggOdds", + "Soccerball Trophy Dragon": "Soccer_TrophyDragonEggOdds", + }, + "overrideCost": 4000, + "pets": [ + [ + "Coach Chihuahua", + 80, ], - "Gold": [ - { - "_data": { - "id": "Huge Pixel Shark", - }, - }, + [ + "Referee Zebra", + 15, ], - "Good": [ - { - "_data": { - "id": "Clan Gift", - }, - }, + [ + "Goalie Monkey", + 0.005, + "Insane", ], - "Silver": [ - { - "_data": { - "id": "Pixel Dragon", - }, - }, + [ + "Soccerball Trophy Dragon", + 0.0005, + "Insane", + ], + [ + "Soccerball Trophy Angelus", + 0.0002, + "Insane", ], + ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1712419200, - "Title": "Goal Battle: Two", }, - "configName": "GoalBattleTwo", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.573Z", - "hashShort": "381a32e73a08b2c6", + "configName": "5 | Soccer Egg 5 Tier 3", + "dateCreated": "2026-06-27T16:06:53.642Z", + "dateModified": "2026-06-27T16:06:53.642Z", + "hashShort": "c836013c96d31be2", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Soccer", + "collection": "Eggs", "configData": { - "FinishTime": 1711818000, - "HasGoals": true, - "Rewards": { - "Bronze": [ - { - "_data": { - "id": "Alien", - }, - }, + "currency": "SoccerCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Soccer Egg 5 Tier 6", + "oddsFFlags": { + "Goalie Monkey": "Soccer_GoalieMonkeyEggOdds", + "Soccerball Trophy Angelus": "Soccer_AngelusEggOdds", + "Soccerball Trophy Dragon": "Soccer_TrophyDragonEggOdds", + }, + "overrideCost": 4000, + "pets": [ + [ + "Referee Zebra", + 80, ], - "Gold": [ - { - "_data": { - "id": "Huge Alien Arachnid", - }, - }, - { - "_data": { - "id": "Exclusive Egg 23", - }, - }, - { - "_data": { - "id": "Exclusive Egg 23", - }, - }, - { - "_data": { - "id": "Exclusive Egg 23", - }, - }, - { - "_data": { - "id": "Exclusive Egg 23", - }, - }, - { - "_data": { - "id": "Exclusive Egg 23", - }, - }, - { - "_data": { - "id": "Exclusive Egg 23", - }, - }, - { - "_data": { - "id": "Exclusive Egg 23", - }, - }, + [ + "Goalie Monkey", + 0.005, + "Insane", ], - "Silver": [ - { - "_data": { - "id": "Bleebo The Alien", - }, - }, - { - "_data": { - "id": "Exclusive Egg 23", - }, - }, - { - "_data": { - "id": "Exclusive Egg 23", - }, - }, - { - "_data": { - "id": "Exclusive Egg 23", - }, - }, + [ + "Soccerball Trophy Dragon", + 0.0005, + "Insane", + ], + [ + "Soccerball Trophy Angelus", + 0.0002, + "Insane", ], + ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, }, - "StartTime": 1710608400, - "Title": "Goal Battle: One", }, - "configName": "GoalBattleOne", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.556Z", - "hashShort": "a1970bc113b1f25b", + "configName": "5 | Soccer Egg 5 Tier 6", + "dateCreated": "2026-06-27T16:06:53.644Z", + "dateModified": "2026-06-27T16:06:53.644Z", + "hashShort": "48d914e3fb67558b", }, { - "category": "GuildBattles", - "collection": "GuildBattles", + "category": "Soccer", + "collection": "Eggs", "configData": { - "FinishTime": 1710522000, - "Rewards": { - "Bronze": [ - { - "_data": { - "id": "Galaxy", - }, - }, + "currency": "SoccerCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Soccer Egg 5 Tier 1", + "oddsFFlags": { + "Goalie Monkey": "Soccer_GoalieMonkeyEggOdds", + }, + "overrideCost": 4000, + "pets": [ + [ + "Jersey Seal", + 90, ], - "Gold": [ - { - "_data": { - "id": "Huge Mystical Fox", - }, - }, - { - "_data": { - "id": "Exclusive Egg 22", - }, - }, - { - "_data": { - "id": "Exclusive Egg 22", - }, - }, - { - "_data": { - "id": "Exclusive Egg 22", - }, - }, - { - "_data": { - "id": "Exclusive Egg 22", - }, - }, - { - "_data": { - "id": "Exclusive Egg 22", - }, - }, - { - "_data": { - "id": "Exclusive Egg 22", - }, - }, - { - "_data": { - "id": "Exclusive Egg 22", - }, - }, - ], - "Silver": [ - { - "_data": { - "id": "Cosmic", - }, - }, - { - "_data": { - "id": "Exclusive Egg 22", - }, - }, - { - "_data": { - "id": "Exclusive Egg 22", - }, - }, - { - "_data": { - "id": "Exclusive Egg 22", - }, - }, - ], - }, - "StartTime": 1708794000, - "Title": "Raid Battle", - }, - "configName": "RaidBattle", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.573Z", - "hashShort": "a96272e0b1e330f0", - }, - { - "category": "GuildBattles", - "collection": "GuildBattles", - "configData": { - "FinishTime": 1708707600, - "Rewards": { - "Bronze": [ - { - "_data": { - "id": "Empyrean", - }, - }, - ], - "Gold": [ - { - "_data": { - "id": "Huge Empyrean Axolotl", - }, - }, - { - "_data": { - "id": "Exclusive Egg 21", - }, - }, - { - "_data": { - "id": "Exclusive Egg 21", - }, - }, - { - "_data": { - "id": "Exclusive Egg 21", - }, - }, - { - "_data": { - "id": "Exclusive Egg 21", - }, - }, - { - "_data": { - "id": "Exclusive Egg 21", - }, - }, - { - "_data": { - "id": "Exclusive Egg 21", - }, - }, - { - "_data": { - "id": "Exclusive Egg 21", - }, - }, - ], - "Silver": [ - { - "_data": { - "id": "Ducky", - }, - }, - { - "_data": { - "id": "Exclusive Egg 21", - }, - }, - { - "_data": { - "id": "Exclusive Egg 21", - }, - }, - { - "_data": { - "id": "Exclusive Egg 21", - }, - }, - ], - }, - "StartTime": 1707584400, - "Title": "Achievements Battle", - }, - "configName": "AchBattle", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.555Z", - "hashShort": "a8dcee91f4098280", - }, - { - "category": "GuildBattles", - "collection": "GuildBattles", - "configData": { - "FinishTime": 1707498000, - "Rewards": { - "Bronze": [ - { - "_data": { - "id": "M10", - }, - }, - ], - "Gold": [ - { - "_data": { - "id": "Huge Sensei Penguin", - }, - }, - { - "_data": { - "id": "Exclusive Egg 20", - }, - }, - { - "_data": { - "id": "Exclusive Egg 20", - }, - }, - { - "_data": { - "id": "Exclusive Egg 20", - }, - }, - { - "_data": { - "id": "Exclusive Egg 20", - }, - }, - { - "_data": { - "id": "Exclusive Egg 20", - }, - }, - { - "_data": { - "id": "Exclusive Egg 20", - }, - }, - { - "_data": { - "id": "Exclusive Egg 20", - }, - }, - ], - "Silver": [ - { - "_data": { - "id": "Pegasus", - }, - }, - { - "_data": { - "id": "Exclusive Egg 20", - }, - }, - { - "_data": { - "id": "Exclusive Egg 20", - }, - }, - { - "_data": { - "id": "Exclusive Egg 20", - }, - }, - ], - }, - "StartTime": 1705770000, - "Title": "Pet Collection Battle", - }, - "configName": "IndexBattle", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.558Z", - "hashShort": "e6158c2bb88733fe", - }, - { - "category": "GuildBattles", - "collection": "GuildBattles", - "configData": { - "FinishTime": 1705683600, - "Rewards": { - "Bronze": [ - { - "_data": { - "id": "Cupcake", - }, - }, - ], - "Gold": [ - { - "_data": { - "id": "Huge Owl", - }, - }, - { - "_data": { - "id": "Exclusive Egg 18", - }, - }, - { - "_data": { - "id": "Exclusive Egg 18", - }, - }, - { - "_data": { - "id": "Exclusive Egg 18", - }, - }, - { - "_data": { - "id": "Exclusive Egg 18", - }, - }, - { - "_data": { - "id": "Exclusive Egg 18", - }, - }, - { - "_data": { - "id": "Exclusive Egg 18", - }, - }, - { - "_data": { - "id": "Exclusive Egg 18", - }, - }, - ], - "Silver": [ - { - "_data": { - "id": "Blobfish", - }, - }, - { - "_data": { - "id": "Exclusive Egg 18", - }, - }, - { - "_data": { - "id": "Exclusive Egg 18", - }, - }, - { - "_data": { - "id": "Exclusive Egg 18", - }, - }, - ], - }, - "StartTime": 1703955600, - "Title": "New Year's Clan Battle", - }, - "configName": "DecemberActiveHugePets", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.559Z", - "hashShort": "01bb67b6eeeb984e", - }, - { - "category": "GuildBattles", - "collection": "GuildBattles", - "configData": { - "FinishTime": 1703869200, - "Rewards": { - "Bronze": [ - { - "_data": { - "id": "Present", - }, - }, + [ + "Coach Chihuahua", + 8, ], - "Gold": [ - { - "_data": { - "id": "Huge Present Cat", - }, - }, - { - "_data": { - "id": "Exclusive Egg 18", - }, - }, - { - "_data": { - "id": "Exclusive Egg 18", - }, - }, - { - "_data": { - "id": "Exclusive Egg 18", - }, - }, - { - "_data": { - "id": "Exclusive Egg 18", - }, - }, - { - "_data": { - "id": "Exclusive Egg 18", - }, - }, - { - "_data": { - "id": "Exclusive Egg 18", - }, - }, - { - "_data": { - "id": "Exclusive Egg 18", - }, - }, + [ + "Referee Zebra", + 2, + "Great", ], - "Silver": [ - { - "_data": { - "id": "Red Present", - }, - }, - { - "_data": { - "id": "Exclusive Egg 18", - }, - }, - { - "_data": { - "id": "Exclusive Egg 18", - }, - }, - { - "_data": { - "id": "Exclusive Egg 18", - }, - }, + [ + "Goalie Monkey", + 0.005, + "Insane", ], - }, - "StartTime": 1702746000, - "Title": "Festive Clan Battle", - }, - "configName": "Christmas2023", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.553Z", - "hashShort": "95676172080de4a8", - }, - ], - "status": "ok", -} -`; - -exports[`Pet Simulator Public Live API Test Hoverboards shape 1`] = ` -{ - "data": [ - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "CanBeShiny": false, - "Desc": "Your own personal hoverboard. Gotta go fast!", - "DisplayName": "Hoverboard", - "Icon": "rbxassetid://14910756938", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": [], - "Tradable": false, - }, - "configName": "Hoverboard | Original", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:51.002Z", - "hashShort": "3ebab65bb8b0c533", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Callback": null, - "Desc": "Thanks for the support 💛", - "DisplayName": "Bling Hoverboard", - "Icon": "rbxassetid://14910770026", - "Rarity": { + ], + "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "Sounds": [], - "Tradable": false, }, - "configName": "Hoverboard | Bling", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.019Z", - "hashShort": "0be6edcb4921eed7", + "configName": "5 | Soccer Egg 5 Tier 1", + "dateCreated": "2026-06-27T16:06:53.646Z", + "dateModified": "2026-06-27T16:06:53.646Z", + "hashShort": "0b3b2f109c21d6bd", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Soccer", + "collection": "Eggs", "configData": { - "Callback": null, - "Desc": "Rewarded to the top 10 players in the world! 🌎", - "DisplayName": "Blue Flying Carpet", - "Icon": "rbxassetid://14910772029", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, + "currency": "SoccerCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Soccer Egg 5 Tier 2", + "oddsFFlags": { + "Goalie Monkey": "Soccer_GoalieMonkeyEggOdds", + "Soccerball Trophy Dragon": "Soccer_TrophyDragonEggOdds", }, - "Sounds": { - "equip": [ - "rbxassetid://86531740191291", + "overrideCost": 4000, + "pets": [ + [ + "Coach Chihuahua", + 92, ], - "idle": [ - "rbxassetid://129244790082201", + [ + "Referee Zebra", + 6, ], - "jump": [ - "rbxassetid://78403942185285", + [ + "Goalie Monkey", + 0.005, + "Insane", ], - }, - "Tradable": false, - }, - "configName": "Hoverboard | Blue Flying Carpet", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.015Z", - "hashShort": "663bb12a5a291406", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Meow!", - "DisplayName": "Cat Hoverboard", - "Icon": "rbxassetid://14910757359", - "Rarity": { + [ + "Soccerball Trophy Dragon", + 0.0005, + "Insane", + ], + ], + "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "Sounds": { - "equip": [ - "rbxassetid://16572012076", - ], - "idle": [ - "rbxassetid://85358657413140", - ], - "jump": [ - "rbxassetid://94203575324510", - ], - }, }, - "configName": "Hoverboard | Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.016Z", - "hashShort": "3def630b1ee809e9", + "configName": "5 | Soccer Egg 5 Tier 2", + "dateCreated": "2026-06-27T16:06:53.644Z", + "dateModified": "2026-06-27T16:06:53.644Z", + "hashShort": "5c45918e58acdd17", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Soccer", + "collection": "Eggs", "configData": { - "Desc": "Banksy would be proud!", - "DisplayName": "Doodle Hoverboard", - "Icon": "rbxassetid://14910757247", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, + "currency": "SoccerCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Soccer Egg 5 Tier 5", + "oddsFFlags": { + "Goalie Monkey": "Soccer_GoalieMonkeyEggOdds", + "Soccerball Trophy Angelus": "Soccer_AngelusEggOdds", + "Soccerball Trophy Dragon": "Soccer_TrophyDragonEggOdds", }, - "Sounds": { - "equip": [ - "rbxassetid://91610397255708", + "overrideCost": 4000, + "pets": [ + [ + "Referee Zebra", + 86, ], - "idle": [ - "rbxassetid://80774788338224", + [ + "Goalie Monkey", + 0.005, + "Insane", ], - "jump": [ - "rbxassetid://98520429060386", + [ + "Soccerball Trophy Dragon", + 0.0005, + "Insane", ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | Doodle", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.021Z", - "hashShort": "98b7d49b5766f968", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Speed along in futuristic style!", - "DisplayName": "High-Tech Hoverboard", - "Icon": "rbxassetid://14910757075", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | High Tech", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.041Z", - "hashShort": "21fad2ea1d4afd57", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Double rainbow! (Redeem 5 merch codes)", - "DisplayName": "Rainbow Hoverboard", - "Icon": "rbxassetid://14910756731", - "Rarity": { + [ + "Soccerball Trophy Angelus", + 0.0002, + "Insane", + ], + ], + "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "Sounds": [], }, - "configName": "Hoverboard | Rainbow", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.045Z", - "hashShort": "72e67c96f719f59f", + "configName": "5 | Soccer Egg 5 Tier 5", + "dateCreated": "2026-06-27T16:06:53.645Z", + "dateModified": "2026-06-27T16:06:53.645Z", + "hashShort": "71edf616ade942e6", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Soccer", + "collection": "Eggs", "configData": { - "Callback": null, - "Desc": "Rewarded to the Top 100 players in the world! 🌎", - "DisplayName": "Red Flying Carpet", - "Icon": "rbxassetid://14910756675", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, + "currency": "SoccerCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Soccer Egg 5 Tier 4", + "oddsFFlags": { + "Goalie Monkey": "Soccer_GoalieMonkeyEggOdds", + "Soccerball Trophy Angelus": "Soccer_AngelusEggOdds", + "Soccerball Trophy Dragon": "Soccer_TrophyDragonEggOdds", }, - "Sounds": { - "equip": [ - "rbxassetid://97349550837141", + "overrideCost": 4000, + "pets": [ + [ + "Referee Zebra", + 92, ], - "idle": [ - "rbxassetid://77162821297775", + [ + "Goalie Monkey", + 0.005, + "Insane", ], - "jump": [ - "rbxassetid://134060758230484", + [ + "Soccerball Trophy Dragon", + 0.0005, + "Insane", ], - }, - "Tradable": false, - }, - "configName": "Hoverboard | Red Flying Carpet", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.044Z", - "hashShort": "b47123c922627076", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "🎄 Participate in the 2023 Christmas Event!", - "DisplayName": "Rudolph Hoverboard", - "Icon": "rbxassetid://14910756609", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Rudolph", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.050Z", - "hashShort": "0db1a26770e95490", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "🎅 Found in Christmas Presents!", - "DisplayName": "Sleigh Hoverboard", - "Icon": "rbxassetid://14910756533", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Sleigh", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.051Z", - "hashShort": "76c2cb175e7c4f45", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "You can hear the gears turning!", - "DisplayName": "Steampunk Hoverboard", - "Icon": "rbxassetid://14910756487", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Steampunk", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.052Z", - "hashShort": "3c6ccb623cfa16a5", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Gotta one-up everyone somehow! (Redeem 20 merch codes)", - "DisplayName": "Oversized Hoverboard", - "Icon": "rbxassetid://14910756938", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Oversized", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.054Z", - "hashShort": "1f5218d59a74805f", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Set the ground ablaze!", - "DisplayName": "Fire Dragon Hoverboard", - "Icon": "rbxassetid://15164150883", - "Rarity": { + [ + "Soccerball Trophy Angelus", + 0.0002, + "Insane", + ], + ], + "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "Sounds": [], }, - "configName": "Hoverboard | Fire Dragon", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.054Z", - "hashShort": "7647354c285af185", + "configName": "5 | Soccer Egg 5 Tier 4", + "dateCreated": "2026-06-27T16:06:53.645Z", + "dateModified": "2026-06-27T16:06:53.645Z", + "hashShort": "ff84e47e60073dd5", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Exclusive Eggs", + "collection": "Eggs", "configData": { - "Desc": "Juicy!", - "DisplayName": "Watermelon Hoverboard", - "Icon": "rbxassetid://14952778495", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://84069480219233", + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://140604314646557", + "name": "Exclusive Vapor Egg", + "pets": [ + [ + "Vapor Cat", + 50, ], - "idle": [ - "rbxassetid://109990362589216", + [ + "Vapor Fox", + 35, ], - "jump": [ - "rbxassetid://130951213809044", + [ + "Vapor Wolf", + 13, ], - }, - }, - "configName": "Hoverboard | Watermelon", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.057Z", - "hashShort": "c61cae8010d23099", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "For VIP members!", - "DisplayName": "Axolotl Hoverboard", - "Icon": "rbxassetid://15280246245", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://126295444855791", + [ + "Huge Vapor Cat", + 1.5, ], - "idle": [ - "rbxassetid://103714009591937", + [ + "Huge Vapor Wolf", + 0.39, ], - "jump": [ - "rbxassetid://95188937985287", + [ + "Titanic Vapor Dragon", + 0.1, + ], + [ + "Gargantuan Vapor Phoenix", + 0.01, ], + ], + "productIds": { + "10 Exclusive Eggs": 3606832405, + "100 Exclusive Eggs": 3606832445, + "3 Exclusive Eggs": 3606832376, + "Exclusive Egg": 3606832355, }, - "Tradable": false, - }, - "configName": "Hoverboard | Axolotl", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.557Z", - "hashShort": "c9820c97abf45a08", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 3 clans in the 2024 New Year Clan Battle!", - "DisplayName": "Blobfish Hoverboard", - "Icon": "rbxassetid://15280245992", - "Rarity": { + "rainbowChance": 2, + "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "Sounds": [], + "shinyChance": 2, }, - "configName": "Hoverboard | Blobfish", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.555Z", - "hashShort": "138e0ab4b4dee3ae", + "configName": "Exclusive Egg 63", + "dateCreated": "2026-06-27T16:07:01.984Z", + "dateModified": "2026-06-27T16:07:01.984Z", + "hashShort": "75cb7d8a699684bb", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Other", + "collection": "Eggs", "configData": { - "Desc": "⚔️ Rewarded to the top 3 clans in the 2024 Pet Collecting Clan Battle!", - "DisplayName": "Pegasus Hoverboard", - "Icon": "rbxassetid://15280245549", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://75802008091018", + "allPetsRare": true, + "disableGold": true, + "disableModifiers": true, + "disableRainbow": false, + "goldChance": 0, + "icon": "rbxassetid://118342347409740", + "name": "Trophy Soccer Egg", + "nonStackable": true, + "pets": [ + [ + "Referee Zebra", + 55, ], - "idle": [ - "rbxassetid://96160069704153", + [ + "Goalie Monkey", + 36, ], - "jump": [ - "rbxassetid://104673605067650", + [ + "Soccerball Trophy Dragon", + 5, ], + [ + "Huge Soccerball Cat", + 2.85, + ], + [ + "Huge Soccerball Trophy Dragon", + 1, + ], + [ + "Titanic Soccerball Trophy Angelus", + 0.15, + ], + ], + "productIds": { + "10 Soccer Egg": 3606771580, + "100 Soccer Egg": 3606771632, + "3 Soccer Egg": 3606771559, + "Soccer Egg": 3606771523, }, - }, - "configName": "Hoverboard | Pegasus", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.561Z", - "hashShort": "581dc28003fac6f5", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "It's a party! (Redeem a merch code)", - "DisplayName": "Piñata Hoverboard", - "Icon": "rbxassetid://15280245445", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Pinata", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.554Z", - "hashShort": "7b7591b1328cf6ad", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Careful not to pop it!", - "DisplayName": "Balloon Hoverboard", - "Icon": "rbxassetid://15280246134", - "Rarity": { + "rainbowChance": 2, + "rarity": { "Announce": true, "Color": null, "DisplayName": "Exclusive", @@ -52795,3599 +51718,7681 @@ exports[`Pet Simulator Public Live API Test Hoverboards shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "Sounds": [], + "shinyChance": 2, }, - "configName": "Hoverboard | Balloon", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.560Z", - "hashShort": "d4cac2d72d0f4614", + "configName": "Trophy Soccer Egg", + "dateCreated": "2026-06-27T16:07:02.006Z", + "dateModified": "2026-06-27T16:07:02.006Z", + "hashShort": "184af2cd508311d1", }, + ], + "status": "ok", +} +`; + +exports[`Pet Simulator Public Live API Test Enchants shape 1`] = ` +{ + "data": [ { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Enchants", + "collection": "Enchants", "configData": { - "Desc": "⚔️ Rewarded to the top 3 clans in the 2023 Christmas Clan Battle!", - "DisplayName": "Present Hoverboard", - "Icon": "rbxassetid://15642824601", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": [], + "BaseTier": 1, + "DiminishPowerThreshold": 336, + "EmpoweredBoost": 40, + "MaxTier": 10, + "PageIcon": "rbxassetid://13824100032", + "Tiers": [ + { + "Desc": "Increases the strength of your pets by 15%!", + "DisplayName": "Strong Pets I", + "Icon": "rbxassetid://15030239929", + "Power": 15, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + }, + { + "Desc": "Increases the strength of your pets by 25%!", + "DisplayName": "Strong Pets II", + "Icon": "rbxassetid://15030239753", + "Power": 25, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + }, + { + "Desc": "Increases the strength of your pets by 40%!", + "DisplayName": "Strong Pets III", + "Icon": "rbxassetid://15030239649", + "Power": 40, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Epic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 3, + "_id": "Epic", + "_script": null, + }, + }, + { + "Desc": "Increases the strength of your pets by 60%!", + "DisplayName": "Strong Pets IV", + "Icon": "rbxassetid://15030239477", + "Power": 60, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Legendary", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 4, + "_id": "Legendary", + "_script": null, + }, + }, + { + "Desc": "Increases the strength of your pets by 75%!", + "DisplayName": "Strong Pets V", + "Icon": "rbxassetid://15030239264", + "Power": 75, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + }, + { + "Desc": "Increases the strength of your pets by 90%!", + "DisplayName": "Strong Pets VI", + "Icon": "rbxassetid://15696986509", + "Power": 90, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + }, + { + "Desc": "Increases the strength of your pets by 105%!", + "DisplayName": "Strong Pets VII", + "Icon": "rbxassetid://15801600870", + "Power": 105, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + }, + { + "Desc": "Increases the strength of your pets by 120%!", + "DisplayName": "Strong Pets VIII", + "Icon": "rbxassetid://16318190917", + "Power": 120, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Superior", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 8, + "_id": "Superior", + "_script": null, + }, + }, + { + "Desc": "Increases the strength of your pets by 135%!", + "DisplayName": "Strong Pets IX", + "Icon": "rbxassetid://16888547248", + "Power": 135, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + { + "Desc": "Increases the strength of your pets by 140%!", + "DisplayName": "Strong Pets X", + "Icon": "rbxassetid://93291705199169", + "Power": 140, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Red Present", + "configName": "Enchant | Strong Pets", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.556Z", - "hashShort": "200dcaff0575ec3e", + "dateModified": "2025-07-05T23:28:49.137Z", + "hashShort": "d1ae0cab90f00de1", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Enchants", + "collection": "Enchants", "configData": { - "Animation": 11897877992, - "BobRate": 3, - "Desc": "ALIENS ARE REAL 👽", - "DisplayName": "UFO", - "HoverHeight": 6, - "Icon": "rbxassetid://15803163554", - "ProductId": 1718933726, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RotationLimit": 0, - "Sounds": { - "equip": [ - "rbxassetid://15799351567", - ], - "idle": [ - "rbxassetid://15809396787", - ], - "jump": [ - "rbxassetid://15809396485", - ], - }, - "Tradable": true, + "BaseTier": 1, + "DiminishPowerThreshold": 27.200000000000003, + "EmpoweredBoost": 25, + "MaxTier": 10, + "PageIcon": "rbxassetid://13824100032", + "Tiers": [ + { + "Desc": "2% chance your pet inflicts a critical hit (5x damage)!", + "DisplayName": "Criticals I", + "Icon": "rbxassetid://15030243121", + "Power": 2, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + }, + { + "Desc": "4% chance your pet inflicts a critical hit (5x damage)!", + "DisplayName": "Criticals II", + "Icon": "rbxassetid://15030243011", + "Power": 4, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + }, + { + "Desc": "7% chance your pet inflicts a critical hit (5x damage)!", + "DisplayName": "Criticals III", + "Icon": "rbxassetid://15030242864", + "Power": 7, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Epic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 3, + "_id": "Epic", + "_script": null, + }, + }, + { + "Desc": "11% chance your pet inflicts a critical hit (5x damage)!", + "DisplayName": "Criticals IV", + "Icon": "rbxassetid://15030242716", + "Power": 11, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Legendary", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 4, + "_id": "Legendary", + "_script": null, + }, + }, + { + "Desc": "14% chance your pet inflicts a critical hit (5x damage)!", + "DisplayName": "Criticals V", + "Icon": "rbxassetid://15030242482", + "Power": 14, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + }, + { + "Desc": "17% chance your pet inflicts a critical hit (5x damage)!", + "DisplayName": "Criticals VI", + "Icon": "rbxassetid://15696962297", + "Power": 17, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + }, + { + "Desc": "20% chance your pet inflicts a critical hit (5x damage)!", + "DisplayName": "Criticals VII", + "Icon": "rbxassetid://15801601919", + "Power": 20, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + }, + { + "Desc": "23% chance your pet inflicts a critical hit (5x damage)!", + "DisplayName": "Criticals VIII", + "Icon": "rbxassetid://16318191964", + "Power": 23, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Superior", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 8, + "_id": "Superior", + "_script": null, + }, + }, + { + "Desc": "26% chance your pet inflicts a critical hit (5x damage)!", + "DisplayName": "Criticals IX", + "Icon": "rbxassetid://16888547469", + "Power": 26, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + { + "Desc": "29% chance your pet inflicts a critical hit (5x damage)!", + "DisplayName": "Criticals X", + "Icon": "rbxassetid://127022719765452", + "Power": 29, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | UFO", + "configName": "Enchant | Criticals", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.552Z", - "hashShort": "38e3593242d44920", + "dateModified": "2025-07-05T23:28:49.152Z", + "hashShort": "2a5d18872b5a9037", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Enchants", + "collection": "Enchants", "configData": { - "Desc": "ub3rR0xXorzage!", - "DisplayName": "Noob Hoverboard", - "Icon": "rbxassetid://15803163718", - "ProductId": 1718932898, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://4956112294", - ], - }, - "Tradable": true, + "BaseTier": 1, + "DiminishPowerThreshold": 160, + "EmpoweredBoost": 50, + "MaxTier": 5, + "PageIcon": "rbxassetid://13824100032", + "Tiers": [ + { + "Desc": "Increases player and pet speed by 25%!", + "DisplayName": "Speed I", + "Icon": "rbxassetid://15030237790", + "Power": 25, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + }, + { + "Desc": "Increases player and pet speed by 40%!", + "DisplayName": "Speed II", + "Icon": "rbxassetid://15030237682", + "Power": 40, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + }, + { + "Desc": "Increases player and pet speed by 55%!", + "DisplayName": "Speed III", + "Icon": "rbxassetid://15030237571", + "Power": 55, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Epic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 3, + "_id": "Epic", + "_script": null, + }, + }, + { + "Desc": "Increases player and pet speed by 70%!", + "DisplayName": "Speed IV", + "Icon": "rbxassetid://15030237474", + "Power": 70, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Legendary", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 4, + "_id": "Legendary", + "_script": null, + }, + }, + { + "Desc": "Increases player and pet speed by 100%!", + "DisplayName": "Speed V", + "Icon": "rbxassetid://15030237367", + "Power": 100, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Noob", + "configName": "Enchant | Walkspeed", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.562Z", - "hashShort": "43adaced98437da3", + "dateModified": "2025-07-05T23:28:49.151Z", + "hashShort": "d1ce8a39f5f8096e", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Enchants", + "collection": "Enchants", "configData": { - "Desc": "It's bananas!", - "DisplayName": "Banana Hoverboard", - "Icon": "rbxassetid://15803163849", - "ProductId": 1718932102, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://14743073819", - ], - }, - "Tradable": true, + "BaseTier": 1, + "DiminishPowerThreshold": 2160, + "EmpoweredBoost": 100, + "MaxTier": 10, + "PageIcon": "rbxassetid://13824100032", + "Tiers": [ + { + "Desc": "Increases your tap power by 25%!", + "DisplayName": "Tap Power I", + "Icon": "rbxassetid://15030239092", + "Power": 25, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + }, + { + "Desc": "Increases your tap power by 50%!", + "DisplayName": "Tap Power II", + "Icon": "rbxassetid://15030238976", + "Power": 50, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + }, + { + "Desc": "Increases your tap power by 100%!", + "DisplayName": "Tap Power III", + "Icon": "rbxassetid://15030238822", + "Power": 100, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Epic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 3, + "_id": "Epic", + "_script": null, + }, + }, + { + "Desc": "Increases your tap power by 200%!", + "DisplayName": "Tap Power IV", + "Icon": "rbxassetid://15030238646", + "Power": 200, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Legendary", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 4, + "_id": "Legendary", + "_script": null, + }, + }, + { + "Desc": "Increases your tap power by 400%!", + "DisplayName": "Tap Power V", + "Icon": "rbxassetid://15030238497", + "Power": 400, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + }, + { + "Desc": "Increases your tap power by 500%!", + "DisplayName": "Tap Power VI", + "Icon": "rbxassetid://15696961637", + "Power": 500, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + }, + { + "Desc": "Increases your tap power by 600%!", + "DisplayName": "Tap Power VII", + "Icon": "rbxassetid://15801600712", + "Power": 600, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + }, + { + "Desc": "Increases your tap power by 700%!", + "DisplayName": "Tap Power VIII", + "Icon": "rbxassetid://16318190735", + "Power": 700, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Superior", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 8, + "_id": "Superior", + "_script": null, + }, + }, + { + "Desc": "Increases your tap power by 800%!", + "DisplayName": "Tap Power IX", + "Icon": "rbxassetid://16888547174", + "Power": 800, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + { + "Desc": "Increases your tap power by 900%!", + "DisplayName": "Tap Power X", + "Icon": "rbxassetid://130430035493945", + "Power": 900, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Banana", + "configName": "Enchant | Tap Power", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.562Z", - "hashShort": "c6c2434013f64155", + "dateModified": "2025-07-05T23:28:49.156Z", + "hashShort": "2798037fb986afe3", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Enchants", + "collection": "Enchants", "configData": { - "Desc": "⚔️ Rewarded to the top 3 clans in the 2024 Achievements Clan Battle!", - "DisplayName": "Ducky Hoverboard", - "Icon": "rbxassetid://15280245724", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://85687969435784", - ], - "idle": [ - "rbxassetid://118206736797563", - ], - "jump": [ - "rbxassetid://123768149210741", - ], - }, + "BaseTier": 1, + "DiminishPowerThreshold": 104, + "EmpoweredBoost": 25, + "MaxTier": 10, + "PageIcon": "rbxassetid://13824100032", + "Tiers": [ + { + "Desc": "Increases the number of Diamonds you earn from breakables by 10%!", + "DisplayName": "Diamonds I", + "Icon": "rbxassetid://15030242315", + "Power": 10, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + }, + { + "Desc": "Increases the number of Diamonds you earn from breakables by 20%!", + "DisplayName": "Diamonds II", + "Icon": "rbxassetid://15030242164", + "Power": 20, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + }, + { + "Desc": "Increases the number of Diamonds you earn from breakables by 30%!", + "DisplayName": "Diamonds III", + "Icon": "rbxassetid://15030242071", + "Power": 30, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Epic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 3, + "_id": "Epic", + "_script": null, + }, + }, + { + "Desc": "Increases the number of Diamonds you earn from breakables by 35%!", + "DisplayName": "Diamonds IV", + "Icon": "rbxassetid://15030241880", + "Power": 35, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Legendary", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 4, + "_id": "Legendary", + "_script": null, + }, + }, + { + "Desc": "Increases the number of Diamonds you earn from breakables by 40%!", + "DisplayName": "Diamonds V", + "Icon": "rbxassetid://15030241672", + "Power": 40, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + }, + { + "Desc": "Increases the number of Diamonds you earn from breakables by 45%!", + "DisplayName": "Diamonds VI", + "Icon": "rbxassetid://15696962163", + "Power": 45, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + }, + { + "Desc": "Increases the number of Diamonds you earn from breakables by 50%!", + "DisplayName": "Diamonds VII", + "Icon": "rbxassetid://15801601732", + "Power": 50, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + }, + { + "Desc": "Increases the number of Diamonds you earn from breakables by 55%!", + "DisplayName": "Diamonds VIII", + "Icon": "rbxassetid://16318191770", + "Power": 55, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Superior", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 8, + "_id": "Superior", + "_script": null, + }, + }, + { + "Desc": "Increases the number of Diamonds you earn from breakables by 60%!", + "DisplayName": "Diamonds IX", + "Icon": "rbxassetid://16888547376", + "Power": 60, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + { + "Desc": "Increases the number of Diamonds you earn from breakables by 65%!", + "DisplayName": "Diamonds X", + "Icon": "rbxassetid://98965567848472", + "Power": 65, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Ducky", + "configName": "Enchant | Diamonds", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.558Z", - "hashShort": "1421b433abd21276", + "dateModified": "2025-07-05T23:28:49.170Z", + "hashShort": "fa93f78a8c14b186", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Enchants", + "collection": "Enchants", "configData": { - "Desc": "⚔️ Rewarded to the top 3 clans in the 2024 Raid Clan Battle!", - "DisplayName": "Cosmic Hoverboard", - "Icon": "rbxassetid://15311108491", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Cosmic", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.552Z", - "hashShort": "17349d3a727c61cd", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Animation": 11897877992, - "BobRate": 3, - "CanBeShiny": true, - "DefaultJumpSpeedBoost": 1, - "Desc": "When you gotta go, you gotta go.", - "DisplayName": "Toilet", - "HoverHeight": 6, - "Icon": "rbxassetid://16499939383", - "MaxRoll": 35, - "PitchScale": 0, - "ProductId": 1762008925, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RotationLimit": 0, - "ShinyParticleScale": 1.2, - "Sounds": { - "equip": [ - "rbxassetid://16499531238", - ], - "idle": [ - "rbxassetid://16499530045", - ], - "jump": [ - "rbxassetid://16499530188", - ], - }, - "Tradable": true, + "BaseTier": 1, + "DiminishPowerThreshold": 384, + "EmpoweredBoost": 25, + "MaxTier": 10, + "PageIcon": "rbxassetid://13824100032", + "Tiers": [ + { + "Desc": "Increases your egg luck by 15%!", + "DisplayName": "Lucky Eggs I", + "Icon": "rbxassetid://15030240936", + "Power": 15, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + }, + { + "Desc": "Increases your egg luck by 30%!", + "DisplayName": "Lucky Eggs II", + "Icon": "rbxassetid://15030240839", + "Power": 30, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + }, + { + "Desc": "Increases your egg luck by 50%!", + "DisplayName": "Lucky Eggs III", + "Icon": "rbxassetid://15030240731", + "Power": 50, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Epic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 3, + "_id": "Epic", + "_script": null, + }, + }, + { + "Desc": "Increases your egg luck by 75%!", + "DisplayName": "Lucky Eggs IV", + "Icon": "rbxassetid://15030240650", + "Power": 75, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Legendary", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 4, + "_id": "Legendary", + "_script": null, + }, + }, + { + "Desc": "Increases your egg luck by 95%!", + "DisplayName": "Lucky Eggs V", + "Icon": "rbxassetid://15030240562", + "Power": 95, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + }, + { + "Desc": "Increases your egg luck by 110%!", + "DisplayName": "Lucky Eggs VI", + "Icon": "rbxassetid://15696961903", + "Power": 110, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + }, + { + "Desc": "Increases your egg luck by 125%!", + "DisplayName": "Lucky Eggs VII", + "Icon": "rbxassetid://15801601280", + "Power": 125, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + }, + { + "Desc": "Increases your egg luck by 140%!", + "DisplayName": "Lucky Eggs VIII", + "Icon": "rbxassetid://16318191353", + "Power": 140, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Superior", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 8, + "_id": "Superior", + "_script": null, + }, + }, + { + "Desc": "Increases your egg luck by 155%!", + "DisplayName": "Lucky Eggs IX", + "Icon": "rbxassetid://16888547308", + "Power": 155, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + { + "Desc": "Increases your egg luck by 160%!", + "DisplayName": "Lucky Eggs X", + "Icon": "rbxassetid://119384620589816", + "Power": 160, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Toilet", + "configName": "Enchant | Lucky Eggs", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.559Z", - "hashShort": "28d225e8d1aab92f", + "dateModified": "2025-07-05T23:28:49.172Z", + "hashShort": "0ac846027ee2fa75", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Enchants", + "collection": "Enchants", "configData": { - "CanBeShiny": true, - "Desc": "Holographic projection!", - "DisplayName": "Hologram Hoverboard", - "Icon": "rbxassetid://16499939894", - "ProductId": 1762008523, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "ShinyParticleScale": 0.75, - "Sounds": { - "equip": [ - "rbxassetid://16499531105", - ], - "idle": [ - "rbxassetid://16499531403", - ], - "jump": [ - "rbxassetid://16499530923", - ], - }, - "Tradable": true, + "BaseTier": 1, + "EmpoweredBoost": 50, + "MaxTier": 3, + "PageIcon": "rbxassetid://13824100032", + "Tiers": [ + { + "Desc": "Increases your magnet distance by 8!", + "DisplayName": "Magnet I", + "Icon": "rbxassetid://15030240467", + "Power": 8, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + }, + { + "Desc": "Increases your magnet distance by 15!", + "DisplayName": "Magnet II", + "Icon": "rbxassetid://15030240353", + "Power": 15, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + }, + { + "Desc": "Increases your magnet distance by 25!", + "DisplayName": "Magnet III", + "Icon": "rbxassetid://15030240240", + "Power": 25, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Epic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 3, + "_id": "Epic", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Hologram", + "configName": "Enchant | Magnet", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.563Z", - "hashShort": "9682980b9ce48560", + "dateModified": "2025-07-05T23:28:49.184Z", + "hashShort": "40c9d7cd1d458429", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Enchants", + "collection": "Enchants", "configData": { - "Animation": 11897877992, - "BobRate": 3, - "CanBeShiny": true, - "DefaultJumpSpeedBoost": 1, - "Desc": "Off to space in a rocketship!", - "DisplayName": "Rocket", - "HoverHeight": 6, - "Icon": "rbxassetid://16499939654", - "MaxRoll": 35, - "PitchScale": 0, - "ProductId": 1762009490, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RotationLimit": 0, - "ShinyParticleScale": 1.5, - "Sounds": { - "equip": [ - "rbxassetid://16499530718", - ], - "idle": [ - "rbxassetid://16499530510", - ], - "jump": [ - "rbxassetid://16499530360", - ], - }, - "Tradable": true, + "BaseTier": 1, + "DiminishPowerThreshold": 88, + "EmpoweredBoost": 40, + "MaxTier": 10, + "PageIcon": "rbxassetid://13824100032", + "Tiers": [ + { + "Desc": "Increases your chances of drops from breakables by 10%!", + "DisplayName": "Treasure Hunter I", + "Icon": "rbxassetid://15030238336", + "Power": 10, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + }, + { + "Desc": "Increases your chances of drops from breakables by 15%!", + "DisplayName": "Treasure Hunter II", + "Icon": "rbxassetid://15030238207", + "Power": 15, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + }, + { + "Desc": "Increases your chances of drops from breakables by 20%!", + "DisplayName": "Treasure Hunter III", + "Icon": "rbxassetid://15030238126", + "Power": 20, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Epic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 3, + "_id": "Epic", + "_script": null, + }, + }, + { + "Desc": "Increases your chances of drops from breakables by 25%!", + "DisplayName": "Treasure Hunter IV", + "Icon": "rbxassetid://15030238034", + "Power": 25, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Legendary", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 4, + "_id": "Legendary", + "_script": null, + }, + }, + { + "Desc": "Increases your chances of drops from breakables by 30%!", + "DisplayName": "Treasure Hunter V", + "Icon": "rbxassetid://15030237944", + "Power": 30, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + }, + { + "Desc": "Increases your chances of drops from breakables by 35%!", + "DisplayName": "Treasure Hunter VI", + "Icon": "rbxassetid://15696961536", + "Power": 35, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + }, + { + "Desc": "Increases your chances of drops from breakables by 40%!", + "DisplayName": "Treasure Hunter VII", + "Icon": "rbxassetid://15801600434", + "Power": 40, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + }, + { + "Desc": "Increases your chances of drops from breakables by 45%!", + "DisplayName": "Treasure Hunter VIII", + "Icon": "rbxassetid://16318190415", + "Power": 45, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Superior", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 8, + "_id": "Superior", + "_script": null, + }, + }, + { + "Desc": "Increases your chances of drops from breakables by 50%!", + "DisplayName": "Treasure Hunter IX", + "Icon": "rbxassetid://16888547124", + "Power": 50, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + { + "Desc": "Increases your chances of drops from breakables by 55%!", + "DisplayName": "Treasure Hunter X", + "Icon": "rbxassetid://93835312698682", + "Power": 55, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Rocket", + "configName": "Enchant | Treasure Hunter", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.556Z", - "hashShort": "7b062aa930ffb298", + "dateModified": "2025-07-05T23:28:49.187Z", + "hashShort": "4ada612b226db2c9", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Enchants", + "collection": "Enchants", "configData": { - "Desc": "Obtained by completing area quests!", - "DisplayName": "M-10 Hoverboard", - "Icon": "rbxassetid://14910757021", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": [], + "BaseTier": 1, + "DiminishPowerThreshold": 480, + "EmpoweredBoost": 50, + "MaxTier": 10, + "PageIcon": "rbxassetid://13824100032", + "Tiers": [ + { + "Desc": "Increases the number of Coins you earn from breakables by 20%!", + "DisplayName": "Coins I", + "Icon": "rbxassetid://15030243757", + "Power": 20, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + }, + { + "Desc": "Increases the number of Coins you earn from breakables by 40%!", + "DisplayName": "Coins II", + "Icon": "rbxassetid://15030243629", + "Power": 40, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + }, + { + "Desc": "Increases the number of Coins you earn from breakables by 60%!", + "DisplayName": "Coins III", + "Icon": "rbxassetid://15030243525", + "Power": 60, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Epic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 3, + "_id": "Epic", + "_script": null, + }, + }, + { + "Desc": "Increases the number of Coins you earn from breakables by 80%!", + "DisplayName": "Coins IV", + "Icon": "rbxassetid://15030327119", + "Power": 80, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Legendary", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 4, + "_id": "Legendary", + "_script": null, + }, + }, + { + "Desc": "Increases the number of Coins you earn from breakables by 100%!", + "DisplayName": "Coins V", + "Icon": "rbxassetid://15030243249", + "Power": 100, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + }, + { + "Desc": "Increases the number of Coins you earn from breakables by 120%!", + "DisplayName": "Coins VI", + "Icon": "rbxassetid://15696962457", + "Power": 120, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + }, + { + "Desc": "Increases the number of Coins you earn from breakables by 140%!", + "DisplayName": "Coins VII", + "Icon": "rbxassetid://15801602105", + "Power": 140, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + }, + { + "Desc": "Increases the number of Coins you earn from breakables by 160%!", + "DisplayName": "Coins VIII", + "Icon": "rbxassetid://16318192171", + "Power": 160, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Superior", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 8, + "_id": "Superior", + "_script": null, + }, + }, + { + "Desc": "Increases the number of Coins you earn from breakables by 180%!", + "DisplayName": "Coins IX", + "Icon": "rbxassetid://16888547603", + "Power": 180, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + { + "Desc": "Increases the number of Coins you earn from breakables by 200%!", + "DisplayName": "Coins X", + "Icon": "rbxassetid://117145802658778", + "Power": 200, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | M-10", + "configName": "Enchant | Coins", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.040Z", - "hashShort": "72d08f5fdef8a0a8", + "dateModified": "2025-07-05T23:28:49.191Z", + "hashShort": "690afe771ae787f9", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Special", + "collection": "Enchants", "configData": { - "Desc": "🌈 Found in The Forever Pack!", - "DisplayName": "Tiger Hoverboard", - "Icon": "rbxassetid://15280245363", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://88643014063908", - ], - "idle": [ - "rbxassetid://102587410191498", - ], - "jump": [ - "rbxassetid://82114109506343", - ], - }, + "BaseTier": 1, + "DiminishPowerThreshold": 16, + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Taps have a 10% chance to ignite an explosion, damaging nearby breakables!", + "DisplayName": "Tap Blast", + "Icon": "rbxassetid://15012896094", + "Power": 10, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Legendary", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 4, + "_id": "Legendary", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Tiger", + "configName": "Enchant | Blast", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.559Z", - "hashShort": "c9dda03dae5ffb77", + "dateModified": "2025-07-05T23:28:49.946Z", + "hashShort": "4be0b8a11213d815", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Special", + "collection": "Enchants", "configData": { - "Desc": "⚔️ Rewarded to the top 3 clans in the 2024 Quest Clan Battle!", - "DisplayName": "Bleebo The Alien Hoverboard", - "Icon": "rbxassetid://16756713145", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": [], + "BaseTier": 1, + "DiminishPowerThreshold": 2, + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Pets get random bursts of joy, moving 25% faster and attacking 40% quicker!", + "DisplayName": "Happy Pets", + "Icon": "rbxassetid://15012895724", + "Power": 2, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Epic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 3, + "_id": "Epic", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Bleebo The Alien", + "configName": "Enchant | Happy Pets", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.553Z", - "hashShort": "dca5d4ec97428eb0", + "dateModified": "2025-07-05T23:28:49.204Z", + "hashShort": "772df6e88f45a5be", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Special", + "collection": "Enchants", "configData": { - "Animation": 11897877992, - "Animator": null, - "BobRate": 3, - "CanBeShiny": true, - "Desc": "Fly around on your own personal helicopter!", - "DisplayName": "Helicopter", - "HoverHeight": 6, - "Icon": "rbxassetid://17027856430", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RotationLimit": 0, - "ShinyParticleScale": 1, - "Sounds": { - "equip": [ - "rbxassetid://17026760399", - ], - "idle": [ - "rbxassetid://17026760207", - ], - "jump": [ - "rbxassetid://17026749736", - ], - }, - "Tradable": true, + "BaseTier": 1, + "DiminishPowerThreshold": 10.5, + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Increases your tap radius!", + "DisplayName": "Large Taps", + "Icon": "rbxassetid://16022160439", + "Power": 10.5, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Helicopter", + "configName": "Enchant | Large Taps", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.752Z", - "hashShort": "e03b8c7a3fd20982", + "dateModified": "2025-07-05T23:28:49.206Z", + "hashShort": "2e3babec35a3e473", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Special", + "collection": "Enchants", "configData": { - "CanBeShiny": true, - "Desc": "GET YOUR HOT DOOOOOOGS!", - "DisplayName": "Hotdog Hoverboard", - "Icon": "rbxassetid://17027857468", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": { - "equip": [ - "rbxassetid://17026760782", - ], - "idle": [ - "rbxassetid://17026760662", - ], - "jump": [ - "rbxassetid://17026760782", - ], - }, - "Tradable": true, + "BaseTier": 1, + "DiminishPowerThreshold": 15, + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Breakables have a chance to turn gold, making them worth 5x!", + "DisplayName": "Midas Touch", + "Icon": "rbxassetid://15012895285", + "Power": 15, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Hotdog", + "configName": "Enchant | Midas Touch", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.748Z", - "hashShort": "ba1ebc9abecc230f", + "dateModified": "2025-07-05T23:28:49.216Z", + "hashShort": "461792b29a78d400", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Special", + "collection": "Enchants", "configData": { - "Animator": null, - "CanBeShiny": true, - "Desc": "Did it just blink at me?", - "DisplayName": "Nightmare Hoverboard", - "Icon": "rbxassetid://17027856587", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "Setup": null, - "ShinyParticleScale": 0.75, - "Sounds": { - "equip": [ - "rbxassetid://17026761184", - ], - "idle": [ - "rbxassetid://17026760975", - ], - "jump": [ - "rbxassetid://17026749861", - ], - }, - "Tradable": true, + "BaseTier": 1, + "DiminishPowerThreshold": 6, + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Tapping has a chance to send bolts of lightning to nearby breakables!", + "DisplayName": "Lightning", + "Icon": "rbxassetid://15012895375", + "Power": 6, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Nightmare", + "configName": "Enchant | Lightning", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.582Z", - "hashShort": "33ab71f7d49f976b", + "dateModified": "2025-07-05T23:28:49.221Z", + "hashShort": "5b36d3d02e850146", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Special", + "collection": "Enchants", "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Pixel Clan Battle!", - "DisplayName": "Pixel Dragon Hoverboard", - "Icon": "rbxassetid://17027856286", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": [], + "BaseTier": 1, + "DiminishPowerThreshold": 150, + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Increases the strength of your BEST pet by 150%!", + "DisplayName": "Exotic Pet", + "Icon": "rbxassetid://15054823167", + "Power": 150, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Pixel Dragon", + "configName": "Enchant | Exotic Pet", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.585Z", - "hashShort": "42a968aef1522635", + "dateModified": "2025-07-05T23:28:49.227Z", + "hashShort": "bc556fd2bca7b2b9", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Special", + "collection": "Enchants", "configData": { - "Desc": "👾 Found in Glitched Gifts!", - "DisplayName": "Glitched Hoverboard", - "Icon": "rbxassetid://17284845446", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://17296108429", - ], - "idle": [ - "rbxassetid://17296107110", - ], - "jump": [ - "rbxassetid://17296107350", - "rbxassetid://17296106878", - "rbxassetid://17296107509", - ], - }, + "BaseTier": 1, + "DiminishPowerThreshold": 10, + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Tapping with your pets creates a Tap Teamwork buff, making your pets attack 10% faster! Stacks up to 6 times.", + "DisplayName": "Tap Teamwork", + "Icon": "rbxassetid://15012894876", + "Power": 10, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Epic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 3, + "_id": "Epic", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Glitched", + "configName": "Enchant | Tap Teamwork", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.595Z", - "hashShort": "065a2259317e0292", + "dateModified": "2025-07-05T23:28:49.238Z", + "hashShort": "4d8dcbab3cb9ae74", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Special", + "collection": "Enchants", "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Bubble Clan Battle!", - "DisplayName": "Bubble Hoverboard", - "Icon": "rbxassetid://17277981816", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://17296108429", - ], - "idle": [ - "rbxassetid://17296108094", - ], - "jump": [ - "rbxassetid://17296108234", - ], - }, + "BaseTier": 1, + "DiminishPowerThreshold": 12, + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Tapping has a chance to send bolts of super-charged lightning to nearby breakables!", + "DisplayName": "Super Lightning", + "Icon": "rbxassetid://15012894984", + "Power": 12, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Superior", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 8, + "_id": "Superior", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Bubble", + "configName": "Enchant | Super Lightning", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.587Z", - "hashShort": "605ce24f143874ea", + "dateModified": "2025-07-05T23:28:49.240Z", + "hashShort": "ac8b2d434c9672af", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Special", + "collection": "Enchants", "configData": { - "Desc": "Screeeeeech out of there!", - "DisplayName": "Night Terror Hoverboard", - "Icon": "rbxassetid://17375210703", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": [], - "Tradable": true, + "BaseTier": 1, + "DiminishPowerThreshold": 1, + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Chance for a Comet Shower to happen while equipped!", + "DisplayName": "Starfall", + "Icon": "rbxassetid://15012895109", + "Power": 1, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Night Terror", + "configName": "Enchant | Starfall", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.588Z", - "hashShort": "11e68eefba1e069a", + "dateModified": "2025-07-05T23:28:49.248Z", + "hashShort": "eb9d774929207875", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Special", + "collection": "Enchants", "configData": { - "CanBeShiny": true, - "Desc": "REAL GOLD I SWEAR!", - "DisplayName": "Rich Hoverboard", - "Icon": "rbxassetid://17452051703", - "ProductId": 1826332082, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": { - "equip": [ - "rbxassetid://17459204249", - ], - "idle": [ - "rbxassetid://17459205488", - ], - "jump": [ - "rbxassetid://17459206068", - "rbxassetid://17459204406", - "rbxassetid://17459204891", - ], - }, - "Tradable": true, + "BaseTier": 1, + "DiminishPowerThreshold": 96, + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Increases the odds of hatching shiny pets by +60%!", + "DisplayName": "Shiny Hunter", + "Icon": "rbxassetid://15012895193", + "Power": 60, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Rich", + "configName": "Enchant | Shiny Hunter", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.590Z", - "hashShort": "7ae8625dfbc157bc", + "dateModified": "2025-07-05T23:28:49.256Z", + "hashShort": "326834e5da9236a1", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Special", + "collection": "Enchants", "configData": { - "CanBeShiny": true, - "Desc": "Shattered into pieces!", - "DisplayName": "Mosaic Hoverboard", - "Icon": "rbxassetid://17452051854", - "ProductId": 1826331943, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": { - "equip": [ - "rbxassetid://17459250353", - ], - "idle": [ - "rbxassetid://17459250056", - ], - "jump": [ - "rbxassetid://17459249701", - "rbxassetid://17459249381", - "rbxassetid://17459250694", - ], - }, - "Tradable": true, + "BaseTier": 1, + "DiminishPowerThreshold": 80, + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Increases the odds of hatching Active Huge Pets by 25%!", + "DisplayName": "Huge Hunter", + "Icon": "rbxassetid://15012895531", + "Power": 25, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Mosaic", + "configName": "Enchant | Huge Hunter", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.591Z", - "hashShort": "00a20ee014331b5c", + "dateModified": "2025-07-05T23:28:49.263Z", + "hashShort": "37556a0a97644965", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Special", + "collection": "Enchants", "configData": { - "Animation": 2506281703, - "Animator": null, - "BlockcastScale": 0, - "BobRate": 0, - "CanBeShiny": true, - "Desc": "A hot red supercar! What else could you ask for? Vrooom!", - "DisplayName": "Supercar", - "HoverHeight": 2.25, - "Icon": "rbxassetid://17452051536", - "IdlePitchScale": 0, - "IdleVolume": 3, - "IdleVolumeSpeedScale": -1, - "MaxRoll": 0, - "PitchScale": 0, - "ProductId": 1826332258, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RotationLimit": null, - "ShinyParticleScale": 1, - "SkateMode": true, - "Sounds": { - "equip": [ - 14881658800, - ], - "idle": [ - 14881616188, - ], - "idle2": [ - 14881713952, - ], - "jump": [ - 3510107658, - ], - }, - "Tradable": true, + "BaseTier": 1, + "DiminishPowerThreshold": 200, + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Increases the damage you deal to chests by 200%!", + "DisplayName": "Chest Breaker", + "Icon": "rbxassetid://15012896012", + "Power": 200, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Superior", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 8, + "_id": "Superior", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Supercar", + "configName": "Enchant | Chest Breaker", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.591Z", - "hashShort": "00b94adc6c4a3520", + "dateModified": "2025-07-05T23:28:49.944Z", + "hashShort": "952a0d8e9fa5e37c", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Special", + "collection": "Enchants", "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Fragmented Clan Battle!", - "DisplayName": "Fragmented Hoverboard", - "Icon": "rbxassetid://17513943752", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://17526565785", - ], - "idle": [ - "rbxassetid://17526566240", - ], - "jump": [ - "rbxassetid://17526566370", - "rbxassetid://17526566022", - "rbxassetid://17526565911", - ], - }, + "BaseTier": 1, + "DiminishPowerThreshold": 100, + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Increases the Coins you earn from breakables by 100% and Diamonds by 40%!", + "DisplayName": "Fortune", + "Icon": "rbxassetid://15012895819", + "Power": 100, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Fragmented", + "configName": "Enchant | Fortune", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.593Z", - "hashShort": "dd618af3787f68ba", + "dateModified": "2025-07-05T23:28:49.275Z", + "hashShort": "f0e817484756d2b1", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Special", + "collection": "Enchants", "configData": { - "Animator": null, - "CanBeShiny": false, - "Desc": "WEEE WOOO WEEE WOOO!", - "DisplayName": "Police Hoverboard", - "Icon": "rbxassetid://17602510167", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": { - "equip": [ - "rbxassetid://17637411134", - ], - "idle": [ - "rbxassetid://17637284444", - "rbxassetid://17637411911", - ], - "jump": [ - "rbxassetid://17637284949", - "rbxassetid://17637284653", - "rbxassetid://17637285182", - ], - }, - "Tradable": true, + "BaseTier": 1, + "DiminishPowerThreshold": 10, + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Pets have a chance of igniting an explosive!", + "DisplayName": "Explosive", + "Icon": "rbxassetid://16037377524", + "Power": 10, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Police", + "configName": "Enchant | Explosive", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.586Z", - "hashShort": "9591e97ec3303346", + "dateModified": "2025-07-05T23:28:49.281Z", + "hashShort": "d818378bae6d6324", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Special", + "collection": "Enchants", "configData": { - "Desc": "🌊 Surf's up! 🤙 -🌴 Found in Summer Gifts!", - "DisplayName": "Surfboard", - "Icon": "rbxassetid://14910756337", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://17687558595", - ], - "idle": [ - "rbxassetid://17687559018", - ], - "jump": [ - "rbxassetid://17687557581", - "rbxassetid://17687559292", - "rbxassetid://17687557831", - ], - }, + "BaseTier": 1, + "DiminishPowerThreshold": 100, + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Spawns an orb companion that fires at nearby breakables!", + "DisplayName": "Magic Orb", + "Icon": "rbxassetid://15938765507", + "Power": 100, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Surfboard", + "configName": "Enchant | Magic Orb", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.053Z", - "hashShort": "d7f8165e4bea051a", + "dateModified": "2025-07-05T23:28:49.942Z", + "hashShort": "7d7f6242a6e1f53c", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Exclusive", + "collection": "Enchants", "configData": { - "Desc": "01101110 01100101 01110010 01100100 -Found in the Hacker Pack!", - "DisplayName": "Hacker Hoverboard", - "Icon": "rbxassetid://17761141100", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://17756016330", - ], - "idle": [ - "rbxassetid://17756016078", - ], - "jump": [ - "rbxassetid://17756016632", - "rbxassetid://17756016861", - "rbxassetid://17756014971", - ], - }, + "BaseTier": 1, + "DiminishPowerThreshold": 24, + "MaxTier": 1, + "ProductId": 1674740229, + "Tiers": [ + { + "Desc": "Sporadically shoot fireworks to explode breakables you tap!", + "DisplayName": "Fireworks", + "Icon": "rbxassetid://15257719053", + "Power": 10, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Hacker", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "ff4b50d322e94012", + "configName": "Enchant | Fireworks", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:49.940Z", + "hashShort": "f4d65df436459cf9", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Exclusive", + "collection": "Enchants", "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Wicked Clan Battle!", - "DisplayName": "Wicked Hoverboard", - "Icon": "rbxassetid://17761140826", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://17768693935", - ], - "idle": [ - "rbxassetid://17768693518", - ], - "jump": [ - "rbxassetid://17768694141", - "rbxassetid://17768694838", - "rbxassetid://17768695172", - ], - }, + "BaseTier": 1, + "DiminishPowerThreshold": 8, + "MaxTier": 1, + "ProductId": 1718430474, + "Tiers": [ + { + "Desc": "Time to party! Random Events happen more often for you!", + "DisplayName": "Party Time", + "Icon": "rbxassetid://15799383770", + "Power": 5, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Wicked", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "55e9c191deefc52f", + "configName": "Enchant | Party Time", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:49.949Z", + "hashShort": "e27ba05a6aa648f8", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Exclusive", + "collection": "Enchants", "configData": { - "Desc": "👼👿 Found in Good vs Evil Gift!", - "DisplayName": "Good vs. Evil Hoverboard", - "Icon": "rbxassetid://18123300092", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://18151874045", - ], - "idle": [ - "rbxassetid://18151873799", - ], - "jump": [ - "rbxassetid://18151874486", - "rbxassetid://18151874296", - "rbxassetid://18151874734", - ], - }, + "BaseTier": 1, + "DiminishPowerThreshold": 0.8, + "MaxTier": 1, + "ProductId": 1674740376, + "Tiers": [ + { + "Desc": "Lucky Blocks may randomly appear in your area!", + "DisplayName": "Lucky Block", + "Icon": "rbxassetid://15257718885", + "Power": 0.5, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Good vs Evil", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "bf9b10fbadf4879f", + "configName": "Enchant | Lucky Block", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:49.943Z", + "hashShort": "2c28c289a32d3a39", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Exclusive", + "collection": "Enchants", "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Safety Clan Battle!", - "DisplayName": "Safety Hoverboard", - "Icon": "rbxassetid://18127021259", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://18252156889", - ], - "idle": [ - "rbxassetid://18252157473", - ], - "jump": [ - "rbxassetid://18252157197", - "rbxassetid://18252157786", - "rbxassetid://18252158085", - ], - }, + "BaseTier": 1, + "DiminishPowerThreshold": 0.4, + "MaxTier": 1, + "ProductId": 1718434271, + "Tiers": [ + { + "Desc": "Chance to spawn a Massive Comet! Drops items, diamonds and coins!", + "DisplayName": "Massive Comet", + "Icon": "rbxassetid://15799384059", + "Power": 0.25, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Safety", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "fc496d1fcffa2009", + "configName": "Enchant | Massive Comet", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.130Z", + "hashShort": "99618c8b690dd791", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Exclusive", + "collection": "Enchants", "configData": { - "Desc": "Bring the party! Glide through in style! ✨ Found in Rave Gifts!", - "DisplayName": "Rave Hoverboard", - "Icon": "rbxassetid://18351926226", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://18351746746", - "rbxassetid://18351748237", - "rbxassetid://18351749045", - ], - "idle": [ - "rbxassetid://18351747064", - ], - "jump": [ - "rbxassetid://18351747492", - "rbxassetid://18351749342", - "rbxassetid://18351748791", - ], - }, + "BaseTier": 1, + "DiminishPowerThreshold": 0.9600000000000002, + "MaxTier": 1, + "ProductId": 1674746599, + "Tiers": [ + { + "Desc": "Destroying a breakable can reveal a Mini Chest!", + "DisplayName": "Chest Mimic", + "Icon": "rbxassetid://15257719276", + "Power": 0.4, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Rave", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "c6a72591785bdd8d", + "configName": "Enchant | Chest Mimic", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:49.977Z", + "hashShort": "957bf756594631d7", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Exclusive", + "collection": "Enchants", "configData": { - "Animation": 11897877992, - "BobRate": 3, - "CanBeShiny": true, - "Desc": "Kick back and relax like royalty!", - "DisplayName": "Throne Hoverboard", - "HoverHeight": 6, - "Icon": "rbxassetid://18539294870", - "ProductId": 1881198159, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RotationLimit": 0, - "ShinyParticleScale": 1, - "Sounds": { - "equip": [ - "rbxassetid://18551758191", - ], - "idle": [ - "rbxassetid://18552441652", - ], - "jump": [ - "rbxassetid://18551759339", - "rbxassetid://18551757457", - "rbxassetid://18551757623", - ], - }, - "Tradable": true, + "BaseTier": 1, + "DiminishPowerThreshold": 0.26666666666666666, + "MaxTier": 1, + "ProductId": 1718434784, + "Tiers": [ + { + "Desc": "Destroying a breakable can reveal a Diamond Mini Chest!", + "DisplayName": "Diamond Chest Mimic", + "Icon": "rbxassetid://15801837068", + "Power": 0.16666666666666666, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Throne", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "f362e9d11813c2a5", + "configName": "Enchant | Diamond Chest Mimic", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:49.980Z", + "hashShort": "610a9b2d83c0e558", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Exclusive", + "collection": "Enchants", "configData": { - "CanBeShiny": true, - "Desc": "With pepperoni, without pineapple!", - "DisplayName": "Pizza Hoverboard", - "Icon": "rbxassetid://18539295726", - "ProductId": 1881197707, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": { - "equip": [ - "rbxassetid://18551757917", - ], - "idle": [ - "rbxassetid://18551759877", - ], - "jump": [ - "rbxassetid://18551758502", - "rbxassetid://18551758711", - "rbxassetid://18551759560", - ], - }, - "Tradable": true, + "BaseTier": 1, + "DiminishPowerThreshold": 240, + "MaxTier": 1, + "ProductId": 1759520039, + "Tiers": [ + { + "Desc": "Increases the odds of hatching shiny pets by +150%!", + "DisplayName": "Super Shiny Hunter", + "Icon": "rbxassetid://16457058699", + "Power": 150, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Pizza", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "933371a4fc8854a3", + "configName": "Enchant | Super Shiny Hunter", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:49.973Z", + "hashShort": "3aec46dbf46377b4", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Special", + "collection": "Enchants", "configData": { - "Animator": null, - "CanBeShiny": true, - "Desc": ":3 pop :3 pop :3 pop", - "DisplayName": "Popcat Hoverboard", - "Icon": "rbxassetid://18539295537", - "ProductId": 1881197449, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "Setup": null, - "ShinyParticleScale": 1, - "Sounds": { - "equip": [ - "rbxassetid://18551760110", - ], - "idle": [ - "rbxassetid://18552854797", - ], - "jump": [ - "rbxassetid://18552855278", - "rbxassetid://18552855479", - "rbxassetid://18552855059", - ], - }, - "Tradable": true, + "BaseTier": 1, + "DiminishPowerThreshold": 0.25, + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Increase the power of your fruits by 25%, but they expire twice as fast!", + "DisplayName": "Fruity", + "Icon": "rbxassetid://16504664274", + "Power": 0.25, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Popcat", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "31aac8b85fdcff5e", + "configName": "Enchant | Fruity", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:49.948Z", + "hashShort": "fddb80f6b73f89bc", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Exclusive", + "collection": "Enchants", "configData": { - "Desc": "Cha-ching! Dolla' dolla' bills ya'll!", - "DisplayName": "Millionaire Hoverboard", - "Icon": "rbxassetid://18539295902", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://18551761750", - ], - "idle": [ - "rbxassetid://18551762296", - ], - "jump": [ - "rbxassetid://18551761986", - "rbxassetid://18551762896", - "rbxassetid://18551762594", - ], - }, + "BaseTier": 1, + "DiminishPowerThreshold": 0.24000000000000005, + "MaxTier": 1, + "ProductId": 1759511562, + "Tiers": [ + { + "Desc": "Destroying a breakable can reveal a Boss Chest!", + "DisplayName": "Boss Chest Mimic", + "Icon": "rbxassetid://16457058891", + "Power": 0.1, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Millionaire", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "2a7d7d61d83366c4", + "configName": "Enchant | Boss Chest Mimic", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.011Z", + "hashShort": "c338422e31285482", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Exclusive", + "collection": "Enchants", "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Clown Clan Battle!", - "DisplayName": "Clown Hoverboard", - "Icon": "rbxassetid://18556730015", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://18670428358", - ], - "idle": [ - "rbxassetid://18670427780", - ], - "jump": [ - "rbxassetid://18670428016", - "rbxassetid://18670426725", - "rbxassetid://18670427575", - ], - }, + "BaseTier": 1, + "DiminishPowerThreshold": 1, + "MaxTier": 1, + "ProductId": 1775110157, + "Tiers": [ + { + "Desc": "Collect coins, lootbags and dropped items from anywhere & everywhere!", + "DisplayName": "Super Magnet", + "Icon": "rbxassetid://16736074645", + "Power": 1, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Clown", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "065bd803ac44f046", + "configName": "Enchant | Super Magnet", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:49.975Z", + "hashShort": "fb80315a6ee5df80", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Exclusive", + "collection": "Enchants", "configData": { - "Desc": "Faster than a stampede of dinos!", - "DisplayName": "Dino Hoverboard", - "Icon": "rbxassetid://18673988926", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://18670426195", - ], - "idle": [ - "rbxassetid://18670427043", - ], - "jump": [ - "rbxassetid://18670426549", - "rbxassetid://18670425372", - "rbxassetid://18670427213", - ], - }, + "BaseTier": 1, + "DiminishPowerThreshold": 0.2, + "MaxTier": 1, + "ProductId": 1775110873, + "Tiers": [ + { + "Desc": "Boss Lucky Blocks may randomly appear in your area!", + "DisplayName": "Boss Lucky Block", + "Icon": "rbxassetid://16735810565", + "Power": 0.125, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Dino", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "2c4f356d024ef43b", + "configName": "Enchant | Boss Lucky Block", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:49.976Z", + "hashShort": "012bc832834df369", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Exclusive", + "collection": "Enchants", "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Ice Cream Clan Battle!", - "DisplayName": "Ice Cream Hoverboard", - "Icon": "rbxassetid://18856413784", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://99471941929125", - ], - "idle": [ - "rbxassetid://18252157786", - ], - "jump": [ - "rbxassetid://137244612282875", - "rbxassetid://92537117161811", - "rbxassetid://80877763357290", - ], - }, + "BaseTier": 1, + "DiminishPowerThreshold": 100, + "MaxTier": 1, + "ProductId": 1795853901, + "Tiers": [ + { + "Desc": "Spawns an orb companion that fires bolts of lightning to nearby breakables!", + "DisplayName": "Lightning Orb", + "Icon": "rbxassetid://18655090446", + "Power": 100, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Ice Cream", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "8404c59fe13b7128", + "configName": "Enchant | Lightning Orb", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:49.978Z", + "hashShort": "688c6933e574dafd", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Exclusive", + "collection": "Enchants", "configData": { - "Desc": "Faster than the speed of light!", - "DisplayName": "Aura Hoverboard", - "Icon": "rbxassetid://18856413934", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": [], + "BaseTier": 1, + "DiminishPowerThreshold": 2, + "MaxTier": 1, + "ProductId": 1816773521, + "Tiers": [ + { + "Desc": "Mini Chests drop 2x better items!", + "DisplayName": "Mini Chest Fortune", + "Icon": "rbxassetid://17276030055", + "Power": 2, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Aura", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "08aa6ba99ff93756", + "configName": "Enchant | Mini Chest Fortune", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:49.971Z", + "hashShort": "2e66444decdd6d58", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Exclusive", + "collection": "Enchants", "configData": { - "Desc": "🍓 Juicy, sweet, and fast! 🍓", - "DisplayName": "Strawberry Hoverboard", - "Icon": "rbxassetid://86730873153798", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://120986114838331", - ], - "idle": [ - "rbxassetid://90990178890073", - ], - "jump": [ - "rbxassetid://115325188076060", - "rbxassetid://98554516294595", - "rbxassetid://125132165741510", - ], - }, + "BaseTier": 1, + "DiminishPowerThreshold": 100, + "MaxTier": 1, + "ProductId": 1816774438, + "Tiers": [ + { + "Desc": "Increases the strength of your shiny pets by 100%!", + "DisplayName": "Shiny Supercharge", + "Icon": "rbxassetid://17276029951", + "Power": 100, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Strawberry", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "f329e7ab0e400500", + "configName": "Enchant | Shiny Supercharge", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:49.977Z", + "hashShort": "ff7c91554b83a6df", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Special", + "collection": "Enchants", "configData": { - "Desc": "Caution wet paint!", - "DisplayName": "Art Hoverboard", - "Icon": "rbxassetid://72358393018887", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://116123174038657", - ], - "idle": [ - "rbxassetid://117345472200165", - ], - "jump": [ - "rbxassetid://86811526485418", - "rbxassetid://116117969156643", - "rbxassetid://77917141921172", - ], - }, + "BaseTier": 1, + "DiminishPowerThreshold": 1, + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Chance to apply corruption to breakables and increase the amount of damage you do!", + "DisplayName": "Corruption", + "Icon": "rbxassetid://17375424643", + "Power": 1, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Art", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "d44f1f4e43da7c35", + "configName": "Enchant | Corruption", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:49.945Z", + "hashShort": "5e44fbde84849e3c", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Special", + "collection": "Enchants", "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Rave Crab Clan Battle!", - "DisplayName": "Rave Crab Hoverboard", - "Icon": "rbxassetid://104010438711348", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://127297605847035", - ], - "idle": [ - "rbxassetid://73276500471130", - ], - "jump": [ - "rbxassetid://133984231025677", - "rbxassetid://126951019768379", - "rbxassetid://124024086900136", - ], - }, + "BaseTier": 1, + "DiminishPowerThreshold": 100, + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Spawns an orb companion that fires balls of terror at nearby breakables!", + "DisplayName": "Nightmare Orb", + "Icon": "rbxassetid://17375424435", + "Power": 100, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Rave Crab", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "b93620422798be94", + "configName": "Enchant | Nightmare Orb", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:49.939Z", + "hashShort": "b98802ba1e1769bb", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Exclusive", + "collection": "Enchants", "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Upside Down Clan Battle!", - "DisplayName": "Reversed Hoverboard", - "Icon": "rbxassetid://104003058332482", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://131657036440279", - ], - "idle": [ - "rbxassetid://109008992005347", - ], - "jump": [ - "rbxassetid://75433948107955", - ], - }, + "BaseTier": 1, + "DiminishPowerThreshold": 0.24000000000000005, + "MaxTier": 1, + "ProductId": 1829171313, + "Tiers": [ + { + "Desc": "Destroying a breakable can reveal a Superior Mini Chest!", + "DisplayName": "Superior Chest Mimic", + "Icon": "rbxassetid://17502541549", + "Power": 0.1, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Reversed", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "0abc82d9bd4d09d2", + "configName": "Enchant | Superior Chest Mimic", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:49.980Z", + "hashShort": "84b0faa8ab311230", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Special", + "collection": "Enchants", "configData": { - "Desc": "Earth, fire, water, ice, and all that!", - "DisplayName": "Elemental Hoverboard", - "Icon": "rbxassetid://101555005426126", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://127087646371704", - ], - "idle": [ - "rbxassetid://78875846999309", - ], - "jump": [ - "rbxassetid://104811511655918", - ], - }, + "BaseTier": 1, + "DiminishPowerThreshold": 1, + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Each hacker key drop provides two or three keys!", + "DisplayName": "Hacker Key Hunter", + "Icon": "rbxassetid://17760584353", + "Power": 1, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Elemental", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "567662257569b3b9", + "configName": "Enchant | Hacker Key Hunter", + "dateCreated": "2025-07-05T23:23:25.503Z", + "dateModified": "2025-07-05T23:23:25.503Z", + "hashShort": "b3e9ba3bc829b20d", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Special", + "collection": "Enchants", "configData": { - "Desc": "Found in the Pumpkin Gift!", - "DisplayName": "Pumpkin Cat Hoverboard", - "Icon": "rbxassetid://92900937122832", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://71928776553803", - ], - "idle": [ - "rbxassetid://95108682670473", - ], - "jump": [ - "rbxassetid://82122552299009", - ], - }, + "BaseTier": 1, + "DiminishPowerThreshold": 1.04, + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Chance to strike breakables with a demonic curse dealing more damage with every strike! Strikes up to 5 times!", + "DisplayName": "Demonic", + "Icon": "rbxassetid://18255411160", + "Power": 0.65, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Superior", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 8, + "_id": "Superior", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Pumpkin Cat", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "36af1d6f58cd430c", + "configName": "Enchant | Demonic", + "dateCreated": "2025-07-05T23:23:25.503Z", + "dateModified": "2025-07-05T23:23:25.503Z", + "hashShort": "8680fe1814210faf", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Special", + "collection": "Enchants", "configData": { - "Desc": "Found in the Spider Pack!", - "DisplayName": "Web Hoverboard", - "Icon": "rbxassetid://76504501851707", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://100828934639695", - ], - "idle": [ - "rbxassetid://81170050373448", - ], - "jump": [ - "rbxassetid://73955618282141", - ], - }, + "BaseTier": 1, + "DiminishPowerThreshold": 1.04, + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Chance to strike breakables with angelic justice dealing more damage with every strike! Strikes up to 5 times!", + "DisplayName": "Angelic", + "Icon": "rbxassetid://18222206298", + "Power": 0.65, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Superior", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 8, + "_id": "Superior", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Web", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "85266ca8ea9e1d49", + "configName": "Enchant | Angelic", + "dateCreated": "2025-07-05T23:23:25.503Z", + "dateModified": "2025-07-05T23:23:25.503Z", + "hashShort": "16a280717aa26524", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Exclusive", + "collection": "Enchants", "configData": { - "Desc": "Obtained from the Halloween 2024 Quests!", - "DisplayName": "Vampire Bat Hoverboard", - "Icon": "rbxassetid://111125773128350", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://136004587128798", - ], - "idle": [ - "rbxassetid://100081183731600", - ], - "jump": [ - "rbxassetid://82874763227894", - ], - }, + "BaseTier": 1, + "DiminishPowerThreshold": 0.5333333333333333, + "MaxTier": 1, + "ProductId": 1861245836, + "Tiers": [ + { + "Desc": "Destroying a breakable can drop a Diamond Gift Bag!", + "DisplayName": "Diamond Gift Hunter", + "Icon": "rbxassetid://18222206998", + "Power": 0.3333333333333333, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + ], }, - "configName": "Hoverboard | Vampire Bat", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "203a043df425389d", + "configName": "Enchant | Diamond Gift Hunter", + "dateCreated": "2025-07-05T23:23:25.503Z", + "dateModified": "2025-07-05T23:23:25.503Z", + "hashShort": "f64b572df3622742", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Exclusive", + "collection": "Enchants", "configData": { - "Desc": "Found in the Candy Corn Gift!", - "DisplayName": "Witch Cat Hoverboard", - "Icon": "rbxassetid://103768732773689", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://124186610783745", - ], - "idle": [ - "rbxassetid://125636908316423", - ], - "jump": [ - "rbxassetid://100081183731600", - ], - }, - }, - "configName": "Hoverboard | Witch Cat", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "0ecf6090f86c9edc", + "BaseTier": 1, + "DiminishPowerThreshold": 100, + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Spawns an orb companion that has a chance to turn breakables into Diamond!", + "DisplayName": "Diamond Orb", + "Icon": "rbxassetid://18655090651", + "Power": 100, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + ], + "Tradable": true, + }, + "configName": "Enchant | Diamond Orb", + "dateCreated": "2025-07-05T23:23:25.503Z", + "dateModified": "2025-07-05T23:23:25.503Z", + "hashShort": "526722cfc2d782be", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Exclusive", + "collection": "Enchants", "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Ghost Clan Battle!", - "DisplayName": "Ghost Hoverboard", - "Icon": "rbxassetid://135978414574016", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://124083915816008", + "BaseTier": 1, + "DiminishPowerThreshold": 40, + "MaxTier": 1, + "ProductId": 2313608101, + "Tiers": [ + { + "Desc": "Adds +1 RARE Active Huge to hatch! + +Increases Active Huge hatch luck by 40%!", + "DisplayName": "Active Huge Overload", + "Icon": "rbxassetid://90697119855056", + "Power": 40, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + ], + }, + "configName": "Enchant | Active Huge Overload", + "dateCreated": "2025-07-05T23:23:25.503Z", + "dateModified": "2025-07-05T23:23:25.503Z", + "hashShort": "8fd02b8b03353ec0", + }, + { + "category": "Exclusive", + "collection": "Enchants", + "configData": { + "BaseTier": 1, + "DiminishPowerThreshold": 12, + "MaxTier": 1, + "ProductId": 2662224833, + "Tiers": [ + { + "Desc": "Boosts your ability to hatch Rainbow pets!", + "DisplayName": "Rainbow Egg", + "Icon": "rbxassetid://82449205025738", + "Power": 10, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + ], + }, + "configName": "Enchant | Rainbow Eggs", + "dateCreated": "2025-07-05T23:23:25.503Z", + "dateModified": "2025-07-05T23:23:25.503Z", + "hashShort": "60d2c9f6efc0720f", + }, + { + "category": "Exclusive", + "collection": "Enchants", + "configData": { + "BaseTier": 1, + "DiminishPowerThreshold": 1, + "MaxTier": 1, + "ProductId": 2665766404, + "Tiers": [ + { + "Desc": "Gives DOUBLE the coins from destroying breakables!", + "DisplayName": "Double Coins", + "Icon": "rbxassetid://92136936171430", + "Power": 1, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + ], + }, + "configName": "Enchant | Double Coins", + "dateCreated": "2025-07-05T23:23:25.503Z", + "dateModified": "2025-07-05T23:23:25.503Z", + "hashShort": "37a92b06b76708b5", + }, + { + "category": "Exclusive", + "collection": "Enchants", + "configData": { + "BaseTier": 1, + "DiminishPowerThreshold": 1, + "MaxTier": 1, + "ProductId": 2689880249, + "Tiers": [ + { + "Desc": "Random HUGE & TITANIC chance while destroying breakables! + +Huge & Titanic rotates DAILY!", + "DisplayName": "Breakable Mayhem", + "Icon": "rbxassetid://136082909959165", + "Power": 0.5, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + ], + }, + "configName": "Enchant | Breakable Mayhem", + "dateCreated": "2025-07-05T23:23:25.503Z", + "dateModified": "2025-07-05T23:23:25.503Z", + "hashShort": "b4ea2320e9db8c1d", + }, + { + "category": "Special", + "collection": "Enchants", + "configData": { + "BaseTier": 1, + "DiminishPowerThreshold": 500, + "MaxTier": 1, + "Tiers": [ + { + "Desc": "Increases the damage you deal to chests by 500%!", + "DisplayName": "Mega Chest Breaker", + "Icon": "rbxassetid://116837175751892", + "Power": 500, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + ], + }, + "configName": "Enchant | Mega Chest Breaker", + "dateCreated": "2025-07-05T23:23:25.503Z", + "dateModified": "2025-07-05T23:23:25.503Z", + "hashShort": "f890e664894fd9b2", + }, + { + "category": "Exclusive", + "collection": "Enchants", + "configData": { + "BaseTier": 1, + "DiminishPowerThreshold": 600, + "MaxTier": 1, + "ProductId": 3296149716, + "Tiers": [ + { + "Desc": "Grants 3x Huge, Titanic, and Gargantuan XP!", + "DisplayName": "Superior Wisdom", + "Icon": "rbxassetid://127001486940469", + "Power": 300, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + }, + ], + }, + "configName": "Enchant | Superior Wisdom", + "dateCreated": "2025-07-05T23:23:25.503Z", + "dateModified": "2025-07-05T23:23:25.503Z", + "hashShort": "4576011c338c05bc", + }, + ], + "status": "ok", +} +`; + +exports[`Pet Simulator Public Live API Test FishingRods shape 1`] = ` +{ + "data": [ + { + "category": "FishingRods", + "collection": "FishingRods", + "configData": { + "AssociatedItemID": "Wooden Fishing Rod", + "BarSize": 0.5, + "DisplayName": "Wooden Fishing Rod", + "FishingChance": 0.75, + "FishingCurrencyMultiplier": 1.2, + "FishingGameSpeedMultiplier": 1, + "FishingOdds": [ + [ + "Basic", + 95, ], - "idle": [ - "rbxassetid://74603654873510", + [ + "Legendary", + 5, ], - "jump": [ - "rbxassetid://118563623791477", + ], + "Icon": "rbxassetid://16028878115", + "LineColor": null, + "MinFishingTime": 2, + "Model": null, + }, + "configName": "FishingRod | Wooden Fishing Rod", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.234Z", + "hashShort": "d99efe6e485cbfe8", + }, + { + "category": "FishingRods", + "collection": "FishingRods", + "configData": { + "AssociatedItemID": "Sturdy Fishing Rod", + "BarSize": 0.4, + "DisplayName": "Sturdy Fishing Rod", + "FishingChance": 0.75, + "FishingCurrencyMultiplier": 7.5, + "FishingGameSpeedMultiplier": 0.975, + "FishingOdds": [ + [ + "Basic", + 93, ], - }, + [ + "Legendary", + 7, + ], + ], + "Icon": "rbxassetid://16028878219", + "LineColor": null, + "MerchantSalePrice": 100, + "MinFishingTime": 1.9, + "Model": null, }, - "configName": "Hoverboard | Ghost", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "4e4f38ef16acf3be", + "configName": "FishingRod | Sturdy Fishing Rod", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.227Z", + "hashShort": "f4d73eddac1c5fd3", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "FishingRods", + "collection": "FishingRods", "configData": { - "Desc": "Summon the force! Spawns with a random color!", - "DisplayName": "Forcefield Hoverboard", - "Icon": "rbxassetid://127428987246427", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Setup": null, - "Sounds": { - "equip": [ - "rbxassetid://79278574468993", + "AssociatedItemID": "Advanced Fishing Rod", + "BarSize": 0.4, + "DisplayName": "Advanced Fishing Rod", + "FishingChance": 0.75, + "FishingCurrencyMultiplier": 15, + "FishingGameSpeedMultiplier": 0.925, + "FishingOdds": [ + [ + "Basic", + 90, ], - "idle": [ - "rbxassetid://78924798235258", + [ + "Legendary", + 10, ], - "jump": [ - "rbxassetid://105220130736381", + ], + "Icon": "rbxassetid://16028879358", + "LineColor": null, + "MerchantSalePrice": 2500, + "MinFishingTime": 1.85, + "Model": null, + }, + "configName": "FishingRod | Advanced Fishing Rod", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.237Z", + "hashShort": "ef0933069f467d18", + }, + { + "category": "FishingRods", + "collection": "FishingRods", + "configData": { + "AssociatedItemID": "Pro Fishing Rod", + "BarSize": 0.4, + "DisplayName": "Iron Fishing Rod", + "FishingChance": 0.75, + "FishingCurrencyMultiplier": 50, + "FishingGameSpeedMultiplier": 0.75, + "FishingOdds": [ + [ + "Basic", + 70, ], - }, + [ + "Legendary", + 30, + ], + ], + "Icon": "rbxassetid://16028878776", + "LineColor": null, + "MerchantSalePrice": 100000, + "MinFishingTime": 1.6, + "Model": null, }, - "configName": "Hoverboard | Forcefield", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "91acd2c12e065f17", + "configName": "FishingRod | Pro Fishing Rod", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.234Z", + "hashShort": "00b715a29a5b4283", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "FishingRods", + "collection": "FishingRods", "configData": { - "CanBeShiny": true, - "Desc": "Pencil with #2 lead", - "DisplayName": "Pencil Hoverboard", - "Icon": "rbxassetid://113564669329061", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": { - "equip": [ - "rbxassetid://101976494467819", + "AssociatedItemID": "Super Fishing Rod", + "BarSize": 0.4, + "DisplayName": "Stone Fishing Rod", + "FishingChance": 0.75, + "FishingCurrencyMultiplier": 25, + "FishingGameSpeedMultiplier": 0.85, + "FishingOdds": [ + [ + "Basic", + 85, ], - "idle": [ - "rbxassetid://76572833155615", + [ + "Legendary", + 15, ], - "jump": [ - "rbxassetid://123743368170016", + ], + "Icon": "rbxassetid://16028878295", + "LineColor": null, + "MerchantSalePrice": 25000, + "MinFishingTime": 1.75, + "Model": null, + }, + "configName": "FishingRod | Super Fishing Rod", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.231Z", + "hashShort": "f285b69e5a66ee83", + }, + { + "category": "FishingRods", + "collection": "FishingRods", + "configData": { + "AssociatedItemID": "Golden Fishing Rod", + "BarSize": 0.4, + "DisplayName": "Golden Fishing Rod", + "FishingChance": 0.75, + "FishingCurrencyMultiplier": 50, + "FishingGameSpeedMultiplier": 0.75, + "FishingOdds": [ + [ + "Basic", + 70, ], - }, - "Tradable": true, + [ + "Legendary", + 30, + ], + ], + "Icon": "rbxassetid://16028878947", + "LineColor": null, + "MinFishingTime": 1.6, + "Model": null, }, - "configName": "Hoverboard | Pencil", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "61bc1826ef18ad04", + "configName": "FishingRod | Golden Fishing Rod", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.230Z", + "hashShort": "3fa854dad557da56", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "FishingRods", + "collection": "FishingRods", "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Blimp Dragon Clan Battle!", - "DisplayName": "Blimp Dragon Hoverboard", - "Icon": "rbxassetid://96120997011987", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://96881191425969", + "AssociatedItemID": "Platinum Fishing Rod", + "BarSize": 0.4, + "DisplayName": "Platinum Fishing Rod", + "FishingChance": 0.75, + "FishingCurrencyMultiplier": 150, + "FishingGameSpeedMultiplier": 0.975, + "FishingOdds": [ + [ + "Advanced Basic", + 93, ], - "idle": [ - "rbxassetid://123430710794227", + [ + "Advanced Legendary", + 7, ], - "jump": [ - "rbxassetid://127804007844699", + ], + "Icon": "rbxassetid://16028878591", + "LineColor": null, + "MerchantSalePrice": 40000, + "MinFishingTime": 2, + "Model": null, + }, + "configName": "FishingRod | Platinum Fishing Rod", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.242Z", + "hashShort": "754ddd5ed957f0fb", + }, + { + "category": "FishingRods", + "collection": "FishingRods", + "configData": { + "AssociatedItemID": "Diamond Fishing Rod", + "BarSize": 0.4, + "DisplayName": "Diamond Fishing Rod", + "FishingChance": 0.75, + "FishingCurrencyMultiplier": 1400, + "FishingGameSpeedMultiplier": 0.75, + "FishingOdds": [ + [ + "Advanced Basic", + 70, ], - }, - "Tradable": true, + [ + "Advanced Legendary", + 30, + ], + ], + "Icon": "rbxassetid://16028879185", + "LineColor": null, + "MinFishingTime": 1.6, + "Model": null, }, - "configName": "Hoverboard | Blimp Dragon", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "174c604be9945cc5", + "configName": "FishingRod | Diamond Fishing Rod", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.245Z", + "hashShort": "b8020f85ce04d46c", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "FishingRods", + "collection": "FishingRods", "configData": { - "CanBeShiny": true, - "Desc": "Scrrrrrrrr! Scrrrrrrrr!", - "DisplayName": "Electric Guitar Hoverboard", - "Icon": "rbxassetid://105994679046982", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": { - "equip": [ - "rbxassetid://131035418972504", + "AssociatedItemID": "Emerald Fishing Rod", + "BarSize": 0.4, + "DisplayName": "Emerald Fishing Rod", + "FishingChance": 0.75, + "FishingCurrencyMultiplier": 350, + "FishingGameSpeedMultiplier": 0.925, + "FishingOdds": [ + [ + "Advanced Basic", + 90, ], - "idle": [ - "rbxassetid://85855123674398", + [ + "Advanced Legendary", + 10, ], - "jump": [ - "rbxassetid://138013621005610", + ], + "Icon": "rbxassetid://16028879073", + "LineColor": null, + "MerchantSalePrice": 150000, + "MinFishingTime": 1.9, + "Model": null, + }, + "configName": "FishingRod | Emerald Fishing Rod", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.244Z", + "hashShort": "e9ffc804f26082f8", + }, + { + "category": "FishingRods", + "collection": "FishingRods", + "configData": { + "AssociatedItemID": "Sapphire Fishing Rod", + "BarSize": 0.4, + "DisplayName": "Sapphire Fishing Rod", + "FishingChance": 0.75, + "FishingCurrencyMultiplier": 700, + "FishingGameSpeedMultiplier": 0.85, + "FishingOdds": [ + [ + "Advanced Basic", + 85, ], - }, - "Tradable": true, + [ + "Advanced Legendary", + 15, + ], + ], + "Icon": "rbxassetid://16028878380", + "LineColor": null, + "MerchantSalePrice": 425000, + "MinFishingTime": 1.75, + "Model": null, }, - "configName": "Hoverboard | Electric Guitar", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "5b2469f4dba9919d", + "configName": "FishingRod | Sapphire Fishing Rod", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.226Z", + "hashShort": "889a882353085ee1", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "FishingRods", + "collection": "FishingRods", "configData": { - "Desc": "little paw prints", - "DisplayName": "Paw Print Hoverboard", - "Icon": "rbxassetid://91290351020499", + "AssociatedItemID": "Amethyst Fishing Rod", + "BarSize": 0.4, + "DisplayName": "Amethyst Fishing Rod", + "FishingChance": 0.75, + "FishingCurrencyMultiplier": 1400, + "FishingGameSpeedMultiplier": 0.75, + "FishingOdds": [ + [ + "Advanced Basic", + 70, + ], + [ + "Advanced Legendary", + 30, + ], + ], + "Icon": "rbxassetid://16028879272", + "LineColor": null, + "MerchantSalePrice": 2250000, + "MinFishingTime": 1.6, + "Model": null, + }, + "configName": "FishingRod | Amethyst Fishing Rod", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.239Z", + "hashShort": "5940d226f6627eb2", + }, + ], + "status": "ok", +} +`; + +exports[`Pet Simulator Public Live API Test Fruits shape 1`] = ` +{ + "data": [ + { + "category": "Fruits", + "collection": "Fruits", + "configData": { + "Boost": [ + { + "Amount": 1.5, + "Type": "Drops", + }, + ], + "Desc": "Christmas snack for your pets! Increases chance for drops by %! +(Stacks!)", + "DisplayName": "Candycane", + "Duration": 300, + "Icon": "rbxassetid://15636388090", + "IgnoreFruitMachine": true, "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "Sounds": { - "equip": [ - "rbxassetid://121365445530549", - ], - "idle": [ - "rbxassetid://85002799749705", - ], - "jump": [ - "rbxassetid://138778146730896", - ], - }, - "Tradable": true, }, - "configName": "Hoverboard | Paw Print", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "4d958a6a68a4cc5c", + "configName": "Fruit | Candycane", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.068Z", + "hashShort": "fc6bbcc077d1d2c8", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Fruits", + "collection": "Fruits", "configData": { - "Animation": 2506281703, - "BlockcastScale": 0, - "BobRate": 0, - "CanBeShiny": true, - "Desc": "MOVE OUT THE WAY!", - "DisplayName": "Tank", - "HoverHeight": 0.23, - "Icon": "rbxassetid://137082519504492", - "IdlePitchScale": 0, - "IdleVolume": 2, - "IdleVolumeSpeedScale": 0, - "MaxRoll": 0, - "PitchScale": 0, + "Boost": [ + { + "Amount": 5, + "Type": "Coins", + }, + ], + "Desc": null, + "DisplayName": "Banana", + "Duration": 300, + "Icon": "rbxassetid://15030757462", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "RotationLimit": null, - "ShinyParticleScale": 1, - "SkateMode": true, - "Sounds": { - "equip": [ - "rbxassetid://82426788617363", - ], - "idle": [ - "rbxassetid://72506916075753", - ], - "jump": [ - "rbxassetid://126321633237733", - ], - }, - "Tradable": true, + "ShinyIcon": "rbxassetid://18577433706", }, - "configName": "Hoverboard | Tank", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "db0242e3bb5a7a70", + "configName": "Fruit | Banana", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.053Z", + "hashShort": "7f2ea7b98374ada4", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Fruits", + "collection": "Fruits", "configData": { - "Desc": "What do these little lines mean?!", - "DisplayName": "Ruler Hoverboard", - "Icon": "rbxassetid://79346248252472", + "Boost": [ + { + "Amount": 1, + "Type": "Diamonds", + }, + ], + "Desc": null, + "DisplayName": "Orange", + "Duration": 300, + "Icon": "rbxassetid://15030757291", "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "Sounds": { - "equip": [ - "rbxassetid://138025106053581", - ], - "idle": [ - "rbxassetid://121746924468436", - ], - "jump": [ - "rbxassetid://93268074832189", - ], - }, - "Tradable": true, + "ShinyIcon": "rbxassetid://18577433264", }, - "configName": "Hoverboard | Ruler", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "a5784536994e9926", + "configName": "Fruit | Orange", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.073Z", + "hashShort": "05009207f7bda15d", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Fruits", + "collection": "Fruits", "configData": { - "Desc": "Can you eat crayons?", - "DisplayName": "Crayon Hoverboard", - "Icon": "rbxassetid://84133962454080", + "Boost": [ + { + "Amount": 1, + "Type": "Drops", + }, + ], + "Desc": null, + "DisplayName": "Pineapple", + "Duration": 300, + "Icon": "rbxassetid://15030757105", "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "Sounds": [], - "Tradable": true, + "ShinyIcon": "rbxassetid://18577434101", }, - "configName": "Hoverboard | Crayon", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "2320119f7877e395", + "configName": "Fruit | Pineapple", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.071Z", + "hashShort": "752e7b675e097016", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Fruits", + "collection": "Fruits", "configData": { - "Desc": "leave 'em in the .. 🍂🍁🌿🍃 leaves", - "DisplayName": "Autumn Hoverboard", - "Icon": "rbxassetid://126077829420151", + "Boost": [ + { + "Amount": 5, + "Type": "Coins", + }, + { + "Amount": 1, + "Type": "Diamonds", + }, + { + "Amount": 1.5, + "Type": "Damage", + }, + { + "Amount": 1, + "Type": "Drops", + }, + { + "Amount": 1, + "Type": "Bonus", + }, + ], + "Desc": null, + "DisplayName": "Rainbow Fruit", + "Duration": 300, + "Icon": "rbxassetid://15030756988", "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "Sounds": { - "equip": [ - "rbxassetid://136716577098237", - ], - "idle": [ - "rbxassetid://95738605773569", - ], - "jump": [ - "rbxassetid://80848245318072", - ], - }, + "ShinyIcon": "rbxassetid://18577433891", + "preventShiny": true, }, - "configName": "Hoverboard | Autumn", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "3fd1d403d2f6d612", + "configName": "Fruit | Rainbow", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.058Z", + "hashShort": "3a6ee5ae9485ac5c", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Fruits", + "collection": "Fruits", "configData": { - "Desc": "Gotta go! gobble gobble!", - "DisplayName": "Turkey Hoverboard", - "Icon": "rbxassetid://104956378883955", + "Boost": [ + { + "Amount": 1.5, + "Type": "Damage", + }, + ], + "Desc": null, + "DisplayName": "Apple", + "Duration": 300, + "Icon": "rbxassetid://15030757644", "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "Sounds": { - "equip": [ - "rbxassetid://91039191206603", - ], - "idle": [ - "rbxassetid://70791748470343", - ], - "jump": [ - "rbxassetid://78855054093855", - ], - }, + "ShinyIcon": "rbxassetid://18577434379", }, - "configName": "Hoverboard | Turkey", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "91565b34b08bb101", + "configName": "Fruit | Apple", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.073Z", + "hashShort": "9d3bd6398681f5d4", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Fruits", + "collection": "Fruits", "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Bee Clan Battle!", - "DisplayName": "Bee Hoverboard", - "Icon": "rbxassetid://14910770233", + "Boost": [ + { + "Amount": 1, + "Type": "Bonus", + }, + ], + "Desc": "Tasty snack for your pets! Boosts chance of bonuses by %! +(Stacks!)", + "DisplayName": "Watermelon", + "Duration": 300, + "Icon": "rbxassetid://16717381270", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "Sounds": { - "equip": [ - "rbxassetid://100681568572549", - ], - "idle": [ - "rbxassetid://89224538861170", - ], - "jump": [ - "rbxassetid://139295889146218", - ], - }, - }, - "configName": "Hoverboard | Bee", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "61ecacfdadd5facb", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "I think it's snowing!", - "DisplayName": "Snowflake Hoverboard", - "Icon": "rbxassetid://75218651967088", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://77324129249222", - ], - "idle": [ - "rbxassetid://93315821528363", - ], - "jump": [ - "rbxassetid://81787959541508", - ], - }, - }, - "configName": "Hoverboard | Snowflake", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "50a0fbf72ff4b4da", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Sweeeeeet I love candy canes!", - "DisplayName": "Candy Cane Hoverboard", - "Icon": "rbxassetid://74381927537414", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://108000256742283", - ], - "idle": [ - "rbxassetid://135371599615340", - ], - "jump": [ - "rbxassetid://100894417890087", - ], - }, + "ShinyIcon": "rbxassetid://18577639540", }, - "configName": "Hoverboard | Candy Cane", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "b3727e05b225eaa7", + "configName": "Fruit | Watermelon", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.055Z", + "hashShort": "810b9c7230de8249", }, + ], + "status": "ok", +} +`; + +exports[`Pet Simulator Public Live API Test GuildBattles shape 1`] = ` +{ + "data": [ { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Gingerbread Clan Battle!", - "DisplayName": "Gingerbread Hoverboard", - "Icon": "rbxassetid://118516797186175", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://116171088883033", - ], - "idle": [ - "rbxassetid://129855673388630", - ], - "jump": [ - "rbxassetid://78705373207967", - ], + "FinishTime": 1783177200, + "PlacementRewards": [ + { + "Best": 1, + "BestContributor": 1, + "Item": { + "_data": { + "id": "Gargantuan Storm Wolf", + "pt": 2, + }, + }, + "Worst": 1, + "WorstContributor": 3, + }, + { + "Best": 1, + "BestContributor": 4, + "Item": { + "_data": { + "id": "Gargantuan Storm Wolf", + "pt": 1, + }, + }, + "Worst": 1, + "WorstContributor": 10, + }, + { + "Best": 1, + "BestContributor": 11, + "Item": { + "_data": { + "id": "Gargantuan Storm Wolf", + }, + }, + "Worst": 1, + "WorstContributor": 100, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Titanic Cloud Dog", + "pt": 2, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Titanic Cloud Dog", + "pt": 1, + }, + }, + "Worst": 10, + }, + { + "Best": 11, + "Item": { + "_data": { + "id": "Titanic Cloud Dog", + }, + }, + "Worst": 50, + }, + { + "Best": 51, + "Item": { + "_data": { + "id": "Huge Umbrella Bear", + }, + }, + "Worst": 250, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Thunderstorm", + }, + }, + "Worst": 30, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Thunderstorm", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift 2", + }, + }, + "Worst": 500, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, + "StartTime": 1781971200, + "Title": "SoccerBattle2026", }, - "configName": "Hoverboard | Gingerbread", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "cbfefb3ca01be9fa", + "configName": "SoccerBattle2026", + "dateCreated": "2026-06-27T16:07:13.338Z", + "dateModified": "2026-06-27T16:07:13.338Z", + "hashShort": "c0b512464f540703", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Diamond Clan Battle!", - "DisplayName": "Diamond Hoverboard", - "Icon": "rbxassetid://14910757305", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, + "FinishTime": 1781884800, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift 2", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "BestContributor": 1, + "Item": { + "_data": { + "id": "Titanic Daydream Fox", + "pt": 2, + }, + }, + "Worst": 1, + "WorstContributor": 3, + }, + { + "Best": 1, + "BestContributor": 4, + "Item": { + "_data": { + "id": "Titanic Daydream Fox", + "pt": 1, + }, + }, + "Worst": 1, + "WorstContributor": 10, + }, + { + "Best": 1, + "BestContributor": 11, + "Item": { + "_data": { + "id": "Titanic Daydream Fox", + }, + }, + "Worst": 1, + "WorstContributor": 100, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Daydream Fox", + "pt": 2, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Daydream Fox", + "pt": 1, + }, + }, + "Worst": 10, + }, + { + "Best": 11, + "Item": { + "_data": { + "id": "Huge Daydream Fox", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Daydream", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Daydream", + }, + }, + "Worst": 30, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, - "Sounds": [], + "StartTime": 1780768800, + "Title": "Backrooms2026", }, - "configName": "Hoverboard | Diamond", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "0e4419565a186f25", + "configName": "Backrooms2026", + "dateCreated": "2026-06-13T23:13:44.955Z", + "dateModified": "2026-06-13T23:13:44.955Z", + "hashShort": "2655e64b7aee3db9", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Blurred Clan Battle!", - "DisplayName": "Blurred Hoverboard", - "Icon": "rbxassetid://134893611907484", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://97821521708749", - ], - "idle": [ - "rbxassetid://72187750834667", - ], - "jump": [ - "rbxassetid://79426796657551", - ], + "FinishTime": 1778860800, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift 2", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "BestContributor": 1, + "Item": { + "_data": { + "id": "Titanic Angel Cow", + "pt": 2, + }, + }, + "Worst": 1, + "WorstContributor": 3, + }, + { + "Best": 1, + "BestContributor": 4, + "Item": { + "_data": { + "id": "Titanic Angel Cow", + "pt": 1, + }, + }, + "Worst": 1, + "WorstContributor": 10, + }, + { + "Best": 1, + "BestContributor": 11, + "Item": { + "_data": { + "id": "Titanic Angel Cow", + }, + }, + "Worst": 1, + "WorstContributor": 100, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Angel Cow", + "pt": 2, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Angel Cow", + "pt": 1, + }, + }, + "Worst": 10, + }, + { + "Best": 11, + "Item": { + "_data": { + "id": "Huge Angel Cow", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Angel", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Angel", + }, + }, + "Worst": 30, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, + "StartTime": 1778342400, + "Title": "AngelBattle2026", }, - "configName": "Hoverboard | Blurred", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "86b0a4c405b3aece", + "configName": "AngelBattle2026", + "dateCreated": "2026-05-09T17:52:22.089Z", + "dateModified": "2026-05-09T17:52:22.089Z", + "hashShort": "3ee33e2e69c0d81b", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2025 Wyvern Clan Battle!", - "DisplayName": "Wyvern of Hades", - "Icon": "rbxassetid://103080624006267", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://88131588316412", - ], - "idle": [ - "rbxassetid://103319341107005", - ], - "jump": [ - "rbxassetid://103280125080397", - ], + "FinishTime": 1780156800, + "IsLeague": true, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Titanic Arcane Halo Cat", + "pt": 2, + "sh": true, + }, + }, + "Worst": 1, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Titanic Arcane Halo Cat", + "pt": 2, + }, + }, + "Worst": 5, + }, + { + "Best": 6, + "Item": { + "_data": { + "id": "Titanic Arcane Halo Cat", + "pt": 1, + }, + }, + "Worst": 15, + }, + { + "Best": 16, + "Item": { + "_data": { + "id": "Titanic Arcane Halo Cat", + }, + }, + "Worst": 50, + }, + { + "Best": 51, + "Item": { + "_data": { + "id": "Huge Oracle Tiger", + "pt": 2, + }, + }, + "Worst": 150, + }, + { + "Best": 151, + "Item": { + "_data": { + "id": "Huge Oracle Tiger", + "pt": 1, + }, + }, + "Worst": 500, + }, + { + "Best": 501, + "Item": { + "_data": { + "id": "Huge Oracle Tiger", + }, + }, + "Worst": 5000, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, + "StartTime": 1778342400, + "Title": "RNG League U79", }, - "configName": "Hoverboard | Wyvern of Hades", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "c20b5734100c89c2", + "configName": "RngBattleU79", + "dateCreated": "2026-05-16T16:40:56.277Z", + "dateModified": "2026-06-13T23:13:44.955Z", + "hashShort": "c1228891161e73ff", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "Red light, green light!", - "DisplayName": "Pet Games Hoverboard", - "Icon": "rbxassetid://118257511137876", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://135483925138466", - ], - "idle": [ - "rbxassetid://84635980017066", - ], - "jump": [ - "rbxassetid://122827411778557", - ], + "FinishTime": 1777914000, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Gargantuan Wicked Kirin", + }, + }, + "Worst": 15, + }, + { + "Best": 16, + "Item": { + "_data": { + "id": "Titanic Veil Horse", + }, + }, + "Worst": 765, + }, + { + "Best": 766, + "Item": { + "_data": { + "id": "Huge Knight Golem", + }, + }, + "Worst": 10765, + }, + { + "Best": 10766, + "Item": { + "_data": { + "_am": 50, + "id": "Time Trial Gift 2", + }, + }, + "Worst": 25765, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, + "StartTime": 1777741200, + "Title": "Time Trials League", }, - "configName": "Hoverboard | Pet Games", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "62476a89328140b0", + "configName": "TimeTrialsBattle", + "dateCreated": "2026-05-02T17:32:37.100Z", + "dateModified": "2026-05-02T19:12:16.732Z", + "hashShort": "83af2a7e9510f089", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2025 Mushroom Clan Battle!", - "DisplayName": "Mushroom Hoverboard", - "Icon": "rbxassetid://73437399037786", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://122141340476698", - ], - "idle": [ - "rbxassetid://135390777126369", - ], - "jump": [ - "rbxassetid://121841509916595", - ], + "FinishTime": 1777734000, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift 2", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "BestContributor": 1, + "Item": { + "_data": { + "id": "Titanic Starry Owl", + "pt": 2, + }, + }, + "Worst": 1, + "WorstContributor": 3, + }, + { + "Best": 1, + "BestContributor": 4, + "Item": { + "_data": { + "id": "Titanic Starry Owl", + "pt": 1, + }, + }, + "Worst": 1, + "WorstContributor": 10, + }, + { + "Best": 1, + "BestContributor": 11, + "Item": { + "_data": { + "id": "Titanic Starry Owl", + }, + }, + "Worst": 1, + "WorstContributor": 100, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Starry Owl", + "pt": 2, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Starry Owl", + "pt": 1, + }, + }, + "Worst": 10, + }, + { + "Best": 11, + "Item": { + "_data": { + "id": "Huge Starry Owl", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Starry", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Starry", + }, + }, + "Worst": 30, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, + "StartTime": 1777132800, + "Title": "StarryBattle", }, - "configName": "Hoverboard | Mushroom", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "5ac97257f3c2beb0", + "configName": "StarryBattle", + "dateCreated": "2026-04-25T17:31:31.968Z", + "dateModified": "2026-04-25T17:31:31.968Z", + "hashShort": "47a6264542951501", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "🔥 Blaze away and leave 'em in flames! 🔥", - "DisplayName": "Hellfire Hoverboard", - "Icon": "rbxassetid://133315600460960", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://118557230795776", - ], - "idle": [ - "rbxassetid://76805929032229", - ], - "jump": [ - "rbxassetid://79212298752857", - ], + "FinishTime": 1777042800, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift 2", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "BestContributor": 1, + "Item": { + "_data": { + "id": "Titanic Abstract Dominus", + "pt": 2, + }, + }, + "Worst": 1, + "WorstContributor": 3, + }, + { + "Best": 1, + "BestContributor": 4, + "Item": { + "_data": { + "id": "Titanic Abstract Dominus", + "pt": 1, + }, + }, + "Worst": 1, + "WorstContributor": 10, + }, + { + "Best": 1, + "BestContributor": 11, + "Item": { + "_data": { + "id": "Titanic Abstract Dominus", + }, + }, + "Worst": 1, + "WorstContributor": 100, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Abstract Agony", + "pt": 2, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Abstract Agony", + "pt": 1, + }, + }, + "Worst": 10, + }, + { + "Best": 11, + "Item": { + "_data": { + "id": "Huge Abstract Agony", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Abstract", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Abstract", + }, + }, + "Worst": 30, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, + "StartTime": 1776528000, + "Title": "Spring2026", }, - "configName": "Hoverboard | Hellfire", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "1a2ab6dbf227f262", + "configName": "Spring2026", + "dateCreated": "2026-04-18T15:56:29.059Z", + "dateModified": "2026-05-02T17:32:37.081Z", + "hashShort": "43af6c1e89838f94", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2025 Holographic Clan Battle!", - "DisplayName": "Holographic Hoverboard", - "Icon": "rbxassetid://103941046192500", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://70457754737744", - ], - "idle": [ - "rbxassetid://94336915565161", - ], - "jump": [ - "rbxassetid://124935760573286", - ], + "FinishTime": 1774710000, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift 2", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "BestContributor": 1, + "Item": { + "_data": { + "id": "Titanic Clover Owl", + "pt": 2, + }, + }, + "Worst": 1, + "WorstContributor": 3, + }, + { + "Best": 1, + "BestContributor": 4, + "Item": { + "_data": { + "id": "Titanic Clover Owl", + "pt": 1, + }, + }, + "Worst": 1, + "WorstContributor": 10, + }, + { + "Best": 1, + "BestContributor": 11, + "Item": { + "_data": { + "id": "Titanic Clover Owl", + }, + }, + "Worst": 1, + "WorstContributor": 100, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Clover Owl", + "pt": 2, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Clover Owl", + "pt": 1, + }, + }, + "Worst": 10, + }, + { + "Best": 11, + "Item": { + "_data": { + "id": "Huge Clover Owl", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Clover", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Clover", + }, + }, + "Worst": 30, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, + "StartTime": 1773504000, + "Title": "Lucky Chest Battle", }, - "configName": "Hoverboard | Holographic", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "b8a1b3c46ad95d19", + "configName": "LuckyChestBattle", + "dateCreated": "2026-03-14T15:52:29.916Z", + "dateModified": "2026-04-18T15:56:29.045Z", + "hashShort": "a1722d374bd94c70", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "💕 Glide through love at the speed of heart!", - "DisplayName": "Valentine's Hoverboard", - "Icon": "rbxassetid://115773151085992", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://127663878790269", - ], - "idle": [ - "rbxassetid://124945513461027", - ], - "jump": [ - "rbxassetid://104613779716544", - ], - }, - }, - "configName": "Hoverboard | Valentines", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "45ad30baa2cdfc52", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2025 Evil Clan Battle!", - "DisplayName": "Evil Hoverboard", - "Icon": "rbxassetid://83128724682991", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://128510221263119", - ], - "idle": [ - "rbxassetid://93074453176674", - ], - "jump": [ - "rbxassetid://85489764060509", - ], + "FinishTime": 1766768400, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift 2", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "BestContributor": 1, + "Item": { + "_data": { + "id": "Titanic Silver Stag", + "pt": 2, + }, + }, + "Worst": 1, + "WorstContributor": 3, + }, + { + "Best": 1, + "BestContributor": 4, + "Item": { + "_data": { + "id": "Titanic Silver Stag", + "pt": 1, + }, + }, + "Worst": 1, + "WorstContributor": 10, + }, + { + "Best": 1, + "BestContributor": 11, + "Item": { + "_data": { + "id": "Titanic Silver Stag", + }, + }, + "Worst": 1, + "WorstContributor": 100, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Silver", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Silver", + }, + }, + "Worst": 10, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Silver Bison", + "pt": 2, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Silver Bison", + "pt": 1, + }, + }, + "Worst": 10, + }, + { + "Best": 11, + "Item": { + "_data": { + "id": "Huge Silver Bison", + }, + }, + "Worst": 50, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, + "StartTime": 1766250000, + "Title": "Gingerbread Battle 2025", }, - "configName": "Hoverboard | Evil", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "90583087ed12250a", + "configName": "Christmas2025", + "dateCreated": "2025-12-20T17:55:27.573Z", + "dateModified": "2025-12-20T17:55:27.573Z", + "hashShort": "bd8a8d3668667300", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "Glide around and rip open some booster packs!", - "DisplayName": "Booster Hoverboard", - "Icon": "rbxassetid://139984973539698", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://73745152005776", - ], - "idle": [ - "rbxassetid://77150957127083", - ], - "jump": [ - "rbxassetid://89652934548669", - ], + "FinishTime": 1764954000, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift 2", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "BestContributor": 1, + "Item": { + "_data": { + "id": "Titanic Spectral Deer", + "pt": 2, + }, + }, + "Worst": 1, + "WorstContributor": 3, + }, + { + "Best": 1, + "BestContributor": 4, + "Item": { + "_data": { + "id": "Titanic Spectral Deer", + "pt": 1, + }, + }, + "Worst": 1, + "WorstContributor": 10, + }, + { + "Best": 1, + "BestContributor": 11, + "Item": { + "_data": { + "id": "Titanic Spectral Deer", + }, + }, + "Worst": 1, + "WorstContributor": 100, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Forged Robot", + "pt": 2, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Forged Robot", + "pt": 1, + }, + }, + "Worst": 8, + }, + { + "Best": 9, + "Item": { + "_data": { + "id": "Huge Forged Robot", + }, + }, + "Worst": 20, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Huge Forged Cyclops", + }, + }, + "Worst": 50, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, + "StartTime": 1764435600, + "Title": "Thanksgiving 2025 Battle", }, - "configName": "Hoverboard | Booster", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "e295763641953e53", + "configName": "Turkey2025", + "dateCreated": "2025-12-07T23:02:15.833Z", + "dateModified": "2025-12-07T23:02:15.833Z", + "hashShort": "49b8a57d34afb36b", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2025 Sphinx Clan Battle!", - "DisplayName": "Sphinx Hoverboard", - "Icon": "rbxassetid://104370511466864", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://110508519240348", - ], - "idle": [ - "rbxassetid://85426351855572", - ], - "jump": [ - "rbxassetid://107953240205142", - ], + "FinishTime": 1761321600, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift 2", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "BestContributor": 1, + "Item": { + "_data": { + "id": "Titanic Spectral Deer", + "pt": 2, + }, + }, + "Worst": 1, + "WorstContributor": 3, + }, + { + "Best": 1, + "BestContributor": 4, + "Item": { + "_data": { + "id": "Titanic Spectral Deer", + "pt": 1, + }, + }, + "Worst": 1, + "WorstContributor": 10, + }, + { + "Best": 1, + "BestContributor": 11, + "Item": { + "_data": { + "id": "Titanic Spectral Deer", + }, + }, + "Worst": 1, + "WorstContributor": 100, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Mummy Cow", + "pt": 2, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Mummy Cow", + "pt": 1, + }, + }, + "Worst": 8, + }, + { + "Best": 9, + "Item": { + "_data": { + "id": "Huge Mummy Cow", + }, + }, + "Worst": 20, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Patchwork", + }, + }, + "Worst": 30, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Reaper", + }, + }, + "Worst": 50, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, + "StartTime": 1760803200, + "Title": "Trick or Treat Battle", }, - "configName": "Hoverboard | Sphinx", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "11a13229f0d63dc8", + "configName": "TrickOrTreat", + "dateCreated": "2025-10-19T02:11:36.671Z", + "dateModified": "2025-10-19T02:11:36.671Z", + "hashShort": "c39f388e38d564a8", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2025 Tie Dye Clan Battle!", - "DisplayName": "Tie Dye Hoverboard", - "Icon": "rbxassetid://81154668871970", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://92910015066248", - ], - "idle": [ - "rbxassetid://140542402615167", - ], - "jump": [ - "rbxassetid://117148585999409", - ], + "FinishTime": 1752854400, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift 2", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "BestContributor": 1, + "Item": { + "_data": { + "id": "Titanic Sun Angelus", + "pt": 2, + }, + }, + "Worst": 1, + "WorstContributor": 3, + }, + { + "Best": 1, + "BestContributor": 4, + "Item": { + "_data": { + "id": "Titanic Sun Angelus", + "pt": 1, + }, + }, + "Worst": 1, + "WorstContributor": 10, + }, + { + "Best": 1, + "BestContributor": 11, + "Item": { + "_data": { + "id": "Titanic Sun Angelus", + }, + }, + "Worst": 1, + "WorstContributor": 100, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Sun Griffin", + "pt": 2, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Sun Griffin", + "pt": 1, + }, + }, + "Worst": 8, + }, + { + "Best": 9, + "Item": { + "_data": { + "id": "Huge Sun Griffin", + }, + }, + "Worst": 20, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Sun Angelus", + }, + }, + "Worst": 30, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Sun Angelus", + }, + }, + "Worst": 50, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, + "StartTime": 1752336000, + "Title": "Block Party Battle", }, - "configName": "Hoverboard | Tie Dye", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "3f7a77ae70fbdef1", + "configName": "BlockPartyBattle", + "dateCreated": "2025-07-12T16:08:43.628Z", + "dateModified": "2025-07-12T16:08:43.628Z", + "hashShort": "d7f5fda5cc7420a0", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "jelly jelly jelly!", - "DisplayName": "Jelly Hoverboard", - "Icon": "rbxassetid://72590702374703", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://102234210822621", - ], - "idle": [ - "rbxassetid://95693237363544", - ], - "jump": [ - "rbxassetid://135199956009241", - ], + "FinishTime": 1751644800, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift 2", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "BestContributor": 1, + "Item": { + "_data": { + "id": "Titanic Sun Angelus", + "pt": 2, + }, + }, + "Worst": 1, + "WorstContributor": 3, + }, + { + "Best": 1, + "BestContributor": 4, + "Item": { + "_data": { + "id": "Titanic Sun Angelus", + "pt": 1, + }, + }, + "Worst": 1, + "WorstContributor": 10, + }, + { + "Best": 1, + "BestContributor": 11, + "Item": { + "_data": { + "id": "Titanic Sun Angelus", + }, + }, + "Worst": 1, + "WorstContributor": 100, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Scuba Dog", + "pt": 2, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Scuba Dog", + "pt": 1, + }, + }, + "Worst": 8, + }, + { + "Best": 9, + "Item": { + "_data": { + "id": "Huge Scuba Dog", + }, + }, + "Worst": 20, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, - "Tradable": true, + "StartTime": 1751126400, + "Title": "Strength Battle", }, - "configName": "Hoverboard | Jelly", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "2b72dc582ccc4c07", + "configName": "StrengthBattle", + "dateCreated": "2025-07-05T23:23:43.021Z", + "dateModified": "2025-07-05T23:23:43.021Z", + "hashShort": "da755b9c7414a4a8", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "Hop through the areas like a bunny!", - "DisplayName": "Easter Bunny Hoverboard", - "Icon": "rbxassetid://14910757187", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, + "FinishTime": 1750435200, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift 2", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "BestContributor": 1, + "Item": { + "_data": { + "id": "Titanic Mosaic Cat", + "pt": 2, + }, + }, + "Worst": 1, + "WorstContributor": 3, + }, + { + "Best": 1, + "BestContributor": 4, + "Item": { + "_data": { + "id": "Titanic Mosaic Cat", + "pt": 1, + }, + }, + "Worst": 1, + "WorstContributor": 10, + }, + { + "Best": 1, + "BestContributor": 11, + "Item": { + "_data": { + "id": "Titanic Mosaic Cat", + }, + }, + "Worst": 1, + "WorstContributor": 100, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Nightmare Cyclops", + "pt": 2, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Nightmare Cyclops", + "pt": 1, + }, + }, + "Worst": 8, + }, + { + "Best": 9, + "Item": { + "_data": { + "id": "Huge Nightmare Cyclops", + }, + }, + "Worst": 20, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, - "Sounds": [], + "StartTime": 1749916800, + "Title": "Tower Defense Battle", }, - "configName": "Hoverboard | Easter Bunny", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "763173ec63646033", + "configName": "TowerBattle", + "dateCreated": "2025-07-05T23:23:43.021Z", + "dateModified": "2025-07-05T23:23:43.021Z", + "hashShort": "f3c9dbaab993ee3d", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "Earned from finding all eggs in the 2025 Easter Egg Hunt!", - "DisplayName": "Unicorn Hoverboard", - "Icon": "rbxassetid://15280245261", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://107374325583389", - ], - "idle": [ - "rbxassetid://77295298543906", - ], - "jump": [ - "rbxassetid://135284128870437", - ], + "FinishTime": 1749225600, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift 2", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "BestContributor": 1, + "Item": { + "_data": { + "id": "Titanic Mosaic Cat", + "pt": 2, + }, + }, + "Worst": 1, + "WorstContributor": 3, + }, + { + "Best": 1, + "BestContributor": 4, + "Item": { + "_data": { + "id": "Titanic Mosaic Cat", + "pt": 1, + }, + }, + "Worst": 1, + "WorstContributor": 10, + }, + { + "Best": 1, + "BestContributor": 11, + "Item": { + "_data": { + "id": "Titanic Mosaic Cat", + }, + }, + "Worst": 1, + "WorstContributor": 100, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Junkyard Hound", + "pt": 2, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Junkyard Hound", + "pt": 1, + }, + }, + "Worst": 8, + }, + { + "Best": 9, + "Item": { + "_data": { + "id": "Huge Junkyard Hound", + }, + }, + "Worst": 20, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, + "StartTime": 1748707200, + "Title": "Basketball Battle", }, - "configName": "Hoverboard | Unicorn", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "8f61e7537821ee44", + "configName": "BasketballBattle", + "dateCreated": "2025-07-05T23:23:43.021Z", + "dateModified": "2025-07-05T23:23:43.021Z", + "hashShort": "1bb3b65b33b159d3", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "CanBeShiny": true, - "Desc": "Foxy tails! Leaves hearts everywhere!", - "DisplayName": "Kitsune Hoverboard", - "Icon": "rbxassetid://112130842952181", - "ProductId": 3274118414, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": { - "equip": [ - "rbxassetid://100556532656806", - ], - "idle": [ - "rbxassetid://109563056705789", - ], - "jump": [ - "rbxassetid://111026419646328", - ], + "FinishTime": 1748016000, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift 2", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "BestContributor": 1, + "Item": { + "_data": { + "id": "Titanic Mosaic Cat", + "pt": 2, + }, + }, + "Worst": 1, + "WorstContributor": 3, + }, + { + "Best": 1, + "BestContributor": 4, + "Item": { + "_data": { + "id": "Titanic Mosaic Cat", + "pt": 1, + }, + }, + "Worst": 1, + "WorstContributor": 10, + }, + { + "Best": 1, + "BestContributor": 11, + "Item": { + "_data": { + "id": "Titanic Mosaic Cat", + }, + }, + "Worst": 1, + "WorstContributor": 100, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Balloon Corgi", + "pt": 2, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Balloon Corgi", + "pt": 1, + }, + }, + "Worst": 8, + }, + { + "Best": 9, + "Item": { + "_data": { + "id": "Huge Balloon Corgi", + }, + }, + "Worst": 20, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, - "Tradable": true, + "StartTime": 1747497600, + "Title": "Balloon Corgi Battle", }, - "configName": "Hoverboard | Kitsune", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "9371229ebafe1e47", + "configName": "BalloonCorgiBattle", + "dateCreated": "2025-07-05T23:23:43.021Z", + "dateModified": "2025-07-05T23:23:43.021Z", + "hashShort": "624cfe86b418e803", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "CanBeShiny": true, - "Desc": "Wrapped in shadows!", - "DisplayName": "Corrupt Hoverboard", - "Icon": "rbxassetid://97624181709908", - "ProductId": 3274118281, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": { - "equip": [ - "rbxassetid://104197801158374", - ], - "idle": [ - "rbxassetid://122206258152425", - ], - "jump": [ - "rbxassetid://120305213255403", - ], + "FinishTime": 1746806400, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift 2", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "BestContributor": 1, + "Item": { + "_data": { + "id": "Titanic Mosaic Cat", + "pt": 2, + }, + }, + "Worst": 1, + "WorstContributor": 3, + }, + { + "Best": 1, + "BestContributor": 4, + "Item": { + "_data": { + "id": "Titanic Mosaic Cat", + "pt": 1, + }, + }, + "Worst": 1, + "WorstContributor": 10, + }, + { + "Best": 1, + "BestContributor": 11, + "Item": { + "_data": { + "id": "Titanic Mosaic Cat", + }, + }, + "Worst": 1, + "WorstContributor": 100, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Poison Turtle", + "pt": 2, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Poison Turtle", + "pt": 1, + }, + }, + "Worst": 8, + }, + { + "Best": 9, + "Item": { + "_data": { + "id": "Huge Poison Turtle", + }, + }, + "Worst": 20, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, - "Tradable": true, + "StartTime": 1746288000, + "Title": "Poison Turtle Battle", }, - "configName": "Hoverboard | Corrupt", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "0f750ce16d79859e", + "configName": "PoisonTurtleBattle", + "dateCreated": "2025-07-05T23:23:43.021Z", + "dateModified": "2025-07-05T23:23:43.021Z", + "hashShort": "c3c65f23c3e13510", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "CanBeShiny": true, - "Desc": "Glowy eyes and stary sparkles!", - "DisplayName": "Astra Hoverboard", - "Icon": "rbxassetid://130263953093664", - "ProductId": 3274118157, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, + "FinishTime": 1745596800, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift 2", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "BestContributor": 1, + "Item": { + "_data": { + "id": "Titanic Mosaic Cat", + "pt": 2, + }, + }, + "Worst": 1, + "WorstContributor": 3, + }, + { + "Best": 1, + "BestContributor": 4, + "Item": { + "_data": { + "id": "Titanic Mosaic Cat", + "pt": 1, + }, + }, + "Worst": 1, + "WorstContributor": 10, + }, + { + "Best": 1, + "BestContributor": 11, + "Item": { + "_data": { + "id": "Titanic Mosaic Cat", + }, + }, + "Worst": 1, + "WorstContributor": 100, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Pixel Chick", + "pt": 2, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Pixel Chick", + "pt": 1, + }, + }, + "Worst": 8, + }, + { + "Best": 9, + "Item": { + "_data": { + "id": "Huge Pixel Chick", + }, + }, + "Worst": 20, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, - "ShinyParticleScale": 1, - "Sounds": [], - "Tradable": true, + "StartTime": 1745078400, + "Title": "Pixel Chick Battle", }, - "configName": "Hoverboard | Astra", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "1b7c798450c4a2f3", + "configName": "PixelChickBattle", + "dateCreated": "2025-07-05T23:23:43.021Z", + "dateModified": "2025-07-05T23:23:43.021Z", + "hashShort": "d0d8f8983329940e", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "🏀 Glide like a baller!", - "DisplayName": "Basketball Hoverboard", - "Icon": "rbxassetid://105651362878166", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, + "FinishTime": 1743782400, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift 2", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "BestContributor": 1, + "Item": { + "_data": { + "id": "Titanic Mosaic Cat", + "pt": 2, + }, + }, + "Worst": 1, + "WorstContributor": 3, + }, + { + "Best": 1, + "BestContributor": 4, + "Item": { + "_data": { + "id": "Titanic Mosaic Cat", + "pt": 1, + }, + }, + "Worst": 1, + "WorstContributor": 10, + }, + { + "Best": 1, + "BestContributor": 11, + "Item": { + "_data": { + "id": "Titanic Mosaic Cat", + }, + }, + "Worst": 1, + "WorstContributor": 100, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Athena Owl", + "pt": 2, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Athena Owl", + "pt": 1, + }, + }, + "Worst": 8, + }, + { + "Best": 9, + "Item": { + "_data": { + "id": "Huge Athena Owl", + }, + }, + "Worst": 20, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, - "Sounds": [], + "StartTime": 1743264000, + "Title": "Athena Battle", }, - "configName": "Hoverboard | Basketball", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "eb04a00cf3e79e44", + "configName": "AthenaBattle", + "dateCreated": "2025-07-05T23:23:43.021Z", + "dateModified": "2025-07-05T23:23:43.021Z", + "hashShort": "43a2051dc3c74cb4", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "⭐ Dunk across the galaxy!", - "DisplayName": "Cosmic Basketball Hoverboard", - "Icon": "rbxassetid://80084292488611", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, + "FinishTime": 1742572800, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Tie Dye", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Tie Dye", + }, + }, + "Worst": 10, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Huge Tiedye Dog", + "pt": 2, + }, + }, + "Worst": 1, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Tiedye Dog", + "pt": 1, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Tiedye Dog", + }, + }, + "Worst": 10, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, - "Sounds": [], + "StartTime": 1742054400, + "Title": "Tie Dye Battle", }, - "configName": "Hoverboard | Cosmic Basketball", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "d456ad4d79cca60a", + "configName": "TieDyeBattle", + "dateCreated": "2025-07-05T23:23:43.021Z", + "dateModified": "2025-07-05T23:23:43.021Z", + "hashShort": "ff371430deb46548", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "Actually a flying barbell..", - "DisplayName": "Barbell Hoverboard", - "Icon": "rbxassetid://112739065863623", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, + "FinishTime": 1741971600, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Sphinx", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Sphinx", + }, + }, + "Worst": 10, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Huge Sphinx", + "pt": 2, + }, + }, + "Worst": 1, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Sphinx", + "pt": 1, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Sphinx", + }, + }, + "Worst": 10, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, - "Sounds": [], + "StartTime": 1741453200, + "Title": "Lucky Battle", }, - "configName": "Hoverboard | Barbell", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "4dff808cfd0fabb4", + "configName": "LuckyBattle", + "dateCreated": "2025-07-05T23:23:43.021Z", + "dateModified": "2025-07-05T23:23:43.021Z", + "hashShort": "e607d21ad22288e3", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "Surf the sand!", - "DisplayName": "Sandcastle Hoverboard", - "Icon": "rbxassetid://109265349776682", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, + "FinishTime": 1740762000, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Evil", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Evil", + }, + }, + "Worst": 10, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Huge Evil Deer", + "pt": 2, + }, + }, + "Worst": 1, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Evil Deer", + "pt": 1, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Evil Deer", + }, + }, + "Worst": 10, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, - "Sounds": [], + "StartTime": 1740243600, + "Title": "Evil Battle", }, - "configName": "Hoverboard | Sandcastle", - "dateCreated": "2025-07-12T16:08:19.828Z", - "dateModified": "2025-07-12T16:08:19.828Z", - "hashShort": "5e6dc636ac987286", + "configName": "CardBattle", + "dateCreated": "2025-07-05T23:23:43.021Z", + "dateModified": "2025-07-05T23:23:43.021Z", + "hashShort": "30cf4a1de588b996", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "Rays of pure sunlight!", - "DisplayName": "Sun Angelus Hoverboard", - "Icon": "rbxassetid://97502060937589", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, + "FinishTime": 1739552400, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Holographic", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Holographic", + }, + }, + "Worst": 10, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Huge Holographic Monkey", + "pt": 2, + }, + }, + "Worst": 1, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Holographic Monkey", + "pt": 1, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Holographic Monkey", + }, + }, + "Worst": 10, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, - "Sounds": [], + "StartTime": 1739034000, + "Title": "Holographic Battle", }, - "configName": "Hoverboard | Sun Angelus", - "dateCreated": "2025-07-12T16:08:19.849Z", - "dateModified": "2025-07-12T16:08:19.849Z", - "hashShort": "3a9402c07a5e17ec", + "configName": "ValBattle", + "dateCreated": "2025-07-05T23:23:43.021Z", + "dateModified": "2025-07-05T23:23:43.021Z", + "hashShort": "6a10df8ae1a89834", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "Putting together the pieces!", - "DisplayName": "Patchwork Hoverboard", - "Icon": "rbxassetid://72190442747062", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, + "FinishTime": 1738342800, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Mushroom", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Mushroom", + }, + }, + "Worst": 10, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Huge Mushroom King", + "pt": 2, + }, + }, + "Worst": 1, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Mushroom King", + "pt": 1, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Mushroom King", + }, + }, + "Worst": 10, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, - "Sounds": [], + "StartTime": 1737824400, + "Title": "Cannon Battle", }, - "configName": "Hoverboard | Patchwork", - "dateCreated": "2025-10-18T17:02:54.262Z", - "dateModified": "2025-10-18T17:02:54.262Z", - "hashShort": "a6b193fc3ed680d5", + "configName": "CannonBattle", + "dateCreated": "2025-07-05T23:23:43.021Z", + "dateModified": "2025-07-05T23:23:43.021Z", + "hashShort": "a1a49141892059de", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Animation": 76698672439341, - "BobRate": 3, - "Desc": "No hoverboard, just broomstick!", - "DisplayName": "Broomstick", - "HoverHeight": 6, - "Icon": "rbxassetid://111418523199315", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, + "FinishTime": 1737738000, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Wyvern of Hades", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Wyvern of Hades", + }, + }, + "Worst": 10, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Huge Wyvern of Hades", + "pt": 2, + }, + }, + "Worst": 1, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Wyvern of Hades", + "pt": 1, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Wyvern of Hades", + }, + }, + "Worst": 10, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, - "RotationLimit": 0, - "Sounds": [], + "StartTime": 1736614800, + "Title": "Pet Games Battle", }, - "configName": "Hoverboard | Broomstick", - "dateCreated": "2025-10-18T17:02:54.263Z", - "dateModified": "2025-11-22T17:14:35.186Z", - "hashShort": "bb064b3a28c9e584", + "configName": "SquidBattle", + "dateCreated": "2025-07-05T23:23:43.021Z", + "dateModified": "2025-07-05T23:23:43.021Z", + "hashShort": "1295b64a68ef2cff", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "Fast for those with little legs!", - "DisplayName": "Elf Hoverboard", - "Icon": "rbxassetid://71269662673061", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, + "FinishTime": 1735923600, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Blurred", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Blurred", + }, + }, + "Worst": 10, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Huge Blurred Agony", + "pt": 2, + }, + }, + "Worst": 1, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Blurred Agony", + "pt": 1, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Blurred Agony", + }, + }, + "Worst": 10, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, - "Sounds": [], + "StartTime": 1735405200, + "Title": "New Years Battle", }, - "configName": "Hoverboard | Elf", - "dateCreated": "2025-12-20T17:54:44.504Z", - "dateModified": "2025-12-20T17:54:44.504Z", - "hashShort": "038c3d4164026cdf", + "configName": "NewYear2024", + "dateCreated": "2025-07-05T23:23:43.021Z", + "dateModified": "2025-07-05T23:23:43.021Z", + "hashShort": "fff01c1b8053c8b8", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "Glide around on holiday luxury!", - "DisplayName": "Silver Hoverboard", - "Icon": "rbxassetid://72158309750183", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Silver", - "dateCreated": "2025-12-20T17:54:44.515Z", - "dateModified": "2025-12-20T17:54:44.515Z", - "hashShort": "2d5bcd5175d020d6", - }, - ], - "status": "ok", -} -`; - -exports[`Pet Simulator Public Live API Test Lootboxes shape 1`] = ` -{ - "data": [ - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Big present with lots of goodies!", - "DisplayName": "2023 Large Christmas Present", - "Icon": "rbxassetid://15635476600", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, + "FinishTime": 1735318800, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Diamond", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Diamond", + }, + }, + "Worst": 10, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Huge Diamond Dragon", + "pt": 2, + }, + }, + "Worst": 1, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Diamond Dragon", + "pt": 1, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Diamond Dragon", + }, + }, + "Worst": 10, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, + "StartTime": 1734800400, + "Title": "Christmas Present Battle", }, - "configName": "Large Christmas Present", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.235Z", - "hashShort": "8dba7cbb5ee42a65", + "configName": "YearEnd2024", + "dateCreated": "2025-07-05T23:23:43.021Z", + "dateModified": "2025-07-05T23:23:43.021Z", + "hashShort": "f44e25586a462dd9", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "Open for a bunch of goodies!", - "DisplayName": "2023 Medium Christmas Present", - "Icon": "rbxassetid://15635476705", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, + "FinishTime": 1734714000, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Gingerbread", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Gingerbread", + }, + }, + "Worst": 10, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Huge Gingerbread Dragon", + "pt": 2, + }, + }, + "Worst": 1, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Gingerbread Dragon", + "pt": 1, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Gingerbread Dragon", + }, + }, + "Worst": 10, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, + "StartTime": 1734195630, + "Title": "Gingerbread Battle", }, - "configName": "Medium Christmas Present", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.247Z", - "hashShort": "a44dd5d5a149b192", + "configName": "Christmas2024", + "dateCreated": "2025-07-05T23:23:43.021Z", + "dateModified": "2025-07-05T23:23:43.021Z", + "hashShort": "82fb6701fc2e60f0", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "Open for goodies!", - "DisplayName": "2023 Small Christmas Present", - "Icon": "rbxassetid://15635476827", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, + "FinishTime": 1734109200, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Bee", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Bee", + }, + }, + "Worst": 10, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Huge Doodle Bee", + "pt": 2, + }, + }, + "Worst": 1, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Doodle Bee", + "pt": 1, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Doodle Bee", + }, + }, + "Worst": 10, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, + "StartTime": 1733590800, + "Title": "Bee Battle", }, - "configName": "Small Christmas Present", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.227Z", - "hashShort": "4877972d5b164bb5", + "configName": "SantaBattle", + "dateCreated": "2025-07-05T23:23:43.021Z", + "dateModified": "2025-07-05T23:23:43.021Z", + "hashShort": "8da8ff988383f2c7", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "TITANIC present with sooo many goodies! Includes chance for a Titanic & Huge pet!", - "DisplayName": "2023 Titanic Christmas Present", - "Icon": "rbxassetid://15635476408", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, + "FinishTime": 1732291200, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Blimp Dragon", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Blimp Dragon", + }, + }, + "Worst": 10, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Huge Blimp Dragon", + "pt": 2, + }, + }, + "Worst": 1, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Blimp Dragon", + "pt": 1, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Blimp Dragon", + }, + }, + "Worst": 10, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, - "RequireSave": true, + "StartTime": 1731168000, + "Title": "Line Battle", }, - "configName": "Titanic Christmas Present", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.232Z", - "hashShort": "fbded72d9ca82920", + "configName": "LineBattle", + "dateCreated": "2025-07-05T23:23:43.021Z", + "dateModified": "2025-07-05T23:23:43.021Z", + "hashShort": "4b55fba1e60ef394", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "Huge present with a ton of goodies!", - "DisplayName": "2023 X-Large Christmas Present", - "Icon": "rbxassetid://15635476534", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, + "FinishTime": 1730476800, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Ghost Cat", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Ghost", + }, + }, + "Worst": 10, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Huge Ghost Cat", + "pt": 2, + }, + }, + "Worst": 1, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Ghost Cat", + "pt": 1, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Ghost Cat", + }, + }, + "Worst": 10, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, + "StartTime": 1729353600, + "Title": "Ghost Battle", }, - "configName": "X-Large Christmas Present", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.233Z", - "hashShort": "abe2445e0ab1ae23", + "configName": "HalloweenBattle", + "dateCreated": "2025-07-05T23:23:43.021Z", + "dateModified": "2025-07-05T23:23:43.021Z", + "hashShort": "25abcc6e7baa049b", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "Special gift for attending the 2024 New Year's Party! Chance for Huge Party Crown Ducky!", - "DisplayName": "2024 New Year's Gift", - "Icon": "rbxassetid://15800024082", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, + "FinishTime": 1728057600, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Reversed", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Reversed", + }, + }, + "Worst": 10, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Huge Reversed Cat", + "pt": 2, + }, + }, + "Worst": 1, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Reversed Cat", + "pt": 1, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Reversed Cat", + }, + }, + "Worst": 10, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, - "RequireSave": true, + "StartTime": 1726934400, + "Title": "Catching Battle", }, - "configName": "2024 New Years Gift", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.243Z", - "hashShort": "43ef1d7bc0ed6ea2", + "configName": "CatchingBattle", + "dateCreated": "2025-07-05T23:23:43.021Z", + "dateModified": "2025-07-05T23:23:43.021Z", + "hashShort": "b6db7dc15a9c2e39", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "Adventurer's Lootbox containing a chance for the Active Huge Egg, Huge Firefly, and other high value items!", - "DisplayName": "Adventurer's Lootbox", - "Icon": "rbxassetid://16745658276", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, + "FinishTime": 1726243200, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Rave Crab", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Rave Crab", + }, + }, + "Worst": 10, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Huge Rave Crab", + "pt": 2, + }, + }, + "Worst": 1, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Rave Crab", + "pt": 1, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Rave Crab", + }, + }, + "Worst": 10, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, - "RequireSave": true, + "StartTime": 1725120000, + "Title": "Crab Battle", }, - "configName": "Adventurer Lootbox", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.229Z", - "hashShort": "625c971e7b3ba236", + "configName": "CrabBattle", + "dateCreated": "2025-07-05T23:23:43.021Z", + "dateModified": "2025-07-05T23:23:43.021Z", + "hashShort": "74bf065243d512f7", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "Obtained from the Claw Machine!", - "DisplayName": "Arcade Egg 1x", - "Icon": "rbxassetid://16759780030", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, + "FinishTime": 1724428800, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Ice Cream", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Ice Cream", + }, + }, + "Worst": 10, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Huge Ice Cream Cone", + "pt": 2, + }, + }, + "Worst": 1, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Ice Cream Cone", + "pt": 1, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Ice Cream Cone", + }, + }, + "Worst": 10, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, - "RequireSave": true, + "StartTime": 1723305600, + "Title": "RNG Battle", }, - "configName": "Arcade Egg 1", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.238Z", - "hashShort": "0f6d84db33ba3963", + "configName": "RngBattle", + "dateCreated": "2025-07-05T23:23:43.021Z", + "dateModified": "2025-07-05T23:23:43.021Z", + "hashShort": "821b3fed7faec478", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "Obtained from the Claw Machine!", - "DisplayName": "Arcade Egg 5x", - "Icon": "rbxassetid://16759779878", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, + "FinishTime": 1722614400, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Clown", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Clown", + }, + }, + "Worst": 10, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Huge Clown Cat", + "pt": 2, + }, + }, + "Worst": 1, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Clown Cat", + "pt": 1, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Clown Cat", + }, + }, + "Worst": 10, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, - "RequireSave": true, + "StartTime": 1721491200, + "Title": "Millionaire Run Battle", }, - "configName": "Arcade Egg 2", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.239Z", - "hashShort": "d68f30e5dafc6d4f", + "configName": "MillionaireRunBattle", + "dateCreated": "2025-07-05T23:23:43.021Z", + "dateModified": "2025-07-05T23:23:43.021Z", + "hashShort": "e3079c3f40ac3b06", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "Obtained from the Claw Machine!", - "DisplayName": "Arcade Egg 10x", - "Icon": "rbxassetid://16759779792", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, + "FinishTime": 1720195200, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Safety", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Safety", + }, + }, + "Worst": 10, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Huge Safety Cat", + "pt": 2, + }, + }, + "Worst": 1, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Safety Cat", + "pt": 1, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Safety Cat", + }, + }, + "Worst": 10, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, - "RequireSave": true, + "StartTime": 1719072000, + "Title": "Good vs. Evil Battle", }, - "configName": "Arcade Egg 3", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.243Z", - "hashShort": "f7ac47907ef07d7d", + "configName": "GoodEvilBattle", + "dateCreated": "2025-07-05T23:23:43.021Z", + "dateModified": "2025-07-05T23:23:43.021Z", + "hashShort": "1457406ef9ceec0f", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "Obtained from the Claw Machine!", - "DisplayName": "Arcade Egg 20x", - "Icon": "rbxassetid://16759779714", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, + "FinishTime": 1718985600, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Wicked", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Wicked", + }, + }, + "Worst": 10, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Huge Wicked Empyrean Dragon", + "pt": 2, + }, + }, + "Worst": 1, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Wicked Empyrean Dragon", + "pt": 1, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Wicked Empyrean Dragon", + }, + }, + "Worst": 10, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, - "RequireSave": true, + "StartTime": 1717862400, + "Title": "Wicked Battle", }, - "configName": "Arcade Egg 4", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.236Z", - "hashShort": "c93672ce41b086d1", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", + "configName": "HackerBattle", + "dateCreated": "2025-07-05T23:23:43.021Z", + "dateModified": "2025-07-05T23:23:43.021Z", + "hashShort": "0c76467a7ff6bae0", + }, + { + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "Obtained from the Claw Machine!", - "DisplayName": "Arcade Egg 50x", - "Icon": "rbxassetid://16759779609", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, + "FinishTime": 1717171200, + "PlacementRewards": [ + { + "Best": 1, + "Item": { + "_data": { + "id": "Clan Gift", + }, + }, + "Worst": 500, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Fragmented", + }, + }, + "Worst": 50, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Fragmented", + }, + }, + "Worst": 10, + }, + { + "Best": 1, + "Item": { + "_data": { + "id": "Huge Fragmented Dominus", + "pt": 2, + }, + }, + "Worst": 1, + }, + { + "Best": 2, + "Item": { + "_data": { + "id": "Huge Fragmented Dominus", + "pt": 1, + }, + }, + "Worst": 3, + }, + { + "Best": 4, + "Item": { + "_data": { + "id": "Huge Fragmented Dominus", + }, + }, + "Worst": 10, + }, + ], + "Rewards": { + "Bronze": [], + "Gold": [], + "Good": [], + "Silver": [], }, - "RequireSave": true, + "StartTime": 1716048000, + "Title": "Prison Battle", }, - "configName": "Arcade Egg 5", + "configName": "PrisonBattle", "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.230Z", - "hashShort": "edacc91a52b3b379", + "dateModified": "2025-07-05T23:29:23.557Z", + "hashShort": "6fbf663f05701638", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "Awarded by completing the Hype Event after the update!", - "DisplayName": "Hype Egg", - "Icon": "rbxassetid://16901624489", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, + "FinishTime": 1715443200, + "Rewards": { + "Bronze": [ + { + "_data": { + "id": "Bubble", + }, + }, + ], + "Gold": [ + { + "_data": { + "id": "Huge Bubble Dog", + }, + }, + ], + "Good": [ + { + "_data": { + "id": "Clan Gift", + }, + }, + ], + "Silver": [ + { + "_data": { + "id": "Bubble", + }, + }, + ], }, - "RequireSave": true, + "StartTime": 1714233600, + "Title": "Bubble Battle", }, - "configName": "Hype Egg", + "configName": "GlitchBattle", "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.233Z", - "hashShort": "d42e139759c98f4a", + "dateModified": "2025-07-05T23:29:23.554Z", + "hashShort": "2a2ba2c3b84f77f2", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "Rewarded to the top 500 clans in clan battles! Chance for Huge Tech Samurai Cat!", - "DisplayName": "Clan Gift", - "Icon": "rbxassetid://17025063453", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, + "FinishTime": 1713628800, + "HasGoals": true, + "Rewards": { + "Bronze": [ + { + "_data": { + "id": "Pixel", + }, + }, + ], + "Gold": [ + { + "_data": { + "id": "Huge Pixel Shark", + }, + }, + ], + "Good": [ + { + "_data": { + "id": "Clan Gift", + }, + }, + ], + "Silver": [ + { + "_data": { + "id": "Pixel Dragon", + }, + }, + ], }, - "RequireSave": true, + "StartTime": 1712419200, + "Title": "Goal Battle: Two", }, - "configName": "Clan Gift", + "configName": "GoalBattleTwo", "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.245Z", - "hashShort": "06ff215b68b7e36a", + "dateModified": "2025-07-05T23:29:23.573Z", + "hashShort": "381a32e73a08b2c6", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "GuildBattles", + "collection": "GuildBattles", "configData": { - "Desc": "Special gift in global events! -Chance for the Huge Lunar Moth!", - "DisplayName": "Global Event Gift", - "Icon": "rbxassetid://17024878528", + "FinishTime": 1711818000, + "HasGoals": true, + "Rewards": { + "Bronze": [ + { + "_data": { + "id": "Alien", + }, + }, + ], + "Gold": [ + { + "_data": { + "id": "Huge Alien Arachnid", + }, + }, + { + "_data": { + "id": "Exclusive Egg 23", + }, + }, + { + "_data": { + "id": "Exclusive Egg 23", + }, + }, + { + "_data": { + "id": "Exclusive Egg 23", + }, + }, + { + "_data": { + "id": "Exclusive Egg 23", + }, + }, + { + "_data": { + "id": "Exclusive Egg 23", + }, + }, + { + "_data": { + "id": "Exclusive Egg 23", + }, + }, + { + "_data": { + "id": "Exclusive Egg 23", + }, + }, + ], + "Silver": [ + { + "_data": { + "id": "Bleebo The Alien", + }, + }, + { + "_data": { + "id": "Exclusive Egg 23", + }, + }, + { + "_data": { + "id": "Exclusive Egg 23", + }, + }, + { + "_data": { + "id": "Exclusive Egg 23", + }, + }, + ], + }, + "StartTime": 1710608400, + "Title": "Goal Battle: One", + }, + "configName": "GoalBattleOne", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.556Z", + "hashShort": "a1970bc113b1f25b", + }, + { + "category": "GuildBattles", + "collection": "GuildBattles", + "configData": { + "FinishTime": 1710522000, + "Rewards": { + "Bronze": [ + { + "_data": { + "id": "Galaxy", + }, + }, + ], + "Gold": [ + { + "_data": { + "id": "Huge Mystical Fox", + }, + }, + { + "_data": { + "id": "Exclusive Egg 22", + }, + }, + { + "_data": { + "id": "Exclusive Egg 22", + }, + }, + { + "_data": { + "id": "Exclusive Egg 22", + }, + }, + { + "_data": { + "id": "Exclusive Egg 22", + }, + }, + { + "_data": { + "id": "Exclusive Egg 22", + }, + }, + { + "_data": { + "id": "Exclusive Egg 22", + }, + }, + { + "_data": { + "id": "Exclusive Egg 22", + }, + }, + ], + "Silver": [ + { + "_data": { + "id": "Cosmic", + }, + }, + { + "_data": { + "id": "Exclusive Egg 22", + }, + }, + { + "_data": { + "id": "Exclusive Egg 22", + }, + }, + { + "_data": { + "id": "Exclusive Egg 22", + }, + }, + ], + }, + "StartTime": 1708794000, + "Title": "Raid Battle", + }, + "configName": "RaidBattle", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.573Z", + "hashShort": "a96272e0b1e330f0", + }, + { + "category": "GuildBattles", + "collection": "GuildBattles", + "configData": { + "FinishTime": 1708707600, + "Rewards": { + "Bronze": [ + { + "_data": { + "id": "Empyrean", + }, + }, + ], + "Gold": [ + { + "_data": { + "id": "Huge Empyrean Axolotl", + }, + }, + { + "_data": { + "id": "Exclusive Egg 21", + }, + }, + { + "_data": { + "id": "Exclusive Egg 21", + }, + }, + { + "_data": { + "id": "Exclusive Egg 21", + }, + }, + { + "_data": { + "id": "Exclusive Egg 21", + }, + }, + { + "_data": { + "id": "Exclusive Egg 21", + }, + }, + { + "_data": { + "id": "Exclusive Egg 21", + }, + }, + { + "_data": { + "id": "Exclusive Egg 21", + }, + }, + ], + "Silver": [ + { + "_data": { + "id": "Ducky", + }, + }, + { + "_data": { + "id": "Exclusive Egg 21", + }, + }, + { + "_data": { + "id": "Exclusive Egg 21", + }, + }, + { + "_data": { + "id": "Exclusive Egg 21", + }, + }, + ], + }, + "StartTime": 1707584400, + "Title": "Achievements Battle", + }, + "configName": "AchBattle", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.555Z", + "hashShort": "a8dcee91f4098280", + }, + { + "category": "GuildBattles", + "collection": "GuildBattles", + "configData": { + "FinishTime": 1707498000, + "Rewards": { + "Bronze": [ + { + "_data": { + "id": "M10", + }, + }, + ], + "Gold": [ + { + "_data": { + "id": "Huge Sensei Penguin", + }, + }, + { + "_data": { + "id": "Exclusive Egg 20", + }, + }, + { + "_data": { + "id": "Exclusive Egg 20", + }, + }, + { + "_data": { + "id": "Exclusive Egg 20", + }, + }, + { + "_data": { + "id": "Exclusive Egg 20", + }, + }, + { + "_data": { + "id": "Exclusive Egg 20", + }, + }, + { + "_data": { + "id": "Exclusive Egg 20", + }, + }, + { + "_data": { + "id": "Exclusive Egg 20", + }, + }, + ], + "Silver": [ + { + "_data": { + "id": "Pegasus", + }, + }, + { + "_data": { + "id": "Exclusive Egg 20", + }, + }, + { + "_data": { + "id": "Exclusive Egg 20", + }, + }, + { + "_data": { + "id": "Exclusive Egg 20", + }, + }, + ], + }, + "StartTime": 1705770000, + "Title": "Pet Collection Battle", + }, + "configName": "IndexBattle", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.558Z", + "hashShort": "e6158c2bb88733fe", + }, + { + "category": "GuildBattles", + "collection": "GuildBattles", + "configData": { + "FinishTime": 1705683600, + "Rewards": { + "Bronze": [ + { + "_data": { + "id": "Cupcake", + }, + }, + ], + "Gold": [ + { + "_data": { + "id": "Huge Owl", + }, + }, + { + "_data": { + "id": "Exclusive Egg 18", + }, + }, + { + "_data": { + "id": "Exclusive Egg 18", + }, + }, + { + "_data": { + "id": "Exclusive Egg 18", + }, + }, + { + "_data": { + "id": "Exclusive Egg 18", + }, + }, + { + "_data": { + "id": "Exclusive Egg 18", + }, + }, + { + "_data": { + "id": "Exclusive Egg 18", + }, + }, + { + "_data": { + "id": "Exclusive Egg 18", + }, + }, + ], + "Silver": [ + { + "_data": { + "id": "Blobfish", + }, + }, + { + "_data": { + "id": "Exclusive Egg 18", + }, + }, + { + "_data": { + "id": "Exclusive Egg 18", + }, + }, + { + "_data": { + "id": "Exclusive Egg 18", + }, + }, + ], + }, + "StartTime": 1703955600, + "Title": "New Year's Clan Battle", + }, + "configName": "DecemberActiveHugePets", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.559Z", + "hashShort": "01bb67b6eeeb984e", + }, + { + "category": "GuildBattles", + "collection": "GuildBattles", + "configData": { + "FinishTime": 1703869200, + "Rewards": { + "Bronze": [ + { + "_data": { + "id": "Present", + }, + }, + ], + "Gold": [ + { + "_data": { + "id": "Huge Present Cat", + }, + }, + { + "_data": { + "id": "Exclusive Egg 18", + }, + }, + { + "_data": { + "id": "Exclusive Egg 18", + }, + }, + { + "_data": { + "id": "Exclusive Egg 18", + }, + }, + { + "_data": { + "id": "Exclusive Egg 18", + }, + }, + { + "_data": { + "id": "Exclusive Egg 18", + }, + }, + { + "_data": { + "id": "Exclusive Egg 18", + }, + }, + { + "_data": { + "id": "Exclusive Egg 18", + }, + }, + ], + "Silver": [ + { + "_data": { + "id": "Red Present", + }, + }, + { + "_data": { + "id": "Exclusive Egg 18", + }, + }, + { + "_data": { + "id": "Exclusive Egg 18", + }, + }, + { + "_data": { + "id": "Exclusive Egg 18", + }, + }, + ], + }, + "StartTime": 1702746000, + "Title": "Festive Clan Battle", + }, + "configName": "Christmas2023", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.553Z", + "hashShort": "95676172080de4a8", + }, + ], + "status": "ok", +} +`; + +exports[`Pet Simulator Public Live API Test Hoverboards shape 1`] = ` +{ + "data": [ + { + "category": "Hoverboards", + "collection": "Hoverboards", + "configData": { + "CanBeShiny": false, + "Desc": "Your own personal hoverboard. Gotta go fast!", + "DisplayName": "Hoverboard", + "Icon": "rbxassetid://14910756938", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "RequireSave": true, + "ShinyParticleScale": 1, + "Sounds": [], + "Tradable": false, }, - "configName": "Global Event Gift", + "configName": "Hoverboard | Original", "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.238Z", - "hashShort": "f924e167ec9b9871", + "dateModified": "2025-07-05T23:28:51.002Z", + "hashShort": "3ebab65bb8b0c533", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Made from Glitch Cores in the Glitched Event. Chance for a HUGE 404 Demon!", - "DisplayName": "Glitched Gift", - "Icon": "rbxassetid://17288649241", + "Callback": null, + "Desc": "Thanks for the support 💛", + "DisplayName": "Bling Hoverboard", + "Icon": "rbxassetid://14910770026", "Rarity": { "Announce": true, "Color": null, @@ -56400,20 +59405,22 @@ Chance for the Huge Lunar Moth!", "_id": "Exotic", "_script": null, }, - "RequireSave": true, + "Sounds": [], + "Tradable": false, }, - "configName": "Glitched Gift", + "configName": "Hoverboard | Bling", "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.222Z", - "hashShort": "9cfaa8f1c2aa059e", + "dateModified": "2025-07-05T23:28:50.019Z", + "hashShort": "0be6edcb4921eed7", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Made from Seashells in the Summer Event. Chance for a HUGE Pineapple Monkey!", - "DisplayName": "Summer Gift", - "Icon": "rbxassetid://17671375342", + "Callback": null, + "Desc": "Rewarded to the top 10 players in the world! 🌎", + "DisplayName": "Blue Flying Carpet", + "Icon": "rbxassetid://14910772029", "Rarity": { "Announce": true, "Color": null, @@ -56426,98 +59433,130 @@ Chance for the Huge Lunar Moth!", "_id": "Exotic", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://86531740191291", + ], + "idle": [ + "rbxassetid://129244790082201", + ], + "jump": [ + "rbxassetid://78403942185285", + ], + }, + "Tradable": false, }, - "configName": "Summer Gift", + "configName": "Hoverboard | Blue Flying Carpet", "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.243Z", - "hashShort": "787b9aea0a49071b", + "dateModified": "2025-07-05T23:28:50.015Z", + "hashShort": "663bb12a5a291406", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Made from items in the Good vs. Evil Event. Chance for a HUGE!", - "DisplayName": "Good Gift", - "Icon": "rbxassetid://18100921410", + "Desc": "Meow!", + "DisplayName": "Cat Hoverboard", + "Icon": "rbxassetid://14910757359", "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://16572012076", + ], + "idle": [ + "rbxassetid://85358657413140", + ], + "jump": [ + "rbxassetid://94203575324510", + ], + }, }, - "configName": "Good Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "3c8a270365fb703f", + "configName": "Hoverboard | Cat", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.016Z", + "hashShort": "3def630b1ee809e9", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Made from items in the Good vs. Evil Event. Chance for a HUGE!", - "DisplayName": "Evil Gift", - "Icon": "rbxassetid://18100921552", + "Desc": "Banksy would be proud!", + "DisplayName": "Doodle Hoverboard", + "Icon": "rbxassetid://14910757247", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://91610397255708", + ], + "idle": [ + "rbxassetid://80774788338224", + ], + "jump": [ + "rbxassetid://98520429060386", + ], + }, + "Tradable": true, }, - "configName": "Evil Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "f22a6c65f5639f4d", + "configName": "Hoverboard | Doodle", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.021Z", + "hashShort": "98b7d49b5766f968", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Reward for playing the Good vs. Evil Event. Chance for a HUGE!", - "DisplayName": "Good vs. Evil Gift", - "Icon": "rbxassetid://18100928783", + "Desc": "Speed along in futuristic style!", + "DisplayName": "High-Tech Hoverboard", + "Icon": "rbxassetid://14910757075", "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "RequireSave": true, + "Sounds": [], }, - "configName": "Good vs Evil Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "c60ab9f10c753814", + "configName": "Hoverboard | High Tech", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.041Z", + "hashShort": "21fad2ea1d4afd57", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Reward for playing Rave World's lucky tiles game. Chance for a HUGE!", - "DisplayName": "Rave Gift", - "Icon": "rbxassetid://18336837008", + "Desc": "Double rainbow! (Redeem 5 merch codes)", + "DisplayName": "Rainbow Hoverboard", + "Icon": "rbxassetid://14910756731", "Rarity": { "Announce": true, "Color": null, @@ -56530,176 +59569,188 @@ Chance for the Huge Lunar Moth!", "_id": "Exotic", "_script": null, }, - "RequireSave": true, + "Sounds": [], }, - "configName": "Rave Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "3d5583af3c4cde00", + "configName": "Hoverboard | Rainbow", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.045Z", + "hashShort": "72e67c96f719f59f", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Earned from drops in the Dino Tycoon World. Chance for a HUGE!", - "DisplayName": "Dino Gift", - "Icon": "rbxassetid://18670684055", + "Callback": null, + "Desc": "Rewarded to the Top 100 players in the world! 🌎", + "DisplayName": "Red Flying Carpet", + "Icon": "rbxassetid://14910756675", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://97349550837141", + ], + "idle": [ + "rbxassetid://77162821297775", + ], + "jump": [ + "rbxassetid://134060758230484", + ], + }, + "Tradable": false, }, - "configName": "Dino Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "e0ae7ecc16573610", + "configName": "Hoverboard | Red Flying Carpet", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.044Z", + "hashShort": "b47123c922627076", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Earned from meteors in the Dino Tycoon World. Chance for a HUGE!", - "DisplayName": "Meteor Gift", - "Icon": "rbxassetid://18742082777", + "Desc": "🎄 Participate in the 2023 Christmas Event!", + "DisplayName": "Rudolph Hoverboard", + "Icon": "rbxassetid://14910756609", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "RequireSave": true, + "Sounds": [], }, - "configName": "Meteor Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "e6cacec8080dac76", + "configName": "Hoverboard | Rudolph", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.050Z", + "hashShort": "0db1a26770e95490", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Reward for playing the Color Event. Chance for a HUGE!", - "DisplayName": "Color Gift", - "Icon": "rbxassetid://85136591230954", + "Desc": "🎅 Found in Christmas Presents!", + "DisplayName": "Sleigh Hoverboard", + "Icon": "rbxassetid://14910756533", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "RequireSave": true, + "Sounds": [], }, - "configName": "Color Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "70195a06656f4068", + "configName": "Hoverboard | Sleigh", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.051Z", + "hashShort": "76c2cb175e7c4f45", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Reward for playing the Color Event. Chance for a HUGE!", - "DisplayName": "Graffiti Gift", - "Icon": "rbxassetid://133244977374611", + "Desc": "You can hear the gears turning!", + "DisplayName": "Steampunk Hoverboard", + "Icon": "rbxassetid://14910756487", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "RequireSave": true, + "Sounds": [], }, - "configName": "Graffiti Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "97a7cfa8d6c96d9b", + "configName": "Hoverboard | Steampunk", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.052Z", + "hashShort": "3c6ccb623cfa16a5", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Reward for catching pets in the Elemental World! Chance for a HUGE!", - "DisplayName": "Elemental Gift", - "Icon": "rbxassetid://128952309639623", + "Desc": "Gotta one-up everyone somehow! (Redeem 20 merch codes)", + "DisplayName": "Oversized Hoverboard", + "Icon": "rbxassetid://14910756938", "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Superior", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 8, + "_id": "Superior", "_script": null, }, - "RequireSave": true, + "Sounds": [], }, - "configName": "Elemental Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "33fbd74502ce71f6", + "configName": "Hoverboard | Oversized", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.054Z", + "hashShort": "1f5218d59a74805f", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Made from Pumpkins in the Haunted Backrooms. Chance for a HUGE!", - "DisplayName": "Pumpkin Gift", - "Icon": "rbxassetid://114513766713319", + "Desc": "Set the ground ablaze!", + "DisplayName": "Fire Dragon Hoverboard", + "Icon": "rbxassetid://15164150883", "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "RequireSave": true, + "Sounds": [], }, - "configName": "Pumpkin Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "3be5f61f8e5ecf2f", + "configName": "Hoverboard | Fire Dragon", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.054Z", + "hashShort": "7647354c285af185", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Made from Candy Corn in the Halloween Event. Chance for a HUGE!", - "DisplayName": "Candy Corn Gift", - "Icon": "rbxassetid://107004803757637", + "Desc": "Juicy!", + "DisplayName": "Watermelon Hoverboard", + "Icon": "rbxassetid://14952778495", "Rarity": { "Announce": true, "Color": null, @@ -56712,46 +59763,67 @@ Chance for the Huge Lunar Moth!", "_id": "Exotic", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://84069480219233", + ], + "idle": [ + "rbxassetid://109990362589216", + ], + "jump": [ + "rbxassetid://130951213809044", + ], + }, }, - "configName": "Candy Corn Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "22c441eb80a70592", + "configName": "Hoverboard | Watermelon", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.057Z", + "hashShort": "c61cae8010d23099", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Dropped in the Halloween Event's neighborhoods.", - "DisplayName": "Ghostface Gift", - "Icon": "rbxassetid://111099902427867", + "Desc": "For VIP members!", + "DisplayName": "Axolotl Hoverboard", + "Icon": "rbxassetid://15280246245", "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://126295444855791", + ], + "idle": [ + "rbxassetid://103714009591937", + ], + "jump": [ + "rbxassetid://95188937985287", + ], + }, + "Tradable": false, }, - "configName": "Ghostface Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "0a26e5bb1c8a3816", + "configName": "Hoverboard | Axolotl", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.557Z", + "hashShort": "c9820c97abf45a08", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Reward in the Woodcutting minigame! Chance for a HUGE!", - "DisplayName": "Wooden Gift", - "Icon": "rbxassetid://113799638322740", + "Desc": "⚔️ Rewarded to the top 3 clans in the 2024 New Year Clan Battle!", + "DisplayName": "Blobfish Hoverboard", + "Icon": "rbxassetid://15280245992", "Rarity": { "Announce": true, "Color": null, @@ -56764,20 +59836,20 @@ Chance for the Huge Lunar Moth!", "_id": "Exotic", "_script": null, }, - "RequireSave": true, + "Sounds": [], }, - "configName": "Wooden Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "74b29939d51ad67c", + "configName": "Hoverboard | Blobfish", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.555Z", + "hashShort": "138e0ab4b4dee3ae", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Earned from drops in the "Line for a Huge Pet" Event. Chance for a HUGE!", - "DisplayName": "Adoption Gift", - "Icon": "rbxassetid://136345451971873", + "Desc": "⚔️ Rewarded to the top 3 clans in the 2024 Pet Collecting Clan Battle!", + "DisplayName": "Pegasus Hoverboard", + "Icon": "rbxassetid://15280245549", "Rarity": { "Announce": true, "Color": null, @@ -56790,72 +59862,82 @@ Chance for the Huge Lunar Moth!", "_id": "Exotic", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://75802008091018", + ], + "idle": [ + "rbxassetid://96160069704153", + ], + "jump": [ + "rbxassetid://104673605067650", + ], + }, }, - "configName": "Adoption Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "fcd4fed1b093396a", + "configName": "Hoverboard | Pegasus", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.561Z", + "hashShort": "581dc28003fac6f5", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Earned from time drops in the "Line for a Titanic Pet" Event. Chance for a HUGE!", - "DisplayName": "School Gift", - "Icon": "rbxassetid://138084904848130", + "Desc": "It's a party! (Redeem a merch code)", + "DisplayName": "Piñata Hoverboard", + "Icon": "rbxassetid://15280245445", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "RequireSave": true, + "Sounds": [], }, - "configName": "School Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "36085025b43886a5", + "configName": "Hoverboard | Pinata", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.554Z", + "hashShort": "7b7591b1328cf6ad", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Earned from the Autumn Boss Chest in the Autumn Event. Chance for a HUGE!", - "DisplayName": "Autumn Gift", - "Icon": "rbxassetid://79016165994597", + "Desc": "Careful not to pop it!", + "DisplayName": "Balloon Hoverboard", + "Icon": "rbxassetid://15280246134", "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "RequireSave": true, + "Sounds": [], }, - "configName": "Autumn Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "9765d9e58dbf173d", + "configName": "Hoverboard | Balloon", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.560Z", + "hashShort": "d4cac2d72d0f4614", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Found in the Forever Pack or Chest Hunt!", - "DisplayName": "Turkey Gift", - "Icon": "rbxassetid://89033758007241", + "Desc": "⚔️ Rewarded to the top 3 clans in the 2023 Christmas Clan Battle!", + "DisplayName": "Present Hoverboard", + "Icon": "rbxassetid://15642824601", "Rarity": { "Announce": true, "Color": null, @@ -56868,276 +59950,384 @@ Chance for the Huge Lunar Moth!", "_id": "Exotic", "_script": null, }, - "RequireSave": true, + "Sounds": [], }, - "configName": "Turkey Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "8cea47473b86b8d6", + "configName": "Hoverboard | Red Present", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.556Z", + "hashShort": "200dcaff0575ec3e", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Earned from participating in the 2024 Anniversary Event!", - "DisplayName": "2024 Anniversary Gift", - "Icon": "rbxassetid://91598628386274", + "Animation": 11897877992, + "BobRate": 3, + "Desc": "ALIENS ARE REAL 👽", + "DisplayName": "UFO", + "HoverHeight": 6, + "Icon": "rbxassetid://15803163554", + "ProductId": 1718933726, "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "RequireSave": true, + "RotationLimit": 0, + "Sounds": { + "equip": [ + "rbxassetid://15799351567", + ], + "idle": [ + "rbxassetid://15809396787", + ], + "jump": [ + "rbxassetid://15809396485", + ], + }, + "Tradable": true, }, - "configName": "2024 Anniversary Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "3293b257614ff8d0", + "configName": "Hoverboard | UFO", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.552Z", + "hashShort": "38e3593242d44920", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Created using the Snow Machine during the Holiday Event!", - "DisplayName": "Snowflake Gift", - "Icon": "rbxassetid://80753300898363", + "Desc": "ub3rR0xXorzage!", + "DisplayName": "Noob Hoverboard", + "Icon": "rbxassetid://15803163718", + "ProductId": 1718932898, "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://4956112294", + ], + }, + "Tradable": true, }, - "configName": "Snowflake Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "cfa322ee436ca3da", + "configName": "Hoverboard | Noob", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.562Z", + "hashShort": "43adaced98437da3", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Open for goodies!", - "DisplayName": "2024 Small Christmas Present", - "Icon": "rbxassetid://78444032843973", + "Desc": "It's bananas!", + "DisplayName": "Banana Hoverboard", + "Icon": "rbxassetid://15803163849", + "ProductId": 1718932102, "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "Sounds": { + "equip": [ + "rbxassetid://14743073819", + ], + }, + "Tradable": true, }, - "configName": "2024 Small Christmas Present", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "4141966beb7298e3", + "configName": "Hoverboard | Banana", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.562Z", + "hashShort": "c6c2434013f64155", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Open for a bunch of goodies!", - "DisplayName": "2024 Medium Christmas Present", - "Icon": "rbxassetid://91349208436997", + "Desc": "⚔️ Rewarded to the top 3 clans in the 2024 Achievements Clan Battle!", + "DisplayName": "Ducky Hoverboard", + "Icon": "rbxassetid://15280245724", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "Sounds": { + "equip": [ + "rbxassetid://85687969435784", + ], + "idle": [ + "rbxassetid://118206736797563", + ], + "jump": [ + "rbxassetid://123768149210741", + ], + }, }, - "configName": "2024 Medium Christmas Present", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "c2c71dd7c99f5e81", + "configName": "Hoverboard | Ducky", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.558Z", + "hashShort": "1421b433abd21276", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Big present with lots of goodies!", - "DisplayName": "2024 Large Christmas Present", - "Icon": "rbxassetid://71891761708931", + "Desc": "⚔️ Rewarded to the top 3 clans in the 2024 Raid Clan Battle!", + "DisplayName": "Cosmic Hoverboard", + "Icon": "rbxassetid://15311108491", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "Sounds": [], }, - "configName": "2024 Large Christmas Present", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "b9bbf74f25a48fc5", + "configName": "Hoverboard | Cosmic", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.552Z", + "hashShort": "17349d3a727c61cd", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Huge present with a ton of goodies!", - "DisplayName": "2024 X-Large Christmas Present", - "Icon": "rbxassetid://121101105785977", + "Animation": 11897877992, + "BobRate": 3, + "CanBeShiny": true, + "DefaultJumpSpeedBoost": 1, + "Desc": "When you gotta go, you gotta go.", + "DisplayName": "Toilet", + "HoverHeight": 6, + "Icon": "rbxassetid://16499939383", + "MaxRoll": 35, + "PitchScale": 0, + "ProductId": 1762008925, "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "RotationLimit": 0, + "ShinyParticleScale": 1.2, + "Sounds": { + "equip": [ + "rbxassetid://16499531238", + ], + "idle": [ + "rbxassetid://16499530045", + ], + "jump": [ + "rbxassetid://16499530188", + ], + }, + "Tradable": true, }, - "configName": "2024 X-Large Christmas Present", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "c2ca77a17ed63063", + "configName": "Hoverboard | Toilet", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.559Z", + "hashShort": "28d225e8d1aab92f", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "GARGANTUAN present with sooo many goodies! Includes chance for a Gargantuan, Titanic & Huge pet!", - "DisplayName": "2024 Gargantuan Christmas Present", - "Icon": "rbxassetid://117601296319615", + "CanBeShiny": true, + "Desc": "Holographic projection!", + "DisplayName": "Hologram Hoverboard", + "Icon": "rbxassetid://16499939894", + "ProductId": 1762008523, "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "RequireSave": true, + "ShinyParticleScale": 0.75, + "Sounds": { + "equip": [ + "rbxassetid://16499531105", + ], + "idle": [ + "rbxassetid://16499531403", + ], + "jump": [ + "rbxassetid://16499530923", + ], + }, + "Tradable": true, }, - "configName": "2024 Gargantuan Christmas Present", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "5030d6d8e870c9c1", + "configName": "Hoverboard | Hologram", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.563Z", + "hashShort": "9682980b9ce48560", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Special gift for attending the 2025 New Year's Party!!", - "DisplayName": "2025 New Year's Gift", - "Icon": "rbxassetid://122498561966140", + "Animation": 11897877992, + "BobRate": 3, + "CanBeShiny": true, + "DefaultJumpSpeedBoost": 1, + "Desc": "Off to space in a rocketship!", + "DisplayName": "Rocket", + "HoverHeight": 6, + "Icon": "rbxassetid://16499939654", + "MaxRoll": 35, + "PitchScale": 0, + "ProductId": 1762009490, "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "RequireSave": true, + "RotationLimit": 0, + "ShinyParticleScale": 1.5, + "Sounds": { + "equip": [ + "rbxassetid://16499530718", + ], + "idle": [ + "rbxassetid://16499530510", + ], + "jump": [ + "rbxassetid://16499530360", + ], + }, + "Tradable": true, }, - "configName": "2025 New Years Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "455888007b282c4f", + "configName": "Hoverboard | Rocket", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.556Z", + "hashShort": "7b062aa930ffb298", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Found by saving pets from the Grinch Cat ice cubes!", - "DisplayName": "Jolly Gift", - "Icon": "rbxassetid://87807639552107", + "Desc": "Obtained by completing area quests!", + "DisplayName": "M-10 Hoverboard", + "Icon": "rbxassetid://14910757021", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "RequireSave": true, + "Sounds": [], }, - "configName": "Jolly Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "9adeddd32aab1e17", + "configName": "Hoverboard | M-10", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.040Z", + "hashShort": "72d08f5fdef8a0a8", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Reward for defeating the final drawing boss in the Doodle World! Chance for a HUGE!", - "DisplayName": "Doodle Gift", - "Icon": "rbxassetid://88860297257801", + "Desc": "🌈 Found in The Forever Pack!", + "DisplayName": "Tiger Hoverboard", + "Icon": "rbxassetid://15280245363", "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://88643014063908", + ], + "idle": [ + "rbxassetid://102587410191498", + ], + "jump": [ + "rbxassetid://82114109506343", + ], + }, }, - "configName": "Doodle Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "69d069a640a050a1", + "configName": "Hoverboard | Tiger", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.559Z", + "hashShort": "c9dda03dae5ffb77", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Earned from playing the Pet Games!", - "DisplayName": "Pet Games Gift", - "Icon": "rbxassetid://86173258251252", + "Desc": "⚔️ Rewarded to the top 3 clans in the 2024 Quest Clan Battle!", + "DisplayName": "Bleebo The Alien Hoverboard", + "Icon": "rbxassetid://16756713145", "Rarity": { "Announce": true, "Color": null, @@ -57150,20 +60340,25 @@ Chance for the Huge Lunar Moth!", "_id": "Exotic", "_script": null, }, - "RequireSave": true, + "Sounds": [], }, - "configName": "Pet Games Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "d18c26c07d9f8857", + "configName": "Hoverboard | Bleebo The Alien", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.553Z", + "hashShort": "dca5d4ec97428eb0", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Awarded for being online before the update!", - "DisplayName": "More Hype Egg", - "Icon": "", + "Animation": 11897877992, + "Animator": null, + "BobRate": 3, + "CanBeShiny": true, + "Desc": "Fly around on your own personal helicopter!", + "DisplayName": "Helicopter", + "HoverHeight": 6, + "Icon": "rbxassetid://17027856430", "Rarity": { "Announce": true, "Color": null, @@ -57176,20 +60371,34 @@ Chance for the Huge Lunar Moth!", "_id": "Exclusive", "_script": null, }, - "RequireSave": true, + "RotationLimit": 0, + "ShinyParticleScale": 1, + "Sounds": { + "equip": [ + "rbxassetid://17026760399", + ], + "idle": [ + "rbxassetid://17026760207", + ], + "jump": [ + "rbxassetid://17026749736", + ], + }, + "Tradable": true, }, - "configName": "More Hype Egg", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "545dcd11a0ebce83", + "configName": "Hoverboard | Helicopter", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.752Z", + "hashShort": "e03b8c7a3fd20982", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Awarded for being online before the update!", - "DisplayName": "Hype Egg #2", - "Icon": "rbxassetid://125781246617646", + "CanBeShiny": true, + "Desc": "GET YOUR HOT DOOOOOOGS!", + "DisplayName": "Hotdog Hoverboard", + "Icon": "rbxassetid://17027857468", "Rarity": { "Announce": true, "Color": null, @@ -57202,154 +60411,203 @@ Chance for the Huge Lunar Moth!", "_id": "Exclusive", "_script": null, }, - "RequireSave": true, + "ShinyParticleScale": 1, + "Sounds": { + "equip": [ + "rbxassetid://17026760782", + ], + "idle": [ + "rbxassetid://17026760662", + ], + "jump": [ + "rbxassetid://17026760782", + ], + }, + "Tradable": true, }, - "configName": "Hype Egg 2", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "269cd5e867c868a5", + "configName": "Hoverboard | Hotdog", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.748Z", + "hashShort": "ba1ebc9abecc230f", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Obtained by using a Hellfire Core during the Cannon Tycoon!", - "DisplayName": "Hellfire Gift", - "Icon": "rbxassetid://130668450135546", + "Animator": null, + "CanBeShiny": true, + "Desc": "Did it just blink at me?", + "DisplayName": "Nightmare Hoverboard", + "Icon": "rbxassetid://17027856587", "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "RequireSave": true, + "Setup": null, + "ShinyParticleScale": 0.75, + "Sounds": { + "equip": [ + "rbxassetid://17026761184", + ], + "idle": [ + "rbxassetid://17026760975", + ], + "jump": [ + "rbxassetid://17026749861", + ], + }, + "Tradable": true, }, - "configName": "Hellfire Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "27445dfe8a8cb93a", + "configName": "Hoverboard | Nightmare", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.582Z", + "hashShort": "33ab71f7d49f976b", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Open after the update to receive a Hype Egg!", - "DisplayName": "Locked Hype Egg!", - "Icon": "rbxassetid://94077876373608", - "Instant": true, - "InstantSound": "rbxassetid://77914312637440", - "MaxAmount": 1, + "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Pixel Clan Battle!", + "DisplayName": "Pixel Dragon Hoverboard", + "Icon": "rbxassetid://17027856286", "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "RequireSave": false, - "Tradable": false, + "Sounds": [], }, - "configName": "Locked Hype Egg", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "863556ec83b1a55f", + "configName": "Hoverboard | Pixel Dragon", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.585Z", + "hashShort": "42a968aef1522635", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Obtained during the Tower Tycoon Valentines Event!", - "DisplayName": "Love Gift", - "Icon": "rbxassetid://111562395194647", + "Desc": "👾 Found in Glitched Gifts!", + "DisplayName": "Glitched Hoverboard", + "Icon": "rbxassetid://17284845446", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://17296108429", + ], + "idle": [ + "rbxassetid://17296107110", + ], + "jump": [ + "rbxassetid://17296107350", + "rbxassetid://17296106878", + "rbxassetid://17296107509", + ], + }, }, - "configName": "Love Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "16376fcd9a445406", + "configName": "Hoverboard | Glitched", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.595Z", + "hashShort": "065a2259317e0292", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Contains OP enchants! Including Tier X and IX!", - "DisplayName": "Mega Enchant Chest", - "Icon": "rbxassetid://117764701926181", + "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Bubble Clan Battle!", + "DisplayName": "Bubble Hoverboard", + "Icon": "rbxassetid://17277981816", "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://17296108429", + ], + "idle": [ + "rbxassetid://17296108094", + ], + "jump": [ + "rbxassetid://17296108234", + ], + }, }, - "configName": "Mega Enchant Chest", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "275ea799cb45904a", + "configName": "Hoverboard | Bubble", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.587Z", + "hashShort": "605ce24f143874ea", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Contains OP Potions! Including The Cocktail II!", - "DisplayName": "Mega Potion Chest", - "Icon": "rbxassetid://78223799295283", + "Desc": "Screeeeeech out of there!", + "DisplayName": "Night Terror Hoverboard", + "Icon": "rbxassetid://17375210703", "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Superior", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 8, + "_id": "Superior", "_script": null, }, - "RequireSave": true, + "ShinyParticleScale": 1, + "Sounds": [], + "Tradable": true, }, - "configName": "Mega Potion Chest", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "db8bfd669d47a73c", + "configName": "Hoverboard | Night Terror", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.588Z", + "hashShort": "11e68eefba1e069a", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Contains OP ultimates! Including Chest Spell, Tsunami and tons of Ultimate XP Potions!", - "DisplayName": "Mega Ultimate Chest", - "Icon": "rbxassetid://125621489436651", + "CanBeShiny": true, + "Desc": "REAL GOLD I SWEAR!", + "DisplayName": "Rich Hoverboard", + "Icon": "rbxassetid://17452051703", + "ProductId": 1826332082, "Rarity": { "Announce": true, "Color": null, @@ -57362,20 +60620,36 @@ Chance for the Huge Lunar Moth!", "_id": "Exclusive", "_script": null, }, - "RequireSave": true, + "ShinyParticleScale": 1, + "Sounds": { + "equip": [ + "rbxassetid://17459204249", + ], + "idle": [ + "rbxassetid://17459205488", + ], + "jump": [ + "rbxassetid://17459206068", + "rbxassetid://17459204406", + "rbxassetid://17459204891", + ], + }, + "Tradable": true, }, - "configName": "Mega Ultimate Chest", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "02d40d5839f05db5", + "configName": "Hoverboard | Rich", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.590Z", + "hashShort": "7ae8625dfbc157bc", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Contains OP charms! Including the Exclusive Treasure Charm!", - "DisplayName": "Mega Charm Chest", - "Icon": "rbxassetid://120862195809324", + "CanBeShiny": true, + "Desc": "Shattered into pieces!", + "DisplayName": "Mosaic Hoverboard", + "Icon": "rbxassetid://17452051854", + "ProductId": 1826331943, "Rarity": { "Announce": true, "Color": null, @@ -57388,20 +60662,46 @@ Chance for the Huge Lunar Moth!", "_id": "Exclusive", "_script": null, }, - "RequireSave": true, + "ShinyParticleScale": 1, + "Sounds": { + "equip": [ + "rbxassetid://17459250353", + ], + "idle": [ + "rbxassetid://17459250056", + ], + "jump": [ + "rbxassetid://17459249701", + "rbxassetid://17459249381", + "rbxassetid://17459250694", + ], + }, + "Tradable": true, }, - "configName": "Mega Charm Chest", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "b1b7e389f5c2d0fe", + "configName": "Hoverboard | Mosaic", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.591Z", + "hashShort": "00a20ee014331b5c", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Contains OP enchants, ultimates, potions, charms and so much MORE!", - "DisplayName": "Mega Loot Chest", - "Icon": "rbxassetid://102254859923515", + "Animation": 2506281703, + "Animator": null, + "BlockcastScale": 0, + "BobRate": 0, + "CanBeShiny": true, + "Desc": "A hot red supercar! What else could you ask for? Vrooom!", + "DisplayName": "Supercar", + "HoverHeight": 2.25, + "Icon": "rbxassetid://17452051536", + "IdlePitchScale": 0, + "IdleVolume": 3, + "IdleVolumeSpeedScale": -1, + "MaxRoll": 0, + "PitchScale": 0, + "ProductId": 1826332258, "Rarity": { "Announce": true, "Color": null, @@ -57414,94 +60714,41 @@ Chance for the Huge Lunar Moth!", "_id": "Exclusive", "_script": null, }, - "RequireSave": true, - }, - "configName": "Mega Boost Chest", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "5ea0251cfbfd6e1e", - }, - { - "category": "CardPacks", - "collection": "Lootboxes", - "configData": { - "Desc": "Contains 5 Fantasy Pack cards! - -Combine cards into pets & chance for a TITANIC card!", - "DisplayName": "Fantasy Pack", - "Icon": "rbxassetid://92535965955987", - "InventoryTags": [ - "Packs", - ], - "IsCardPack": true, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, + "RotationLimit": { + "m": null, + "t": "numeric", + "v": "inf", }, - "RequireSave": true, - "Rolls": 5, - "RollsBoostable": true, - }, - "configName": "Fantasy Pack", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "783607d12fdbf5ad", - }, - { - "category": "CardPacks", - "collection": "Lootboxes", - "configData": { - "Desc": "Contains 5 Retro Pack cards! - -Combine cards into pets & chance for a HUGE card!", - "DisplayName": "Retro Pack", - "Icon": "rbxassetid://88966826354072", - "InventoryTags": [ - "Packs", - ], - "IsCardPack": true, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, + "ShinyParticleScale": 1, + "SkateMode": true, + "Sounds": { + "equip": [ + 14881658800, + ], + "idle": [ + 14881616188, + ], + "idle2": [ + 14881713952, + ], + "jump": [ + 3510107658, + ], }, - "RequireSave": true, - "Rolls": 5, - "RollsBoostable": true, + "Tradable": true, }, - "configName": "Retro Pack", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "03a8c74257066ff6", + "configName": "Hoverboard | Supercar", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:47.223Z", + "hashShort": "d5a956a2f46cdc83", }, { - "category": "CardPacks", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Contains 5 Nightmare Pack cards! - -Combine cards into pets & chance for a HUGE card!", - "DisplayName": "Nightmare Pack", - "Icon": "rbxassetid://94005127802940", - "InventoryTags": [ - "Packs", - ], - "IsCardPack": true, + "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Fragmented Clan Battle!", + "DisplayName": "Fragmented Hoverboard", + "Icon": "rbxassetid://17513943752", "Rarity": { "Announce": true, "Color": null, @@ -57514,28 +60761,34 @@ Combine cards into pets & chance for a HUGE card!", "_id": "Exotic", "_script": null, }, - "RequireSave": true, - "Rolls": 5, - "RollsBoostable": true, + "Sounds": { + "equip": [ + "rbxassetid://17526565785", + ], + "idle": [ + "rbxassetid://17526566240", + ], + "jump": [ + "rbxassetid://17526566370", + "rbxassetid://17526566022", + "rbxassetid://17526565911", + ], + }, }, - "configName": "Nightmare Pack", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "171f5a99ea5f4d71", + "configName": "Hoverboard | Fragmented", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.593Z", + "hashShort": "dd618af3787f68ba", }, { - "category": "CardPacks", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Contains 5 Superhero Pack cards! - -Combine cards into EXCLUSIVE pets & chance for a TITANIC card!", - "DisplayName": "Superhero Pack", - "Icon": "rbxassetid://122557459853685", - "InventoryTags": [ - "Packs", - ], - "IsCardPack": true, + "Animator": null, + "CanBeShiny": false, + "Desc": "WEEE WOOO WEEE WOOO!", + "DisplayName": "Police Hoverboard", + "Icon": "rbxassetid://17602510167", "Rarity": { "Announce": true, "Color": null, @@ -57548,61 +60801,36 @@ Combine cards into EXCLUSIVE pets & chance for a TITANIC card!", "_id": "Exclusive", "_script": null, }, - "RequireSave": true, - "Rolls": 5, - }, - "configName": "Super Hero Pack", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "503cd2f4c84f0078", - }, - { - "category": "CardPacks", - "collection": "Lootboxes", - "configData": { - "Desc": "Contains 5 BIG Pack cards! - -Combine cards into pets & chance for a TITANIC card!", - "DisplayName": "BIG Pack", - "Icon": "rbxassetid://138485510461327", - "InventoryTags": [ - "Packs", - ], - "IsCardPack": true, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, + "ShinyParticleScale": 1, + "Sounds": { + "equip": [ + "rbxassetid://17637411134", + ], + "idle": [ + "rbxassetid://17637284444", + "rbxassetid://17637411911", + ], + "jump": [ + "rbxassetid://17637284949", + "rbxassetid://17637284653", + "rbxassetid://17637285182", + ], }, - "RequireSave": true, - "Rolls": 5, - "RollsBoostable": true, + "Tradable": true, }, - "configName": "BIG Pack", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "a7238b0e61204129", + "configName": "Hoverboard | Police", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.586Z", + "hashShort": "9591e97ec3303346", }, { - "category": "CardPacks", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Contains 5 Pog Pack cards! - -Combine cards into pets & chance for a HUGE card!", - "DisplayName": "Pog Pack", - "Icon": "rbxassetid://99750379530554", - "InventoryTags": [ - "Packs", - ], - "IsCardPack": true, + "Desc": "🌊 Surf's up! 🤙 +🌴 Found in Summer Gifts!", + "DisplayName": "Surfboard", + "Icon": "rbxassetid://14910756337", "Rarity": { "Announce": false, "Color": null, @@ -57615,61 +60843,71 @@ Combine cards into pets & chance for a HUGE card!", "_id": "Mythical", "_script": null, }, - "RequireSave": true, - "Rolls": 5, - "RollsBoostable": true, + "Sounds": { + "equip": [ + "rbxassetid://17687558595", + ], + "idle": [ + "rbxassetid://17687559018", + ], + "jump": [ + "rbxassetid://17687557581", + "rbxassetid://17687559292", + "rbxassetid://17687557831", + ], + }, }, - "configName": "Pog Pack", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "89dd54e888c6ce6b", + "configName": "Hoverboard | Surfboard", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:50.053Z", + "hashShort": "d7f8165e4bea051a", }, { - "category": "CardPacks", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Contains 5 Meme Pack cards! - -Combine cards into EXCLUSIVE pets & chance for a TITANIC card!", - "DisplayName": "Meme Pack", - "Icon": "rbxassetid://137628683001800", - "InventoryTags": [ - "Packs", - ], - "IsCardPack": true, + "Desc": "01101110 01100101 01110010 01100100 +Found in the Hacker Pack!", + "DisplayName": "Hacker Hoverboard", + "Icon": "rbxassetid://17761141100", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "RequireSave": true, - "Rolls": 5, + "Sounds": { + "equip": [ + "rbxassetid://17756016330", + ], + "idle": [ + "rbxassetid://17756016078", + ], + "jump": [ + "rbxassetid://17756016632", + "rbxassetid://17756016861", + "rbxassetid://17756014971", + ], + }, }, - "configName": "Meme Pack", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "2ef922ea649dfd99", + "configName": "Hoverboard | Hacker", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "ff4b50d322e94012", }, { - "category": "CardPacks", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Contains 5 Axolotl Pack cards! - -Combine cards into pets & chance for a HUGE card!", - "DisplayName": "Axolotl Pack", - "Icon": "rbxassetid://88730452047808", - "InventoryTags": [ - "Packs", - ], - "IsCardPack": true, + "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Wicked Clan Battle!", + "DisplayName": "Wicked Hoverboard", + "Icon": "rbxassetid://17761140826", "Rarity": { "Announce": true, "Color": null, @@ -57682,56 +60920,70 @@ Combine cards into pets & chance for a HUGE card!", "_id": "Exotic", "_script": null, }, - "RequireSave": true, - "Rolls": 5, - "RollsBoostable": true, + "Sounds": { + "equip": [ + "rbxassetid://17768693935", + ], + "idle": [ + "rbxassetid://17768693518", + ], + "jump": [ + "rbxassetid://17768694141", + "rbxassetid://17768694838", + "rbxassetid://17768695172", + ], + }, }, - "configName": "Axolotl Pack", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "e7c36d76725c6d9e", + "configName": "Hoverboard | Wicked", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "55e9c191deefc52f", }, { - "category": "CardPacks", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Contains 5 Ninja Pack cards! - -Combine cards into pets & chance for a HUGE card!", - "DisplayName": "Ninja Pack", - "Icon": "rbxassetid://136542992100223", - "InventoryTags": [ - "Packs", - ], - "IsCardPack": true, + "Desc": "👼👿 Found in Good vs Evil Gift!", + "DisplayName": "Good vs. Evil Hoverboard", + "Icon": "rbxassetid://18123300092", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "RequireSave": true, - "Rolls": 5, - "RollsBoostable": true, + "Sounds": { + "equip": [ + "rbxassetid://18151874045", + ], + "idle": [ + "rbxassetid://18151873799", + ], + "jump": [ + "rbxassetid://18151874486", + "rbxassetid://18151874296", + "rbxassetid://18151874734", + ], + }, }, - "configName": "Ninja Pack", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "b6c53854c13e7526", + "configName": "Hoverboard | Good vs Evil", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "bf9b10fbadf4879f", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Obtained during the St. Patrick's Raid Event!", - "DisplayName": "Lucky Gift", - "Icon": "rbxassetid://82101319883195", + "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Safety Clan Battle!", + "DisplayName": "Safety Hoverboard", + "Icon": "rbxassetid://18127021259", "Rarity": { "Announce": true, "Color": null, @@ -57744,78 +60996,120 @@ Combine cards into pets & chance for a HUGE card!", "_id": "Exotic", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://18252156889", + ], + "idle": [ + "rbxassetid://18252157473", + ], + "jump": [ + "rbxassetid://18252157197", + "rbxassetid://18252157786", + "rbxassetid://18252158085", + ], + }, }, - "configName": "Lucky Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "50fd07fe42265a98", + "configName": "Hoverboard | Safety", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "fc496d1fcffa2009", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Rewarded to the top 500 clans in clan battles! Chance for Huge Lightning Bat!", - "DisplayName": "Clan Gift #2", - "Icon": "rbxassetid://126839917322650", + "Desc": "Bring the party! Glide through in style! ✨ Found in Rave Gifts!", + "DisplayName": "Rave Hoverboard", + "Icon": "rbxassetid://18351926226", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://18351746746", + "rbxassetid://18351748237", + "rbxassetid://18351749045", + ], + "idle": [ + "rbxassetid://18351747064", + ], + "jump": [ + "rbxassetid://18351747492", + "rbxassetid://18351749342", + "rbxassetid://18351748791", + ], + }, }, - "configName": "Clan Gift 2", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "ac6c8748def1ad2d", + "configName": "Hoverboard | Rave", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "c6a72591785bdd8d", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Obtained during the Slime Factory Event!", - "DisplayName": "Slime Gift", - "Icon": "rbxassetid://123257637459556", + "Animation": 11897877992, + "BobRate": 3, + "CanBeShiny": true, + "Desc": "Kick back and relax like royalty!", + "DisplayName": "Throne Hoverboard", + "HoverHeight": 6, + "Icon": "rbxassetid://18539294870", + "ProductId": 1881198159, "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "RequireSave": true, + "RotationLimit": 0, + "ShinyParticleScale": 1, + "Sounds": { + "equip": [ + "rbxassetid://18551758191", + ], + "idle": [ + "rbxassetid://18552441652", + ], + "jump": [ + "rbxassetid://18551759339", + "rbxassetid://18551757457", + "rbxassetid://18551757623", + ], + }, + "Tradable": true, }, - "configName": "Slime Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "2570a08b7dd7cf33", + "configName": "Hoverboard | Throne", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "f362e9d11813c2a5", }, { - "category": "CardPacks", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Contains 5 Anime Pack cards! - -Combine cards into EXCLUSIVE pets & chance for a TITANIC card!", - "DisplayName": "Anime Pack", - "Icon": "rbxassetid://115390480422233", - "InventoryTags": [ - "Packs", - ], - "IsCardPack": true, + "CanBeShiny": true, + "Desc": "With pepperoni, without pineapple!", + "DisplayName": "Pizza Hoverboard", + "Icon": "rbxassetid://18539295726", + "ProductId": 1881197707, "Rarity": { "Announce": true, "Color": null, @@ -57828,126 +61122,192 @@ Combine cards into EXCLUSIVE pets & chance for a TITANIC card!", "_id": "Exclusive", "_script": null, }, - "RequireSave": true, - "Rolls": 5, + "ShinyParticleScale": 1, + "Sounds": { + "equip": [ + "rbxassetid://18551757917", + ], + "idle": [ + "rbxassetid://18551759877", + ], + "jump": [ + "rbxassetid://18551758502", + "rbxassetid://18551758711", + "rbxassetid://18551759560", + ], + }, + "Tradable": true, }, - "configName": "Anime Pack", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "71f3722ceb6aeb84", + "configName": "Hoverboard | Pizza", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "933371a4fc8854a3", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Obtained by winning the Easter Contest!", - "DisplayName": "Titanic Easter Gift", - "Icon": "rbxassetid://101374206073893", + "Animator": null, + "CanBeShiny": true, + "Desc": ":3 pop :3 pop :3 pop", + "DisplayName": "Popcat Hoverboard", + "Icon": "rbxassetid://18539295537", + "ProductId": 1881197449, "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Superior", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 8, - "_id": "Superior", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "RequireSave": true, + "Setup": null, + "ShinyParticleScale": 1, + "Sounds": { + "equip": [ + "rbxassetid://18551760110", + ], + "idle": [ + "rbxassetid://18552854797", + ], + "jump": [ + "rbxassetid://18552855278", + "rbxassetid://18552855479", + "rbxassetid://18552855059", + ], + }, + "Tradable": true, }, - "configName": "Titanic Easter Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "b39c48e0449e96c1", + "configName": "Hoverboard | Popcat", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "31aac8b85fdcff5e", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Obtained by participating in the Easter Contest!", - "DisplayName": "Huge Easter Gift", - "Icon": "rbxassetid://83528196707461", + "Desc": "Cha-ching! Dolla' dolla' bills ya'll!", + "DisplayName": "Millionaire Hoverboard", + "Icon": "rbxassetid://18539295902", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://18551761750", + ], + "idle": [ + "rbxassetid://18551762296", + ], + "jump": [ + "rbxassetid://18551761986", + "rbxassetid://18551762896", + "rbxassetid://18551762594", + ], + }, }, - "configName": "Huge Easter Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "a5f700e31b4c96ce", + "configName": "Hoverboard | Millionaire", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "2a7d7d61d83366c4", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Open for the best high tier fishing loot!", - "DisplayName": "Deep Sea Treasure Chest", - "Icon": "rbxassetid://134556771269079", - "Instant": true, + "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Clown Clan Battle!", + "DisplayName": "Clown Hoverboard", + "Icon": "rbxassetid://18556730015", "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "Rolls": 4, + "Sounds": { + "equip": [ + "rbxassetid://18670428358", + ], + "idle": [ + "rbxassetid://18670427780", + ], + "jump": [ + "rbxassetid://18670428016", + "rbxassetid://18670426725", + "rbxassetid://18670427575", + ], + }, }, - "configName": "Deep Sea Treasure Chest", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "c67d8de65c79c686", + "configName": "Hoverboard | Clown", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "065bd803ac44f046", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Reward for participating in the Fantasy World Time Trials!", - "DisplayName": "Time Trial Gift", - "Icon": "rbxassetid://123771590826264", + "Desc": "Faster than a stampede of dinos!", + "DisplayName": "Dino Hoverboard", + "Icon": "rbxassetid://18673988926", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://18670426195", + ], + "idle": [ + "rbxassetid://18670427043", + ], + "jump": [ + "rbxassetid://18670426549", + "rbxassetid://18670425372", + "rbxassetid://18670427213", + ], + }, }, - "configName": "Time Trial Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "b9f3ae74037aaad9", + "configName": "Hoverboard | Dino", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "2c4f356d024ef43b", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Earned from scoring points in the Infinite Basketball Mode! Chance for a HUGE!", - "DisplayName": "Basketball Gift", - "Icon": "rbxassetid://98133353621098", + "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Ice Cream Clan Battle!", + "DisplayName": "Ice Cream Hoverboard", + "Icon": "rbxassetid://18856413784", "Rarity": { "Announce": true, "Color": null, @@ -57960,105 +61320,134 @@ Combine cards into EXCLUSIVE pets & chance for a TITANIC card!", "_id": "Exotic", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://99471941929125", + ], + "idle": [ + "rbxassetid://18252157786", + ], + "jump": [ + "rbxassetid://137244612282875", + "rbxassetid://92537117161811", + "rbxassetid://80877763357290", + ], + }, }, - "configName": "Basketball Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "8d7ba6d2ead288c4", + "configName": "Hoverboard | Ice Cream", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "8404c59fe13b7128", }, { - "category": "CardPacks", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Contains 5 Ghostly Pack cards! - -Combine cards into EXCLUSIVE pets & chance for a TITANIC card!", - "DisplayName": "Ghostly Pack", - "Icon": "rbxassetid://75735723611442", - "InventoryTags": [ - "Packs", - ], - "IsCardPack": true, + "Desc": "Faster than the speed of light!", + "DisplayName": "Aura Hoverboard", + "Icon": "rbxassetid://18856413934", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "RequireSave": true, - "Rolls": 5, + "Sounds": [], }, - "configName": "Ghostly Pack", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "090b6ef30a4794d4", + "configName": "Hoverboard | Aura", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "08aa6ba99ff93756", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Earned from scoring points in the Infinite Basketball Mode! Chance for a HUGE!", - "DisplayName": "Cosmic Basketball Gift", - "Icon": "rbxassetid://128100365905918", + "Desc": "🍓 Juicy, sweet, and fast! 🍓", + "DisplayName": "Strawberry Hoverboard", + "Icon": "rbxassetid://86730873153798", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://120986114838331", + ], + "idle": [ + "rbxassetid://90990178890073", + ], + "jump": [ + "rbxassetid://115325188076060", + "rbxassetid://98554516294595", + "rbxassetid://125132165741510", + ], + }, }, - "configName": "Cosmic Basketball Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "ac99c462dae4023b", + "configName": "Hoverboard | Strawberry", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "f329e7ab0e400500", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Earned from playing Tower Defense infinity mode!", - "DisplayName": "Tower Defense Gift", - "Icon": "rbxassetid://73523661611795", + "Desc": "Caution wet paint!", + "DisplayName": "Art Hoverboard", + "Icon": "rbxassetid://72358393018887", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://116123174038657", + ], + "idle": [ + "rbxassetid://117345472200165", + ], + "jump": [ + "rbxassetid://86811526485418", + "rbxassetid://116117969156643", + "rbxassetid://77917141921172", + ], + }, }, - "configName": "Tower Defense Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "a42b14bd85e1e299", + "configName": "Hoverboard | Art", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "d44f1f4e43da7c35", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Earned from playing Tower Defense infinity mode!", - "DisplayName": "Magma Tower Defense Gift", - "Icon": "rbxassetid://91692504768423", + "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Rave Crab Clan Battle!", + "DisplayName": "Rave Crab Hoverboard", + "Icon": "rbxassetid://104010438711348", "Rarity": { "Announce": true, "Color": null, @@ -58071,20 +61460,32 @@ Combine cards into EXCLUSIVE pets & chance for a TITANIC card!", "_id": "Exotic", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://127297605847035", + ], + "idle": [ + "rbxassetid://73276500471130", + ], + "jump": [ + "rbxassetid://133984231025677", + "rbxassetid://126951019768379", + "rbxassetid://124024086900136", + ], + }, }, - "configName": "Tower Defense Gift 2", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "542f90c6ca38a5df", + "configName": "Hoverboard | Rave Crab", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "b93620422798be94", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Earned from playing Tower Defense AFK mode!", - "DisplayName": "Matrix Tower Defense Gift", - "Icon": "rbxassetid://140098114840649", + "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Upside Down Clan Battle!", + "DisplayName": "Reversed Hoverboard", + "Icon": "rbxassetid://104003058332482", "Rarity": { "Announce": true, "Color": null, @@ -58097,124 +61498,210 @@ Combine cards into EXCLUSIVE pets & chance for a TITANIC card!", "_id": "Exotic", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://131657036440279", + ], + "idle": [ + "rbxassetid://109008992005347", + ], + "jump": [ + "rbxassetid://75433948107955", + ], + }, }, - "configName": "Tower Defense Gift 3", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "1d31b4f86a11af24", + "configName": "Hoverboard | Reversed", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "0abc82d9bd4d09d2", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Earned from scoring points in the Muscle Race! Chance for a HUGE!", - "DisplayName": "Gym Gift", - "Icon": "rbxassetid://122519840679361", + "Desc": "Earth, fire, water, ice, and all that!", + "DisplayName": "Elemental Hoverboard", + "Icon": "rbxassetid://101555005426126", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://127087646371704", + ], + "idle": [ + "rbxassetid://78875846999309", + ], + "jump": [ + "rbxassetid://104811511655918", + ], + }, }, - "configName": "Gym Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "90a0c8aa0a445c3a", + "configName": "Hoverboard | Elemental", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "567662257569b3b9", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Earned from scoring points in the Muscle Race! Chance for a HUGE!", - "DisplayName": "Buff Gym Gift", - "Icon": "rbxassetid://111526967897666", + "Desc": "Found in the Pumpkin Gift!", + "DisplayName": "Pumpkin Cat Hoverboard", + "Icon": "rbxassetid://92900937122832", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://71928776553803", + ], + "idle": [ + "rbxassetid://95108682670473", + ], + "jump": [ + "rbxassetid://82122552299009", + ], + }, }, - "configName": "Buff Gym Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "227017f50b5a9a5b", + "configName": "Hoverboard | Pumpkin Cat", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "36af1d6f58cd430c", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Obtained during the Summer Block Party Event!", - "DisplayName": "Sun Angelus Gift", - "Icon": "rbxassetid://93164862857884", + "Desc": "Found in the Spider Pack!", + "DisplayName": "Web Hoverboard", + "Icon": "rbxassetid://76504501851707", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://100828934639695", + ], + "idle": [ + "rbxassetid://81170050373448", + ], + "jump": [ + "rbxassetid://73955618282141", + ], + }, }, - "configName": "Sun Angelus Gift", - "dateCreated": "2025-07-12T16:08:43.349Z", - "dateModified": "2025-07-19T17:28:54.110Z", - "hashShort": "e1137cd8d4e047f7", + "configName": "Hoverboard | Web", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "85266ca8ea9e1d49", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Made from combining Tropical Flowers. Chance for a HUGE!", - "DisplayName": "Tropical Gift", - "Icon": "rbxassetid://102925568846507", + "Desc": "Obtained from the Halloween 2024 Quests!", + "DisplayName": "Vampire Bat Hoverboard", + "Icon": "rbxassetid://111125773128350", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://136004587128798", + ], + "idle": [ + "rbxassetid://100081183731600", + ], + "jump": [ + "rbxassetid://82874763227894", + ], + }, }, - "configName": "Tropical Gift", - "dateCreated": "2025-07-12T16:08:43.356Z", - "dateModified": "2025-07-12T16:08:43.356Z", - "hashShort": "12bc67dde9620967", + "configName": "Hoverboard | Vampire Bat", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "203a043df425389d", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "itsy bitsy spider climbed up the bag again!", - "DisplayName": "Spider Gift", - "Icon": "rbxassetid://126429650694857", + "Desc": "Found in the Candy Corn Gift!", + "DisplayName": "Witch Cat Hoverboard", + "Icon": "rbxassetid://103768732773689", + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + "Sounds": { + "equip": [ + "rbxassetid://124186610783745", + ], + "idle": [ + "rbxassetid://125636908316423", + ], + "jump": [ + "rbxassetid://100081183731600", + ], + }, + }, + "configName": "Hoverboard | Witch Cat", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "0ecf6090f86c9edc", + }, + { + "category": "Hoverboards", + "collection": "Hoverboards", + "configData": { + "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Ghost Clan Battle!", + "DisplayName": "Ghost Hoverboard", + "Icon": "rbxassetid://135978414574016", "Rarity": { "Announce": true, "Color": null, @@ -58227,72 +61714,106 @@ Combine cards into EXCLUSIVE pets & chance for a TITANIC card!", "_id": "Exotic", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://124083915816008", + ], + "idle": [ + "rbxassetid://74603654873510", + ], + "jump": [ + "rbxassetid://118563623791477", + ], + }, }, - "configName": "Spider Gift", - "dateCreated": "2025-10-18T17:03:25.431Z", - "dateModified": "2025-10-18T17:03:25.431Z", - "hashShort": "293ce1f823b4dacc", + "configName": "Hoverboard | Ghost", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "4e4f38ef16acf3be", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Earned during Admin Abuse for the Halloween Event! Chance for a HUGE or TITANIC!", - "DisplayName": "Halloween Lucky Block Gift", - "Icon": "rbxassetid://96953600545455", + "Desc": "Summon the force! Spawns with a random color!", + "DisplayName": "Forcefield Hoverboard", + "Icon": "rbxassetid://127428987246427", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "RequireSave": true, + "Setup": null, + "Sounds": { + "equip": [ + "rbxassetid://79278574468993", + ], + "idle": [ + "rbxassetid://78924798235258", + ], + "jump": [ + "rbxassetid://105220130736381", + ], + }, }, - "configName": "Halloween Lucky Block Gift", - "dateCreated": "2025-10-18T17:03:25.446Z", - "dateModified": "2025-11-22T17:15:27.078Z", - "hashShort": "746b032fec7225b3", + "configName": "Hoverboard | Forcefield", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "91acd2c12e065f17", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Thank you Santa!", - "DisplayName": "Santa Gift", - "Icon": "rbxassetid://131570987085851", + "CanBeShiny": true, + "Desc": "Pencil with #2 lead", + "DisplayName": "Pencil Hoverboard", + "Icon": "rbxassetid://113564669329061", "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "RequireSave": true, + "ShinyParticleScale": 1, + "Sounds": { + "equip": [ + "rbxassetid://101976494467819", + ], + "idle": [ + "rbxassetid://76572833155615", + ], + "jump": [ + "rbxassetid://123743368170016", + ], + }, + "Tradable": true, }, - "configName": "Santa Gift", - "dateCreated": "2025-12-20T17:55:27.512Z", - "dateModified": "2025-12-20T17:55:27.512Z", - "hashShort": "23df0060f3e34a7f", + "configName": "Hoverboard | Pencil", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "61bc1826ef18ad04", }, { - "category": "Lootboxes", - "collection": "Lootboxes", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Sugary and minty fresh!", - "DisplayName": "Candycane Gift", - "Icon": "rbxassetid://129255617416340", + "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Blimp Dragon Clan Battle!", + "DisplayName": "Blimp Dragon Hoverboard", + "Icon": "rbxassetid://96120997011987", "Rarity": { "Announce": true, "Color": null, @@ -58305,2435 +61826,1310 @@ Combine cards into EXCLUSIVE pets & chance for a TITANIC card!", "_id": "Exotic", "_script": null, }, - "RequireSave": true, + "Sounds": { + "equip": [ + "rbxassetid://96881191425969", + ], + "idle": [ + "rbxassetid://123430710794227", + ], + "jump": [ + "rbxassetid://127804007844699", + ], + }, + "Tradable": true, }, - "configName": "Candycane Gift", - "dateCreated": "2025-12-20T17:55:27.528Z", - "dateModified": "2025-12-20T17:55:27.528Z", - "hashShort": "b6423fb591e122de", + "configName": "Hoverboard | Blimp Dragon", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "174c604be9945cc5", }, - ], - "status": "ok", -} -`; - -exports[`Pet Simulator Public Live API Test Mastery shape 1`] = ` -{ - "data": [ { - "category": "Mastery", - "collection": "Mastery", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Gain XP by purchasing items through Vending Machines, Merchants, etc.", - "FFlag": "Mastery_Economy", - "Icon": "rbxassetid://15092229110", - "Name": "Economy", - "Perks": { - "AccidentalVending": [ - { - "Level": 80, - "Text": "Vending Machines have a 20% chance to give double items", - "Title": "Accidental Vending", - }, - ], - "AutoVending": [ - { - "Level": 99, - "Text": "Automatically buys Vending Machines that cost coins", - "Title": "Auto Vending", - }, - ], - "BetterDeals": [ - { - "Level": 50, - "Power": 2, - "Text": "2x Merchant luck odds", - "Title": "Better Offers", - }, + "CanBeShiny": true, + "Desc": "Scrrrrrrrr! Scrrrrrrrr!", + "DisplayName": "Electric Guitar Hoverboard", + "Icon": "rbxassetid://105994679046982", + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "ShinyParticleScale": 1, + "Sounds": { + "equip": [ + "rbxassetid://131035418972504", ], - "BuyFullVendingStock": [ - { - "Level": 10, - "Text": "Option to buy entire Vending Machine stock", - "Title": "Max Vending", - }, + "idle": [ + "rbxassetid://85855123674398", ], - "CheaperMerchants": [ - { - "Level": 30, - "Power": 15, - "Text": "-15% Merchant prices", - "Title": "Cheaper Merchants I", - }, - { - "Level": 80, - "Power": 30, - "Text": "-30% Merchant prices", - "Title": "Cheaper Merchants II", - }, - { - "Level": 99, - "Power": 50, - "Text": "-50% Merchant prices", - "Title": "Cheaper Merchants III", - }, + "jump": [ + "rbxassetid://138013621005610", ], - "CheaperVending": [ - { - "Level": 20, - "Power": 15, - "Text": "-15% Vending Machine prices", - "Title": "Cheaper Vending I", - }, - { - "Level": 70, - "Power": 30, - "Text": "-30% Vending Machine prices", - "Title": "Cheaper Vending II", - }, - { - "Level": 90, - "Power": 50, - "Text": "-50% Vending Machine prices", - "Title": "Cheaper Vending III", - }, + }, + "Tradable": true, + }, + "configName": "Hoverboard | Electric Guitar", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "5b2469f4dba9919d", + }, + { + "category": "Hoverboards", + "collection": "Hoverboards", + "configData": { + "Desc": "little paw prints", + "DisplayName": "Paw Print Hoverboard", + "Icon": "rbxassetid://91290351020499", + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + "Sounds": { + "equip": [ + "rbxassetid://121365445530549", ], - "FasterMerchants": [ - { - "Level": 50, - "Power": 1.5, - "Text": "1.5x Merchant restock speed", - "Title": "Faster Merchants I", - }, - { - "Level": 90, - "Power": 3, - "Text": "3x Merchant restock speed", - "Title": "Faster Merchants II", - }, + "idle": [ + "rbxassetid://85002799749705", ], - "FasterVending": [ - { - "Level": 40, - "Power": 1.5, - "Text": "1.5x Vending Machine restock speed", - "Title": "Faster Vending I", - }, - { - "Level": 90, - "Power": 3, - "Text": "3x Vending Machine restock speed", - "Title": "Faster Vending II", - }, + "jump": [ + "rbxassetid://138778146730896", ], - "FreeVending": [ - { - "Level": 99, - "Text": "Vending Machines that cost coins are FREE", - "Title": "Free Vending", - }, + }, + "Tradable": true, + }, + "configName": "Hoverboard | Paw Print", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "4d958a6a68a4cc5c", + }, + { + "category": "Hoverboards", + "collection": "Hoverboards", + "configData": { + "Animation": 2506281703, + "BlockcastScale": 0, + "BobRate": 0, + "CanBeShiny": true, + "Desc": "MOVE OUT THE WAY!", + "DisplayName": "Tank", + "HoverHeight": 0.23, + "Icon": "rbxassetid://137082519504492", + "IdlePitchScale": 0, + "IdleVolume": 2, + "IdleVolumeSpeedScale": 0, + "MaxRoll": 0, + "PitchScale": 0, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "RotationLimit": { + "m": null, + "t": "numeric", + "v": "inf", + }, + "ShinyParticleScale": 1, + "SkateMode": true, + "Sounds": { + "equip": [ + "rbxassetid://82426788617363", ], - "MasteryCape": [ - { - "Level": 99, - "Text": "Awarded for reaching level 99 Mastery!", - "Title": "Mastery Cape", - }, + "idle": [ + "rbxassetid://72506916075753", ], - "MoreVending": [ - { - "Level": 60, - "Power": 1, - "Text": "+1 Vending Machine global stock", - "Title": "More Vending I", - }, - { - "Level": 90, - "Power": 2, - "Text": "+2 Vending Machine global stock", - "Title": "More Vending II", - }, + "jump": [ + "rbxassetid://126321633237733", ], }, + "Tradable": true, }, - "configName": "Mastery | Economy", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.718Z", - "hashShort": "47a17da6240159e2", + "configName": "Hoverboard | Tank", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2026-04-18T15:56:47.233Z", + "hashShort": "c3be114369cef88f", }, { - "category": "Mastery", - "collection": "Mastery", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Gain XP by destroying breakables!", - "FFlag": "Mastery_Breakables", - "Icon": "rbxassetid://15092228198", - "Name": "Breakables", - "Perks": { - "BetterLoot": [ - { - "Level": 20, - "Power": 10, - "Text": "+10% better loot from breakables", - "Title": "Better Loot I", - }, - { - "Level": 50, - "Power": 20, - "Text": "+20% better loot from breakables", - "Title": "Better Loot II", - }, - { - "Level": 90, - "Power": 30, - "Text": "+30% better loot from breakables", - "Title": "Better Loot III", - }, - ], - "BreakableRespawnRate": [ - { - "Level": 30, - "Power": 25, - "Text": "+25% breakable respawn speed", - "Title": "Respawn I", - }, - { - "Level": 80, - "Power": 50, - "Text": "+50% breakable respawn speed", - "Title": "Respawn II", - }, - { - "Level": 99, - "Power": 100, - "Text": "+100% breakable respawn speed", - "Title": "Respawn III", - }, - ], - "FlagDuration": [ - { - "Level": 90, - "Power": 1.5, - "Text": "1.5x flag duration", - "Title": "Flag Duration I", - }, - { - "Level": 99, - "Power": 2, - "Text": "2x flag duration", - "Title": "Flag Duration II", - }, + "Desc": "What do these little lines mean?!", + "DisplayName": "Ruler Hoverboard", + "Icon": "rbxassetid://79346248252472", + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + "Sounds": { + "equip": [ + "rbxassetid://138025106053581", ], - "FlagSlots": [ - { - "Level": 10, - "Power": 6, - "Text": "+6 flag slots (up to 30 stacked)", - "Title": "Flag Slots I", - }, - { - "Level": 60, - "Power": 11, - "Text": "+11 flag slots (up to 35 stacked)", - "Title": "Flag Slots II", - }, - { - "Level": 80, - "Power": 16, - "Text": "+16 flag slots (up to 40 stacked)", - "Title": "Flag Slots III", - }, - { - "Level": 99, - "Power": 21, - "Text": "+21 flag slots (up to 45 stacked)", - "Title": "Flag Slots IV", - }, + "idle": [ + "rbxassetid://121746924468436", ], - "GoldBreakables": [ - { - "Level": 60, - "Power": 5, - "Text": "2% chance your pets turn breakables gold", - "Title": "Golden Breakables I", - }, - { - "Level": 90, - "Power": 10, - "Text": "5% chance your pets turn breakables gold", - "Title": "Golden Breakables II", - }, + "jump": [ + "rbxassetid://93268074832189", ], - "MasteryCape": [ - { - "Level": 99, - "Text": "Awarded for reaching level 99 Mastery!", - "Title": "Mastery Cape", - }, + }, + "Tradable": true, + }, + "configName": "Hoverboard | Ruler", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "a5784536994e9926", + }, + { + "category": "Hoverboards", + "collection": "Hoverboards", + "configData": { + "Desc": "Can you eat crayons?", + "DisplayName": "Crayon Hoverboard", + "Icon": "rbxassetid://84133962454080", + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + "Sounds": [], + "Tradable": true, + }, + "configName": "Hoverboard | Crayon", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "2320119f7877e395", + }, + { + "category": "Hoverboards", + "collection": "Hoverboards", + "configData": { + "Desc": "leave 'em in the .. 🍂🍁🌿🍃 leaves", + "DisplayName": "Autumn Hoverboard", + "Icon": "rbxassetid://126077829420151", + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + "Sounds": { + "equip": [ + "rbxassetid://136716577098237", ], - "MiniChestLoot": [ - { - "Level": 20, - "Power": 2, - "Text": "2x loot from mini-chests", - "Title": "Mini-Chest Loot I", - }, - { - "Level": 70, - "Power": 3, - "Text": "3x loot from mini-chests", - "Title": "Mini-Chest Loot II", - }, - { - "Level": 99, - "Power": 5, - "Text": "5x loot from mini-chests", - "Title": "Mini-Chest Loot III", - }, + "idle": [ + "rbxassetid://95738605773569", ], - "MiniChestOdds": [ - { - "Level": 40, - "Power": 10, - "Text": "+10% chance for mini-chests to spawn", - "Title": "Mini-Chest Odds I", - }, - { - "Level": 70, - "Power": 30, - "Text": "+30% chance for mini-chests to spawn", - "Title": "Mini-Chest Odds II", - }, - { - "Level": 99, - "Power": 50, - "Text": "+50% chance for mini-chests to spawn", - "Title": "Mini-Chest Odds III", - }, + "jump": [ + "rbxassetid://80848245318072", ], }, }, - "configName": "Mastery | Breakables", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.713Z", - "hashShort": "e395cbd20b16078c", + "configName": "Hoverboard | Autumn", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "3fd1d403d2f6d612", }, { - "category": "Mastery", - "collection": "Mastery", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "TODO", - "FFlag": "Mastery_Eggs", - "Icon": "rbxassetid://15057348341", - "Name": "Eggs", - "Perks": { - "CheaperEggs": [ - { - "Level": 20, - "Power": 10, - "Text": "10% cheaper eggs", - "Title": "Cheaper Eggs I", - }, - { - "Level": 70, - "Power": 20, - "Text": "20% cheaper eggs", - "Title": "Cheaper Eggs II", - }, - { - "Level": 99, - "Power": 30, - "Text": "30% cheaper eggs", - "Title": "Cheaper Eggs III", - }, + "Desc": "Gotta go! gobble gobble!", + "DisplayName": "Turkey Hoverboard", + "Icon": "rbxassetid://104956378883955", + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + "Sounds": { + "equip": [ + "rbxassetid://91039191206603", ], - "ExtraEggs": [ - { - "Level": 40, - "Power": 1, - "Text": "+1 bonus egg slot", - "Title": "Extra Eggs I", - }, - { - "Level": 60, - "Power": 2, - "Text": "+2 bonus egg slots", - "Title": "Extra Eggs II", - }, - { - "Level": 90, - "Power": 3, - "Text": "+3 bonus egg slots", - "Title": "Extra Eggs III", - }, - { - "Level": 99, - "Power": 5, - "Text": "+5 bonus egg slots", - "Title": "Extra Eggs IV", - }, + "idle": [ + "rbxassetid://70791748470343", ], - "FasterOpen": [ - { - "Level": 10, - "Power": 20, - "Text": "+20% hatch animation speed", - "Title": "Faster Hatching I", - }, - { - "Level": 50, - "Power": 35, - "Text": "+35% hatch animation speed", - "Title": "Faster Hatching II", - }, - { - "Level": 90, - "Power": 50, - "Text": "+50% hatch animation speed", - "Title": "Faster Hatching III", - }, + "jump": [ + "rbxassetid://78855054093855", ], - "GoldenEggs": [ - { - "Level": 30, - "Power": 3, - "Text": "+3% chance to hatch golden pets", - "Title": "Golden Eggs I", - }, + }, + }, + "configName": "Hoverboard | Turkey", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "91565b34b08bb101", + }, + { + "category": "Hoverboards", + "collection": "Hoverboards", + "configData": { + "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Bee Clan Battle!", + "DisplayName": "Bee Hoverboard", + "Icon": "rbxassetid://14910770233", + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "Sounds": { + "equip": [ + "rbxassetid://100681568572549", ], - "MasteryCape": [ - { - "Level": 99, - "Text": "Awarded for reaching level 99 Mastery!", - "Title": "Mastery Cape", - }, + "idle": [ + "rbxassetid://89224538861170", ], - "RainbowEggs": [ - { - "Level": 80, - "Power": 1, - "Text": "+1% chance to hatch rainbow pets", - "Title": "Rainbow Eggs I", - }, + "jump": [ + "rbxassetid://139295889146218", ], }, }, - "configName": "Mastery | Eggs", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.714Z", - "hashShort": "292341da8da8131e", + "configName": "Hoverboard | Bee", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "61ecacfdadd5facb", }, { - "category": "Mastery", - "collection": "Mastery", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Gain XP by upgrading & consuming potions!", - "FFlag": "Mastery_Potions", - "Icon": "rbxassetid://15057347575", - "Name": "Potions", - "Perks": { - "AutoClaim": [ - { - "Level": 70, - "Text": "Automatically claim free potions around the map", - "Title": "Instant Collection", - }, + "Desc": "I think it's snowing!", + "DisplayName": "Snowflake Hoverboard", + "Icon": "rbxassetid://75218651967088", + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + "Sounds": { + "equip": [ + "rbxassetid://77324129249222", ], - "BetterCrafting": [ - { - "Level": 60, - "Power": 1, - "Text": "-1 potion required for upgrade", - "Title": "Better Crafting I", - }, + "idle": [ + "rbxassetid://93315821528363", ], - "BulkConsume": [ - { - "Level": 50, - "Text": "Ability to drink multiple potions at once", - "Title": "Bulk Consumption", - }, + "jump": [ + "rbxassetid://81787959541508", ], - "BulkCrafting": [ - { - "Level": 99, - "Text": "Upgrade multiple potion types at once", - "Title": "Bulk Crafting", - }, + }, + }, + "configName": "Hoverboard | Snowflake", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "50a0fbf72ff4b4da", + }, + { + "category": "Hoverboards", + "collection": "Hoverboards", + "configData": { + "Desc": "Sweeeeeet I love candy canes!", + "DisplayName": "Candy Cane Hoverboard", + "Icon": "rbxassetid://74381927537414", + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + "Sounds": { + "equip": [ + "rbxassetid://108000256742283", ], - "CheaperPotions": [ - { - "Level": 30, - "Power": 15, - "Text": "-15% potion upgrade cost", - "Title": "Cheaper Potions I", - }, - { - "Level": 50, - "Power": 30, - "Text": "-30% potion upgrade cost", - "Title": "Cheaper Potions II", - }, - { - "Level": 90, - "Power": 50, - "Text": "-50% potion upgrade cost", - "Title": "Cheaper Potions III", - }, + "idle": [ + "rbxassetid://135371599615340", ], - "FasterCrafting": [ - { - "Level": 10, - "Power": 2, - "Text": "2x potion upgrading animation speed", - "Title": "Faster Crafting", - }, + "jump": [ + "rbxassetid://100894417890087", ], - "LongerPotions": [ - { - "Level": 20, - "Power": 1.1, - "Text": "1.1x potion duration", - "Title": "Longer Potions I", - }, - { - "Level": 40, - "Power": 1.2, - "Text": "1.2x potion duration", - "Title": "Longer Potions II", - }, - { - "Level": 90, - "Power": 1.5, - "Text": "1.5x potion duration", - "Title": "Longer Potions III", - }, - { - "Level": 99, - "Power": 2, - "Text": "2x potion duration", - "Title": "Longer Potions IV", - }, + }, + }, + "configName": "Hoverboard | Candy Cane", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "b3727e05b225eaa7", + }, + { + "category": "Hoverboards", + "collection": "Hoverboards", + "configData": { + "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Gingerbread Clan Battle!", + "DisplayName": "Gingerbread Hoverboard", + "Icon": "rbxassetid://118516797186175", + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "Sounds": { + "equip": [ + "rbxassetid://116171088883033", ], - "MagicPotion": [ - { - "Level": 80, - "Text": "Drinking a Tier I potion gives you the effects of a Tier II potion", - "Title": "Magic Potions", - }, + "idle": [ + "rbxassetid://129855673388630", ], - "MasteryCape": [ - { - "Level": 99, - "Text": "Awarded for reaching level 99 Mastery!", - "Title": "Mastery Cape", - }, + "jump": [ + "rbxassetid://78705373207967", ], - "SupremePotions": [ - { - "Level": 90, - "Power": 10, - "Text": "10% chance when drinking a potion to get a free tier upgrade", - "Title": "Supreme Potions", - }, - ], - "TierElevenCrafting": [ - { - "Level": 90, - "Text": "Ability to craft Tier XI potions", - "Title": "Tier XI Crafting", - }, + }, + }, + "configName": "Hoverboard | Gingerbread", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "cbfefb3ca01be9fa", + }, + { + "category": "Hoverboards", + "collection": "Hoverboards", + "configData": { + "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Diamond Clan Battle!", + "DisplayName": "Diamond Hoverboard", + "Icon": "rbxassetid://14910757305", + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "Sounds": [], + }, + "configName": "Hoverboard | Diamond", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "0e4419565a186f25", + }, + { + "category": "Hoverboards", + "collection": "Hoverboards", + "configData": { + "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Blurred Clan Battle!", + "DisplayName": "Blurred Hoverboard", + "Icon": "rbxassetid://134893611907484", + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "Sounds": { + "equip": [ + "rbxassetid://97821521708749", ], - "TierElevenDrinking": [ - { - "Level": 70, - "Text": "Ability to drink Tier XI potions", - "Title": "Tier XI Consumption", - }, + "idle": [ + "rbxassetid://72187750834667", ], - "TierNineCrafting": [ - { - "Level": 70, - "Text": "Ability to craft Tier IX potions", - "Title": "Tier IX Crafting", - }, + "jump": [ + "rbxassetid://79426796657551", ], - "TierNineDrinking": [ - { - "Level": 50, - "Text": "Ability to drink Tier IX potions", - "Title": "Tier IX Consumption", - }, + }, + }, + "configName": "Hoverboard | Blurred", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "86b0a4c405b3aece", + }, + { + "category": "Hoverboards", + "collection": "Hoverboards", + "configData": { + "Desc": "⚔️ Rewarded to the top 10 clans in the 2025 Wyvern Clan Battle!", + "DisplayName": "Wyvern of Hades Hoverboard", + "Icon": "rbxassetid://103080624006267", + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "Sounds": { + "equip": [ + "rbxassetid://88131588316412", ], - "TierTenCrafting": [ - { - "Level": 80, - "Text": "Ability to craft Tier X potions", - "Title": "Tier X Crafting", - }, + "idle": [ + "rbxassetid://103319341107005", ], - "TierTenDrinking": [ - { - "Level": 60, - "Text": "Ability to drink Tier X potions", - "Title": "Tier X Consumption", - }, + "jump": [ + "rbxassetid://103280125080397", ], }, }, - "configName": "Mastery | Potions", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.718Z", - "hashShort": "2b37824ea2bbbbfb", + "configName": "Hoverboard | Wyvern of Hades", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2026-04-25T17:31:35.823Z", + "hashShort": "98c43fdaa5510887", }, { - "category": "Mastery", - "collection": "Mastery", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Gain XP by upgrading potions!", - "FFlag": "Mastery_Enchants", - "Icon": "rbxassetid://15057348192", - "Name": "Enchants", - "Perks": { - "AutoClaim": [ - { - "Level": 70, - "Text": "Automatically claim free enchants around the map", - "Title": "Instant Collection", - }, - ], - "BetterCrafting": [ - { - "Level": 60, - "Power": 1, - "Text": "-1 enchant required for upgrade", - "Title": "Better Crafting I", - }, - { - "Level": 90, - "Power": 2, - "Text": "-2 enchant required for upgrade", - "Title": "Better Crafting II", - }, - ], - "BulkCrafting": [ - { - "Level": 99, - "Text": "Upgrade multiple enchant types at once", - "Title": "Bulk Crafting", - }, + "Desc": "Red light, green light!", + "DisplayName": "Pet Games Hoverboard", + "Icon": "rbxassetid://118257511137876", + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + "Sounds": { + "equip": [ + "rbxassetid://135483925138466", ], - "CheaperEnchants": [ - { - "Level": 30, - "Power": 15, - "Text": "-15% enchant upgrade cost", - "Title": "Cheaper Enchants I", - }, - { - "Level": 50, - "Power": 30, - "Text": "-30% enchant upgrade cost", - "Title": "Cheaper Enchants II", - }, - { - "Level": 90, - "Power": 50, - "Text": "-50% enchant upgrade cost", - "Title": "Cheaper Enchants III", - }, + "idle": [ + "rbxassetid://84635980017066", ], - "FasterCrafting": [ - { - "Level": 10, - "Power": 2, - "Text": "2x enchant upgrading animation speed", - "Title": "Faster Crafting", - }, + "jump": [ + "rbxassetid://122827411778557", ], - "MasteryCape": [ - { - "Level": 99, - "Text": "Awarded for reaching level 99 Mastery!", - "Title": "Mastery Cape", - }, + }, + }, + "configName": "Hoverboard | Pet Games", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "62476a89328140b0", + }, + { + "category": "Hoverboards", + "collection": "Hoverboards", + "configData": { + "Desc": "⚔️ Rewarded to the top 10 clans in the 2025 Mushroom Clan Battle!", + "DisplayName": "Mushroom Hoverboard", + "Icon": "rbxassetid://73437399037786", + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "Sounds": { + "equip": [ + "rbxassetid://122141340476698", ], - "Power": [ - { - "Level": 90, - "Power": 15, - "Text": "+15% power from enchants", - "Title": "Power I", - }, - { - "Level": 99, - "Power": 25, - "Text": "+25% power from enchants", - "Title": "Power II", - }, + "idle": [ + "rbxassetid://135390777126369", ], - "SupremeEnchants": [ - { - "Level": 80, - "Text": "Upgrading an enchant has a 10% chance to automatically be the next tier up", - "Title": "Supreme Enchants", - }, + "jump": [ + "rbxassetid://121841509916595", ], - "TierEightCrafting": [ - { - "Level": 70, - "Text": "Ability to craft Tier VIII enchants", - "Title": "Tier VIII Crafting", - }, + }, + }, + "configName": "Hoverboard | Mushroom", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "5ac97257f3c2beb0", + }, + { + "category": "Hoverboards", + "collection": "Hoverboards", + "configData": { + "Desc": "🔥 Blaze away and leave 'em in flames! 🔥", + "DisplayName": "Hellfire Hoverboard", + "Icon": "rbxassetid://133315600460960", + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + "Sounds": { + "equip": [ + "rbxassetid://118557230795776", ], - "TierEightEquip": [ - { - "Level": 50, - "Text": "Ability to equip Tier VIII enchants", - "Title": "Tier VIII Usage", - }, + "idle": [ + "rbxassetid://76805929032229", ], - "TierNineCrafting": [ - { - "Level": 80, - "Text": "Ability to craft Tier IX enchants", - "Title": "Tier IX Crafting", - }, + "jump": [ + "rbxassetid://79212298752857", ], - "TierNineEquip": [ - { - "Level": 60, - "Text": "Ability to equip Tier IX enchants", - "Title": "Tier IX Usage", - }, + }, + }, + "configName": "Hoverboard | Hellfire", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "1a2ab6dbf227f262", + }, + { + "category": "Hoverboards", + "collection": "Hoverboards", + "configData": { + "Desc": "⚔️ Rewarded to the top 10 clans in the 2025 Holographic Clan Battle!", + "DisplayName": "Holographic Hoverboard", + "Icon": "rbxassetid://103941046192500", + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "Sounds": { + "equip": [ + "rbxassetid://70457754737744", ], - "TierTenCrafting": [ - { - "Level": 90, - "Text": "Ability to craft Tier X enchants", - "Title": "Tier X Crafting", - }, + "idle": [ + "rbxassetid://94336915565161", ], - "TierTenEquip": [ - { - "Level": 70, - "Text": "Ability to equip Tier X enchants", - "Title": "Tier X Usage", - }, + "jump": [ + "rbxassetid://124935760573286", ], }, }, - "configName": "Mastery | Enchants", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.707Z", - "hashShort": "bbb90871ce25fe0c", + "configName": "Hoverboard | Holographic", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "b8a1b3c46ad95d19", }, { - "category": "Mastery", - "collection": "Mastery", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Gain XP by golding, rainbowing, fusing & putting pets in Daycare!", - "FFlag": "Mastery_Pets", - "Icon": "rbxassetid://15057347827", - "Name": "Pets", - "Perks": { - "DaycareDiamonds": [ - { - "Level": 90, - "Power": 1.5, - "Text": "1.5x diamond loot from Daycare", - "Title": "Daycare Diamonds I", - }, - { - "Level": 99, - "Power": 2, - "Text": "2x diamond loot from Daycare", - "Title": "Daycare Diamonds II", - }, + "Desc": "💕 Glide through love at the speed of heart!", + "DisplayName": "Valentine's Hoverboard", + "Icon": "rbxassetid://115773151085992", + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + "Sounds": { + "equip": [ + "rbxassetid://127663878790269", ], - "DaycareSpeed": [ - { - "Level": 40, - "Power": 1.25, - "Text": "1.25x Daycare speed", - "Title": "Daycare Speed I", - }, - { - "Level": 90, - "Power": 1.5, - "Text": "1.5x Daycare speed", - "Title": "Daycare Speed II", - }, - { - "Level": 99, - "Power": 2, - "Text": "2x Daycare speed", - "Title": "Daycare Speed III", - }, + "idle": [ + "rbxassetid://124945513461027", ], - "FuseAnimationSpeed": [ - { - "Level": 10, - "Power": 2, - "Text": "2x Fuse Machine animation speed (stacks)", - "Title": "Fuse Animation I", - }, + "jump": [ + "rbxassetid://104613779716544", ], - "GoldAnimationSpeed": [ - { - "Level": 10, - "Power": 2, - "Text": "2x Gold Machine animation speed", - "Title": "Gold Animation I", - }, + }, + }, + "configName": "Hoverboard | Valentines", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "45ad30baa2cdfc52", + }, + { + "category": "Hoverboards", + "collection": "Hoverboards", + "configData": { + "Desc": "⚔️ Rewarded to the top 10 clans in the 2025 Evil Clan Battle!", + "DisplayName": "Evil Hoverboard", + "Icon": "rbxassetid://83128724682991", + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "Sounds": { + "equip": [ + "rbxassetid://128510221263119", ], - "GoldHatching": [ - { - "Level": 30, - "Power": 1, - "Text": "+1% chance to hatch golden pets", - "Title": "Gold Hatching I", - }, - { - "Level": 90, - "Power": 2, - "Text": "+2% chance to hatch golden pets", - "Title": "Gold Hatching II", - }, + "idle": [ + "rbxassetid://93074453176674", ], - "GoldReduction": [ - { - "Level": 60, - "Power": 1, - "Text": "-1 pet required for Golding", - "Title": "Gold Reduction I", - }, - { - "Level": 99, - "Power": 2, - "Text": "-2 pets required for Golding", - "Title": "Gold Reduction II", - }, + "jump": [ + "rbxassetid://85489764060509", ], - "MasteryCape": [ - { - "Level": 99, - "Text": "Awarded for reaching level 99 Mastery!", - "Title": "Mastery Cape", - }, + }, + }, + "configName": "Hoverboard | Evil", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "90583087ed12250a", + }, + { + "category": "Hoverboards", + "collection": "Hoverboards", + "configData": { + "Desc": "Glide around and rip open some booster packs!", + "DisplayName": "Booster Hoverboard", + "Icon": "rbxassetid://139984973539698", + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "Sounds": { + "equip": [ + "rbxassetid://73745152005776", ], - "RainbowAnimationSpeed": [ - { - "Level": 20, - "Power": 2, - "Text": "2x Rainbow Machine animation speed", - "Title": "Rainbow Animation I", - }, + "idle": [ + "rbxassetid://77150957127083", ], - "RainbowHatching": [ - { - "Level": 50, - "Power": 0.5, - "Text": "+0.50% chance to hatch rainbow pets", - "Title": "Rainbow Hatching I", - }, - { - "Level": 99, - "Power": 1, - "Text": "+1% chance to hatch rainbow pets", - "Title": "Rainbow Hatching II", - }, + "jump": [ + "rbxassetid://89652934548669", ], - "RainbowReduction": [ - { - "Level": 90, - "Power": 1, - "Text": "-1 pet required for Rainbowing", - "Title": "Rainbow Reduction I", - }, - { - "Level": 99, - "Power": 2, - "Text": "-2 pets required for Rainbowing", - "Title": "Rainbow Reduction II", - }, + }, + }, + "configName": "Hoverboard | Booster", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "e295763641953e53", + }, + { + "category": "Hoverboards", + "collection": "Hoverboards", + "configData": { + "Desc": "⚔️ Rewarded to the top 10 clans in the 2025 Sphinx Clan Battle!", + "DisplayName": "Sphinx Hoverboard", + "Icon": "rbxassetid://104370511466864", + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "Sounds": { + "equip": [ + "rbxassetid://110508519240348", ], - "ShinyGolding": [ - { - "Level": 80, - "Power": 0.0005, - "Text": "Very small chance that Golding a pet makes it Shiny", - "Title": "Shiny Golding I", - }, + "idle": [ + "rbxassetid://85426351855572", ], - "ShinyRainbowing": [ - { - "Level": 70, - "Power": 0.00025, - "Text": "Very small chance that Rainbowing a pet makes it Shiny", - "Title": "Shiny Rainbowing I", - }, + "jump": [ + "rbxassetid://107953240205142", ], }, }, - "configName": "Mastery | Pets", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.710Z", - "hashShort": "ce1dbdbe532a713c", + "configName": "Hoverboard | Sphinx", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "11a13229f0d63dc8", }, { - "category": "Mastery", - "collection": "Mastery", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Gain XP by consuming & combining Fruit!", - "FFlag": "Mastery_Fruit", - "Icon": "rbxassetid://15092228779", - "Name": "Fruit", - "Perks": { - "AnimationSpeed": [ - { - "Level": 10, - "Power": 2, - "Text": "2x faster animation when upgrading", - "Title": "Animation Speed I", - }, - ], - "AutoEat": [ - { - "Level": 99, - "Text": "Automatically eat fruit in your inventory (toggleable)", - "Title": "Automatic Eating", - }, - ], - "AutoEatShinyFruit": [ - { - "Level": 99, - "Text": "Automatically eat shiny fruit in your inventory (toggleable)", - "Title": "Automatic Eating Shiny", - }, + "Desc": "⚔️ Rewarded to the top 10 clans in the 2025 Tie Dye Clan Battle!", + "DisplayName": "Tie Dye Hoverboard", + "Icon": "rbxassetid://81154668871970", + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "Sounds": { + "equip": [ + "rbxassetid://92910015066248", ], - "FruitBonus": [ - { - "Level": 90, - "Power": 25, - "Text": "Get bonus from 25 fruit instead of 20", - "Title": "Fruit Bonus I", - }, - { - "Level": 99, - "Power": 30, - "Text": "Get bonus from 30 fruit instead of 20", - "Title": "Fruit Bonus II", - }, + "idle": [ + "rbxassetid://140542402615167", ], - "FruitQueue": [ - { - "Level": 40, - "Power": 30, - "Text": "Queue up to 30 fruit at once", - "Title": "Fruit Queue I", - }, - { - "Level": 60, - "Power": 50, - "Text": "Queue up to 50 fruit at once", - "Title": "Fruit Queue II", - }, - { - "Level": 90, - "Power": 100, - "Text": "Queue up to 100 fruit at once", - "Title": "Fruit Queue II", - }, + "jump": [ + "rbxassetid://117148585999409", ], - "LessFruitRequired": [ - { - "Level": 30, - "Power": 3, - "Text": "-3 fruit required to upgrade to rainbow", - "Title": "Fruit Reduction I", - }, - { - "Level": 70, - "Power": 6, - "Text": "-6 fruit required to upgrade to rainbow", - "Title": "Fruit Reduction II", - }, - { - "Level": 99, - "Power": 10, - "Text": "-10 fruit required to upgrade to rainbow", - "Title": "Fruit Reduction III", - }, + }, + }, + "configName": "Hoverboard | Tie Dye", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "3f7a77ae70fbdef1", + }, + { + "category": "Hoverboards", + "collection": "Hoverboards", + "configData": { + "Desc": "jelly jelly jelly!", + "DisplayName": "Jelly Hoverboard", + "Icon": "rbxassetid://72590702374703", + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "Sounds": { + "equip": [ + "rbxassetid://102234210822621", ], - "LongerFruit": [ - { - "Level": 20, - "Power": 10, - "Text": "10% longer lasting fruit", - "Title": "Longer Fruit I", - }, - { - "Level": 50, - "Power": 20, - "Text": "20% longer lasting fruit", - "Title": "Longer Fruit II", - }, - { - "Level": 80, - "Power": 40, - "Text": "40% longer lasting fruit", - "Title": "Longer Fruit II", - }, + "idle": [ + "rbxassetid://95693237363544", ], - "MasteryCape": [ - { - "Level": 99, - "Text": "Awarded for reaching level 99 Mastery!", - "Title": "Mastery Cape", - }, + "jump": [ + "rbxassetid://135199956009241", ], }, - "ToggleablePerks": { - "AutoEat": true, - "AutoEatShinyFruit": true, + "Tradable": true, + }, + "configName": "Hoverboard | Jelly", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "2b72dc582ccc4c07", + }, + { + "category": "Hoverboards", + "collection": "Hoverboards", + "configData": { + "Desc": "Hop through the areas like a bunny!", + "DisplayName": "Easter Bunny Hoverboard", + "Icon": "rbxassetid://14910757187", + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, }, + "Sounds": [], }, - "configName": "Mastery | Fruit", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.721Z", - "hashShort": "a4cff90a8a22a883", + "configName": "Hoverboard | Easter Bunny", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "763173ec63646033", }, { - "category": "Mastery", - "collection": "Mastery", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Gain XP by fishing!", - "FFlag": "Mastery_Fishing", - "Icon": "rbxassetid://16717409986", - "Name": "Fishing", - "Perks": { - "BiggerBobber": [ - { - "Level": 60, - "Power": 10, - "Text": "Your bobber is much larger, attracting 10% better loot", - "Title": "Bigger Bobber", - }, - ], - "DeepPoolLoot": [ - { - "Level": 40, - "Power": 10, - "Text": "+10% chance to catch a Huge Pet from Deep Pools", - "Title": "Deep Loot I", - }, - { - "Level": 80, - "Power": 20, - "Text": "+20% chance to catch a Huge Pet from Deep Pools", - "Title": "Deep Loot II", - }, - { - "Level": 90, - "Power": 30, - "Text": "+30% chance to catch a Huge Pet from Deep Pools", - "Title": "Deep Loot III", - }, - { - "Level": 99, - "Power": 50, - "Text": "+50% chance to catch a Huge Pet from Deep Pools", - "Title": "Deep Loot IV", - }, + "Desc": "Earned from finding all eggs in the 2025 Easter Egg Hunt!", + "DisplayName": "Unicorn Hoverboard", + "Icon": "rbxassetid://15280245261", + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + "Sounds": { + "equip": [ + "rbxassetid://107374325583389", ], - "DeepPools": [ - { - "Level": 30, - "Text": "Ability to fish from Deep Pools", - "Title": "Deep Pools", - }, + "idle": [ + "rbxassetid://77295298543906", ], - "FasterCasting": [ - { - "Level": 10, - "Power": 25, - "Text": "+25% cast speed", - "Title": "Faster Casting I", - }, - { - "Level": 90, - "Power": 50, - "Text": "+50% cast speed", - "Title": "Faster Casting II", - }, + "jump": [ + "rbxassetid://135284128870437", ], - "FasterCatching": [ - { - "Level": 20, - "Power": 10, - "Text": "+10% catch speed", - "Title": "Faster Catching I", - }, - { - "Level": 50, - "Power": 25, - "Text": "+25% catch speed", - "Title": "Faster Catching II", - }, - { - "Level": 90, - "Power": 40, - "Text": "+40% catch speed", - "Title": "Faster Catching II", - }, + }, + }, + "configName": "Hoverboard | Unicorn", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "8f61e7537821ee44", + }, + { + "category": "Hoverboards", + "collection": "Hoverboards", + "configData": { + "CanBeShiny": true, + "Desc": "Foxy tails! Leaves hearts everywhere!", + "DisplayName": "Kitsune Hoverboard", + "Icon": "rbxassetid://112130842952181", + "ProductId": 3274118414, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "ShinyParticleScale": 1, + "Sounds": { + "equip": [ + "rbxassetid://100556532656806", ], - "MasteryCape": [ - { - "Level": 99, - "Text": "Awarded for reaching level 99 Mastery!", - "Title": "Mastery Cape", - }, + "idle": [ + "rbxassetid://109563056705789", ], - "RainbowRods": [ - { - "Level": 70, - "Power": 0.01, - "Text": "Small chance while fishing to temporarily make your rod rainbow, giving better & faster loot", - "Title": "Rainbow Rod I", - }, - { - "Level": 90, - "Power": 0.015, - "Text": "1.5x chance to convert your fishing rod to rainbow", - "Title": "Rainbow Rod II", - }, - { - "Level": 99, - "Power": 0.02, - "Text": "2x chance to convert your fishing rod to rainbow", - "Title": "Rainbow Rod III", - }, + "jump": [ + "rbxassetid://111026419646328", ], }, + "Tradable": true, }, - "configName": "Mastery | Fishing", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.708Z", - "hashShort": "80e782c3e75acf23", + "configName": "Hoverboard | Kitsune", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "9371229ebafe1e47", }, { - "category": "Mastery", - "collection": "Mastery", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Gain XP by digging!", - "FFlag": "Mastery_Digging", - "Icon": "rbxassetid://16848836284", - "Name": "Digging", - "Perks": { - "BetterDrops": [ - { - "Level": 10, - "Power": 10, - "Text": "+10% better drops from Digsite chests", - "Title": "Better Drops I", - }, - { - "Level": 40, - "Power": 20, - "Text": "+20% better drops from Digsite chests", - "Title": "Better Drops II", - }, - { - "Level": 90, - "Power": 30, - "Text": "+30% better drops from Digsite chests", - "Title": "Better Drops III", - }, - { - "Level": 99, - "Power": 50, - "Text": "+50% better drops from Digsite chests", - "Title": "Better Drops IV", - }, - ], - "HugeOdds": [ - { - "Level": 70, - "Power": 10, - "Text": "+10% chance to get a Huge Pet from the Mastery Chest", - "Title": "Huge Odds I", - }, - { - "Level": 90, - "Power": 25, - "Text": "+25% chance to get a Huge Pet from the Mastery Chest", - "Title": "Huge Odds II", - }, - { - "Level": 99, - "Power": 50, - "Text": "+50% chance to get a Huge Pet from the Mastery Chest", - "Title": "Huge Odds III", - }, - ], - "MasteryCape": [ - { - "Level": 99, - "Text": "Awarded for reaching level 99 Mastery!", - "Title": "Mastery Cape", - }, - ], - "MasteryChest": [ - { - "Level": 50, - "Text": "Ability to open the Mastery Chest found in the Advanced Digsite", - "Title": "Mastery Chest", - }, - ], - "MoreChests": [ - { - "Level": 30, - "Power": 15, - "Text": "+15% better odds to find a Digsite chest", - "Title": "More Chests I", - }, - { - "Level": 60, - "Power": 25, - "Text": "+25% better odds to find a Digsite chest", - "Title": "More Chests II", - }, - { - "Level": 90, - "Power": 40, - "Text": "+40% better odds to find a Digsite chest", - "Title": "More Chests III", - }, + "CanBeShiny": true, + "Desc": "Wrapped in shadows!", + "DisplayName": "Corrupt Hoverboard", + "Icon": "rbxassetid://97624181709908", + "ProductId": 3274118281, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "ShinyParticleScale": 1, + "Sounds": { + "equip": [ + "rbxassetid://104197801158374", ], - "MoreDiamonds": [ - { - "Level": 20, - "Power": 10, - "Text": "+10% more diamonds from Digsite chests", - "Title": "Diamonds I", - }, - { - "Level": 80, - "Power": 20, - "Text": "+20% more diamonds from Digsite chests", - "Title": "Diamonds II", - }, - { - "Level": 99, - "Power": 35, - "Text": "+35% more diamonds from Digsite chests", - "Title": "Diamonds III", - }, + "idle": [ + "rbxassetid://122206258152425", ], - "RainbowShovels": [ - { - "Level": 60, - "Power": 0.002, - "Text": "Small chance while digging to temporarily make your shovel rainbow, making it dig x2 faster", - "Title": "Rainbow Shovels I", - }, - { - "Level": 80, - "Power": 0.003, - "Text": "x1.50 chance to convert your shovel to rainbow", - "Title": "Rainbow Shovels II", - }, - { - "Level": 99, - "Power": 0.004, - "Text": "x2 chance to convert your shovel to rainbow", - "Title": "Rainbow Shovels III", - }, + "jump": [ + "rbxassetid://120305213255403", ], }, + "Tradable": true, }, - "configName": "Mastery | Digging", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.728Z", - "hashShort": "cd1fbfb48128ec10", + "configName": "Hoverboard | Corrupt", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "0f750ce16d79859e", }, { - "category": "Mastery", - "collection": "Mastery", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Gain XP by using & combining keys!", - "FFlag": "Mastery_Keys", - "Icon": "rbxassetid://16848872762", - "Name": "Keys", - "Perks": { - "BetterCrystal": [ - { - "Level": 30, - "Power": 10, - "Text": "+10% better loot from the Crystal Chest", - "Title": "Crystal Loot I", - }, - { - "Level": 80, - "Power": 15, - "Text": "+15% better loot from the Crystal Chest", - "Title": "Crystal Loot II", - }, - { - "Level": 99, - "Power": 25, - "Text": "+25% better loot from the Crystal Chest", - "Title": "Crystal Loot III", - }, - ], - "BetterFantasy": [ - { - "Level": 70, - "Power": 10, - "Text": "+10% better loot from the Fantasy Chest", - "Title": "Fantasy Loot I", - }, - { - "Level": 95, - "Power": 15, - "Text": "+15% better loot from the Fantasy Chest", - "Title": "Fantasy Loot II", - }, - { - "Level": 99, - "Power": 25, - "Text": "+25% better loot from the Fantasy Chest", - "Title": "Fantasy Loot III", - }, - ], - "BetterTech": [ - { - "Level": 50, - "Power": 10, - "Text": "+10% better loot from the Tech Chest", - "Title": "Tech Loot I", - }, - { - "Level": 80, - "Power": 15, - "Text": "+15% better loot from the Tech Chest", - "Title": "Tech Loot II", - }, - { - "Level": 99, - "Power": 25, - "Text": "+25% better loot from the Tech Chest", - "Title": "Tech Loot III", - }, - ], - "BetterVoid": [ - { - "Level": 60, - "Power": 10, - "Text": "+10% better loot from the Void Chest", - "Title": "Void Loot I", - }, - { - "Level": 90, - "Power": 15, - "Text": "+15% better loot from the Void Chest", - "Title": "Void Loot II", - }, - { - "Level": 99, - "Power": 25, - "Text": "+25% better loot from the Void Chest", - "Title": "Void Loot III", - }, - ], - "CombineAll": [ - { - "Level": 40, - "Text": "Gain the ability to combine all keys at once", - "Title": "Combine All", - }, - ], - "FreeSecretKey": [ - { - "Level": 70, - "Power": 0.0033333333333333335, - "Text": "Small chance to get a free Secret Key when combining a Tech Key", - "Title": "Free Secret I", - }, - { - "Level": 99, - "Power": 0.006666666666666667, - "Text": "2x chance to get a free Secret Key when combining a Tech Key", - "Title": "Free Secret II", - }, - ], - "FreeTechKey": [ - { - "Level": 60, - "Power": 0.004, - "Text": "Small chance to get a free Tech Key when combining a Crystal Key", - "Title": "Free Tech I", - }, - { - "Level": 99, - "Power": 0.008, - "Text": "2x chance to get a free Tech Key when combining a Crystal Key", - "Title": "Free Tech II", - }, - ], - "MasteryCape": [ - { - "Level": 99, - "Text": "Awarded for reaching level 99 Mastery!", - "Title": "Mastery Cape", - }, - ], - "RetainCrystalKey": [ - { - "Level": 10, - "Power": 5, - "Text": "5% chance to keep your Crystal Key after opening a Crystal Chest", - "Title": "Crystal Protector I", - }, - { - "Level": 90, - "Power": 10, - "Text": "10% chance to keep your Crystal Key after opening a Crystal Chest", - "Title": "Crystal Protector II", - }, - ], - "RetainFantasyKey": [ - { - "Level": 95, - "Power": 10, - "Text": "10% chance to keep your Fantasy Key after opening a Fantasy Chest", - "Title": "Fantasy Protector II", - }, - ], - "RetainSecretKey": [ - { - "Level": 50, - "Power": 5, - "Text": "5% chance to keep your Secret Key after opening a Secret Room", - "Title": "Secret Protector I", - }, - { - "Level": 90, - "Power": 10, - "Text": "10% chance to keep your Secret Key after opening a Secret Room", - "Title": "Secret Protector II", - }, - ], - "RetainTechKey": [ - { - "Level": 20, - "Power": 5, - "Text": "5% chance to keep your Tech Key after opening a Tech Chest", - "Title": "Tech Protector I", - }, - { - "Level": 90, - "Power": 10, - "Text": "10% chance to keep your Tech Key after opening a Tech Chest", - "Title": "Tech Protector II", - }, - ], - "RetainVoidKey": [ - { - "Level": 40, - "Power": 5, - "Text": "5% chance to keep your Void Key after opening a Void Chest", - "Title": "Void Protector I", - }, - { - "Level": 90, - "Power": 10, - "Text": "10% chance to keep your Void Key after opening a Void Chest", - "Title": "Void Protector II", - }, - ], + "CanBeShiny": true, + "Desc": "Glowy eyes and stary sparkles!", + "DisplayName": "Astra Hoverboard", + "Icon": "rbxassetid://130263953093664", + "ProductId": 3274118157, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, }, + "ShinyParticleScale": 1, + "Sounds": [], + "Tradable": true, }, - "configName": "Mastery | Keys", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.728Z", - "hashShort": "c25251c34b035b2b", + "configName": "Hoverboard | Astra", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "1b7c798450c4a2f3", }, { - "category": "Mastery", - "collection": "Mastery", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Gain XP by opening giftbags, bundles & free gifts!", - "FFlag": "Mastery_Gifts", - "Icon": "rbxassetid://15092229040", - "Name": "Gifts", - "Perks": { - "AutoClaimFreeGifts": [ - { - "Level": 90, - "Text": "Automatically claim free gifts", - "Title": "Auto-Claim Free Gifts", - }, - ], - "BetterCharmStones": [ - { - "Level": 40, - "Power": 10, - "Text": "10% better loot from Charm Stones", - "Title": "Charm Stones I", - }, - { - "Level": 80, - "Power": 15, - "Text": "15% better loot from Charm Stones", - "Title": "Charm Stones II", - }, - { - "Level": 99, - "Power": 20, - "Text": "20% better loot from Charm Stones", - "Title": "Charm Stones III", - }, - ], - "DoubleBundleLoot": [ - { - "Level": 10, - "Power": 10, - "Text": "10% chance to get x2 loot from any bundle", - "Title": "Bundle Loot I", - }, - { - "Level": 50, - "Power": 20, - "Text": "20% chance to get x2 loot from any bundle", - "Title": "Bundle Loot II", - }, - { - "Level": 99, - "Power": 25, - "Text": "25% chance to get x2 loot from any bundle", - "Title": "Bundle Loot III", - }, - ], - "DoubleMiniChestLoot": [ - { - "Level": 20, - "Power": 10, - "Text": "10% chance to get x2 loot from any Mini-Chest item", - "Title": "Mini-Chest Loot I", - }, - { - "Level": 70, - "Power": 20, - "Text": "20% chance to get x2 loot from any Mini-Chest item", - "Title": "Mini-Chest Loot II", - }, - { - "Level": 99, - "Power": 25, - "Text": "25% chance to get x2 loot from any Mini-Chest item", - "Title": "Mini-Chest Loot III", - }, - ], - "FreeGiftSpeed": [ - { - "Level": 30, - "Power": 15, - "Text": "+15% free gift timer speed", - "Title": "Free Gift Speed I", - }, - { - "Level": 60, - "Power": 30, - "Text": "+30% free gift timer speed", - "Title": "Free Gift Speed II", - }, - { - "Level": 99, - "Power": 40, - "Text": "+40% free gift timer speed", - "Title": "Free Gift Speed III", - }, - ], - "MasteryCape": [ - { - "Level": 99, - "Text": "Awarded for reaching level 99 Mastery!", - "Title": "Mastery Cape", - }, - ], - }, - "ToggleablePerks": { - "AutoClaimFreeGifts": true, + "Desc": "🏀 Glide like a baller!", + "DisplayName": "Basketball Hoverboard", + "Icon": "rbxassetid://105651362878166", + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, }, + "Sounds": [], }, - "configName": "Mastery | Gifts", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.723Z", - "hashShort": "fe9da7c93652ca67", + "configName": "Hoverboard | Basketball", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "eb04a00cf3e79e44", }, { - "category": "Mastery", - "collection": "Mastery", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Gain XP by destroying Superior Chests!", - "FFlag": "Mastery_SuperiorChests", - "Icon": "rbxassetid://17602729261", - "Name": "Superior Chests", - "Perks": { - "MasteryCape": [ - { - "Level": 99, - "Text": "Awarded for reaching level 99 Mastery!", - "Title": "Mastery Cape", - }, - ], - "SuperiorChestLoot": [ - { - "Level": 80, - "Power": 2, - "Text": "2x loot from Superior Chests", - "Title": "Superior Chest Loot I", - }, - { - "Level": 90, - "Power": 3, - "Text": "3x loot from Superior Chests", - "Title": "Superior Chest Loot II", - }, - { - "Level": 99, - "Power": 5, - "Text": "5x loot from Superior Chests", - "Title": "Superior Chest Loot III", - }, - ], - "SuperiorChestOdds": [ - { - "Level": 50, - "Power": 5, - "Text": "+5% chance for Superior Chests to spawn", - "Title": "Superior Chest Odds I", - }, - { - "Level": 60, - "Power": 10, - "Text": "+10% chance for Superior Chests to spawn", - "Title": "Superior Chest Odds II", - }, - { - "Level": 70, - "Power": 15, - "Text": "+15% chance for Superior Chests to spawn", - "Title": "Superior Chest Odds III", - }, - { - "Level": 85, - "Power": 20, - "Text": "+20% chance for Superior Chests to spawn", - "Title": "Superior Chest Odds IV", - }, - { - "Level": 99, - "Power": 50, - "Text": "+50% chance for Superior Chests to spawn", - "Title": "Superior Chest Odds V", - }, - ], + "Desc": "⭐ Dunk across the galaxy!", + "DisplayName": "Cosmic Basketball Hoverboard", + "Icon": "rbxassetid://80084292488611", + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, }, + "Sounds": [], }, - "configName": "Mastery | Superior Chests", - "dateCreated": "2025-07-05T23:23:47.611Z", - "dateModified": "2025-07-05T23:23:47.611Z", - "hashShort": "1e49ac6931d360ea", + "configName": "Hoverboard | Cosmic Basketball", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "d456ad4d79cca60a", }, { - "category": "Mastery", - "collection": "Mastery", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Gain XP by fusing pets!", - "FFlag": "Mastery_Fuse", - "Icon": "rbxassetid://15092228658", - "Name": "Fuse", - "Perks": { - "AlwaysGolden": [ - { - "Level": 75, - "Power": 1, - "Text": "Pets are always golden from the Fuse Machine", - "Title": "Always Golden I", - }, - ], - "AlwaysRainbow": [ - { - "Level": 95, - "Power": 1, - "Text": "Pets are always rainbow from the Fuse Machine", - "Title": "Always Rainbow I", - }, - ], - "BetterRecipes": [ - { - "Level": 30, - "Power": 0.2, - "Text": "Resulting pets will be up to 5% better!", - "Title": "Better Recipes I", - }, - { - "Level": 60, - "Power": 0.25, - "Text": "Resulting pets will be up to 10% better!", - "Title": "Better Recipes II", - }, - { - "Level": 90, - "Power": 0.3, - "Text": "Resulting pets will be up to 15% better!", - "Title": "Better Recipes III", - }, - ], - "FuseAnimationSpeed": [ - { - "Level": 60, - "Power": 2, - "Text": "2x Fuse Machine animation speed (stacks)", - "Title": "Even Faster Fusing I", - }, - ], - "FuseLessPetsNeeded": [ - { - "Level": 99, - "Power": 1, - "Text": "The minimum to fuse is now 2 instead of 3!", - "Title": "Less Pets", - }, - ], - "FusePity": [ - { - "Level": 20, - "Power": 0.01, - "Text": "1% chance to get two pets instead of one!", - "Title": "Fuse Pity I", - }, - { - "Level": 50, - "Power": 0.02, - "Text": "2% chance to get two pets instead of one!", - "Title": "Fuse Pity II", - }, - { - "Level": 75, - "Power": 0.03, - "Text": "3% chance to get two pets instead of one!", - "Title": "Fuse Pity III", - }, - { - "Level": 90, - "Power": 0.04, - "Text": "4% chance to get two pets instead of one!", - "Title": "Fuse Pity IV", - }, - { - "Level": 99, - "Power": 0.05, - "Text": "5% chance to get two pets instead of one!", - "Title": "Fuse Pity V", - }, - ], - "MasteryCape": [ - { - "Level": 99, - "Text": "Awarded for reaching level 99 Mastery!", - "Title": "Mastery Cape", - }, - ], - }, - "ToggleablePerks": { - "AlwaysGolden": true, - "AlwaysRainbow": true, + "Desc": "Actually a flying barbell..", + "DisplayName": "Barbell Hoverboard", + "Icon": "rbxassetid://112739065863623", + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, }, + "Sounds": [], }, - "configName": "Mastery | Fuse", - "dateCreated": "2025-07-05T23:23:47.611Z", - "dateModified": "2025-07-05T23:23:47.611Z", - "hashShort": "f500ce00f5a98624", + "configName": "Hoverboard | Barbell", + "dateCreated": "2025-07-05T23:24:42.247Z", + "dateModified": "2025-07-05T23:24:42.247Z", + "hashShort": "4dff808cfd0fabb4", }, { - "category": "Mastery", - "collection": "Mastery", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Gain XP by using the boost exchange machine!", - "FFlag": "Mastery_BoostExchange", - "Icon": "rbxassetid://117040888028295", - "Name": "Boost Exchange", - "Perks": { - "AutoUseDiamondBoost": [ - { - "Level": 70, - "Power": 1, - "Text": "Automatically buy diamonds boost (randomly picks if more than one auto enabled)!", - "Title": "Auto Buy Diamond Boost I", - }, - ], - "AutoUseDropBoost": [ - { - "Level": 80, - "Power": 1, - "Text": "Automatically buy drops boost (randomly picks if more than one auto enabled)!", - "Title": "Auto Buy Drop Boost I", - }, - ], - "AutoUseEggBoost": [ - { - "Level": 90, - "Power": 1, - "Text": "Automatically buy egg luck boost (randomly picks if more than one auto enabled)!", - "Title": "Auto Buy Egg Luck Boost I", - }, - ], - "BetterCost": [ - { - "Level": 5, - "Power": 0.05, - "Text": "Boosts costs are now reduced by 5%!", - "Title": "Boost Cost I", - }, - { - "Level": 35, - "Power": 0.1, - "Text": "Boosts costs are now reduced by 10%!", - "Title": "Boost Cost II", - }, - { - "Level": 50, - "Power": 0.15, - "Text": "Boosts costs are now reduced by 15%!", - "Title": "Boost Cost III", - }, - { - "Level": 75, - "Power": 0.2, - "Text": "Boosts costs are now reduced by 20%!", - "Title": "Boost Cost IV", - }, - ], - "BetterDuration": [ - { - "Level": 25, - "Power": 0.05, - "Text": "Boosts now last 5% longer!", - "Title": "Boost Duration I", - }, - { - "Level": 55, - "Power": 0.1, - "Text": "Boosts now last 10% longer!", - "Title": "Boost Duration II", - }, - { - "Level": 65, - "Power": 0.15, - "Text": "Boosts now last 15% longer!", - "Title": "Boost Duration III", - }, - { - "Level": 85, - "Power": 0.2, - "Text": "Boosts now last 20% longer!", - "Title": "Boost Duration IV", - }, - { - "Level": 95, - "Power": 0.4, - "Text": "Boosts now last 40% longer!", - "Title": "Boost Duration V", - }, - ], - "BetterEfficiency": [ - { - "Level": 10, - "Power": 0.05, - "Text": "Boosts are now 5% more effective!", - "Title": "Boost Efficiency I", - }, - { - "Level": 20, - "Power": 0.1, - "Text": "Boosts are now 10% more effective!", - "Title": "Boost Efficiency II", - }, - { - "Level": 40, - "Power": 0.15, - "Text": "Boosts are now 15% more effective!", - "Title": "Boost Efficiency III", - }, - { - "Level": 60, - "Power": 0.2, - "Text": "Boosts are now 20% more effective!", - "Title": "Boost Efficiency IV", - }, - { - "Level": 99, - "Power": 0.4, - "Text": "Boosts are now 40% more effective!", - "Title": "Boost Efficiency V", - }, - ], - "MasteryCape": [ - { - "Level": 99, - "Text": "Awarded for reaching level 99 Mastery!", - "Title": "Mastery Cape", - }, - ], - }, - "ToggleablePerks": { - "AutoUseDiamondBoost": true, - "AutoUseDropBoost": true, - "AutoUseEggBoost": true, + "Desc": "Surf the sand!", + "DisplayName": "Sandcastle Hoverboard", + "Icon": "rbxassetid://109265349776682", + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, }, + "Sounds": [], }, - "configName": "Mastery | Boost Exchange", - "dateCreated": "2025-07-05T23:23:47.611Z", - "dateModified": "2025-07-05T23:23:47.611Z", - "hashShort": "2874b96eac762363", + "configName": "Hoverboard | Sandcastle", + "dateCreated": "2025-07-12T16:08:19.828Z", + "dateModified": "2025-07-12T16:08:19.828Z", + "hashShort": "5e6dc636ac987286", }, - ], - "status": "ok", -} -`; - -exports[`Pet Simulator Public Live API Test Merchants shape 1`] = ` -{ - "data": [ { - "category": "Merchants", - "collection": "Merchants", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "DisplayName": "Items Merchant", - "GetOffers": null, - "MachineName": "RegularMerchant", - "PriceMult": 1, - "RefreshRate": 1800, - "SlotRespectLevels": [ - 1, - 1, - 2, - 2, - 3, - 5, - ], - "StockRangeByRespectLevel": [ - [ - 1, - 1, - ], - [ - 1, - 1, - ], - [ - 1, - 1, - ], - [ - 1, - 3, - ], - [ - 1, - 3, - ], - ], + "Desc": "⚔️ Rewarded to the top 10 clans in the 2025 Sun Angelus Clan Battle!", + "DisplayName": "Sun Angelus Hoverboard", + "Icon": "rbxassetid://97502060937589", + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "Sounds": [], }, - "configName": "RegularMerchant", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.722Z", - "hashShort": "f82aa67dcf833b6d", + "configName": "Hoverboard | Sun Angelus", + "dateCreated": "2025-07-12T16:08:19.849Z", + "dateModified": "2026-04-18T15:56:48.456Z", + "hashShort": "81ca46c3b1ca22ad", }, { - "category": "Merchants", - "collection": "Merchants", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "DisplayName": "Advanced Merchant", - "GetOffers": null, - "MachineName": "AdvancedMerchant", - "PriceMult": 1, - "RefreshRate": 3600, - "SlotRespectLevels": [ - 1, - 1, - 2, - 2, - 3, - 5, - ], - "StockRangeByRespectLevel": [ - [ - 1, - 1, - ], - [ - 1, - 1, - ], - [ - 1, - 1, - ], - [ - 1, - 3, - ], - [ - 1, - 3, - ], - ], + "Desc": "Putting together the pieces!", + "DisplayName": "Patchwork Hoverboard", + "Icon": "rbxassetid://72190442747062", + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + "Sounds": [], }, - "configName": "AdvancedMerchant", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.721Z", - "hashShort": "2cb7e7037c6c9fa0", + "configName": "Hoverboard | Patchwork", + "dateCreated": "2025-10-18T17:02:54.262Z", + "dateModified": "2025-10-18T17:02:54.262Z", + "hashShort": "a6b193fc3ed680d5", }, { - "category": "Merchants", - "collection": "Merchants", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "DisplayName": "Garden Merchant", - "GetOffers": null, - "HideNotification": true, - "MachineName": "GardenMerchant", - "PriceMult": 1, - "RefreshRate": 300, - "SlotRespectLevels": [ - 1, - 1, - 2, - 2, - 3, - 5, - ], - "StockRangeByRespectLevel": [ - [ - 1, - 2, - ], - [ - 2, - 2, - ], - [ - 2, - 3, - ], - [ - 3, - 5, - ], - [ - 3, - 6, - ], - ], - }, - "configName": "GardenMerchant", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.722Z", - "hashShort": "0cfa38b276eaa60b", - }, - { - "category": "Merchants", - "collection": "Merchants", - "configData": { - "DisplayName": "Snow Merchant", - "GetOffers": null, - "MachineName": "SnowMerchant", - "PriceMult": 1, - "RefreshRate": 1800, - "SlotRespectLevels": [ - 1, - 1, - 1, - 1, - 1, - 1, - ], - "StockRangeByRespectLevel": [ - [ - 1, - 1, - ], - [ - 1, - 1, - ], - [ - 1, - 1, - ], - [ - 1, - 3, - ], - [ - 1, - 3, - ], - ], - }, - "configName": "SnowMerchant", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.719Z", - "hashShort": "b53b96c3f5251334", - }, - { - "category": "Merchants", - "collection": "Merchants", - "configData": { - "DisplayName": "Firework Merchant", - "GetOffers": null, - "MachineName": "FireworkMerchant", - "PriceMult": 1, - "RefreshRate": 1800, - "SlotRespectLevels": [ - 1, - 1, - 1, - 1, - 1, - 1, - ], - "StockRangeByRespectLevel": [ - [ - 1, - 1, - ], - [ - 1, - 1, - ], - [ - 1, - 1, - ], - [ - 1, - 3, - ], - [ - 1, - 3, - ], - ], - }, - "configName": "FireworkMerchant", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.721Z", - "hashShort": "1c4fadc854f874b5", - }, - { - "category": "Merchants", - "collection": "Merchants", - "configData": { - "DisableApproachOpen": true, - "DisplayName": "Index Merchant", - "GetOffers": null, - "HideRespect": true, - "MachineName": "PetIndexMachine", - "PriceMult": 1, - "RefreshRate": 3600, - "SlotRespectLevels": [ - 1, - 1, - 1, - 1, - 1, - 1, - ], - "StockRangeByRespectLevel": [ - [ - 1, - 1, - ], - [ - 2, - 2, - ], - [ - 3, - 3, - ], - [ - 4, - 4, - ], - [ - 5, - 5, - ], - ], - }, - "configName": "IndexMerchant", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.717Z", - "hashShort": "720b7513d63f2d1d", - }, - { - "category": "Merchants", - "collection": "Merchants", - "configData": { - "DisplayName": "Adventurer Store", - "GetOffers": null, - "HideNotification": true, - "HideRespect": true, - "IsStatic": true, - "MachineName": "AdventurerStore", - "PriceMult": 1, - "RefreshRate": 21600, - }, - "configName": "AdventurerStore", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.721Z", - "hashShort": "77f9e8463c238ab7", - }, - { - "category": "Merchants", - "collection": "Merchants", - "configData": { - "DisplayName": "Raffle Merchant", - "GetOffers": null, - "MachineName": "RaffleMerchant", - "PriceMult": 1, - "RefreshRate": 3600, - }, - "configName": "RaffleMerchant", - "dateCreated": "2025-07-05T23:23:42.717Z", - "dateModified": "2025-07-05T23:23:42.717Z", - "hashShort": "8c1fc893c45f9a27", - }, - { - "category": "Merchants", - "collection": "Merchants", - "configData": { - "DisplayName": "Lucky Dice Merchant", - "GetOffers": null, - "MachineName": "LuckyDiceMerchant", - "PriceMult": 1, - "RefreshRate": 300, - "SlotRespectLevels": [ - 1, - 1, - 2, - 2, - 3, - 5, - ], - "StockRangeByRespectLevel": [ - [ - 1, - 1, - ], - [ - 1, - 1, - ], - [ - 1, - 1, - ], - [ - 1, - 2, - ], - [ - 1, - 3, - ], - ], - }, - "configName": "LuckyDiceMerchant", - "dateCreated": "2025-07-05T23:23:42.717Z", - "dateModified": "2025-07-05T23:23:42.717Z", - "hashShort": "aed407e4a24fad03", - }, - { - "category": "Merchants", - "collection": "Merchants", - "configData": { - "DisplayName": "Pet Cube Store", - "GetOffers": null, - "HideNotification": true, - "HideRespect": true, - "IsStatic": false, - "MachineName": "PetCubeStore", - "PriceMult": 1, - "RefreshRate": 1500, - }, - "configName": "PetCubeStore", - "dateCreated": "2025-07-05T23:23:42.717Z", - "dateModified": "2025-07-05T23:23:42.717Z", - "hashShort": "7a3615b57346ef87", - }, - { - "category": "Merchants", - "collection": "Merchants", - "configData": { - "DisplayName": "Pack Merchant", - "GetOffers": null, - "HasAccess": null, - "MachineName": "PackMerchant", - "PriceMult": 1, - "RefreshRate": 600, - "SlotRespectLevels": [ - 1, - 1, - 2, - 2, - 3, - 5, - ], - "StockRangeByRespectLevel": [ - [ - 1, - 1, - ], - [ - 1, - 1, - ], - [ - 1, - 1, - ], - [ - 1, - 2, - ], - [ - 1, - 3, - ], - ], - }, - "configName": "PackMerchant", - "dateCreated": "2025-07-05T23:23:42.717Z", - "dateModified": "2025-07-05T23:23:42.717Z", - "hashShort": "6599ac93c6eeff2f", - }, - { - "category": "Merchants", - "collection": "Merchants", - "configData": { - "DisplayName": "Mining Merchant", - "GetOffers": null, - "HasAccess": null, - "MachineName": "MiningMerchant", - "PriceMult": 1, - "RefreshRate": 600, - "SlotRespectLevels": [ - 1, - 1, - 2, - 2, - 3, - 5, - ], - "StockRangeByRespectLevel": [ - [ - 1, - 1, - ], - [ - 1, - 1, - ], - [ - 1, - 1, - ], - [ - 1, - 2, - ], - [ - 1, - 3, - ], - ], + "Animation": 76698672439341, + "BobRate": 3, + "Desc": "No hoverboard, just broomstick!", + "DisplayName": "Broomstick", + "HoverHeight": 6, + "Icon": "rbxassetid://111418523199315", + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + "RotationLimit": 0, + "Sounds": [], }, - "configName": "MiningMerchant", - "dateCreated": "2025-07-05T23:23:42.717Z", - "dateModified": "2025-07-05T23:23:42.717Z", - "hashShort": "09e86a231203e636", + "configName": "Hoverboard | Broomstick", + "dateCreated": "2025-10-18T17:02:54.263Z", + "dateModified": "2025-11-22T17:14:35.186Z", + "hashShort": "bb064b3a28c9e584", }, { - "category": "Merchants", - "collection": "Merchants", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "DisplayName": "Unit Merchant", - "GetOffers": null, - "HideNotification": true, - "HideRespect": true, - "IsStatic": true, - "MachineName": "UnitMerchant", - "PriceMult": 1, - "RefreshRate": 60, + "Desc": "Fast for those with little legs!", + "DisplayName": "Elf Hoverboard", + "Icon": "rbxassetid://71269662673061", + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + "Sounds": [], }, - "configName": "UnitMerchant", - "dateCreated": "2025-07-05T23:23:42.717Z", - "dateModified": "2025-07-05T23:23:42.717Z", - "hashShort": "1b40a682d16b10a1", + "configName": "Hoverboard | Elf", + "dateCreated": "2025-12-20T17:54:44.504Z", + "dateModified": "2025-12-20T17:54:44.504Z", + "hashShort": "038c3d4164026cdf", }, - ], - "status": "ok", -} -`; - -exports[`Pet Simulator Public Live API Test MiscItems shape 1`] = ` -{ - "data": [ { - "category": "Vouchers", - "collection": "MiscItems", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Redeem to spin the Spinny Wheel! [Rebirth 1 Required]", - "DisplayName": "Spinny Wheel Ticket", - "Icon": "rbxassetid://15038312495", - "InventoryTags": [ - "Vouchers", - ], + "Desc": "⚔️ Rewarded to the top 10 clans in the 2025 Silver Clan Battle!", + "DisplayName": "Silver Hoverboard", + "Icon": "rbxassetid://72158309750183", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "Sounds": [], }, - "configName": "Spinny Wheel Ticket", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.511Z", - "hashShort": "a7db6f9d600b5ff0", + "configName": "Hoverboard | Silver", + "dateCreated": "2025-12-20T17:54:44.515Z", + "dateModified": "2026-04-18T15:56:48.445Z", + "hashShort": "02a090301e7ddde3", }, { - "category": "Vouchers", - "collection": "MiscItems", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Used to create a clan! [Rebirth 2 Required]", - "DisplayName": "Clan Voucher", - "Icon": "rbxassetid://15107493633", - "InventoryTags": [ - "Vouchers", - ], + "Desc": "⚔️ Rewarded to the top 10 clans in the 2026 Clover Clan Battle!", + "DisplayName": "Clover Hoverboard", + "Icon": "rbxassetid://103910630019047", "Rarity": { "Announce": true, "Color": null, @@ -60746,22 +63142,20 @@ exports[`Pet Simulator Public Live API Test MiscItems shape 1`] = ` "_id": "Exotic", "_script": null, }, + "Sounds": [], }, - "configName": "Clan Voucher", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.497Z", - "hashShort": "03701e1486c0079e", + "configName": "Hoverboard | Clover", + "dateCreated": "2026-03-14T15:52:06.007Z", + "dateModified": "2026-04-18T15:56:48.453Z", + "hashShort": "ba6f8e9a00c57b64", }, { - "category": "Vouchers", - "collection": "MiscItems", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Use this to gain an extra booth listing slot!", - "DisplayName": "Booth Slot Voucher", - "Icon": "rbxassetid://15286722824", - "InventoryTags": [ - "Vouchers", - ], + "Desc": "Ride the treasure!", + "DisplayName": "Pot of Gold Hoverboard", + "Icon": "rbxassetid://135510303781807", "Rarity": { "Announce": false, "Color": null, @@ -60774,22 +63168,46 @@ exports[`Pet Simulator Public Live API Test MiscItems shape 1`] = ` "_id": "Mythical", "_script": null, }, + "Sounds": [], }, - "configName": "Booth Slot Voucher", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.503Z", - "hashShort": "385496d6f27cfb1b", + "configName": "Hoverboard | Pot of Gold", + "dateCreated": "2026-03-14T15:52:06.013Z", + "dateModified": "2026-04-18T15:56:48.499Z", + "hashShort": "d33dbe47f46b356c", }, { - "category": "Vouchers", - "collection": "MiscItems", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Use this to gain an extra Daycare enroll slot!", - "DisplayName": "Daycare Slot Voucher", - "Icon": "rbxassetid://15938616670", - "InventoryTags": [ - "Vouchers", - ], + "Desc": "⚔️ Rewarded to the top 10 clans in the 2026 Abstract Clan Battle!", + "DisplayName": "Abstract Hoverboard", + "Icon": "rbxassetid://128622887981671", + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "Sounds": [], + }, + "configName": "Hoverboard | Abstract", + "dateCreated": "2026-04-18T15:56:48.453Z", + "dateModified": "2026-04-18T15:56:48.453Z", + "hashShort": "de2051ad5cd834c7", + }, + { + "category": "Hoverboards", + "collection": "Hoverboards", + "configData": { + "Desc": "🌻🌹 flower power! 🌷🌼", + "DisplayName": "Blossom Hoverboard", + "Icon": "rbxassetid://135192770970710", "Rarity": { "Announce": false, "Color": null, @@ -60802,253 +63220,250 @@ exports[`Pet Simulator Public Live API Test MiscItems shape 1`] = ` "_id": "Mythical", "_script": null, }, + "Sounds": [], }, - "configName": "Daycare Slot Voucher", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.508Z", - "hashShort": "cbd17e0989e6f3ef", + "configName": "Hoverboard | Blossom", + "dateCreated": "2026-04-18T15:56:48.489Z", + "dateModified": "2026-04-18T15:56:48.489Z", + "hashShort": "b4c9973bc3ff465e", }, { - "category": "Vouchers", - "collection": "MiscItems", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "AltIcon": "rbxassetid://16042314493", - "Desc": "Earned for every pet you index! - -Redeem in the Index Machine!", - "DisplayName": "Index Token", - "Icon": "rbxassetid://16047269848", - "InventoryTags": [ - "Vouchers", - ], + "Desc": "⚔️ Rewarded to the top 10 clans in the 2026 Starry Clan Battle!", + "DisplayName": "Starry Hoverboard", + "Icon": "rbxassetid://136865390648397", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "Tradable": false, + "Sounds": [], }, - "configName": "Index Token", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.508Z", - "hashShort": "1e13c3b258440a8f", + "configName": "Hoverboard | Starry", + "dateCreated": "2026-04-25T17:31:35.822Z", + "dateModified": "2026-04-25T17:31:35.822Z", + "hashShort": "ae56d072fad43b6c", }, { - "category": "Vouchers", - "collection": "MiscItems", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "???", - "DisplayName": "Mystery Ticket", - "Icon": "rbxassetid://16038106883", - "InventoryTags": [ - "Vouchers", - ], + "Desc": "⚔️ Rewarded to the top 10 clans in the 2026 Angel Clan Battle!", + "DisplayName": "Angel Hoverboard", + "Icon": "rbxassetid://98861838388922", "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Superior", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 8, - "_id": "Superior", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "Sounds": [], }, - "configName": "Mystery Ticket", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.508Z", - "hashShort": "56e3450e16eca58d", + "configName": "Hoverboard | Angel", + "dateCreated": "2026-05-09T17:51:24.308Z", + "dateModified": "2026-05-09T17:51:24.308Z", + "hashShort": "6748cf5ff00522fd", }, { - "category": "Boosts", - "collection": "MiscItems", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Drop a Coin Jar in the area you're standing in for rewards!", - "DisplayName": "Basic Coin Jar", - "Icon": "rbxassetid://15000811448", - "InventoryTags": [ - "Boosts", - ], + "Desc": "You can't speed away from the void!", + "DisplayName": "Void Hoverboard", + "Icon": "rbxassetid://139230989621669", "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, + "Sounds": [], }, - "configName": "Basic Coin Jar", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.192Z", - "hashShort": "082123314357bb4d", + "configName": "Hoverboard | Void", + "dateCreated": "2026-05-09T17:51:24.314Z", + "dateModified": "2026-05-09T17:51:24.314Z", + "hashShort": "07ddcb3454bc7e53", }, { - "category": "Boosts", - "collection": "MiscItems", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Drop a Magic Coin Jar into a *RANDOM AREA* you have unlocked for rewards!", - "DisplayName": "Magic Coin Jar", - "Icon": "rbxassetid://15000811194", - "InventoryTags": [ - "Boosts", - ], + "CanBeShiny": true, + "Desc": "Drift off into a daydream! 💤", + "DisplayName": "Daydream Hoverboard", + "Icon": "rbxassetid://117340492688703", "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, + "ShinyParticleScale": 1, + "Sounds": [], }, - "configName": "Magic Coin Jar", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.185Z", - "hashShort": "2ba7ef10d71627e1", + "configName": "Hoverboard | Daydream", + "dateCreated": "2026-06-13T23:12:55.846Z", + "dateModified": "2026-06-13T23:12:55.846Z", + "hashShort": "6441d3a8f7d34dc9", }, { - "category": "Boosts", - "collection": "MiscItems", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Drop a Giant Coin Jar in the area you're standing in for rewards!", - "DisplayName": "Giant Coin Jar", - "Icon": "rbxassetid://15000811334", - "InventoryTags": [ - "Boosts", - ], + "CanBeShiny": true, + "Desc": "En garde!", + "DisplayName": "Samurai Hoverboard", + "Icon": "rbxassetid://101915813934665", + "ProductId": 3604359462, "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "ShinyParticleScale": 1, + "Sounds": [], + "Tradable": true, }, - "configName": "Giant Coin Jar", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.186Z", - "hashShort": "875c99f4078ed036", + "configName": "Hoverboard | Samurai", + "dateCreated": "2026-06-13T23:12:55.848Z", + "dateModified": "2026-06-13T23:12:55.848Z", + "hashShort": "914e4a3656f35f63", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "Catch better fish, faster!", - "DisplayName": "Advanced Fishing Rod", - "Icon": "rbxassetid://16028879358", - "InventoryTags": [ - "Tools", - ], + "CanBeShiny": true, + "Desc": "Feeling lucky today?", + "DisplayName": "Lucky Block Hoverboard", + "Icon": "rbxassetid://133378339379374", + "ProductId": 3604359252, "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "Tradable": false, + "ShinyParticleScale": 1, + "Sounds": [], + "Tradable": true, }, - "configName": "Advanced Fishing Rod", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.339Z", - "hashShort": "74a9eb4643cc136a", + "configName": "Hoverboard | Lucky Block", + "dateCreated": "2026-06-13T23:12:55.847Z", + "dateModified": "2026-06-13T23:12:55.847Z", + "hashShort": "a3d987b24168ffd7", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "It's super!", - "DisplayName": "Stone Fishing Rod", - "Icon": "rbxassetid://16028878295", - "InventoryTags": [ - "Tools", - ], + "CanBeShiny": true, + "Desc": "Nyan nyan nyan nyan! 🌈", + "DisplayName": "Nyan Cat Hoverboard", + "Icon": "rbxassetid://116839142075918", + "ProductId": 3604359231, "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "Tradable": false, + "ShinyParticleScale": 1, + "Sounds": [], + "Tradable": true, }, - "configName": "Super Fishing Rod", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.495Z", - "hashShort": "7841a62ec26f98e4", + "configName": "Hoverboard | Nyan Cat", + "dateCreated": "2026-06-13T23:12:55.850Z", + "dateModified": "2026-06-13T23:12:55.850Z", + "hashShort": "2481f9aff7577421", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "Hoverboards", + "collection": "Hoverboards", "configData": { - "Desc": "You could catch a big fish with this!", - "DisplayName": "Sturdy Fishing Rod", - "Icon": "rbxassetid://16028878219", - "InventoryTags": [ - "Tools", - ], + "Desc": "⚔️ Rewarded to the top clans in the 2026 Thunderstorm Clan Battle!", + "DisplayName": "Thunderstorm Hoverboard", + "Icon": "rbxassetid://132032003832506", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "Tradable": false, + "Sounds": [], }, - "configName": "Sturdy Fishing Rod", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.502Z", - "hashShort": "de8a26d5a3949a82", + "configName": "Hoverboard | Thunderstorm", + "dateCreated": "2026-06-27T16:07:07.924Z", + "dateModified": "2026-06-27T16:07:07.924Z", + "hashShort": "1948df9a3921af33", }, + ], + "status": "ok", +} +`; + +exports[`Pet Simulator Public Live API Test Lootboxes shape 1`] = ` +{ + "data": [ { - "category": "Tools", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Very efficient fishing rod.", - "DisplayName": "Iron Fishing Rod", - "Icon": "rbxassetid://16028878776", - "InventoryTags": [ - "Tools", - ], + "Desc": "Big present with lots of goodies!", + "DisplayName": "2023 Large Christmas Present", + "Icon": "rbxassetid://15635476600", "Rarity": { "Announce": false, "Color": null, @@ -61061,139 +63476,120 @@ Redeem in the Index Machine!", "_id": "Legendary", "_script": null, }, - "Tradable": false, }, - "configName": "Pro Fishing Rod", + "configName": "Large Christmas Present", "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.497Z", - "hashShort": "a8cfd0b9c33588ba", + "dateModified": "2025-07-05T23:29:23.235Z", + "hashShort": "8dba7cbb5ee42a65", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "A fishing rod made of gold? Doesn't seem very realistic.", - "DisplayName": "Golden Fishing Rod", - "Icon": "rbxassetid://16028878947", - "InventoryTags": [ - "Tools", - ], + "Desc": "Open for a bunch of goodies!", + "DisplayName": "2023 Medium Christmas Present", + "Icon": "rbxassetid://15635476705", "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "Tradable": true, }, - "configName": "Golden Fishing Rod", + "configName": "Medium Christmas Present", "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.489Z", - "hashShort": "43fb998d3b67defd", + "dateModified": "2025-07-05T23:29:23.247Z", + "hashShort": "a44dd5d5a149b192", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Simple fishing rod. You can catch stuff.", - "DisplayName": "Wooden Fishing Rod", - "Icon": "rbxassetid://16028878115", - "InventoryTags": [ - "Tools", - ], + "Desc": "Open for goodies!", + "DisplayName": "2023 Small Christmas Present", + "Icon": "rbxassetid://15635476827", "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "Tradable": false, }, - "configName": "Wooden Fishing Rod", + "configName": "Small Christmas Present", "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.503Z", - "hashShort": "0dc42db1bdb43262", + "dateModified": "2025-07-05T23:29:23.227Z", + "hashShort": "4877972d5b164bb5", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Sleek and efficient fishing rod.", - "DisplayName": "Platinum Fishing Rod", - "Icon": "rbxassetid://16028878591", - "InventoryTags": [ - "Tools", - ], + "Desc": "TITANIC present with sooo many goodies! Includes chance for a Titanic & Huge pet!", + "DisplayName": "2023 Titanic Christmas Present", + "Icon": "rbxassetid://15635476408", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "Tradable": false, + "RequireSave": true, }, - "configName": "Platinum Fishing Rod", + "configName": "Titanic Christmas Present", "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.489Z", - "hashShort": "b70b967fe8644942", + "dateModified": "2025-07-05T23:29:23.232Z", + "hashShort": "fbded72d9ca82920", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Streamlined casting perfection.", - "DisplayName": "Emerald Fishing Rod", - "Icon": "rbxassetid://16028879073", - "InventoryTags": [ - "Tools", - ], + "Desc": "Huge present with a ton of goodies!", + "DisplayName": "2023 X-Large Christmas Present", + "Icon": "rbxassetid://15635476534", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "Tradable": false, }, - "configName": "Emerald Fishing Rod", + "configName": "X-Large Christmas Present", "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.496Z", - "hashShort": "14fe167191648624", + "dateModified": "2025-07-05T23:29:23.233Z", + "hashShort": "abe2445e0ab1ae23", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Unmatched casting performance.", - "DisplayName": "Sapphire Fishing Rod", - "Icon": "rbxassetid://16028878380", - "InventoryTags": [ - "Tools", - ], + "Desc": "Special gift for attending the 2024 New Year's Party! Chance for Huge Party Crown Ducky!", + "DisplayName": "2024 New Year's Gift", + "Icon": "rbxassetid://15800024082", "Rarity": { "Announce": true, "Color": null, @@ -61206,23 +63602,20 @@ Redeem in the Index Machine!", "_id": "Exotic", "_script": null, }, - "Tradable": false, + "RequireSave": true, }, - "configName": "Sapphire Fishing Rod", + "configName": "2024 New Years Gift", "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.491Z", - "hashShort": "22107bacce0686c0", + "dateModified": "2025-07-05T23:29:23.243Z", + "hashShort": "43ef1d7bc0ed6ea2", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Do you like my Diamond Fishing Rod?", - "DisplayName": "Diamond Fishing Rod", - "Icon": "rbxassetid://16028879185", - "InventoryTags": [ - "Tools", - ], + "Desc": "Adventurer's Lootbox containing a chance for the Active Huge Egg, Huge Firefly, and other high value items!", + "DisplayName": "Adventurer's Lootbox", + "Icon": "rbxassetid://16745658276", "Rarity": { "Announce": true, "Color": null, @@ -61235,81 +63628,72 @@ Redeem in the Index Machine!", "_id": "Celestial", "_script": null, }, - "Tradable": true, + "RequireSave": true, }, - "configName": "Diamond Fishing Rod", + "configName": "Adventurer Lootbox", "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.333Z", - "hashShort": "ca51ce394f205424", + "dateModified": "2025-07-05T23:29:23.229Z", + "hashShort": "625c971e7b3ba236", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Elegant fishing mastery.", - "DisplayName": "Amethyst Fishing Rod", - "Icon": "rbxassetid://16028879272", - "InventoryTags": [ - "Tools", - ], + "Desc": "Obtained from the Claw Machine!", + "DisplayName": "Arcade Egg 1x", + "Icon": "rbxassetid://16759780030", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "Tradable": false, + "RequireSave": true, }, - "configName": "Amethyst Fishing Rod", + "configName": "Arcade Egg 1", "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.332Z", - "hashShort": "6198f12ceffd409e", + "dateModified": "2025-07-05T23:29:23.238Z", + "hashShort": "0f6d84db33ba3963", }, { - "category": "Miscellaneous", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "FOR ADMIN USE - Lets you do a bunch of cool stuff.", - "DisplayName": "Rotten Potato", - "Icon": "rbxassetid://13959016084", - "InventoryTags": [ - "Miscellaneous", - ], + "Desc": "Obtained from the Claw Machine!", + "DisplayName": "Arcade Egg 5x", + "Icon": "rbxassetid://16759779878", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "Tradable": false, + "RequireSave": true, }, - "configName": "Rotten Potato", + "configName": "Arcade Egg 2", "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.196Z", - "hashShort": "331058c865772ff3", + "dateModified": "2025-07-05T23:29:23.239Z", + "hashShort": "d68f30e5dafc6d4f", }, { - "category": "Gifts", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Open for large rewards!", - "DisplayName": "Large Gift Bag", - "Icon": "rbxassetid://15000940153", - "InventoryTags": [ - "Gifts", - ], + "Desc": "Obtained from the Claw Machine!", + "DisplayName": "Arcade Egg 10x", + "Icon": "rbxassetid://16759779792", "Rarity": { "Announce": false, "Color": null, @@ -61322,218 +63706,203 @@ Redeem in the Index Machine!", "_id": "Legendary", "_script": null, }, + "RequireSave": true, }, - "configName": "Large Gift Bag", + "configName": "Arcade Egg 3", "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.195Z", - "hashShort": "e8d5df89b607b20e", + "dateModified": "2025-07-05T23:29:23.243Z", + "hashShort": "f7ac47907ef07d7d", }, { - "category": "Gifts", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Open for rewards!", - "DisplayName": "Gift Bag", - "Icon": "rbxassetid://15092672146", - "InventoryTags": [ - "Gifts", - ], + "Desc": "Obtained from the Claw Machine!", + "DisplayName": "Arcade Egg 20x", + "Icon": "rbxassetid://16759779714", "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, + "RequireSave": true, }, - "configName": "Gift Bag", + "configName": "Arcade Egg 4", "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.346Z", - "hashShort": "dc53733cf17eccfc", + "dateModified": "2025-07-05T23:29:23.236Z", + "hashShort": "c93672ce41b086d1", }, { - "category": "Gifts", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Break open to reveal a Charm!", - "DisplayName": "Charm Stone", - "Icon": "rbxassetid://15581313849", - "InventoryTags": [ - "Gifts", - ], + "Desc": "Obtained from the Claw Machine!", + "DisplayName": "Arcade Egg 50x", + "Icon": "rbxassetid://16759779609", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, + "RequireSave": true, }, - "configName": "Charm Stone", + "configName": "Arcade Egg 5", "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.198Z", - "hashShort": "f2cd58ab772d0ee1", + "dateModified": "2025-07-05T23:29:23.230Z", + "hashShort": "edacc91a52b3b379", }, { - "category": "Gifts", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Open for random seeds!", - "DisplayName": "Seed Bag", - "Icon": "rbxassetid://15554896174", - "InventoryTags": [ - "Farming", - ], + "Desc": "Awarded by completing the Hype Event after the update!", + "DisplayName": "Hype Egg", + "Icon": "rbxassetid://16901624489", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "RequireSave": true, }, - "configName": "Seed Bag", + "configName": "Hype Egg", "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.185Z", - "hashShort": "4cc16fe24d62fd6b", + "dateModified": "2025-07-05T23:29:23.233Z", + "hashShort": "d42e139759c98f4a", }, { - "category": "Gifts", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Open for random flags!", - "DisplayName": "Bundle O' Flags", - "Icon": "rbxassetid://15938615884", - "InventoryTags": [ - "Gifts", - ], + "Desc": "Rewarded to the top 500 clans in clan battles! Chance for Huge Tech Samurai Cat!", + "DisplayName": "Clan Gift", + "Icon": "rbxassetid://17025063453", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Flag Bundle", + "configName": "Clan Gift", "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.189Z", - "hashShort": "7867eb962b51333d", + "dateModified": "2025-07-05T23:29:23.245Z", + "hashShort": "06ff215b68b7e36a", }, { - "category": "Gifts", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Open for random toys!", - "DisplayName": "Bundle O' Toys", - "Icon": "rbxassetid://15938615671", - "InventoryTags": [ - "Gifts", - ], + "Desc": "Special gift in global events! +Chance for the Huge Lunar Moth!", + "DisplayName": "Global Event Gift", + "Icon": "rbxassetid://17024878528", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, + "RequireSave": true, }, - "configName": "Toy Bundle", + "configName": "Global Event Gift", "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.194Z", - "hashShort": "3b4767d0e37f09bd", + "dateModified": "2025-07-05T23:29:23.238Z", + "hashShort": "f924e167ec9b9871", }, { - "category": "Gifts", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Open for random potions!", - "DisplayName": "Bundle O' Potions", - "Icon": "rbxassetid://15938615802", - "InventoryTags": [ - "Gifts", - ], + "Desc": "Made from Glitch Cores in the Glitched Event. Chance for a HUGE 404 Demon!", + "DisplayName": "Glitched Gift", + "Icon": "rbxassetid://17288649241", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Potion Bundle", + "configName": "Glitched Gift", "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.193Z", - "hashShort": "38790d9c03a63cc6", + "dateModified": "2025-07-05T23:29:23.222Z", + "hashShort": "9cfaa8f1c2aa059e", }, { - "category": "Gifts", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Open for random enchants!", - "DisplayName": "Bundle O' Enchants", - "Icon": "rbxassetid://15938615986", - "InventoryTags": [ - "Gifts", - ], + "Desc": "Made from Seashells in the Summer Event. Chance for a HUGE Pineapple Monkey!", + "DisplayName": "Summer Gift", + "Icon": "rbxassetid://17671375342", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Enchant Bundle", + "configName": "Summer Gift", "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.183Z", - "hashShort": "e96fbed06129bd5e", + "dateModified": "2025-07-05T23:29:23.243Z", + "hashShort": "787b9aea0a49071b", }, { - "category": "Gifts", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Open for THE MOST EPIC rewards!", - "DisplayName": "Mini Chest", - "Icon": "rbxassetid://15854077741", - "InventoryTags": [ - "Gifts", - ], + "Desc": "Made from items in the Good vs. Evil Event. Chance for a HUGE!", + "DisplayName": "Good Gift", + "Icon": "rbxassetid://18100921410", "Rarity": { "Announce": true, "Color": null, @@ -61546,387 +63915,358 @@ Redeem in the Index Machine!", "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Mini Chest", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.190Z", - "hashShort": "40ea54f83f7b932f", + "configName": "Good Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "3c8a270365fb703f", }, { - "category": "Flags", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Place in an area to SUBSTANTIALLY increase drops! Lasts 5 minutes!", - "DisplayName": "Exotic Treasure Flag", - "Icon": "rbxassetid://15011948755", - "InventoryTags": [ - "Flags", - ], + "Desc": "Made from items in the Good vs. Evil Event. Chance for a HUGE!", + "DisplayName": "Evil Gift", + "Icon": "rbxassetid://18100921552", "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Exotic Treasure Flag", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.193Z", - "hashShort": "979f2cb4501988f8", + "configName": "Evil Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "f22a6c65f5639f4d", }, { - "category": "Flags", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "A portable magnet that can be placed in any area! Lasts 5 minutes!", - "DisplayName": "Magnet Flag", - "Icon": "rbxassetid://15000810137", - "InventoryTags": [ - "Flags", - ], + "Desc": "Reward for playing the Good vs. Evil Event. Chance for a HUGE!", + "DisplayName": "Good vs. Evil Gift", + "Icon": "rbxassetid://18100928783", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Magnet Flag", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.201Z", - "hashShort": "0c4a372fe6ae8358", + "configName": "Good vs Evil Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "c60ab9f10c753814", }, { - "category": "Flags", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Place in an area to increase coins by 50% and diamonds by 2.5x! Lasts 5 minutes!", - "DisplayName": "Fortune Flag", - "Icon": "rbxassetid://15000810242", - "InventoryTags": [ - "Flags", - ], + "Desc": "Reward for playing Rave World's lucky tiles game. Chance for a HUGE!", + "DisplayName": "Rave Gift", + "Icon": "rbxassetid://18336837008", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Fortune Flag", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.184Z", - "hashShort": "2f5f12a8b904d0b4", + "configName": "Rave Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "3d5583af3c4cde00", }, { - "category": "Flags", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Place in an area to increase diamond breakables by 2x! Lasts 5 minutes!", - "DisplayName": "Diamonds Flag", - "Icon": "rbxassetid://15000810493", - "InventoryTags": [ - "Flags", - ], + "Desc": "Earned from drops in the Dino Tycoon World. Chance for a HUGE!", + "DisplayName": "Dino Gift", + "Icon": "rbxassetid://18670684055", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Diamonds Flag", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.200Z", - "hashShort": "10a4dda29f74b209", + "configName": "Dino Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "e0ae7ecc16573610", }, { - "category": "Flags", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Place in an area to increase your pet strength by 50%! Lasts 5 minutes!", - "DisplayName": "Strength Flag", - "Icon": "rbxassetid://15853955101", - "InventoryTags": [ - "Flags", - ], + "Desc": "Earned from meteors in the Dino Tycoon World. Chance for a HUGE!", + "DisplayName": "Meteor Gift", + "Icon": "rbxassetid://18742082777", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Strength Flag", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.194Z", - "hashShort": "93297b705793e9e8", + "configName": "Meteor Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "e6cacec8080dac76", }, { - "category": "Flags", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Place in an area to super-charge pets! Lasts 5 minutes!", - "DisplayName": "Hasty Flag", - "Icon": "rbxassetid://15000810356", - "InventoryTags": [ - "Flags", - ], + "Desc": "Reward for playing the Color Event. Chance for a HUGE!", + "DisplayName": "Color Gift", + "Icon": "rbxassetid://85136591230954", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Hasty Flag", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.186Z", - "hashShort": "67fe4fd018276aef", + "configName": "Color Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "70195a06656f4068", }, { - "category": "Flags", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Place in an area to increase coins you earn by 50%! Lasts 5 minutes!", - "DisplayName": "Coins Flag", - "Icon": "rbxassetid://15000809958", - "InventoryTags": [ - "Flags", - ], + "Desc": "Reward for playing the Color Event. Chance for a HUGE!", + "DisplayName": "Graffiti Gift", + "Icon": "rbxassetid://133244977374611", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Coins Flag", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.192Z", - "hashShort": "237f9dde4829212b", + "configName": "Graffiti Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "97a7cfa8d6c96d9b", }, { - "category": "Flags", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "When placed in an area, temporarily makes ALL pets Shiny! Lasts 5 minutes!", - "DisplayName": "Shiny Flag", - "Icon": "rbxassetid://15853949167", - "InventoryTags": [ - "Flags", - ], + "Desc": "Reward for catching pets in the Elemental World! Chance for a HUGE!", + "DisplayName": "Elemental Gift", + "Icon": "rbxassetid://128952309639623", "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Superior", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 8, - "_id": "Superior", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Shiny Flag", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.197Z", - "hashShort": "c9aea0bdc48c5cdb", + "configName": "Elemental Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "33fbd74502ce71f6", }, { - "category": "Flags", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "When placed in an area, temporarily makes ALL pets Rainbow! Lasts 5 minutes!", - "DisplayName": "Rainbow Flag", - "Icon": "rbxassetid://15853949239", - "InventoryTags": [ - "Flags", - ], + "Desc": "Made from Pumpkins in the Haunted Backrooms. Chance for a HUGE!", + "DisplayName": "Pumpkin Gift", + "Icon": "rbxassetid://114513766713319", "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Rainbow Flag", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.197Z", - "hashShort": "154f941e9270a57f", + "configName": "Pumpkin Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "3be5f61f8e5ecf2f", }, { - "category": "Keys", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Used to unlock the Crystal Chest!", - "DisplayName": "Crystal Key", - "Icon": "rbxassetid://15000810910", - "InventoryTags": [ - "Keys", - ], + "Desc": "Made from Candy Corn in the Halloween Event. Chance for a HUGE!", + "DisplayName": "Candy Corn Gift", + "Icon": "rbxassetid://107004803757637", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Crystal Key", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.344Z", - "hashShort": "96d4dc604259b38e", + "configName": "Candy Corn Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "22c441eb80a70592", }, { - "category": "Keys", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Unlock the door to the Castle! Big key for a big lock.", - "DisplayName": "Castle Key", - "Icon": "rbxassetid://15000809142", - "InventoryTags": [ - "Keys", - ], + "Desc": "Dropped in the Halloween Event's neighborhoods.", + "DisplayName": "Ghostface Gift", + "Icon": "rbxassetid://111099902427867", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "Tradable": false, + "RequireSave": true, }, - "configName": "Castle Key", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.337Z", - "hashShort": "53f846b4232af300", + "configName": "Ghostface Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "0a26e5bb1c8a3816", }, { - "category": "Keys", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "The lower half to the Crystal Key. Combine this with the upper half!", - "DisplayName": "Crystal Key: Lower Half", - "Icon": "rbxassetid://15000810798", - "InventoryTags": [ - "Keys", - ], + "Desc": "Reward in the Woodcutting minigame! Chance for a HUGE!", + "DisplayName": "Wooden Gift", + "Icon": "rbxassetid://113799638322740", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Crystal Key Lower Half", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.336Z", - "hashShort": "1806cfed25ed1065", + "configName": "Wooden Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "74b29939d51ad67c", }, { - "category": "Keys", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "The upper half to the Crystal Key. Combine this with the lower half!", - "DisplayName": "Crystal Key: Upper Half", - "Icon": "rbxassetid://15000810636", - "InventoryTags": [ - "Keys", - ], + "Desc": "Earned from drops in the "Line for a Huge Pet" Event. Chance for a HUGE!", + "DisplayName": "Adoption Gift", + "Icon": "rbxassetid://136345451971873", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Crystal Key Upper Half", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.337Z", - "hashShort": "cfad8312afb1343c", + "configName": "Adoption Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "fcd4fed1b093396a", }, { - "category": "Keys", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Used to unlock any Secret Room!", - "DisplayName": "Secret Key", - "Icon": "rbxassetid://16008658412", - "InventoryTags": [ - "Keys", - ], + "Desc": "Earned from time drops in the "Line for a Titanic Pet" Event. Chance for a HUGE!", + "DisplayName": "School Gift", + "Icon": "rbxassetid://138084904848130", "Rarity": { "Announce": true, "Color": null, @@ -61939,223 +64279,199 @@ Redeem in the Index Machine!", "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Secret Key", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.335Z", - "hashShort": "8f1a4009aa91adca", + "configName": "School Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "36085025b43886a5", }, { - "category": "Keys", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "The lower half to the Secret Key. Combine this with the upper half!", - "DisplayName": "Secret Key: Lower Half", - "Icon": "rbxassetid://16008658599", - "InventoryTags": [ - "Keys", - ], + "Desc": "Earned from the Autumn Boss Chest in the Autumn Event. Chance for a HUGE!", + "DisplayName": "Autumn Gift", + "Icon": "rbxassetid://79016165994597", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Secret Key Lower Half", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.334Z", - "hashShort": "0b4ca5781a3d0b78", + "configName": "Autumn Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "9765d9e58dbf173d", }, { - "category": "Keys", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "The upper half to the Secret Key. Combine this with the lower half!", - "DisplayName": "Secret Key: Upper Half", - "Icon": "rbxassetid://16008658794", - "InventoryTags": [ - "Keys", - ], + "Desc": "Found in the Forever Pack or Chest Hunt!", + "DisplayName": "Turkey Gift", + "Icon": "rbxassetid://89033758007241", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Secret Key Upper Half", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.354Z", - "hashShort": "2543de915cc4e26b", + "configName": "Turkey Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "8cea47473b86b8d6", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "me dig", - "DisplayName": "Stone Shovel", - "Icon": "rbxassetid://16039332182", - "InventoryTags": [ - "Tools", - ], + "Desc": "Earned from participating in the 2024 Anniversary Event!", + "DisplayName": "2024 Anniversary Gift", + "Icon": "rbxassetid://91598628386274", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "Tradable": false, + "RequireSave": true, }, - "configName": "Sharp Shovel", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.360Z", - "hashShort": "8a9568e4da38b80d", + "configName": "2024 Anniversary Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "3293b257614ff8d0", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Cuts through solid rock easily!", - "DisplayName": "Advanced Shovel", - "Icon": "rbxassetid://16039333077", - "InventoryTags": [ - "Tools", - ], + "Desc": "Created using the Snow Machine during the Holiday Event!", + "DisplayName": "Snowflake Gift", + "Icon": "rbxassetid://80753300898363", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "Tradable": false, + "RequireSave": true, }, - "configName": "Bluesteel Shovel", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.353Z", - "hashShort": "5e5667825264464c", + "configName": "Snowflake Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "cfa322ee436ca3da", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Do you like my Diamond Shovel?", - "DisplayName": "Diamond Shovel", - "Icon": "rbxassetid://16039332788", - "InventoryTags": [ - "Tools", - ], + "Desc": "Open for goodies!", + "DisplayName": "2024 Small Christmas Present", + "Icon": "rbxassetid://78444032843973", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "Tradable": true, }, - "configName": "Diamond Shovel", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.350Z", - "hashShort": "21326da000ae6831", + "configName": "2024 Small Christmas Present", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "4141966beb7298e3", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Sharpened really carefully. Digs really fast!", - "DisplayName": "Emerald Shovel", - "Icon": "rbxassetid://16039332703", - "InventoryTags": [ - "Tools", - ], + "Desc": "Open for a bunch of goodies!", + "DisplayName": "2024 Medium Christmas Present", + "Icon": "rbxassetid://91349208436997", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "Tradable": false, }, - "configName": "Emerald Shovel", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.357Z", - "hashShort": "caeafb1e37fceda5", + "configName": "2024 Medium Christmas Present", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "c2c71dd7c99f5e81", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Really flimsy. Doesn't dig very fast.", - "DisplayName": "Wooden Shovel", - "Icon": "rbxassetid://16039332097", - "InventoryTags": [ - "Tools", - ], + "Desc": "Big present with lots of goodies!", + "DisplayName": "2024 Large Christmas Present", + "Icon": "rbxassetid://71891761708931", "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "Tradable": false, }, - "configName": "Flimsy Shovel", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.347Z", - "hashShort": "bfd8507819371bf9", + "configName": "2024 Large Christmas Present", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "b9bbf74f25a48fc5", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Shiny! Digs insanely fast!", - "DisplayName": "Golden Shovel", - "Icon": "rbxassetid://16039332602", - "InventoryTags": [ - "Tools", - ], + "Desc": "Huge present with a ton of goodies!", + "DisplayName": "2024 X-Large Christmas Present", + "Icon": "rbxassetid://121101105785977", "Rarity": { "Announce": false, "Color": null, @@ -62168,110 +64484,97 @@ Redeem in the Index Machine!", "_id": "Mythical", "_script": null, }, - "Tradable": true, }, - "configName": "Golden Shovel", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.347Z", - "hashShort": "4782b51c3da7c0ad", + "configName": "2024 X-Large Christmas Present", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "c2ca77a17ed63063", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "It's a shovel. It digs!", - "DisplayName": "Sturdy Shovel", - "Icon": "rbxassetid://16039331991", - "InventoryTags": [ - "Tools", - ], + "Desc": "GARGANTUAN present with sooo many goodies! Includes chance for a Gargantuan, Titanic & Huge pet!", + "DisplayName": "2024 Gargantuan Christmas Present", + "Icon": "rbxassetid://117601296319615", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "Tradable": false, + "RequireSave": true, }, - "configName": "Normal Shovel", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.341Z", - "hashShort": "7b0a1ee9087e7f5d", + "configName": "2024 Gargantuan Christmas Present", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "5030d6d8e870c9c1", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Platinum means quality.", - "DisplayName": "Platinum Shovel", - "Icon": "rbxassetid://16039332375", - "InventoryTags": [ - "Tools", - ], + "Desc": "Special gift for attending the 2025 New Year's Party!!", + "DisplayName": "2025 New Year's Gift", + "Icon": "rbxassetid://122498561966140", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "Tradable": false, + "RequireSave": true, }, - "configName": "Platinum Shovel", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.340Z", - "hashShort": "0300a2fa8f1a385c", + "configName": "2025 New Years Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "455888007b282c4f", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "For professionals only! Digs super fast!", - "DisplayName": "Iron Shovel", - "Icon": "rbxassetid://16039332500", - "InventoryTags": [ - "Tools", - ], + "Desc": "Found by saving pets from the Grinch Cat ice cubes!", + "DisplayName": "Jolly Gift", + "Icon": "rbxassetid://87807639552107", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "Tradable": false, + "RequireSave": true, }, - "configName": "Pro Shovel", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.338Z", - "hashShort": "4faa3ee7e341380a", + "configName": "Jolly Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "9adeddd32aab1e17", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Sapphire is the best, but that's just my opinion.", - "DisplayName": "Sapphire Shovel", - "Icon": "rbxassetid://16039332265", - "InventoryTags": [ - "Tools", - ], + "Desc": "Reward for defeating the final drawing boss in the Doodle World! Chance for a HUGE!", + "DisplayName": "Doodle Gift", + "Icon": "rbxassetid://88860297257801", "Rarity": { "Announce": true, "Color": null, @@ -62284,332 +64587,316 @@ Redeem in the Index Machine!", "_id": "Exotic", "_script": null, }, - "Tradable": false, + "RequireSave": true, }, - "configName": "Sapphire Shovel", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.356Z", - "hashShort": "23ae631c3e110acc", + "configName": "Doodle Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "69d069a640a050a1", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "As sharp as crystal!", - "DisplayName": "Amethyst Shovel", - "Icon": "rbxassetid://16039332930", - "InventoryTags": [ - "Tools", - ], + "Desc": "Earned from playing the Pet Games!", + "DisplayName": "Pet Games Gift", + "Icon": "rbxassetid://86173258251252", "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "Tradable": false, + "RequireSave": true, }, - "configName": "Amethyst Shovel", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.342Z", - "hashShort": "15492a2ee3410f94", + "configName": "Pet Games Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "d18c26c07d9f8857", }, { - "category": "Buffs", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Reward your pets! Pets deal damage 10% faster for 5 minutes.", - "DisplayName": "Toy Bone", - "Icon": "rbxassetid://15000808284", - "InventoryTags": [ - "Buffs", - ], + "Desc": "Awarded for being online before the update!", + "DisplayName": "More Hype Egg", + "Icon": "", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "RequireSave": true, }, - "configName": "Toy Bone", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.500Z", - "hashShort": "236c6033520da764", + "configName": "More Hype Egg", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "545dcd11a0ebce83", }, { - "category": "Buffs", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Reward your pets! Pets run 3x as fast for 5 minutes.", - "DisplayName": "Toy Ball", - "Icon": "rbxassetid://15000808391", - "InventoryTags": [ - "Buffs", - ], + "Desc": "Awarded for being online before the update!", + "DisplayName": "Hype Egg #2", + "Icon": "rbxassetid://97453734073296", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "RequireSave": true, }, - "configName": "Toy Ball", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.498Z", - "hashShort": "41d2e3cbf564ba89", + "configName": "Hype Egg 2", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2026-04-25T17:31:32.938Z", + "hashShort": "39370c9045112da8", }, { - "category": "Boosts", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Rain down dozens of TNT into your zone! Loses power after area 40!", - "DisplayName": "TNT Crate", - "Icon": "rbxassetid://15107493489", - "InventoryTags": [ - "Boosts", - ], + "Desc": "Obtained by using a Hellfire Core during the Cannon Tycoon!", + "DisplayName": "Hellfire Gift", + "Icon": "rbxassetid://130668450135546", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "TNT Crate", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.188Z", - "hashShort": "19ce3ccae2e8471d", + "configName": "Hellfire Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "27445dfe8a8cb93a", }, { - "category": "Boosts", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Blow up some Coins! Loses power after area 40!", - "DisplayName": "TNT", - "Icon": "rbxassetid://15107493549", - "InventoryTags": [ - "Boosts", - ], + "Desc": "Open after the update to receive a Hype Egg!", + "DisplayName": "Locked Hype Egg #2!", + "Icon": "rbxassetid://137783546011560", + "Instant": true, + "InstantSound": "rbxassetid://77914312637440", + "MaxAmount": 1, "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "RequireSave": false, + "Tradable": false, }, - "configName": "TNT", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.191Z", - "hashShort": "7f2af518a754eb5e", + "configName": "Locked Hype Egg", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2026-04-25T17:31:32.939Z", + "hashShort": "a5c9caf85ac2f59d", }, { - "category": "Buffs", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Reward your pets! Pets deal damage 25% faster for 10 minutes.", - "DisplayName": "Squeaky Toy", - "Icon": "rbxassetid://15000808163", - "InventoryTags": [ - "Buffs", - ], + "Desc": "Obtained during the Tower Tycoon Valentines Event!", + "DisplayName": "Love Gift", + "Icon": "rbxassetid://111562395194647", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Squeaky Toy", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.499Z", - "hashShort": "991bfaa6df224071", + "configName": "Love Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "16376fcd9a445406", }, { - "category": "Boosts", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "It's a party! Starts a random event in your area!", - "DisplayName": "Party Box", - "Icon": "rbxassetid://15938616590", - "InventoryTags": [ - "Boosts", - ], + "Desc": "Contains OP enchants! Including Tier X and IX!", + "DisplayName": "Mega Enchant Chest", + "Icon": "rbxassetid://117764701926181", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "RequireSave": true, }, - "configName": "Party Box", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.198Z", - "hashShort": "436059daff47eb6f", + "configName": "Mega Enchant Chest", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "275ea799cb45904a", }, { - "category": "Boosts", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Send a comet down from the sky to the area you're standing in!", - "DisplayName": "Comet", - "Icon": "rbxassetid://15000811043", - "InventoryTags": [ - "Boosts", - ], + "Desc": "Contains OP Potions! Including The Cocktail II!", + "DisplayName": "Mega Potion Chest", + "Icon": "rbxassetid://78223799295283", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "RequireSave": true, }, - "configName": "Comet", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.204Z", - "hashShort": "607f9f87bb4d9a4b", + "configName": "Mega Potion Chest", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "db8bfd669d47a73c", }, { - "category": "Boosts", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Starts a Lucky Block Event in your area!", - "DisplayName": "Lucky Block", - "Icon": "rbxassetid://15938616838", - "InventoryTags": [ - "Boosts", - ], + "Desc": "Contains OP ultimates! Including Chest Spell, Tsunami and tons of Ultimate XP Potions!", + "DisplayName": "Mega Ultimate Chest", + "Icon": "rbxassetid://125621489436651", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "RequireSave": true, }, - "configName": "Mini Lucky Block", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.190Z", - "hashShort": "77fa5045676aace2", + "configName": "Mega Ultimate Chest", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "02d40d5839f05db5", }, { - "category": "Boosts", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Starts a Piñata Event in your area!", - "DisplayName": "Piñata", - "Icon": "rbxassetid://15938616489", - "InventoryTags": [ - "Boosts", - ], + "Desc": "Contains OP charms! Including the Exclusive Treasure Charm!", + "DisplayName": "Mega Charm Chest", + "Icon": "rbxassetid://120862195809324", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "RequireSave": true, }, - "configName": "Mini Pinata", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.194Z", - "hashShort": "d77cbedd63e50b1d", + "configName": "Mega Charm Chest", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "b1b7e389f5c2d0fe", }, { - "category": "Miscellaneous", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Use on a pet to give it a name! Just don't name it Joe.", - "DisplayName": "Nametag", - "Icon": "rbxassetid://15000808651", - "InventoryTags": [ - "Miscellaneous", - ], + "Desc": "Contains OP enchants, ultimates, potions, charms and so much MORE!", + "DisplayName": "Mega Loot Chest", + "Icon": "rbxassetid://102254859923515", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "RequireSave": true, }, - "configName": "Nametag", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.205Z", - "hashShort": "cf7969c45c8c9f8d", + "configName": "Mega Boost Chest", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "5ea0251cfbfd6e1e", }, { - "category": "Miscellaneous", - "collection": "MiscItems", + "category": "CardPacks", + "collection": "Lootboxes", "configData": { - "Desc": "Sign a pet with your name!", - "DisplayName": "Pet Signature", - "Icon": "rbxassetid://15000808506", + "Desc": "Contains 5 Fantasy Pack cards! + +Combine cards into pets & chance for a TITANIC card!", + "DisplayName": "Fantasy Pack", + "Icon": "rbxassetid://92535965955987", "InventoryTags": [ - "Miscellaneous", + "Packs", ], + "IsCardPack": true, "Rarity": { "Announce": true, "Color": null, @@ -62622,138 +64909,163 @@ Redeem in the Index Machine!", "_id": "Divine", "_script": null, }, - "Tradable": false, + "RequireSave": true, + "Rolls": 5, + "RollsBoostable": true, }, - "configName": "Pet Signature", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.208Z", - "hashShort": "2fb8e90d671a8426", + "configName": "Fantasy Pack", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "783607d12fdbf5ad", }, { - "category": "Miscellaneous", - "collection": "MiscItems", + "category": "CardPacks", + "collection": "Lootboxes", "configData": { - "Desc": "Makes you swim faster! (no action required)", - "DisplayName": "Snorkel", - "Icon": "rbxassetid://15246142163", + "Desc": "Contains 5 Retro Pack cards! + +Combine cards into pets & chance for a HUGE card!", + "DisplayName": "Retro Pack", + "Icon": "rbxassetid://88966826354072", "InventoryTags": [ - "Miscellaneous", + "Packs", ], + "IsCardPack": true, "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "Tradable": false, + "RequireSave": true, + "Rolls": 5, + "RollsBoostable": true, }, - "configName": "Snorkel", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.204Z", - "hashShort": "cd15ce3af4af219b", + "configName": "Retro Pack", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "03a8c74257066ff6", }, { - "category": "Miscellaneous", - "collection": "MiscItems", + "category": "CardPacks", + "collection": "Lootboxes", "configData": { - "Desc": "💩💩💩", - "DisplayName": "Rainbow Swirl", - "Icon": "rbxassetid://15254924332", + "Desc": "Contains 5 Nightmare Pack cards! + +Combine cards into pets & chance for a HUGE card!", + "DisplayName": "Nightmare Pack", + "Icon": "rbxassetid://94005127802940", "InventoryTags": [ - "Miscellaneous", + "Packs", ], + "IsCardPack": true, "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, + "Rolls": 5, + "RollsBoostable": true, }, - "configName": "Rainbow Swirl", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.207Z", - "hashShort": "6be27a9397709403", + "configName": "Nightmare Pack", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "171f5a99ea5f4d71", }, { - "category": "Miscellaneous", - "collection": "MiscItems", + "category": "CardPacks", + "collection": "Lootboxes", "configData": { - "Desc": "Does absolutely nothing.", - "DisplayName": "Old Boot", - "Icon": "rbxassetid://15254924540", + "Desc": "Contains 5 Superhero Pack cards! + +Combine cards into EXCLUSIVE pets & chance for a TITANIC card!", + "DisplayName": "Superhero Pack", + "Icon": "rbxassetid://122557459853685", "InventoryTags": [ - "Miscellaneous", + "Packs", ], + "IsCardPack": true, "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "RequireSave": true, + "Rolls": 5, }, - "configName": "Old Boot", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.033Z", - "hashShort": "8434f014e769112c", + "configName": "Super Hero Pack", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "503cd2f4c84f0078", }, { - "category": "Miscellaneous", - "collection": "MiscItems", + "category": "CardPacks", + "collection": "Lootboxes", "configData": { - "Desc": "[LAUGH TRACK]", - "DisplayName": "Banana Peel", - "Icon": "rbxassetid://15254924672", + "Desc": "Contains 5 BIG Pack cards! + +Combine cards into pets & chance for a TITANIC card!", + "DisplayName": "BIG Pack", + "Icon": "rbxassetid://138485510461327", "InventoryTags": [ - "Miscellaneous", + "Packs", ], + "IsCardPack": true, "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Superior", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 8, + "_id": "Superior", "_script": null, }, + "RequireSave": true, + "Rolls": 5, + "RollsBoostable": true, }, - "configName": "Banana Peel", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.185Z", - "hashShort": "61d0d9d4bda68ff3", + "configName": "BIG Pack", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "a7238b0e61204129", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "CardPacks", + "collection": "Lootboxes", "configData": { - "Desc": "Slingy the slingshot is perfect for popping balloons! + "Desc": "Contains 5 Pog Pack cards! -Click to equip!", - "DisplayName": "Slingy", - "Icon": "rbxassetid://15278596130", +Combine cards into pets & chance for a HUGE card!", + "DisplayName": "Pog Pack", + "Icon": "rbxassetid://99750379530554", "InventoryTags": [ - "Tools", + "Packs", ], + "IsCardPack": true, "Rarity": { "Announce": false, "Color": null, @@ -62766,52 +65078,61 @@ Click to equip!", "_id": "Mythical", "_script": null, }, - "Tradable": false, + "RequireSave": true, + "Rolls": 5, + "RollsBoostable": true, }, - "configName": "Slingshot", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.352Z", - "hashShort": "79b72ef5801de115", + "configName": "Pog Pack", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "89dd54e888c6ce6b", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "CardPacks", + "collection": "Lootboxes", "configData": { - "Desc": "Plants love water and grow faster! Lasts 20 minutes!", - "DisplayName": "Watering Can", - "Icon": "rbxassetid://15555104581", + "Desc": "Contains 5 Meme Pack cards! + +Combine cards into EXCLUSIVE pets & chance for a TITANIC card!", + "DisplayName": "Meme Pack", + "Icon": "rbxassetid://137628683001800", "InventoryTags": [ - "Tools", + "Packs", ], + "IsCardPack": true, "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "Tradable": false, + "RequireSave": true, + "Rolls": 5, }, - "configName": "Watering Can", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.346Z", - "hashShort": "f83b84f57a63ae42", + "configName": "Meme Pack", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "2ef922ea649dfd99", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "CardPacks", + "collection": "Lootboxes", "configData": { - "Desc": "Plants love gold water and grow faster! Lasts 1 hour!", - "DisplayName": "Golden Watering Can", - "Icon": "rbxassetid://15555104643", + "Desc": "Contains 5 Axolotl Pack cards! + +Combine cards into pets & chance for a HUGE card!", + "DisplayName": "Axolotl Pack", + "Icon": "rbxassetid://88730452047808", "InventoryTags": [ - "Tools", + "Packs", ], + "IsCardPack": true, "Rarity": { "Announce": true, "Color": null, @@ -62824,453 +65145,435 @@ Click to equip!", "_id": "Exotic", "_script": null, }, - "Tradable": true, + "RequireSave": true, + "Rolls": 5, + "RollsBoostable": true, }, - "configName": "Golden Watering Can", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.341Z", - "hashShort": "7c574aa765d34350", + "configName": "Axolotl Pack", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "e7c36d76725c6d9e", }, { - "category": "Miscellaneous", - "collection": "MiscItems", + "category": "CardPacks", + "collection": "Lootboxes", "configData": { - "Desc": "Instantly grow a plant!", - "DisplayName": "Insta-Plant Capsule", - "Icon": "rbxassetid://15554896248", + "Desc": "Contains 5 Ninja Pack cards! + +Combine cards into pets & chance for a HUGE card!", + "DisplayName": "Ninja Pack", + "Icon": "rbxassetid://136542992100223", "InventoryTags": [ - "Farming", + "Packs", ], + "IsCardPack": true, "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, + "RequireSave": true, + "Rolls": 5, + "RollsBoostable": true, }, - "configName": "Insta Plant Capsule", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.188Z", - "hashShort": "0ac3a22da296a281", + "configName": "Ninja Pack", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "b6c53854c13e7526", }, { - "category": "Buffs", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "A Christmas treat! Pets deal damage 10% faster for 5 minutes.", - "DisplayName": "Christmas Cookie", - "Icon": "rbxassetid://15636387872", - "InventoryTags": [ - "Buffs", - ], + "Desc": "Obtained during the St. Patrick's Raid Event!", + "DisplayName": "Lucky Gift", + "Icon": "rbxassetid://82101319883195", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Christmas Cookie", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.510Z", - "hashShort": "65fc43af229d89fe", + "configName": "Lucky Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "50fd07fe42265a98", }, { - "category": "Buffs", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "A Christmas treat! You and your pets run 50% faster for 5 minutes.", - "DisplayName": "Hot Cocoa", - "Icon": "rbxassetid://15636387987", - "InventoryTags": [ - "Buffs", - ], + "Desc": "Rewarded to the top 500 clans in clan battles! Chance for Huge Lightning Bat!", + "DisplayName": "Clan Gift #2", + "Icon": "rbxassetid://126839917322650", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Hot Cocoa", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.499Z", - "hashShort": "0d36d1e0e759fcb4", + "configName": "Clan Gift 2", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "ac6c8748def1ad2d", }, { - "category": "Discontinued", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Place on a tree in Holiday World and leave a special message!", - "Discontinued": true, - "DisplayName": "Blue Christmas Ornament", - "Icon": "rbxassetid://15628075380", - "InventoryTags": [ - "Event", - ], + "Desc": "Obtained during the Slime Factory Event!", + "DisplayName": "Slime Gift", + "Icon": "rbxassetid://123257637459556", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Blue Christmas Ornament", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.786Z", - "hashShort": "ed9c5b74fbc60dcb", + "configName": "Slime Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "2570a08b7dd7cf33", }, { - "category": "Discontinued", - "collection": "MiscItems", + "category": "CardPacks", + "collection": "Lootboxes", "configData": { - "Desc": "Place on a tree in Holiday World and leave a special message!", - "Discontinued": true, - "DisplayName": "Gold Christmas Ornament", - "Icon": "rbxassetid://15621569759", + "Desc": "Contains 5 Anime Pack cards! + +Combine cards into EXCLUSIVE pets & chance for a TITANIC card!", + "DisplayName": "Anime Pack", + "Icon": "rbxassetid://115390480422233", "InventoryTags": [ - "Event", + "Packs", ], + "IsCardPack": true, "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "RequireSave": true, + "Rolls": 5, }, - "configName": "Gold Christmas Ornament", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.646Z", - "hashShort": "c6a7eee2785f732f", + "configName": "Anime Pack", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "71f3722ceb6aeb84", }, { - "category": "Discontinued", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Place on a tree in Holiday World and leave a special message!", - "Discontinued": true, - "DisplayName": "Green Christmas Ornament", - "Icon": "rbxassetid://15621569679", - "InventoryTags": [ - "Event", - ], + "Desc": "Obtained by winning the Easter Contest!", + "DisplayName": "Titanic Easter Gift", + "Icon": "rbxassetid://101374206073893", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Superior", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 8, + "_id": "Superior", "_script": null, }, + "RequireSave": true, }, - "configName": "Green Christmas Ornament", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.633Z", - "hashShort": "151751840d8b6422", + "configName": "Titanic Easter Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "b39c48e0449e96c1", }, { - "category": "Discontinued", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Place on a tree in Holiday World and leave a special message!", - "Discontinued": true, - "DisplayName": "Pink Christmas Ornament", - "Icon": "rbxassetid://15628075235", - "InventoryTags": [ - "Event", - ], + "Desc": "Obtained by participating in the Easter Contest!", + "DisplayName": "Huge Easter Gift", + "Icon": "rbxassetid://83528196707461", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Pink Christmas Ornament", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.632Z", - "hashShort": "42c7d42c0eae73ef", + "configName": "Huge Easter Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "a5f700e31b4c96ce", }, { - "category": "Discontinued", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Place on a tree in Holiday World and leave a special message!", - "Discontinued": true, - "DisplayName": "Red Christmas Ornament", - "Icon": "rbxassetid://15621569543", - "InventoryTags": [ - "Event", - ], + "Desc": "Open for the best high tier fishing loot!", + "DisplayName": "Deep Sea Treasure Chest", + "Icon": "rbxassetid://134556771269079", + "Instant": true, "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, + "Rolls": 4, }, - "configName": "Red Christmas Ornament", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.795Z", - "hashShort": "0992d588e08387e9", + "configName": "Deep Sea Treasure Chest", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "c67d8de65c79c686", }, { - "category": "Discontinued", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Place on a tree in Holiday World and leave a special message!", - "Discontinued": true, - "DisplayName": "Silver Christmas Ornament", - "Icon": "rbxassetid://15628075059", - "InventoryTags": [ - "Event", - ], + "Desc": "Reward for participating in the Fantasy World Time Trials!", + "DisplayName": "Time Trial Gift", + "Icon": "rbxassetid://123771590826264", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, + "RequireSave": true, }, - "configName": "Silver Christmas Ornament", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.797Z", - "hashShort": "eb33392de40a1b99", + "configName": "Time Trial Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "b9f3ae74037aaad9", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "The ultimate snowball throwing machine! - -Click to equip!", - "DisplayName": "Snowball Launcher", - "Icon": "rbxassetid://15636482701", - "InventoryTags": [ - "Tools", - ], + "Desc": "Earned from scoring points in the Infinite Basketball Mode! Chance for a HUGE!", + "DisplayName": "Basketball Gift", + "Icon": "rbxassetid://98133353621098", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Snowball Launcher", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.351Z", - "hashShort": "159074942ab0d0ac", + "configName": "Basketball Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "8d7ba6d2ead288c4", }, { - "category": "Miscellaneous", - "collection": "MiscItems", + "category": "CardPacks", + "collection": "Lootboxes", "configData": { - "Desc": "Use as ammo for the Firework Cannon!", - "DisplayName": "Fireworks", - "Icon": "rbxassetid://15803238824", + "Desc": "Contains 5 Ghostly Pack cards! + +Combine cards into EXCLUSIVE pets & chance for a TITANIC card!", + "DisplayName": "Ghostly Pack", + "Icon": "rbxassetid://75735723611442", "InventoryTags": [ - "Miscellaneous", + "Packs", ], + "IsCardPack": true, "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "RequireSave": true, + "Rolls": 5, }, - "configName": "Fireworks", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.206Z", - "hashShort": "8e5bcea966090959", + "configName": "Ghostly Pack", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "090b6ef30a4794d4", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Careful not to set anything on fire! - -Click to equip!", - "DisplayName": "Firework Cannon", - "Icon": "rbxassetid://15803239074", - "InventoryTags": [ - "Tools", - ], + "Desc": "Earned from scoring points in the Infinite Basketball Mode! Chance for a HUGE!", + "DisplayName": "Cosmic Basketball Gift", + "Icon": "rbxassetid://128100365905918", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Firework Cannon", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.507Z", - "hashShort": "86d868eabc0abeb0", + "configName": "Cosmic Basketball Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "ac99c462dae4023b", }, { - "category": "Miscellaneous", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Use as ammo for the Snowball Launcher!", - "DisplayName": "Snowball", - "Icon": "rbxassetid://15636387722", - "InventoryTags": [ - "Miscellaneous", - ], + "Desc": "Earned from playing Tower Defense infinity mode!", + "DisplayName": "Tower Defense Gift", + "Icon": "rbxassetid://73523661611795", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Snowball", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.207Z", - "hashShort": "e339a858a75b5f6f", + "configName": "Tower Defense Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "a42b14bd85e1e299", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Can be filled with Magic!", - "DisplayName": "Bucket", - "Icon": "rbxassetid://15938616333", - "InventoryTags": [ - "Tools", - ], + "Desc": "Earned from playing Tower Defense infinity mode!", + "DisplayName": "Magma Tower Defense Gift", + "Icon": "rbxassetid://91692504768423", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Bucket", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.494Z", - "hashShort": "2be8603133009187", + "configName": "Tower Defense Gift 2", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "542f90c6ca38a5df", }, { - "category": "Miscellaneous", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "A bucket filled with magic! Obtainable in the Advanced Digsite minigame.", - "DisplayName": "Bucket O' Magic", - "Icon": "rbxassetid://15938616124", - "InventoryTags": [ - "Miscellaneous", - ], + "Desc": "Earned from playing Tower Defense AFK mode!", + "DisplayName": "Matrix Tower Defense Gift", + "Icon": "rbxassetid://140098114840649", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Bucket O' Magic", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.206Z", - "hashShort": "d953699cc99dcf2b", + "configName": "Tower Defense Gift 3", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "1d31b4f86a11af24", }, { - "category": "Miscellaneous", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Shards filled with magic! Obtainable in the Advanced Fishing minigame", - "DisplayName": "Magic Shard", - "Icon": "rbxassetid://15938615522", - "InventoryTags": [ - "Miscellaneous", - ], + "Desc": "Earned from scoring points in the Muscle Race! Chance for a HUGE!", + "DisplayName": "Gym Gift", + "Icon": "rbxassetid://122519840679361", "Rarity": { "Announce": true, "Color": null, @@ -63283,162 +65586,72 @@ Click to equip!", "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Magic Shard", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.032Z", - "hashShort": "0d537d98ffc5cceb", + "configName": "Gym Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "90a0c8aa0a445c3a", }, { - "category": "Boosts", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Place in an area to increase breakable respawn rate by 50%! Lasts 5 minutes!", - "DisplayName": "Sprinkler", - "Icon": "rbxassetid://16467241128", - "InventoryTags": [ - "Boosts", - ], + "Desc": "Earned from scoring points in the Muscle Race! Chance for a HUGE!", + "DisplayName": "Buff Gym Gift", + "Icon": "rbxassetid://111526967897666", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Breakable Sprinkler", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.201Z", - "hashShort": "23ab4bc8d48a1972", + "configName": "Buff Gym Gift", + "dateCreated": "2025-07-05T23:23:44.135Z", + "dateModified": "2025-07-05T23:23:44.135Z", + "hashShort": "227017f50b5a9a5b", }, { - "category": "Keys", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Used to unlock the Tech Chest!", - "DisplayName": "Tech Key", - "Icon": "rbxassetid://16290745791", - "InventoryTags": [ - "Keys", - ], + "Desc": "Obtained during the Summer Block Party Event!", + "DisplayName": "Sun Angelus Gift", + "Icon": "rbxassetid://93164862857884", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Tech Key", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.351Z", - "hashShort": "527a717383c32c90", + "configName": "Sun Angelus Gift", + "dateCreated": "2025-07-12T16:08:43.349Z", + "dateModified": "2025-07-19T17:28:54.110Z", + "hashShort": "e1137cd8d4e047f7", }, { - "category": "Keys", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "The lower half to the Tech Key. Combine this with the upper half!", - "DisplayName": "Tech Key: Lower Half", - "Icon": "rbxassetid://16290745686", - "InventoryTags": [ - "Keys", - ], - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - }, - "configName": "Tech Key Lower Half", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.352Z", - "hashShort": "7d8987692c9958b6", - }, - { - "category": "Keys", - "collection": "MiscItems", - "configData": { - "Desc": "The upper half to the Tech Key. Combine this with the lower half!", - "DisplayName": "Tech Key: Upper Half", - "Icon": "rbxassetid://16290745565", - "InventoryTags": [ - "Keys", - ], - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - }, - "configName": "Tech Key Upper Half", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.349Z", - "hashShort": "26ddb43558b88079", - }, - { - "category": "Tools", - "collection": "MiscItems", - "configData": { - "Desc": "Destroy one charm on your pet!", - "DisplayName": "Charm Hammer", - "Icon": "rbxassetid://16396229292", - "InventoryTags": [ - "Charms", - ], - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - }, - "configName": "Charm Hammer", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.345Z", - "hashShort": "5c47ba77fc8b2f35", - }, - { - "category": "Tools", - "collection": "MiscItems", - "configData": { - "Desc": "Extract one charm from a pet and add it back into your inventory!", - "DisplayName": "Charm Chisel", - "Icon": "rbxassetid://16396229151", - "InventoryTags": [ - "Charms", - ], + "Desc": "Made from combining Tropical Flowers. Chance for a HUGE!", + "DisplayName": "Tropical Gift", + "Icon": "rbxassetid://102925568846507", "Rarity": { "Announce": true, "Color": null, @@ -63451,78 +65664,20 @@ Click to equip!", "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Charm Chisel", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.354Z", - "hashShort": "15b25eb65b75cac9", - }, - { - "category": "Vouchers", - "collection": "MiscItems", - "configData": { - "Desc": "Redeem to spin the Tech Spinny Wheel! [World 2 Required]", - "DisplayName": "Tech Spinny Wheel Ticket", - "Icon": "rbxassetid://16481320320", - "InventoryTags": [ - "Vouchers", - ], - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - }, - "configName": "Tech Spinny Wheel Ticket", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.492Z", - "hashShort": "3038e8b8305ec607", - }, - { - "category": "Miscellaneous", - "collection": "MiscItems", - "configData": { - "Desc": "Used to play the Claw Machine!", - "DisplayName": "Arcade Token", - "Icon": "rbxassetid://16756837238", - "InventoryTags": [ - "Miscellaneous", - ], - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - }, - "configName": "Arcade Token", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.200Z", - "hashShort": "04730c45bc1edaae", + "configName": "Tropical Gift", + "dateCreated": "2025-07-12T16:08:43.356Z", + "dateModified": "2025-07-12T16:08:43.356Z", + "hashShort": "12bc67dde9620967", }, { - "category": "Miscellaneous", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Used to empower enchants! Created at the Enchant Empowering Machine!", - "DisplayName": "Enchant Essence", - "Icon": "rbxassetid://16847071561", - "InventoryTags": [ - "Miscellaneous", - ], + "Desc": "itsy bitsy spider climbed up the bag again!", + "DisplayName": "Spider Gift", + "Icon": "rbxassetid://126429650694857", "Rarity": { "Announce": true, "Color": null, @@ -63535,194 +65690,20 @@ Click to equip!", "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Enchant Essence", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.206Z", - "hashShort": "f631ac18e4e59972", - }, - { - "category": "Boosts", - "collection": "MiscItems", - "configData": { - "Desc": "Drop an Item Jar in the area you're standing in for items!", - "DisplayName": "Basic Item Jar", - "Icon": "rbxassetid://16717382310", - "InventoryTags": [ - "Boosts", - ], - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - }, - "configName": "Basic Item Jar", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.187Z", - "hashShort": "54ceba29f68cbc92", - }, - { - "category": "Gifts", - "collection": "MiscItems", - "configData": { - "Desc": "Open for a ton of random enchants!", - "DisplayName": "Large Bundle O' Enchants", - "Icon": "rbxassetid://16717382051", - "InventoryTags": [ - "Gifts", - ], - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - }, - "configName": "Large Enchant Bundle", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.191Z", - "hashShort": "a463fa91edf7b7c7", - }, - { - "category": "Gifts", - "collection": "MiscItems", - "configData": { - "Desc": "Open for a ton of random potions!", - "DisplayName": "Large Bundle O' Potions", - "Icon": "rbxassetid://16717381901", - "InventoryTags": [ - "Gifts", - ], - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - }, - "configName": "Large Potion Bundle", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.184Z", - "hashShort": "963a66798b05b1e2", - }, - { - "category": "Gifts", - "collection": "MiscItems", - "configData": { - "Desc": "Open for random fruit!", - "DisplayName": "Bundle O' Fruit", - "Icon": "rbxassetid://16717381443", - "InventoryTags": [ - "Gifts", - ], - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - }, - "configName": "Fruit Bundle", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.343Z", - "hashShort": "b180dd20e1e0193e", - }, - { - "category": "Vouchers", - "collection": "MiscItems", - "configData": { - "AltIcon": "rbxassetid://16756922746", - "Desc": "Earned for completing Area Quests! - -Redeem at the Area 140 Quest Merchant!", - "DisplayName": "Quest Medal", - "Icon": "rbxassetid://16756918013", - "InventoryTags": [ - "Vouchers", - ], - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, - }, - "Tradable": false, - }, - "configName": "Quest Medal", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.509Z", - "hashShort": "8c01d0a214489955", - }, - { - "category": "Vouchers", - "collection": "MiscItems", - "configData": { - "Desc": "Use this to gain an extra Exclusive Daycare enroll slot!", - "DisplayName": "Exclusive Daycare Slot Voucher", - "Icon": "rbxassetid://16756631444", - "InventoryTags": [ - "Vouchers", - ], - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - }, - "configName": "Exclusive Daycare Slot Voucher", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.501Z", - "hashShort": "361416896bd782a6", + "configName": "Spider Gift", + "dateCreated": "2025-10-18T17:03:25.431Z", + "dateModified": "2025-10-18T17:03:25.431Z", + "hashShort": "293ce1f823b4dacc", }, { - "category": "Gifts", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Open for the best high tier loot!", - "DisplayName": "Rainbow Mini Chest", - "Icon": "rbxassetid://17024878999", - "InventoryTags": [ - "Gifts", - ], + "Desc": "Earned during Admin Abuse for the Halloween Event! Chance for a HUGE or TITANIC!", + "DisplayName": "Halloween Lucky Block Gift", + "Icon": "rbxassetid://96953600545455", "Rarity": { "Announce": true, "Color": null, @@ -63735,22 +65716,20 @@ Redeem at the Area 140 Quest Merchant!", "_id": "Celestial", "_script": null, }, + "RequireSave": true, }, - "configName": "Rainbow Mini Chest", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.344Z", - "hashShort": "c69d2463cac40a84", + "configName": "Halloween Lucky Block Gift", + "dateCreated": "2025-10-18T17:03:25.446Z", + "dateModified": "2025-11-22T17:15:27.078Z", + "hashShort": "746b032fec7225b3", }, { - "category": "Keys", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Used to gain access to the Treasure Hideout minigame!", - "DisplayName": "Treasure Hideout Key", - "Icon": "rbxassetid://16992800008", - "InventoryTags": [ - "Keys", - ], + "Desc": "Thank you Santa!", + "DisplayName": "Santa Gift", + "Icon": "rbxassetid://131570987085851", "Rarity": { "Announce": true, "Color": null, @@ -63763,111 +65742,46 @@ Redeem at the Area 140 Quest Merchant!", "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Treasure Hideout Key", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.338Z", - "hashShort": "bc13216a89d9e44d", - }, - { - "category": "Keys", - "collection": "MiscItems", - "configData": { - "Desc": "The lower half to the Treasure Hideout Key. Combine this with the upper half!", - "DisplayName": "Treasure Hideout Key: Lower Half", - "Icon": "rbxassetid://16992799849", - "InventoryTags": [ - "Keys", - ], - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, - }, - }, - "configName": "Treasure Hideout Key Lower Half", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.343Z", - "hashShort": "f7158f1e3f1baf24", - }, - { - "category": "Keys", - "collection": "MiscItems", - "configData": { - "Desc": "The upper half to the Treasure Hideout Key. Combine this with the lower half!", - "DisplayName": "Treasure Hideout Key: Upper Half", - "Icon": "rbxassetid://16992799743", - "InventoryTags": [ - "Keys", - ], - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, - }, - }, - "configName": "Treasure Hideout Key Upper Half", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.348Z", - "hashShort": "edb0b9a34a5d6c8c", + "configName": "Santa Gift", + "dateCreated": "2025-12-20T17:55:27.512Z", + "dateModified": "2025-12-20T17:55:27.512Z", + "hashShort": "23df0060f3e34a7f", }, { - "category": "Buffs", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Beware! Consuming this improves your drops from mini games by 100%!", - "DisplayName": "Nightmare Fuel", - "Icon": "rbxassetid://17298505497", - "InventoryTags": [ - "Buffs", - ], + "Desc": "Sugary and minty fresh!", + "DisplayName": "Candycane Gift", + "Icon": "rbxassetid://129255617416340", "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Nightmare Fuel", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.500Z", - "hashShort": "1a04474753d8522e", + "configName": "Candycane Gift", + "dateCreated": "2025-12-20T17:55:27.528Z", + "dateModified": "2025-12-20T17:55:27.528Z", + "hashShort": "b6423fb591e122de", }, { - "category": "Buffs", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Glitched into the game! - -Temporarily increases: -- Coins by 250% -- Diamonds by 25% -- Egg luck by 400%", - "DisplayName": "Glitched Drive", - "Icon": "rbxassetid://17296978433", - "InventoryTags": [ - "Buffs", - ], + "Desc": "Special gift for attending the 2026 New Year's Party! Chance for Huge!", + "DisplayName": "2026 New Year's Gift", + "Icon": "rbxassetid://132620113371512", "Rarity": { "Announce": true, "Color": null, @@ -63880,178 +65794,154 @@ Temporarily increases: "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Glitched Drive", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.499Z", - "hashShort": "2c2200625fefb3dc", + "configName": "2026 New Years Gift", + "dateCreated": "2026-03-14T15:52:29.885Z", + "dateModified": "2026-03-14T15:52:29.885Z", + "hashShort": "b58ce9f43f110c6b", }, { - "category": "Discontinued", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Can be combined using the Glitch Computer to turn into Glitched Gifts! - -Worth 1 point!", - "Discontinued": true, - "DisplayName": "Basic Glitch Core", - "Icon": "rbxassetid://17296978822", - "InventoryTags": [ - "Event", - ], + "Desc": "Obtained during the St. Patrick's Raid Event!", + "DisplayName": "Horseshoe Gift", + "Icon": "rbxassetid://128588898475756", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Basic Glitch Core", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.511Z", - "hashShort": "ffa66c4c53fd7a7e", + "configName": "Horseshoe Gift", + "dateCreated": "2026-03-14T15:52:29.892Z", + "dateModified": "2026-03-14T15:52:29.892Z", + "hashShort": "5e643fcb9e2ab71d", }, { - "category": "Discontinued", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Can be combined using the Glitch Computer to turn into Glitched Gifts! - -Worth 5 points!", - "Discontinued": true, - "DisplayName": "Rare Glitch Core", - "Icon": "rbxassetid://17296979040", - "InventoryTags": [ - "Event", - ], + "Desc": "Obtained during the 2026 Spring Event!", + "DisplayName": "Blossom Gift", + "Icon": "rbxassetid://75709922649471", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Rare Glitch Core", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.647Z", - "hashShort": "4839a35025bff442", + "configName": "Blossom Gift", + "dateCreated": "2026-04-18T15:56:48.683Z", + "dateModified": "2026-04-18T15:56:48.683Z", + "hashShort": "0f5cafc0f87eee72", }, { - "category": "Discontinued", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Can be combined using the Glitch Computer to turn into Glitched Gifts! - -Worth 20 points!", - "Discontinued": true, - "DisplayName": "Epic Glitch Core", - "Icon": "rbxassetid://17296979284", - "InventoryTags": [ - "Event", - ], + "Desc": "Open after the update to receive a Hype Egg!", + "DisplayName": "Locked Hype Egg #3!", + "Icon": "rbxassetid://134782006786438", + "Instant": true, + "InstantSound": "rbxassetid://77914312637440", + "MaxAmount": 1, "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "RequireSave": false, + "Tradable": false, }, - "configName": "Epic Glitch Core", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.642Z", - "hashShort": "c0e72476f7162067", + "configName": "Locked Hype Egg 3", + "dateCreated": "2026-04-25T17:31:32.941Z", + "dateModified": "2026-04-25T17:31:32.941Z", + "hashShort": "ecefdbfd99338ddc", }, { - "category": "Discontinued", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Can be combined using the Glitch Computer to turn into Glitched Gifts! - -Worth 100 points!", - "Discontinued": true, - "DisplayName": "Legendary Glitch Core", - "Icon": "rbxassetid://17296978675", - "InventoryTags": [ - "Event", - ], + "Desc": "Awarded for being online before the update!", + "DisplayName": "Hype Egg #3", + "Icon": "rbxassetid://78337968696120", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, + "RequireSave": true, }, - "configName": "Legendary Glitch Core", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.639Z", - "hashShort": "a9b199138822bb0a", + "configName": "Hype Egg 3", + "dateCreated": "2026-04-25T17:31:32.952Z", + "dateModified": "2026-04-25T17:31:32.952Z", + "hashShort": "8856c2256bd9ab72", }, { - "category": "Discontinued", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Can be combined using the Glitch Computer to turn into Glitched Gifts! - -Worth 500 points!", - "Discontinued": true, - "DisplayName": "Mythical Glitch Core", - "Icon": "rbxassetid://17296978562", - "InventoryTags": [ - "Event", - ], + "Desc": "Reward for participating in the Fantasy World Time Trials!", + "DisplayName": "Time Trial Gift #2", + "Icon": "rbxassetid://102646658598290", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Superior", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 8, + "_id": "Superior", "_script": null, }, + "RequireSave": true, }, - "configName": "Mythical Glitch Core", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.634Z", - "hashShort": "e78a8f26bef65992", + "configName": "Time Trial Gift 2", + "dateCreated": "2026-05-02T17:32:37.069Z", + "dateModified": "2026-05-02T17:32:37.069Z", + "hashShort": "746f9afdcfe02cdb", }, { - "category": "Discontinued", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Access locked backrooms for loot! Found in the backrooms!", - "Discontinued": true, - "DisplayName": "Backrooms Key", - "Icon": "rbxassetid://17372987603", - "InventoryTags": [ - "Event", - ], + "Desc": "Reward from Fantasy World Time Trials! Combine these to upgrade.", + "DisplayName": "X-Large Fantasy Gift", + "Icon": "rbxassetid://104261672235988", "Rarity": { "Announce": false, "Color": null, @@ -64064,53 +65954,48 @@ Worth 500 points!", "_id": "Mythical", "_script": null, }, + "RequireSave": true, "Tradable": false, }, - "configName": "Backrooms Key", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.802Z", - "hashShort": "63c1a938cb1f1dff", + "configName": "X-Large Fantasy Present", + "dateCreated": "2026-05-02T17:32:37.068Z", + "dateModified": "2026-05-02T17:32:37.068Z", + "hashShort": "b90f03759e82f4ac", }, { - "category": "Discontinued", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Access locked deep backrooms for loot! Found in the DEEP backrooms!", - "Discontinued": true, - "DisplayName": "Deep Backrooms Key", - "Icon": "rbxassetid://17440887836", - "InventoryTags": [ - "Event", - ], + "Desc": "Reward from Fantasy World Time Trials! Combine these to upgrade.", + "DisplayName": "Small Fantasy Gift", + "Icon": "rbxassetid://72303448407582", "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, + "RequireSave": true, "Tradable": false, }, - "configName": "Deep Backrooms Key", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.788Z", - "hashShort": "6d30c4f4cb265a79", + "configName": "Small Fantasy Present", + "dateCreated": "2026-05-02T17:32:37.066Z", + "dateModified": "2026-05-02T17:32:37.066Z", + "hashShort": "2b5bd72b3b99e1ff", }, { - "category": "Keys", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Unlocks cells in Prison World for a HUGE pet chance! Drops randomly!", - "DisplayName": "Prison Key", - "Icon": "rbxassetid://17486584661", - "InventoryTags": [ - "Keys", - ], + "Desc": "Reward from Fantasy World Time Trials! Combine these to upgrade.", + "DisplayName": "Large Fantasy Gift", + "Icon": "rbxassetid://134076816804742", "Rarity": { "Announce": false, "Color": null, @@ -64123,106 +66008,48 @@ Worth 500 points!", "_id": "Legendary", "_script": null, }, + "RequireSave": true, + "Tradable": false, }, - "configName": "Prison Key", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.355Z", - "hashShort": "d9805f54db2cc7d9", - }, - { - "category": "Keys", - "collection": "MiscItems", - "configData": { - "Desc": "Unlocks cells in Prison World for 10x HUGE pet chance! Drops randomly!", - "DisplayName": "Golden Prison Key", - "Icon": "rbxassetid://17486584765", - "InventoryTags": [ - "Keys", - ], - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, - "configName": "Golden Prison Key", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.353Z", - "hashShort": "3af26db1667c0f65", - }, - { - "category": "Keys", - "collection": "MiscItems", - "configData": { - "Desc": "The upper half to the Void Key. Combine this with the lower half!", - "DisplayName": "Void Key: Upper Half", - "Icon": "rbxassetid://17496073194", - "InventoryTags": [ - "Keys", - ], - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - }, - "configName": "Void Key Upper Half", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.335Z", - "hashShort": "0ac2787764db0954", + "configName": "Large Fantasy Present", + "dateCreated": "2026-05-02T17:32:37.070Z", + "dateModified": "2026-05-02T17:32:37.070Z", + "hashShort": "b7507e6d33283920", }, { - "category": "Keys", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "The lower half to the Void Key. Combine this with the upper half!", - "DisplayName": "Void Key: Lower Half", - "Icon": "rbxassetid://17496073368", - "InventoryTags": [ - "Keys", - ], + "Desc": "Reward from Fantasy World Time Trials! Combine these to upgrade.", + "DisplayName": "Medium Fantasy Gift", + "Icon": "rbxassetid://96668834913455", "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, + "RequireSave": true, + "Tradable": false, }, - "configName": "Void Key Lower Half", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.357Z", - "hashShort": "563450fc82760628", + "configName": "Medium Fantasy Present", + "dateCreated": "2026-05-02T17:32:37.074Z", + "dateModified": "2026-05-02T17:32:37.074Z", + "hashShort": "98399218b06c8d1f", }, { - "category": "Keys", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Used to unlock the Void Chest!", - "DisplayName": "Void Key", - "Icon": "rbxassetid://17496073535", - "InventoryTags": [ - "Keys", - ], + "Desc": "Reward from Fantasy World Time Trials! Combine these to upgrade.", + "DisplayName": "Titanic Fantasy Gift", + "Icon": "rbxassetid://96423077128415", "Rarity": { "Announce": true, "Color": null, @@ -64235,815 +66062,2562 @@ Worth 500 points!", "_id": "Exotic", "_script": null, }, + "RequireSave": true, + "Tradable": false, }, - "configName": "Void Key", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.350Z", - "hashShort": "ca5a87b2024cf2ae", + "configName": "Titanic Fantasy Present", + "dateCreated": "2026-05-02T17:32:37.067Z", + "dateModified": "2026-05-02T17:32:37.067Z", + "hashShort": "0ef9643a0c0b70d8", }, { - "category": "Vouchers", - "collection": "MiscItems", + "category": "Lootboxes", + "collection": "Lootboxes", "configData": { - "Desc": "Redeem to spin the Void Spinny Wheel! [World 3 Required]", - "DisplayName": "Void Spinny Wheel Ticket", - "Icon": "rbxassetid://17496073736", - "InventoryTags": [ - "Vouchers", - ], + "Desc": "Earned from scoring points in the Infinite Soccer Mode! Chance for a HUGE!", + "DisplayName": "Soccer Gift", + "Icon": "rbxassetid://86942340777285", "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "RequireSave": true, }, - "configName": "Void Spinny Wheel Ticket", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.501Z", - "hashShort": "e17a6950a1cea2d0", + "configName": "Soccer Gift", + "dateCreated": "2026-06-27T16:07:13.274Z", + "dateModified": "2026-06-27T16:07:13.274Z", + "hashShort": "1a49f8804af87189", }, - { - "category": "Tools", - "collection": "MiscItems", - "configData": { - "Desc": "Capable of drenching players! + ], + "status": "ok", +} +`; -Click to equip!", - "DisplayName": "Water Blaster", - "Icon": "rbxassetid://17688308367", - "InventoryTags": [ - "Tools", - ], - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - }, - "configName": "Water Gun", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.340Z", - "hashShort": "7453dc888da10601", - }, +exports[`Pet Simulator Public Live API Test Mastery shape 1`] = ` +{ + "data": [ { - "category": "Miscellaneous", - "collection": "MiscItems", + "category": "Mastery", + "collection": "Mastery", "configData": { - "Desc": "Can be combined into Summer Gifts using the Seashell Machine!", - "DisplayName": "Seashell", - "Icon": "rbxassetid://17671375505", - "InventoryTags": [ - "Miscellaneous", - ], - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, + "Desc": "Gain XP by purchasing items through Vending Machines, Merchants, etc.", + "FFlag": "Mastery_Economy", + "Icon": "rbxassetid://15092229110", + "Name": "Economy", + "Perks": { + "AccidentalVending": [ + { + "Level": 80, + "Text": "Vending Machines have a 20% chance to give double items", + "Title": "Accidental Vending", + }, + ], + "AutoVending": [ + { + "Level": 99, + "Text": "Automatically buys Vending Machines that cost coins", + "Title": "Auto Vending", + }, + ], + "BetterDeals": [ + { + "Level": 50, + "Power": 2, + "Text": "2x Merchant luck odds", + "Title": "Better Offers", + }, + ], + "BuyFullVendingStock": [ + { + "Level": 10, + "Text": "Option to buy entire Vending Machine stock", + "Title": "Max Vending", + }, + ], + "CheaperMerchants": [ + { + "Level": 30, + "Power": 15, + "Text": "-15% Merchant prices", + "Title": "Cheaper Merchants I", + }, + { + "Level": 80, + "Power": 30, + "Text": "-30% Merchant prices", + "Title": "Cheaper Merchants II", + }, + { + "Level": 99, + "Power": 50, + "Text": "-50% Merchant prices", + "Title": "Cheaper Merchants III", + }, + ], + "CheaperVending": [ + { + "Level": 20, + "Power": 15, + "Text": "-15% Vending Machine prices", + "Title": "Cheaper Vending I", + }, + { + "Level": 70, + "Power": 30, + "Text": "-30% Vending Machine prices", + "Title": "Cheaper Vending II", + }, + { + "Level": 90, + "Power": 50, + "Text": "-50% Vending Machine prices", + "Title": "Cheaper Vending III", + }, + ], + "FasterMerchants": [ + { + "Level": 50, + "Power": 1.5, + "Text": "1.5x Merchant restock speed", + "Title": "Faster Merchants I", + }, + { + "Level": 90, + "Power": 3, + "Text": "3x Merchant restock speed", + "Title": "Faster Merchants II", + }, + ], + "FasterVending": [ + { + "Level": 40, + "Power": 1.5, + "Text": "1.5x Vending Machine restock speed", + "Title": "Faster Vending I", + }, + { + "Level": 90, + "Power": 3, + "Text": "3x Vending Machine restock speed", + "Title": "Faster Vending II", + }, + ], + "FreeVending": [ + { + "Level": 99, + "Text": "Vending Machines that cost coins are FREE", + "Title": "Free Vending", + }, + ], + "MasteryCape": [ + { + "Level": 99, + "Text": "Awarded for reaching level 99 Mastery!", + "Title": "Mastery Cape", + }, + ], + "MoreVending": [ + { + "Level": 60, + "Power": 1, + "Text": "+1 Vending Machine global stock", + "Title": "More Vending I", + }, + { + "Level": 90, + "Power": 2, + "Text": "+2 Vending Machine global stock", + "Title": "More Vending II", + }, + ], }, }, - "configName": "Seashell", + "configName": "Mastery | Economy", "dateCreated": null, - "dateModified": "2025-07-05T23:29:02.202Z", - "hashShort": "4bd144142323e255", + "dateModified": "2025-07-05T23:29:23.718Z", + "hashShort": "47a17da6240159e2", }, { - "category": "Keys", - "collection": "MiscItems", + "category": "Mastery", + "collection": "Mastery", "configData": { - "Desc": "Unlocks the chest in Hacker World for a HUGE pet chance! Drops randomly!", - "DisplayName": "Hacker Key", - "Icon": "rbxassetid://17745239286", - "InventoryTags": [ - "Keys", - ], - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - }, - "configName": "Hacker Key", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "d56973c0fc765e6d", - }, - { - "category": "Discontinued", - "collection": "MiscItems", - "configData": { - "Desc": "Can be combined into Good Gifts using the Good vs. Evil Machine!", - "Discontinued": true, - "DisplayName": "Angel Feather", - "Icon": "rbxassetid://18123783587", - "InventoryTags": [ - "Event", - ], - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - "Tradable": false, - }, - "configName": "Angel Feather", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "f5cb3aab6b8f25fd", - }, - { - "category": "Discontinued", - "collection": "MiscItems", - "configData": { - "Desc": "Can be combined into Evil Gifts using the Good vs. Evil Machine!", - "Discontinued": true, - "DisplayName": "Demon Horn", - "Icon": "rbxassetid://18123783467", - "InventoryTags": [ - "Event", - ], - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, + "Desc": "Gain XP by destroying breakables!", + "FFlag": "Mastery_Breakables", + "Icon": "rbxassetid://15092228198", + "Name": "Breakables", + "Perks": { + "BetterLoot": [ + { + "Level": 20, + "Power": 10, + "Text": "+10% better loot from breakables", + "Title": "Better Loot I", + }, + { + "Level": 50, + "Power": 20, + "Text": "+20% better loot from breakables", + "Title": "Better Loot II", + }, + { + "Level": 90, + "Power": 30, + "Text": "+30% better loot from breakables", + "Title": "Better Loot III", + }, + ], + "BreakableRespawnRate": [ + { + "Level": 30, + "Power": 25, + "Text": "+25% breakable respawn speed", + "Title": "Respawn I", + }, + { + "Level": 80, + "Power": 50, + "Text": "+50% breakable respawn speed", + "Title": "Respawn II", + }, + { + "Level": 99, + "Power": 100, + "Text": "+100% breakable respawn speed", + "Title": "Respawn III", + }, + ], + "FlagDuration": [ + { + "Level": 90, + "Power": 1.5, + "Text": "1.5x flag duration", + "Title": "Flag Duration I", + }, + { + "Level": 99, + "Power": 2, + "Text": "2x flag duration", + "Title": "Flag Duration II", + }, + ], + "FlagSlots": [ + { + "Level": 10, + "Power": 6, + "Text": "+6 flag slots (up to 30 stacked)", + "Title": "Flag Slots I", + }, + { + "Level": 60, + "Power": 11, + "Text": "+11 flag slots (up to 35 stacked)", + "Title": "Flag Slots II", + }, + { + "Level": 80, + "Power": 16, + "Text": "+16 flag slots (up to 40 stacked)", + "Title": "Flag Slots III", + }, + { + "Level": 99, + "Power": 21, + "Text": "+21 flag slots (up to 45 stacked)", + "Title": "Flag Slots IV", + }, + ], + "GoldBreakables": [ + { + "Level": 60, + "Power": 5, + "Text": "2% chance your pets turn breakables gold", + "Title": "Golden Breakables I", + }, + { + "Level": 90, + "Power": 10, + "Text": "5% chance your pets turn breakables gold", + "Title": "Golden Breakables II", + }, + ], + "MasteryCape": [ + { + "Level": 99, + "Text": "Awarded for reaching level 99 Mastery!", + "Title": "Mastery Cape", + }, + ], + "MiniChestLoot": [ + { + "Level": 20, + "Power": 2, + "Text": "2x loot from mini-chests", + "Title": "Mini-Chest Loot I", + }, + { + "Level": 70, + "Power": 3, + "Text": "3x loot from mini-chests", + "Title": "Mini-Chest Loot II", + }, + { + "Level": 99, + "Power": 5, + "Text": "5x loot from mini-chests", + "Title": "Mini-Chest Loot III", + }, + ], + "MiniChestOdds": [ + { + "Level": 40, + "Power": 10, + "Text": "+10% chance for mini-chests to spawn", + "Title": "Mini-Chest Odds I", + }, + { + "Level": 70, + "Power": 30, + "Text": "+30% chance for mini-chests to spawn", + "Title": "Mini-Chest Odds II", + }, + { + "Level": 99, + "Power": 50, + "Text": "+50% chance for mini-chests to spawn", + "Title": "Mini-Chest Odds III", + }, + ], }, - "Tradable": false, }, - "configName": "Demon Horn", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "661d7076777491bb", + "configName": "Mastery | Breakables", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.713Z", + "hashShort": "e395cbd20b16078c", }, { - "category": "Gifts", - "collection": "MiscItems", + "category": "Mastery", + "collection": "Mastery", "configData": { - "Desc": "Open for diamond rewards!", - "DisplayName": "Diamond Gift Bag", - "Icon": "rbxassetid://18254455124", - "InventoryTags": [ - "Gifts", - ], - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, + "Desc": "TODO", + "FFlag": "Mastery_Eggs", + "Icon": "rbxassetid://15057348341", + "Name": "Eggs", + "Perks": { + "CheaperEggs": [ + { + "Level": 20, + "Power": 10, + "Text": "10% cheaper eggs", + "Title": "Cheaper Eggs I", + }, + { + "Level": 70, + "Power": 20, + "Text": "20% cheaper eggs", + "Title": "Cheaper Eggs II", + }, + { + "Level": 99, + "Power": 30, + "Text": "30% cheaper eggs", + "Title": "Cheaper Eggs III", + }, + ], + "ExtraEggs": [ + { + "Level": 40, + "Power": 1, + "Text": "+1 bonus egg slot", + "Title": "Extra Eggs I", + }, + { + "Level": 60, + "Power": 2, + "Text": "+2 bonus egg slots", + "Title": "Extra Eggs II", + }, + { + "Level": 90, + "Power": 3, + "Text": "+3 bonus egg slots", + "Title": "Extra Eggs III", + }, + { + "Level": 99, + "Power": 5, + "Text": "+5 bonus egg slots", + "Title": "Extra Eggs IV", + }, + ], + "FasterOpen": [ + { + "Level": 10, + "Power": 20, + "Text": "+20% hatch animation speed", + "Title": "Faster Hatching I", + }, + { + "Level": 50, + "Power": 35, + "Text": "+35% hatch animation speed", + "Title": "Faster Hatching II", + }, + { + "Level": 90, + "Power": 50, + "Text": "+50% hatch animation speed", + "Title": "Faster Hatching III", + }, + ], + "GoldenEggs": [ + { + "Level": 30, + "Power": 3, + "Text": "+3% chance to hatch golden pets", + "Title": "Golden Eggs I", + }, + ], + "MasteryCape": [ + { + "Level": 99, + "Text": "Awarded for reaching level 99 Mastery!", + "Title": "Mastery Cape", + }, + ], + "RainbowEggs": [ + { + "Level": 80, + "Power": 1, + "Text": "+1% chance to hatch rainbow pets", + "Title": "Rainbow Eggs I", + }, + ], }, }, - "configName": "Diamond Gift Bag", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "29d421a20f5deb59", + "configName": "Mastery | Eggs", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.714Z", + "hashShort": "292341da8da8131e", }, { - "category": "Discontinued", - "collection": "MiscItems", + "category": "Mastery", + "collection": "Mastery", "configData": { - "Desc": "Increase the luck of the tile you're standing on by 100%! Event item only!", - "Discontinued": true, - "DisplayName": "Lucky Tile Boost", - "Icon": "rbxassetid://18351848112", - "InventoryTags": [ - "Event", - ], - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, + "Desc": "Gain XP by upgrading & consuming potions!", + "FFlag": "Mastery_Potions", + "Icon": "rbxassetid://15057347575", + "Name": "Potions", + "Perks": { + "AutoClaim": [ + { + "Level": 70, + "Text": "Automatically claim free potions around the map", + "Title": "Instant Collection", + }, + ], + "BetterCrafting": [ + { + "Level": 60, + "Power": 1, + "Text": "-1 potion required for upgrade", + "Title": "Better Crafting I", + }, + ], + "BulkConsume": [ + { + "Level": 50, + "Text": "Ability to drink multiple potions at once", + "Title": "Bulk Consumption", + }, + ], + "BulkCrafting": [ + { + "Level": 99, + "Text": "Upgrade multiple potion types at once", + "Title": "Bulk Crafting", + }, + ], + "CheaperPotions": [ + { + "Level": 30, + "Power": 15, + "Text": "-15% potion upgrade cost", + "Title": "Cheaper Potions I", + }, + { + "Level": 50, + "Power": 30, + "Text": "-30% potion upgrade cost", + "Title": "Cheaper Potions II", + }, + { + "Level": 90, + "Power": 50, + "Text": "-50% potion upgrade cost", + "Title": "Cheaper Potions III", + }, + ], + "FasterCrafting": [ + { + "Level": 10, + "Power": 2, + "Text": "2x potion upgrading animation speed", + "Title": "Faster Crafting", + }, + ], + "LongerPotions": [ + { + "Level": 20, + "Power": 1.1, + "Text": "1.1x potion duration", + "Title": "Longer Potions I", + }, + { + "Level": 40, + "Power": 1.2, + "Text": "1.2x potion duration", + "Title": "Longer Potions II", + }, + { + "Level": 90, + "Power": 1.5, + "Text": "1.5x potion duration", + "Title": "Longer Potions III", + }, + { + "Level": 99, + "Power": 2, + "Text": "2x potion duration", + "Title": "Longer Potions IV", + }, + ], + "MagicPotion": [ + { + "Level": 80, + "Text": "Drinking a Tier I potion gives you the effects of a Tier II potion", + "Title": "Magic Potions", + }, + ], + "MasteryCape": [ + { + "Level": 99, + "Text": "Awarded for reaching level 99 Mastery!", + "Title": "Mastery Cape", + }, + ], + "SupremePotions": [ + { + "Level": 90, + "Power": 10, + "Text": "10% chance when drinking a potion to get a free tier upgrade", + "Title": "Supreme Potions", + }, + ], + "TierElevenCrafting": [ + { + "Level": 90, + "Text": "Ability to craft Tier XI potions", + "Title": "Tier XI Crafting", + }, + ], + "TierElevenDrinking": [ + { + "Level": 70, + "Text": "Ability to drink Tier XI potions", + "Title": "Tier XI Consumption", + }, + ], + "TierNineCrafting": [ + { + "Level": 70, + "Text": "Ability to craft Tier IX potions", + "Title": "Tier IX Crafting", + }, + ], + "TierNineDrinking": [ + { + "Level": 50, + "Text": "Ability to drink Tier IX potions", + "Title": "Tier IX Consumption", + }, + ], + "TierTenCrafting": [ + { + "Level": 80, + "Text": "Ability to craft Tier X potions", + "Title": "Tier X Crafting", + }, + ], + "TierTenDrinking": [ + { + "Level": 60, + "Text": "Ability to drink Tier X potions", + "Title": "Tier X Consumption", + }, + ], }, }, - "configName": "Lucky Tile", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "226d2177cb43c3f4", + "configName": "Mastery | Potions", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.718Z", + "hashShort": "2b37824ea2bbbbfb", }, { - "category": "Discontinued", - "collection": "MiscItems", + "category": "Mastery", + "collection": "Mastery", "configData": { - "Desc": "Increase the luck of the tile you're standing on by 500%! Event item only!", - "Discontinued": true, - "DisplayName": "Ultra Lucky Tile Boost", - "Icon": "rbxassetid://18351847920", - "InventoryTags": [ - "Event", - ], - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, + "Desc": "Gain XP by upgrading potions!", + "FFlag": "Mastery_Enchants", + "Icon": "rbxassetid://15057348192", + "Name": "Enchants", + "Perks": { + "AutoClaim": [ + { + "Level": 70, + "Text": "Automatically claim free enchants around the map", + "Title": "Instant Collection", + }, + ], + "BetterCrafting": [ + { + "Level": 60, + "Power": 1, + "Text": "-1 enchant required for upgrade", + "Title": "Better Crafting I", + }, + { + "Level": 90, + "Power": 2, + "Text": "-2 enchant required for upgrade", + "Title": "Better Crafting II", + }, + ], + "BulkCrafting": [ + { + "Level": 99, + "Text": "Upgrade multiple enchant types at once", + "Title": "Bulk Crafting", + }, + ], + "CheaperEnchants": [ + { + "Level": 30, + "Power": 15, + "Text": "-15% enchant upgrade cost", + "Title": "Cheaper Enchants I", + }, + { + "Level": 50, + "Power": 30, + "Text": "-30% enchant upgrade cost", + "Title": "Cheaper Enchants II", + }, + { + "Level": 90, + "Power": 50, + "Text": "-50% enchant upgrade cost", + "Title": "Cheaper Enchants III", + }, + ], + "FasterCrafting": [ + { + "Level": 10, + "Power": 2, + "Text": "2x enchant upgrading animation speed", + "Title": "Faster Crafting", + }, + ], + "MasteryCape": [ + { + "Level": 99, + "Text": "Awarded for reaching level 99 Mastery!", + "Title": "Mastery Cape", + }, + ], + "Power": [ + { + "Level": 90, + "Power": 15, + "Text": "+15% power from enchants", + "Title": "Power I", + }, + { + "Level": 99, + "Power": 25, + "Text": "+25% power from enchants", + "Title": "Power II", + }, + ], + "SupremeEnchants": [ + { + "Level": 80, + "Text": "Upgrading an enchant has a 10% chance to automatically be the next tier up", + "Title": "Supreme Enchants", + }, + ], + "TierEightCrafting": [ + { + "Level": 70, + "Text": "Ability to craft Tier VIII enchants", + "Title": "Tier VIII Crafting", + }, + ], + "TierEightEquip": [ + { + "Level": 50, + "Text": "Ability to equip Tier VIII enchants", + "Title": "Tier VIII Usage", + }, + ], + "TierNineCrafting": [ + { + "Level": 80, + "Text": "Ability to craft Tier IX enchants", + "Title": "Tier IX Crafting", + }, + ], + "TierNineEquip": [ + { + "Level": 60, + "Text": "Ability to equip Tier IX enchants", + "Title": "Tier IX Usage", + }, + ], + "TierTenCrafting": [ + { + "Level": 90, + "Text": "Ability to craft Tier X enchants", + "Title": "Tier X Crafting", + }, + ], + "TierTenEquip": [ + { + "Level": 70, + "Text": "Ability to equip Tier X enchants", + "Title": "Tier X Usage", + }, + ], }, }, - "configName": "Ultra Lucky Tile", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "f521b37487e48542", + "configName": "Mastery | Enchants", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.707Z", + "hashShort": "bbb90871ce25fe0c", }, { - "category": "Discontinued", - "collection": "MiscItems", + "category": "Mastery", + "collection": "Mastery", "configData": { - "Desc": "Used in the Lucky Tiles World for special upgrades!", - "Discontinued": true, - "DisplayName": "Rave Upgrade Ticket", - "Icon": "rbxassetid://18449105243", - "InventoryTags": [ - "Event", - ], - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, + "Desc": "Gain XP by golding, rainbowing, fusing & putting pets in Daycare!", + "FFlag": "Mastery_Pets", + "Icon": "rbxassetid://15057347827", + "Name": "Pets", + "Perks": { + "DaycareDiamonds": [ + { + "Level": 90, + "Power": 1.5, + "Text": "1.5x diamond loot from Daycare", + "Title": "Daycare Diamonds I", + }, + { + "Level": 99, + "Power": 2, + "Text": "2x diamond loot from Daycare", + "Title": "Daycare Diamonds II", + }, + ], + "DaycareSpeed": [ + { + "Level": 40, + "Power": 1.25, + "Text": "1.25x Daycare speed", + "Title": "Daycare Speed I", + }, + { + "Level": 90, + "Power": 1.5, + "Text": "1.5x Daycare speed", + "Title": "Daycare Speed II", + }, + { + "Level": 99, + "Power": 2, + "Text": "2x Daycare speed", + "Title": "Daycare Speed III", + }, + ], + "FuseAnimationSpeed": [ + { + "Level": 10, + "Power": 2, + "Text": "2x Fuse Machine animation speed (stacks)", + "Title": "Fuse Animation I", + }, + ], + "GoldAnimationSpeed": [ + { + "Level": 10, + "Power": 2, + "Text": "2x Gold Machine animation speed", + "Title": "Gold Animation I", + }, + ], + "GoldHatching": [ + { + "Level": 30, + "Power": 1, + "Text": "+1% chance to hatch golden pets", + "Title": "Gold Hatching I", + }, + { + "Level": 90, + "Power": 2, + "Text": "+2% chance to hatch golden pets", + "Title": "Gold Hatching II", + }, + ], + "GoldReduction": [ + { + "Level": 60, + "Power": 1, + "Text": "-1 pet required for Golding", + "Title": "Gold Reduction I", + }, + { + "Level": 99, + "Power": 2, + "Text": "-2 pets required for Golding", + "Title": "Gold Reduction II", + }, + ], + "MasteryCape": [ + { + "Level": 99, + "Text": "Awarded for reaching level 99 Mastery!", + "Title": "Mastery Cape", + }, + ], + "RainbowAnimationSpeed": [ + { + "Level": 20, + "Power": 2, + "Text": "2x Rainbow Machine animation speed", + "Title": "Rainbow Animation I", + }, + ], + "RainbowHatching": [ + { + "Level": 50, + "Power": 0.5, + "Text": "+0.50% chance to hatch rainbow pets", + "Title": "Rainbow Hatching I", + }, + { + "Level": 99, + "Power": 1, + "Text": "+1% chance to hatch rainbow pets", + "Title": "Rainbow Hatching II", + }, + ], + "RainbowReduction": [ + { + "Level": 90, + "Power": 1, + "Text": "-1 pet required for Rainbowing", + "Title": "Rainbow Reduction I", + }, + { + "Level": 99, + "Power": 2, + "Text": "-2 pets required for Rainbowing", + "Title": "Rainbow Reduction II", + }, + ], + "ShinyGolding": [ + { + "Level": 80, + "Power": 0.0005, + "Text": "Very small chance that Golding a pet makes it Shiny", + "Title": "Shiny Golding I", + }, + ], + "ShinyRainbowing": [ + { + "Level": 70, + "Power": 0.00025, + "Text": "Very small chance that Rainbowing a pet makes it Shiny", + "Title": "Shiny Rainbowing I", + }, + ], }, }, - "configName": "Rave Upgrade Ticket", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "1deeb409aebcea77", + "configName": "Mastery | Pets", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.710Z", + "hashShort": "ce1dbdbe532a713c", }, { - "category": "Miscellaneous", - "collection": "MiscItems", + "category": "Mastery", + "collection": "Mastery", "configData": { - "Desc": "Used in the Boost Exchange to boost your stats!", - "DisplayName": "Millionaire Bucks", - "Icon": "rbxassetid://18519989805", - "InventoryTags": [ - "Miscellaneous", - ], - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, + "Desc": "Gain XP by consuming & combining Fruit!", + "FFlag": "Mastery_Fruit", + "Icon": "rbxassetid://15092228779", + "Name": "Fruit", + "Perks": { + "AnimationSpeed": [ + { + "Level": 10, + "Power": 2, + "Text": "2x faster animation when upgrading", + "Title": "Animation Speed I", + }, + ], + "AutoEat": [ + { + "Level": 99, + "Text": "Automatically eat fruit in your inventory (toggleable)", + "Title": "Automatic Eating", + }, + ], + "AutoEatShinyFruit": [ + { + "Level": 99, + "Text": "Automatically eat shiny fruit in your inventory (toggleable)", + "Title": "Automatic Eating Shiny", + }, + ], + "FruitBonus": [ + { + "Level": 90, + "Power": 25, + "Text": "Get bonus from 25 fruit instead of 20", + "Title": "Fruit Bonus I", + }, + { + "Level": 99, + "Power": 30, + "Text": "Get bonus from 30 fruit instead of 20", + "Title": "Fruit Bonus II", + }, + ], + "FruitQueue": [ + { + "Level": 40, + "Power": 30, + "Text": "Queue up to 30 fruit at once", + "Title": "Fruit Queue I", + }, + { + "Level": 60, + "Power": 50, + "Text": "Queue up to 50 fruit at once", + "Title": "Fruit Queue II", + }, + { + "Level": 90, + "Power": 100, + "Text": "Queue up to 100 fruit at once", + "Title": "Fruit Queue II", + }, + ], + "LessFruitRequired": [ + { + "Level": 30, + "Power": 3, + "Text": "-3 fruit required to upgrade to rainbow", + "Title": "Fruit Reduction I", + }, + { + "Level": 70, + "Power": 6, + "Text": "-6 fruit required to upgrade to rainbow", + "Title": "Fruit Reduction II", + }, + { + "Level": 99, + "Power": 10, + "Text": "-10 fruit required to upgrade to rainbow", + "Title": "Fruit Reduction III", + }, + ], + "LongerFruit": [ + { + "Level": 20, + "Power": 10, + "Text": "10% longer lasting fruit", + "Title": "Longer Fruit I", + }, + { + "Level": 50, + "Power": 20, + "Text": "20% longer lasting fruit", + "Title": "Longer Fruit II", + }, + { + "Level": 80, + "Power": 40, + "Text": "40% longer lasting fruit", + "Title": "Longer Fruit II", + }, + ], + "MasteryCape": [ + { + "Level": 99, + "Text": "Awarded for reaching level 99 Mastery!", + "Title": "Mastery Cape", + }, + ], }, - }, - "configName": "Millionaire Bucks", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "5d2a007c1b862483", - }, - { - "category": "Vouchers", - "collection": "MiscItems", - "configData": { - "Desc": "Used to enter the Millionaire World raffle!", - "DisplayName": "Millionaire Ticket", - "Icon": "rbxassetid://18519989607", - "InventoryTags": [ - "Vouchers", - ], - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, + "ToggleablePerks": { + "AutoEat": true, + "AutoEatShinyFruit": true, }, }, - "configName": "Millionaire Ticket", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "0796c322ea96f96e", + "configName": "Mastery | Fruit", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.721Z", + "hashShort": "a4cff90a8a22a883", }, { - "category": "Discontinued", - "collection": "MiscItems", + "category": "Mastery", + "collection": "Mastery", "configData": { - "Desc": "Used to fuel the Dino Tycoon Huge Chance Machine!", - "Discontinued": true, - "DisplayName": "Fossil Token", - "Icon": "rbxassetid://18638998463", - "InventoryTags": [ - "Event", - ], - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, - }, - "Tradable": false, - }, - "configName": "Fossil Token", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "74e8e6d5ca959001", - }, - { - "category": "Discontinued", - "collection": "MiscItems", - "configData": { - "Desc": "Used to unlock Dino Labs in the Dino Tycoon!", - "Discontinued": true, - "DisplayName": "Dino Lab Keycard", - "Icon": "rbxassetid://18742183821", - "InventoryTags": [ - "Event", - ], - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - }, - "configName": "Dino Lab Keycard", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "8cff40ebfc36ba07", - }, - { - "category": "Discontinued", - "collection": "MiscItems", - "configData": { - "Desc": "Increase your roll luck by 100% for 1 minute! RNG Event item only!", - "Discontinued": true, - "DisplayName": "Lucky Dice", - "Icon": "rbxassetid://18883667411", - "InventoryTags": [ - "Event", - ], - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Tradable": false, - }, - "configName": "Lucky Dice", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "b86a72ee756729aa", - }, - { - "category": "Discontinued", - "collection": "MiscItems", - "configData": { - "Desc": "Increase your roll luck by 150% for 5 minutes! RNG Event item only!", - "Discontinued": true, - "DisplayName": "Lucky Dice II", - "Icon": "rbxassetid://18883667147", - "InventoryTags": [ - "Event", - ], - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, + "Desc": "Gain XP by fishing!", + "FFlag": "Mastery_Fishing", + "Icon": "rbxassetid://16717409986", + "Name": "Fishing", + "Perks": { + "BiggerBobber": [ + { + "Level": 60, + "Power": 10, + "Text": "Your bobber is much larger, attracting 10% better loot", + "Title": "Bigger Bobber", + }, + ], + "DeepPoolLoot": [ + { + "Level": 40, + "Power": 10, + "Text": "+10% chance to catch a Huge Pet from Deep Pools", + "Title": "Deep Loot I", + }, + { + "Level": 80, + "Power": 20, + "Text": "+20% chance to catch a Huge Pet from Deep Pools", + "Title": "Deep Loot II", + }, + { + "Level": 90, + "Power": 30, + "Text": "+30% chance to catch a Huge Pet from Deep Pools", + "Title": "Deep Loot III", + }, + { + "Level": 99, + "Power": 50, + "Text": "+50% chance to catch a Huge Pet from Deep Pools", + "Title": "Deep Loot IV", + }, + ], + "DeepPools": [ + { + "Level": 30, + "Text": "Ability to fish from Deep Pools", + "Title": "Deep Pools", + }, + ], + "FasterCasting": [ + { + "Level": 10, + "Power": 25, + "Text": "+25% cast speed", + "Title": "Faster Casting I", + }, + { + "Level": 90, + "Power": 50, + "Text": "+50% cast speed", + "Title": "Faster Casting II", + }, + ], + "FasterCatching": [ + { + "Level": 20, + "Power": 10, + "Text": "+10% catch speed", + "Title": "Faster Catching I", + }, + { + "Level": 50, + "Power": 25, + "Text": "+25% catch speed", + "Title": "Faster Catching II", + }, + { + "Level": 90, + "Power": 40, + "Text": "+40% catch speed", + "Title": "Faster Catching II", + }, + ], + "MasteryCape": [ + { + "Level": 99, + "Text": "Awarded for reaching level 99 Mastery!", + "Title": "Mastery Cape", + }, + ], + "RainbowRods": [ + { + "Level": 70, + "Power": 0.01, + "Text": "Small chance while fishing to temporarily make your rod rainbow, giving better & faster loot", + "Title": "Rainbow Rod I", + }, + { + "Level": 90, + "Power": 0.015, + "Text": "1.5x chance to convert your fishing rod to rainbow", + "Title": "Rainbow Rod II", + }, + { + "Level": 99, + "Power": 0.02, + "Text": "2x chance to convert your fishing rod to rainbow", + "Title": "Rainbow Rod III", + }, + ], }, - "Tradable": false, }, - "configName": "Lucky Dice II", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "0b9b6f4dfdb33786", + "configName": "Mastery | Fishing", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.708Z", + "hashShort": "80e782c3e75acf23", }, { - "category": "Discontinued", - "collection": "MiscItems", + "category": "Mastery", + "collection": "Mastery", "configData": { - "Desc": "Increase the luck of your next roll by 1,000,000%! RNG Event item only!", - "Discontinued": true, - "DisplayName": "Mega Lucky Dice", - "Icon": "rbxassetid://18883666982", - "InventoryTags": [ - "Event", - ], - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, + "Desc": "Gain XP by digging!", + "FFlag": "Mastery_Digging", + "Icon": "rbxassetid://16848836284", + "Name": "Digging", + "Perks": { + "BetterDrops": [ + { + "Level": 10, + "Power": 10, + "Text": "+10% better drops from Digsite chests", + "Title": "Better Drops I", + }, + { + "Level": 40, + "Power": 20, + "Text": "+20% better drops from Digsite chests", + "Title": "Better Drops II", + }, + { + "Level": 90, + "Power": 30, + "Text": "+30% better drops from Digsite chests", + "Title": "Better Drops III", + }, + { + "Level": 99, + "Power": 50, + "Text": "+50% better drops from Digsite chests", + "Title": "Better Drops IV", + }, + ], + "HugeOdds": [ + { + "Level": 70, + "Power": 10, + "Text": "+10% chance to get a Huge Pet from the Mastery Chest", + "Title": "Huge Odds I", + }, + { + "Level": 90, + "Power": 25, + "Text": "+25% chance to get a Huge Pet from the Mastery Chest", + "Title": "Huge Odds II", + }, + { + "Level": 99, + "Power": 50, + "Text": "+50% chance to get a Huge Pet from the Mastery Chest", + "Title": "Huge Odds III", + }, + ], + "MasteryCape": [ + { + "Level": 99, + "Text": "Awarded for reaching level 99 Mastery!", + "Title": "Mastery Cape", + }, + ], + "MasteryChest": [ + { + "Level": 50, + "Text": "Ability to open the Mastery Chest found in the Advanced Digsite", + "Title": "Mastery Chest", + }, + ], + "MoreChests": [ + { + "Level": 30, + "Power": 15, + "Text": "+15% better odds to find a Digsite chest", + "Title": "More Chests I", + }, + { + "Level": 60, + "Power": 25, + "Text": "+25% better odds to find a Digsite chest", + "Title": "More Chests II", + }, + { + "Level": 90, + "Power": 40, + "Text": "+40% better odds to find a Digsite chest", + "Title": "More Chests III", + }, + ], + "MoreDiamonds": [ + { + "Level": 20, + "Power": 10, + "Text": "+10% more diamonds from Digsite chests", + "Title": "Diamonds I", + }, + { + "Level": 80, + "Power": 20, + "Text": "+20% more diamonds from Digsite chests", + "Title": "Diamonds II", + }, + { + "Level": 99, + "Power": 35, + "Text": "+35% more diamonds from Digsite chests", + "Title": "Diamonds III", + }, + ], + "RainbowShovels": [ + { + "Level": 60, + "Power": 0.002, + "Text": "Small chance while digging to temporarily make your shovel rainbow, making it dig x2 faster", + "Title": "Rainbow Shovels I", + }, + { + "Level": 80, + "Power": 0.003, + "Text": "x1.50 chance to convert your shovel to rainbow", + "Title": "Rainbow Shovels II", + }, + { + "Level": 99, + "Power": 0.004, + "Text": "x2 chance to convert your shovel to rainbow", + "Title": "Rainbow Shovels III", + }, + ], }, - "Tradable": false, }, - "configName": "Mega Lucky Dice", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "7669decdbaa0079f", + "configName": "Mastery | Digging", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.728Z", + "hashShort": "cd1fbfb48128ec10", }, { - "category": "Discontinued", - "collection": "MiscItems", + "category": "Mastery", + "collection": "Mastery", "configData": { - "Desc": "Increase the luck of your next roll by 10,000,000%! RNG Event item only!", - "Discontinued": true, - "DisplayName": "Mega Lucky Dice II", - "Icon": "rbxassetid://18883666783", - "InventoryTags": [ - "Event", - ], - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, + "Desc": "Gain XP by using & combining keys!", + "FFlag": "Mastery_Keys", + "Icon": "rbxassetid://16848872762", + "Name": "Keys", + "Perks": { + "BetterCrystal": [ + { + "Level": 30, + "Power": 10, + "Text": "+10% better loot from the Crystal Chest", + "Title": "Crystal Loot I", + }, + { + "Level": 80, + "Power": 15, + "Text": "+15% better loot from the Crystal Chest", + "Title": "Crystal Loot II", + }, + { + "Level": 99, + "Power": 25, + "Text": "+25% better loot from the Crystal Chest", + "Title": "Crystal Loot III", + }, + ], + "BetterFantasy": [ + { + "Level": 70, + "Power": 10, + "Text": "+10% better loot from the Fantasy Chest", + "Title": "Fantasy Loot I", + }, + { + "Level": 95, + "Power": 15, + "Text": "+15% better loot from the Fantasy Chest", + "Title": "Fantasy Loot II", + }, + { + "Level": 99, + "Power": 25, + "Text": "+25% better loot from the Fantasy Chest", + "Title": "Fantasy Loot III", + }, + ], + "BetterTech": [ + { + "Level": 50, + "Power": 10, + "Text": "+10% better loot from the Tech Chest", + "Title": "Tech Loot I", + }, + { + "Level": 80, + "Power": 15, + "Text": "+15% better loot from the Tech Chest", + "Title": "Tech Loot II", + }, + { + "Level": 99, + "Power": 25, + "Text": "+25% better loot from the Tech Chest", + "Title": "Tech Loot III", + }, + ], + "BetterVoid": [ + { + "Level": 60, + "Power": 10, + "Text": "+10% better loot from the Void Chest", + "Title": "Void Loot I", + }, + { + "Level": 90, + "Power": 15, + "Text": "+15% better loot from the Void Chest", + "Title": "Void Loot II", + }, + { + "Level": 99, + "Power": 25, + "Text": "+25% better loot from the Void Chest", + "Title": "Void Loot III", + }, + ], + "CombineAll": [ + { + "Level": 40, + "Text": "Gain the ability to combine all keys at once", + "Title": "Combine All", + }, + ], + "FreeSecretKey": [ + { + "Level": 70, + "Power": 0.0033333333333333335, + "Text": "Small chance to get a free Secret Key when combining a Tech Key", + "Title": "Free Secret I", + }, + { + "Level": 99, + "Power": 0.006666666666666667, + "Text": "2x chance to get a free Secret Key when combining a Tech Key", + "Title": "Free Secret II", + }, + ], + "FreeTechKey": [ + { + "Level": 60, + "Power": 0.004, + "Text": "Small chance to get a free Tech Key when combining a Crystal Key", + "Title": "Free Tech I", + }, + { + "Level": 99, + "Power": 0.008, + "Text": "2x chance to get a free Tech Key when combining a Crystal Key", + "Title": "Free Tech II", + }, + ], + "MasteryCape": [ + { + "Level": 99, + "Text": "Awarded for reaching level 99 Mastery!", + "Title": "Mastery Cape", + }, + ], + "RetainCrystalKey": [ + { + "Level": 10, + "Power": 5, + "Text": "5% chance to keep your Crystal Key after opening a Crystal Chest", + "Title": "Crystal Protector I", + }, + { + "Level": 90, + "Power": 10, + "Text": "10% chance to keep your Crystal Key after opening a Crystal Chest", + "Title": "Crystal Protector II", + }, + ], + "RetainFantasyKey": [ + { + "Level": 95, + "Power": 10, + "Text": "10% chance to keep your Fantasy Key after opening a Fantasy Chest", + "Title": "Fantasy Protector II", + }, + ], + "RetainSecretKey": [ + { + "Level": 50, + "Power": 5, + "Text": "5% chance to keep your Secret Key after opening a Secret Room", + "Title": "Secret Protector I", + }, + { + "Level": 90, + "Power": 10, + "Text": "10% chance to keep your Secret Key after opening a Secret Room", + "Title": "Secret Protector II", + }, + ], + "RetainTechKey": [ + { + "Level": 20, + "Power": 5, + "Text": "5% chance to keep your Tech Key after opening a Tech Chest", + "Title": "Tech Protector I", + }, + { + "Level": 90, + "Power": 10, + "Text": "10% chance to keep your Tech Key after opening a Tech Chest", + "Title": "Tech Protector II", + }, + ], + "RetainVoidKey": [ + { + "Level": 40, + "Power": 5, + "Text": "5% chance to keep your Void Key after opening a Void Chest", + "Title": "Void Protector I", + }, + { + "Level": 90, + "Power": 10, + "Text": "10% chance to keep your Void Key after opening a Void Chest", + "Title": "Void Protector II", + }, + ], }, - "Tradable": false, }, - "configName": "Mega Lucky Dice II", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "347a06a4b81a1a3c", + "configName": "Mastery | Keys", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.728Z", + "hashShort": "c25251c34b035b2b", }, { - "category": "Discontinued", - "collection": "MiscItems", + "category": "Mastery", + "collection": "Mastery", "configData": { - "Desc": "Increase your roll luck by 1000% for 5 minutes! RNG Event item only!", - "Discontinued": true, - "DisplayName": "Lucky Dice III", - "Icon": "rbxassetid://18972217122", - "InventoryTags": [ - "Event", - ], - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, + "Desc": "Gain XP by opening giftbags, bundles & free gifts!", + "FFlag": "Mastery_Gifts", + "Icon": "rbxassetid://15092229040", + "Name": "Gifts", + "Perks": { + "AutoClaimFreeGifts": [ + { + "Level": 90, + "Text": "Automatically claim free gifts", + "Title": "Auto-Claim Free Gifts", + }, + ], + "BetterCharmStones": [ + { + "Level": 40, + "Power": 10, + "Text": "10% better loot from Charm Stones", + "Title": "Charm Stones I", + }, + { + "Level": 80, + "Power": 15, + "Text": "15% better loot from Charm Stones", + "Title": "Charm Stones II", + }, + { + "Level": 99, + "Power": 20, + "Text": "20% better loot from Charm Stones", + "Title": "Charm Stones III", + }, + ], + "DoubleBundleLoot": [ + { + "Level": 10, + "Power": 10, + "Text": "10% chance to get x2 loot from any bundle", + "Title": "Bundle Loot I", + }, + { + "Level": 50, + "Power": 20, + "Text": "20% chance to get x2 loot from any bundle", + "Title": "Bundle Loot II", + }, + { + "Level": 99, + "Power": 25, + "Text": "25% chance to get x2 loot from any bundle", + "Title": "Bundle Loot III", + }, + ], + "DoubleMiniChestLoot": [ + { + "Level": 20, + "Power": 10, + "Text": "10% chance to get x2 loot from any Mini-Chest item", + "Title": "Mini-Chest Loot I", + }, + { + "Level": 70, + "Power": 20, + "Text": "20% chance to get x2 loot from any Mini-Chest item", + "Title": "Mini-Chest Loot II", + }, + { + "Level": 99, + "Power": 25, + "Text": "25% chance to get x2 loot from any Mini-Chest item", + "Title": "Mini-Chest Loot III", + }, + ], + "FreeGiftSpeed": [ + { + "Level": 30, + "Power": 15, + "Text": "+15% free gift timer speed", + "Title": "Free Gift Speed I", + }, + { + "Level": 60, + "Power": 30, + "Text": "+30% free gift timer speed", + "Title": "Free Gift Speed II", + }, + { + "Level": 99, + "Power": 40, + "Text": "+40% free gift timer speed", + "Title": "Free Gift Speed III", + }, + ], + "MasteryCape": [ + { + "Level": 99, + "Text": "Awarded for reaching level 99 Mastery!", + "Title": "Mastery Cape", + }, + ], }, - "Tradable": false, - }, - "configName": "Lucky Dice III", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "9a1c0fcde5caf472", - }, - { - "category": "Discontinued", - "collection": "MiscItems", - "configData": { - "Desc": "Increase your roll speed by 10x for 1 minute! RNG Event item only!", - "Discontinued": true, - "DisplayName": "Fire Dice", - "Icon": "rbxassetid://18972217224", - "InventoryTags": [ - "Event", - ], - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, + "ToggleablePerks": { + "AutoClaimFreeGifts": true, }, - "Tradable": false, }, - "configName": "Fire Dice", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "e27a8384d07ab8cb", + "configName": "Mastery | Gifts", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.723Z", + "hashShort": "fe9da7c93652ca67", }, { - "category": "Discontinued", - "collection": "MiscItems", + "category": "Mastery", + "collection": "Mastery", "configData": { - "Desc": "Increase your roll luck by 100% for 2 minutes!", - "Discontinued": true, - "DisplayName": "RNG Chest Luck", - "Icon": "rbxassetid://18978159995", - "InventoryTags": [ - "Event", - ], - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, + "Desc": "Gain XP by destroying Superior Chests!", + "FFlag": "Mastery_SuperiorChests", + "Icon": "rbxassetid://17602729261", + "Name": "Superior Chests", + "Perks": { + "MasteryCape": [ + { + "Level": 99, + "Text": "Awarded for reaching level 99 Mastery!", + "Title": "Mastery Cape", + }, + ], + "SuperiorChestLoot": [ + { + "Level": 80, + "Power": 2, + "Text": "2x loot from Superior Chests", + "Title": "Superior Chest Loot I", + }, + { + "Level": 90, + "Power": 3, + "Text": "3x loot from Superior Chests", + "Title": "Superior Chest Loot II", + }, + { + "Level": 99, + "Power": 5, + "Text": "5x loot from Superior Chests", + "Title": "Superior Chest Loot III", + }, + ], + "SuperiorChestOdds": [ + { + "Level": 50, + "Power": 5, + "Text": "+5% chance for Superior Chests to spawn", + "Title": "Superior Chest Odds I", + }, + { + "Level": 60, + "Power": 10, + "Text": "+10% chance for Superior Chests to spawn", + "Title": "Superior Chest Odds II", + }, + { + "Level": 70, + "Power": 15, + "Text": "+15% chance for Superior Chests to spawn", + "Title": "Superior Chest Odds III", + }, + { + "Level": 85, + "Power": 20, + "Text": "+20% chance for Superior Chests to spawn", + "Title": "Superior Chest Odds IV", + }, + { + "Level": 99, + "Power": 50, + "Text": "+50% chance for Superior Chests to spawn", + "Title": "Superior Chest Odds V", + }, + ], }, - "Tradable": false, }, - "configName": "Rng Chest Luck", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "f4a9bec29bedb2aa", + "configName": "Mastery | Superior Chests", + "dateCreated": "2025-07-05T23:23:47.611Z", + "dateModified": "2025-07-05T23:23:47.611Z", + "hashShort": "1e49ac6931d360ea", }, { - "category": "Discontinued", - "collection": "MiscItems", + "category": "Mastery", + "collection": "Mastery", "configData": { - "Desc": "Increase your roll luck by 150% for 2 minutes!", - "Discontinued": true, - "DisplayName": "Super RNG Chest Luck", - "Icon": "rbxassetid://18978160109", - "InventoryTags": [ - "Event", - ], - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, + "Desc": "Gain XP by fusing pets!", + "FFlag": "Mastery_Fuse", + "Icon": "rbxassetid://15092228658", + "Name": "Fuse", + "Perks": { + "AlwaysGolden": [ + { + "Level": 75, + "Power": 1, + "Text": "Pets are always golden from the Fuse Machine", + "Title": "Always Golden I", + }, + ], + "AlwaysRainbow": [ + { + "Level": 95, + "Power": 1, + "Text": "Pets are always rainbow from the Fuse Machine", + "Title": "Always Rainbow I", + }, + ], + "BetterRecipes": [ + { + "Level": 30, + "Power": 0.2, + "Text": "Resulting pets will be up to 5% better!", + "Title": "Better Recipes I", + }, + { + "Level": 60, + "Power": 0.25, + "Text": "Resulting pets will be up to 10% better!", + "Title": "Better Recipes II", + }, + { + "Level": 90, + "Power": 0.3, + "Text": "Resulting pets will be up to 15% better!", + "Title": "Better Recipes III", + }, + ], + "FuseAnimationSpeed": [ + { + "Level": 60, + "Power": 2, + "Text": "2x Fuse Machine animation speed (stacks)", + "Title": "Even Faster Fusing I", + }, + ], + "FuseLessPetsNeeded": [ + { + "Level": 99, + "Power": 1, + "Text": "The minimum to fuse is now 2 instead of 3!", + "Title": "Less Pets", + }, + ], + "FusePity": [ + { + "Level": 20, + "Power": 0.01, + "Text": "1% chance to get two pets instead of one!", + "Title": "Fuse Pity I", + }, + { + "Level": 50, + "Power": 0.02, + "Text": "2% chance to get two pets instead of one!", + "Title": "Fuse Pity II", + }, + { + "Level": 75, + "Power": 0.03, + "Text": "3% chance to get two pets instead of one!", + "Title": "Fuse Pity III", + }, + { + "Level": 90, + "Power": 0.04, + "Text": "4% chance to get two pets instead of one!", + "Title": "Fuse Pity IV", + }, + { + "Level": 99, + "Power": 0.05, + "Text": "5% chance to get two pets instead of one!", + "Title": "Fuse Pity V", + }, + ], + "MasteryCape": [ + { + "Level": 99, + "Text": "Awarded for reaching level 99 Mastery!", + "Title": "Mastery Cape", + }, + ], }, - "Tradable": false, - }, - "configName": "Super Rng Chest Luck", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "2fdf0ac0235accca", - }, - { - "category": "Discontinued", - "collection": "MiscItems", - "configData": { - "Desc": "Increase your roll luck by 250% for 2 minutes!", - "Discontinued": true, - "DisplayName": "Ultra RNG Chest Luck", - "Icon": "rbxassetid://18978160238", - "InventoryTags": [ - "Event", - ], - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, + "ToggleablePerks": { + "AlwaysGolden": true, + "AlwaysRainbow": true, }, - "Tradable": false, }, - "configName": "Ultra Rng Chest Luck", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "725055af590f8d9b", + "configName": "Mastery | Fuse", + "dateCreated": "2025-07-05T23:23:47.611Z", + "dateModified": "2025-07-05T23:23:47.611Z", + "hashShort": "f500ce00f5a98624", }, { - "category": "Tools", - "collection": "MiscItems", + "category": "Mastery", + "collection": "Mastery", "configData": { - "Desc": "Open the Supercomputer anytime, anywhere!", - "DisplayName": "Supercomputer Radio", - "Icon": "rbxassetid://129682687691555", - "InventoryTags": [ - "Tools", - ], - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, + "Desc": "Gain XP by using the boost exchange machine!", + "FFlag": "Mastery_BoostExchange", + "Icon": "rbxassetid://117040888028295", + "Name": "Boost Exchange", + "Perks": { + "AutoUseDiamondBoost": [ + { + "Level": 70, + "Power": 1, + "Text": "Automatically buy diamonds boost (randomly picks if more than one auto enabled)!", + "Title": "Auto Buy Diamond Boost I", + }, + ], + "AutoUseDropBoost": [ + { + "Level": 80, + "Power": 1, + "Text": "Automatically buy drops boost (randomly picks if more than one auto enabled)!", + "Title": "Auto Buy Drop Boost I", + }, + ], + "AutoUseEggBoost": [ + { + "Level": 90, + "Power": 1, + "Text": "Automatically buy egg luck boost (randomly picks if more than one auto enabled)!", + "Title": "Auto Buy Egg Luck Boost I", + }, + ], + "BetterCost": [ + { + "Level": 5, + "Power": 0.05, + "Text": "Boosts costs are now reduced by 5%!", + "Title": "Boost Cost I", + }, + { + "Level": 35, + "Power": 0.1, + "Text": "Boosts costs are now reduced by 10%!", + "Title": "Boost Cost II", + }, + { + "Level": 50, + "Power": 0.15, + "Text": "Boosts costs are now reduced by 15%!", + "Title": "Boost Cost III", + }, + { + "Level": 75, + "Power": 0.2, + "Text": "Boosts costs are now reduced by 20%!", + "Title": "Boost Cost IV", + }, + ], + "BetterDuration": [ + { + "Level": 25, + "Power": 0.05, + "Text": "Boosts now last 5% longer!", + "Title": "Boost Duration I", + }, + { + "Level": 55, + "Power": 0.1, + "Text": "Boosts now last 10% longer!", + "Title": "Boost Duration II", + }, + { + "Level": 65, + "Power": 0.15, + "Text": "Boosts now last 15% longer!", + "Title": "Boost Duration III", + }, + { + "Level": 85, + "Power": 0.2, + "Text": "Boosts now last 20% longer!", + "Title": "Boost Duration IV", + }, + { + "Level": 95, + "Power": 0.4, + "Text": "Boosts now last 40% longer!", + "Title": "Boost Duration V", + }, + ], + "BetterEfficiency": [ + { + "Level": 10, + "Power": 0.05, + "Text": "Boosts are now 5% more effective!", + "Title": "Boost Efficiency I", + }, + { + "Level": 20, + "Power": 0.1, + "Text": "Boosts are now 10% more effective!", + "Title": "Boost Efficiency II", + }, + { + "Level": 40, + "Power": 0.15, + "Text": "Boosts are now 15% more effective!", + "Title": "Boost Efficiency III", + }, + { + "Level": 60, + "Power": 0.2, + "Text": "Boosts are now 20% more effective!", + "Title": "Boost Efficiency IV", + }, + { + "Level": 99, + "Power": 0.4, + "Text": "Boosts are now 40% more effective!", + "Title": "Boost Efficiency V", + }, + ], + "MasteryCape": [ + { + "Level": 99, + "Text": "Awarded for reaching level 99 Mastery!", + "Title": "Mastery Cape", + }, + ], + }, + "ToggleablePerks": { + "AutoUseDiamondBoost": true, + "AutoUseDropBoost": true, + "AutoUseEggBoost": true, }, - "Tradable": false, }, - "configName": "Supercomputer Radio", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "21059ea260113573", + "configName": "Mastery | Boost Exchange", + "dateCreated": "2025-07-05T23:23:47.611Z", + "dateModified": "2025-07-05T23:23:47.611Z", + "hashShort": "2874b96eac762363", }, + ], + "status": "ok", +} +`; + +exports[`Pet Simulator Public Live API Test Merchants shape 1`] = ` +{ + "data": [ { - "category": "Discontinued", + "category": "Merchants", + "collection": "Merchants", + "configData": { + "DisplayName": "Items Merchant", + "GetOffers": null, + "MachineName": "RegularMerchant", + "PriceMult": 1, + "RefreshRate": 1800, + "SlotRespectLevels": [ + 1, + 1, + 2, + 2, + 3, + 5, + ], + "StockRangeByRespectLevel": [ + [ + 1, + 1, + ], + [ + 1, + 1, + ], + [ + 1, + 1, + ], + [ + 1, + 3, + ], + [ + 1, + 3, + ], + ], + }, + "configName": "RegularMerchant", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:59.475Z", + "hashShort": "ba48dafd374fe21a", + }, + { + "category": "Merchants", + "collection": "Merchants", + "configData": { + "DisplayName": "Advanced Merchant", + "GetOffers": null, + "MachineName": "AdvancedMerchant", + "PriceMult": 1, + "RefreshRate": 3600, + "SlotRespectLevels": [ + 1, + 1, + 2, + 2, + 3, + 5, + ], + "StockRangeByRespectLevel": [ + [ + 1, + 1, + ], + [ + 1, + 1, + ], + [ + 1, + 1, + ], + [ + 1, + 3, + ], + [ + 1, + 3, + ], + ], + }, + "configName": "AdvancedMerchant", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:59.463Z", + "hashShort": "227a5871f6344c01", + }, + { + "category": "Merchants", + "collection": "Merchants", + "configData": { + "DisplayName": "Garden Merchant", + "GetOffers": null, + "HideNotification": true, + "MachineName": "GardenMerchant", + "PriceMult": 1, + "RefreshRate": 300, + "SlotRespectLevels": [ + 1, + 1, + 2, + 2, + 3, + 5, + ], + "StockRangeByRespectLevel": [ + [ + 1, + 2, + ], + [ + 2, + 2, + ], + [ + 2, + 3, + ], + [ + 3, + 5, + ], + [ + 3, + 6, + ], + ], + }, + "configName": "GardenMerchant", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:59.458Z", + "hashShort": "93cece8a15d8bb49", + }, + { + "category": "Merchants", + "collection": "Merchants", + "configData": { + "DisplayName": "Snow Merchant", + "GetOffers": null, + "MachineName": "SnowMerchant", + "PriceMult": 1, + "RefreshRate": 1800, + "SlotRespectLevels": [ + 1, + 1, + 1, + 1, + 1, + 1, + ], + "StockRangeByRespectLevel": [ + [ + 1, + 1, + ], + [ + 1, + 1, + ], + [ + 1, + 1, + ], + [ + 1, + 3, + ], + [ + 1, + 3, + ], + ], + }, + "configName": "SnowMerchant", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:59.473Z", + "hashShort": "a1060efe0c2a3365", + }, + { + "category": "Merchants", + "collection": "Merchants", + "configData": { + "DisplayName": "Firework Merchant", + "GetOffers": null, + "MachineName": "FireworkMerchant", + "PriceMult": 1, + "RefreshRate": 1800, + "SlotRespectLevels": [ + 1, + 1, + 1, + 1, + 1, + 1, + ], + "StockRangeByRespectLevel": [ + [ + 1, + 1, + ], + [ + 1, + 1, + ], + [ + 1, + 1, + ], + [ + 1, + 3, + ], + [ + 1, + 3, + ], + ], + }, + "configName": "FireworkMerchant", + "dateCreated": null, + "dateModified": "2025-07-05T23:36:13.721Z", + "hashShort": "1c4fadc854f874b5", + }, + { + "category": "Merchants", + "collection": "Merchants", + "configData": { + "DisableApproachOpen": true, + "DisplayName": "Index Merchant", + "GetOffers": null, + "HideRespect": true, + "MachineName": "PetIndexMachine", + "PriceMult": 1, + "RefreshRate": 3600, + "SlotRespectLevels": [ + 1, + 1, + 1, + 1, + 1, + 1, + ], + "StockRangeByRespectLevel": [ + [ + 1, + 1, + ], + [ + 2, + 2, + ], + [ + 3, + 3, + ], + [ + 4, + 4, + ], + [ + 5, + 5, + ], + ], + }, + "configName": "IndexMerchant", + "dateCreated": null, + "dateModified": "2025-07-05T23:36:13.717Z", + "hashShort": "720b7513d63f2d1d", + }, + { + "category": "Merchants", + "collection": "Merchants", + "configData": { + "DisplayName": "Adventurer Store", + "GetOffers": null, + "HideNotification": true, + "HideRespect": true, + "IsStatic": true, + "MachineName": "AdventurerStore", + "PriceMult": 1, + "RefreshRate": 21600, + }, + "configName": "AdventurerStore", + "dateCreated": null, + "dateModified": "2025-07-05T23:36:13.721Z", + "hashShort": "77f9e8463c238ab7", + }, + { + "category": "Merchants", + "collection": "Merchants", + "configData": { + "DisplayName": "Raffle Merchant", + "GetOffers": null, + "MachineName": "RaffleMerchant", + "PriceMult": 1, + "RefreshRate": 3600, + }, + "configName": "RaffleMerchant", + "dateCreated": "2025-07-05T23:23:42.717Z", + "dateModified": "2025-07-05T23:23:42.717Z", + "hashShort": "8c1fc893c45f9a27", + }, + { + "category": "Merchants", + "collection": "Merchants", + "configData": { + "DisplayName": "Lucky Dice Merchant", + "GetOffers": null, + "MachineName": "LuckyDiceMerchant", + "PriceMult": 1, + "RefreshRate": 300, + "SlotRespectLevels": [ + 1, + 1, + 2, + 2, + 3, + 5, + ], + "StockRangeByRespectLevel": [ + [ + 1, + 1, + ], + [ + 1, + 1, + ], + [ + 1, + 1, + ], + [ + 1, + 2, + ], + [ + 1, + 3, + ], + ], + }, + "configName": "LuckyDiceMerchant", + "dateCreated": "2025-07-05T23:23:42.717Z", + "dateModified": "2025-07-05T23:23:42.717Z", + "hashShort": "aed407e4a24fad03", + }, + { + "category": "Merchants", + "collection": "Merchants", + "configData": { + "DisplayName": "Pet Cube Store", + "GetOffers": null, + "HideNotification": true, + "HideRespect": true, + "IsStatic": false, + "MachineName": "PetCubeStore", + "PriceMult": 1, + "RefreshRate": 1500, + }, + "configName": "PetCubeStore", + "dateCreated": "2025-07-05T23:23:42.717Z", + "dateModified": "2025-07-05T23:23:42.717Z", + "hashShort": "7a3615b57346ef87", + }, + { + "category": "Merchants", + "collection": "Merchants", + "configData": { + "DisplayName": "Pack Merchant", + "GetOffers": null, + "HasAccess": null, + "MachineName": "PackMerchant", + "PriceMult": 1, + "RefreshRate": 600, + "SlotRespectLevels": [ + 1, + 1, + 2, + 2, + 3, + 5, + ], + "StockRangeByRespectLevel": [ + [ + 1, + 1, + ], + [ + 1, + 1, + ], + [ + 1, + 1, + ], + [ + 1, + 2, + ], + [ + 1, + 3, + ], + ], + }, + "configName": "PackMerchant", + "dateCreated": "2025-07-05T23:23:42.717Z", + "dateModified": "2025-07-05T23:23:42.717Z", + "hashShort": "6599ac93c6eeff2f", + }, + { + "category": "Merchants", + "collection": "Merchants", + "configData": { + "DisplayName": "Mining Merchant", + "GetOffers": null, + "HasAccess": null, + "MachineName": "MiningMerchant", + "PriceMult": 1, + "RefreshRate": 600, + "SlotRespectLevels": [ + 1, + 1, + 2, + 2, + 3, + 5, + ], + "StockRangeByRespectLevel": [ + [ + 1, + 1, + ], + [ + 1, + 1, + ], + [ + 1, + 1, + ], + [ + 1, + 2, + ], + [ + 1, + 3, + ], + ], + }, + "configName": "MiningMerchant", + "dateCreated": "2025-07-05T23:23:42.717Z", + "dateModified": "2025-07-05T23:23:42.717Z", + "hashShort": "09e86a231203e636", + }, + { + "category": "Merchants", + "collection": "Merchants", + "configData": { + "DisplayName": "Unit Merchant", + "GetOffers": null, + "HideNotification": true, + "HideRespect": true, + "IsStatic": true, + "MachineName": "UnitMerchant", + "PriceMult": 1, + "RefreshRate": 60, + }, + "configName": "UnitMerchant", + "dateCreated": "2025-07-05T23:23:42.717Z", + "dateModified": "2025-07-05T23:23:42.717Z", + "hashShort": "1b40a682d16b10a1", + }, + { + "category": "Merchants", + "collection": "Merchants", + "configData": { + "DisplayName": "Lucky Dice Merchant", + "GetOffers": null, + "MachineName": "LuckyDiceMerchantV2", + "PriceMult": 1, + "RefreshRate": 300, + "SlotRespectLevels": [ + 1, + 1, + 2, + 2, + 3, + 4, + ], + "StockRangeByRespectLevel": [ + [ + 1, + 1, + ], + [ + 1, + 1, + ], + [ + 1, + 1, + ], + [ + 1, + 1, + ], + [ + 1, + 3, + ], + ], + }, + "configName": "LuckyDiceMerchantV2", + "dateCreated": "2026-05-09T17:52:38.471Z", + "dateModified": "2026-06-27T16:05:59.491Z", + "hashShort": "b6f3682400284ce6", + }, + ], + "status": "ok", +} +`; + +exports[`Pet Simulator Public Live API Test MiscItems shape 1`] = ` +{ + "data": [ + { + "category": "Vouchers", "collection": "MiscItems", "configData": { - "Desc": "A bucket filled with paint!", - "Discontinued": true, - "DisplayName": "Bucket O' Paint", - "Icon": "rbxassetid://98102744263092", + "Desc": "Redeem to spin the Spinny Wheel! [Rebirth 1 Required]", + "DisplayName": "Spinny Wheel Ticket", + "Icon": "rbxassetid://15038312495", "InventoryTags": [ - "Event", + "Vouchers", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "Tradable": false, }, - "configName": "Bucket O' Paint", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "b81d3d15a5157349", + "configName": "Spinny Wheel Ticket", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.511Z", + "hashShort": "a7db6f9d600b5ff0", }, { - "category": "Discontinued", + "category": "Vouchers", "collection": "MiscItems", "configData": { - "Desc": "Used to craft Graffiti Gifts!", - "Discontinued": true, - "DisplayName": "Graffiti Can", - "Icon": "rbxassetid://94579102957684", + "Desc": "Used to create a clan! [Rebirth 2 Required]", + "DisplayName": "Clan Voucher", + "Icon": "rbxassetid://15107493633", "InventoryTags": [ - "Event", + "Vouchers", ], "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, }, - "configName": "Graffiti Can", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "4a2c1abb55c7a457", + "configName": "Clan Voucher", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.497Z", + "hashShort": "03701e1486c0079e", }, { - "category": "Tools", + "category": "Vouchers", "collection": "MiscItems", "configData": { - "Desc": "Throw at roaming pets in Elemental World to catch them! - -Tap pets in Elemental World to throw!", - "DisplayName": "Pet Cube", - "Icon": "rbxassetid://113496508867455", + "Desc": "Use this to gain an extra booth listing slot!", + "DisplayName": "Booth Slot Voucher", + "Icon": "rbxassetid://15286722824", "InventoryTags": [ - "Tools", + "Vouchers", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, }, - "configName": "Pet Cube", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "ad447e88d2f6b906", + "configName": "Booth Slot Voucher", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.503Z", + "hashShort": "385496d6f27cfb1b", }, { - "category": "Tools", + "category": "Vouchers", "collection": "MiscItems", "configData": { - "Desc": "Throw at roaming pets in Elemental World to catch them! Better odds! - -Tap pets in Elemental World to throw!", - "DisplayName": "Ultra Pet Cube", - "Icon": "rbxassetid://120583016270769", + "Desc": "Use this to gain an extra Daycare enroll slot!", + "DisplayName": "Daycare Slot Voucher", + "Icon": "rbxassetid://15938616670", "InventoryTags": [ - "Tools", + "Vouchers", ], "Rarity": { "Announce": false, @@ -65058,139 +68632,136 @@ Tap pets in Elemental World to throw!", "_script": null, }, }, - "configName": "Ultra Pet Cube", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "424672d8021bce58", + "configName": "Daycare Slot Voucher", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.508Z", + "hashShort": "cbd17e0989e6f3ef", }, { - "category": "Discontinued", + "category": "Vouchers", "collection": "MiscItems", "configData": { - "Desc": "Access locked backrooms for loot! Found in the haunted backrooms!", - "Discontinued": true, - "DisplayName": "Haunted Backrooms Key", - "Icon": "rbxassetid://105807127077254", + "AltIcon": "rbxassetid://16042314493", + "Desc": "Earned for every pet you index! + +Redeem in the Index Machine!", + "DisplayName": "Index Token", + "Icon": "rbxassetid://16047269848", "InventoryTags": [ - "Event", + "Vouchers", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, "Tradable": false, }, - "configName": "Haunted Backrooms Key", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "f5ef59401ba3a167", + "configName": "Index Token", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.508Z", + "hashShort": "1e13c3b258440a8f", }, { - "category": "Discontinued", + "category": "Vouchers", "collection": "MiscItems", "configData": { - "Desc": "Can be combined into Pumpkin Gifts using the Pumpkin Machine!", - "Discontinued": true, - "DisplayName": "Pumpkin", - "Icon": "rbxassetid://81573313864367", + "Desc": "???", + "DisplayName": "Mystery Ticket", + "Icon": "rbxassetid://16038106883", "InventoryTags": [ - "Event", + "Vouchers", ], "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Superior", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 8, + "_id": "Superior", "_script": null, }, - "Tradable": true, }, - "configName": "Pumpkin", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "12245717a56c0663", + "configName": "Mystery Ticket", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.508Z", + "hashShort": "56e3450e16eca58d", }, { - "category": "Discontinued", + "category": "Boosts", "collection": "MiscItems", "configData": { - "Desc": "Can be combined into Candy Corn Gifts using the Candy Corn Machine!", - "Discontinued": true, - "DisplayName": "Candy Corn", - "Icon": "rbxassetid://135856815241766", + "Desc": "Drop a Coin Jar in the area you're standing in for rewards!", + "DisplayName": "Basic Coin Jar", + "Icon": "rbxassetid://15000811448", "InventoryTags": [ - "Event", + "Boosts", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "Tradable": true, }, - "configName": "Candy Corn", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "76aa364fb7cd8930", + "configName": "Basic Coin Jar", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.192Z", + "hashShort": "082123314357bb4d", }, { - "category": "Discontinued", + "category": "Boosts", "collection": "MiscItems", "configData": { - "Desc": "Used to enter the Trick or Treat Neighborhoods!", - "Discontinued": true, - "DisplayName": "Halloween Mask", - "Icon": "rbxassetid://113232694279062", + "Desc": "Drop a Magic Coin Jar into a *RANDOM AREA* you have unlocked for rewards!", + "DisplayName": "Magic Coin Jar", + "Icon": "rbxassetid://15000811194", "InventoryTags": [ - "Event", + "Boosts", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, }, - "configName": "Halloween Mask", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "316fe1ae2b5bf193", + "configName": "Magic Coin Jar", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.185Z", + "hashShort": "2ba7ef10d71627e1", }, { - "category": "Miscellaneous", + "category": "Boosts", "collection": "MiscItems", "configData": { - "Desc": "Used to purchase Wings Upgrades!", - "DisplayName": "Wing Essence", - "Icon": "rbxassetid://134564960334253", + "Desc": "Drop a Giant Coin Jar in the area you're standing in for rewards!", + "DisplayName": "Giant Coin Jar", + "Icon": "rbxassetid://15000811334", "InventoryTags": [ - "Miscellaneous", + "Boosts", ], "Rarity": { "Announce": false, @@ -65204,165 +68775,164 @@ Tap pets in Elemental World to throw!", "_id": "Legendary", "_script": null, }, - "Tradable": false, }, - "configName": "Essence Fuel", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "a677364c6467cb13", + "configName": "Giant Coin Jar", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.186Z", + "hashShort": "875c99f4078ed036", }, { "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Barely works, but gets the job done.", - "DisplayName": "Wooden Axe", - "Icon": "rbxassetid://127504061331887", + "Desc": "Catch better fish, faster!", + "DisplayName": "Advanced Fishing Rod", + "Icon": "rbxassetid://16028879358", "InventoryTags": [ "Tools", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, "Tradable": false, }, - "configName": "Wooden Axe", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "8fcb47f8e1cd17f1", + "configName": "Advanced Fishing Rod", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.339Z", + "hashShort": "74a9eb4643cc136a", }, { "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Better than the wooden, but still just a regular axe.", - "DisplayName": "Sturdy Axe", - "Icon": "rbxassetid://131990094481938", + "Desc": "It's super!", + "DisplayName": "Stone Fishing Rod", + "Icon": "rbxassetid://16028878295", "InventoryTags": [ "Tools", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, "Tradable": false, }, - "configName": "Sturdy Axe", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "91575dc14f3bed4d", + "configName": "Super Fishing Rod", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.495Z", + "hashShort": "7841a62ec26f98e4", }, { "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Advanced chopping use only!", - "DisplayName": "Advanced Axe", - "Icon": "rbxassetid://94326920206595", + "Desc": "You could catch a big fish with this!", + "DisplayName": "Sturdy Fishing Rod", + "Icon": "rbxassetid://16028878219", "InventoryTags": [ "Tools", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, "Tradable": false, }, - "configName": "Advanced Axe", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "4c3eaa95b1ff24ff", + "configName": "Sturdy Fishing Rod", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.502Z", + "hashShort": "de8a26d5a3949a82", }, { "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Chop! Chop!", - "DisplayName": "Stone Axe", - "Icon": "rbxassetid://82444457148431", + "Desc": "Very efficient fishing rod.", + "DisplayName": "Iron Fishing Rod", + "Icon": "rbxassetid://16028878776", "InventoryTags": [ "Tools", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, "Tradable": false, }, - "configName": "Stone Axe", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "61cf1970a8ee68d3", + "configName": "Pro Fishing Rod", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.497Z", + "hashShort": "a8cfd0b9c33588ba", }, { "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Chop trees super fast!", - "DisplayName": "Iron Axe", - "Icon": "rbxassetid://88653140383342", + "Desc": "A fishing rod made of gold? Doesn't seem very realistic.", + "DisplayName": "Golden Fishing Rod", + "Icon": "rbxassetid://16028878947", "InventoryTags": [ "Tools", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "Tradable": false, + "Tradable": true, }, - "configName": "Iron Axe", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "307c448275d29ae1", + "configName": "Golden Fishing Rod", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.489Z", + "hashShort": "43fb998d3b67defd", }, { "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Axe fit for the gods!", - "DisplayName": "Golden Axe", - "Icon": "rbxassetid://95880593705578", + "Desc": "Simple fishing rod. You can catch stuff.", + "DisplayName": "Wooden Fishing Rod", + "Icon": "rbxassetid://16028878115", "InventoryTags": [ "Tools", ], @@ -65380,202 +68950,195 @@ Tap pets in Elemental World to throw!", }, "Tradable": false, }, - "configName": "Golden Axe", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "a2752b020b6369c6", + "configName": "Wooden Fishing Rod", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.503Z", + "hashShort": "0dc42db1bdb43262", }, { - "category": "Capes", + "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Awarded for reaching level 99 Potions Mastery!", - "DisplayName": "Potions Mastery Cape", - "Icon": "rbxassetid://94807953344008", + "Desc": "Sleek and efficient fishing rod.", + "DisplayName": "Platinum Fishing Rod", + "Icon": "rbxassetid://16028878591", "InventoryTags": [ - "Capes", + "Tools", ], - "Model": null, "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, "Tradable": false, }, - "configName": "Potions Cape", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "83acbadaed6a7538", + "configName": "Platinum Fishing Rod", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.489Z", + "hashShort": "b70b967fe8644942", }, { - "category": "Capes", + "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Awarded for reaching level 99 Boost Exchange Mastery!", - "DisplayName": "Boost Exchange Mastery Cape", - "Icon": "rbxassetid://138147678113813", + "Desc": "Streamlined casting perfection.", + "DisplayName": "Emerald Fishing Rod", + "Icon": "rbxassetid://16028879073", "InventoryTags": [ - "Capes", + "Tools", ], - "Model": null, "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, "Tradable": false, }, - "configName": "Boost Exchange Cape", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "84c5c5610246d94a", + "configName": "Emerald Fishing Rod", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.496Z", + "hashShort": "14fe167191648624", }, { - "category": "Capes", + "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Awarded for reaching level 99 Breakable Mastery!", - "DisplayName": "Breakables Mastery Cape", - "Icon": "rbxassetid://78678040876122", + "Desc": "Unmatched casting performance.", + "DisplayName": "Sapphire Fishing Rod", + "Icon": "rbxassetid://16028878380", "InventoryTags": [ - "Capes", + "Tools", ], - "Model": null, "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, "Tradable": false, }, - "configName": "Breakables Cape", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "c0fe5072d5a86096", + "configName": "Sapphire Fishing Rod", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.491Z", + "hashShort": "22107bacce0686c0", }, { - "category": "Capes", + "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Awarded for reaching level 99 Digging Mastery!", - "DisplayName": "Digging Mastery Cape", - "Icon": "rbxassetid://94175128426596", + "Desc": "Do you like my Diamond Fishing Rod?", + "DisplayName": "Diamond Fishing Rod", + "Icon": "rbxassetid://16028879185", "InventoryTags": [ - "Capes", + "Tools", ], - "Model": null, "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "Tradable": false, + "Tradable": true, }, - "configName": "Digging Cape", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "c9d7995710ef20a6", + "configName": "Diamond Fishing Rod", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.333Z", + "hashShort": "ca51ce394f205424", }, { - "category": "Capes", + "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Awarded for reaching level 99 Economy Mastery!", - "DisplayName": "Economy Mastery Cape", - "Icon": "rbxassetid://115046183678435", + "Desc": "Elegant fishing mastery.", + "DisplayName": "Amethyst Fishing Rod", + "Icon": "rbxassetid://16028879272", "InventoryTags": [ - "Capes", + "Tools", ], - "Model": null, "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, "Tradable": false, }, - "configName": "Economy Cape", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "5ad808c85a4cf083", + "configName": "Amethyst Fishing Rod", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.332Z", + "hashShort": "6198f12ceffd409e", }, { - "category": "Capes", + "category": "Miscellaneous", "collection": "MiscItems", "configData": { - "Desc": "Awarded for reaching level 99 Eggs Mastery!", - "DisplayName": "Eggs Mastery Cape", - "Icon": "rbxassetid://94868981819101", + "Desc": "FOR ADMIN USE - Lets you do a bunch of cool stuff.", + "DisplayName": "Rotten Potato", + "Icon": "rbxassetid://13959016084", "InventoryTags": [ - "Capes", + "Miscellaneous", ], - "Model": null, "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, "Tradable": false, }, - "configName": "Eggs Cape", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "a3a756202b9efeca", + "configName": "Rotten Potato", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.196Z", + "hashShort": "331058c865772ff3", }, { - "category": "Capes", + "category": "Gifts", "collection": "MiscItems", "configData": { - "Desc": "Awarded for reaching level 99 Enchants Mastery!", - "DisplayName": "Enchants Mastery Cape", - "Icon": "rbxassetid://136323422523839", + "Desc": "Open for large rewards!", + "DisplayName": "Large Gift Bag", + "Icon": "rbxassetid://15000940153", "InventoryTags": [ - "Capes", + "Gifts", ], - "Model": null, "Rarity": { "Announce": false, "Color": null, @@ -65588,114 +69151,106 @@ Tap pets in Elemental World to throw!", "_id": "Legendary", "_script": null, }, - "Tradable": false, }, - "configName": "Enchants Cape", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "30a2f922e8c260c5", + "configName": "Large Gift Bag", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.195Z", + "hashShort": "e8d5df89b607b20e", }, { - "category": "Capes", + "category": "Gifts", "collection": "MiscItems", "configData": { - "Desc": "Awarded for reaching level 99 Fishing Mastery!", - "DisplayName": "Fishing Mastery Cape", - "Icon": "rbxassetid://74451097864801", + "Desc": "Open for rewards!", + "DisplayName": "Gift Bag", + "Icon": "rbxassetid://15092672146", "InventoryTags": [ - "Capes", + "Gifts", ], - "Model": null, "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "Tradable": false, }, - "configName": "Fishing Cape", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "7e4984391c7bd52c", + "configName": "Gift Bag", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.346Z", + "hashShort": "dc53733cf17eccfc", }, { - "category": "Capes", + "category": "Gifts", "collection": "MiscItems", "configData": { - "Desc": "Awarded for reaching level 99 Fruit Mastery!", - "DisplayName": "Fruit Mastery Cape", - "Icon": "rbxassetid://94409019683767", + "Desc": "Break open to reveal a Charm!", + "DisplayName": "Charm Stone", + "Icon": "rbxassetid://15581313849", "InventoryTags": [ - "Capes", + "Gifts", ], - "Model": null, "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "Tradable": false, }, - "configName": "Fruit Cape", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "66b5115605a945ec", + "configName": "Charm Stone", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.198Z", + "hashShort": "f2cd58ab772d0ee1", }, { - "category": "Capes", + "category": "Gifts", "collection": "MiscItems", "configData": { - "Desc": "Awarded for reaching level 99 Fuse Mastery!", - "DisplayName": "Fuse Mastery Cape", - "Icon": "rbxassetid://139314016282209", + "Desc": "Open for random seeds!", + "DisplayName": "Seed Bag", + "Icon": "rbxassetid://15554896174", "InventoryTags": [ - "Capes", + "Farming", ], - "Model": null, "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "Tradable": false, }, - "configName": "Fuse Cape", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "52824aa9a7113acb", + "configName": "Seed Bag", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.185Z", + "hashShort": "4cc16fe24d62fd6b", }, { - "category": "Capes", + "category": "Gifts", "collection": "MiscItems", "configData": { - "Desc": "Awarded for reaching level 99 Gifts Mastery!", - "DisplayName": "Gifts Mastery Cape", - "Icon": "rbxassetid://72336666116568", + "Desc": "Open for random flags!", + "DisplayName": "Bundle O' Flags", + "Icon": "rbxassetid://15938615884", "InventoryTags": [ - "Capes", + "Gifts", ], - "Model": null, "Rarity": { "Announce": false, "Color": null, @@ -65708,24 +69263,22 @@ Tap pets in Elemental World to throw!", "_id": "Legendary", "_script": null, }, - "Tradable": false, }, - "configName": "Gifts Cape", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "07e470338107899b", + "configName": "Flag Bundle", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.189Z", + "hashShort": "7867eb962b51333d", }, { - "category": "Capes", + "category": "Gifts", "collection": "MiscItems", "configData": { - "Desc": "Awarded for reaching level 99 Keys Mastery!", - "DisplayName": "Keys Mastery Cape", - "Icon": "rbxassetid://134446493475392", + "Desc": "Open for random toys!", + "DisplayName": "Bundle O' Toys", + "Icon": "rbxassetid://15938615671", "InventoryTags": [ - "Capes", + "Gifts", ], - "Model": null, "Rarity": { "Announce": false, "Color": null, @@ -65738,24 +69291,22 @@ Tap pets in Elemental World to throw!", "_id": "Legendary", "_script": null, }, - "Tradable": false, }, - "configName": "Keys Cape", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "68c7e271576b8fd0", + "configName": "Toy Bundle", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.194Z", + "hashShort": "3b4767d0e37f09bd", }, { - "category": "Capes", + "category": "Gifts", "collection": "MiscItems", "configData": { - "Desc": "Awarded for reaching level 99 Pets Mastery!", - "DisplayName": "Pets Mastery Cape", - "Icon": "rbxassetid://122726992963192", + "Desc": "Open for random potions!", + "DisplayName": "Bundle O' Potions", + "Icon": "rbxassetid://15938615802", "InventoryTags": [ - "Capes", + "Gifts", ], - "Model": null, "Rarity": { "Announce": false, "Color": null, @@ -65768,24 +69319,22 @@ Tap pets in Elemental World to throw!", "_id": "Legendary", "_script": null, }, - "Tradable": false, }, - "configName": "Pets Cape", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "970800f7798f5382", + "configName": "Potion Bundle", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.193Z", + "hashShort": "38790d9c03a63cc6", }, { - "category": "Capes", + "category": "Gifts", "collection": "MiscItems", "configData": { - "Desc": "Awarded for reaching level 99 Superior Chests Mastery!", - "DisplayName": "Superior Chests Mastery Cape", - "Icon": "rbxassetid://133459577246192", + "Desc": "Open for random enchants!", + "DisplayName": "Bundle O' Enchants", + "Icon": "rbxassetid://15938615986", "InventoryTags": [ - "Capes", + "Gifts", ], - "Model": null, "Rarity": { "Announce": false, "Color": null, @@ -65798,113 +69347,105 @@ Tap pets in Elemental World to throw!", "_id": "Legendary", "_script": null, }, - "Tradable": false, }, - "configName": "Superior Chests Cape", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "af5fb49407373c0e", + "configName": "Enchant Bundle", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.183Z", + "hashShort": "e96fbed06129bd5e", }, { - "category": "Discontinued", + "category": "Gifts", "collection": "MiscItems", "configData": { - "Desc": "Earn 10x Adoption Tokens for 15 minutes!", - "Discontinued": true, - "DisplayName": "Ultra Adoption Token Boost", - "Icon": "rbxassetid://83102991911162", + "Desc": "Open for THE MOST EPIC rewards!", + "DisplayName": "Mini Chest", + "Icon": "rbxassetid://15854077741", "InventoryTags": [ - "Event", + "Gifts", ], "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "Tradable": true, }, - "configName": "Ultra Adoption Token Boost", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "3c9504c6ef026060", + "configName": "Mini Chest", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.190Z", + "hashShort": "40ea54f83f7b932f", }, { - "category": "Discontinued", + "category": "Flags", "collection": "MiscItems", "configData": { - "Desc": "Earn 3x Adoption Tokens for 15 minutes!", - "Discontinued": true, - "DisplayName": "Adoption Token Boost", - "Icon": "rbxassetid://72705510493016", + "Desc": "Place in an area to SUBSTANTIALLY increase drops! Lasts 5 minutes!", + "DisplayName": "Exotic Treasure Flag", + "Icon": "rbxassetid://15011948755", "InventoryTags": [ - "Event", + "Flags", ], "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "Tradable": true, }, - "configName": "Adoption Token Boost", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "88c08fe4b1377958", + "configName": "Exotic Treasure Flag", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.193Z", + "hashShort": "979f2cb4501988f8", }, { - "category": "Discontinued", + "category": "Flags", "collection": "MiscItems", "configData": { - "Desc": "Run straight into the adoption egg room!", - "Discontinued": true, - "DisplayName": "Golden Paw Ticket", - "Icon": "rbxassetid://116187500612624", + "Desc": "A portable magnet that can be placed in any area! Lasts 5 minutes!", + "DisplayName": "Magnet Flag", + "Icon": "rbxassetid://15000810137", "InventoryTags": [ - "Event", + "Flags", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Superior", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 8, - "_id": "Superior", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "Tradable": true, }, - "configName": "Golden Paw Ticket", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "4ec9ec40a60574a6", + "configName": "Magnet Flag", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.201Z", + "hashShort": "0c4a372fe6ae8358", }, { - "category": "Discontinued", + "category": "Flags", "collection": "MiscItems", "configData": { - "Desc": "Used to purchase line upgrades!", - "Discontinued": true, - "DisplayName": "Adoption Token", - "Icon": "rbxassetid://107092190022246", + "Desc": "Place in an area to increase coins by 50% and diamonds by 2.5x! Lasts 5 minutes!", + "DisplayName": "Fortune Flag", + "Icon": "rbxassetid://15000810242", "InventoryTags": [ - "Event", + "Flags", ], "Rarity": { "Announce": false, @@ -65918,383 +69459,358 @@ Tap pets in Elemental World to throw!", "_id": "Legendary", "_script": null, }, - "Tradable": false, }, - "configName": "Adoption Token", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "fadd7762d7d2f4e6", + "configName": "Fortune Flag", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.184Z", + "hashShort": "2f5f12a8b904d0b4", }, { - "category": "Discontinued", + "category": "Flags", "collection": "MiscItems", "configData": { - "Desc": "Unlock the lockers in the Line for Titanic Event!", - "Discontinued": true, - "DisplayName": "Locker Key", - "Icon": "rbxassetid://107232990524074", + "Desc": "Place in an area to increase diamond breakables by 2x! Lasts 5 minutes!", + "DisplayName": "Diamonds Flag", + "Icon": "rbxassetid://15000810493", "InventoryTags": [ - "Event", + "Flags", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "Tradable": false, }, - "configName": "Locker Key", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "be12b2a1b9ed0643", + "configName": "Diamonds Flag", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.200Z", + "hashShort": "10a4dda29f74b209", }, { - "category": "Discontinued", + "category": "Flags", "collection": "MiscItems", "configData": { - "Desc": "Used to purchase Autumn Upgrades!", - "Discontinued": true, - "DisplayName": "Maple Leaf", - "Icon": "rbxassetid://128253516406089", + "Desc": "Place in an area to increase your pet strength by 50%! Lasts 5 minutes!", + "DisplayName": "Strength Flag", + "Icon": "rbxassetid://15853955101", "InventoryTags": [ - "Event", + "Flags", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "Tradable": false, }, - "configName": "Maple Leaf", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "915714fc08f500ba", + "configName": "Strength Flag", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.194Z", + "hashShort": "93297b705793e9e8", }, { - "category": "Discontinued", + "category": "Flags", "collection": "MiscItems", "configData": { - "Desc": "Used to purchase Autumn Upgrades!", - "Discontinued": true, - "DisplayName": "Turkey Feather", - "Icon": "rbxassetid://74134752681253", + "Desc": "Place in an area to super-charge pets! Lasts 5 minutes!", + "DisplayName": "Hasty Flag", + "Icon": "rbxassetid://15000810356", "InventoryTags": [ - "Event", + "Flags", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "Tradable": false, }, - "configName": "Turkey Feather", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "050bdc91183c6daa", + "configName": "Hasty Flag", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.186Z", + "hashShort": "67fe4fd018276aef", }, { - "category": "Capes", + "category": "Flags", "collection": "MiscItems", "configData": { - "Desc": "Awarded for reaching level 99 in all Masteries! (Gives +10% Diamond Earn)", - "DisplayName": "Master Skill Cape", - "Icon": "rbxassetid://114415394611739", + "Desc": "Place in an area to increase coins you earn by 50%! Lasts 5 minutes!", + "DisplayName": "Coins Flag", + "Icon": "rbxassetid://15000809958", "InventoryTags": [ - "Capes", + "Flags", ], - "Model": null, "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "Tradable": false, }, - "configName": "Master Skill Cape", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "e067dbb3a287d331", + "configName": "Coins Flag", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.192Z", + "hashShort": "237f9dde4829212b", }, { - "category": "Discontinued", + "category": "Flags", "collection": "MiscItems", "configData": { - "Desc": "Can be combined into Snowflake Gifts using the Snow Machine!", - "Discontinued": true, - "DisplayName": "Snowflake", - "Icon": "rbxassetid://139595350898385", + "Desc": "When placed in an area, temporarily makes ALL pets Shiny! Lasts 5 minutes!", + "DisplayName": "Shiny Flag", + "Icon": "rbxassetid://15853949167", "InventoryTags": [ - "Event", + "Flags", ], "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Superior", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 8, + "_id": "Superior", "_script": null, }, - "Tradable": false, }, - "configName": "Snowflake", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "1a1b87124bd5879f", + "configName": "Shiny Flag", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.197Z", + "hashShort": "c9aea0bdc48c5cdb", }, { - "category": "Discontinued", + "category": "Flags", "collection": "MiscItems", "configData": { - "Desc": "Decorate your Christmas Tree for rewards! Earned from random drops in the Christmas World!", - "Discontinued": true, - "DisplayName": "Festive Dragon Ornament", - "Icon": "rbxassetid://111005961420330", + "Desc": "When placed in an area, temporarily makes ALL pets Rainbow! Lasts 5 minutes!", + "DisplayName": "Rainbow Flag", + "Icon": "rbxassetid://15853949239", "InventoryTags": [ - "Event", + "Flags", ], "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "Tradable": false, }, - "configName": "Festive Dragon Ornament", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "64e77c56bcbb42e6", + "configName": "Rainbow Flag", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.197Z", + "hashShort": "154f941e9270a57f", }, { - "category": "Discontinued", + "category": "Keys", "collection": "MiscItems", "configData": { - "Desc": "Decorate your Christmas Tree for rewards! Earned from Snowflake Gifts!", - "Discontinued": true, - "DisplayName": "Gingerbread Cat Ornament", - "Icon": "rbxassetid://129823962780815", + "Desc": "Used to unlock the Crystal Chest!", + "DisplayName": "Crystal Key", + "Icon": "rbxassetid://15000810910", "InventoryTags": [ - "Event", + "Keys", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "Tradable": false, }, - "configName": "Gingerbread Cat Ornament", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "7f998a1fb938919d", + "configName": "Crystal Key", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.344Z", + "hashShort": "96d4dc604259b38e", }, { - "category": "Discontinued", + "category": "Keys", "collection": "MiscItems", "configData": { - "Desc": "Decorate your Christmas Tree for rewards! Earned from random drops in the Christmas World!", - "Discontinued": true, - "DisplayName": "Rudolph Ornament", - "Icon": "rbxassetid://137438942175142", + "Desc": "Unlock the door to the Castle! Big key for a big lock.", + "DisplayName": "Castle Key", + "Icon": "rbxassetid://15000809142", "InventoryTags": [ - "Event", + "Keys", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, "Tradable": false, }, - "configName": "Rudolph Ornament", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "e880b47a88d8b267", + "configName": "Castle Key", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.337Z", + "hashShort": "53f846b4232af300", }, { - "category": "Discontinued", + "category": "Keys", "collection": "MiscItems", "configData": { - "Desc": "Decorate your Christmas Tree for rewards! Earned from Snowflake Gifts!", - "Discontinued": true, - "DisplayName": "Frosted Axolotl Ornament", - "Icon": "rbxassetid://78912490096414", + "Desc": "The lower half to the Crystal Key. Combine this with the upper half!", + "DisplayName": "Crystal Key: Lower Half", + "Icon": "rbxassetid://15000810798", "InventoryTags": [ - "Event", + "Keys", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "Tradable": false, }, - "configName": "Frosted Axolotl Ornament", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "a440fcccf972dd0c", + "configName": "Crystal Key Lower Half", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.336Z", + "hashShort": "1806cfed25ed1065", }, { - "category": "Discontinued", + "category": "Keys", "collection": "MiscItems", "configData": { - "Desc": "Decorate your Christmas Tree for rewards! Earned from gifting pets in Secret Santa!", - "Discontinued": true, - "DisplayName": "Snow Globe Ornament", - "Icon": "rbxassetid://131125982375199", + "Desc": "The upper half to the Crystal Key. Combine this with the lower half!", + "DisplayName": "Crystal Key: Upper Half", + "Icon": "rbxassetid://15000810636", "InventoryTags": [ - "Event", + "Keys", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "Tradable": false, }, - "configName": "Snow Globe Ornament", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "02d7490484fa20b8", + "configName": "Crystal Key Upper Half", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.337Z", + "hashShort": "cfad8312afb1343c", }, { - "category": "Discontinued", + "category": "Keys", "collection": "MiscItems", "configData": { - "Desc": "Used to purchase Mega Present Upgrades in the Holiday Event!", - "Discontinued": true, - "DisplayName": "Present Bow", - "Icon": "rbxassetid://127952814319100", + "Desc": "Used to unlock any Secret Room!", + "DisplayName": "Secret Key", + "Icon": "rbxassetid://16008658412", "InventoryTags": [ - "Event", + "Keys", ], "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "Tradable": false, }, - "configName": "Present Bow", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "1d7df81cf0a2658c", + "configName": "Secret Key", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.335Z", + "hashShort": "8f1a4009aa91adca", }, { - "category": "Discontinued", + "category": "Keys", "collection": "MiscItems", "configData": { - "Desc": "Adds 10 points to your Gargantuan Present!", - "Discontinued": true, - "DisplayName": "Lucky Gingerbread", - "Icon": "rbxassetid://79656981154011", + "Desc": "The lower half to the Secret Key. Combine this with the upper half!", + "DisplayName": "Secret Key: Lower Half", + "Icon": "rbxassetid://16008658599", "InventoryTags": [ - "Event", + "Keys", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "Tradable": false, }, - "configName": "Lucky Gingerbread", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-12-20T17:55:11.238Z", - "hashShort": "53290318aec48897", + "configName": "Secret Key Lower Half", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.334Z", + "hashShort": "0b4ca5781a3d0b78", }, { - "category": "Discontinued", + "category": "Keys", "collection": "MiscItems", "configData": { - "Desc": "Adds 200 points to your Gargantuan Present!", - "Discontinued": true, - "DisplayName": "Super Lucky Gingerbread", - "Icon": "rbxassetid://113679482005178", + "Desc": "The upper half to the Secret Key. Combine this with the lower half!", + "DisplayName": "Secret Key: Upper Half", + "Icon": "rbxassetid://16008658794", "InventoryTags": [ - "Event", + "Keys", ], "Rarity": { "Announce": false, @@ -66308,166 +69824,164 @@ Tap pets in Elemental World to throw!", "_id": "Mythical", "_script": null, }, - "Tradable": false, }, - "configName": "Super Lucky Gingerbread", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-12-20T17:55:11.238Z", - "hashShort": "52f1ba967371c0e1", + "configName": "Secret Key Upper Half", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.354Z", + "hashShort": "2543de915cc4e26b", }, { - "category": "Discontinued", + "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Adds 10,000 points to your Gargantuan Present!", - "Discontinued": true, - "DisplayName": "Mega Lucky Gingerbread", - "Icon": "rbxassetid://133337783587142", + "Desc": "me dig", + "DisplayName": "Stone Shovel", + "Icon": "rbxassetid://16039332182", "InventoryTags": [ - "Event", + "Tools", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "Tradable": true, + "Tradable": false, }, - "configName": "Mega Lucky Gingerbread", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-12-20T17:55:11.228Z", - "hashShort": "526edd45b100bef2", + "configName": "Sharp Shovel", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.360Z", + "hashShort": "8a9568e4da38b80d", }, { - "category": "Discontinued", + "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Adds 3,000 points to your Gargantuan Present!", - "Discontinued": true, - "DisplayName": "Ultra Lucky Gingerbread", - "Icon": "rbxassetid://76493272243692", + "Desc": "Cuts through solid rock easily!", + "DisplayName": "Advanced Shovel", + "Icon": "rbxassetid://16039333077", "InventoryTags": [ - "Event", + "Tools", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, "Tradable": false, }, - "configName": "Ultra Lucky Gingerbread", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-12-20T17:55:11.257Z", - "hashShort": "ab53496c1a23dd7c", + "configName": "Bluesteel Shovel", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.353Z", + "hashShort": "5e5667825264464c", }, { - "category": "Discontinued", + "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Access Santa's Cottage! Earned by hitting targets in the Holiday Event 2025!", - "Discontinued": true, - "DisplayName": "Santa Key", - "Icon": "rbxassetid://83040683228474", + "Desc": "Do you like my Diamond Shovel?", + "DisplayName": "Diamond Shovel", + "Icon": "rbxassetid://16039332788", "InventoryTags": [ - "Event", + "Tools", ], "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "Tradable": false, + "Tradable": true, }, - "configName": "Santa Key", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-12-20T17:55:11.269Z", - "hashShort": "cbf671922cc9b7e5", + "configName": "Diamond Shovel", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.350Z", + "hashShort": "21326da000ae6831", }, { "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Save a pet from Grinch Cove! Chance for a HUGE!", - "DisplayName": "Cove Lockpick", - "Icon": "rbxassetid://120320082965427", + "Desc": "Sharpened really carefully. Digs really fast!", + "DisplayName": "Emerald Shovel", + "Icon": "rbxassetid://16039332703", "InventoryTags": [ "Tools", ], "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, + "Tradable": false, }, - "configName": "Lockpick A", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-12-20T17:55:10.748Z", - "hashShort": "e73bea32915c5452", + "configName": "Emerald Shovel", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.357Z", + "hashShort": "caeafb1e37fceda5", }, { "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Save a pet from Grinch Cove! Better lock-picking odds! Chance for a HUGE!", - "DisplayName": "Golden Cove Lockpick", - "Icon": "rbxassetid://95200052788292", + "Desc": "Really flimsy. Doesn't dig very fast.", + "DisplayName": "Wooden Shovel", + "Icon": "rbxassetid://16039332097", "InventoryTags": [ "Tools", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, + "Tradable": false, }, - "configName": "Lockpick B", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-12-20T17:55:10.752Z", - "hashShort": "3c3dc8da24d540ca", + "configName": "Flimsy Shovel", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.347Z", + "hashShort": "bfd8507819371bf9", }, { "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Save a pet from Grinch Cove! BEST lock-picking odds! Chance for a HUGE!", - "DisplayName": "Diamond Cove Lockpick", - "Icon": "rbxassetid://114469675967534", + "Desc": "Shiny! Digs insanely fast!", + "DisplayName": "Golden Shovel", + "Icon": "rbxassetid://16039332602", "InventoryTags": [ "Tools", ], @@ -66483,79 +69997,80 @@ Tap pets in Elemental World to throw!", "_id": "Mythical", "_script": null, }, + "Tradable": true, }, - "configName": "Lockpick C", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-12-20T17:55:10.749Z", - "hashShort": "3af405094e45236c", + "configName": "Golden Shovel", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.347Z", + "hashShort": "4782b51c3da7c0ad", }, { - "category": "Event", + "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Increase your chances of saving a pet from the Grinch Cat by 3x! Christmas Event item only!", - "DisplayName": "Grinch-B-Gone", - "Icon": "rbxassetid://74401703781647", + "Desc": "It's a shovel. It digs!", + "DisplayName": "Sturdy Shovel", + "Icon": "rbxassetid://16039331991", "InventoryTags": [ - "Event", + "Tools", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "Tradable": true, + "Tradable": false, }, - "configName": "Grinch-B-Gone", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-12-20T17:55:10.776Z", - "hashShort": "be68a6631c72d0ea", + "configName": "Normal Shovel", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.341Z", + "hashShort": "7b0a1ee9087e7f5d", }, { - "category": "Event", + "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Increase your chances of saving a pet from the Grinch Cat by 40x! Christmas Event item only!", - "DisplayName": "Ultra Grinch-B-Gone", - "Icon": "rbxassetid://111012321182528", + "Desc": "Platinum means quality.", + "DisplayName": "Platinum Shovel", + "Icon": "rbxassetid://16039332375", "InventoryTags": [ - "Event", + "Tools", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Superior", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 8, - "_id": "Superior", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "Tradable": true, + "Tradable": false, }, - "configName": "Ultra Grinch-B-Gone", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-12-20T17:55:10.773Z", - "hashShort": "5f67215f91cc0013", + "configName": "Platinum Shovel", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.340Z", + "hashShort": "0300a2fa8f1a385c", }, { - "category": "Miscellaneous", + "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Used upgrade Doodle Jar!", - "DisplayName": "Doodle Pad", - "Icon": "rbxassetid://122289419887478", + "Desc": "For professionals only! Digs super fast!", + "DisplayName": "Iron Shovel", + "Icon": "rbxassetid://16039332500", "InventoryTags": [ - "Miscellaneous", + "Tools", ], "Rarity": { "Announce": false, @@ -66571,135 +70086,134 @@ Tap pets in Elemental World to throw!", }, "Tradable": false, }, - "configName": "Doodle Pad", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "cafedf25d9fd5761", + "configName": "Pro Shovel", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.338Z", + "hashShort": "4faa3ee7e341380a", }, { - "category": "Miscellaneous", + "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Used to compete in drawing competitions in Doodle World!", - "DisplayName": "Doodle Token", - "Icon": "rbxassetid://96668323174200", + "Desc": "Sapphire is the best, but that's just my opinion.", + "DisplayName": "Sapphire Shovel", + "Icon": "rbxassetid://16039332265", "InventoryTags": [ - "Miscellaneous", + "Tools", ], "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, "Tradable": false, }, - "configName": "Doodle Token", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "4ccb89d839c5a1ca", + "configName": "Sapphire Shovel", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.356Z", + "hashShort": "23ae631c3e110acc", }, { - "category": "Miscellaneous", + "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Boost your odds in a Doodle Battle by 15%!", - "DisplayName": "Golden Pencil", - "Icon": "rbxassetid://92361349785870", + "Desc": "As sharp as crystal!", + "DisplayName": "Amethyst Shovel", + "Icon": "rbxassetid://16039332930", "InventoryTags": [ - "Miscellaneous", + "Tools", ], "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, + "Tradable": false, }, - "configName": "Golden Pencil", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "c3b9bba57c5384cf", + "configName": "Amethyst Shovel", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.342Z", + "hashShort": "15492a2ee3410f94", }, { - "category": "Miscellaneous", + "category": "Buffs", "collection": "MiscItems", "configData": { - "Desc": "Boost your odds in a Doodle Battle by 50%!", - "DisplayName": "Diamond Pencil", - "Icon": "rbxassetid://115047389110438", + "Desc": "Reward your pets! Pets deal damage 10% faster for 5 minutes.", + "DisplayName": "Toy Bone", + "Icon": "rbxassetid://15000808284", "InventoryTags": [ - "Miscellaneous", + "Buffs", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, }, - "configName": "Diamond Pencil", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "b4e1d9ad88507ae6", + "configName": "Toy Bone", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.500Z", + "hashShort": "236c6033520da764", }, { - "category": "Discontinued", + "category": "Buffs", "collection": "MiscItems", "configData": { - "Desc": "Boost your odds in a Doodle Battle by 200%!", - "Discontinued": true, - "DisplayName": "Rainbow Pencil", - "Icon": "rbxassetid://71886168987931", + "Desc": "Reward your pets! Pets run 3x as fast for 5 minutes.", + "DisplayName": "Toy Ball", + "Icon": "rbxassetid://15000808391", "InventoryTags": [ - "Event", + "Buffs", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, }, - "configName": "Rainbow Pencil", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "043f746d1ad8dcdc", + "configName": "Toy Ball", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.498Z", + "hashShort": "41d2e3cbf564ba89", }, { - "category": "Discontinued", + "category": "Boosts", "collection": "MiscItems", "configData": { - "Desc": "Used in the Line Event!", - "Discontinued": true, - "DisplayName": "Line Token", - "Icon": "rbxassetid://72000916444654", + "Desc": "Rain down dozens of TNT into your zone! Loses power after area 40!", + "DisplayName": "TNT Crate", + "Icon": "rbxassetid://15107493489", "InventoryTags": [ - "Event", + "Boosts", ], "Rarity": { "Announce": false, @@ -66713,83 +70227,77 @@ Tap pets in Elemental World to throw!", "_id": "Legendary", "_script": null, }, - "Tradable": false, }, - "configName": "Line Token", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "e89a41898bd02b19", + "configName": "TNT Crate", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.188Z", + "hashShort": "19ce3ccae2e8471d", }, { - "category": "Discontinued", + "category": "Boosts", "collection": "MiscItems", "configData": { - "Desc": "Earn 2x Pet Tokens for 15 minutes!", - "Discontinued": true, - "DisplayName": "Pet Games Token Boost", - "Icon": "rbxassetid://111961401269954", + "Desc": "Blow up some Coins! Loses power after area 40!", + "DisplayName": "TNT", + "Icon": "rbxassetid://15107493549", "InventoryTags": [ - "Event", + "Boosts", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "Tradable": true, }, - "configName": "Pet Token Boost", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "194fc88ac546678f", + "configName": "TNT", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.191Z", + "hashShort": "7f2af518a754eb5e", }, { - "category": "Discontinued", + "category": "Buffs", "collection": "MiscItems", "configData": { - "Desc": "Earn 5x Pet Tokens for 15 minutes!", - "Discontinued": true, - "DisplayName": "Ultra Pet Games Token Boost", - "Icon": "rbxassetid://117650953398875", + "Desc": "Reward your pets! Pets deal damage 25% faster for 10 minutes.", + "DisplayName": "Squeaky Toy", + "Icon": "rbxassetid://15000808163", "InventoryTags": [ - "Event", + "Buffs", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "Tradable": true, }, - "configName": "Ultra Pet Token Boost", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "3ad52703ad1a55cb", + "configName": "Squeaky Toy", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.499Z", + "hashShort": "991bfaa6df224071", }, { - "category": "Discontinued", + "category": "Boosts", "collection": "MiscItems", "configData": { - "Desc": "Earned by playing in the Pet Games or farming in the event world!", - "Discontinued": true, - "DisplayName": "Pet Games Token", - "Icon": "rbxassetid://81952190742325", + "Desc": "It's a party! Starts a random event in your area!", + "DisplayName": "Party Box", + "Icon": "rbxassetid://15938616590", "InventoryTags": [ - "Event", + "Boosts", ], "Rarity": { "Announce": false, @@ -66803,83 +70311,77 @@ Tap pets in Elemental World to throw!", "_id": "Legendary", "_script": null, }, - "Tradable": false, }, - "configName": "Pet Games Token", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "2992a3ff6a2ad760", + "configName": "Party Box", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.198Z", + "hashShort": "436059daff47eb6f", }, { - "category": "Discontinued", + "category": "Boosts", "collection": "MiscItems", "configData": { - "Desc": "Used to purchase Pet Games Upgrades!", - "Discontinued": true, - "DisplayName": "Pet Game Card", - "Icon": "rbxassetid://98658891834395", + "Desc": "Send a comet down from the sky to the area you're standing in!", + "DisplayName": "Comet", + "Icon": "rbxassetid://15000811043", "InventoryTags": [ - "Event", + "Boosts", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "Tradable": false, }, - "configName": "Pet Game Card", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "9cf7f792dacd4322", + "configName": "Comet", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.204Z", + "hashShort": "607f9f87bb4d9a4b", }, { - "category": "Discontinued", + "category": "Boosts", "collection": "MiscItems", "configData": { - "Desc": "Used to craft Hellfire Cores in the Cannon Tycoon!", - "Discontinued": true, - "DisplayName": "Hellfire Crystal", - "Icon": "rbxassetid://82320386530923", + "Desc": "Starts a Lucky Block Event in your area!", + "DisplayName": "Lucky Block", + "Icon": "rbxassetid://15938616838", "InventoryTags": [ - "Event", + "Boosts", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "Tradable": false, }, - "configName": "Hellfire Crystal", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "2a6933a63403b347", + "configName": "Mini Lucky Block", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.190Z", + "hashShort": "77fa5045676aace2", }, { - "category": "Discontinued", + "category": "Boosts", "collection": "MiscItems", "configData": { - "Desc": "Spawns Mega Hellfire Gift in the Cannon Tycoon!", - "Discontinued": true, - "DisplayName": "Hellfire Core", - "Icon": "rbxassetid://129202746553338", + "Desc": "Starts a Piñata Event in your area!", + "DisplayName": "Piñata", + "Icon": "rbxassetid://15938616489", "InventoryTags": [ - "Event", + "Boosts", ], "Rarity": { "Announce": false, @@ -66893,53 +70395,49 @@ Tap pets in Elemental World to throw!", "_id": "Legendary", "_script": null, }, - "Tradable": true, }, - "configName": "Hellfire Core", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "687430101ca63595", + "configName": "Mini Pinata", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.194Z", + "hashShort": "d77cbedd63e50b1d", }, { - "category": "Discontinued", + "category": "Miscellaneous", "collection": "MiscItems", "configData": { - "Desc": "Used to unlock the Lightning Cannon in the Cannon Tycoon!", - "Discontinued": true, - "DisplayName": "Lightning Cannon Token", - "Icon": "rbxassetid://88877115487128", + "Desc": "Use on a pet to give it a name! Just don't name it Joe.", + "DisplayName": "Nametag", + "Icon": "rbxassetid://15000808651", "InventoryTags": [ - "Event", + "Miscellaneous", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "Tradable": true, }, - "configName": "Lightning Cannon", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "0afcc86ac8225ded", + "configName": "Nametag", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.205Z", + "hashShort": "cf7969c45c8c9f8d", }, { - "category": "Discontinued", + "category": "Miscellaneous", "collection": "MiscItems", "configData": { - "Desc": "Used to unlock the Nuclear Cannon in the Cannon Tycoon!", - "Discontinued": true, - "DisplayName": "Nuclear Cannon Token", - "Icon": "rbxassetid://92952222395298", + "Desc": "Sign a pet with your name!", + "DisplayName": "Pet Signature", + "Icon": "rbxassetid://15000808506", "InventoryTags": [ - "Event", + "Miscellaneous", ], "Rarity": { "Announce": true, @@ -66953,205 +70451,195 @@ Tap pets in Elemental World to throw!", "_id": "Divine", "_script": null, }, - "Tradable": true, + "Tradable": false, }, - "configName": "Nuclear Cannon", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "5f92c3b35e26e0af", + "configName": "Pet Signature", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.208Z", + "hashShort": "2fb8e90d671a8426", }, { - "category": "Discontinued", + "category": "Miscellaneous", "collection": "MiscItems", "configData": { - "Desc": "Used to unlock the Confetti Cannon in the Cannon Tycoon!", - "Discontinued": true, - "DisplayName": "Confetti Cannon Token", - "Icon": "rbxassetid://127806152682787", + "Desc": "Makes you swim faster! (no action required)", + "DisplayName": "Snorkel", + "Icon": "rbxassetid://15246142163", "InventoryTags": [ - "Event", + "Miscellaneous", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "Tradable": true, + "Tradable": false, }, - "configName": "Confetti Cannon", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "04b90b4a3ba4a24b", + "configName": "Snorkel", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.204Z", + "hashShort": "cd15ce3af4af219b", }, { - "category": "Discontinued", + "category": "Miscellaneous", "collection": "MiscItems", "configData": { - "Desc": "Used to unlock the Black Hole Cannon in the Cannon Tycoon!", - "Discontinued": true, - "DisplayName": "Black Hole Cannon Token", - "Icon": "rbxassetid://132067941069511", + "Desc": "💩💩💩", + "DisplayName": "Rainbow Swirl", + "Icon": "rbxassetid://15254924332", "InventoryTags": [ - "Event", + "Miscellaneous", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "Tradable": true, }, - "configName": "Black Hole Cannon", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "6a9371d3a4a28380", + "configName": "Rainbow Swirl", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.207Z", + "hashShort": "6be27a9397709403", }, { - "category": "Discontinued", + "category": "Miscellaneous", "collection": "MiscItems", "configData": { - "Desc": "Can be combined into Love Gifts using the Valentine's Machine!", - "Discontinued": true, - "DisplayName": "Valentine's Heart", - "Icon": "rbxassetid://80016575197859", + "Desc": "Does absolutely nothing.", + "DisplayName": "Old Boot", + "Icon": "rbxassetid://15254924540", "InventoryTags": [ - "Event", + "Miscellaneous", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "Tradable": false, }, - "configName": "Valentines Heart", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "a5bc647269d1f754", + "configName": "Old Boot", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.033Z", + "hashShort": "8434f014e769112c", }, { - "category": "Discontinued", + "category": "Miscellaneous", "collection": "MiscItems", "configData": { - "Desc": "Earned from rebirthing your tower! - -Each token allows you to hatch the HUGE Shattered Heart Agony for 1 hour!", - "Discontinued": true, - "DisplayName": "Tower Rebirth Token", - "Icon": "rbxassetid://82298514528405", + "Desc": "[LAUGH TRACK]", + "DisplayName": "Banana Peel", + "Icon": "rbxassetid://15254924672", "InventoryTags": [ - "Event", + "Miscellaneous", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "Tradable": false, }, - "configName": "Tower Rebirth Token", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "3bf25ab16eb22aa9", + "configName": "Banana Peel", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.185Z", + "hashShort": "61d0d9d4bda68ff3", }, { - "category": "Discontinued", + "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Used to enter the Valentine's Tower Tycoon raffle!", - "Discontinued": true, - "DisplayName": "Tower Raffle Ticket", - "Icon": "rbxassetid://103699563240148", + "Desc": "Slingy the slingshot is perfect for popping balloons! + +Click to equip!", + "DisplayName": "Slingy", + "Icon": "rbxassetid://15278596130", "InventoryTags": [ - "Event", + "Tools", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, "Tradable": false, }, - "configName": "Tower Raffle Ticket", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "e2ee3dc83e4810b6", + "configName": "Slingshot", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.352Z", + "hashShort": "79b72ef5801de115", }, { - "category": "Discontinued", + "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Used to purchase Card Event Upgrades!", - "Discontinued": true, - "DisplayName": "Upgrade Card", - "Icon": "rbxassetid://103039910052534", + "Desc": "Plants love water and grow faster! Lasts 20 minutes!", + "DisplayName": "Watering Can", + "Icon": "rbxassetid://15555104581", "InventoryTags": [ - "Event", + "Tools", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, "Tradable": false, }, - "configName": "Upgrade Card", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "0baaa3f8400f5c0c", + "configName": "Watering Can", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.346Z", + "hashShort": "f83b84f57a63ae42", }, { - "category": "Discontinued", + "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Unlocks the Card Merchant Area! Earned from the Card Index Rewards!", - "Discontinued": true, - "DisplayName": "Card Shop Key", - "Icon": "rbxassetid://120760084851780", + "Desc": "Plants love gold water and grow faster! Lasts 1 hour!", + "DisplayName": "Golden Watering Can", + "Icon": "rbxassetid://15555104643", "InventoryTags": [ - "Event", + "Tools", ], "Rarity": { "Announce": true, @@ -67165,23 +70653,22 @@ Each token allows you to hatch the HUGE Shattered Heart Agony for 1 hour!", "_id": "Exotic", "_script": null, }, - "Tradable": false, + "Tradable": true, }, - "configName": "Card Shop Key", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "5f9d09bbb2ebbde9", + "configName": "Golden Watering Can", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.341Z", + "hashShort": "7c574aa765d34350", }, { - "category": "Discontinued", + "category": "Miscellaneous", "collection": "MiscItems", "configData": { - "Desc": "Can be combined into Lucky Gifts using the Leprechaun Machine!", - "Discontinued": true, - "DisplayName": "Clover", - "Icon": "rbxassetid://121838700496664", + "Desc": "Instantly grow a plant!", + "DisplayName": "Insta-Plant Capsule", + "Icon": "rbxassetid://15554896248", "InventoryTags": [ - "Event", + "Farming", ], "Rarity": { "Announce": false, @@ -67195,81 +70682,76 @@ Each token allows you to hatch the HUGE Shattered Heart Agony for 1 hour!", "_id": "Legendary", "_script": null, }, - "Tradable": false, }, - "configName": "Clover", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "b74ec276566fce8a", + "configName": "Insta Plant Capsule", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.188Z", + "hashShort": "0ac3a22da296a281", }, { - "category": "Discontinued", + "category": "Buffs", "collection": "MiscItems", "configData": { - "Desc": "Unlocks the Leprechaun Chest at the end of Lucky Raids!", - "Discontinued": true, - "DisplayName": "Leprechaun Key", - "Icon": "rbxassetid://97209544403492", + "Desc": "A Christmas treat! Pets deal damage 10% faster for 5 minutes.", + "DisplayName": "Christmas Cookie", + "Icon": "rbxassetid://15636387872", "InventoryTags": [ - "Event", + "Buffs", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "Tradable": true, }, - "configName": "Leprechaun Key", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "f04820cd48a1f72c", + "configName": "Christmas Cookie", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.510Z", + "hashShort": "65fc43af229d89fe", }, { - "category": "Discontinued", + "category": "Buffs", "collection": "MiscItems", "configData": { - "Desc": "Used to purchase Lucky Raid Upgrades! Earned from gaining Lucky Raid levels!", - "Discontinued": true, - "DisplayName": "Lucky Raid Orb", - "Icon": "rbxassetid://107058871267889", + "Desc": "A Christmas treat! You and your pets run 50% faster for 5 minutes.", + "DisplayName": "Hot Cocoa", + "Icon": "rbxassetid://15636387987", "InventoryTags": [ - "Event", + "Buffs", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "Tradable": false, }, - "configName": "Lucky Raid Orb", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "0bbbdc5ea183ac2e", + "configName": "Hot Cocoa", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.499Z", + "hashShort": "0d36d1e0e759fcb4", }, { "category": "Discontinued", "collection": "MiscItems", "configData": { - "Desc": "The lower half to the Lucky Raid Boss Key. Combine this with the upper half!", + "Desc": "Place on a tree in Holiday World and leave a special message!", "Discontinued": true, - "DisplayName": "Lucky Raid Boss Key: Lower Half", - "Icon": "rbxassetid://85599753132358", + "DisplayName": "Blue Christmas Ornament", + "Icon": "rbxassetid://15628075380", "InventoryTags": [ "Event", ], @@ -67286,19 +70768,48 @@ Each token allows you to hatch the HUGE Shattered Heart Agony for 1 hour!", "_script": null, }, }, - "configName": "Lucky Raid Boss Key Lower Half", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "f36849b4b4645cc9", + "configName": "Blue Christmas Ornament", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.786Z", + "hashShort": "ed9c5b74fbc60dcb", }, { "category": "Discontinued", "collection": "MiscItems", "configData": { - "Desc": "The lower half to the Lucky Raid Boss Key. Combine this with the lower half!", + "Desc": "Place on a tree in Holiday World and leave a special message!", "Discontinued": true, - "DisplayName": "Lucky Raid Boss Key: Upper Half", - "Icon": "rbxassetid://125658414860429", + "DisplayName": "Gold Christmas Ornament", + "Icon": "rbxassetid://15621569759", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + }, + "configName": "Gold Christmas Ornament", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.646Z", + "hashShort": "c6a7eee2785f732f", + }, + { + "category": "Discontinued", + "collection": "MiscItems", + "configData": { + "Desc": "Place on a tree in Holiday World and leave a special message!", + "Discontinued": true, + "DisplayName": "Green Christmas Ornament", + "Icon": "rbxassetid://15621569679", "InventoryTags": [ "Event", ], @@ -67315,463 +70826,447 @@ Each token allows you to hatch the HUGE Shattered Heart Agony for 1 hour!", "_script": null, }, }, - "configName": "Lucky Raid Boss Key Upper Half", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "4e63110a10b471d6", + "configName": "Green Christmas Ornament", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.633Z", + "hashShort": "151751840d8b6422", }, { "category": "Discontinued", "collection": "MiscItems", "configData": { - "Desc": "Used to unlock the final Lucky Raid Boss room!", + "Desc": "Place on a tree in Holiday World and leave a special message!", "Discontinued": true, - "DisplayName": "Lucky Raid Boss Key", - "Icon": "rbxassetid://110981208047993", + "DisplayName": "Pink Christmas Ornament", + "Icon": "rbxassetid://15628075235", "InventoryTags": [ "Event", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, }, - "configName": "Lucky Raid Boss Key", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "0fe44245aa2047fa", + "configName": "Pink Christmas Ornament", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.632Z", + "hashShort": "42c7d42c0eae73ef", }, { "category": "Discontinued", "collection": "MiscItems", "configData": { - "Desc": "Who's there? Nobody knows!", + "Desc": "Place on a tree in Holiday World and leave a special message!", "Discontinued": true, - "DisplayName": "Mystery Lucky Raid Key", - "Icon": "rbxassetid://97209544403492", + "DisplayName": "Red Christmas Ornament", + "Icon": "rbxassetid://15621569543", "InventoryTags": [ "Event", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "Tradable": false, }, - "configName": "Mystery Lucky Raid Key", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "6566e38e39a9edb9", + "configName": "Red Christmas Ornament", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.795Z", + "hashShort": "0992d588e08387e9", }, { "category": "Discontinued", "collection": "MiscItems", "configData": { - "Desc": "Deep blue gem of clarity", + "Desc": "Place on a tree in Holiday World and leave a special message!", "Discontinued": true, - "DisplayName": "Sapphire Gem", - "Icon": "rbxassetid://84504397312679", + "DisplayName": "Silver Christmas Ornament", + "Icon": "rbxassetid://15628075059", "InventoryTags": [ "Event", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "Tradable": true, }, - "configName": "Sapphire Gem", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "5c10538f0498b33d", + "configName": "Silver Christmas Ornament", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.797Z", + "hashShort": "eb33392de40a1b99", }, { - "category": "Discontinued", + "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Firey red stone of passion", - "Discontinued": true, - "DisplayName": "Ruby Gem", - "Icon": "rbxassetid://138741487405849", + "Desc": "The ultimate snowball throwing machine! + +Click to equip!", + "DisplayName": "Snowball Launcher", + "Icon": "rbxassetid://15636482701", "InventoryTags": [ - "Event", + "Tools", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "Tradable": true, }, - "configName": "Ruby Gem", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "d3e220602b405678", + "configName": "Snowball Launcher", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.351Z", + "hashShort": "159074942ab0d0ac", }, { - "category": "Discontinued", + "category": "Miscellaneous", "collection": "MiscItems", "configData": { - "AltIcon": "rbxassetid://85917747502089", - "Desc": "Brilliant green jewel", - "Discontinued": true, - "DisplayName": "Emerald Gem", - "Icon": "rbxassetid://85917747502089", + "Desc": "Use as ammo for the Firework Cannon!", + "DisplayName": "Fireworks", + "Icon": "rbxassetid://15803238824", "InventoryTags": [ - "Event", + "Miscellaneous", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "Tradable": true, }, - "configName": "Emerald Gem", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "5746e9c3374fb965", + "configName": "Fireworks", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.206Z", + "hashShort": "8e5bcea966090959", }, { - "category": "Discontinued", + "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Mystic purple crystal", - "Discontinued": true, - "DisplayName": "Amethyst Gem", - "Icon": "rbxassetid://135888300759373", + "Desc": "Careful not to set anything on fire! + +Click to equip!", + "DisplayName": "Firework Cannon", + "Icon": "rbxassetid://15803239074", "InventoryTags": [ - "Event", + "Tools", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "Tradable": true, }, - "configName": "Amethyst Gem", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "b828954f4bd779e0", + "configName": "Firework Cannon", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.507Z", + "hashShort": "86d868eabc0abeb0", }, { - "category": "Discontinued", + "category": "Miscellaneous", "collection": "MiscItems", "configData": { - "Desc": "Gem with a shimmering spectrum of colors overflowing", - "Discontinued": true, - "DisplayName": "Rainbow Gem", - "Icon": "rbxassetid://139521341995918", + "Desc": "Use as ammo for the Snowball Launcher!", + "DisplayName": "Snowball", + "Icon": "rbxassetid://15636387722", "InventoryTags": [ - "Event", + "Miscellaneous", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "Tradable": true, }, - "configName": "Rainbow Gem", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "31ee6b44e1278899", + "configName": "Snowball", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.207Z", + "hashShort": "e339a858a75b5f6f", }, { - "category": "Discontinued", + "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Radiant gold crystal of fortune", - "Discontinued": true, - "DisplayName": "Topaz Gem", - "Icon": "rbxassetid://120275246838261", + "Desc": "Can be filled with Magic!", + "DisplayName": "Bucket", + "Icon": "rbxassetid://15938616333", "InventoryTags": [ - "Event", + "Tools", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Superior", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 8, - "_id": "Superior", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "Tradable": true, }, - "configName": "Topaz Gem", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "f48b88a42e318ce4", + "configName": "Bucket", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.494Z", + "hashShort": "2be8603133009187", }, { - "category": "Discontinued", + "category": "Miscellaneous", "collection": "MiscItems", "configData": { - "Desc": "Shimmering silver gem of wisdom", - "Discontinued": true, - "DisplayName": "Quartz Gem", - "Icon": "rbxassetid://126549199187047", + "Desc": "A bucket filled with magic! Obtainable in the Advanced Digsite minigame.", + "DisplayName": "Bucket O' Magic", + "Icon": "rbxassetid://15938616124", "InventoryTags": [ - "Event", + "Miscellaneous", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "Tradable": true, }, - "configName": "Quartz Gem", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "b830cfc9fda377f2", + "configName": "Bucket O' Magic", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.206Z", + "hashShort": "d953699cc99dcf2b", }, { - "category": "Discontinued", + "category": "Miscellaneous", "collection": "MiscItems", "configData": { - "Desc": "Gem infused with immense power", - "Discontinued": true, - "DisplayName": "Onyx Gem", - "Icon": "rbxassetid://81003948377915", + "Desc": "Shards filled with magic! Obtainable in the Advanced Fishing minigame", + "DisplayName": "Magic Shard", + "Icon": "rbxassetid://15938615522", "InventoryTags": [ - "Event", + "Miscellaneous", ], "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Celestial", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 9, - "_id": "Celestial", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "Tradable": true, }, - "configName": "Onyx Gem", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "a70f171b2feadb82", + "configName": "Magic Shard", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.032Z", + "hashShort": "0d537d98ffc5cceb", }, { - "category": "Discontinued", + "category": "Boosts", "collection": "MiscItems", "configData": { - "Desc": "Used to fuel the Slime Factory Huge Chance Machine!", - "Discontinued": true, - "DisplayName": "Slime Token", - "Icon": "rbxassetid://77542469799258", + "Desc": "Place in an area to increase breakable respawn rate by 50%! Lasts 5 minutes!", + "DisplayName": "Sprinkler", + "Icon": "rbxassetid://16467241128", "InventoryTags": [ - "Event", + "Boosts", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "Tradable": false, }, - "configName": "Slime Token", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "89b31d078423ea00", + "configName": "Breakable Sprinkler", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.201Z", + "hashShort": "23ab4bc8d48a1972", }, { "category": "Keys", "collection": "MiscItems", "configData": { - "Desc": "Used to unlock the MVP Chest in the Spawn Castle! Requires MVP Subscription to use!", - "DisplayName": "MVP Key", - "Icon": "rbxassetid://77445028327693", + "Desc": "Used to unlock the Tech Chest!", + "DisplayName": "Tech Key", + "Icon": "rbxassetid://16290745791", "InventoryTags": [ "Keys", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, }, - "configName": "MVP Key", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "c89de2016f40b1c7", + "configName": "Tech Key", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.351Z", + "hashShort": "527a717383c32c90", }, { "category": "Keys", "collection": "MiscItems", "configData": { - "Desc": "The lower half to the MVP Key. Combine this with the upper half! Requires MVP Subscription to combine.", - "DisplayName": "MVP Key: Lower Half", - "Icon": "rbxassetid://138258335244851", + "Desc": "The lower half to the Tech Key. Combine this with the upper half!", + "DisplayName": "Tech Key: Lower Half", + "Icon": "rbxassetid://16290745686", "InventoryTags": [ "Keys", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, }, - "configName": "MVP Key Lower Half", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "dbb7e4f11330b6eb", + "configName": "Tech Key Lower Half", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.352Z", + "hashShort": "7d8987692c9958b6", }, { "category": "Keys", "collection": "MiscItems", "configData": { - "Desc": "The upper half to the MVP Key. Combine this with the lower half! Requires MVP Subscription to combine.", - "DisplayName": "MVP Key: Upper Half", - "Icon": "rbxassetid://123443588350607", + "Desc": "The upper half to the Tech Key. Combine this with the lower half!", + "DisplayName": "Tech Key: Upper Half", + "Icon": "rbxassetid://16290745565", "InventoryTags": [ "Keys", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, }, - "configName": "MVP Key Upper Half", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "cab441d6020bb5e0", + "configName": "Tech Key Upper Half", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.349Z", + "hashShort": "26ddb43558b88079", }, { - "category": "Vouchers", + "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Redeem to enter the Exclusive Raffle!", - "DisplayName": "Exclusive Raffle Ticket", - "Icon": "rbxassetid://133664564742718", + "Desc": "Destroy one charm on your pet!", + "DisplayName": "Charm Hammer", + "Icon": "rbxassetid://16396229292", "InventoryTags": [ - "Vouchers", + "Charms", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, }, - "configName": "Exclusive Raffle Ticket", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "019ff391a2458a58", + "configName": "Charm Hammer", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.345Z", + "hashShort": "5c47ba77fc8b2f35", }, { - "category": "Discontinued", + "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Used to unlock the secret room in the 2025 Easter Event!", - "Discontinued": true, - "DisplayName": "Easter Secret Key", - "Icon": "rbxassetid://110695119653954", + "Desc": "Extract one charm from a pet and add it back into your inventory!", + "DisplayName": "Charm Chisel", + "Icon": "rbxassetid://16396229151", "InventoryTags": [ - "Event", + "Charms", ], "Rarity": { "Announce": true, @@ -67786,227 +71281,188 @@ Each token allows you to hatch the HUGE Shattered Heart Agony for 1 hour!", "_script": null, }, }, - "configName": "Easter Secret Key", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "04fae6df5bbc181c", + "configName": "Charm Chisel", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.354Z", + "hashShort": "15b25eb65b75cac9", }, { - "category": "Discontinued", + "category": "Vouchers", "collection": "MiscItems", "configData": { - "Desc": "Used at the Giant Easter Basket to boost your final egg TITANIC & HUGE odds!", - "Discontinued": true, - "DisplayName": "Lucky Easter Egg", - "Icon": "rbxassetid://125215562870875", + "Desc": "Redeem to spin the Tech Spinny Wheel! [World 2 Required]", + "DisplayName": "Tech Spinny Wheel Ticket", + "Icon": "rbxassetid://16481320320", "InventoryTags": [ - "Event", + "Vouchers", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Tradable": false, - }, - "configName": "Lucky Easter Egg", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "41ea585b26ab8f2c", - }, - { - "category": "Discontinued", - "collection": "MiscItems", - "configData": { - "Desc": "Used at the Giant Easter Basket to boost your Easter egg hunt HUGE odds!", - "Discontinued": true, - "DisplayName": "Hunt Easter Egg", - "Icon": "rbxassetid://99408821135785", - "InventoryTags": [ - "Event", - ], - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "Tradable": false, }, - "configName": "Hunt Easter Egg", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "37e64739dde8d843", + "configName": "Tech Spinny Wheel Ticket", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.492Z", + "hashShort": "3038e8b8305ec607", }, { - "category": "Discontinued", + "category": "Miscellaneous", "collection": "MiscItems", "configData": { - "Desc": "Used at the Giant Easter Basket to boost your secret Easter room HUGE odds!", - "Discontinued": true, - "DisplayName": "Secret Easter Egg", - "Icon": "rbxassetid://105083879250284", + "Desc": "Used to play the Claw Machine!", + "DisplayName": "Arcade Token", + "Icon": "rbxassetid://16756837238", "InventoryTags": [ - "Event", + "Miscellaneous", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "Tradable": false, }, - "configName": "Secret Easter Egg", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "da859cfabbe7660a", + "configName": "Arcade Token", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.200Z", + "hashShort": "04730c45bc1edaae", }, { - "category": "Discontinued", + "category": "Miscellaneous", "collection": "MiscItems", "configData": { - "Desc": "Used to purchase Easter Chest Upgrades!", - "Discontinued": true, - "DisplayName": "Easter Token", - "Icon": "rbxassetid://103859738720586", + "Desc": "Used to empower enchants! Created at the Enchant Empowering Machine!", + "DisplayName": "Enchant Essence", + "Icon": "rbxassetid://16847071561", "InventoryTags": [ - "Event", + "Miscellaneous", ], "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "Tradable": false, }, - "configName": "Easter Token", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "d2173a3560b67ca1", + "configName": "Enchant Essence", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.206Z", + "hashShort": "f631ac18e4e59972", }, { - "category": "Boats", + "category": "Boosts", "collection": "MiscItems", "configData": { - "Desc": "Unsure of its purpose, but very certain of its charm.", - "DisplayName": "Dinghy Thingy", - "Icon": "rbxassetid://117656406529067", + "Desc": "Drop an Item Jar in the area you're standing in for items!", + "DisplayName": "Basic Item Jar", + "Icon": "rbxassetid://16717382310", "InventoryTags": [ - "Boats", + "Boosts", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "Tradable": false, }, - "configName": "Boat 1", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "7551a3305cac6312", + "configName": "Basic Item Jar", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.187Z", + "hashShort": "54ceba29f68cbc92", }, { - "category": "Boats", + "category": "Gifts", "collection": "MiscItems", "configData": { - "Desc": "Lighthearted by nature, directionally flexible.", - "DisplayName": "Lil' Splashy", - "Icon": "rbxassetid://76011406806769", + "Desc": "Open for a ton of random enchants!", + "DisplayName": "Large Bundle O' Enchants", + "Icon": "rbxassetid://16717382051", "InventoryTags": [ - "Boats", + "Gifts", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "Tradable": false, }, - "configName": "Boat 2", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "ea74fff9df80cc8c", + "configName": "Large Enchant Bundle", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.191Z", + "hashShort": "a463fa91edf7b7c7", }, { - "category": "Boats", + "category": "Gifts", "collection": "MiscItems", "configData": { - "Desc": "Quietly confident, secretly in charge.", - "DisplayName": "Tiny Terror", - "Icon": "rbxassetid://129105245106525", + "Desc": "Open for a ton of random potions!", + "DisplayName": "Large Bundle O' Potions", + "Icon": "rbxassetid://16717381901", "InventoryTags": [ - "Boats", + "Gifts", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "Tradable": false, }, - "configName": "Boat 3", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "f7789a145266227d", + "configName": "Large Potion Bundle", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.184Z", + "hashShort": "963a66798b05b1e2", }, { - "category": "Boats", + "category": "Gifts", "collection": "MiscItems", "configData": { - "Desc": "Soft presence, firm intent.", - "DisplayName": "White Paw", - "Icon": "rbxassetid://101858146467837", + "Desc": "Open for random fruit!", + "DisplayName": "Bundle O' Fruit", + "Icon": "rbxassetid://16717381443", "InventoryTags": [ - "Boats", + "Gifts", ], "Rarity": { "Announce": false, @@ -68020,51 +71476,53 @@ Each token allows you to hatch the HUGE Shattered Heart Agony for 1 hour!", "_id": "Legendary", "_script": null, }, - "Tradable": false, }, - "configName": "Boat 4", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "577fbc886114f7f5", + "configName": "Fruit Bundle", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.343Z", + "hashShort": "b180dd20e1e0193e", }, { - "category": "Boats", + "category": "Vouchers", "collection": "MiscItems", "configData": { - "Desc": "Methodical. Unfazed. Maybe a little judgmental.", - "DisplayName": "The Sea Unit", - "Icon": "rbxassetid://138561265608995", + "AltIcon": "rbxassetid://16756922746", + "Desc": "Earned for completing Area Quests! + +Redeem at the Area 140 Quest Merchant!", + "DisplayName": "Quest Medal", + "Icon": "rbxassetid://16756918013", "InventoryTags": [ - "Boats", + "Vouchers", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, "Tradable": false, }, - "configName": "Boat 5", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "b60ab9cb872b7787", + "configName": "Quest Medal", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.509Z", + "hashShort": "8c01d0a214489955", }, { - "category": "Boats", + "category": "Vouchers", "collection": "MiscItems", "configData": { - "Desc": "One of one, even when there’s more.", - "DisplayName": "Kraken Raft", - "Icon": "rbxassetid://14968271149", + "Desc": "Use this to gain an extra Exclusive Daycare enroll slot!", + "DisplayName": "Exclusive Daycare Slot Voucher", + "Icon": "rbxassetid://16756631444", "InventoryTags": [ - "Boats", + "Vouchers", ], "Rarity": { "Announce": true, @@ -68078,22 +71536,21 @@ Each token allows you to hatch the HUGE Shattered Heart Agony for 1 hour!", "_id": "Exclusive", "_script": null, }, - "Tradable": false, }, - "configName": "Kraken", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "abe8d679275d2d85", + "configName": "Exclusive Daycare Slot Voucher", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.501Z", + "hashShort": "361416896bd782a6", }, { - "category": "Keys", + "category": "Gifts", "collection": "MiscItems", "configData": { - "Desc": "Pieces of Fantasy itself. Gather them before the portal opens.", - "DisplayName": "Fantasy Fragment", - "Icon": "rbxassetid://104812704571333", + "Desc": "Open for the best high tier loot!", + "DisplayName": "Rainbow Mini Chest", + "Icon": "rbxassetid://17024878999", "InventoryTags": [ - "Keys", + "Gifts", ], "Rarity": { "Announce": true, @@ -68108,18 +71565,18 @@ Each token allows you to hatch the HUGE Shattered Heart Agony for 1 hour!", "_script": null, }, }, - "configName": "Fantasy Fragment", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "04c3e3be262f91a4", + "configName": "Rainbow Mini Chest", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.344Z", + "hashShort": "c69d2463cac40a84", }, { "category": "Keys", "collection": "MiscItems", "configData": { - "Desc": "Used to unlock the Fantasy Chest!", - "DisplayName": "Fantasy Key", - "Icon": "rbxassetid://108512775636522", + "Desc": "Used to gain access to the Treasure Hideout minigame!", + "DisplayName": "Treasure Hideout Key", + "Icon": "rbxassetid://16992800008", "InventoryTags": [ "Keys", ], @@ -68136,104 +71593,109 @@ Each token allows you to hatch the HUGE Shattered Heart Agony for 1 hour!", "_script": null, }, }, - "configName": "Fantasy Key", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "557f5793c832e08c", + "configName": "Treasure Hideout Key", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.338Z", + "hashShort": "bc13216a89d9e44d", }, { "category": "Keys", "collection": "MiscItems", "configData": { - "Desc": "The upper half to the Fantasy Key. Combine this with the lower half!", - "DisplayName": "Fantasy Key: Upper Half", - "Icon": "rbxassetid://108917316617818", + "Desc": "The lower half to the Treasure Hideout Key. Combine this with the upper half!", + "DisplayName": "Treasure Hideout Key: Lower Half", + "Icon": "rbxassetid://16992799849", "InventoryTags": [ "Keys", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, }, - "configName": "Fantasy Key Upper Half", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "33d1d98f7383bebe", + "configName": "Treasure Hideout Key Lower Half", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.343Z", + "hashShort": "f7158f1e3f1baf24", }, { "category": "Keys", "collection": "MiscItems", "configData": { - "Desc": "The lower half to the Fantasy Key. Combine this with the upper half!", - "DisplayName": "Fantasy Key: Lower Half", - "Icon": "rbxassetid://83084787090931", + "Desc": "The upper half to the Treasure Hideout Key. Combine this with the lower half!", + "DisplayName": "Treasure Hideout Key: Upper Half", + "Icon": "rbxassetid://16992799743", "InventoryTags": [ "Keys", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, }, - "configName": "Fantasy Key Lower Half", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "8672dd58d49e75e6", + "configName": "Treasure Hideout Key Upper Half", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.348Z", + "hashShort": "edb0b9a34a5d6c8c", }, { - "category": "Vouchers", + "category": "Buffs", "collection": "MiscItems", "configData": { - "Desc": "Redeem to spin the Fantasy Spinny Wheel! [World 4 Required]", - "DisplayName": "Fantasy Spinny Wheel Ticket", - "Icon": "rbxassetid://116554568552023", + "Desc": "Beware! Consuming this improves your drops from mini games by 100%!", + "DisplayName": "Nightmare Fuel", + "Icon": "rbxassetid://17298505497", "InventoryTags": [ - "Vouchers", + "Buffs", ], "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, }, - "configName": "Fantasy Spinny Wheel Ticket", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "e6d9c3a8099b6b9d", + "configName": "Nightmare Fuel", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.500Z", + "hashShort": "1a04474753d8522e", }, { - "category": "Boats", + "category": "Buffs", "collection": "MiscItems", "configData": { - "Desc": "Always cold. Never Warm.", - "DisplayName": "Reel Frosty", - "Icon": "rbxassetid://105592631081706", + "Desc": "Glitched into the game! + +Temporarily increases: +- Coins by 250% +- Diamonds by 25% +- Egg luck by 400%", + "DisplayName": "Glitched Drive", + "Icon": "rbxassetid://17296978433", "InventoryTags": [ - "Boats", + "Buffs", ], "Rarity": { "Announce": true, @@ -68247,109 +71709,117 @@ Each token allows you to hatch the HUGE Shattered Heart Agony for 1 hour!", "_id": "Exotic", "_script": null, }, - "Tradable": false, }, - "configName": "Boat 6", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "73418bf0b20c69ca", + "configName": "Glitched Drive", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.499Z", + "hashShort": "2c2200625fefb3dc", }, { - "category": "Event", + "category": "Discontinued", "collection": "MiscItems", "configData": { - "Desc": "Pixelized dust used in the Pixel Combine-O-Matic!", - "DisplayName": "Pixel Rainbow Dust", - "Icon": "rbxassetid://82237066339990", + "Desc": "Can be combined using the Glitch Computer to turn into Glitched Gifts! + +Worth 1 point!", + "Discontinued": true, + "DisplayName": "Basic Glitch Core", + "Icon": "rbxassetid://17296978822", "InventoryTags": [ - "FarmHoldable", + "Event", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "Tradable": true, }, - "configName": "Pixel Rainbow Dust", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "8e3759f1007f06d7", + "configName": "Basic Glitch Core", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.511Z", + "hashShort": "ffa66c4c53fd7a7e", }, { - "category": "Event", + "category": "Discontinued", "collection": "MiscItems", "configData": { - "Desc": "Pixelized shard used in the Pixel Combine-O-Matic!", - "DisplayName": "Pixel Rainbow Shard", - "Icon": "rbxassetid://80894759807292", + "Desc": "Can be combined using the Glitch Computer to turn into Glitched Gifts! + +Worth 5 points!", + "Discontinued": true, + "DisplayName": "Rare Glitch Core", + "Icon": "rbxassetid://17296979040", "InventoryTags": [ - "FarmHoldable", + "Event", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "Tradable": true, }, - "configName": "Pixel Rainbow Shard", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "be753c6241881f4e", + "configName": "Rare Glitch Core", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.647Z", + "hashShort": "4839a35025bff442", }, { - "category": "Event", + "category": "Discontinued", "collection": "MiscItems", "configData": { - "Desc": "Pixelized gem used in the Pixel Combine-O-Matic!", - "DisplayName": "Pixel Rainbow Gem", - "Icon": "rbxassetid://97872334211100", + "Desc": "Can be combined using the Glitch Computer to turn into Glitched Gifts! + +Worth 20 points!", + "Discontinued": true, + "DisplayName": "Epic Glitch Core", + "Icon": "rbxassetid://17296979284", "InventoryTags": [ - "FarmHoldable", + "Event", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "Tradable": true, }, - "configName": "Pixel Rainbow Gem", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "144636b33f2252ff", + "configName": "Epic Glitch Core", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.642Z", + "hashShort": "c0e72476f7162067", }, { - "category": "Event", + "category": "Discontinued", "collection": "MiscItems", "configData": { - "Desc": "Used to purchase Farming World Upgrades!", - "DisplayName": "Pixel Upgrade Token", - "Icon": "rbxassetid://96732862229830", + "Desc": "Can be combined using the Glitch Computer to turn into Glitched Gifts! + +Worth 100 points!", + "Discontinued": true, + "DisplayName": "Legendary Glitch Core", + "Icon": "rbxassetid://17296978675", "InventoryTags": [ - "FarmHoldable", + "Event", ], "Rarity": { "Announce": false, @@ -68363,22 +71833,24 @@ Each token allows you to hatch the HUGE Shattered Heart Agony for 1 hour!", "_id": "Legendary", "_script": null, }, - "Tradable": false, }, - "configName": "Pixel Upgrade Token", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "3e80eae07cf9b571", + "configName": "Legendary Glitch Core", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.639Z", + "hashShort": "a9b199138822bb0a", }, { - "category": "Farming", + "category": "Discontinued", "collection": "MiscItems", "configData": { - "Desc": "Accelerate the growth of your eggs! Bonus: keeps your pets cool 😎", - "DisplayName": "Farming Sprinkler", - "Icon": "rbxassetid://16467241128", + "Desc": "Can be combined using the Glitch Computer to turn into Glitched Gifts! + +Worth 500 points!", + "Discontinued": true, + "DisplayName": "Mythical Glitch Core", + "Icon": "rbxassetid://17296978562", "InventoryTags": [ - "Farming", + "Event", ], "Rarity": { "Announce": false, @@ -68393,223 +71865,220 @@ Each token allows you to hatch the HUGE Shattered Heart Agony for 1 hour!", "_script": null, }, }, - "configName": "Farming Sprinkler", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "eb6ab882e04fe2a5", + "configName": "Mythical Glitch Core", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.634Z", + "hashShort": "e78a8f26bef65992", }, { - "category": "Farming", + "category": "Discontinued", "collection": "MiscItems", "configData": { - "Desc": "Keeps your pet fed for 30 minutes!", - "DisplayName": "Pixel Carrot", - "Icon": "rbxassetid://120094087159199", + "Desc": "Access locked backrooms for loot! Found in the backrooms!", + "Discontinued": true, + "DisplayName": "Backrooms Key", + "Icon": "rbxassetid://17372987603", "InventoryTags": [ - "FarmFood", + "Event", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, "Tradable": false, }, - "configName": "Pixel Carrot", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "53d5fea3e51fe072", + "configName": "Backrooms Key", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.802Z", + "hashShort": "63c1a938cb1f1dff", }, { - "category": "Farming", + "category": "Discontinued", "collection": "MiscItems", "configData": { - "Desc": "Keeps your pet fed for 2 hours!", - "DisplayName": "Pixel Potato", - "Icon": "rbxassetid://76512518216985", + "Desc": "Access locked deep backrooms for loot! Found in the DEEP backrooms!", + "Discontinued": true, + "DisplayName": "Deep Backrooms Key", + "Icon": "rbxassetid://17440887836", "InventoryTags": [ - "FarmFood", + "Event", ], "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, "Tradable": false, }, - "configName": "Pixel Potato", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "50e9ee5da789b9b0", + "configName": "Deep Backrooms Key", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.788Z", + "hashShort": "6d30c4f4cb265a79", }, { - "category": "Farming", + "category": "Keys", "collection": "MiscItems", "configData": { - "Desc": "Keeps your pet fed for 6 hours!", - "DisplayName": "Pixel Corn", - "Icon": "rbxassetid://97208731808454", + "Desc": "Unlocks cells in Prison World for a HUGE pet chance! Drops randomly!", + "DisplayName": "Prison Key", + "Icon": "rbxassetid://17486584661", "InventoryTags": [ - "FarmFood", + "Keys", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "Tradable": false, }, - "configName": "Pixel Corn", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "b8cda43dee9c68d9", + "configName": "Prison Key", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.355Z", + "hashShort": "d9805f54db2cc7d9", }, { - "category": "Event", + "category": "Keys", "collection": "MiscItems", "configData": { - "Desc": "Pixelized sprout used in the Pixel Combine-O-Matic!", - "DisplayName": "Pixel Sprout", - "Icon": "rbxassetid://107207547721427", + "Desc": "Unlocks cells in Prison World for 10x HUGE pet chance! Drops randomly!", + "DisplayName": "Golden Prison Key", + "Icon": "rbxassetid://17486584765", "InventoryTags": [ - "FarmHoldable", + "Keys", ], "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "Tradable": true, }, - "configName": "Pixel Sprout", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "471bc4bd943701bb", + "configName": "Golden Prison Key", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.353Z", + "hashShort": "3af26db1667c0f65", }, { - "category": "Event", + "category": "Keys", "collection": "MiscItems", "configData": { - "Desc": "Pixelized bloom used in the Pixel Combine-O-Matic!", - "DisplayName": "Pixel Bloom", - "Icon": "rbxassetid://103461948654704", + "Desc": "The upper half to the Void Key. Combine this with the lower half!", + "DisplayName": "Void Key: Upper Half", + "Icon": "rbxassetid://17496073194", "InventoryTags": [ - "FarmHoldable", + "Keys", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Superior", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 8, - "_id": "Superior", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "Tradable": true, }, - "configName": "Pixel Bloom", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "fc92d11f97980f08", + "configName": "Void Key Upper Half", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.335Z", + "hashShort": "0ac2787764db0954", }, { - "category": "Event", + "category": "Keys", "collection": "MiscItems", "configData": { - "Desc": "Pixelized prism used in the Pixel Combine-O-Matic!", - "DisplayName": "Pixel Prism", - "Icon": "rbxassetid://127084758403255", + "Desc": "The lower half to the Void Key. Combine this with the upper half!", + "DisplayName": "Void Key: Lower Half", + "Icon": "rbxassetid://17496073368", "InventoryTags": [ - "FarmHoldable", + "Keys", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Superior", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 8, - "_id": "Superior", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "Tradable": true, }, - "configName": "Pixel Prism", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "77994a28e9754958", + "configName": "Void Key Lower Half", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.357Z", + "hashShort": "563450fc82760628", }, { - "category": "Farming", + "category": "Keys", "collection": "MiscItems", "configData": { - "Desc": "Nearby eggs grow 25% faster! Affects up to 5 eggs and lasts 10 minutes.", - "DisplayName": "Farming Sprinkler I", - "Icon": "rbxassetid://117619087117505", + "Desc": "Used to unlock the Void Chest!", + "DisplayName": "Void Key", + "Icon": "rbxassetid://17496073535", "InventoryTags": [ - "FarmHoldable", + "Keys", ], "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "Tradable": false, }, - "configName": "Farming Sprinkler 1", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "4bae383a0c227d4a", + "configName": "Void Key", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.350Z", + "hashShort": "ca5a87b2024cf2ae", }, { - "category": "Farming", + "category": "Vouchers", "collection": "MiscItems", "configData": { - "Desc": "Keeps your pet fed for 12 hours. Additionally, your pet Ages 1.5x faster!", - "DisplayName": "Pixel Cookie", - "Icon": "rbxassetid://88711965728566", + "Desc": "Redeem to spin the Void Spinny Wheel! [World 3 Required]", + "DisplayName": "Void Spinny Wheel Ticket", + "Icon": "rbxassetid://17496073736", "InventoryTags": [ - "FarmFood", + "Vouchers", ], "Rarity": { "Announce": false, @@ -68623,107 +72092,106 @@ Each token allows you to hatch the HUGE Shattered Heart Agony for 1 hour!", "_id": "Legendary", "_script": null, }, - "Tradable": false, }, - "configName": "Pixel Cookie", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "94e3d2da8c7b8ea7", + "configName": "Void Spinny Wheel Ticket", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.501Z", + "hashShort": "e17a6950a1cea2d0", }, { - "category": "Farming", + "category": "Tools", "collection": "MiscItems", "configData": { - "Desc": "Keeps your pet fed for 24 hours. Additionally, your pet Ages 2x faster!", - "DisplayName": "Pixel Burger", - "Icon": "rbxassetid://117114420699088", + "Desc": "Capable of drenching players! + +Click to equip!", + "DisplayName": "Water Blaster", + "Icon": "rbxassetid://17688308367", "InventoryTags": [ - "FarmFood", + "Tools", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "Tradable": false, }, - "configName": "Pixel Burger", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "3f80f3c742750977", + "configName": "Water Gun", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.340Z", + "hashShort": "7453dc888da10601", }, { - "category": "Farming", + "category": "Miscellaneous", "collection": "MiscItems", "configData": { - "Desc": "Nearby eggs grow 50% faster! Affects up to 7 eggs and lasts 20 minutes.", - "DisplayName": "Farming Sprinkler II", - "Icon": "rbxassetid://139811459269601", + "Desc": "Can be combined into Summer Gifts using the Seashell Machine!", + "DisplayName": "Seashell", + "Icon": "rbxassetid://17671375505", "InventoryTags": [ - "FarmHoldable", + "Miscellaneous", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "Tradable": false, }, - "configName": "Farming Sprinkler 2", - "dateCreated": "2025-07-05T23:23:47.944Z", - "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "a064d7bf43c0d265", + "configName": "Seashell", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:02.202Z", + "hashShort": "4bd144142323e255", }, { - "category": "Farming", + "category": "Keys", "collection": "MiscItems", "configData": { - "Desc": "Nearby eggs grow 100% faster! Affects up to 10 eggs and lasts one hour.", - "DisplayName": "Farming Sprinkler III", - "Icon": "rbxassetid://99804275060791", + "Desc": "Unlocks the chest in Hacker World for a HUGE pet chance! Drops randomly!", + "DisplayName": "Hacker Key", + "Icon": "rbxassetid://17745239286", "InventoryTags": [ - "FarmHoldable", + "Keys", ], "Rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "Tradable": false, }, - "configName": "Farming Sprinkler 3", + "configName": "Hacker Key", "dateCreated": "2025-07-05T23:23:47.944Z", "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "94c17f38f7717482", + "hashShort": "d56973c0fc765e6d", }, { - "category": "Event", + "category": "Discontinued", "collection": "MiscItems", "configData": { - "Desc": "Used to purchase Gym Upgrades!", - "DisplayName": "Dumbbell", - "Icon": "rbxassetid://76123751036732", + "Desc": "Can be combined into Good Gifts using the Good vs. Evil Machine!", + "Discontinued": true, + "DisplayName": "Angel Feather", + "Icon": "rbxassetid://18123783587", "InventoryTags": [ "Event", ], @@ -68741,18 +72209,19 @@ Each token allows you to hatch the HUGE Shattered Heart Agony for 1 hour!", }, "Tradable": false, }, - "configName": "Dumbbell", + "configName": "Angel Feather", "dateCreated": "2025-07-05T23:23:47.944Z", "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "594a166252a222ce", + "hashShort": "f5cb3aab6b8f25fd", }, { - "category": "Event", + "category": "Discontinued", "collection": "MiscItems", "configData": { - "Desc": "Used to purchase Gym Upgrades!", - "DisplayName": "Weight Plate", - "Icon": "rbxassetid://114538997212090", + "Desc": "Can be combined into Evil Gifts using the Good vs. Evil Machine!", + "Discontinued": true, + "DisplayName": "Demon Horn", + "Icon": "rbxassetid://18123783467", "InventoryTags": [ "Event", ], @@ -68770,134 +72239,135 @@ Each token allows you to hatch the HUGE Shattered Heart Agony for 1 hour!", }, "Tradable": false, }, - "configName": "Weight Plate", + "configName": "Demon Horn", "dateCreated": "2025-07-05T23:23:47.944Z", "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "f498e54f10ee754e", + "hashShort": "661d7076777491bb", }, { - "category": "Event", + "category": "Gifts", "collection": "MiscItems", "configData": { - "Desc": "Earned from Bench a Gargantuan, used in the Gym Skill Upgrade machine!", - "DisplayName": "Muscle Helix", - "Icon": "rbxassetid://110195103686100", + "Desc": "Open for diamond rewards!", + "DisplayName": "Diamond Gift Bag", + "Icon": "rbxassetid://18254455124", "InventoryTags": [ - "Event", + "Gifts", ], "Rarity": { "Announce": false, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "Tradable": false, }, - "configName": "Muscle Helix", + "configName": "Diamond Gift Bag", "dateCreated": "2025-07-05T23:23:47.944Z", "dateModified": "2025-07-05T23:23:47.944Z", - "hashShort": "9d293944eb648084", + "hashShort": "29d421a20f5deb59", }, { - "category": "Keys", + "category": "Discontinued", "collection": "MiscItems", "configData": { - "Desc": "Used to unlock the Summer Block Party chest!", - "DisplayName": "Block Party Chest Key", - "Icon": "rbxassetid://77445028327693", + "Desc": "Increase the luck of the tile you're standing on by 100%! Event item only!", + "Discontinued": true, + "DisplayName": "Lucky Tile Boost", + "Icon": "rbxassetid://18351848112", "InventoryTags": [ - "Keys", + "Event", ], "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, }, - "configName": "Block Party Chest Key", - "dateCreated": "2025-07-12T16:08:35.301Z", - "dateModified": "2025-07-12T16:08:35.301Z", - "hashShort": "97dd403e1485277a", + "configName": "Lucky Tile", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "226d2177cb43c3f4", }, { - "category": "Event", + "category": "Discontinued", "collection": "MiscItems", "configData": { - "Desc": "Can be combined into Tropical Gifts using the Summer Giftbag Machine (2025)!", - "DisplayName": "Tropical Flower", - "Icon": "rbxassetid://133532149711124", + "Desc": "Increase the luck of the tile you're standing on by 500%! Event item only!", + "Discontinued": true, + "DisplayName": "Ultra Lucky Tile Boost", + "Icon": "rbxassetid://18351847920", "InventoryTags": [ "Event", ], "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "Tradable": true, }, - "configName": "Tropical Flower", - "dateCreated": "2025-07-12T16:08:35.765Z", - "dateModified": "2025-07-12T16:08:35.765Z", - "hashShort": "fdf563157b1f98f5", + "configName": "Ultra Lucky Tile", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "f521b37487e48542", }, { - "category": "Event", + "category": "Discontinued", "collection": "MiscItems", "configData": { - "Desc": "Used to enter the Summer Block Party raffle!", - "DisplayName": "Summer Block Party Ticket", - "Icon": "rbxassetid://126924826850832", + "Desc": "Used in the Lucky Tiles World for special upgrades!", + "Discontinued": true, + "DisplayName": "Rave Upgrade Ticket", + "Icon": "rbxassetid://18449105243", "InventoryTags": [ "Event", ], "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, }, - "configName": "Summer Block Party Ticket", - "dateCreated": "2025-07-19T17:28:43.528Z", - "dateModified": "2025-07-19T17:28:43.528Z", - "hashShort": "e42fd1d408dc7ddf", + "configName": "Rave Upgrade Ticket", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "1deeb409aebcea77", }, { - "category": "Event", + "category": "Miscellaneous", "collection": "MiscItems", "configData": { - "Desc": "Used to purchase Halloween Upgrades!", - "DisplayName": "Witch Hat", - "Icon": "rbxassetid://128262661130871", + "Desc": "Used in the Boost Exchange to boost your stats!", + "DisplayName": "Millionaire Bucks", + "Icon": "rbxassetid://18519989805", "InventoryTags": [ - "HalloweenHoldable", + "Miscellaneous", ], "Rarity": { "Announce": false, @@ -68911,3030 +72381,3117 @@ Each token allows you to hatch the HUGE Shattered Heart Agony for 1 hour!", "_id": "Legendary", "_script": null, }, - "Tradable": false, }, - "configName": "Witch Hat", - "dateCreated": "2025-10-18T17:03:14.257Z", - "dateModified": "2025-10-18T17:03:14.257Z", - "hashShort": "f3b57afe6480f92a", + "configName": "Millionaire Bucks", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "5d2a007c1b862483", }, { - "category": "Event", + "category": "Vouchers", "collection": "MiscItems", "configData": { - "Desc": "Used for Gargantuan Present Upgrades and in the Santa Gift Machine!", - "DisplayName": "Santa Hat", - "Icon": "rbxassetid://100774712258156", + "Desc": "Used to enter the Millionaire World raffle!", + "DisplayName": "Millionaire Ticket", + "Icon": "rbxassetid://18519989607", "InventoryTags": [ - "Event", + "Vouchers", ], "Rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "Tradable": false, }, - "configName": "Santa Hat", - "dateCreated": "2025-12-20T17:55:10.777Z", - "dateModified": "2025-12-20T17:55:10.777Z", - "hashShort": "f59d6562fc7e02cd", + "configName": "Millionaire Ticket", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "0796c322ea96f96e", }, - ], - "status": "ok", -} -`; - -exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` -{ - "data": [ { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "", - "huge": true, - "indexDesc": "Found in the Exclusive Cosmic Egg!", - "indexObtainable": true, - "name": "Huge Cosmic Axolotl", - "rarity": { + "Desc": "Used to fuel the Dino Tycoon Huge Chance Machine!", + "Discontinued": true, + "DisplayName": "Fossil Token", + "Icon": "rbxassetid://18638998463", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://15201636161", + "Tradable": false, }, - "configName": "Huge Cosmic Axolotl", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.890Z", - "hashShort": "94b69c02a447bf48", + "configName": "Fossil Token", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "74e8e6d5ca959001", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://15260480224", - "huge": true, - "indexDesc": "Found in the Exclusive Original Egg!", - "indexObtainable": true, - "name": "Huge Sleipnir", - "rarity": { - "Announce": true, + "Desc": "Used to unlock Dino Labs in the Dino Tycoon!", + "Discontinued": true, + "DisplayName": "Dino Lab Keycard", + "Icon": "rbxassetid://18742183821", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://15260480028", }, - "configName": "Huge Sleipnir", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.898Z", - "hashShort": "27489c7bfa2e91ec", + "configName": "Dino Lab Keycard", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "8cff40ebfc36ba07", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976434355", - "huge": true, - "indexDesc": "Found in the Exclusive Original Egg!", - "indexObtainable": true, - "name": "Huge Floppa", - "rarity": { + "Desc": "Increase your roll luck by 100% for 1 minute! RNG Event item only!", + "Discontinued": true, + "DisplayName": "Lucky Dice", + "Icon": "rbxassetid://18883667411", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976434470", + "Tradable": false, }, - "configName": "Huge Floppa", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.900Z", - "hashShort": "7d79aa0df965ba8e", + "configName": "Lucky Dice", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "b86a72ee756729aa", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976376743", - "huge": true, - "indexDesc": "Earned from Series 1 Collector Clips merch! [RARE]", - "indexObtainable": true, - "name": "Huge Chest Mimic", - "rarity": { + "Desc": "Increase your roll luck by 150% for 5 minutes! RNG Event item only!", + "Discontinued": true, + "DisplayName": "Lucky Dice II", + "Icon": "rbxassetid://18883667147", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://14976376935", + "Tradable": false, }, - "configName": "Huge Chest Mimic", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.888Z", - "hashShort": "da343d7ba5b6d1a6", + "configName": "Lucky Dice II", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "0b9b6f4dfdb33786", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976455275", - "huge": true, - "indexDesc": "Earned from the limited-time Hell Rock Event in PSX!", - "indexObtainable": false, - "name": "Huge Hell Rock", - "rarity": { + "Desc": "Increase the luck of your next roll by 1,000,000%! RNG Event item only!", + "Discontinued": true, + "DisplayName": "Mega Lucky Dice", + "Icon": "rbxassetid://18883666982", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Superior", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 8, + "_id": "Superior", "_script": null, }, - "thumbnail": "rbxassetid://14976455394", + "Tradable": false, }, - "configName": "Huge Hell Rock", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.896Z", - "hashShort": "72ecaa5d7f2f16aa", + "configName": "Mega Lucky Dice", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "7669decdbaa0079f", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976423098", - "huge": true, - "indexDesc": "Comes with the Series 1 Grey Cat Collector Bundle!", - "indexObtainable": true, - "name": "Huge Enchanted Deer", - "rarity": { + "Desc": "Increase the luck of your next roll by 10,000,000%! RNG Event item only!", + "Discontinued": true, + "DisplayName": "Mega Lucky Dice II", + "Icon": "rbxassetid://18883666783", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "thumbnail": "rbxassetid://14976423228", + "Tradable": false, }, - "configName": "Huge Enchanted Deer", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.895Z", - "hashShort": "e03208587ec8e50c", + "configName": "Mega Lucky Dice II", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "347a06a4b81a1a3c", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://15260482775", - "huge": true, - "indexDesc": "Found in the Exclusive Capybara Egg!", - "indexObtainable": true, - "name": "Huge Cyborg Capybara", - "rarity": { + "Desc": "Increase your roll luck by 1000% for 5 minutes! RNG Event item only!", + "Discontinued": true, + "DisplayName": "Lucky Dice III", + "Icon": "rbxassetid://18972217122", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://15260482561", + "Tradable": false, }, - "configName": "Huge Cyborg Capybara", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.910Z", - "hashShort": "0c522fe08766b864", + "configName": "Lucky Dice III", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "9a1c0fcde5caf472", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976518722", - "huge": true, - "indexDesc": "Hatched from eggs in PSX!", - "indexObtainable": false, - "name": "Huge Pirate Parrot", - "rarity": { + "Desc": "Increase your roll speed by 10x for 1 minute! RNG Event item only!", + "Discontinued": true, + "DisplayName": "Fire Dice", + "Icon": "rbxassetid://18972217224", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976518880", + "Tradable": false, }, - "configName": "Huge Pirate Parrot", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.912Z", - "hashShort": "3bd0de1d9f982d86", + "configName": "Fire Dice", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "e27a8384d07ab8cb", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976548178", - "huge": true, - "indexDesc": "Comes with the Series 1 Marbled Purple Iridescent Cat Collector Bundle!", - "indexObtainable": true, - "name": "Huge Skeleton", - "rarity": { + "Desc": "Increase your roll luck by 100% for 2 minutes!", + "Discontinued": true, + "DisplayName": "RNG Chest Luck", + "Icon": "rbxassetid://18978159995", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976548258", + "Tradable": false, }, - "configName": "Huge Skeleton", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.911Z", - "hashShort": "469621ca9e2be83b", + "configName": "Rng Chest Luck", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "f4a9bec29bedb2aa", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976375470", - "huge": true, - "indexDesc": "Comes with Series 1 Blue Iridescent Cat Collector Bundle!", - "indexObtainable": true, - "name": "Huge Cheerful Yeti", - "rarity": { + "Desc": "Increase your roll luck by 150% for 2 minutes!", + "Discontinued": true, + "DisplayName": "Super RNG Chest Luck", + "Icon": "rbxassetid://18978160109", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976375591", + "Tradable": false, }, - "configName": "Huge Cheerful Yeti", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.911Z", - "hashShort": "1ced8b28f50b71c4", + "configName": "Super Rng Chest Luck", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "2fdf0ac0235accca", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://15260480566", - "huge": true, - "indexDesc": "Comes with the Series 1 Red Chest Bundle!", - "indexObtainable": true, - "name": "Huge Sapphire Phoenix", - "rarity": { + "Desc": "Increase your roll luck by 250% for 2 minutes!", + "Discontinued": true, + "DisplayName": "Ultra RNG Chest Luck", + "Icon": "rbxassetid://18978160238", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://15260480400", + "Tradable": false, }, - "configName": "Huge Sapphire Phoenix", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.910Z", - "hashShort": "58cb8e0d9deecf54", + "configName": "Ultra Rng Chest Luck", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "725055af590f8d9b", }, { - "category": "Huge", - "collection": "Pets", + "category": "Tools", + "collection": "MiscItems", "configData": { - "animations": { - "flyHeight": 1.5, - "spinZ": true, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://14976564417", - "huge": true, - "indexDesc": "Earned from the 2022 Summer Event in PSX!", - "indexObtainable": false, - "name": "Huge Sun Angelus", - "rarity": { + "Desc": "Open the Supercomputer anytime, anywhere!", + "DisplayName": "Supercomputer Radio", + "Icon": "rbxassetid://129682687691555", + "InventoryTags": [ + "Tools", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "thumbnail": "rbxassetid://14976564553", + "Tradable": false, }, - "configName": "Huge Sun Angelus", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.894Z", - "hashShort": "35cad161be066ed6", + "configName": "Supercomputer Radio", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "21059ea260113573", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976541695", - "huge": true, - "indexDesc": "Hatched from eggs in PSX!", - "indexObtainable": false, - "name": "Huge Sandcastle Cat", - "rarity": { - "Announce": true, + "Desc": "A bucket filled with paint!", + "Discontinued": true, + "DisplayName": "Bucket O' Paint", + "Icon": "rbxassetid://98102744263092", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976541813", + "Tradable": false, }, - "configName": "Huge Sandcastle Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.900Z", - "hashShort": "0685f91e4f2abc17", + "configName": "Bucket O' Paint", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "b81d3d15a5157349", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976414951", - "huge": true, - "indexDesc": "Comes with the Ducky plush!", - "indexObtainable": true, - "name": "Huge Ducky", - "rarity": { - "Announce": true, + "Desc": "Used to craft Graffiti Gifts!", + "Discontinued": true, + "DisplayName": "Graffiti Can", + "Icon": "rbxassetid://94579102957684", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976415577", }, - "configName": "Huge Ducky", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.909Z", - "hashShort": "d3322493c0acbdfa", + "configName": "Graffiti Can", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "4a2c1abb55c7a457", }, { - "category": "Huge", - "collection": "Pets", + "category": "Tools", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976491518", - "huge": true, - "indexDesc": "Comes with the Monkey plush!", - "indexObtainable": true, - "name": "Huge Monkey", - "rarity": { - "Announce": true, + "Desc": "Throw at roaming pets in Elemental World to catch them! + +Tap pets in Elemental World to throw!", + "DisplayName": "Pet Cube", + "Icon": "rbxassetid://113496508867455", + "InventoryTags": [ + "Tools", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976491927", }, - "configName": "Huge Monkey", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.901Z", - "hashShort": "de25fb205b102823", + "configName": "Pet Cube", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "ad447e88d2f6b906", }, { - "category": "Huge", - "collection": "Pets", + "category": "Tools", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976357074", - "huge": true, - "indexDesc": "Comes with the Axolotl plush!", - "indexObtainable": true, - "name": "Huge Axolotl", - "rarity": { - "Announce": true, + "Desc": "Throw at roaming pets in Elemental World to catch them! Better odds! + +Tap pets in Elemental World to throw!", + "DisplayName": "Ultra Pet Cube", + "Icon": "rbxassetid://120583016270769", + "InventoryTags": [ + "Tools", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://14976357246", }, - "configName": "Huge Axolotl", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.896Z", - "hashShort": "35a2c1217ae1ff8a", + "configName": "Ultra Pet Cube", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "424672d8021bce58", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976456566", - "huge": true, - "indexDesc": "Found in the Exclusive Fruit Egg!", - "indexObtainable": true, - "name": "Huge Hippomelon", - "rarity": { - "Announce": true, + "Desc": "Access locked backrooms for loot! Found in the haunted backrooms!", + "Discontinued": true, + "DisplayName": "Haunted Backrooms Key", + "Icon": "rbxassetid://105807127077254", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://14976456685", + "Tradable": false, }, - "configName": "Huge Hippomelon", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.891Z", - "hashShort": "823373865c1f5d23", + "configName": "Haunted Backrooms Key", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "f5ef59401ba3a167", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976392440", - "huge": true, - "indexDesc": "Comes with Series 2 Cyborg Dragon Collector Bundle!", - "indexObtainable": true, - "name": "Huge Cyborg Dragon", - "rarity": { - "Announce": true, + "Desc": "Can be combined into Pumpkin Gifts using the Pumpkin Machine!", + "Discontinued": true, + "DisplayName": "Pumpkin", + "Icon": "rbxassetid://81573313864367", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976392605", + "Tradable": true, }, - "configName": "Huge Cyborg Dragon", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.898Z", - "hashShort": "0014b9c1e5aa4950", + "configName": "Pumpkin", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "12245717a56c0663", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "animations": { - "flipbookAnimation": [ - "rbxassetid://12442921582", - "rbxassetid://12445580091", - ], - "flipbookAnimationGold": [ - "rbxassetid://12442921397", - "rbxassetid://12445579992", - ], - "flipbookAnimationSpeed": 0.15, - }, - "goldenThumbnail": "rbxassetid://14976525736", - "huge": true, - "indexDesc": "Found in the Exclusive Meme Egg!", - "indexObtainable": true, - "name": "Huge Pop Cat", - "rarity": { - "Announce": true, + "Desc": "Can be combined into Candy Corn Gifts using the Candy Corn Machine!", + "Discontinued": true, + "DisplayName": "Candy Corn", + "Icon": "rbxassetid://135856815241766", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976525879", + "Tradable": true, }, - "configName": "Huge Pop Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.897Z", - "hashShort": "1e1a267e12160d16", + "configName": "Candy Corn", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "76aa364fb7cd8930", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976527196", - "huge": true, - "indexDesc": "Found in the Exclusive Elemental Egg!", - "indexObtainable": true, - "name": "Huge Prickly Panda", - "rarity": { - "Announce": true, + "Desc": "Used to enter the Trick or Treat Neighborhoods!", + "Discontinued": true, + "DisplayName": "Halloween Mask", + "Icon": "rbxassetid://113232694279062", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976527289", }, - "configName": "Huge Prickly Panda", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.893Z", - "hashShort": "b43c1993ea0744bd", + "configName": "Halloween Mask", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "316fe1ae2b5bf193", }, { - "category": "Huge", - "collection": "Pets", + "category": "Miscellaneous", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976546302", - "huge": true, - "indexDesc": "Found in the Lucky Block Merch!", - "indexObtainable": true, - "name": "Huge Shadow Griffin", - "rarity": { - "Announce": true, + "Desc": "Used to purchase Wings Upgrades!", + "DisplayName": "Wing Essence", + "Icon": "rbxassetid://134564960334253", + "InventoryTags": [ + "Miscellaneous", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976546605", + "Tradable": false, }, - "configName": "Huge Shadow Griffin", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.902Z", - "hashShort": "315b91d235007e1c", + "configName": "Essence Fuel", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "a677364c6467cb13", }, { - "category": "Huge", - "collection": "Pets", + "category": "Tools", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976567099", - "huge": true, - "indexDesc": "Hatched during the 2022 Halloween Event in PSX!", - "indexObtainable": false, - "name": "Huge Grim Reaper", - "rarity": { - "Announce": true, + "Desc": "Barely works, but gets the job done.", + "DisplayName": "Wooden Axe", + "Icon": "rbxassetid://127504061331887", + "InventoryTags": [ + "Tools", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14976567210", + "Tradable": false, }, - "configName": "Huge Grim Reaper", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.903Z", - "hashShort": "1a4ac54c76d8220a", + "configName": "Wooden Axe", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "8fcb47f8e1cd17f1", }, { - "category": "Huge", - "collection": "Pets", + "category": "Tools", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976478315", - "huge": true, - "indexDesc": "Earned from the Lucky Block Event in PSX!", - "indexObtainable": false, - "name": "Huge Lucki Agony", - "rarity": { - "Announce": true, + "Desc": "Better than the wooden, but still just a regular axe.", + "DisplayName": "Sturdy Axe", + "Icon": "rbxassetid://131990094481938", + "InventoryTags": [ + "Tools", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14976478543", + "Tradable": false, }, - "configName": "Huge Lucki Agony", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.908Z", - "hashShort": "68702d3fa31480bf", + "configName": "Sturdy Axe", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "91575dc14f3bed4d", }, { - "category": "Huge", - "collection": "Pets", + "category": "Tools", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976510588", - "huge": true, - "indexDesc": "Hatched from 2023 Anniversary Gifts in PSX!", - "indexObtainable": true, - "name": "Huge Party Monkey", - "rarity": { - "Announce": true, + "Desc": "Advanced chopping use only!", + "DisplayName": "Advanced Axe", + "Icon": "rbxassetid://94326920206595", + "InventoryTags": [ + "Tools", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14976510684", + "Tradable": false, }, - "configName": "Huge Party Monkey", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.903Z", - "hashShort": "5f258e724d6b1aa7", + "configName": "Advanced Axe", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "4c3eaa95b1ff24ff", }, { - "category": "Huge", - "collection": "Pets", + "category": "Tools", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://15260481663", - "huge": true, - "indexDesc": "Found in the Exclusive Neon Twilight Egg!", - "indexObtainable": true, - "name": "Huge Neon Twilight Wolf", - "rarity": { - "Announce": true, + "Desc": "Chop! Chop!", + "DisplayName": "Stone Axe", + "Icon": "rbxassetid://82444457148431", + "InventoryTags": [ + "Tools", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15260481429", + "Tradable": false, }, - "configName": "Huge Neon Twilight Wolf", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.894Z", - "hashShort": "c94b7959dd397ee9", + "configName": "Stone Axe", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "61cf1970a8ee68d3", }, { - "category": "Huge", - "collection": "Pets", + "category": "Tools", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://15260481992", - "huge": true, - "indexDesc": "Found in the Exclusive Neon Twilight Egg!", - "indexObtainable": true, - "name": "Huge Neon Twilight Dragon", - "rarity": { - "Announce": true, + "Desc": "Chop trees super fast!", + "DisplayName": "Iron Axe", + "Icon": "rbxassetid://88653140383342", + "InventoryTags": [ + "Tools", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15260481819", + "Tradable": false, }, - "configName": "Huge Neon Twilight Dragon", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.903Z", - "hashShort": "8136072c467920a9", + "configName": "Iron Axe", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "307c448275d29ae1", }, { - "category": "Huge", - "collection": "Pets", + "category": "Tools", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976386395", - "huge": true, - "indexDesc": "Found in the Lucky Block Merch!", - "indexObtainable": true, - "name": "Huge Cow", - "rarity": { - "Announce": true, + "Desc": "Axe fit for the gods!", + "DisplayName": "Golden Axe", + "Icon": "rbxassetid://95880593705578", + "InventoryTags": [ + "Tools", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14976386456", + "Tradable": false, }, - "configName": "Huge Cow", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.894Z", - "hashShort": "12a22ff5d13d3faf", + "configName": "Golden Axe", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "a2752b020b6369c6", }, { - "category": "Huge", - "collection": "Pets", + "category": "Capes", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976520596", - "huge": true, - "indexDesc": "Comes with Series 2 Ultimate Bundle Pixel Chest!", - "indexObtainable": true, - "name": "Huge Pixel Dragon", - "rarity": { - "Announce": true, + "Desc": "Awarded for reaching level 99 Potions Mastery!", + "DisplayName": "Potions Mastery Cape", + "Icon": "rbxassetid://94807953344008", + "InventoryTags": [ + "Capes", + ], + "Model": null, + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976521054", + "Tradable": false, }, - "configName": "Huge Pixel Dragon", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.892Z", - "hashShort": "fd71ef4de02019aa", + "configName": "Potions Cape", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "83acbadaed6a7538", }, { - "category": "Huge", - "collection": "Pets", + "category": "Capes", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976539918", - "huge": true, - "indexDesc": "Hatched from the Sailor Egg in PSX!", - "indexObtainable": true, - "name": "Huge Sailor Shark", - "rarity": { - "Announce": true, + "Desc": "Awarded for reaching level 99 Boost Exchange Mastery!", + "DisplayName": "Boost Exchange Mastery Cape", + "Icon": "rbxassetid://138147678113813", + "InventoryTags": [ + "Capes", + ], + "Model": null, + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976540139", + "Tradable": false, }, - "configName": "Huge Sailor Shark", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.892Z", - "hashShort": "6e4c6ad7e177b115", + "configName": "Boost Exchange Cape", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "84c5c5610246d94a", }, { - "category": "Huge", - "collection": "Pets", + "category": "Capes", + "collection": "MiscItems", "configData": { - "animations": { - "ballBounceHeight": 5, - }, - "goldenThumbnail": "rbxassetid://14976360144", - "huge": true, - "indexDesc": "Hatched from eggs in PSX!", - "indexObtainable": false, - "name": "Huge Basketball Retriever", - "rarity": { - "Announce": true, + "Desc": "Awarded for reaching level 99 Breakable Mastery!", + "DisplayName": "Breakables Mastery Cape", + "Icon": "rbxassetid://78678040876122", + "InventoryTags": [ + "Capes", + ], + "Model": null, + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976360269", + "Tradable": false, }, - "configName": "Huge Basketball Retriever", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.909Z", - "hashShort": "8714212af36b3e6c", + "configName": "Breakables Cape", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "c0fe5072d5a86096", }, { - "category": "Huge", - "collection": "Pets", + "category": "Capes", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976478194", - "huge": true, - "indexDesc": "Earned from the Lucky Block Event in PSX!", - "indexObtainable": false, - "name": "Huge Lucki", - "rarity": { - "Announce": true, + "Desc": "Awarded for reaching level 99 Digging Mastery!", + "DisplayName": "Digging Mastery Cape", + "Icon": "rbxassetid://94175128426596", + "InventoryTags": [ + "Capes", + ], + "Model": null, + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976484952", + "Tradable": false, }, - "configName": "Huge Lucki", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.901Z", - "hashShort": "87727700ced664b2", - }, - { - "category": "Huge", - "collection": "Pets", + "configName": "Digging Cape", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "c9d7995710ef20a6", + }, + { + "category": "Capes", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976557539", - "hideSerial": true, - "huge": true, - "indexDesc": "Found in the (Legendary, Mythical) Series 2 Merch Gifts!", - "indexObtainable": true, - "name": "Huge Stealth Bobcat", - "rarity": { - "Announce": true, + "Desc": "Awarded for reaching level 99 Economy Mastery!", + "DisplayName": "Economy Mastery Cape", + "Icon": "rbxassetid://115046183678435", + "InventoryTags": [ + "Capes", + ], + "Model": null, + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976557639", + "Tradable": false, }, - "configName": "Huge Stealth Bobcat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.908Z", - "hashShort": "cb72c723c2478b63", + "configName": "Economy Cape", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "5ad808c85a4cf083", }, { - "category": "Huge", - "collection": "Pets", + "category": "Capes", + "collection": "MiscItems", "configData": { - "animations": { - "hybridFly": true, - }, - "goldenThumbnail": "rbxassetid://14976351858", - "huge": true, - "indexDesc": "Found in the Exclusive Anime Egg!", - "indexObtainable": true, - "name": "Huge Anime Unicorn", - "rarity": { - "Announce": true, + "Desc": "Awarded for reaching level 99 Eggs Mastery!", + "DisplayName": "Eggs Mastery Cape", + "Icon": "rbxassetid://94868981819101", + "InventoryTags": [ + "Capes", + ], + "Model": null, + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976352077", + "Tradable": false, }, - "configName": "Huge Anime Unicorn", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.912Z", - "hashShort": "d25cbd1659440682", + "configName": "Eggs Cape", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "a3a756202b9efeca", }, { - "category": "Huge", - "collection": "Pets", + "category": "Capes", + "collection": "MiscItems", "configData": { - "animations": { - "hybridFly": true, - }, - "goldenThumbnail": "rbxassetid://14976351221", - "huge": true, - "indexDesc": "Found in the Exclusive Anime Egg!", - "indexObtainable": true, - "name": "Huge Anime Agony", - "rarity": { - "Announce": true, + "Desc": "Awarded for reaching level 99 Enchants Mastery!", + "DisplayName": "Enchants Mastery Cape", + "Icon": "rbxassetid://136323422523839", + "InventoryTags": [ + "Capes", + ], + "Model": null, + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976351312", + "Tradable": false, }, - "configName": "Huge Anime Agony", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.907Z", - "hashShort": "66e311e5d753e905", + "configName": "Enchants Cape", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "30a2f922e8c260c5", }, { - "category": "Huge", - "collection": "Pets", + "category": "Capes", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976546759", - "huge": true, - "indexDesc": "Found in the Lucky Block Merch!", - "indexObtainable": true, - "name": "Huge Shark", - "rarity": { - "Announce": true, + "Desc": "Awarded for reaching level 99 Fishing Mastery!", + "DisplayName": "Fishing Mastery Cape", + "Icon": "rbxassetid://74451097864801", + "InventoryTags": [ + "Capes", + ], + "Model": null, + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976546876", + "Tradable": false, }, - "configName": "Huge Shark", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.905Z", - "hashShort": "fdfc0f2f6c9b7f82", + "configName": "Fishing Cape", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "7e4984391c7bd52c", }, { - "category": "Huge", - "collection": "Pets", + "category": "Capes", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976566586", - "huge": true, - "indexDesc": "Comes with the Series 1 Blue Chest Bundle!", - "indexObtainable": true, - "name": "Huge Techno Cat", - "rarity": { - "Announce": true, + "Desc": "Awarded for reaching level 99 Fruit Mastery!", + "DisplayName": "Fruit Mastery Cape", + "Icon": "rbxassetid://94409019683767", + "InventoryTags": [ + "Capes", + ], + "Model": null, + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976566707", + "Tradable": false, }, - "configName": "Huge Techno Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.904Z", - "hashShort": "454b671265d75790", + "configName": "Fruit Cape", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "66b5115605a945ec", }, { - "category": "Huge", - "collection": "Pets", + "category": "Capes", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976487383", - "huge": true, - "indexDesc": "Found in Series 2 Core 1-Packs! [RARE]", - "indexObtainable": true, - "name": "Huge Masked Owl", - "rarity": { - "Announce": true, + "Desc": "Awarded for reaching level 99 Fuse Mastery!", + "DisplayName": "Fuse Mastery Cape", + "Icon": "rbxassetid://139314016282209", + "InventoryTags": [ + "Capes", + ], + "Model": null, + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976487652", + "Tradable": false, }, - "configName": "Huge Masked Owl", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.889Z", - "hashShort": "914149a8f209e695", + "configName": "Fuse Cape", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "52824aa9a7113acb", }, { - "category": "Huge", - "collection": "Pets", + "category": "Capes", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976538517", - "huge": true, - "indexDesc": "Earned from Scavanger Eggs in PSX!", - "indexObtainable": false, - "name": "Huge Safari Cat", - "rarity": { - "Announce": true, + "Desc": "Awarded for reaching level 99 Gifts Mastery!", + "DisplayName": "Gifts Mastery Cape", + "Icon": "rbxassetid://72336666116568", + "InventoryTags": [ + "Capes", + ], + "Model": null, + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976538607", + "Tradable": false, }, - "configName": "Huge Safari Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.889Z", - "hashShort": "54743efae6617691", + "configName": "Gifts Cape", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "07e470338107899b", }, { - "category": "Huge", - "collection": "Pets", + "category": "Capes", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://15281989570", - "huge": true, - "indexDesc": "Gifted to top 10 spenders on PSX!", - "indexObtainable": false, - "name": "Huge Crowned Pegasus", - "rarity": { - "Announce": true, + "Desc": "Awarded for reaching level 99 Keys Mastery!", + "DisplayName": "Keys Mastery Cape", + "Icon": "rbxassetid://134446493475392", + "InventoryTags": [ + "Capes", + ], + "Model": null, + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://15281989490", + "Tradable": false, }, - "configName": "Huge Crowned Pegasus", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.063Z", - "hashShort": "3da69ee4be391737", + "configName": "Keys Cape", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "68c7e271576b8fd0", }, { - "category": "Huge", - "collection": "Pets", + "category": "Capes", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://15281988773", - "huge": true, - "indexDesc": "Comes with the Santa Dragon plush!", - "indexObtainable": true, - "name": "Huge Santa Dragon", - "rarity": { - "Announce": true, + "Desc": "Awarded for reaching level 99 Pets Mastery!", + "DisplayName": "Pets Mastery Cape", + "Icon": "rbxassetid://122726992963192", + "InventoryTags": [ + "Capes", + ], + "Model": null, + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://15281988711", + "Tradable": false, }, - "configName": "Huge Santa Dragon", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.062Z", - "hashShort": "e7f6c3e525d4002c", + "configName": "Pets Cape", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "970800f7798f5382", }, { - "category": "Huge", - "collection": "Pets", + "category": "Capes", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://15281988633", - "huge": true, - "indexDesc": "Comes with the Santa Monkey plush!", - "indexObtainable": true, - "name": "Huge Santa Monkey", - "rarity": { - "Announce": true, + "Desc": "Awarded for reaching level 99 Superior Chests Mastery!", + "DisplayName": "Superior Chests Mastery Cape", + "Icon": "rbxassetid://133459577246192", + "InventoryTags": [ + "Capes", + ], + "Model": null, + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://15281988558", + "Tradable": false, }, - "configName": "Huge Santa Monkey", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.054Z", - "hashShort": "f2b8dbd20983c330", + "configName": "Superior Chests Cape", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "af5fb49407373c0e", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://15281988492", - "huge": true, - "indexDesc": "Opened from the Halloween Gift in PSX!", - "indexObtainable": true, - "name": "Huge Scary Cat", - "rarity": { + "Desc": "Earn 10x Adoption Tokens for 15 minutes!", + "Discontinued": true, + "DisplayName": "Ultra Adoption Token Boost", + "Icon": "rbxassetid://83102991911162", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://15281988446", + "Tradable": true, }, - "configName": "Huge Scary Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.063Z", - "hashShort": "07112b44e981c68d", + "configName": "Ultra Adoption Token Boost", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "3c9504c6ef026060", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://15281989183", - "huge": true, - "indexDesc": "Comes with the Reindeer Axolotl plush!", - "indexObtainable": true, - "name": "Huge Reindeer Axolotl", - "rarity": { + "Desc": "Earn 3x Adoption Tokens for 15 minutes!", + "Discontinued": true, + "DisplayName": "Adoption Token Boost", + "Icon": "rbxassetid://72705510493016", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://15281989034", + "Tradable": true, }, - "configName": "Huge Reindeer Axolotl", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.062Z", - "hashShort": "f1d6910e746fa2f6", + "configName": "Adoption Token Boost", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "88c08fe4b1377958", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://15199736147", - "huge": true, - "indexDesc": "Earned from 2022 Christmas Event in PSX!", - "indexObtainable": false, - "name": "Huge Snowman", - "rarity": { + "Desc": "Run straight into the adoption egg room!", + "Discontinued": true, + "DisplayName": "Golden Paw Ticket", + "Icon": "rbxassetid://116187500612624", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Superior", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 8, + "_id": "Superior", "_script": null, }, - "thumbnail": "rbxassetid://15199736050", + "Tradable": true, }, - "configName": "Huge Snowman", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.054Z", - "hashShort": "8c16bd0ed73d2509", + "configName": "Golden Paw Ticket", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "4ec9ec40a60574a6", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976469443", - "huge": true, - "indexDesc": "Hatched from the 2022 Christmas Event in PSX!", - "indexObtainable": false, - "name": "Huge Jolly Penguin", - "rarity": { - "Announce": true, + "Desc": "Used to purchase line upgrades!", + "Discontinued": true, + "DisplayName": "Adoption Token", + "Icon": "rbxassetid://107092190022246", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976469674", + "Tradable": false, }, - "configName": "Huge Jolly Penguin", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.052Z", - "hashShort": "4e72bd0b0c9e45da", + "configName": "Adoption Token", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "fadd7762d7d2f4e6", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976361752", - "huge": true, - "indexDesc": "Found in the Lucky Block Merch!", - "indexObtainable": true, - "name": "Huge Bear", - "rarity": { + "Desc": "Unlock the lockers in the Line for Titanic Event!", + "Discontinued": true, + "DisplayName": "Locker Key", + "Icon": "rbxassetid://107232990524074", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976361884", + "Tradable": false, }, - "configName": "Huge Bear", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.051Z", - "hashShort": "1e962fe2f7f9e789", + "configName": "Locker Key", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "be12b2a1b9ed0643", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976494731", - "huge": true, - "indexDesc": "Hatched from eggs in the 2022 Christmas Event PSX!", - "indexObtainable": false, - "name": "Huge Mrs. Claws", - "rarity": { - "Announce": true, + "Desc": "Used to purchase Autumn Upgrades!", + "Discontinued": true, + "DisplayName": "Maple Leaf", + "Icon": "rbxassetid://128253516406089", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976494867", + "Tradable": false, }, - "configName": "Huge Mrs. Claws", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.072Z", - "hashShort": "f86539f1500a5dcf", + "configName": "Maple Leaf", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "915714fc08f500ba", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976526959", - "huge": true, - "indexDesc": "Found in the Exclusive Jolly Egg!", - "indexObtainable": true, - "name": "Huge Present Chest Mimic", - "rarity": { - "Announce": true, + "Desc": "Used to purchase Autumn Upgrades!", + "Discontinued": true, + "DisplayName": "Turkey Feather", + "Icon": "rbxassetid://74134752681253", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976527111", + "Tradable": false, }, - "configName": "Huge Present Chest Mimic", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.069Z", - "hashShort": "30a18b4a18415512", + "configName": "Turkey Feather", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "050bdc91183c6daa", }, { - "category": "Huge", - "collection": "Pets", + "category": "Capes", + "collection": "MiscItems", "configData": { - "animations": { - "balloon": true, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://14976357920", - "huge": true, - "indexDesc": "Found in the Exclusive Balloon Egg!", - "indexObtainable": true, - "name": "Huge Balloon Axolotl", - "rarity": { + "Desc": "Awarded for reaching level 99 in all Masteries! (Gives +10% Diamond Earn)", + "DisplayName": "Master Skill Cape", + "Icon": "rbxassetid://114415394611739", + "InventoryTags": [ + "Capes", + ], + "Model": null, + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "thumbnail": "rbxassetid://14976358125", + "Tradable": false, }, - "configName": "Huge Balloon Axolotl", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.060Z", - "hashShort": "906f6b3596cfa3f4", + "configName": "Master Skill Cape", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "e067dbb3a287d331", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976509358", - "huge": true, - "indexDesc": "Hatched from 2023 New Year's Gifts in PSX and 2024 New Year's Gifts in PS99!", - "indexObtainable": true, - "name": "Huge Party Crown Ducky", - "rarity": { - "Announce": true, + "Desc": "Can be combined into Snowflake Gifts using the Snow Machine!", + "Discontinued": true, + "DisplayName": "Snowflake", + "Icon": "rbxassetid://139595350898385", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976509521", + "Tradable": false, }, - "configName": "Huge Party Crown Ducky", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.069Z", - "hashShort": "ac6f1d8201128ee5", + "configName": "Snowflake", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "1a1b87124bd5879f", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976479062", - "huge": true, - "indexDesc": "Hatched from eggs in PSX!", - "indexObtainable": false, - "name": "Huge Lucki Dominus", - "rarity": { - "Announce": true, + "Desc": "Decorate your Christmas Tree for rewards! Earned from random drops in the Christmas World!", + "Discontinued": true, + "DisplayName": "Festive Dragon Ornament", + "Icon": "rbxassetid://111005961420330", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://14976479237", + "Tradable": false, }, - "configName": "Huge Dominus Lucki", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.068Z", - "hashShort": "d8a5d7aa47b939b7", + "configName": "Festive Dragon Ornament", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "64e77c56bcbb42e6", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976506504", - "huge": true, - "indexDesc": "Found in the Lucky Block Merch!", - "indexObtainable": true, - "name": "Huge Otter", - "rarity": { - "Announce": true, + "Desc": "Decorate your Christmas Tree for rewards! Earned from Snowflake Gifts!", + "Discontinued": true, + "DisplayName": "Gingerbread Cat Ornament", + "Icon": "rbxassetid://129823962780815", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://14976506594", + "Tradable": false, }, - "configName": "Huge Otter", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.076Z", - "hashShort": "27dcf071dfc95b05", + "configName": "Gingerbread Cat Ornament", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "7f998a1fb938919d", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976541105", - "huge": true, - "indexDesc": "Found in the Lucky Block Merch!", - "indexObtainable": true, - "name": "Huge Samurai Dragon", - "rarity": { + "Desc": "Decorate your Christmas Tree for rewards! Earned from random drops in the Christmas World!", + "Discontinued": true, + "DisplayName": "Rudolph Ornament", + "Icon": "rbxassetid://137438942175142", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976541241", + "Tradable": false, }, - "configName": "Huge Samurai Dragon", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.060Z", - "hashShort": "4392317145f504f5", + "configName": "Rudolph Ornament", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "e880b47a88d8b267", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976573095", - "huge": true, - "indexDesc": "Found in the Lucky Block Merch!", - "indexObtainable": true, - "name": "Huge Unicorn", - "rarity": { + "Desc": "Decorate your Christmas Tree for rewards! Earned from Snowflake Gifts!", + "Discontinued": true, + "DisplayName": "Frosted Axolotl Ornament", + "Icon": "rbxassetid://78912490096414", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976573179", + "Tradable": false, }, - "configName": "Huge Unicorn", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.056Z", - "hashShort": "3f1c924a350455f8", + "configName": "Frosted Axolotl Ornament", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "a440fcccf972dd0c", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976414382", - "huge": true, - "indexDesc": "Comes with Series 2 6-Pack Eggs! [RARE]", - "indexObtainable": true, - "name": "Huge Dove", - "rarity": { + "Desc": "Decorate your Christmas Tree for rewards! Earned from gifting pets in Secret Santa!", + "Discontinued": true, + "DisplayName": "Snow Globe Ornament", + "Icon": "rbxassetid://131125982375199", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://14976414513", + "Tradable": false, }, - "configName": "Huge Dove", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.072Z", - "hashShort": "e15be181fde7d4c9", + "configName": "Snow Globe Ornament", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "02d7490484fa20b8", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976555554", - "huge": true, - "indexDesc": "Comes with the Series 1 Dragon Collector Bundle!", - "indexObtainable": true, - "name": "Huge Squirrel", - "rarity": { - "Announce": true, + "Desc": "Used to purchase Mega Present Upgrades in the Holiday Event!", + "Discontinued": true, + "DisplayName": "Present Bow", + "Icon": "rbxassetid://127952814319100", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976555755", + "Tradable": false, }, - "configName": "Huge Squirrel", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.073Z", - "hashShort": "d6e56c16ef87b3d5", + "configName": "Present Bow", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "1d7df81cf0a2658c", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976371907", - "huge": true, - "indexDesc": "Earned from an egg event in PSX!", - "indexObtainable": false, - "name": "Huge Butterfly", - "rarity": { - "Announce": true, + "Desc": "Adds 10 points to your Gargantuan Present!", + "Discontinued": true, + "DisplayName": "Lucky Gingerbread", + "Icon": "rbxassetid://79656981154011", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976372228", + "Tradable": false, }, - "configName": "Huge Butterfly", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.055Z", - "hashShort": "45dcce2b60a25c02", + "configName": "Lucky Gingerbread", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-12-20T17:55:11.238Z", + "hashShort": "53290318aec48897", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976498154", - "huge": true, - "indexDesc": "Found in the Exclusive Neon Egg!", - "indexObtainable": true, - "name": "Huge Neon Griffin", - "rarity": { - "Announce": true, + "Desc": "Adds 200 points to your Gargantuan Present!", + "Discontinued": true, + "DisplayName": "Super Lucky Gingerbread", + "Icon": "rbxassetid://113679482005178", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://14976498238", + "Tradable": false, }, - "configName": "Huge Neon Griffin", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.059Z", - "hashShort": "109669eb65015ba5", + "configName": "Super Lucky Gingerbread", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-12-20T17:55:11.238Z", + "hashShort": "52f1ba967371c0e1", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976404659", - "huge": true, - "indexDesc": "Hatched from eggs in PSX!", - "indexObtainable": false, - "name": "Huge Doodle Fairy", - "rarity": { + "Desc": "Adds 10,000 points to your Gargantuan Present!", + "Discontinued": true, + "DisplayName": "Mega Lucky Gingerbread", + "Icon": "rbxassetid://133337783587142", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://14976404766", + "Tradable": true, }, - "configName": "Huge Doodle Fairy", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.055Z", - "hashShort": "c5232276aa0da713", + "configName": "Mega Lucky Gingerbread", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-12-20T17:55:11.228Z", + "hashShort": "526edd45b100bef2", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976527711", - "huge": true, - "indexDesc": "Found in the Huge Machine Angelus Egg!", - "indexObtainable": true, - "name": "Huge Pterodactyl", - "rarity": { + "Desc": "Adds 3,000 points to your Gargantuan Present!", + "Discontinued": true, + "DisplayName": "Ultra Lucky Gingerbread", + "Icon": "rbxassetid://76493272243692", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976527837", + "Tradable": false, }, - "configName": "Huge Pterodactyl", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.058Z", - "hashShort": "ea2fb6af43977c2a", + "configName": "Ultra Lucky Gingerbread", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-12-20T17:55:11.257Z", + "hashShort": "ab53496c1a23dd7c", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976506229", - "huge": true, - "indexDesc": "Found in the Huge Machine Angelus Egg!", - "indexObtainable": true, - "name": "Huge Orca", - "rarity": { + "Desc": "Access Santa's Cottage! Earned by hitting targets in the Holiday Event 2025!", + "Discontinued": true, + "DisplayName": "Santa Key", + "Icon": "rbxassetid://83040683228474", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976506366", + "Tradable": false, }, - "configName": "Huge Orca", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.067Z", - "hashShort": "ccab3c314184fe15", + "configName": "Santa Key", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-12-20T17:55:11.269Z", + "hashShort": "cbf671922cc9b7e5", }, { - "category": "Huge", - "collection": "Pets", + "category": "Tools", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976375270", - "huge": true, - "indexDesc": "Found in the Huge Machine Angelus Egg!", - "indexObtainable": true, - "name": "Huge Chameleon", - "rarity": { - "Announce": true, + "Desc": "Save a pet from Grinch Cove! Chance for a HUGE!", + "DisplayName": "Cove Lockpick", + "Icon": "rbxassetid://120320082965427", + "InventoryTags": [ + "Tools", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14976375382", }, - "configName": "Huge Chameleon", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.075Z", - "hashShort": "90fe55fce1bbef0b", + "configName": "Lockpick A", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-12-20T17:55:10.748Z", + "hashShort": "e73bea32915c5452", }, { - "category": "Huge", - "collection": "Pets", + "category": "Tools", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976472084", - "huge": true, - "indexDesc": "Found in the Huge Machine Angelus Egg!", - "indexObtainable": true, - "name": "Huge King Cobra", - "rarity": { - "Announce": true, + "Desc": "Save a pet from Grinch Cove! Better lock-picking odds! Chance for a HUGE!", + "DisplayName": "Golden Cove Lockpick", + "Icon": "rbxassetid://95200052788292", + "InventoryTags": [ + "Tools", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976472289", }, - "configName": "Huge King Cobra", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.062Z", - "hashShort": "b5cfbfb59a413778", + "configName": "Lockpick B", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-12-20T17:55:10.752Z", + "hashShort": "3c3dc8da24d540ca", }, { - "category": "Huge", - "collection": "Pets", + "category": "Tools", + "collection": "MiscItems", "configData": { - "animations": { - "flyHeight": 1.5, - "spinZ": true, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://14976350736", - "huge": true, - "indexDesc": "Found in the Huge Machine Angelus Egg!", - "indexObtainable": true, - "name": "Huge Angelus", - "rarity": { - "Announce": true, + "Desc": "Save a pet from Grinch Cove! BEST lock-picking odds! Chance for a HUGE!", + "DisplayName": "Diamond Cove Lockpick", + "Icon": "rbxassetid://114469675967534", + "InventoryTags": [ + "Tools", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://14976350830", }, - "configName": "Huge Angelus", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.065Z", - "hashShort": "c49e383b1722887b", + "configName": "Lockpick C", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-12-20T17:55:10.749Z", + "hashShort": "3af405094e45236c", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976514126", - "huge": true, - "indexDesc": "Earned from Free Gifts in PSX!", - "indexObtainable": false, - "name": "Huge Peacock", - "rarity": { + "Desc": "Increase your chances of saving a pet from the Grinch Cat by 3x! Christmas Event item only!", + "Discontinued": true, + "DisplayName": "Grinch-B-Gone", + "Icon": "rbxassetid://74401703781647", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://14976514269", + "Tradable": true, }, - "configName": "Huge Peacock", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.073Z", - "hashShort": "d2d63994468fb7fa", + "configName": "Grinch-B-Gone", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2026-03-14T15:52:22.205Z", + "hashShort": "bdef6373352ddcb4", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976508540", - "huge": true, - "indexDesc": "Hatched from Hype Gifts in PSX!", - "indexObtainable": true, - "name": "Huge Party Axolotl", - "rarity": { + "Desc": "Increase your chances of saving a pet from the Grinch Cat by 40x! Christmas Event item only!", + "Discontinued": true, + "DisplayName": "Ultra Grinch-B-Gone", + "Icon": "rbxassetid://111012321182528", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Superior", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 8, + "_id": "Superior", "_script": null, }, - "thumbnail": "rbxassetid://14976508713", + "Tradable": true, }, - "configName": "Huge Party Axolotl", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.056Z", - "hashShort": "462f2f6300a83598", + "configName": "Ultra Grinch-B-Gone", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2026-03-14T15:52:22.206Z", + "hashShort": "de0177fa0a5b629e", }, { - "category": "Huge", - "collection": "Pets", + "category": "Miscellaneous", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976533446", - "huge": true, - "indexDesc": "Found in the Exclusive Crystal Egg!", - "indexObtainable": true, - "name": "Huge Redstone Cat", - "rarity": { - "Announce": true, + "Desc": "Used upgrade Doodle Jar!", + "DisplayName": "Doodle Pad", + "Icon": "rbxassetid://122289419887478", + "InventoryTags": [ + "Miscellaneous", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976533671", + "Tradable": false, }, - "configName": "Huge Redstone Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.068Z", - "hashShort": "4237e56fd2109d72", + "configName": "Doodle Pad", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "cafedf25d9fd5761", }, { - "category": "Huge", - "collection": "Pets", + "category": "Miscellaneous", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976355402", - "huge": true, - "indexDesc": "Found in the Exclusive Atlantean Egg!", - "indexObtainable": true, - "name": "Huge Atlantean Orca", - "rarity": { - "Announce": true, + "Desc": "Used to compete in drawing competitions in Doodle World!", + "DisplayName": "Doodle Token", + "Icon": "rbxassetid://96668323174200", + "InventoryTags": [ + "Miscellaneous", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976355521", + "Tradable": false, }, - "configName": "Huge Atlantean Orca", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.061Z", - "hashShort": "8060a3ea23181a74", + "configName": "Doodle Token", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "4ccb89d839c5a1ca", }, { - "category": "Huge", - "collection": "Pets", + "category": "Miscellaneous", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976420828", - "huge": true, - "indexDesc": "Comes with Series 2 Fantasy Chest Plush!", - "indexObtainable": true, - "name": "Huge Empyrean Agony", - "rarity": { - "Announce": true, + "Desc": "Boost your odds in a Doodle Battle by 15%!", + "DisplayName": "Golden Pencil", + "Icon": "rbxassetid://92361349785870", + "InventoryTags": [ + "Miscellaneous", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://14976421040", }, - "configName": "Huge Empyrean Agony", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.071Z", - "hashShort": "4f3679ab25eae173", + "configName": "Golden Pencil", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "c3b9bba57c5384cf", }, { - "category": "Huge", - "collection": "Pets", + "category": "Miscellaneous", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976383249", - "huge": true, - "indexDesc": "Hatched from eggs in PSX!", - "indexObtainable": false, - "name": "Huge Clover Dragon", - "rarity": { + "Desc": "Boost your odds in a Doodle Battle by 50%!", + "DisplayName": "Diamond Pencil", + "Icon": "rbxassetid://115047389110438", + "InventoryTags": [ + "Miscellaneous", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976383366", }, - "configName": "Huge Clover Dragon", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.061Z", - "hashShort": "85d9f1ffb8fa7e40", + "configName": "Diamond Pencil", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "b4e1d9ad88507ae6", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976432733", - "huge": true, - "indexDesc": "Hatched from eggs in PSX!", - "indexObtainable": false, - "name": "Huge Firefighter Dalmatian", - "rarity": { + "Desc": "Boost your odds in a Doodle Battle by 200%!", + "Discontinued": true, + "DisplayName": "Rainbow Pencil", + "Icon": "rbxassetid://71886168987931", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://14976432950", }, - "configName": "Huge Firefighter Dalmation", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.064Z", - "hashShort": "724149a15183f098", + "configName": "Rainbow Pencil", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "043f746d1ad8dcdc", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976514449", - "huge": true, - "indexDesc": "Tied to the now defunct NFT project!", - "indexObtainable": false, - "name": "Huge Pegasus", - "rarity": { - "Announce": true, + "Desc": "Used in the Line Event!", + "Discontinued": true, + "DisplayName": "Line Token", + "Icon": "rbxassetid://72000916444654", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976514552", + "Tradable": false, }, - "configName": "Huge Pegasus", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.071Z", - "hashShort": "59b67d9415a97613", + "configName": "Line Token", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "e89a41898bd02b19", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976436252", - "huge": true, - "indexDesc": "Found in the Lucky Block Merch!", - "indexObtainable": true, - "name": "Huge Fox", - "rarity": { + "Desc": "Earn 2x Pet Tokens for 15 minutes!", + "Discontinued": true, + "DisplayName": "Pet Games Token Boost", + "Icon": "rbxassetid://111961401269954", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976436421", + "Tradable": true, }, - "configName": "Huge Fox", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.070Z", - "hashShort": "185ee198023bbd42", + "configName": "Pet Token Boost", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "194fc88ac546678f", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976542654", - "huge": true, - "indexDesc": "From the 2021 Insane Christmas Exclusive Egg!", - "indexObtainable": false, - "name": "Huge Santa Paws", - "rarity": { + "Desc": "Earn 5x Pet Tokens for 15 minutes!", + "Discontinued": true, + "DisplayName": "Ultra Pet Games Token Boost", + "Icon": "rbxassetid://117650953398875", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://14976542836", + "Tradable": true, }, - "configName": "Huge Santa Paws", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.066Z", - "hashShort": "8a95cd9eb610427e", + "configName": "Ultra Pet Token Boost", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "3ad52703ad1a55cb", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976435681", - "huge": true, - "indexDesc": "Found in one of the first non-tradable Exclusive Eggs!", - "indexObtainable": false, - "name": "Huge Forest Wyvern", - "rarity": { - "Announce": true, + "Desc": "Earned by playing in the Pet Games or farming in the event world!", + "Discontinued": true, + "DisplayName": "Pet Games Token", + "Icon": "rbxassetid://81952190742325", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976435839", + "Tradable": false, }, - "configName": "Huge Forest Wyvern", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.060Z", - "hashShort": "bc6ea327422e006b", + "configName": "Pet Games Token", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "2992a3ff6a2ad760", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976570991", - "huge": true, - "indexDesc": "Earned from the 2022 Summer Event in PSX!", - "indexObtainable": false, - "name": "Huge Tiki Dominus", - "rarity": { - "Announce": true, + "Desc": "Used to purchase Pet Games Upgrades!", + "Discontinued": true, + "DisplayName": "Pet Game Card", + "Icon": "rbxassetid://98658891834395", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976571122", + "Tradable": false, }, - "configName": "Huge Tiki Dominus", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.075Z", - "hashShort": "d5f59b1dc179cb58", + "configName": "Pet Game Card", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "9cf7f792dacd4322", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976439736", - "huge": true, - "indexDesc": "Found in one of the first non-tradable Exclusive Eggs!", - "indexObtainable": false, - "name": "Huge Gargoyle Dragon", - "rarity": { - "Announce": true, + "Desc": "Used to craft Hellfire Cores in the Cannon Tycoon!", + "Discontinued": true, + "DisplayName": "Hellfire Crystal", + "Icon": "rbxassetid://82320386530923", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976439876", + "Tradable": false, }, - "configName": "Huge Gargoyle Dragon", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.057Z", - "hashShort": "34c8cc0d5c054152", + "configName": "Hellfire Crystal", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "2a6933a63403b347", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976568753", - "hideSerial": true, - "huge": true, - "indexDesc": "Found in the (Basic, Rare, Mythical) Series 1 Merch Gifts!", - "indexObtainable": true, - "name": "Huge Tiedye Cat", - "rarity": { - "Announce": true, + "Desc": "Spawns Mega Hellfire Gift in the Cannon Tycoon!", + "Discontinued": true, + "DisplayName": "Hellfire Core", + "Icon": "rbxassetid://129202746553338", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976568867", + "Tradable": true, }, - "configName": "Huge Tiedye Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.058Z", - "hashShort": "cfce39df62cc5499", + "configName": "Hellfire Core", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "687430101ca63595", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976414639", - "huge": true, - "indexDesc": "Comes with the Dragon plush!", - "indexObtainable": true, - "name": "Huge Dragon", - "rarity": { + "Desc": "Used to unlock the Lightning Cannon in the Cannon Tycoon!", + "Discontinued": true, + "DisplayName": "Lightning Cannon Token", + "Icon": "rbxassetid://88877115487128", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976414803", + "Tradable": true, }, - "configName": "Huge Dragon", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.054Z", - "hashShort": "a622d2fbadbec091", + "configName": "Lightning Cannon", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "0afcc86ac8225ded", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976825201", - "huge": true, - "indexDesc": "Found in the Exclusive Nightmare Egg!", - "indexObtainable": true, - "name": "Huge Nightmare Spirit", - "rarity": { + "Desc": "Used to unlock the Nuclear Cannon in the Cannon Tycoon!", + "Discontinued": true, + "DisplayName": "Nuclear Cannon Token", + "Icon": "rbxassetid://92952222395298", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://14976825431", + "Tradable": true, }, - "configName": "Huge Nightmare Spirit", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.067Z", - "hashShort": "02a0e88102ce9393", + "configName": "Nuclear Cannon", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "5f92c3b35e26e0af", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976388553", - "huge": true, - "indexDesc": "Earned from gift rewards in PSX!", - "indexObtainable": false, - "name": "Huge Cupcake", - "rarity": { + "Desc": "Used to unlock the Confetti Cannon in the Cannon Tycoon!", + "Discontinued": true, + "DisplayName": "Confetti Cannon Token", + "Icon": "rbxassetid://127806152682787", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976389145", + "Tradable": true, }, - "configName": "Huge Cupcake", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.059Z", - "hashShort": "f7cbef63e3c40b56", + "configName": "Confetti Cannon", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "04b90b4a3ba4a24b", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976439104", - "huge": true, - "indexDesc": "Hatched from eggs in PSX!", - "indexObtainable": false, - "name": "Huge Gamer Shiba", - "rarity": { + "Desc": "Used to unlock the Black Hole Cannon in the Cannon Tycoon!", + "Discontinued": true, + "DisplayName": "Black Hole Cannon Token", + "Icon": "rbxassetid://132067941069511", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://14976439240", + "Tradable": true, }, - "configName": "Huge Gamer Shiba", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.070Z", - "hashShort": "d6e3424e0ecd1d5d", + "configName": "Black Hole Cannon", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "6a9371d3a4a28380", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976525395", - "huge": true, - "indexDesc": "Found in an original non-tradable Exclusive Egg!", - "indexObtainable": false, - "name": "Huge Pony", - "rarity": { - "Announce": true, + "Desc": "Can be combined into Love Gifts using the Valentine's Machine!", + "Discontinued": true, + "DisplayName": "Valentine's Heart", + "Icon": "rbxassetid://80016575197859", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976525582", + "Tradable": false, }, - "configName": "Huge Pony", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.074Z", - "hashShort": "56f38ba384df873e", + "configName": "Valentines Heart", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "a5bc647269d1f754", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://15260479868", - "huge": true, - "indexDesc": "Found in one of the first non-tradable Exclusive Eggs!", - "indexObtainable": false, - "name": "Huge Storm Agony", - "rarity": { + "Desc": "Earned from rebirthing your tower! + +Each token allows you to hatch the HUGE Shattered Heart Agony for 1 hour!", + "Discontinued": true, + "DisplayName": "Tower Rebirth Token", + "Icon": "rbxassetid://82298514528405", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://15260479669", + "Tradable": false, }, - "configName": "Huge Storm Agony", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.076Z", - "hashShort": "25ff936fe3a90717", + "configName": "Tower Rebirth Token", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "3bf25ab16eb22aa9", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976563895", - "huge": true, - "indexDesc": "Awarded to top 100 players from the 2023 Yeet a Pet Event in PSX!", - "indexObtainable": false, - "name": "Huge Stunt Unicorn", - "rarity": { + "Desc": "Used to enter the Valentine's Tower Tycoon raffle!", + "Discontinued": true, + "DisplayName": "Tower Raffle Ticket", + "Icon": "rbxassetid://103699563240148", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976564045", + "Tradable": false, }, - "configName": "Huge Stunt Unicorn", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.064Z", - "hashShort": "ddac1e926df81062", + "configName": "Tower Raffle Ticket", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "e2ee3dc83e4810b6", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976518950", - "huge": true, - "indexDesc": "Hatched from eggs in PSX!", - "indexObtainable": false, - "name": "Huge Pixel Cat", - "rarity": { - "Announce": true, + "Desc": "Used to purchase Card Event Upgrades!", + "Discontinued": true, + "DisplayName": "Upgrade Card", + "Icon": "rbxassetid://103039910052534", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976519049", + "Tradable": false, }, - "configName": "Huge Pixel Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.053Z", - "hashShort": "f4835fef4e6c22e5", + "configName": "Upgrade Card", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "0baaa3f8400f5c0c", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976532056", - "huge": true, - "indexDesc": "Found in one of the first non-tradable Exclusive Eggs!", - "indexObtainable": false, - "name": "Huge Rainbow Unicorn", - "rarity": { + "Desc": "Unlocks the Card Merchant Area! Earned from the Card Index Rewards!", + "Discontinued": true, + "DisplayName": "Card Shop Key", + "Icon": "rbxassetid://120760084851780", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976532168", + "Tradable": false, }, - "configName": "Huge Rainbow Unicorn", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.053Z", - "hashShort": "573ab522bdc8ae93", + "configName": "Card Shop Key", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "5f9d09bbb2ebbde9", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "animations": { - "balloon": true, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://14976359470", - "huge": true, - "indexDesc": "Comes with Series 2 Coolbeanz Toys! [RARE]", - "indexObtainable": true, - "name": "Huge Balloon Monkey", - "rarity": { - "Announce": true, + "Desc": "Can be combined into Lucky Gifts using the Leprechaun Machine!", + "Discontinued": true, + "DisplayName": "Clover", + "Icon": "rbxassetid://121838700496664", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976359711", + "Tradable": false, }, - "configName": "Huge Balloon Monkey", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.223Z", - "hashShort": "5452fc99f1e89d44", + "configName": "Clover", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "b74ec276566fce8a", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976373565", - "huge": true, - "indexDesc": "Tied to the Huge Plush merch in stores and Exclusive Capybara Egg!", - "indexObtainable": true, - "name": "Huge Capybara", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, + "Desc": "Unlocks the Leprechaun Chest at the end of Lucky Raids!", + "Discontinued": true, + "DisplayName": "Leprechaun Key", + "Icon": "rbxassetid://97209544403492", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://14976373698", + "Tradable": true, }, - "configName": "Huge Capybara", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.221Z", - "hashShort": "fddf85f271e5d5fa", + "configName": "Leprechaun Key", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "f04820cd48a1f72c", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976529068", - "huge": true, - "indexDesc": "Earned from the 2021, 2022, and 2023 Halloween Event in PSX!", - "indexObtainable": false, - "name": "Huge Pumpkin Cat", - "rarity": { - "Announce": true, + "Desc": "Used to purchase Lucky Raid Upgrades! Earned from gaining Lucky Raid levels!", + "Discontinued": true, + "DisplayName": "Lucky Raid Orb", + "Icon": "rbxassetid://107058871267889", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976529226", + "Tradable": false, }, - "configName": "Huge Pumpkin Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.219Z", - "hashShort": "31cf181ff64f289b", + "configName": "Lucky Raid Orb", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "0bbbdc5ea183ac2e", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "animations": { - "balloon": true, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://14976517320", - "hideExists": true, - "huge": true, - "indexDesc": "Tied to the Pink Balloon Cat Roblox Limited!", - "indexObtainable": true, - "name": "Huge Pink Balloon Cat", - "rarity": { - "Announce": true, + "Desc": "The lower half to the Lucky Raid Boss Key. Combine this with the upper half!", + "Discontinued": true, + "DisplayName": "Lucky Raid Boss Key: Lower Half", + "Icon": "rbxassetid://85599753132358", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://14976517430", - "tradable": false, - "ugc": true, }, - "configName": "Huge Pink Balloon Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.217Z", - "hashShort": "fb13cb96328a0940", + "configName": "Lucky Raid Boss Key Lower Half", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "f36849b4b4645cc9", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976494247", - "hideSerial": true, - "huge": true, - "indexDesc": "Found in the (Legendary, Mythical) Series 1 Merch Gifts!", - "indexObtainable": true, - "name": "Huge Mosaic Griffin", - "rarity": { - "Announce": true, + "Desc": "The lower half to the Lucky Raid Boss Key. Combine this with the lower half!", + "Discontinued": true, + "DisplayName": "Lucky Raid Boss Key: Upper Half", + "Icon": "rbxassetid://125658414860429", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://14976494343", }, - "configName": "Huge Mosaic Griffin", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.222Z", - "hashShort": "d4c32decaa734f1b", + "configName": "Lucky Raid Boss Key Upper Half", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "4e63110a10b471d6", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://15281990316", - "huge": true, - "indexDesc": "Found in Series 2 Collector Clips! [SUPER RARE]", - "indexObtainable": true, - "name": "Huge Angel Cat", - "rarity": { + "Desc": "Used to unlock the final Lucky Raid Boss room!", + "Discontinued": true, + "DisplayName": "Lucky Raid Boss Key", + "Icon": "rbxassetid://110981208047993", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://15281990207", }, - "configName": "Huge Angel Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.233Z", - "hashShort": "c0b29877bbde34c4", + "configName": "Lucky Raid Boss Key", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "0fe44245aa2047fa", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://15260480874", - "hideSerial": true, - "huge": true, - "indexDesc": "Found in the (Legendary, Mythical) Series 1 Merch Gifts!", - "indexObtainable": true, - "name": "Huge Nightfall Wolf", - "rarity": { + "Desc": "Who's there? Nobody knows!", + "Discontinued": true, + "DisplayName": "Mystery Lucky Raid Key", + "Icon": "rbxassetid://97209544403492", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://15260480737", + "Tradable": false, }, - "configName": "Huge Nightfall Wolf", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.234Z", - "hashShort": "a54d0befbadc3ed7", + "configName": "Mystery Lucky Raid Key", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "6566e38e39a9edb9", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://15260481257", - "hideSerial": true, - "huge": true, - "indexDesc": "Found in the (Legendary, Mythical) Series 1 Merch Gifts!", - "indexObtainable": true, - "name": "Huge Nightfall Pegasus", - "rarity": { - "Announce": true, + "Desc": "Deep blue gem of clarity", + "Discontinued": true, + "DisplayName": "Sapphire Gem", + "Icon": "rbxassetid://84504397312679", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://15260481050", + "Tradable": true, }, - "configName": "Huge Nightfall Pegasus", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.232Z", - "hashShort": "6dbed527b4c58f85", + "configName": "Sapphire Gem", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "5c10538f0498b33d", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976476867", - "huge": true, - "indexDesc": "Hatched from the 2023 Valentine's Event in PSX!", - "indexObtainable": false, - "name": "Huge Love Lamb", - "rarity": { - "Announce": true, + "Desc": "Firey red stone of passion", + "Discontinued": true, + "DisplayName": "Ruby Gem", + "Icon": "rbxassetid://138741487405849", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14976476986", + "Tradable": true, }, - "configName": "Huge Love Lamb", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.226Z", - "hashShort": "41d9111e92464d80", + "configName": "Ruby Gem", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "d3e220602b405678", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976488209", - "huge": true, - "indexDesc": "Earned from Daycare!", - "indexObtainable": true, - "name": "Huge Meebo in a Spaceship", - "rarity": { - "Announce": true, + "AltIcon": "rbxassetid://85917747502089", + "Desc": "Brilliant green jewel", + "Discontinued": true, + "DisplayName": "Emerald Gem", + "Icon": "rbxassetid://85917747502089", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976488429", + "Tradable": true, }, - "configName": "Huge Meebo in a Spaceship", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.229Z", - "hashShort": "4ff1e30ffcf27a89", + "configName": "Emerald Gem", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "5746e9c3374fb965", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976440787", - "huge": true, - "indexDesc": "Found in Series 2 Lucky Block 4-Pack Playset or Collector Clips!", - "indexObtainable": true, - "name": "Huge Ghost", - "rarity": { - "Announce": true, + "Desc": "Mystic purple crystal", + "Discontinued": true, + "DisplayName": "Amethyst Gem", + "Icon": "rbxassetid://135888300759373", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://14976441222", + "Tradable": true, }, - "configName": "Huge Ghost", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.235Z", - "hashShort": "94a29be0d84f3e87", + "configName": "Amethyst Gem", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "b828954f4bd779e0", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976384911", - "huge": true, - "indexDesc": "Earned from comets in PSX!", - "indexObtainable": true, - "name": "Huge Comet Cyclops", - "rarity": { + "Desc": "Gem with a shimmering spectrum of colors overflowing", + "Discontinued": true, + "DisplayName": "Rainbow Gem", + "Icon": "rbxassetid://139521341995918", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976385072", + "Tradable": true, }, - "configName": "Huge Comet Cyclops", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.218Z", - "hashShort": "6c83c3df1db6ab55", + "configName": "Rainbow Gem", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "31ee6b44e1278899", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976384660", - "huge": true, - "indexDesc": "Earned from comets in PSX!", - "indexObtainable": true, - "name": "Huge Comet Agony", - "rarity": { + "Desc": "Radiant gold crystal of fortune", + "Discontinued": true, + "DisplayName": "Topaz Gem", + "Icon": "rbxassetid://120275246838261", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Superior", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 8, + "_id": "Superior", "_script": null, }, - "thumbnail": "rbxassetid://14976384743", + "Tradable": true, }, - "configName": "Huge Comet Agony", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.236Z", - "hashShort": "ff2960f6979974b3", + "configName": "Topaz Gem", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "f48b88a42e318ce4", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://15260479136", - "huge": true, - "indexDesc": "Found in the Exclusive Dominus Egg!", - "indexObtainable": true, - "name": "Huge Storm Dominus", - "rarity": { + "Desc": "Shimmering silver gem of wisdom", + "Discontinued": true, + "DisplayName": "Quartz Gem", + "Icon": "rbxassetid://126549199187047", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://15260478906", + "Tradable": true, }, - "configName": "Huge Storm Dominus", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.220Z", - "hashShort": "9abe7ba928c5053c", + "configName": "Quartz Gem", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "b830cfc9fda377f2", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976463700", - "huge": true, - "indexDesc": "Found in the Exclusive Dominus Egg!", - "indexObtainable": true, - "name": "Huge Inferno Dominus", - "rarity": { + "Desc": "Gem infused with immense power", + "Discontinued": true, + "DisplayName": "Onyx Gem", + "Icon": "rbxassetid://81003948377915", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "thumbnail": "rbxassetid://14976463903", + "Tradable": true, }, - "configName": "Huge Inferno Dominus", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.221Z", - "hashShort": "b20c20891250bc06", + "configName": "Onyx Gem", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "a70f171b2feadb82", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976528058", - "huge": true, - "indexDesc": "Hatched from eggs in PSX!", - "indexObtainable": false, - "name": "Huge Pufferfish", - "rarity": { + "Desc": "Used to fuel the Slime Factory Huge Chance Machine!", + "Discontinued": true, + "DisplayName": "Slime Token", + "Icon": "rbxassetid://77542469799258", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://14976528215", + "Tradable": false, }, - "configName": "Huge Pufferfish", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.224Z", - "hashShort": "76a9eedeffe2a983", + "configName": "Slime Token", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "89b31d078423ea00", }, { - "category": "Huge", - "collection": "Pets", + "category": "Keys", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976383732", - "huge": true, - "indexDesc": "Hatched from eggs in PSX!", - "indexObtainable": false, - "name": "Huge Clover Unicorn", - "rarity": { + "Desc": "Used to unlock the MVP Chest in the Spawn Castle! Requires MVP Subscription to use!", + "DisplayName": "MVP Key", + "Icon": "rbxassetid://77445028327693", + "InventoryTags": [ + "Keys", + ], + "Rarity": { "Announce": true, "Color": null, "DisplayName": "Exclusive", @@ -71946,24 +75503,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976383846", }, - "configName": "Huge Clover Unicorn", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.219Z", - "hashShort": "8cd948a31979f4e1", + "configName": "MVP Key", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "c89de2016f40b1c7", }, { - "category": "Huge", - "collection": "Pets", + "category": "Keys", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976513568", - "huge": true, - "indexDesc": "Comes with the Sock Dragon plush!", - "indexObtainable": true, - "name": "Huge Pastel Sock Dragon", - "rarity": { + "Desc": "The lower half to the MVP Key. Combine this with the upper half! Requires MVP Subscription to combine.", + "DisplayName": "MVP Key: Lower Half", + "Icon": "rbxassetid://138258335244851", + "InventoryTags": [ + "Keys", + ], + "Rarity": { "Announce": true, "Color": null, "DisplayName": "Exclusive", @@ -71975,23 +75531,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976513814", }, - "configName": "Huge Pastel Sock Dragon", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.238Z", - "hashShort": "7d5266cff48e49a7", + "configName": "MVP Key Lower Half", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "dbb7e4f11330b6eb", }, { - "category": "Huge", - "collection": "Pets", + "category": "Keys", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976354324", - "huge": true, - "indexDesc": "Found in the Exclusive Atlantean Egg!", - "indexObtainable": true, - "name": "Huge Atlantean Dolphin", - "rarity": { + "Desc": "The upper half to the MVP Key. Combine this with the lower half! Requires MVP Subscription to combine.", + "DisplayName": "MVP Key: Upper Half", + "Icon": "rbxassetid://123443588350607", + "InventoryTags": [ + "Keys", + ], + "Rarity": { "Announce": true, "Color": null, "DisplayName": "Exclusive", @@ -72003,23 +75559,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976354622", }, - "configName": "Huge Atlantean Dolphin", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.235Z", - "hashShort": "a96734cc00dbef76", + "configName": "MVP Key Upper Half", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "cab441d6020bb5e0", }, { - "category": "Huge", - "collection": "Pets", + "category": "Vouchers", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976370393", - "huge": true, - "indexDesc": "Hatched from eggs in PSX!", - "indexObtainable": false, - "name": "Huge Bread Shiba", - "rarity": { + "Desc": "Redeem to enter the Exclusive Raffle!", + "DisplayName": "Exclusive Raffle Ticket", + "Icon": "rbxassetid://133664564742718", + "InventoryTags": [ + "Vouchers", + ], + "Rarity": { "Announce": true, "Color": null, "DisplayName": "Exclusive", @@ -72031,313 +75587,317 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976370557", }, - "configName": "Huge Bread Shiba", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.240Z", - "hashShort": "33e2242fbc6475e9", + "configName": "Exclusive Raffle Ticket", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "019ff391a2458a58", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976517894", - "huge": true, - "indexDesc": "Comes with the Easter Chick plush!", - "indexObtainable": true, - "name": "Huge Pink Marshmallow Chick", - "rarity": { + "Desc": "Used to unlock the secret room in the 2025 Easter Event!", + "Discontinued": true, + "DisplayName": "Easter Secret Key", + "Icon": "rbxassetid://110695119653954", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976517974", }, - "configName": "Huge Pink Marshmallow Chick", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.240Z", - "hashShort": "e2bf87f7ca01f701", + "configName": "Easter Secret Key", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "04fae6df5bbc181c", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976442869", - "huge": true, - "indexDesc": "Comes with the Series 1 Deluxe Tech Plush!", - "indexObtainable": true, - "name": "Huge Gleebo The Alien", - "rarity": { - "Announce": true, + "Desc": "Used at the Giant Easter Basket to boost your final egg TITANIC & HUGE odds!", + "Discontinued": true, + "DisplayName": "Lucky Easter Egg", + "Icon": "rbxassetid://125215562870875", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://14976443059", + "Tradable": false, }, - "configName": "Huge Gleebo The Alien", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.227Z", - "hashShort": "010862f772f83e2e", + "configName": "Lucky Easter Egg", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "41ea585b26ab8f2c", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "", - "huge": true, - "indexDesc": "Found in the Exclusive Cosmic Egg!", - "indexObtainable": true, - "name": "Huge Cosmic Agony", - "rarity": { - "Announce": true, + "Desc": "Used at the Giant Easter Basket to boost your Easter egg hunt HUGE odds!", + "Discontinued": true, + "DisplayName": "Hunt Easter Egg", + "Icon": "rbxassetid://99408821135785", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://15201636010", + "Tradable": false, }, - "configName": "Huge Cosmic Agony", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.241Z", - "hashShort": "996ec6e765e7c33c", + "configName": "Hunt Easter Egg", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "37e64739dde8d843", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "animations": { - "flyHeightChange": 0, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://14976457245", - "huge": true, - "indexDesc": "Found in the Exclusive Hologram Egg!", - "indexObtainable": true, - "name": "Huge Hologram Shark", - "rarity": { - "Announce": true, + "Desc": "Used at the Giant Easter Basket to boost your secret Easter room HUGE odds!", + "Discontinued": true, + "DisplayName": "Secret Easter Egg", + "Icon": "rbxassetid://105083879250284", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://14976457374", + "Tradable": false, }, - "configName": "Huge Hologram Shark", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.231Z", - "hashShort": "7534f09ef8f9e9ce", + "configName": "Secret Easter Egg", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "da859cfabbe7660a", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "animations": { - "flyHeightChange": 0, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://14976456793", - "huge": true, - "indexDesc": "Found in the Exclusive Hologram Egg!", - "indexObtainable": true, - "name": "Huge Hologram Axolotl", - "rarity": { + "Desc": "Used to purchase Easter Chest Upgrades!", + "Discontinued": true, + "DisplayName": "Easter Token", + "Icon": "rbxassetid://103859738720586", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://14976456919", + "Tradable": false, }, - "configName": "Huge Hologram Axolotl", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.228Z", - "hashShort": "dd0740f99be7e58d", + "configName": "Easter Token", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "d2173a3560b67ca1", }, { - "category": "Huge", - "collection": "Pets", + "category": "Boats", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976470786", - "huge": true, - "indexDesc": "Hatched from eggs in PSX!", - "indexObtainable": false, - "name": "Huge Kawaii Dragon", - "rarity": { - "Announce": true, + "Desc": "Unsure of its purpose, but very certain of its charm.", + "DisplayName": "Dinghy Thingy", + "Icon": "rbxassetid://117656406529067", + "InventoryTags": [ + "Boats", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14976470932", + "Tradable": false, }, - "configName": "Huge Kawaii Dragon", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.217Z", - "hashShort": "41ee8cccc9a12aec", + "configName": "Boat 1", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "7551a3305cac6312", }, { - "category": "Huge", - "collection": "Pets", + "category": "Boats", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976531847", - "huge": true, - "indexDesc": "Found in the Huge Machine Kraken Egg!", - "indexObtainable": true, - "name": "Huge Colorful Slime", - "rarity": { - "Announce": true, + "Desc": "Lighthearted by nature, directionally flexible.", + "DisplayName": "Lil' Splashy", + "Icon": "rbxassetid://76011406806769", + "InventoryTags": [ + "Boats", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14976531943", + "Tradable": false, }, - "configName": "Huge Rainbow Slime", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.234Z", - "hashShort": "d5db549521002389", + "configName": "Boat 2", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "ea74fff9df80cc8c", }, { - "category": "Huge", - "collection": "Pets", + "category": "Boats", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976503028", - "huge": true, - "indexDesc": "Hatched from eggs in PSX!", - "indexObtainable": false, - "name": "Huge Ninja Axolotl", - "rarity": { - "Announce": true, + "Desc": "Quietly confident, secretly in charge.", + "DisplayName": "Tiny Terror", + "Icon": "rbxassetid://129105245106525", + "InventoryTags": [ + "Boats", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14976503103", + "Tradable": false, }, - "configName": "Huge Ninja Axolotl", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.224Z", - "hashShort": "70d16d11300434c6", + "configName": "Boat 3", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "f7789a145266227d", }, { - "category": "Huge", - "collection": "Pets", + "category": "Boats", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976446054", - "huge": true, - "indexDesc": "Found in the Huge Machine Kraken Egg!", - "indexObtainable": true, - "name": "Huge Goblin", - "rarity": { - "Announce": true, + "Desc": "Soft presence, firm intent.", + "DisplayName": "White Paw", + "Icon": "rbxassetid://101858146467837", + "InventoryTags": [ + "Boats", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976446202", + "Tradable": false, }, - "configName": "Huge Goblin", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.237Z", - "hashShort": "7a179a6ec1099d5a", + "configName": "Boat 4", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "577fbc886114f7f5", }, { - "category": "Huge", - "collection": "Pets", + "category": "Boats", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976352268", - "huge": true, - "indexDesc": "Found in the Lucky Block Merch!", - "indexObtainable": true, - "name": "Huge Apple Capybara", - "rarity": { - "Announce": true, + "Desc": "Methodical. Unfazed. Maybe a little judgmental.", + "DisplayName": "The Sea Unit", + "Icon": "rbxassetid://138561265608995", + "InventoryTags": [ + "Boats", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://14976352410", + "Tradable": false, }, - "configName": "Huge Apple Capybara", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.225Z", - "hashShort": "3cb29b3caf83054a", + "configName": "Boat 5", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "b60ab9cb872b7787", }, { - "category": "Huge", - "collection": "Pets", + "category": "Boats", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976440435", - "huge": true, - "indexDesc": "Found in the Huge Machine Kraken Egg!", - "indexObtainable": true, - "name": "Huge Gecko", - "rarity": { + "Desc": "One of one, even when there’s more.", + "DisplayName": "Kraken Raft", + "Icon": "rbxassetid://14968271149", + "InventoryTags": [ + "Boats", + ], + "Rarity": { "Announce": true, "Color": null, "DisplayName": "Exclusive", @@ -72349,1919 +75909,1766 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976440578", + "Tradable": false, }, - "configName": "Huge Gecko", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.219Z", - "hashShort": "44a54d6dbcc1b6af", + "configName": "Kraken", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "abe8d679275d2d85", }, { - "category": "Huge", - "collection": "Pets", + "category": "Keys", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976572239", - "huge": true, - "indexDesc": "Found in Series 2 Mystery Egg Plush! [RARE]", - "indexObtainable": true, - "name": "Huge Turtle", - "rarity": { + "Desc": "Pieces of Fantasy itself. Discontinued item.", + "DisplayName": "Fantasy Fragment", + "Icon": "rbxassetid://104812704571333", + "InventoryTags": [ + "Keys", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "thumbnail": "rbxassetid://14976572325", }, - "configName": "Huge Turtle", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.231Z", - "hashShort": "19e21144f8bbf004", + "configName": "Fantasy Fragment", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2026-03-14T15:52:21.738Z", + "hashShort": "6528712e96dd6b20", }, { - "category": "Huge", - "collection": "Pets", + "category": "Keys", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976473129", - "huge": true, - "indexDesc": "Found in the Huge Machine Kraken Egg!", - "indexObtainable": true, - "name": "Huge Kraken", - "rarity": { + "Desc": "Used to unlock the Fantasy Chest!", + "DisplayName": "Fantasy Key", + "Icon": "rbxassetid://108512775636522", + "InventoryTags": [ + "Keys", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976473284", }, - "configName": "Huge Kraken", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.223Z", - "hashShort": "77e13497784ea645", + "configName": "Fantasy Key", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "557f5793c832e08c", }, { - "category": "Huge", - "collection": "Pets", + "category": "Keys", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976417034", - "huge": true, - "indexDesc": "Earned from the 2023 Easter Gift in PSX!", - "indexObtainable": true, - "name": "Huge Easter Dominus", - "rarity": { - "Announce": true, + "Desc": "The upper half to the Fantasy Key. Combine this with the lower half!", + "DisplayName": "Fantasy Key: Upper Half", + "Icon": "rbxassetid://108917316617818", + "InventoryTags": [ + "Keys", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://14976417278", }, - "configName": "Huge Easter Dominus", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.222Z", - "hashShort": "63e89bdc738f8d56", + "configName": "Fantasy Key Upper Half", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "33d1d98f7383bebe", }, { - "category": "Huge", - "collection": "Pets", + "category": "Keys", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976486782", - "huge": true, - "indexDesc": "Earned from the 2023 Easter Gift in PSX!", - "indexObtainable": true, - "name": "Huge Marshmallow Agony", - "rarity": { - "Announce": true, + "Desc": "The lower half to the Fantasy Key. Combine this with the upper half!", + "DisplayName": "Fantasy Key: Lower Half", + "Icon": "rbxassetid://83084787090931", + "InventoryTags": [ + "Keys", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://14976486981", }, - "configName": "Huge Marshmallow Agony", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.229Z", - "hashShort": "3fd85317355bb86c", + "configName": "Fantasy Key Lower Half", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "8672dd58d49e75e6", }, { - "category": "Huge", - "collection": "Pets", + "category": "Vouchers", + "collection": "MiscItems", "configData": { - "animations": { - "flyHeight": 0.025, - "flyHeightChange": 0, - "swerve": true, - "swerveAggression": 0.2, - "swerveMaxAngle": 60, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://14976502045", - "huge": true, - "indexDesc": "Found in the Exclusive Nightmare Egg!", - "indexObtainable": true, - "name": "Huge Nightmare Kraken", - "rarity": { - "Announce": true, + "Desc": "Redeem to spin the Fantasy Spinny Wheel! [World 4 Required]", + "DisplayName": "Fantasy Spinny Wheel Ticket", + "Icon": "rbxassetid://116554568552023", + "InventoryTags": [ + "Vouchers", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976502236", }, - "configName": "Huge Nightmare Kraken", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.236Z", - "hashShort": "e0619742c3ee269d", + "configName": "Fantasy Spinny Wheel Ticket", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "e6d9c3a8099b6b9d", }, { - "category": "Huge", - "collection": "Pets", + "category": "Boats", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976566877", - "huge": true, - "indexDesc": "Found in the 2023 Easter Event in PSX!", - "indexObtainable": false, - "name": "Huge Easter Bunny", - "rarity": { + "Desc": "Always cold. Never Warm.", + "DisplayName": "Reel Frosty", + "Icon": "rbxassetid://105592631081706", + "InventoryTags": [ + "Boats", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976566967", + "Tradable": false, }, - "configName": "Huge Easter Bunny", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.239Z", - "hashShort": "f73f872b4cf8b59b", + "configName": "Boat 6", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "73418bf0b20c69ca", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976418761", - "huge": true, - "indexDesc": "Hatched from the 2023 Easter Event in PSX!", - "indexObtainable": false, - "name": "Huge Easter Yeti", - "rarity": { - "Announce": true, + "Desc": "Pixelized dust used in the Pixel Combine-O-Matic!", + "DisplayName": "Pixel Rainbow Dust", + "Icon": "rbxassetid://82237066339990", + "InventoryTags": [ + "FarmHoldable", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976418843", + "Tradable": true, }, - "configName": "Huge Easter Yeti", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.230Z", - "hashShort": "2fe44c7cfc6086c6", + "configName": "Pixel Rainbow Dust", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "8e3759f1007f06d7", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976350162", - "huge": true, - "indexDesc": "Found in the Exclusive Crystal Egg!", - "indexObtainable": true, - "name": "Huge Amethyst Dragon", - "rarity": { - "Announce": true, + "Desc": "Pixelized shard used in the Pixel Combine-O-Matic!", + "DisplayName": "Pixel Rainbow Shard", + "Icon": "rbxassetid://80894759807292", + "InventoryTags": [ + "FarmHoldable", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://14976350251", + "Tradable": true, }, - "configName": "Huge Amethyst Dragon", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.232Z", - "hashShort": "2b960de8d816e5fd", + "configName": "Pixel Rainbow Shard", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "be753c6241881f4e", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976490346", - "huge": true, - "indexDesc": "Comes with Series 2 Tech Chest Bundle!", - "indexObtainable": true, - "name": "Huge Tech Chest Mimic", - "rarity": { + "Desc": "Pixelized gem used in the Pixel Combine-O-Matic!", + "DisplayName": "Pixel Rainbow Gem", + "Icon": "rbxassetid://97872334211100", + "InventoryTags": [ + "FarmHoldable", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976490534", + "Tradable": true, }, - "configName": "Huge Tech Chest Mimic", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.240Z", - "hashShort": "81a1318c45a4702a", + "configName": "Pixel Rainbow Gem", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "144636b33f2252ff", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "evolved": true, - "goldenThumbnail": "rbxassetid://14976425729", - "huge": true, - "indexDesc": "Earned from evolving Huge Hell Rocks in PSX!", - "indexObtainable": true, - "name": "Huge Evolved Hell Rock", - "rarity": { - "Announce": true, + "Desc": "Used to purchase Farming World Upgrades!", + "DisplayName": "Pixel Upgrade Token", + "Icon": "rbxassetid://96732862229830", + "InventoryTags": [ + "FarmHoldable", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976425869", + "Tradable": false, }, - "configName": "Huge Evolved Hell Rock", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.233Z", - "hashShort": "516a9eba105816fb", + "configName": "Pixel Upgrade Token", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "3e80eae07cf9b571", }, { - "category": "Huge", - "collection": "Pets", + "category": "Farming", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://15260482379", - "huge": true, - "indexDesc": "Hatched from the Quest Egg in PSX!", - "indexObtainable": true, - "name": "Huge M-10 PROTOTYPE", - "rarity": { - "Announce": true, + "Desc": "Accelerate the growth of your eggs! Bonus: keeps your pets cool 😎", + "DisplayName": "Farming Sprinkler", + "Icon": "rbxassetid://16467241128", + "InventoryTags": [ + "Farming", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://15260482198", }, - "configName": "Huge M-10 PROTOTYPE", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.237Z", - "hashShort": "f05ba18bbcf12e03", + "configName": "Farming Sprinkler", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "eb6ab882e04fe2a5", }, { - "category": "Huge", - "collection": "Pets", + "category": "Farming", + "collection": "MiscItems", "configData": { - "evolved": true, - "goldenThumbnail": "rbxassetid://14976425152", - "huge": true, - "indexDesc": "Earned from evolving Huge Cupcakes in PSX!", - "indexObtainable": true, - "name": "Huge Evolved Cupcake", - "rarity": { - "Announce": true, + "Desc": "Keeps your pet fed for 30 minutes!", + "DisplayName": "Pixel Carrot", + "Icon": "rbxassetid://120094087159199", + "InventoryTags": [ + "FarmFood", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14976425356", + "Tradable": false, }, - "configName": "Huge Evolved Cupcake", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.229Z", - "hashShort": "1d4bb25841535eef", + "configName": "Pixel Carrot", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "53d5fea3e51fe072", }, { - "category": "Huge", - "collection": "Pets", + "category": "Farming", + "collection": "MiscItems", "configData": { - "animations": { - "balloon": true, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://14976359225", - "huge": true, - "indexDesc": "Found in the Exclusive Balloon Egg!", - "indexObtainable": true, - "name": "Huge Balloon Dragon", - "rarity": { - "Announce": true, + "Desc": "Keeps your pet fed for 2 hours!", + "DisplayName": "Pixel Potato", + "Icon": "rbxassetid://76512518216985", + "InventoryTags": [ + "FarmFood", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14976359350", + "Tradable": false, }, - "configName": "Huge Balloon Dragon", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.239Z", - "hashShort": "f85cbf0bd958bcef", + "configName": "Pixel Potato", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "50e9ee5da789b9b0", }, { - "category": "Huge", - "collection": "Pets", + "category": "Farming", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976543596", - "huge": true, - "indexDesc": "Hatched from eggs in the 2022 Autumn Event in PSX!", - "indexObtainable": false, - "name": "Huge Scarecrow Cat", - "rarity": { - "Announce": true, + "Desc": "Keeps your pet fed for 6 hours!", + "DisplayName": "Pixel Corn", + "Icon": "rbxassetid://97208731808454", + "InventoryTags": [ + "FarmFood", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14976543713", + "Tradable": false, }, - "configName": "Huge Scarecrow Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.226Z", - "hashShort": "d9fe3e32b64d1f7c", + "configName": "Pixel Corn", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "b8cda43dee9c68d9", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976427804", - "huge": true, - "indexDesc": "Found in the Lucky Block Merch!", - "indexObtainable": true, - "name": "Huge Fairy", - "rarity": { + "Desc": "Pixelized sprout used in the Pixel Combine-O-Matic!", + "DisplayName": "Pixel Sprout", + "Icon": "rbxassetid://107207547721427", + "InventoryTags": [ + "FarmHoldable", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://14976428656", + "Tradable": true, }, - "configName": "Huge Fairy", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.235Z", - "hashShort": "e02f152dc91d5e25", + "configName": "Pixel Sprout", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "471bc4bd943701bb", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976576693", - "huge": true, - "indexDesc": "Found in the Lucky Block Merch!", - "indexObtainable": true, - "name": "Huge White Tiger", - "rarity": { + "Desc": "Pixelized bloom used in the Pixel Combine-O-Matic!", + "DisplayName": "Pixel Bloom", + "Icon": "rbxassetid://103461948654704", + "InventoryTags": [ + "FarmHoldable", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Superior", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 8, + "_id": "Superior", "_script": null, }, - "thumbnail": "rbxassetid://14976576861", + "Tradable": true, }, - "configName": "Huge White Tiger", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.233Z", - "hashShort": "9e5ae449e3e507af", + "configName": "Pixel Bloom", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "fc92d11f97980f08", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "evolved": true, - "fly": true, - "goldenThumbnail": "rbxassetid://14976426958", - "huge": true, - "indexDesc": "Earned from evolving Huge Pterodactyls in PSX!", - "indexObtainable": true, - "name": "Huge Evolved Pterodactyl", - "rarity": { + "Desc": "Pixelized prism used in the Pixel Combine-O-Matic!", + "DisplayName": "Pixel Prism", + "Icon": "rbxassetid://127084758403255", + "InventoryTags": [ + "FarmHoldable", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Superior", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 8, + "_id": "Superior", "_script": null, }, - "thumbnail": "rbxassetid://14976427082", + "Tradable": true, }, - "configName": "Huge Evolved Pterodactyl", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.230Z", - "hashShort": "6cde4b6f6575d1a6", + "configName": "Pixel Prism", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "77994a28e9754958", }, { - "category": "Huge", - "collection": "Pets", + "category": "Farming", + "collection": "MiscItems", "configData": { - "evolved": true, - "goldenThumbnail": "rbxassetid://14976426244", - "huge": true, - "indexDesc": "Earned from evolving Huge Peacocks in PSX!", - "indexObtainable": true, - "name": "Huge Evolved Peacock", - "rarity": { - "Announce": true, + "Desc": "Nearby eggs grow 25% faster! Affects up to 5 eggs and lasts 10 minutes.", + "DisplayName": "Farming Sprinkler I", + "Icon": "rbxassetid://117619087117505", + "InventoryTags": [ + "FarmHoldable", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://14976426399", + "Tradable": false, }, - "configName": "Huge Evolved Peacock", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.222Z", - "hashShort": "4b21addf8609b5db", + "configName": "Farming Sprinkler 1", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "4bae383a0c227d4a", }, { - "category": "Huge", - "collection": "Pets", + "category": "Farming", + "collection": "MiscItems", "configData": { - "animations": { - "jelly": true, - "replacementPool": [ - [ - 1, - 0.5, - ], - [ - 2, - 0.2, - ], - [ - 3, - 0.15, - ], - [ - 4, - 0.1, - ], - [ - 5, - 0.05, - ], - ], - "replacements": [ - { - "desc": "Comes with a Coin inside! (50%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with Diamonds inside! (20%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with a Chest inside! (15%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with a Lucky Block inside! (10%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with a Maskot Pet inside! (5%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - ], + "Desc": "Keeps your pet fed for 12 hours. Additionally, your pet Ages 1.5x faster!", + "DisplayName": "Pixel Cookie", + "Icon": "rbxassetid://88711965728566", + "InventoryTags": [ + "FarmFood", + ], + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Legendary", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 4, + "_id": "Legendary", + "_script": null, }, - "goldenThumbnail": "rbxassetid://14976467322", - "huge": true, - "indexDesc": "Found in the Exclusive Jelly Egg!", - "indexObtainable": true, - "name": "Huge Jelly Piggy", - "rarity": { - "Announce": true, + "Tradable": false, + }, + "configName": "Pixel Cookie", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "94e3d2da8c7b8ea7", + }, + { + "category": "Farming", + "collection": "MiscItems", + "configData": { + "Desc": "Keeps your pet fed for 24 hours. Additionally, your pet Ages 2x faster!", + "DisplayName": "Pixel Burger", + "Icon": "rbxassetid://117114420699088", + "InventoryTags": [ + "FarmFood", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://14976467450", + "Tradable": false, }, - "configName": "Huge Jelly Piggy", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.220Z", - "hashShort": "f59f94ff3eafeb91", + "configName": "Pixel Burger", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "3f80f3c742750977", }, { - "category": "Huge", - "collection": "Pets", + "category": "Farming", + "collection": "MiscItems", "configData": { - "evolved": true, - "goldenThumbnail": "rbxassetid://14976425978", - "huge": true, - "indexDesc": "Earned from evolving Huge King Cobras in PSX!", - "indexObtainable": true, - "name": "Huge Evolved King Cobra", - "rarity": { + "Desc": "Nearby eggs grow 50% faster! Affects up to 7 eggs and lasts 20 minutes.", + "DisplayName": "Farming Sprinkler II", + "Icon": "rbxassetid://139811459269601", + "InventoryTags": [ + "FarmHoldable", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976426069", + "Tradable": false, }, - "configName": "Huge Evolved King Cobra", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.379Z", - "hashShort": "8c315dffa56cc363", + "configName": "Farming Sprinkler 2", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "a064d7bf43c0d265", }, { - "category": "Huge", - "collection": "Pets", + "category": "Farming", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976553090", - "huge": true, - "indexDesc": "Hatched from eggs in PSX!", - "indexObtainable": false, - "name": "Huge Sombrero Chihuahua", - "rarity": { + "Desc": "Nearby eggs grow 100% faster! Affects up to 10 eggs and lasts one hour.", + "DisplayName": "Farming Sprinkler III", + "Icon": "rbxassetid://99804275060791", + "InventoryTags": [ + "FarmHoldable", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://14976553203", + "Tradable": false, }, - "configName": "Huge Sombrero Chihuahua", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.382Z", - "hashShort": "e9916bff9930105a", + "configName": "Farming Sprinkler 3", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "94c17f38f7717482", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976578410", - "huge": true, - "indexDesc": "Hatched from eggs in PSX!", - "indexObtainable": false, - "name": "Huge Wild Fire Agony", - "rarity": { - "Announce": true, + "Desc": "Used to purchase Gym Upgrades!", + "DisplayName": "Dumbbell", + "Icon": "rbxassetid://76123751036732", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976578547", + "Tradable": false, }, - "configName": "Huge Wild Fire Agony", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.381Z", - "hashShort": "bca14430e20adadf", + "configName": "Dumbbell", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "594a166252a222ce", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976511102", - "huge": true, - "indexDesc": "Hatched from Hype Gifts in PSX!", - "indexObtainable": true, - "name": "Huge Party Penguin", - "rarity": { - "Announce": true, + "Desc": "Used to purchase Gym Upgrades!", + "DisplayName": "Weight Plate", + "Icon": "rbxassetid://114538997212090", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976511281", + "Tradable": false, }, - "configName": "Huge Party Penguin", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.367Z", - "hashShort": "8c1b69503e9d8ec6", + "configName": "Weight Plate", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "f498e54f10ee754e", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976362945", - "huge": true, - "indexDesc": "Earned from Group Reward in PSX!", - "indexObtainable": false, - "name": "Huge BIG Maskot", - "rarity": { - "Announce": true, + "Desc": "Earned from Bench a Gargantuan, used in the Gym Skill Upgrade machine!", + "DisplayName": "Muscle Helix", + "Icon": "rbxassetid://110195103686100", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976363084", + "Tradable": false, }, - "configName": "Huge BIG Maskot", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.382Z", - "hashShort": "bcaaa79d5ae6329c", + "configName": "Muscle Helix", + "dateCreated": "2025-07-05T23:23:47.944Z", + "dateModified": "2025-07-05T23:23:47.944Z", + "hashShort": "9d293944eb648084", }, { - "category": "Huge", - "collection": "Pets", + "category": "Keys", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976557900", - "hideSerial": true, - "huge": true, - "indexDesc": "Found in the (Epic, Mythical) Series 2 Merch Gifts!", - "indexObtainable": true, - "name": "Huge Stealth Dragon", - "rarity": { - "Announce": true, + "Desc": "Used to unlock the Summer Block Party chest!", + "DisplayName": "Block Party Chest Key", + "Icon": "rbxassetid://77445028327693", + "InventoryTags": [ + "Keys", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976557966", }, - "configName": "Huge Stealth Dragon", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.370Z", - "hashShort": "93058d78c79b95fd", + "configName": "Block Party Chest Key", + "dateCreated": "2025-07-12T16:08:35.301Z", + "dateModified": "2025-07-12T16:08:35.301Z", + "hashShort": "97dd403e1485277a", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976460376", - "huge": true, - "indexDesc": "Found in the Lucky Block Merch!", - "indexObtainable": true, - "name": "Huge Husky", - "rarity": { - "Announce": true, + "Desc": "Can be combined into Tropical Gifts using the Summer Giftbag Machine (2025)!", + "DisplayName": "Tropical Flower", + "Icon": "rbxassetid://133532149711124", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976460483", + "Tradable": true, }, - "configName": "Huge Husky", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.368Z", - "hashShort": "dd2c057c8fe54025", + "configName": "Tropical Flower", + "dateCreated": "2025-07-12T16:08:35.765Z", + "dateModified": "2025-07-12T16:08:35.765Z", + "hashShort": "fdf563157b1f98f5", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976427618", - "hideSerial": true, - "huge": true, - "indexDesc": "Found in the (Legendary, Mythical) Series 2 Merch Gifts!", - "indexObtainable": true, - "name": "Huge Exquisite Parrot", - "rarity": { + "Desc": "Used to enter the Summer Block Party raffle!", + "DisplayName": "Summer Block Party Ticket", + "Icon": "rbxassetid://126924826850832", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976427729", }, - "configName": "Huge Exquisite Parrot", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.389Z", - "hashShort": "ff70bf6955ff1264", + "configName": "Summer Block Party Ticket", + "dateCreated": "2025-07-19T17:28:43.528Z", + "dateModified": "2025-07-19T17:28:43.528Z", + "hashShort": "e42fd1d408dc7ddf", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "animations": { - "colorVariants": [ - { - "Chance": 0.35, - "Color": null, - "Desc": "Comes in a Yellow color! (35%)", - "Id": 1, - "IsUnique": true, - "Magnitude": 1, - "Name": "Yellow", - "Title": "Chroma", - }, - { - "Chance": 0.3, - "Color": null, - "Desc": "Comes in a Pink color! (30%)", - "Id": 2, - "IsUnique": true, - "Magnitude": 1, - "Name": "Pink", - "Title": "Chroma", - }, - { - "Chance": 0.2, - "Color": null, - "Desc": "Comes in a Blue color! (20%)", - "Id": 3, - "IsUnique": true, - "Magnitude": 1, - "Name": "Blue", - "Title": "Chroma", - }, - { - "Chance": 0.1, - "Color": null, - "Desc": "Comes in an Orange color! (10%)", - "Id": 4, - "IsUnique": true, - "Magnitude": 1, - "Name": "Orange", - "Title": "Chroma", - }, - { - "Chance": 0.04, - "Color": null, - "Desc": "Comes in a Red color! (4%)", - "Id": 5, - "IsUnique": true, - "Magnitude": 1, - "Name": "Red", - "Title": "Chroma", - }, - { - "Chance": 0.01, - "Color": null, - "Desc": "Comes in a Purple color! (1%)", - "Id": 6, - "IsUnique": true, - "Magnitude": 1, - "Name": "Purple", - "Title": "Chroma", - }, - ], - }, - "fly": true, - "goldenThumbnail": "rbxassetid://14976381485", - "huge": true, - "name": "Huge Chroma Lucki", - "preventGolden": true, - "rarity": { - "Announce": true, + "Desc": "Used to purchase Halloween Upgrades!", + "DisplayName": "Witch Hat", + "Icon": "rbxassetid://128262661130871", + "InventoryTags": [ + "Discontinued", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976381547", + "Tradable": false, }, - "configName": "Huge Chroma Lucki", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.374Z", - "hashShort": "f6cf4f41d60f9832", + "configName": "Witch Hat", + "dateCreated": "2025-10-18T17:03:14.257Z", + "dateModified": "2026-03-14T15:52:22.202Z", + "hashShort": "d2ba4c4e76452b95", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "animations": { - "colorVariants": [ - { - "Chance": 0.35, - "Color": null, - "Desc": "Comes in a Yellow color! (35%)", - "Id": 1, - "IsUnique": true, - "Magnitude": 1, - "Name": "Yellow", - "Title": "Chroma", - }, - { - "Chance": 0.3, - "Color": null, - "Desc": "Comes in a Pink color! (30%)", - "Id": 2, - "IsUnique": true, - "Magnitude": 1, - "Name": "Pink", - "Title": "Chroma", - }, - { - "Chance": 0.2, - "Color": null, - "Desc": "Comes in a Blue color! (20%)", - "Id": 3, - "IsUnique": true, - "Magnitude": 1, - "Name": "Blue", - "Title": "Chroma", - }, - { - "Chance": 0.1, - "Color": null, - "Desc": "Comes in an Orange color! (10%)", - "Id": 4, - "IsUnique": true, - "Magnitude": 1, - "Name": "Orange", - "Title": "Chroma", - }, - { - "Chance": 0.04, - "Color": null, - "Desc": "Comes in a Red color! (4%)", - "Id": 5, - "IsUnique": true, - "Magnitude": 1, - "Name": "Red", - "Title": "Chroma", - }, - { - "Chance": 0.01, - "Color": null, - "Desc": "Comes in a Purple color! (1%)", - "Id": 6, - "IsUnique": true, - "Magnitude": 1, - "Name": "Purple", - "Title": "Chroma", - }, - ], - }, - "goldenThumbnail": "rbxassetid://15282013171", - "huge": true, - "name": "Huge Chroma Lucky Block Mimic", - "preventGolden": true, - "rarity": { - "Announce": true, + "Desc": "Used for Gargantuan Present Upgrades and in the Santa Gift Machine!", + "Discontinued": true, + "DisplayName": "Santa Hat", + "Icon": "rbxassetid://100774712258156", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://15282013087", + "Tradable": false, }, - "configName": "Huge Chroma Lucky Block Mimic", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.395Z", - "hashShort": "f3b5370d90dee34d", + "configName": "Santa Hat", + "dateCreated": "2025-12-20T17:55:10.777Z", + "dateModified": "2026-03-14T15:52:22.197Z", + "hashShort": "b6941ea4d46fbcc9", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976568507", - "hideSerial": true, - "huge": true, - "indexDesc": "Found in the (Basic, Rare, Mythical) Series 2 Merch Gifts!", - "indexObtainable": true, - "name": "Huge Tiedye Bunny", - "rarity": { + "Desc": "Used to unlock the final Lucky Raid Boss room!", + "DisplayName": "Lucky Raid Boss Key", + "Icon": "rbxassetid://110981208047993", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976568628", }, - "configName": "Huge Tiedye Bunny", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.369Z", - "hashShort": "8fee5bb9f0903fa0", + "configName": "Lucky Raid Boss Key V2", + "dateCreated": "2026-03-14T15:52:22.155Z", + "dateModified": "2026-03-14T15:52:22.155Z", + "hashShort": "3167896ae00a87c9", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976567658", - "hideSerial": true, - "huge": true, - "indexDesc": "Found in the (Rare, Mythical) Series 2 Merch Gifts!", - "indexObtainable": true, - "name": "Huge Tiedye Axolotl", - "rarity": { - "Announce": true, + "Desc": "Can be combined into Horseshoe Gifts using the Leprechaun Machine!", + "DisplayName": "Clover", + "Icon": "rbxassetid://121838700496664", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976567779", + "Tradable": false, }, - "configName": "Huge Tiedye Axolotl", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.390Z", - "hashShort": "0a3ddab6b5c0eb25", + "configName": "Clover V2", + "dateCreated": "2026-03-14T15:52:22.167Z", + "dateModified": "2026-03-14T15:52:22.167Z", + "hashShort": "1f9d33b7dafd37d7", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976494461", - "hideSerial": true, - "huge": true, - "indexDesc": "Found in the (Epic, Mythical) Series 2 Merch Gifts!", - "indexObtainable": true, - "name": "Huge Mosaic Lamb", - "rarity": { - "Announce": true, + "Desc": "Used to purchase Lucky Raid Upgrades! Earned from gaining Lucky Raid levels!", + "DisplayName": "Lucky Raid Orb", + "Icon": "rbxassetid://107058871267889", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976494608", + "Tradable": false, }, - "configName": "Huge Mosaic Lamb", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.398Z", - "hashShort": "26e35abcef3ae15a", + "configName": "Lucky Raid Orb V2", + "dateCreated": "2026-03-14T15:52:22.158Z", + "dateModified": "2026-03-14T15:52:22.158Z", + "hashShort": "832db401bd014573", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "animations": { - "balloon": true, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://14976576256", - "huge": true, - "indexDesc": "Found in the Series 1 CoolBeanz! [RARE]", - "indexObtainable": true, - "name": "Huge White Balloon Cat", - "rarity": { - "Announce": true, + "Desc": "The upper half to the Lucky Raid Boss Key. Combine this with the lower half!", + "DisplayName": "Lucky Raid Boss Key: Upper Half", + "Icon": "rbxassetid://125658414860429", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://14976576332", }, - "configName": "Huge White Balloon Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.377Z", - "hashShort": "431a4c7bf7d7b780", + "configName": "Lucky Raid Boss Key Upper Half V2", + "dateCreated": "2026-03-14T15:52:22.181Z", + "dateModified": "2026-03-14T15:52:22.181Z", + "hashShort": "bb209785ea689185", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "animations": { - "flipbookAnimation": [ - "rbxassetid://13982245778", - "rbxassetid://13982466934", - ], - "flipbookAnimationGold": [ - "rbxassetid://13982245670", - "rbxassetid://13982466789", - ], - "flipbookAnimationSpeed": 1, - }, - "goldenThumbnail": "rbxassetid://14976352499", - "huge": true, - "indexDesc": "Earned from Claw Machine Event in PSX!", - "indexObtainable": false, - "name": "Huge Arcade Cat", - "rarity": { + "Desc": "Unlocks the Leprechaun Chest at the end of Lucky Raids!", + "DisplayName": "Leprechaun Key", + "Icon": "rbxassetid://97209544403492", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://14976352617", + "Tradable": true, }, - "configName": "Huge Arcade Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.398Z", - "hashShort": "7ea740eb23eb9300", + "configName": "Leprechaun Key V2", + "dateCreated": "2026-03-14T15:52:22.187Z", + "dateModified": "2026-03-14T15:52:22.187Z", + "hashShort": "cf124d60e84f7317", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "animations": { - "balloon": true, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://14976358265", - "huge": true, - "indexDesc": "Hatched from eggs in PSX!", - "indexObtainable": false, - "name": "Huge Balloon Cat", - "rarity": { - "Announce": true, + "Desc": "The lower half to the Lucky Raid Boss Key. Combine this with the upper half!", + "DisplayName": "Lucky Raid Boss Key: Lower Half", + "Icon": "rbxassetid://85599753132358", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://14976358748", }, - "configName": "Huge Balloon Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.389Z", - "hashShort": "1b58f3ef981a6304", + "configName": "Lucky Raid Boss Key Lower Half V2", + "dateCreated": "2026-03-14T15:52:22.188Z", + "dateModified": "2026-03-14T15:52:22.188Z", + "hashShort": "ffd832751283370a", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "animations": { - "balloon": true, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://14976365612", - "huge": true, - "indexDesc": "Exclusive Shop pet in PSX!", - "indexObtainable": false, - "name": "Huge Blue Balloon Cat", - "rarity": { - "Announce": true, + "Desc": "Used to unlock new Spring Eggs!", + "DisplayName": "Spring Egg Token", + "Icon": "rbxassetid://82974224216690", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976365873", + "Tradable": false, }, - "configName": "Huge Blue Balloon Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.378Z", - "hashShort": "04b1422a81bcc560", + "configName": "Spring Egg Token", + "dateCreated": "2026-04-18T15:56:17.192Z", + "dateModified": "2026-04-18T15:56:17.192Z", + "hashShort": "a89cf102b0f56887", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976374264", - "huge": true, - "indexDesc": "Comes with the Cat plush!", - "indexObtainable": true, - "name": "Huge Cat", - "rarity": { - "Announce": true, + "Desc": "Earned in Dewdrop Falls, used to upgrade Cooldown & Amount!", + "DisplayName": "Spring Bluebell Token", + "Icon": "rbxassetid://92541145782702", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976374906", + "Tradable": true, }, - "configName": "Huge Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.383Z", - "hashShort": "40e4bddbf46fcb76", + "configName": "Spring Bluebell Token", + "dateCreated": "2026-04-18T15:56:17.201Z", + "dateModified": "2026-04-18T15:56:17.201Z", + "hashShort": "b377594ce776e77e", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://15281989997", - "huge": true, - "indexDesc": "Earned from limited-time My Restaurant promotion!", - "indexObtainable": false, - "name": "Huge Chef Cat", - "rarity": { - "Announce": true, + "Desc": "Earned in Blossom Vale, used to upgrade Luck!", + "DisplayName": "Spring Rose Token", + "Icon": "rbxassetid://130170754174499", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://15281989941", + "Tradable": true, }, - "configName": "Huge Chef Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.372Z", - "hashShort": "0cef3913456fa55a", + "configName": "Spring Pink Rose Token", + "dateCreated": "2026-04-18T15:56:17.200Z", + "dateModified": "2026-04-18T15:56:17.200Z", + "hashShort": "cbbdca0e269fe3e0", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976385365", - "huge": true, - "indexDesc": "Found in the Event Cool Egg!", - "indexObtainable": true, - "name": "Huge Cool Cat", - "rarity": { - "Announce": true, + "Desc": "Earned in Sunstone Heights, used to upgrade Shiny Luck!", + "DisplayName": "Spring Sunflower Token", + "Icon": "rbxassetid://115652718639246", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976385467", + "Tradable": true, }, - "configName": "Huge Cool Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.369Z", - "hashShort": "288137ea7d38d543", + "configName": "Spring Yellow Sunflower Token", + "dateCreated": "2026-04-18T15:56:17.207Z", + "dateModified": "2026-04-18T15:56:17.207Z", + "hashShort": "44b6aa9a0886b04c", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://15281989874", - "huge": true, - "indexDesc": "Gifted to top 250 spenders on PSX!", - "indexObtainable": false, - "name": "Huge Crowned Cat", - "rarity": { - "Announce": true, + "Desc": "Earned in Tulip Hollow, used to upgrade Hatch Speed!", + "DisplayName": "Spring Tulip Token", + "Icon": "rbxassetid://114393271138945", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://15281989820", + "Tradable": true, }, - "configName": "Huge Crowned Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.368Z", - "hashShort": "3c779a6d2ce8f4af", + "configName": "Spring Red Tulip Token", + "dateCreated": "2026-04-18T15:56:17.212Z", + "dateModified": "2026-04-18T15:56:17.212Z", + "hashShort": "50ce207ea1947c5c", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976391512", - "huge": true, - "indexDesc": "Comes with Series 2 Cyborg Cat Collector Bundle!", - "indexObtainable": true, - "name": "Huge Cyborg Cat", - "rarity": { - "Announce": true, + "Desc": "Upgrade your Boss Chest luck for bigger rewards in The Nest!", + "DisplayName": "Spring Boss Chest Token", + "Icon": "rbxassetid://84780896644707", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976391620", + "Tradable": true, }, - "configName": "Huge Cyborg Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.396Z", - "hashShort": "9ec263eaf854259d", + "configName": "Spring Boss Chest Token", + "dateCreated": "2026-04-25T17:31:04.202Z", + "dateModified": "2026-04-25T17:31:04.202Z", + "hashShort": "1d6940143961ea18", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976396615", - "huge": true, - "indexDesc": "Chance to get from purchasing high-end Diamond packs!", - "indexObtainable": true, - "name": "Huge Diamond Cat", - "rarity": { + "Desc": "Increase your roll luck by 3,000% for 5 minutes, and greatly empower your Mega Dice! RNG Event item only!", + "DisplayName": "Lucky Dice II", + "Icon": "rbxassetid://18883667147", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://14976396731", + "Tradable": false, }, - "configName": "Huge Diamond Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.381Z", - "hashShort": "8c9e31602638ad5b", + "configName": "Lucky Dice II V2", + "dateCreated": "2026-05-09T17:52:09.371Z", + "dateModified": "2026-05-16T16:40:38.269Z", + "hashShort": "bb59c81821e4664c", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976402329", - "huge": true, - "indexDesc": "Hatched from eggs in PSX!", - "indexObtainable": false, - "name": "Huge Doodle Cat", - "rarity": { + "Desc": "Increase your roll luck by 1,000% for 1 minute, and empower your Mega Dice! RNG Event item only!", + "DisplayName": "Lucky Dice", + "Icon": "rbxassetid://18883667411", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976402524", + "Tradable": false, }, - "configName": "Huge Doodle Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.375Z", - "hashShort": "021a286811701f66", + "configName": "Lucky Dice V2", + "dateCreated": "2026-05-09T17:52:09.407Z", + "dateModified": "2026-05-16T16:40:38.263Z", + "hashShort": "c73614997b1c790f", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://15281989430", - "huge": true, - "indexDesc": "Hatched from the 2022 Easter Event in PSX!", - "indexObtainable": false, - "name": "Huge Easter Cat", - "rarity": { + "Desc": "Increase the luck of your next roll by 1,000,000% — even more with a Lucky Dice buff active! RNG Event item only!", + "DisplayName": "Mega Lucky Dice", + "Icon": "rbxassetid://18883666982", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Superior", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 8, + "_id": "Superior", "_script": null, }, - "thumbnail": "rbxassetid://15281989384", + "Tradable": false, }, - "configName": "Huge Easter Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.386Z", - "hashShort": "6c1d4d360515d255", + "configName": "Mega Lucky Dice V2", + "dateCreated": "2026-05-09T17:52:10.415Z", + "dateModified": "2026-05-16T16:40:38.285Z", + "hashShort": "043e37883cff0277", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976419700", - "huge": true, - "indexDesc": "Found in the Christmas 2022 Stocking in PSX!", - "indexObtainable": true, - "name": "Huge Elf Cat", - "rarity": { + "Desc": "Increase the luck of your next roll by 10,000,000% — even more with a Lucky Dice buff active! RNG Event item only!", + "DisplayName": "Mega Lucky Dice II", + "Icon": "rbxassetid://18883666783", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "thumbnail": "rbxassetid://14976419865", + "Tradable": false, }, - "configName": "Huge Elf Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.380Z", - "hashShort": "48cb6c822f3db785", + "configName": "Mega Lucky Dice II V2", + "dateCreated": "2026-05-09T17:52:10.438Z", + "dateModified": "2026-05-16T16:40:38.279Z", + "hashShort": "b8c4af66bebfec7d", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976424036", - "huge": true, - "indexDesc": "Hatched from eggs in PSX!", - "indexObtainable": false, - "name": "Huge Error Cat", - "rarity": { + "Desc": "Increase your roll luck by 20,000% for 5 minutes, and unleash the FULL power of your Mega Dice! RNG Event item only!", + "DisplayName": "Lucky Dice III", + "Icon": "rbxassetid://18972217122", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://14976424262", + "Tradable": false, }, - "configName": "Huge Error Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.373Z", - "hashShort": "aa347c50569cd7fe", + "configName": "Lucky Dice III V2", + "dateCreated": "2026-05-16T16:40:38.269Z", + "dateModified": "2026-05-16T16:40:38.269Z", + "hashShort": "7d9f1dd09925a86c", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "evolved": true, - "goldenThumbnail": "rbxassetid://14976425481", - "huge": true, - "indexDesc": "Earned from evolving Huge Hacked Cats in PSX!", - "indexObtainable": true, - "name": "Huge Evolved Hacked Cat", - "rarity": { + "Desc": "Increase your roll speed by 10x for 1 minute! RNG Event item only!", + "DisplayName": "Fire Dice", + "Icon": "rbxassetid://18972217224", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://14976425579", + "Tradable": false, }, - "configName": "Huge Evolved Hacked Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.397Z", - "hashShort": "d9953042bbacced1", + "configName": "Fire Dice V2", + "dateCreated": "2026-05-16T16:40:38.277Z", + "dateModified": "2026-05-16T16:40:38.277Z", + "hashShort": "a1f2e7dfddb5621a", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "evolved": true, - "goldenThumbnail": "rbxassetid://14976426523", - "huge": true, - "indexDesc": "Earned from evolving Huge Pixel Cats in PSX!", - "indexObtainable": true, - "name": "Huge Evolved Pixel Cat", - "rarity": { + "Desc": "Increase your roll luck by 250% for 2 minutes!", + "DisplayName": "Ultra RNG Chest Luck", + "Icon": "rbxassetid://18978160238", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976426599", + "Tradable": false, }, - "configName": "Huge Evolved Pixel Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.373Z", - "hashShort": "3930cfee59eaa9de", + "configName": "Ultra Rng Chest V2 Luck", + "dateCreated": "2026-05-16T16:40:38.278Z", + "dateModified": "2026-05-16T16:40:38.278Z", + "hashShort": "53608dd85cf531c4", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976427212", - "hideSerial": true, - "huge": true, - "indexDesc": "Found in the (Legendary, Mythical) Series 2 Merch Gifts!", - "indexObtainable": true, - "name": "Huge Exquisite Cat", - "rarity": { + "Desc": "Earned by helping destroy a Mega Chest! For your next few egg rolls, the lowest-tier pet can't be hatched - so every roll has a better shot at something good. Counts down by one each time you roll.", + "DisplayName": "Mega Chest Empowered", + "Icon": "rbxassetid://15854077741", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://14976427289", + "Tradable": false, }, - "configName": "Huge Exquisite Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.376Z", - "hashShort": "27cf017bb95d1b7e", + "configName": "Mega Chest Empowered", + "dateCreated": "2026-05-16T16:40:38.286Z", + "dateModified": "2026-05-16T16:40:38.286Z", + "hashShort": "628d61120ad4500a", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://15281989314", - "huge": true, - "indexDesc": "From the 2021 Insane Christmas Exclusive Egg!", - "indexObtainable": false, - "name": "Huge Festive Cat", - "rarity": { + "Desc": "Increase your roll luck by 100% for 2 minutes!", + "DisplayName": "RNG Chest Luck", + "Icon": "rbxassetid://18978159995", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://15281989250", + "Tradable": false, }, - "configName": "Huge Festive Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.399Z", - "hashShort": "6b53fa1d30f0c53e", + "configName": "Rng Chest V2 Luck", + "dateCreated": "2026-05-16T16:40:38.287Z", + "dateModified": "2026-05-16T16:40:38.287Z", + "hashShort": "c08060143e49ff93", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "animations": { - "balloon": true, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://14976446836", - "huge": true, - "indexDesc": "Hatched from eggs in PSX!", - "indexObtainable": false, - "name": "Huge Green Balloon Cat", - "preventGolden": true, - "rarity": { + "Desc": "Increase your roll luck by 150% for 2 minutes!", + "DisplayName": "Super RNG Chest Luck", + "Icon": "rbxassetid://18978160109", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://14976447015", + "Tradable": false, }, - "configName": "Huge Green Balloon Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:00.475Z", - "hashShort": "28bf47038f83b363", + "configName": "Super Rng Chest V2 Luck", + "dateCreated": "2026-05-16T16:40:38.324Z", + "dateModified": "2026-05-16T16:40:38.324Z", + "hashShort": "a78acdba4f9bc7d0", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976448160", - "huge": true, - "indexDesc": "Found in the Exclusive Jolly Egg!", - "indexObtainable": true, - "name": "Huge Grinch Cat", - "rarity": { + "Desc": "Earned from the Backrooms Boss Fight. Spend it at the Hunt Token Upgrade Machine!", + "DisplayName": "Chest Hunt Token", + "Icon": "rbxassetid://118636593663204", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://14976448309", + "Tradable": false, }, - "configName": "Huge Grinch Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.384Z", - "hashShort": "cc7e539eede688da", + "configName": "Chest Hunt Token", + "dateCreated": "2026-06-13T23:13:33.077Z", + "dateModified": "2026-06-13T23:13:33.077Z", + "hashShort": "99be90e8f458345a", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976449416", - "huge": true, - "indexDesc": "Hatched from eggs in PSX!", - "indexObtainable": false, - "name": "Huge Hacked Cat", - "rarity": { + "Desc": "The upper half of a Deep Daydream Key. Combine this with the lower half!", + "Discontinued": true, + "DisplayName": "Deep Daydream Key: Upper Half", + "Icon": "rbxassetid://94480414047442", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Superior", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 8, + "_id": "Superior", "_script": null, }, - "thumbnail": "rbxassetid://14976449581", + "Tradable": false, }, - "configName": "Huge Hacked Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.397Z", - "hashShort": "9c091e249b28858a", + "configName": "Deep Backrooms Crayon Key Upper Half", + "dateCreated": "2026-06-13T23:13:33.083Z", + "dateModified": "2026-06-27T16:05:54.590Z", + "hashShort": "383bb0926105bd49", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976463072", - "huge": true, - "indexDesc": "Found in the Exclusive Elemental Egg!", - "indexObtainable": true, - "name": "Huge Inferno Cat", - "rarity": { - "Announce": true, + "Desc": "Access locked backrooms for loot! Found in the backrooms!", + "Discontinued": true, + "DisplayName": "Daydream Key", + "Icon": "rbxassetid://128459619034531", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://14976463498", + "Tradable": false, }, - "configName": "Huge Inferno Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.396Z", - "hashShort": "05ea5036e0823cb9", + "configName": "Backrooms Crayon Key", + "dateCreated": "2026-06-13T23:13:33.107Z", + "dateModified": "2026-06-27T16:05:56.940Z", + "hashShort": "6454dff24370592f", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976470496", - "huge": true, - "indexDesc": "Hatched from eggs in PSX!", - "indexObtainable": false, - "name": "Huge Kawaii Cat", - "rarity": { + "Desc": "The lower half of a Deep Daydream Key. Combine this with the upper half!", + "Discontinued": true, + "DisplayName": "Deep Daydream Key: Lower Half", + "Icon": "rbxassetid://129021573627721", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Superior", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 8, + "_id": "Superior", "_script": null, }, - "thumbnail": "rbxassetid://14976470713", + "Tradable": false, }, - "configName": "Huge Kawaii Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.390Z", - "hashShort": "168e2b14f2ac6cc4", + "configName": "Deep Backrooms Crayon Key Lower Half", + "dateCreated": "2026-06-13T23:13:33.105Z", + "dateModified": "2026-06-27T16:05:56.934Z", + "hashShort": "0109c5c039cb4187", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976472430", - "huge": true, - "indexDesc": "Found in the Exclusive Meme Egg!", - "indexObtainable": true, - "name": "Huge Knife Cat", - "rarity": { - "Announce": true, + "Desc": "The lower half of a Daydream Key. Combine this with the upper half!", + "Discontinued": true, + "DisplayName": "Daydream Key: Lower Half", + "Icon": "rbxassetid://139706325040760", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976472648", + "Tradable": false, }, - "configName": "Huge Knife Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.376Z", - "hashShort": "4e3637fd77688fd5", + "configName": "Backrooms Crayon Key Lower Half", + "dateCreated": "2026-06-13T23:13:33.105Z", + "dateModified": "2026-06-27T16:05:56.929Z", + "hashShort": "b12b30b0a81993c4", }, { - "category": "Huge", - "collection": "Pets", + "category": "Discontinued", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976475436", - "huge": true, - "indexDesc": "Hatched from the 2023 St. Patrick's Event in PSX!", - "indexObtainable": false, - "name": "Huge Leprechaun Cat", - "rarity": { + "Desc": "Access locked deep backrooms for loot! Found in the DEEP backrooms!", + "Discontinued": true, + "DisplayName": "Deep Daydream Key", + "Icon": "rbxassetid://126994914192092", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Celestial", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 9, + "_id": "Celestial", "_script": null, }, - "thumbnail": "rbxassetid://14976475596", + "Tradable": false, }, - "configName": "Huge Leprechaun Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.375Z", - "hashShort": "5db2e473118e6f23", + "configName": "Deep Backrooms Crayon Key", + "dateCreated": "2026-06-13T23:13:33.104Z", + "dateModified": "2026-06-27T16:05:56.931Z", + "hashShort": "2ad47dee96c9d5ce", }, { - "category": "Huge", - "collection": "Pets", - "configData": { - "goldenThumbnail": "rbxassetid://14976477689", - "huge": true, - "indexDesc": "Hatched from the Tiki Egg in PSX!", - "indexObtainable": true, - "name": "Huge Luau Cat", - "rarity": { - "Announce": true, + "category": "Discontinued", + "collection": "MiscItems", + "configData": { + "Desc": "The upper half of a Daydream Key. Combine this with the lower half!", + "Discontinued": true, + "DisplayName": "Daydream Key: Upper Half", + "Icon": "rbxassetid://123141760879271", + "InventoryTags": [ + "Event", + ], + "Rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14976477787", + "Tradable": false, }, - "configName": "Huge Luau Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.370Z", - "hashShort": "9675d3f67b906a36", + "configName": "Backrooms Crayon Key Upper Half", + "dateCreated": "2026-06-13T23:13:33.112Z", + "dateModified": "2026-06-27T16:05:56.946Z", + "hashShort": "ba4e6154f2950394", }, { - "category": "Huge", - "collection": "Pets", + "category": "Event", + "collection": "MiscItems", "configData": { - "goldenThumbnail": "rbxassetid://14976485056", - "huge": true, - "indexDesc": "Found in one of the first non-tradable Exclusive Eggs!", - "indexObtainable": false, - "name": "Huge Lucky Cat", - "rarity": { + "Desc": "Earned in the Deep Backrooms. Spend it at the Deep Hunt Token Upgrade Machine!", + "DisplayName": "Deep Chest Token", + "Icon": "rbxassetid://80678728840926", + "InventoryTags": [ + "Event", + ], + "Rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://14976485216", + "Tradable": false, }, - "configName": "Huge Lucky Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.392Z", - "hashShort": "d1084d55e9c5fc9d", + "configName": "Deep Chest Token", + "dateCreated": "2026-06-20T16:08:19.354Z", + "dateModified": "2026-06-20T16:08:19.354Z", + "hashShort": "3abc98531b2687ee", }, + ], + "status": "ok", +} +`; + +exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` +{ + "data": [ { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976497513", + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in the Exclusive Neon Egg!", + "indexDesc": "Found in the Exclusive Cosmic Egg!", "indexObtainable": true, - "name": "Huge Neon Cat", + "name": "Huge Cosmic Axolotl", "rarity": { "Announce": true, "Color": null, @@ -74274,27 +77681,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976497661", + "thumbnail": "rbxassetid://15201636161", }, - "configName": "Huge Neon Cat", + "configName": "Huge Cosmic Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.387Z", - "hashShort": "9524458e0c63f9ea", + "dateModified": "2025-07-05T23:28:58.890Z", + "hashShort": "94b69c02a447bf48", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "balloon": true, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://14976505626", + "goldenThumbnail": "rbxassetid://15260480224", "huge": true, - "indexDesc": "Hatched from eggs in PSX!", - "indexObtainable": false, - "name": "Huge Orange Balloon Cat", - "preventGolden": true, + "indexDesc": "Found in the Exclusive Original Egg!", + "indexObtainable": true, + "name": "Huge Sleipnir", "rarity": { "Announce": true, "Color": null, @@ -74307,22 +77709,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976505912", + "thumbnail": "rbxassetid://15260480028", }, - "configName": "Huge Orange Balloon Cat", + "configName": "Huge Sleipnir", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.385Z", - "hashShort": "3a2af613b75b7e43", + "dateModified": "2025-07-05T23:28:58.898Z", + "hashShort": "27489c7bfa2e91ec", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976507026", + "goldenThumbnail": "rbxassetid://14976434355", "huge": true, - "indexDesc": "Earned from the 2023 Easter Event in PSX!", - "indexObtainable": false, - "name": "Huge Painted Cat", + "indexDesc": "Found in the Exclusive Original Egg!", + "indexObtainable": true, + "name": "Huge Floppa", "rarity": { "Announce": true, "Color": null, @@ -74335,22 +77737,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976507206", + "thumbnail": "rbxassetid://14976434470", }, - "configName": "Huge Painted Cat", + "configName": "Huge Floppa", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.388Z", - "hashShort": "2732c652c80c95c7", + "dateModified": "2025-07-05T23:28:58.900Z", + "hashShort": "7d79aa0df965ba8e", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976508831", + "goldenThumbnail": "rbxassetid://14976376743", "huge": true, - "indexDesc": "Hatched from 2023 Anniversary Gifts in PSX!", + "indexDesc": "Earned from Series 1 Collector Clips merch! [RARE]", "indexObtainable": true, - "name": "Huge Party Cat", + "name": "Huge Chest Mimic", "rarity": { "Announce": true, "Color": null, @@ -74363,22 +77765,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976508941", + "thumbnail": "rbxassetid://14976376935", }, - "configName": "Huge Party Cat", + "configName": "Huge Chest Mimic", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.386Z", - "hashShort": "201494bd64a13b43", + "dateModified": "2025-07-05T23:28:58.888Z", + "hashShort": "da343d7ba5b6d1a6", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976516168", + "goldenThumbnail": "rbxassetid://14976455275", "huge": true, - "indexDesc": "Earned from the Cinco de Mayo Event in PSX!", + "indexDesc": "Earned from the limited-time Hell Rock Event in PSX!", "indexObtainable": false, - "name": "Huge Piñata Cat", + "name": "Huge Hell Rock", "rarity": { "Announce": true, "Color": null, @@ -74391,22 +77793,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976516399", + "thumbnail": "rbxassetid://14976455394", }, - "configName": "Huge Pinata Cat", + "configName": "Huge Hell Rock", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.367Z", - "hashShort": "e69e9f36b3eb7907", + "dateModified": "2025-07-05T23:28:58.896Z", + "hashShort": "72ecaa5d7f2f16aa", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976517135", + "goldenThumbnail": "rbxassetid://14976423098", "huge": true, - "indexDesc": "Hatched from eggs in PSX!", - "indexObtainable": false, - "name": "Huge Pineapple Cat", + "indexDesc": "Comes with the Series 1 Grey Cat Collector Bundle!", + "indexObtainable": true, + "name": "Huge Enchanted Deer", "rarity": { "Announce": true, "Color": null, @@ -74419,22 +77821,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976517235", + "thumbnail": "rbxassetid://14976423228", }, - "configName": "Huge Pineapple Cat", + "configName": "Huge Enchanted Deer", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.388Z", - "hashShort": "81c81b113e93fef2", + "dateModified": "2025-07-05T23:28:58.895Z", + "hashShort": "e03208587ec8e50c", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976386012", + "fly": true, + "goldenThumbnail": "rbxassetid://15260482775", "huge": true, - "indexDesc": "Comes with the Corgi plush!", + "indexDesc": "Found in the Exclusive Capybara Egg!", "indexObtainable": true, - "name": "Huge Corgi", + "name": "Huge Cyborg Capybara", "rarity": { "Announce": true, "Color": null, @@ -74447,22 +77850,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976386115", + "thumbnail": "rbxassetid://15260482561", }, - "configName": "Huge Corgi", + "configName": "Huge Cyborg Capybara", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.391Z", - "hashShort": "0ea4a00f61c0a26a", + "dateModified": "2025-07-05T23:28:58.910Z", + "hashShort": "0c522fe08766b864", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://15281989771", + "fly": true, + "goldenThumbnail": "rbxassetid://14976518722", "huge": true, - "indexDesc": "Gifted to top 50 spenders on PSX!", + "indexDesc": "Hatched from eggs in PSX!", "indexObtainable": false, - "name": "Huge Crowned Corgi", + "name": "Huge Pirate Parrot", "rarity": { "Announce": true, "Color": null, @@ -74475,23 +77879,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15281989661", + "thumbnail": "rbxassetid://14976518880", }, - "configName": "Huge Crowned Corgi", + "configName": "Huge Pirate Parrot", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.366Z", - "hashShort": "e7fd9dd158754261", + "dateModified": "2025-07-05T23:28:58.912Z", + "hashShort": "3bd0de1d9f982d86", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976388332", - "hideSerial": true, + "goldenThumbnail": "rbxassetid://14976548178", "huge": true, - "indexDesc": "Found in the (Epic, Mythical) Series 1 Merch Gifts!", + "indexDesc": "Comes with the Series 1 Marbled Purple Iridescent Cat Collector Bundle!", "indexObtainable": true, - "name": "Huge Crystal Dog", + "name": "Huge Skeleton", "rarity": { "Announce": true, "Color": null, @@ -74504,23 +77907,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976388450", + "thumbnail": "rbxassetid://14976548258", }, - "configName": "Huge Crystal Dog", + "configName": "Huge Skeleton", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.378Z", - "hashShort": "bd256ce6d5b2c81b", + "dateModified": "2025-07-05T23:28:58.911Z", + "hashShort": "469621ca9e2be83b", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976389236", + "goldenThumbnail": "rbxassetid://14976375470", "huge": true, - "indexDesc": "Hatched from eggs in PSX!", - "indexObtainable": false, - "name": "Huge Cupid Corgi", + "indexDesc": "Comes with Series 1 Blue Iridescent Cat Collector Bundle!", + "indexObtainable": true, + "name": "Huge Cheerful Yeti", "rarity": { "Announce": true, "Color": null, @@ -74533,22 +77935,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976389349", + "thumbnail": "rbxassetid://14976375591", }, - "configName": "Huge Cupid Corgi", + "configName": "Huge Cheerful Yeti", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.379Z", - "hashShort": "1a1a9232ddd396a3", + "dateModified": "2025-07-05T23:28:58.911Z", + "hashShort": "1ced8b28f50b71c4", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976397595", + "fly": true, + "goldenThumbnail": "rbxassetid://15260480566", "huge": true, - "indexDesc": "Comes with the Dog plush!", + "indexDesc": "Comes with the Series 1 Red Chest Bundle!", "indexObtainable": true, - "name": "Huge Dog", + "name": "Huge Sapphire Phoenix", "rarity": { "Announce": true, "Color": null, @@ -74561,22 +77964,27 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976397743", + "thumbnail": "rbxassetid://15260480400", }, - "configName": "Huge Dog", + "configName": "Huge Sapphire Phoenix", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.553Z", - "hashShort": "a2ad5d162acb951e", + "dateModified": "2025-07-05T23:28:58.910Z", + "hashShort": "58cb8e0d9deecf54", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976420000", + "animations": { + "flyHeight": 1.5, + "spinZ": true, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://14976564417", "huge": true, - "indexDesc": "Found in the Christmas 2022 Stocking in PSX!", - "indexObtainable": true, - "name": "Huge Elf Dog", + "indexDesc": "Earned from the 2022 Summer Event in PSX!", + "indexObtainable": false, + "name": "Huge Sun Angelus", "rarity": { "Announce": true, "Color": null, @@ -74589,79 +77997,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976420144", + "thumbnail": "rbxassetid://14976564553", }, - "configName": "Huge Elf Dog", + "configName": "Huge Sun Angelus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.549Z", - "hashShort": "cdbb25cf1365ce68", + "dateModified": "2025-07-05T23:28:58.894Z", + "hashShort": "35cad161be066ed6", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "jelly": true, - "replacementPool": [ - [ - 1, - 0.5, - ], - [ - 2, - 0.2, - ], - [ - 3, - 0.15, - ], - [ - 4, - 0.1, - ], - [ - 5, - 0.05, - ], - ], - "replacements": [ - { - "desc": "Comes with a Coin inside! (50%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with Diamonds inside! (20%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with a Chest inside! (15%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with a Lucky Block inside! (10%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with a Maskot Pet inside! (5%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - ], - }, - "goldenThumbnail": "rbxassetid://14976465768", + "goldenThumbnail": "rbxassetid://14976541695", "huge": true, - "indexDesc": "Found in the Exclusive Jelly Egg!", - "indexObtainable": true, - "name": "Huge Jelly Corgi", + "indexDesc": "Hatched from eggs in PSX!", + "indexObtainable": false, + "name": "Huge Sandcastle Cat", "rarity": { "Announce": true, "Color": null, @@ -74674,23 +78025,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976465933", + "thumbnail": "rbxassetid://14976541813", }, - "configName": "Huge Jelly Corgi", + "configName": "Huge Sandcastle Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.549Z", - "hashShort": "8b4e00e280ce433c", + "dateModified": "2025-07-05T23:28:58.900Z", + "hashShort": "0685f91e4f2abc17", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976493213", - "hideSerial": true, + "goldenThumbnail": "rbxassetid://14976414951", "huge": true, - "indexDesc": "Found in the (Epic, Mythical) Series 1 Merch Gifts!", + "indexDesc": "Comes with the Ducky plush!", "indexObtainable": true, - "name": "Huge Mosaic Corgi", + "name": "Huge Ducky", "rarity": { "Announce": true, "Color": null, @@ -74703,22 +78053,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976493326", + "thumbnail": "rbxassetid://14976415577", }, - "configName": "Huge Mosaic Corgi", + "configName": "Huge Ducky", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.539Z", - "hashShort": "f07551071d300fd4", + "dateModified": "2025-07-05T23:28:58.909Z", + "hashShort": "d3322493c0acbdfa", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976509888", + "goldenThumbnail": "rbxassetid://14976491518", "huge": true, - "indexDesc": "Hatched from Hype Gifts in PSX!", + "indexDesc": "Comes with the Monkey plush!", "indexObtainable": true, - "name": "Huge Party Dog", + "name": "Huge Monkey", "rarity": { "Announce": true, "Color": null, @@ -74731,22 +78081,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976510103", + "thumbnail": "rbxassetid://14976491927", }, - "configName": "Huge Party Dog", + "configName": "Huge Monkey", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.547Z", - "hashShort": "4edb9d7d5a462ea7", + "dateModified": "2025-07-05T23:28:58.901Z", + "hashShort": "de25fb205b102823", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976519334", + "goldenThumbnail": "rbxassetid://14976357074", "huge": true, - "indexDesc": "Comes with Series 2 Pixel Corgi Collector Bundle!", + "indexDesc": "Comes with the Axolotl plush!", "indexObtainable": true, - "name": "Huge Pixel Corgi", + "name": "Huge Axolotl", "rarity": { "Announce": true, "Color": null, @@ -74759,22 +78109,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976519576", + "thumbnail": "rbxassetid://14976357246", }, - "configName": "Huge Pixel Corgi", + "configName": "Huge Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.549Z", - "hashShort": "732aba7666594e79", + "dateModified": "2025-07-05T23:28:58.896Z", + "hashShort": "35a2c1217ae1ff8a", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://15281988902", + "goldenThumbnail": "rbxassetid://14976456566", "huge": true, - "indexDesc": "Comes with the Reindeer Dog plush!", + "indexDesc": "Found in the Exclusive Fruit Egg!", "indexObtainable": true, - "name": "Huge Reindeer Dog", + "name": "Huge Hippomelon", "rarity": { "Announce": true, "Color": null, @@ -74787,22 +78137,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15281988831", + "thumbnail": "rbxassetid://14976456685", }, - "configName": "Huge Reindeer Dog", + "configName": "Huge Hippomelon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.540Z", - "hashShort": "a712d018763b3128", + "dateModified": "2025-07-05T23:28:58.891Z", + "hashShort": "823373865c1f5d23", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976538687", + "fly": true, + "goldenThumbnail": "rbxassetid://14976392440", "huge": true, - "indexDesc": "Earned from Scavanger Eggs in PSX!", - "indexObtainable": false, - "name": "Huge Safari Dog", + "indexDesc": "Comes with Series 2 Cyborg Dragon Collector Bundle!", + "indexObtainable": true, + "name": "Huge Cyborg Dragon", "rarity": { "Announce": true, "Color": null, @@ -74815,23 +78166,33 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976538804", + "thumbnail": "rbxassetid://14976392605", }, - "configName": "Huge Safari Dog", + "configName": "Huge Cyborg Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.544Z", - "hashShort": "d5003385a5fcbdf2", + "dateModified": "2025-07-05T23:28:58.898Z", + "hashShort": "0014b9c1e5aa4950", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://15281988331", + "animations": { + "flipbookAnimation": [ + "rbxassetid://12442921582", + "rbxassetid://12445580091", + ], + "flipbookAnimationGold": [ + "rbxassetid://12442921397", + "rbxassetid://12445579992", + ], + "flipbookAnimationSpeed": 0.15, + }, + "goldenThumbnail": "rbxassetid://14976525736", "huge": true, - "indexDesc": "Opened from the Halloween Gift in PSX!", + "indexDesc": "Found in the Exclusive Meme Egg!", "indexObtainable": true, - "name": "Huge Scary Corgi", + "name": "Huge Pop Cat", "rarity": { "Announce": true, "Color": null, @@ -74844,23 +78205,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15281988264", + "thumbnail": "rbxassetid://14976525879", }, - "configName": "Huge Scary Corgi", + "configName": "Huge Pop Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.547Z", - "hashShort": "79f497545f420e3f", + "dateModified": "2025-07-05T23:28:58.897Z", + "hashShort": "1e1a267e12160d16", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976565367", + "goldenThumbnail": "rbxassetid://14976527196", "huge": true, - "indexDesc": "Found in one of the first non-tradable Exclusive Eggs!", - "indexObtainable": false, - "name": "Huge Super Corgi", + "indexDesc": "Found in the Exclusive Elemental Egg!", + "indexObtainable": true, + "name": "Huge Prickly Panda", "rarity": { "Announce": true, "Color": null, @@ -74873,23 +78233,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976565468", + "thumbnail": "rbxassetid://14976527289", }, - "configName": "Huge Super Corgi", + "configName": "Huge Prickly Panda", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.556Z", - "hashShort": "064f88bec2e77208", + "dateModified": "2025-07-05T23:28:58.893Z", + "hashShort": "b43c1993ea0744bd", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976569286", - "hideSerial": true, + "fly": true, + "goldenThumbnail": "rbxassetid://14976546302", "huge": true, - "indexDesc": "Found in the (Rare, Mythical) Series 1 Merch Gifts!", + "indexDesc": "Found in the Lucky Block Merch!", "indexObtainable": true, - "name": "Huge Tiedye Corgi", + "name": "Huge Shadow Griffin", "rarity": { "Announce": true, "Color": null, @@ -74902,23 +78262,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976569398", + "thumbnail": "rbxassetid://14976546605", }, - "configName": "Huge Tiedye Corgi", + "configName": "Huge Shadow Griffin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.541Z", - "hashShort": "62d49beffbd22930", + "dateModified": "2025-07-05T23:28:58.902Z", + "hashShort": "315b91d235007e1c", }, { "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://14976435952", + "goldenThumbnail": "rbxassetid://14976567099", "huge": true, - "indexDesc": "Found in Digsite!", - "indexObtainable": true, - "name": "Huge Fossil Dragon", + "indexDesc": "Hatched during the 2022 Halloween Event in PSX!", + "indexObtainable": false, + "name": "Huge Grim Reaper", "rarity": { "Announce": true, "Color": null, @@ -74931,23 +78291,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976436145", + "thumbnail": "rbxassetid://14976567210", }, - "configName": "Huge Fossil Dragon", + "configName": "Huge Grim Reaper", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.551Z", - "hashShort": "3bc570c05990a4b9", + "dateModified": "2025-07-05T23:28:58.903Z", + "hashShort": "1a4ac54c76d8220a", }, { "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://15281990120", + "goldenThumbnail": "rbxassetid://14976478315", "huge": true, - "indexDesc": "Achievement reward!", - "indexObtainable": true, - "name": "Huge Angel Dog", + "indexDesc": "Earned from the Lucky Block Event in PSX!", + "indexObtainable": false, + "name": "Huge Lucki Agony", "rarity": { "Announce": true, "Color": null, @@ -74960,22 +78320,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15281990069", + "thumbnail": "rbxassetid://14976478543", }, - "configName": "Huge Angel Dog", + "configName": "Huge Lucki Agony", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.546Z", - "hashShort": "133324006b948c5a", + "dateModified": "2025-07-05T23:28:58.908Z", + "hashShort": "68702d3fa31480bf", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976450755", + "goldenThumbnail": "rbxassetid://14976510588", "huge": true, - "indexDesc": "Earned from the limited-time Happy Rock Event in PSX!", - "indexObtainable": false, - "name": "Huge Happy Rock", + "indexDesc": "Hatched from 2023 Anniversary Gifts in PSX!", + "indexObtainable": true, + "name": "Huge Party Monkey", "rarity": { "Announce": true, "Color": null, @@ -74988,23 +78348,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976450873", + "thumbnail": "rbxassetid://14976510684", }, - "configName": "Huge Happy Rock", + "configName": "Huge Party Monkey", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.553Z", - "hashShort": "c863a7fe3fcb0af2", + "dateModified": "2025-07-05T23:28:58.903Z", + "hashShort": "5f258e724d6b1aa7", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976574132", + "goldenThumbnail": "rbxassetid://15260481663", "huge": true, - "indexDesc": "Earned in the 2022 and 2023 Halloween Event in PSX!", - "indexObtainable": false, - "name": "Huge Vampire Bat", + "indexDesc": "Found in the Exclusive Neon Twilight Egg!", + "indexObtainable": true, + "name": "Huge Neon Twilight Wolf", "rarity": { "Announce": true, "Color": null, @@ -75017,23 +78376,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976574393", + "thumbnail": "rbxassetid://15260481429", }, - "configName": "Huge Vampire Bat", + "configName": "Huge Neon Twilight Wolf", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.542Z", - "hashShort": "3a871025ee0fd5eb", + "dateModified": "2025-07-05T23:28:58.894Z", + "hashShort": "c94b7959dd397ee9", }, { "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://15163489578", + "goldenThumbnail": "rbxassetid://15260481992", "huge": true, - "indexDesc": "Found in the Exclusive Dragon Egg!", + "indexDesc": "Found in the Exclusive Neon Twilight Egg!", "indexObtainable": true, - "name": "Huge Celestial Dragon", + "name": "Huge Neon Twilight Dragon", "rarity": { "Announce": true, "Color": null, @@ -75046,23 +78405,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15163489240", + "thumbnail": "rbxassetid://15260481819", }, - "configName": "Huge Celestial Dragon", + "configName": "Huge Neon Twilight Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.540Z", - "hashShort": "af6dcc5205d374ab", + "dateModified": "2025-07-05T23:28:58.903Z", + "hashShort": "8136072c467920a9", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://15163489798", + "goldenThumbnail": "rbxassetid://14976386395", "huge": true, - "indexDesc": "Found in the Exclusive Dragon Egg!", + "indexDesc": "Found in the Lucky Block Merch!", "indexObtainable": true, - "name": "Huge Unicorn Dragon", + "name": "Huge Cow", "rarity": { "Announce": true, "Color": null, @@ -75075,22 +78433,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15163489495", + "thumbnail": "rbxassetid://14976386456", }, - "configName": "Huge Unicorn Dragon", + "configName": "Huge Cow", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.542Z", - "hashShort": "6eb3cd4b16aa3e4b", + "dateModified": "2025-07-05T23:28:58.894Z", + "hashShort": "12a22ff5d13d3faf", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976442477", + "fly": true, + "goldenThumbnail": "rbxassetid://14976520596", "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", + "indexDesc": "Comes with Series 2 Ultimate Bundle Pixel Chest!", "indexObtainable": true, - "name": "Huge Giraffe", + "name": "Huge Pixel Dragon", "rarity": { "Announce": true, "Color": null, @@ -75103,22 +78462,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976442623", + "thumbnail": "rbxassetid://14976521054", }, - "configName": "Huge Giraffe", + "configName": "Huge Pixel Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.550Z", - "hashShort": "6c1def137c7dd831", + "dateModified": "2025-07-05T23:28:58.892Z", + "hashShort": "fd71ef4de02019aa", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976533174", + "goldenThumbnail": "rbxassetid://14976539918", "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets and tied to the Huge Plush merch in stores!", + "indexDesc": "Hatched from the Sailor Egg in PSX!", "indexObtainable": true, - "name": "Huge Red Panda", + "name": "Huge Sailor Shark", "rarity": { "Announce": true, "Color": null, @@ -75131,22 +78490,25 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976533293", + "thumbnail": "rbxassetid://14976540139", }, - "configName": "Huge Red Panda", + "configName": "Huge Sailor Shark", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.557Z", - "hashShort": "c6b9edcaf65b2db3", + "dateModified": "2025-07-05T23:28:58.892Z", + "hashShort": "6e4c6ad7e177b115", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976489368", + "animations": { + "ballBounceHeight": 5, + }, + "goldenThumbnail": "rbxassetid://14976360144", "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", - "indexObtainable": true, - "name": "Huge Mermaid Cat", + "indexDesc": "Hatched from eggs in PSX!", + "indexObtainable": false, + "name": "Huge Basketball Retriever", "rarity": { "Announce": true, "Color": null, @@ -75159,22 +78521,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976489487", + "thumbnail": "rbxassetid://14976360269", }, - "configName": "Huge Mermaid Cat", + "configName": "Huge Basketball Retriever", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.540Z", - "hashShort": "604e642b2245d612", + "dateModified": "2025-07-05T23:28:58.909Z", + "hashShort": "8714212af36b3e6c", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976387204", + "fly": true, + "goldenThumbnail": "rbxassetid://14976478194", "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", - "indexObtainable": true, - "name": "Huge Crocodile", + "indexDesc": "Earned from the Lucky Block Event in PSX!", + "indexObtainable": false, + "name": "Huge Lucki", "rarity": { "Announce": true, "Color": null, @@ -75187,22 +78550,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976387300", + "thumbnail": "rbxassetid://14976484952", }, - "configName": "Huge Crocodile", + "configName": "Huge Lucki", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.548Z", - "hashShort": "acf225eac17ca7ca", + "dateModified": "2025-07-05T23:28:58.901Z", + "hashShort": "87727700ced664b2", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976362247", + "goldenThumbnail": "rbxassetid://14976557539", + "hideSerial": true, "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", + "indexDesc": "Found in the (Legendary, Mythical) Series 2 Merch Gifts!", "indexObtainable": true, - "name": "Huge Bearserker", + "name": "Huge Stealth Bobcat", "rarity": { "Announce": true, "Color": null, @@ -75215,28 +78579,25 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976362435", + "thumbnail": "rbxassetid://14976557639", }, - "configName": "Huge Bearserker", + "configName": "Huge Stealth Bobcat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.543Z", - "hashShort": "aa0a673dc5b77ede", + "dateModified": "2025-07-05T23:28:58.908Z", + "hashShort": "cb72c723c2478b63", }, { "category": "Huge", "collection": "Pets", "configData": { "animations": { - "swerve": true, - "swerveAggression": 1, - "swerveMaxAngle": 60, + "hybridFly": true, }, - "fly": true, - "goldenThumbnail": "rbxassetid://15340315690", + "goldenThumbnail": "rbxassetid://14976351858", "huge": true, - "indexDesc": "Earned from the Spinny Wheel!", + "indexDesc": "Found in the Exclusive Anime Egg!", "indexObtainable": true, - "name": "Huge Propeller Cat", + "name": "Huge Anime Unicorn", "rarity": { "Announce": true, "Color": null, @@ -75249,22 +78610,25 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15340315459", + "thumbnail": "rbxassetid://14976352077", }, - "configName": "Huge Propeller Cat", + "configName": "Huge Anime Unicorn", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.538Z", - "hashShort": "075af22ceed7e0d5", + "dateModified": "2025-07-05T23:28:58.912Z", + "hashShort": "d25cbd1659440682", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://15477703494", + "animations": { + "hybridFly": true, + }, + "goldenThumbnail": "rbxassetid://14976351221", "huge": true, - "indexDesc": "Earned through fishing!", + "indexDesc": "Found in the Exclusive Anime Egg!", "indexObtainable": true, - "name": "Huge Poseidon Corgi", + "name": "Huge Anime Agony", "rarity": { "Announce": true, "Color": null, @@ -75277,22 +78641,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15477703422", + "thumbnail": "rbxassetid://14976351312", }, - "configName": "Huge Poseidon Corgi", + "configName": "Huge Anime Agony", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.558Z", - "hashShort": "f05e4f258d6dfa45", + "dateModified": "2025-07-05T23:28:58.907Z", + "hashShort": "66e311e5d753e905", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://15480654604", + "goldenThumbnail": "rbxassetid://14976546759", "huge": true, - "indexDesc": "Found in Chest Rush minigame!", + "indexDesc": "Found in the Lucky Block Merch!", "indexObtainable": true, - "name": "Huge Fire Horse", + "name": "Huge Shark", "rarity": { "Announce": true, "Color": null, @@ -75305,27 +78669,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15480654527", + "thumbnail": "rbxassetid://14976546876", }, - "configName": "Huge Fire Horse", + "configName": "Huge Shark", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.542Z", - "hashShort": "bd077b5c2f695a49", + "dateModified": "2025-07-05T23:28:58.905Z", + "hashShort": "fdfc0f2f6c9b7f82", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.3, - "flyHeightChange": 0.25, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://15542598865", + "goldenThumbnail": "rbxassetid://14976566586", "huge": true, - "indexDesc": "Comes with the exclusive Pet Rugs merch!", + "indexDesc": "Comes with the Series 1 Blue Chest Bundle!", "indexObtainable": true, - "name": "Huge Hoverboard Cat", + "name": "Huge Techno Cat", "rarity": { "Announce": true, "Color": null, @@ -75338,22 +78697,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15542598827", + "thumbnail": "rbxassetid://14976566707", }, - "configName": "Huge Hoverboard Cat", + "configName": "Huge Techno Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.558Z", - "hashShort": "8070b1d4311e346c", + "dateModified": "2025-07-05T23:28:58.904Z", + "hashShort": "454b671265d75790", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://15634002856", + "fly": true, + "goldenThumbnail": "rbxassetid://14976487383", "huge": true, - "indexDesc": "Found in the Exclusive Fruit Egg!", + "indexDesc": "Found in Series 2 Core 1-Packs! [RARE]", "indexObtainable": true, - "name": "Huge Strawberry Corgi", + "name": "Huge Masked Owl", "rarity": { "Announce": true, "Color": null, @@ -75366,22 +78726,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15634002728", + "thumbnail": "rbxassetid://14976487652", }, - "configName": "Huge Strawberry Corgi", + "configName": "Huge Masked Owl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.558Z", - "hashShort": "47536cea5cd6e481", + "dateModified": "2025-07-05T23:28:58.889Z", + "hashShort": "914149a8f209e695", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://15637230140", + "goldenThumbnail": "rbxassetid://14976538517", "huge": true, - "indexDesc": "Reward in the 2023 Festive Clan Battle!", - "indexObtainable": true, - "name": "Huge Present Cat", + "indexDesc": "Earned from Scavanger Eggs in PSX!", + "indexObtainable": false, + "name": "Huge Safari Cat", "rarity": { "Announce": true, "Color": null, @@ -75394,22 +78754,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15637230004", + "thumbnail": "rbxassetid://14976538607", }, - "configName": "Huge Present Cat", + "configName": "Huge Safari Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.548Z", - "hashShort": "053e36223aa7c9f6", + "dateModified": "2025-07-05T23:28:58.889Z", + "hashShort": "54743efae6617691", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976579654", + "goldenThumbnail": "rbxassetid://15281989570", "huge": true, - "indexDesc": "Found in the Crystal Chest!", - "indexObtainable": true, - "name": "Huge Wizard Westie", + "indexDesc": "Gifted to top 10 spenders on PSX!", + "indexObtainable": false, + "name": "Huge Crowned Pegasus", "rarity": { "Announce": true, "Color": null, @@ -75422,22 +78782,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976579774", + "thumbnail": "rbxassetid://15281989490", }, - "configName": "Huge Wizard Westie", + "configName": "Huge Crowned Pegasus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.545Z", - "hashShort": "ac8f56760ea4333c", + "dateModified": "2025-07-05T23:28:59.063Z", + "hashShort": "3da69ee4be391737", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976469002", + "fly": true, + "goldenThumbnail": "rbxassetid://15281988773", "huge": true, - "indexDesc": "Found in the 2023 Titanic Present!", + "indexDesc": "Comes with the Santa Dragon plush!", "indexObtainable": true, - "name": "Huge Jolly Narwhal", + "name": "Huge Santa Dragon", "rarity": { "Announce": true, "Color": null, @@ -75450,23 +78811,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976825062", + "thumbnail": "rbxassetid://15281988711", }, - "configName": "Huge Jolly Narwhal", + "configName": "Huge Santa Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.548Z", - "hashShort": "a6ea45ef2cd16d35", + "dateModified": "2025-07-05T23:28:59.062Z", + "hashShort": "e7f6c3e525d4002c", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://15716049676", + "goldenThumbnail": "rbxassetid://15281988633", "huge": true, - "indexDesc": "Found in the Exclusive Xmas Egg!", + "indexDesc": "Comes with the Santa Monkey plush!", "indexObtainable": true, - "name": "Huge Holiday Pegasus", + "name": "Huge Santa Monkey", "rarity": { "Announce": true, "Color": null, @@ -75479,26 +78839,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15716049550", + "thumbnail": "rbxassetid://15281988558", }, - "configName": "Huge Holiday Pegasus", + "configName": "Huge Santa Monkey", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.538Z", - "hashShort": "4599ab728fc6d0c7", + "dateModified": "2025-07-05T23:28:59.054Z", + "hashShort": "f2b8dbd20983c330", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - }, "fly": true, - "goldenThumbnail": "rbxassetid://15716049351", + "goldenThumbnail": "rbxassetid://15281988492", "huge": true, - "indexDesc": "Found in the Exclusive Xmas Egg!", + "indexDesc": "Opened from the Halloween Gift in PSX!", "indexObtainable": true, - "name": "Huge Peppermint Angelus", + "name": "Huge Scary Cat", "rarity": { "Announce": true, "Color": null, @@ -75511,23 +78868,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15716049163", + "thumbnail": "rbxassetid://15281988446", }, - "configName": "Huge Peppermint Angelus", + "configName": "Huge Scary Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.537Z", - "hashShort": "0132a3c0d12ec3ca", + "dateModified": "2025-07-05T23:28:59.063Z", + "hashShort": "07112b44e981c68d", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://15809136979", + "goldenThumbnail": "rbxassetid://15281989183", "huge": true, - "indexDesc": "Reward in the 2024 New Year's Clan Battle!", + "indexDesc": "Comes with the Reindeer Axolotl plush!", "indexObtainable": true, - "name": "Huge Owl", + "name": "Huge Reindeer Axolotl", "rarity": { "Announce": true, "Color": null, @@ -75540,22 +78896,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15809137117", + "thumbnail": "rbxassetid://15281989034", }, - "configName": "Huge Owl", + "configName": "Huge Reindeer Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.550Z", - "hashShort": "32091868375cff5f", + "dateModified": "2025-07-05T23:28:59.062Z", + "hashShort": "f1d6910e746fa2f6", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://15803982279", + "goldenThumbnail": "rbxassetid://15199736147", "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", - "indexObtainable": true, - "name": "Huge Fluffy Cat", + "indexDesc": "Earned from 2022 Christmas Event in PSX!", + "indexObtainable": false, + "name": "Huge Snowman", "rarity": { "Announce": true, "Color": null, @@ -75568,22 +78924,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15803982174", + "thumbnail": "rbxassetid://15199736050", }, - "configName": "Huge Fluffy Cat", + "configName": "Huge Snowman", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.551Z", - "hashShort": "5d901021a224a98a", + "dateModified": "2025-07-05T23:28:59.054Z", + "hashShort": "8c16bd0ed73d2509", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://15803989875", + "goldenThumbnail": "rbxassetid://14976469443", "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", - "indexObtainable": true, - "name": "Huge Zebra", + "indexDesc": "Hatched from the 2022 Christmas Event in PSX!", + "indexObtainable": false, + "name": "Huge Jolly Penguin", "rarity": { "Announce": true, "Color": null, @@ -75596,22 +78952,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15803989668", + "thumbnail": "rbxassetid://14976469674", }, - "configName": "Huge Zebra", + "configName": "Huge Jolly Penguin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.545Z", - "hashShort": "2d528f945f4c70b1", + "dateModified": "2025-07-05T23:28:59.052Z", + "hashShort": "4e72bd0b0c9e45da", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://15804001569", + "goldenThumbnail": "rbxassetid://14976361752", "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", + "indexDesc": "Found in the Lucky Block Merch!", "indexObtainable": true, - "name": "Huge Robber Pug", + "name": "Huge Bear", "rarity": { "Announce": true, "Color": null, @@ -75624,22 +78980,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15804001482", + "thumbnail": "rbxassetid://14976361884", }, - "configName": "Huge Robber Pug", + "configName": "Huge Bear", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.544Z", - "hashShort": "ce1be6d1c05e76e6", + "dateModified": "2025-07-05T23:28:59.051Z", + "hashShort": "1e962fe2f7f9e789", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://15804006428", + "goldenThumbnail": "rbxassetid://14976494731", "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", - "indexObtainable": true, - "name": "Huge Knight Beagle", + "indexDesc": "Hatched from eggs in the 2022 Christmas Event PSX!", + "indexObtainable": false, + "name": "Huge Mrs. Claws", "rarity": { "Announce": true, "Color": null, @@ -75652,22 +79008,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15804006339", + "thumbnail": "rbxassetid://14976494867", }, - "configName": "Huge Knight Beagle", + "configName": "Huge Mrs. Claws", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.546Z", - "hashShort": "67288597ff29a552", + "dateModified": "2025-07-05T23:28:59.072Z", + "hashShort": "f86539f1500a5dcf", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://15804010470", + "goldenThumbnail": "rbxassetid://14976526959", "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", + "indexDesc": "Found in the Exclusive Jolly Egg!", "indexObtainable": true, - "name": "Huge Shadow Dominus", + "name": "Huge Present Chest Mimic", "rarity": { "Announce": true, "Color": null, @@ -75680,22 +79036,26 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15804010569", + "thumbnail": "rbxassetid://14976527111", }, - "configName": "Huge Shadow Dominus", + "configName": "Huge Present Chest Mimic", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.539Z", - "hashShort": "813481e200618480", + "dateModified": "2025-07-05T23:28:59.069Z", + "hashShort": "30a18b4a18415512", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://16029125841", + "animations": { + "balloon": true, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://14976357920", "huge": true, - "indexDesc": "Reward in the 2024 Pet Collecting Battle!", + "indexDesc": "Found in the Exclusive Balloon Egg!", "indexObtainable": true, - "name": "Huge Sensei Penguin", + "name": "Huge Balloon Axolotl", "rarity": { "Announce": true, "Color": null, @@ -75708,69 +79068,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16029125715", + "thumbnail": "rbxassetid://14976358125", }, - "configName": "Huge Sensei Penguin", + "configName": "Huge Balloon Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.541Z", - "hashShort": "17414589190d3b1d", + "dateModified": "2025-07-05T23:28:59.060Z", + "hashShort": "906f6b3596cfa3f4", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "customAnimations": true, - "fadeFrames": [ - { - "duration": 3, - "iconThumbnail": "rbxassetid://16047450864", - "instant": true, - "textureName": "frame1", - }, - { - "duration": 1, - "iconThumbnail": "rbxassetid://16047451474", - "instant": true, - "textureName": "frame2", - }, - { - "duration": 1, - "iconThumbnail": "rbxassetid://16047451214", - "instant": true, - "textureName": "frame3", - }, - { - "duration": 5, - "iconThumbnail": "rbxassetid://16047451035", - "instant": true, - "textureName": "frame4", - }, - { - "duration": 1, - "iconThumbnail": "rbxassetid://16047451214", - "instant": true, - "textureName": "frame3", - }, - { - "duration": 1, - "iconThumbnail": "rbxassetid://16047451474", - "instant": true, - "textureName": "frame2", - }, - ], - "idleActionAnimations": [ - [ - "LookAround", - 0.6, - ], - ], - }, - "goldenThumbnail": "rbxassetid://16044352051", + "goldenThumbnail": "rbxassetid://14976509358", "huge": true, - "indexDesc": "Found in the Exclusive Emoji Egg!", + "indexDesc": "Hatched from 2023 New Year's Gifts in PSX and 2024 New Year's Gifts in PS99!", "indexObtainable": true, - "name": "Huge Emoji Cat", + "name": "Huge Party Crown Ducky", "rarity": { "Announce": true, "Color": null, @@ -75783,45 +79096,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16047450864", + "thumbnail": "rbxassetid://14976509521", }, - "configName": "Huge Emoji Cat", + "configName": "Huge Party Crown Ducky", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.547Z", - "hashShort": "a4ca835772db0904", + "dateModified": "2025-07-05T23:28:59.069Z", + "hashShort": "ac6f1d8201128ee5", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "customAnimations": true, - "fadeFrames": [ - { - "duration": 2, - "iconThumbnail": "rbxassetid://16047450351", - "instant": true, - "textureName": "frame1", - }, - { - "duration": 3, - "iconThumbnail": "rbxassetid://16047450651", - "instant": true, - "textureName": "frame2", - }, - ], - "idleActionAnimations": [ - [ - "MonkeyBackflip", - 1, - ], - ], - }, - "goldenThumbnail": "rbxassetid://16044355802", + "fly": true, + "goldenThumbnail": "rbxassetid://14976479062", "huge": true, - "indexDesc": "Found in the Exclusive Emoji Egg!", - "indexObtainable": true, - "name": "Huge Emoji Monkey", + "indexDesc": "Hatched from eggs in PSX!", + "indexObtainable": false, + "name": "Huge Lucki Dominus", "rarity": { "Announce": true, "Color": null, @@ -75834,22 +79125,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16047450351", + "thumbnail": "rbxassetid://14976479237", }, - "configName": "Huge Emoji Monkey", + "configName": "Huge Dominus Lucki", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.555Z", - "hashShort": "5f04599d9a3798a2", + "dateModified": "2025-07-05T23:28:59.068Z", + "hashShort": "d8a5d7aa47b939b7", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14977567555", - "indexDesc": "Comes with the Titanic Scary Corgi plush!", + "goldenThumbnail": "rbxassetid://14976506504", + "huge": true, + "indexDesc": "Found in the Lucky Block Merch!", "indexObtainable": true, - "name": "Titanic Scary Corgi", + "name": "Huge Otter", "rarity": { "Announce": true, "Color": null, @@ -75862,29 +79153,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976669980", - "titanic": true, + "thumbnail": "rbxassetid://14976506594", }, - "configName": "Titanic Scary Corgi", + "configName": "Huge Otter", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.104Z", - "hashShort": "678cb69c1a2f67ee", + "dateModified": "2025-07-05T23:28:59.076Z", + "hashShort": "27dcf071dfc95b05", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "balloon": true, - "ridingCameraOffset": null, - "ridingGravity": 65.3346, - "ridingJumpPower": 52.5, - }, "fly": true, - "goldenThumbnail": "rbxassetid://11970074726", - "indexDesc": "Found in the Exclusive Balloon Egg!", + "goldenThumbnail": "rbxassetid://14976541105", + "huge": true, + "indexDesc": "Found in the Lucky Block Merch!", "indexObtainable": true, - "name": "Titanic Balloon Monkey", + "name": "Huge Samurai Dragon", "rarity": { "Announce": true, "Color": null, @@ -75897,22 +79182,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976586764", - "titanic": true, + "thumbnail": "rbxassetid://14976541241", }, - "configName": "Titanic Balloon Monkey", + "configName": "Huge Samurai Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.103Z", - "hashShort": "1ed45773b51756ea", + "dateModified": "2025-07-05T23:28:59.060Z", + "hashShort": "4392317145f504f5", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14977533744", - "indexDesc": "Comes with the Titanic Hippomelon plush!", + "goldenThumbnail": "rbxassetid://14976573095", + "huge": true, + "indexDesc": "Found in the Lucky Block Merch!", "indexObtainable": true, - "name": "Titanic Hippomelon", + "name": "Huge Unicorn", "rarity": { "Announce": true, "Color": null, @@ -75925,23 +79210,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976631515", - "titanic": true, + "thumbnail": "rbxassetid://14976573179", }, - "configName": "Titanic Hippomelon", + "configName": "Huge Unicorn", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.105Z", - "hashShort": "e0a7d685ad47061c", + "dateModified": "2025-07-05T23:28:59.056Z", + "hashShort": "3f1c924a350455f8", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://12224913519", - "indexDesc": "Found in the Exclusive Neon Egg!", + "goldenThumbnail": "rbxassetid://14976414382", + "huge": true, + "indexDesc": "Comes with Series 2 6-Pack Eggs! [RARE]", "indexObtainable": true, - "name": "Titanic Neon Agony", + "name": "Huge Dove", "rarity": { "Announce": true, "Color": null, @@ -75954,22 +79239,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976647939", - "titanic": true, + "thumbnail": "rbxassetid://14976414513", }, - "configName": "Titanic Neon Agony", + "configName": "Huge Dove", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.096Z", - "hashShort": "7a37b3a7e2b294bb", + "dateModified": "2025-07-05T23:28:59.072Z", + "hashShort": "e15be181fde7d4c9", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://12422515522", - "indexDesc": "Found in the Exclusive Meme Egg!", + "goldenThumbnail": "rbxassetid://14976555554", + "huge": true, + "indexDesc": "Comes with the Series 1 Dragon Collector Bundle!", "indexObtainable": true, - "name": "Titanic Hubert", + "name": "Huge Squirrel", "rarity": { "Announce": true, "Color": null, @@ -75982,23 +79267,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976633736", - "titanic": true, + "thumbnail": "rbxassetid://14976555755", }, - "configName": "Titanic Hubert", + "configName": "Huge Squirrel", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.082Z", - "hashShort": "3e71eb49dd17c1fd", + "dateModified": "2025-07-05T23:28:59.073Z", + "hashShort": "d6e56c16ef87b3d5", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Cosmic Egg!", - "indexObtainable": true, - "name": "Titanic Cosmic Pegasus", + "goldenThumbnail": "rbxassetid://14976371907", + "huge": true, + "indexDesc": "Earned from an egg event in PSX!", + "indexObtainable": false, + "name": "Huge Butterfly", "rarity": { "Announce": true, "Color": null, @@ -76011,23 +79296,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15201628877", - "titanic": true, + "thumbnail": "rbxassetid://14976372228", }, - "configName": "Titanic Cosmic Pegasus", + "configName": "Huge Butterfly", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.243Z", - "hashShort": "87398dfc7b0815e1", + "dateModified": "2025-07-05T23:28:59.055Z", + "hashShort": "45dcce2b60a25c02", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://14977542134", - "indexDesc": "Comes with the Titanic Lucki plush!", + "goldenThumbnail": "rbxassetid://14976498154", + "huge": true, + "indexDesc": "Found in the Exclusive Neon Egg!", "indexObtainable": true, - "name": "Titanic Lucki", + "name": "Huge Neon Griffin", "rarity": { "Announce": true, "Color": null, @@ -76040,22 +79325,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976642572", - "titanic": true, + "thumbnail": "rbxassetid://14976498238", }, - "configName": "Titanic Lucki", + "configName": "Huge Neon Griffin", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.251Z", - "hashShort": "ab42ecc92667bd2a", + "dateModified": "2025-07-05T23:28:59.059Z", + "hashShort": "109669eb65015ba5", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14977493695", - "indexDesc": "Comes with the Titanic Capybara plush!", - "indexObtainable": true, - "name": "Titanic Capybara", + "fly": true, + "goldenThumbnail": "rbxassetid://14976404659", + "huge": true, + "indexDesc": "Hatched from eggs in PSX!", + "indexObtainable": false, + "name": "Huge Doodle Fairy", "rarity": { "Announce": true, "Color": null, @@ -76068,22 +79354,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976593327", - "titanic": true, + "thumbnail": "rbxassetid://14976404766", }, - "configName": "Titanic Capybara", + "configName": "Huge Doodle Fairy", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.234Z", - "hashShort": "4f4b1a305983a0b8", + "dateModified": "2025-07-05T23:28:59.055Z", + "hashShort": "c5232276aa0da713", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14977504373", - "indexDesc": "Found in the Exclusive Dominus Egg!", + "fly": true, + "goldenThumbnail": "rbxassetid://14976527711", + "huge": true, + "indexDesc": "Found in the Huge Machine Angelus Egg!", "indexObtainable": true, - "name": "Titanic Dominus Astra", + "name": "Huge Pterodactyl", "rarity": { "Announce": true, "Color": null, @@ -76096,22 +79383,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976605624", - "titanic": true, + "thumbnail": "rbxassetid://14976527837", }, - "configName": "Titanic Dominus Astra", + "configName": "Huge Pterodactyl", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.234Z", - "hashShort": "b714415a8cbd2bba", + "dateModified": "2025-07-05T23:28:59.058Z", + "hashShort": "ea2fb6af43977c2a", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14977490217", - "indexDesc": "Comes with the Titanic Blobfish plush!", + "goldenThumbnail": "rbxassetid://14976506229", + "huge": true, + "indexDesc": "Found in the Huge Machine Angelus Egg!", "indexObtainable": true, - "name": "Titanic Blobfish", + "name": "Huge Orca", "rarity": { "Announce": true, "Color": null, @@ -76124,31 +79411,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976589636", - "titanic": true, + "thumbnail": "rbxassetid://14976506366", }, - "configName": "Titanic Blobfish", + "configName": "Huge Orca", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.247Z", - "hashShort": "6c4dee28252eed21", + "dateModified": "2025-07-05T23:28:59.067Z", + "hashShort": "ccab3c314184fe15", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 2.2, - "ridingCameraOffset": null, - "ridingGravity": 65.3346, - "spin": true, - "swerve": true, - "swerveMaxAngle": 45, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://14977486389", - "indexDesc": "Found in the Exclusive Atlantean Egg!", + "goldenThumbnail": "rbxassetid://14976375270", + "huge": true, + "indexDesc": "Found in the Huge Machine Angelus Egg!", "indexObtainable": true, - "name": "Titanic Atlantean Jellyfish", + "name": "Huge Chameleon", "rarity": { "Announce": true, "Color": null, @@ -76161,23 +79439,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976584980", - "titanic": true, + "thumbnail": "rbxassetid://14976375382", }, - "configName": "Titanic Atlantean Jellyfish", + "configName": "Huge Chameleon", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.250Z", - "hashShort": "c86141710f0bda2e", + "dateModified": "2025-07-05T23:28:59.075Z", + "hashShort": "90fe55fce1bbef0b", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14977487931", - "hideExists": true, - "indexDesc": "Tied to the Banana Shoulder Pet Roblox limited!", + "goldenThumbnail": "rbxassetid://14976472084", + "huge": true, + "indexDesc": "Found in the Huge Machine Angelus Egg!", "indexObtainable": true, - "name": "Titanic Banana", + "name": "Huge King Cobra", "rarity": { "Announce": true, "Color": null, @@ -76190,31 +79467,27 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976586993", - "titanic": true, - "tradable": false, - "ugc": true, + "thumbnail": "rbxassetid://14976472289", }, - "configName": "Titanic Banana", + "configName": "Huge King Cobra", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.244Z", - "hashShort": "f33d812f811b7680", + "dateModified": "2025-07-05T23:28:59.062Z", + "hashShort": "b5cfbfb59a413778", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { "animations": { - "balloon": true, - "ridingCameraOffset": null, - "ridingGravity": 65.3346, - "ridingJumpPower": 52.5, + "flyHeight": 1.5, + "spinZ": true, }, "fly": true, - "goldenThumbnail": "rbxassetid://12292639155", - "indexDesc": "Comes with the Titanic Blue Balloon Cat plush!", + "goldenThumbnail": "rbxassetid://14976350736", + "huge": true, + "indexDesc": "Found in the Huge Machine Angelus Egg!", "indexObtainable": true, - "name": "Titanic Blue Balloon Cat", + "name": "Huge Angelus", "rarity": { "Announce": true, "Color": null, @@ -76227,23 +79500,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976589786", - "titanic": true, + "thumbnail": "rbxassetid://14976350830", }, - "configName": "Titanic Blue Balloon Cat", + "configName": "Huge Angelus", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.252Z", - "hashShort": "6a244b51795b7a84", + "dateModified": "2025-07-05T23:28:59.065Z", + "hashShort": "c49e383b1722887b", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://15547850879", - "indexDesc": "Comes with the Titanic Tiedye Dragon plush!", - "indexObtainable": true, - "name": "Titanic Tiedye Dragon", + "goldenThumbnail": "rbxassetid://14976514126", + "huge": true, + "indexDesc": "Earned from Free Gifts in PSX!", + "indexObtainable": false, + "name": "Huge Peacock", "rarity": { "Announce": true, "Color": null, @@ -76256,22 +79528,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15547792197", - "titanic": true, + "thumbnail": "rbxassetid://14976514269", }, - "configName": "Titanic Tiedye Dragon", + "configName": "Huge Peacock", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.249Z", - "hashShort": "477d1f9625e475fc", + "dateModified": "2025-07-05T23:28:59.073Z", + "hashShort": "d2d63994468fb7fa", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14977494107", - "indexDesc": "From limited-time event on PSX!", - "indexObtainable": false, - "name": "Titanic Cat", + "goldenThumbnail": "rbxassetid://14976508540", + "huge": true, + "indexDesc": "Hatched from Hype Gifts in PSX!", + "indexObtainable": true, + "name": "Huge Party Axolotl", "rarity": { "Announce": true, "Color": null, @@ -76284,29 +79556,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976594978", - "titanic": true, + "thumbnail": "rbxassetid://14976508713", }, - "configName": "Titanic Cat", + "configName": "Huge Party Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.249Z", - "hashShort": "776e84b2a36fa06d", + "dateModified": "2025-07-05T23:28:59.056Z", + "hashShort": "462f2f6300a83598", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 2, - "flyHeightChange": 0, - "ridingCameraOffset": null, - "ridingTransparency": 0.75, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://14977533986", - "indexDesc": "Found in the Exclusive Hologram Egg!", + "goldenThumbnail": "rbxassetid://14976533446", + "huge": true, + "indexDesc": "Found in the Exclusive Crystal Egg!", "indexObtainable": true, - "name": "Titanic Hologram Cat", + "name": "Huge Redstone Cat", "rarity": { "Announce": true, "Color": null, @@ -76319,28 +79584,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976631845", - "titanic": true, + "thumbnail": "rbxassetid://14976533671", }, - "configName": "Titanic Hologram Cat", + "configName": "Huge Redstone Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.234Z", - "hashShort": "108bdf5fcea33779", + "dateModified": "2025-07-05T23:28:59.068Z", + "hashShort": "4237e56fd2109d72", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "boneFlyingAnimation": "rbxassetid://15696174011", - "ridingCameraOffset": null, - }, - "fly": true, - "flyingTitanic": true, - "goldenThumbnail": "rbxassetid://15687351161", - "indexDesc": "Found in the 2023 Titanic Present & Exclusive Xmas Egg!", + "goldenThumbnail": "rbxassetid://14976355402", + "huge": true, + "indexDesc": "Found in the Exclusive Atlantean Egg!", "indexObtainable": true, - "name": "Titanic Silver Dragon", + "name": "Huge Atlantean Orca", "rarity": { "Announce": true, "Color": null, @@ -76353,22 +79612,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15687351099", - "titanic": true, + "thumbnail": "rbxassetid://14976355521", }, - "configName": "Titanic Silver Dragon", + "configName": "Huge Atlantean Orca", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.237Z", - "hashShort": "9c69bc9a170310f2", + "dateModified": "2025-07-05T23:28:59.061Z", + "hashShort": "8060a3ea23181a74", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://17787594822", - "indexDesc": "Earned on the Christmas Event in PSX and the Exclusive Jolly Egg!", + "fly": true, + "goldenThumbnail": "rbxassetid://14976420828", + "huge": true, + "indexDesc": "Comes with Series 2 Fantasy Chest Plush!", "indexObtainable": true, - "name": "Titanic Jolly Cat", + "name": "Huge Empyrean Agony", "rarity": { "Announce": true, "Color": null, @@ -76381,27 +79641,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17787600314", - "titanic": true, + "thumbnail": "rbxassetid://14976421040", }, - "configName": "Titanic Jolly Cat", + "configName": "Huge Empyrean Agony", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.253Z", - "hashShort": "fb8591bd41ae7173", + "dateModified": "2025-07-05T23:28:59.071Z", + "hashShort": "4f3679ab25eae173", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "balloon": true, - "balloonScale": null, - "balloonSpeed": 0.25, - }, - "goldenThumbnail": "rbxassetid://15260478739", - "indexDesc": "Found in the Exclusive Nightmare Egg!", - "indexObtainable": true, - "name": "Titanic Nightmare Cat", + "fly": true, + "goldenThumbnail": "rbxassetid://14976383249", + "huge": true, + "indexDesc": "Hatched from eggs in PSX!", + "indexObtainable": false, + "name": "Huge Clover Dragon", "rarity": { "Announce": true, "Color": null, @@ -76414,29 +79670,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15260478604", - "titanic": true, + "thumbnail": "rbxassetid://14976383366", }, - "configName": "Titanic Nightmare Cat", + "configName": "Huge Clover Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.236Z", - "hashShort": "0091f1af723492b0", + "dateModified": "2025-07-05T23:28:59.061Z", + "hashShort": "85d9f1ffb8fa7e40", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "balloon": true, - "ridingCameraOffset": null, - "ridingGravity": 65.3346, - "ridingJumpPower": 52.5, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://14976586251", - "indexDesc": "Comes with the Titanic Red Balloon Cat plush!", - "indexObtainable": true, - "name": "Titanic Red Balloon Cat", + "goldenThumbnail": "rbxassetid://14976432733", + "huge": true, + "indexDesc": "Hatched from eggs in PSX!", + "indexObtainable": false, + "name": "Huge Firefighter Dalmatian", "rarity": { "Announce": true, "Color": null, @@ -76449,22 +79698,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976586155", - "titanic": true, + "thumbnail": "rbxassetid://14976432950", }, - "configName": "Titanic Red Balloon Cat", + "configName": "Huge Firefighter Dalmation", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.253Z", - "hashShort": "211faf61fa0a1829", + "dateModified": "2025-07-05T23:28:59.064Z", + "hashShort": "724149a15183f098", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://15547850956", - "indexDesc": "Comes with the Titanic Tiedye Cat plush!", - "indexObtainable": true, - "name": "Titanic Tiedye Cat", + "fly": true, + "goldenThumbnail": "rbxassetid://14976514449", + "huge": true, + "indexDesc": "Tied to the now defunct NFT project!", + "indexObtainable": false, + "name": "Huge Pegasus", "rarity": { "Announce": true, "Color": null, @@ -76477,22 +79727,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15547792344", - "titanic": true, + "thumbnail": "rbxassetid://14976514552", }, - "configName": "Titanic Tiedye Cat", + "configName": "Huge Pegasus", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.235Z", - "hashShort": "34374a1b2066051b", + "dateModified": "2025-07-05T23:28:59.071Z", + "hashShort": "59b67d9415a97613", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14977547006", - "indexDesc": "Found in the Exclusive Crystal Egg!", + "goldenThumbnail": "rbxassetid://14976436252", + "huge": true, + "indexDesc": "Found in the Lucky Block Merch!", "indexObtainable": true, - "name": "Titanic Mystic Corgi", + "name": "Huge Fox", "rarity": { "Announce": true, "Color": null, @@ -76505,26 +79755,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976647316", - "titanic": true, + "thumbnail": "rbxassetid://14976436421", }, - "configName": "Titanic Mystic Corgi", + "configName": "Huge Fox", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.245Z", - "hashShort": "d21e1824bcc920d3", + "dateModified": "2025-07-05T23:28:59.070Z", + "hashShort": "185ee198023bbd42", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "ridingCameraOffset": null, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://15163496678", - "indexDesc": "Found in the Exclusive Dragon Egg!", - "indexObtainable": true, - "name": "Titanic Fire Dragon", + "goldenThumbnail": "rbxassetid://14976542654", + "huge": true, + "indexDesc": "From the 2021 Insane Christmas Exclusive Egg!", + "indexObtainable": false, + "name": "Huge Santa Paws", "rarity": { "Announce": true, "Color": null, @@ -76537,23 +79783,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15163496528", - "titanic": true, + "thumbnail": "rbxassetid://14976542836", }, - "configName": "Titanic Fire Dragon", + "configName": "Huge Santa Paws", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.235Z", - "hashShort": "c1e5a8b85133e193", + "dateModified": "2025-07-05T23:28:59.066Z", + "hashShort": "8a95cd9eb610427e", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://14977638619", - "indexDesc": "Comes with the Titanic Shadow Griffin plush!", - "indexObtainable": true, - "name": "Titanic Shadow Griffin", + "goldenThumbnail": "rbxassetid://14976435681", + "huge": true, + "indexDesc": "Found in one of the first non-tradable Exclusive Eggs!", + "indexObtainable": false, + "name": "Huge Forest Wyvern", "rarity": { "Announce": true, "Color": null, @@ -76566,22 +79812,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976670848", - "titanic": true, + "thumbnail": "rbxassetid://14976435839", }, - "configName": "Titanic Shadow Griffin", + "configName": "Huge Forest Wyvern", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.254Z", - "hashShort": "52f2d6e40726df13", + "dateModified": "2025-07-05T23:28:59.060Z", + "hashShort": "bc6ea327422e006b", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14977494512", - "indexDesc": "Comes with the Titanic Cheerful Yeti plush!", - "indexObtainable": true, - "name": "Titanic Cheerful Yeti", + "goldenThumbnail": "rbxassetid://14976570991", + "huge": true, + "indexDesc": "Earned from the 2022 Summer Event in PSX!", + "indexObtainable": false, + "name": "Huge Tiki Dominus", "rarity": { "Announce": true, "Color": null, @@ -76594,22 +79840,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976595593", - "titanic": true, + "thumbnail": "rbxassetid://14976571122", }, - "configName": "Titanic Cheerful Yeti", + "configName": "Huge Tiki Dominus", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.254Z", - "hashShort": "aa08cca148e48448", + "dateModified": "2025-07-05T23:28:59.075Z", + "hashShort": "d5f59b1dc179cb58", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14977562334", - "indexDesc": "Comes with the Titanic Reindeer plush!", - "indexObtainable": true, - "name": "Titanic Reindeer", + "fly": true, + "goldenThumbnail": "rbxassetid://14976439736", + "huge": true, + "indexDesc": "Found in one of the first non-tradable Exclusive Eggs!", + "indexObtainable": false, + "name": "Huge Gargoyle Dragon", "rarity": { "Announce": true, "Color": null, @@ -76622,22 +79869,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15581758974", - "titanic": true, + "thumbnail": "rbxassetid://14976439876", }, - "configName": "Titanic Reindeer", + "configName": "Huge Gargoyle Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.238Z", - "hashShort": "9da333f0fb2c0315", + "dateModified": "2025-07-05T23:28:59.057Z", + "hashShort": "34c8cc0d5c054152", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14977522484", - "indexDesc": "Comes with the Titanic Fawn plush!", + "goldenThumbnail": "rbxassetid://14976568753", + "hideSerial": true, + "huge": true, + "indexDesc": "Found in the (Basic, Rare, Mythical) Series 1 Merch Gifts!", "indexObtainable": true, - "name": "Titanic Fawn", + "name": "Huge Tiedye Cat", "rarity": { "Announce": true, "Color": null, @@ -76650,22 +79898,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976619071", - "titanic": true, + "thumbnail": "rbxassetid://14976568867", }, - "configName": "Titanic Fawn", + "configName": "Huge Tiedye Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.235Z", - "hashShort": "169d29573336b257", + "dateModified": "2025-07-05T23:28:59.058Z", + "hashShort": "cfce39df62cc5499", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://15644507241", - "indexDesc": "Found in the Exclusive Fruit Egg!", + "fly": true, + "goldenThumbnail": "rbxassetid://14976414639", + "huge": true, + "indexDesc": "Comes with the Dragon plush!", "indexObtainable": true, - "name": "Titanic Banana Cat", + "name": "Huge Dragon", "rarity": { "Announce": true, "Color": null, @@ -76678,89 +79927,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15644507059", - "titanic": true, + "thumbnail": "rbxassetid://14976414803", }, - "configName": "Titanic Banana Cat", + "configName": "Huge Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.255Z", - "hashShort": "f22112643212d3d8", + "dateModified": "2025-07-05T23:28:59.054Z", + "hashShort": "a622d2fbadbec091", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "jelly": true, - "replacementPool": [ - [ - 1, - 0.5, - ], - [ - 2, - 0.2, - ], - [ - 3, - 0.15, - ], - [ - 4, - 0.1, - ], - [ - 5, - 0.04, - ], - [ - 6, - 0.01, - ], - ], - "replacements": [ - { - "desc": "Comes with a Coin inside! (50%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with Diamonds inside! (20%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with a Chest inside! (15%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with a Lucky Block inside! (10%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with a Maskot Pet inside! (4%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with Preston inside! (1%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - ], - }, - "goldenThumbnail": "rbxassetid://14977537480", - "indexDesc": "Found in the Exclusive Jelly Egg!", + "fly": true, + "goldenThumbnail": "rbxassetid://14976825201", + "huge": true, + "indexDesc": "Found in the Exclusive Nightmare Egg!", "indexObtainable": true, - "name": "Titanic Jelly Cat", + "name": "Huge Nightmare Spirit", "rarity": { "Announce": true, "Color": null, @@ -76773,22 +79956,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976635882", - "titanic": true, + "thumbnail": "rbxassetid://14976825431", }, - "configName": "Titanic Jelly Cat", + "configName": "Huge Nightmare Spirit", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.255Z", - "hashShort": "6074573aee78987a", + "dateModified": "2025-07-05T23:28:59.067Z", + "hashShort": "02a0e88102ce9393", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://15842479903", - "indexDesc": "Comes with the Titanic Red Panda plush!", - "indexObtainable": true, - "name": "Titanic Red Panda", + "goldenThumbnail": "rbxassetid://14976388553", + "huge": true, + "indexDesc": "Earned from gift rewards in PSX!", + "indexObtainable": false, + "name": "Huge Cupcake", "rarity": { "Announce": true, "Color": null, @@ -76801,22 +79984,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15842479817", - "titanic": true, + "thumbnail": "rbxassetid://14976389145", }, - "configName": "Titanic Red Panda", + "configName": "Huge Cupcake", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.240Z", - "hashShort": "fa17d7eed68d48c7", + "dateModified": "2025-07-05T23:28:59.059Z", + "hashShort": "f7cbef63e3c40b56", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://15842480094", - "indexDesc": "Comes with the Titanic Monkey plush!", - "indexObtainable": true, - "name": "Titanic Monkey", + "goldenThumbnail": "rbxassetid://14976439104", + "huge": true, + "indexDesc": "Hatched from eggs in PSX!", + "indexObtainable": false, + "name": "Huge Gamer Shiba", "rarity": { "Announce": true, "Color": null, @@ -76829,45 +80012,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15842479997", - "titanic": true, + "thumbnail": "rbxassetid://14976439240", }, - "configName": "Titanic Monkey", + "configName": "Huge Gamer Shiba", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.236Z", - "hashShort": "a0dd636a9e5d1635", + "dateModified": "2025-07-05T23:28:59.070Z", + "hashShort": "d6e3424e0ecd1d5d", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "customAnimations": true, - "fadeFrames": [ - { - "duration": 2, - "iconThumbnail": "rbxassetid://16047477969", - "instant": true, - "textureName": "frame1", - }, - { - "duration": 3, - "iconThumbnail": "rbxassetid://16047478331", - "instant": true, - "textureName": "frame2", - }, - ], - "idleActionAnimations": [ - [ - "CorgiJumping", - 1, - ], - ], - }, - "goldenThumbnail": "rbxassetid://16046367062", - "indexDesc": "Found in the Exclusive Emoji Egg!", - "indexObtainable": true, - "name": "Titanic Emoji Corgi", + "goldenThumbnail": "rbxassetid://14976525395", + "huge": true, + "indexDesc": "Found in an original non-tradable Exclusive Egg!", + "indexObtainable": false, + "name": "Huge Pony", "rarity": { "Announce": true, "Color": null, @@ -76880,503 +80040,464 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16047477969", - "titanic": true, + "thumbnail": "rbxassetid://14976525582", }, - "configName": "Titanic Emoji Corgi", + "configName": "Huge Pony", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.242Z", - "hashShort": "c93a481748d2fe10", + "dateModified": "2025-07-05T23:28:59.074Z", + "hashShort": "56f38ba384df873e", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 279, - ], "fly": true, - "fromEgg": "Dragon Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 10, - "goldenThumbnail": "rbxassetid://14968223666", - "maxChance": 0.0410958904109589, - "name": "Dragon", + "goldenThumbnail": "rbxassetid://15260479868", + "huge": true, + "indexDesc": "Found in one of the first non-tradable Exclusive Eggs!", + "indexObtainable": false, + "name": "Huge Storm Agony", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968223807", + "thumbnail": "rbxassetid://15260479669", }, - "configName": "Dragon", + "configName": "Huge Storm Agony", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.258Z", - "hashShort": "ef6693334b2a9f2e", + "dateModified": "2025-07-05T23:28:59.076Z", + "hashShort": "25ff936fe3a90717", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 37926, - ], - "fromEgg": "Bonsai Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 53, - "goldenThumbnail": "rbxassetid://14968359268", - "maxChance": 0.7192807192807193, - "name": "White Tiger", + "fly": true, + "goldenThumbnail": "rbxassetid://14976563895", + "huge": true, + "indexDesc": "Awarded to top 100 players from the 2023 Yeet a Pet Event in PSX!", + "indexObtainable": false, + "name": "Huge Stunt Unicorn", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968359346", + "thumbnail": "rbxassetid://14976564045", }, - "configName": "White Tiger", + "configName": "Huge Stunt Unicorn", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.263Z", - "hashShort": "3e822cdd08a7c7b5", + "dateModified": "2025-07-05T23:28:59.064Z", + "hashShort": "ddac1e926df81062", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 759, - ], - "fromEgg": "Sandcastle Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 19, - "goldenThumbnail": "rbxassetid://14968200034", - "maxChance": 0.09090909090909091, - "name": "Crocodile", + "goldenThumbnail": "rbxassetid://14976518950", + "huge": true, + "indexDesc": "Hatched from eggs in PSX!", + "indexObtainable": false, + "name": "Huge Pixel Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968200101", + "thumbnail": "rbxassetid://14976519049", }, - "configName": "Crocodile", + "configName": "Huge Pixel Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.257Z", - "hashShort": "19422fe41a5bd75e", + "dateModified": "2025-07-05T23:28:59.053Z", + "hashShort": "f4835fef4e6c22e5", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 35160, - ], - "fromEgg": "Lantern Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 52, - "goldenThumbnail": "rbxassetid://14968294476", - "maxChance": 0.1999800019998, - "name": "Panda", + "goldenThumbnail": "rbxassetid://14976532056", + "huge": true, + "indexDesc": "Found in one of the first non-tradable Exclusive Eggs!", + "indexObtainable": false, + "name": "Huge Rainbow Unicorn", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968294565", + "thumbnail": "rbxassetid://14976532168", }, - "configName": "Panda", + "configName": "Huge Rainbow Unicorn", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.262Z", - "hashShort": "9921c49f4ab3d60a", + "dateModified": "2025-07-05T23:28:59.053Z", + "hashShort": "573ab522bdc8ae93", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 37872, - ], - "fromEgg": "Lantern Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 52, - "goldenThumbnail": "rbxassetid://14968317873", - "maxChance": 0.00999900009999, - "name": "Red Panda", + "animations": { + "balloon": true, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://14976359470", + "huge": true, + "indexDesc": "Comes with Series 2 Coolbeanz Toys! [RARE]", + "indexObtainable": true, + "name": "Huge Balloon Monkey", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968318074", + "thumbnail": "rbxassetid://14976359711", }, - "configName": "Red Panda", + "configName": "Huge Balloon Monkey", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.255Z", - "hashShort": "5ad0cd53ef1aa6ff", + "dateModified": "2025-07-05T23:28:59.223Z", + "hashShort": "5452fc99f1e89d44", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 320, - ], - "fromEgg": "Grave Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 12, - "goldenThumbnail": "rbxassetid://14968250751", - "maxChance": 0.3614457831325301, - "name": "Green Cobra", + "goldenThumbnail": "rbxassetid://14976373565", + "huge": true, + "indexDesc": "Tied to the Huge Plush merch in stores and Exclusive Capybara Egg!", + "indexObtainable": true, + "name": "Huge Capybara", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968250862", + "thumbnail": "rbxassetid://14976373698", }, - "configName": "Green Cobra", + "configName": "Huge Capybara", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.260Z", - "hashShort": "219e37cd057a3330", + "dateModified": "2025-07-05T23:28:59.221Z", + "hashShort": "fddf85f271e5d5fa", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 485, - ], - "fromEgg": "Crimson Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 16, - "goldenThumbnail": "rbxassetid://14968315238", - "maxChance": 0.6497175141242938, - "name": "Purple Cobra", + "goldenThumbnail": "rbxassetid://14976529068", + "huge": true, + "indexDesc": "Earned from the 2021, 2022, and 2023 Halloween Event in PSX!", + "indexObtainable": false, + "name": "Huge Pumpkin Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968315310", + "thumbnail": "rbxassetid://14976529226", }, - "configName": "Purple Cobra", + "configName": "Huge Pumpkin Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.453Z", - "hashShort": "e6d2b6d1020dd9f5", + "dateModified": "2025-07-05T23:28:59.219Z", + "hashShort": "31cf181ff64f289b", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 829, - ], - "fromEgg": "Sandcastle Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 19, - "goldenThumbnail": "rbxassetid://14968270218", - "maxChance": 0.0009389671361502347, - "name": "King Cobra", + "animations": { + "balloon": true, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://14976517320", + "hideExists": true, + "huge": true, + "indexDesc": "Tied to the Pink Balloon Cat Roblox Limited!", + "indexObtainable": false, + "name": "Huge Pink Balloon Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968270385", + "thumbnail": "rbxassetid://14976517430", + "tradable": false, + "ugc": true, }, - "configName": "King Cobra", + "configName": "Huge Pink Balloon Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.456Z", - "hashShort": "9872204b838efec0", + "dateModified": "2026-03-14T15:52:10.081Z", + "hashShort": "f520d767aaf4966e", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 191, - ], - "fromEgg": "Cat Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 8, - "goldenThumbnail": "rbxassetid://14968355913", - "maxChance": 0.625, - "name": "Ugly Duckling", + "fly": true, + "goldenThumbnail": "rbxassetid://14976494247", + "hideSerial": true, + "huge": true, + "indexDesc": "Found in the (Legendary, Mythical) Series 1 Merch Gifts!", + "indexObtainable": true, + "name": "Huge Mosaic Griffin", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968356058", + "thumbnail": "rbxassetid://14976494343", }, - "configName": "Ugly Duckling", + "configName": "Huge Mosaic Griffin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.281Z", - "hashShort": "eca35378f3ab17d1", + "dateModified": "2025-07-05T23:28:59.222Z", + "hashShort": "d4c32decaa734f1b", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 450, - ], - "fromEgg": "Spirit Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 15, - "goldenThumbnail": "rbxassetid://14968232162", - "maxChance": 0.14204545454545456, - "name": "Enchanted Elephant", + "fly": true, + "goldenThumbnail": "rbxassetid://15281990316", + "huge": true, + "indexDesc": "Found in Series 2 Collector Clips! [SUPER RARE]", + "indexObtainable": true, + "name": "Huge Angel Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968232250", + "thumbnail": "rbxassetid://15281990207", }, - "configName": "Enchanted Elephant", + "configName": "Huge Angel Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.282Z", - "hashShort": "554cbd13ffc04e6c", + "dateModified": "2025-07-05T23:28:59.233Z", + "hashShort": "c0b29877bbde34c4", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 1354535, - ], - "fromEgg": "Cotton Candy Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 83, - "goldenThumbnail": "rbxassetid://14968199167", - "maxChance": 0.1998001998001998, - "name": "Cotton Candy Lamb", + "goldenThumbnail": "rbxassetid://15260480874", + "hideSerial": true, + "huge": true, + "indexDesc": "Found in the (Legendary, Mythical) Series 1 Merch Gifts!", + "indexObtainable": true, + "name": "Huge Nightfall Wolf", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968199238", + "thumbnail": "rbxassetid://15260480737", }, - "configName": "Cotton Candy Lamb", + "configName": "Huge Nightfall Wolf", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.283Z", - "hashShort": "96adf1a9c1d6a257", + "dateModified": "2025-07-05T23:28:59.234Z", + "hashShort": "a54d0befbadc3ed7", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 86926, - ], - "fromEgg": "Colorful Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 60, - "goldenThumbnail": "rbxassetid://14968315928", - "maxChance": 0.6493506493506493, - "name": "Colorful Fish", + "fly": true, + "goldenThumbnail": "rbxassetid://15260481257", + "hideSerial": true, + "huge": true, + "indexDesc": "Found in the (Legendary, Mythical) Series 1 Merch Gifts!", + "indexObtainable": true, + "name": "Huge Nightfall Pegasus", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968316077", + "thumbnail": "rbxassetid://15260481050", }, - "configName": "Colorful Fish", + "configName": "Huge Nightfall Pegasus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.284Z", - "hashShort": "2891f3b654afea19", + "dateModified": "2025-07-05T23:28:59.232Z", + "hashShort": "6dbed527b4c58f85", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 14777, - ], - "fromEgg": "Obsidian Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 44, - "goldenThumbnail": "rbxassetid://14968256450", - "maxChance": 0.1498426652015384, - "name": "Hell Spider", + "fly": true, + "goldenThumbnail": "rbxassetid://14976476867", + "huge": true, + "indexDesc": "Hatched from the 2023 Valentine's Event in PSX!", + "indexObtainable": false, + "name": "Huge Love Lamb", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968256548", + "thumbnail": "rbxassetid://14976476986", }, - "configName": "Hell Spider", + "configName": "Huge Love Lamb", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.285Z", - "hashShort": "339e513c2bc17b22", + "dateModified": "2025-07-05T23:28:59.226Z", + "hashShort": "41d9111e92464d80", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 89281, - ], - "fromEgg": "Colorful Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 60, - "goldenThumbnail": "rbxassetid://14968316193", - "maxChance": 0.2997002997002997, - "name": "Colorful Slime", + "fly": true, + "goldenThumbnail": "rbxassetid://14976488209", + "huge": true, + "indexDesc": "Earned from Daycare!", + "indexObtainable": true, + "name": "Huge Meebo in a Spaceship", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968316333", + "thumbnail": "rbxassetid://14976488429", }, - "configName": "Colorful Slime", + "configName": "Huge Meebo in a Spaceship", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.287Z", - "hashShort": "7c55c27409ed9ea5", + "dateModified": "2025-07-05T23:28:59.229Z", + "hashShort": "4ff1e30ffcf27a89", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 12701, - ], - "fly": true, - "fromEgg": "Magma Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 43, - "goldenThumbnail": "rbxassetid://14968351341", - "maxChance": 0.9610764055742432, - "name": "Three Headed Dragon", + "goldenThumbnail": "rbxassetid://14976440787", + "huge": true, + "indexDesc": "Found in Series 2 Lucky Block 4-Pack Playset or Collector Clips!", + "indexObtainable": true, + "name": "Huge Ghost", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968351447", + "thumbnail": "rbxassetid://14976441222", }, - "configName": "Three Headed Dragon", + "configName": "Huge Ghost", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.288Z", - "hashShort": "f22552596c60b5c9", + "dateModified": "2025-07-05T23:28:59.235Z", + "hashShort": "94a29be0d84f3e87", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://14968209943", - "name": "Dominus Astra", + "fly": true, + "goldenThumbnail": "rbxassetid://14976384911", + "huge": true, + "indexDesc": "Earned from comets in PSX!", + "indexObtainable": true, + "name": "Huge Comet Cyclops", "rarity": { "Announce": true, "Color": null, @@ -77389,311 +80510,276 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968210060", + "thumbnail": "rbxassetid://14976385072", }, - "configName": "Dominus Astra", + "configName": "Huge Comet Cyclops", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.289Z", - "hashShort": "55941e435498e05a", + "dateModified": "2025-07-05T23:28:59.218Z", + "hashShort": "6c83c3df1db6ab55", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 4465, - ], - "fromEgg": "Canyon Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 34, - "goldenThumbnail": "rbxassetid://14968188192", - "maxChance": 0.8658008658008658, - "name": "Bull", + "fly": true, + "goldenThumbnail": "rbxassetid://14976384660", + "huge": true, + "indexDesc": "Earned from comets in PSX!", + "indexObtainable": true, + "name": "Huge Comet Agony", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968188342", + "thumbnail": "rbxassetid://14976384743", }, - "configName": "Bull", + "configName": "Huge Comet Agony", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.289Z", - "hashShort": "407a21705a7790f2", + "dateModified": "2025-07-05T23:28:59.236Z", + "hashShort": "ff2960f6979974b3", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 30930, - ], - "fromEgg": "Ninja Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 51, - "goldenThumbnail": "rbxassetid://14968324677", - "maxChance": 0.2997002997002997, - "name": "Samurai Bull", + "goldenThumbnail": "rbxassetid://15260479136", + "huge": true, + "indexDesc": "Found in the Exclusive Dominus Egg!", + "indexObtainable": true, + "name": "Huge Storm Dominus", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968324814", + "thumbnail": "rbxassetid://15260478906", }, - "configName": "Samurai Bull", + "configName": "Huge Storm Dominus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.288Z", - "hashShort": "98347297c253b687", + "dateModified": "2025-07-05T23:28:59.220Z", + "hashShort": "9abe7ba928c5053c", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 7, - ], - "fromEgg": "Paw Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 2, - "goldenThumbnail": "rbxassetid://14968224041", - "maxChance": 0.3816793893129771, - "name": "Ducky", + "goldenThumbnail": "rbxassetid://14976463700", + "huge": true, + "indexDesc": "Found in the Exclusive Dominus Egg!", + "indexObtainable": true, + "name": "Huge Inferno Dominus", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968224483", + "thumbnail": "rbxassetid://14976463903", }, - "configName": "Ducky", + "configName": "Huge Inferno Dominus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.290Z", - "hashShort": "7073be0509dbc67d", + "dateModified": "2025-07-05T23:28:59.221Z", + "hashShort": "b20c20891250bc06", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 413, - ], - "fly": true, - "fromEgg": "Sprout Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 14, - "goldenThumbnail": "rbxassetid://14968329549", - "maxChance": 0.16161616161616163, - "name": "Shadow Griffin", + "goldenThumbnail": "rbxassetid://14976528058", + "huge": true, + "indexDesc": "Hatched from eggs in PSX!", + "indexObtainable": false, + "name": "Huge Pufferfish", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968329630", + "thumbnail": "rbxassetid://14976528215", }, - "configName": "Shadow Griffin", + "configName": "Huge Pufferfish", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.290Z", - "hashShort": "b134e9c7d6c726bc", + "dateModified": "2025-07-05T23:28:59.224Z", + "hashShort": "76a9eedeffe2a983", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 12043, - ], - "fromEgg": "Magma Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 43, - "goldenThumbnail": "rbxassetid://14968256139", - "maxChance": 0.3105590062111801, - "name": "Hell Rock", + "goldenThumbnail": "rbxassetid://14976383732", + "huge": true, + "indexDesc": "Hatched from eggs in PSX!", + "indexObtainable": false, + "name": "Huge Clover Unicorn", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968256357", + "thumbnail": "rbxassetid://14976383846", }, - "configName": "Hell Rock", + "configName": "Huge Clover Unicorn", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.594Z", - "hashShort": "300a2dace336d670", + "dateModified": "2025-07-05T23:28:59.219Z", + "hashShort": "8cd948a31979f4e1", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 6262865, - ], "fly": true, - "fromEgg": "Heaven Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 96, - "goldenThumbnail": "rbxassetid://14968223390", - "maxChance": 0.1998001998001998, - "name": "Dove", + "goldenThumbnail": "rbxassetid://14976513568", + "huge": true, + "indexDesc": "Comes with the Sock Dragon plush!", + "indexObtainable": true, + "name": "Huge Pastel Sock Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968223534", + "thumbnail": "rbxassetid://14976513814", }, - "configName": "Dove", + "configName": "Huge Pastel Sock Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.586Z", - "hashShort": "d91dd94d90daa8a7", + "dateModified": "2025-07-05T23:28:59.238Z", + "hashShort": "7d5266cff48e49a7", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 558, - ], - "fromEgg": "Overgrown Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 17, - "goldenThumbnail": "rbxassetid://14968300111", - "maxChance": 0.3776873910517141, - "name": "Peacock", + "goldenThumbnail": "rbxassetid://14976354324", + "huge": true, + "indexDesc": "Found in the Exclusive Atlantean Egg!", + "indexObtainable": true, + "name": "Huge Atlantean Dolphin", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968300268", + "thumbnail": "rbxassetid://14976354622", }, - "configName": "Peacock", + "configName": "Huge Atlantean Dolphin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.588Z", - "hashShort": "bc50c559613cc5d2", + "dateModified": "2025-07-05T23:28:59.235Z", + "hashShort": "a96734cc00dbef76", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 6392629, - ], - "fromEgg": "Angel Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 95, - "goldenThumbnail": "rbxassetid://14968254614", - "maxChance": 0.08991008991008992, - "name": "Heavenly Peacock", + "goldenThumbnail": "rbxassetid://14976370393", + "huge": true, + "indexDesc": "Hatched from eggs in PSX!", + "indexObtainable": false, + "name": "Huge Bread Shiba", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968254733", + "thumbnail": "rbxassetid://14976370557", }, - "configName": "Heavenly Peacock", + "configName": "Huge Bread Shiba", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.595Z", - "hashShort": "b54ba86b40c252a6", + "dateModified": "2025-07-05T23:28:59.240Z", + "hashShort": "33e2242fbc6475e9", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 1085, - ], - "fromEgg": "Anchor Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 22, - "goldenThumbnail": "rbxassetid://14968271035", - "maxChance": 0.78125, - "name": "Kraken", + "goldenThumbnail": "rbxassetid://14976517894", + "huge": true, + "indexDesc": "Comes with the Easter Chick plush!", + "indexObtainable": true, + "name": "Huge Pink Marshmallow Chick", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968271149", + "thumbnail": "rbxassetid://14976517974", }, - "configName": "Kraken", + "configName": "Huge Pink Marshmallow Chick", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.590Z", - "hashShort": "2e7ed86167383a1d", + "dateModified": "2025-07-05T23:28:59.240Z", + "hashShort": "e2bf87f7ca01f701", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "fly": true, - "goldenThumbnail": "rbxassetid://14968185297", - "name": "Sea Dragon", + "goldenThumbnail": "rbxassetid://14976442869", + "huge": true, + "indexDesc": "Comes with the Series 1 Deluxe Tech Plush!", + "indexObtainable": true, + "name": "Huge Gleebo The Alien", "rarity": { "Announce": true, "Color": null, @@ -77706,84 +80792,87 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968185465", + "thumbnail": "rbxassetid://14976443059", }, - "configName": "Sea Dragon", + "configName": "Huge Gleebo The Alien", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.602Z", - "hashShort": "3fd2f5fea0fb5e09", + "dateModified": "2025-07-05T23:28:59.227Z", + "hashShort": "010862f772f83e2e", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 16042, - ], - "fromEgg": "Obsidian Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 44, - "goldenThumbnail": "rbxassetid://14968260740", - "maxChance": 0.0009989511013435894, - "name": "Hound of Hades", + "fly": true, + "goldenThumbnail": "", + "huge": true, + "indexDesc": "Found in the Exclusive Cosmic Egg!", + "indexObtainable": true, + "name": "Huge Cosmic Agony", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968260886", + "thumbnail": "rbxassetid://15201636010", }, - "configName": "Hound of Hades", + "configName": "Huge Cosmic Agony", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.602Z", - "hashShort": "882a2f8cf9104d51", + "dateModified": "2025-07-05T23:28:59.241Z", + "hashShort": "996ec6e765e7c33c", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 168, - ], - "fromEgg": "Cat Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 8, - "goldenThumbnail": "rbxassetid://14968355354", - "maxChance": 0.5025125628140703, - "name": "Turtle", + "animations": { + "flyHeightChange": 0, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://14976457245", + "huge": true, + "indexDesc": "Found in the Exclusive Hologram Egg!", + "indexObtainable": true, + "name": "Huge Hologram Shark", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968355788", + "thumbnail": "rbxassetid://14976457374", }, - "configName": "Turtle", + "configName": "Huge Hologram Shark", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.593Z", - "hashShort": "837cf24893442a90", + "dateModified": "2025-07-05T23:28:59.231Z", + "hashShort": "7534f09ef8f9e9ce", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968192582", - "name": "Chest Mimic", + "animations": { + "flyHeightChange": 0, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://14976456793", + "huge": true, + "indexDesc": "Found in the Exclusive Hologram Egg!", + "indexObtainable": true, + "name": "Huge Hologram Axolotl", "rarity": { "Announce": true, "Color": null, @@ -77796,21 +80885,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968192663", + "thumbnail": "rbxassetid://14976456919", }, - "configName": "Chest Mimic", + "configName": "Huge Hologram Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.588Z", - "hashShort": "8c5b0a9a2d7ff927", + "dateModified": "2025-07-05T23:28:59.228Z", + "hashShort": "dd0740f99be7e58d", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 3, "fly": true, - "goldenThumbnail": "rbxassetid://14968243016", - "name": "Galaxy Dragon", + "goldenThumbnail": "rbxassetid://14976470786", + "huge": true, + "indexDesc": "Hatched from eggs in PSX!", + "indexObtainable": false, + "name": "Huge Kawaii Dragon", "rarity": { "Announce": true, "Color": null, @@ -77823,20 +80914,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968243135", + "thumbnail": "rbxassetid://14976470932", }, - "configName": "Galaxy Dragon", + "configName": "Huge Kawaii Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.592Z", - "hashShort": "5da0ce0913fc91cb", + "dateModified": "2025-07-05T23:28:59.217Z", + "hashShort": "41ee8cccc9a12aec", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968334948", - "name": "Sock Monkey", + "goldenThumbnail": "rbxassetid://14976531847", + "huge": true, + "indexDesc": "Found in the Huge Machine Kraken Egg!", + "indexObtainable": true, + "name": "Huge Colorful Slime", "rarity": { "Announce": true, "Color": null, @@ -77849,20 +80942,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968335044", + "thumbnail": "rbxassetid://14976531943", }, - "configName": "Sock Monkey", + "configName": "Huge Rainbow Slime", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.603Z", - "hashShort": "196669d4730c8699", + "dateModified": "2025-07-05T23:28:59.234Z", + "hashShort": "d5db549521002389", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968183329", - "name": "Blobfish", + "goldenThumbnail": "rbxassetid://14976503028", + "huge": true, + "indexDesc": "Hatched from eggs in PSX!", + "indexObtainable": false, + "name": "Huge Ninja Axolotl", "rarity": { "Announce": true, "Color": null, @@ -77875,182 +80970,162 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968183467", + "thumbnail": "rbxassetid://14976503103", }, - "configName": "Blobfish", + "configName": "Huge Ninja Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.599Z", - "hashShort": "23beda6f39836a0c", + "dateModified": "2025-07-05T23:28:59.224Z", + "hashShort": "70d16d11300434c6", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 56320, - ], - "fly": true, - "fromEgg": "Pedal Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 56, - "goldenThumbnail": "rbxassetid://14968233976", - "maxChance": 0.2, - "name": "Fairy", + "goldenThumbnail": "rbxassetid://14976446054", + "huge": true, + "indexDesc": "Found in the Huge Machine Kraken Egg!", + "indexObtainable": true, + "name": "Huge Goblin", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968234592", + "thumbnail": "rbxassetid://14976446202", }, - "configName": "Fairy", + "configName": "Huge Goblin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.600Z", - "hashShort": "542303dcd341178e", + "dateModified": "2025-07-05T23:28:59.237Z", + "hashShort": "7a179a6ec1099d5a", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 1, - ], - "fromEgg": "Cracked Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 1, - "goldenThumbnail": "rbxassetid://14968177877", - "maxChance": 0.25, - "name": "Axolotl", - "power": 1, + "goldenThumbnail": "rbxassetid://14976352268", + "huge": true, + "indexDesc": "Found in the Lucky Block Merch!", + "indexObtainable": true, + "name": "Huge Apple Capybara", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968178095", + "thumbnail": "rbxassetid://14976352410", }, - "configName": "Axolotl", + "configName": "Huge Apple Capybara", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.603Z", - "hashShort": "4a77c4366d10af4c", + "dateModified": "2025-07-05T23:28:59.225Z", + "hashShort": "3cb29b3caf83054a", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 3860, - ], - "fromEgg": "Sandstone Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 32, - "goldenThumbnail": "rbxassetid://14968336301", - "maxChance": 0.0007353713625380817, - "name": "Sphinx", + "goldenThumbnail": "rbxassetid://14976440435", + "huge": true, + "indexDesc": "Found in the Huge Machine Kraken Egg!", + "indexObtainable": true, + "name": "Huge Gecko", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968336386", + "thumbnail": "rbxassetid://14976440578", }, - "configName": "Sphinx", + "configName": "Huge Gecko", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.604Z", - "hashShort": "cc85d501c4664b22", + "dateModified": "2025-07-05T23:28:59.219Z", + "hashShort": "44a54d6dbcc1b6af", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 2214659, - ], - "fromEgg": "Sweets Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 86, - "goldenThumbnail": "rbxassetid://14968201524", - "maxChance": 0.08991008991008992, - "name": "Cupcake", + "goldenThumbnail": "rbxassetid://14976572239", + "huge": true, + "indexDesc": "Found in Series 2 Mystery Egg Plush! [RARE]", + "indexObtainable": true, + "name": "Huge Turtle", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968202115", + "thumbnail": "rbxassetid://14976572325", }, - "configName": "Cupcake", + "configName": "Huge Turtle", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.604Z", - "hashShort": "5eaf9518f6f59349", + "dateModified": "2025-07-05T23:28:59.231Z", + "hashShort": "19e21144f8bbf004", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 164, - ], - "fromEgg": "Blossom Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 7, - "goldenThumbnail": "rbxassetid://14968238350", - "maxChance": 0.05454545454545454, - "name": "Flamingo", + "goldenThumbnail": "rbxassetid://14976473129", + "huge": true, + "indexDesc": "Found in the Huge Machine Kraken Egg!", + "indexObtainable": true, + "name": "Huge Kraken", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968238473", + "thumbnail": "rbxassetid://14976473284", }, - "configName": "Flamingo", + "configName": "Huge Kraken", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.605Z", - "hashShort": "6704943898319b45", + "dateModified": "2025-07-05T23:28:59.223Z", + "hashShort": "77e13497784ea645", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://15260344146", - "name": "Storm Wolf", + "goldenThumbnail": "rbxassetid://14976417034", + "huge": true, + "indexDesc": "Earned from the 2023 Easter Gift in PSX!", + "indexObtainable": true, + "name": "Huge Easter Dominus", "rarity": { "Announce": true, "Color": null, @@ -78063,20 +81138,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15260344049", + "thumbnail": "rbxassetid://14976417278", }, - "configName": "Storm Wolf", + "configName": "Huge Easter Dominus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.585Z", - "hashShort": "2fc3569abb1726a6", + "dateModified": "2025-07-05T23:28:59.222Z", + "hashShort": "63e89bdc738f8d56", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968284821", - "name": "Mushroom King", + "fly": true, + "goldenThumbnail": "rbxassetid://14976486782", + "huge": true, + "indexDesc": "Earned from the 2023 Easter Gift in PSX!", + "indexObtainable": true, + "name": "Huge Marshmallow Agony", "rarity": { "Announce": true, "Color": null, @@ -78089,52 +81167,58 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968284903", + "thumbnail": "rbxassetid://14976486981", }, - "configName": "Mushroom King", + "configName": "Huge Marshmallow Agony", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.598Z", - "hashShort": "5781ead336354ec3", + "dateModified": "2025-07-05T23:28:59.229Z", + "hashShort": "3fd85317355bb86c", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 751671, - ], - "fromEgg": "Dungeon Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 78, - "goldenThumbnail": "rbxassetid://14968245406", - "maxChance": 0.1998001998001998, - "name": "Ghost", + "animations": { + "flyHeight": 0.025, + "flyHeightChange": 0, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://14976502045", + "huge": true, + "indexDesc": "Found in the Exclusive Nightmare Egg!", + "indexObtainable": true, + "name": "Huge Nightmare Kraken", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968245811", + "thumbnail": "rbxassetid://14976502236", }, - "configName": "Ghost", + "configName": "Huge Nightmare Kraken", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.595Z", - "hashShort": "27398946646b1632", + "dateModified": "2025-07-05T23:28:59.236Z", + "hashShort": "e0619742c3ee269d", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968252371", - "name": "Guest Noob", + "goldenThumbnail": "rbxassetid://14976566877", + "huge": true, + "indexDesc": "Found in the 2023 Easter Event in PSX!", + "indexObtainable": false, + "name": "Huge Easter Bunny", "rarity": { "Announce": true, "Color": null, @@ -78147,85 +81231,79 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968252525", + "thumbnail": "rbxassetid://14976566967", }, - "configName": "Guest Noob", + "configName": "Huge Easter Bunny", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.589Z", - "hashShort": "1fa216be164c5d4f", + "dateModified": "2025-07-05T23:28:59.239Z", + "hashShort": "f73f872b4cf8b59b", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 14698, - ], - "fromEgg": "Volcano Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 45, - "goldenThumbnail": "rbxassetid://14968255762", - "maxChance": 0.7991608810748715, - "name": "Hell Chick", + "goldenThumbnail": "rbxassetid://14976418761", + "huge": true, + "indexDesc": "Hatched from the 2023 Easter Event in PSX!", + "indexObtainable": false, + "name": "Huge Easter Yeti", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968255858", + "thumbnail": "rbxassetid://14976418843", }, - "configName": "Hell Chick", + "configName": "Huge Easter Yeti", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.595Z", - "hashShort": "94f99b9d454f4d83", + "dateModified": "2025-07-05T23:28:59.230Z", + "hashShort": "2fe44c7cfc6086c6", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 19128, - ], "fly": true, - "fromEgg": "Volcano Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 45, - "goldenThumbnail": "rbxassetid://14968361546", - "maxChance": 0.0003214400514304082, - "name": "Wyvern of Hades", + "goldenThumbnail": "rbxassetid://14976350162", + "huge": true, + "indexDesc": "Found in the Exclusive Crystal Egg!", + "indexObtainable": true, + "name": "Huge Amethyst Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968361712", + "thumbnail": "rbxassetid://14976350251", }, - "configName": "Wyvern of Hades", + "configName": "Huge Amethyst Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.601Z", - "hashShort": "30ad88949210b963", + "dateModified": "2025-07-05T23:28:59.232Z", + "hashShort": "2b960de8d816e5fd", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://14968211409", - "name": "Domortuus Astra", + "goldenThumbnail": "rbxassetid://14976490346", + "huge": true, + "indexDesc": "Comes with Series 2 Tech Chest Bundle!", + "indexObtainable": true, + "name": "Huge Tech Chest Mimic", "rarity": { "Announce": true, "Color": null, @@ -78238,20 +81316,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968211535", + "thumbnail": "rbxassetid://14976490534", }, - "configName": "Domortuus Astra", + "configName": "Huge Tech Chest Mimic", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.596Z", - "hashShort": "b6d13da1ae11c2a6", + "dateModified": "2025-07-05T23:28:59.240Z", + "hashShort": "81a1318c45a4702a", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968292237", - "name": "Noobortuus", + "evolved": true, + "goldenThumbnail": "rbxassetid://14976425729", + "huge": true, + "indexDesc": "Earned from evolving Huge Hell Rocks in PSX!", + "indexObtainable": true, + "name": "Huge Evolved Hell Rock", "rarity": { "Announce": true, "Color": null, @@ -78264,20 +81345,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968292316", + "thumbnail": "rbxassetid://14976425869", }, - "configName": "Noobortuus", + "configName": "Huge Evolved Hell Rock", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.601Z", - "hashShort": "501dd1c679579292", + "dateModified": "2025-07-05T23:28:59.233Z", + "hashShort": "516a9eba105816fb", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968255468", - "name": "Hell Chest Mimic", + "fly": true, + "goldenThumbnail": "rbxassetid://15260482379", + "huge": true, + "indexDesc": "Hatched from the Quest Egg in PSX!", + "indexObtainable": true, + "name": "Huge M-10 PROTOTYPE", "rarity": { "Announce": true, "Color": null, @@ -78290,218 +81374,199 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968255585", + "thumbnail": "rbxassetid://15260482198", }, - "configName": "Hell Chest Mimic", + "configName": "Huge M-10 PROTOTYPE", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.598Z", - "hashShort": "3d4e5eead24c8e90", + "dateModified": "2025-07-05T23:28:59.237Z", + "hashShort": "f05ba18bbcf12e03", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 1478, - ], - "fromEgg": "Beach Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 24, - "goldenThumbnail": "rbxassetid://14968329706", - "maxChance": 0.1949317738791423, - "name": "Shark", + "evolved": true, + "goldenThumbnail": "rbxassetid://14976425152", + "huge": true, + "indexDesc": "Earned from evolving Huge Cupcakes in PSX!", + "indexObtainable": true, + "name": "Huge Evolved Cupcake", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968329861", + "thumbnail": "rbxassetid://14976425356", }, - "configName": "Shark", + "configName": "Huge Evolved Cupcake", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.583Z", - "hashShort": "21058bbac02852e8", + "dateModified": "2025-07-05T23:28:59.229Z", + "hashShort": "1d4bb25841535eef", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 7589140, - ], + "animations": { + "balloon": true, + }, "fly": true, - "fromEgg": "Heaven Castle Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 97, - "goldenThumbnail": "rbxassetid://14968229257", - "maxChance": 0.6993006993006994, - "name": "Empyrean Dragon", + "goldenThumbnail": "rbxassetid://14976359225", + "huge": true, + "indexDesc": "Found in the Exclusive Balloon Egg!", + "indexObtainable": true, + "name": "Huge Balloon Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968229341", + "thumbnail": "rbxassetid://14976359350", }, - "configName": "Empyrean Dragon", + "configName": "Huge Balloon Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.602Z", - "hashShort": "4cd3b7ab265e33d1", + "dateModified": "2025-07-05T23:28:59.239Z", + "hashShort": "f85cbf0bd958bcef", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 1228978, - ], - "fromEgg": "Empyrean Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 81, - "goldenThumbnail": "rbxassetid://14968229488", - "maxChance": 0.08991008991008992, - "name": "Empyrean Fox", + "goldenThumbnail": "rbxassetid://14976543596", + "huge": true, + "indexDesc": "Hatched from eggs in the 2022 Autumn Event in PSX!", + "indexObtainable": false, + "name": "Huge Scarecrow Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968229607", + "thumbnail": "rbxassetid://14976543713", }, - "configName": "Empyrean Fox", + "configName": "Huge Scarecrow Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.587Z", - "hashShort": "69aac20f96be55cf", + "dateModified": "2025-07-05T23:28:59.226Z", + "hashShort": "d9fe3e32b64d1f7c", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 1152795, - ], - "fromEgg": "Empyrean Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 81, - "goldenThumbnail": "rbxassetid://14968229892", - "maxChance": 0.8991008991008992, - "name": "Empyrean Stallion", + "fly": true, + "goldenThumbnail": "rbxassetid://14976427804", + "huge": true, + "indexDesc": "Found in the Lucky Block Merch!", + "indexObtainable": true, + "name": "Huge Fairy", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968231233", + "thumbnail": "rbxassetid://14976428656", }, - "configName": "Empyrean Stallion", + "configName": "Huge Fairy", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.594Z", - "hashShort": "9f0211587f681ec2", + "dateModified": "2025-07-05T23:28:59.235Z", + "hashShort": "e02f152dc91d5e25", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 1070250, - ], - "fromEgg": "Empyrean Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 81, - "goldenThumbnail": "rbxassetid://14968229723", - "maxChance": 0.1998001998001998, - "name": "Empyrean Snake", + "goldenThumbnail": "rbxassetid://14976576693", + "huge": true, + "indexDesc": "Found in the Lucky Block Merch!", + "indexObtainable": true, + "name": "Huge White Tiger", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968229797", + "thumbnail": "rbxassetid://14976576861", }, - "configName": "Empyrean Snake", + "configName": "Huge White Tiger", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.590Z", - "hashShort": "f8702808f511d01a", + "dateModified": "2025-07-05T23:28:59.233Z", + "hashShort": "9e5ae449e3e507af", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - }, - "cachedPower": [ - 7191707, - ], + "evolved": true, "fly": true, - "fromEgg": "Heaven Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 96, - "goldenThumbnail": "rbxassetid://14968171792", - "maxChance": 0.08991008991008992, - "name": "Angelus", + "goldenThumbnail": "rbxassetid://14976426958", + "huge": true, + "indexDesc": "Earned from evolving Huge Pterodactyls in PSX!", + "indexObtainable": true, + "name": "Huge Evolved Pterodactyl", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968171896", + "thumbnail": "rbxassetid://14976427082", }, - "configName": "Angelus", + "configName": "Huge Evolved Pterodactyl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.593Z", - "hashShort": "d4f73a1ab0550e83", + "dateModified": "2025-07-05T23:28:59.230Z", + "hashShort": "6cde4b6f6575d1a6", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "fly": true, - "goldenThumbnail": "rbxassetid://14968313282", - "name": "Pterodactyl", + "evolved": true, + "goldenThumbnail": "rbxassetid://14976426244", + "huge": true, + "indexDesc": "Earned from evolving Huge Peacocks in PSX!", + "indexObtainable": true, + "name": "Huge Evolved Peacock", "rarity": { "Announce": true, "Color": null, @@ -78514,21 +81579,79 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968313449", + "thumbnail": "rbxassetid://14976426399", }, - "configName": "Pterodactyl", + "configName": "Huge Evolved Peacock", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.591Z", - "hashShort": "5acf0e60a3107143", + "dateModified": "2025-07-05T23:28:59.222Z", + "hashShort": "4b21addf8609b5db", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "rbxassetid://14968228350", - "name": "Empyrean Agony", + "animations": { + "jelly": true, + "replacementPool": [ + [ + 1, + 0.5, + ], + [ + 2, + 0.2, + ], + [ + 3, + 0.15, + ], + [ + 4, + 0.1, + ], + [ + 5, + 0.05, + ], + ], + "replacements": [ + { + "desc": "Comes with a Coin inside! (50%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with Diamonds inside! (20%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with a Chest inside! (15%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with a Lucky Block inside! (10%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with a Maskot Pet inside! (5%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + ], + }, + "goldenThumbnail": "rbxassetid://14976467322", + "huge": true, + "indexDesc": "Found in the Exclusive Jelly Egg!", + "indexObtainable": true, + "name": "Huge Jelly Piggy", "rarity": { "Announce": true, "Color": null, @@ -78541,310 +81664,407 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968228476", + "thumbnail": "rbxassetid://14976467450", }, - "configName": "Empyrean Agony", + "configName": "Huge Jelly Piggy", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.788Z", - "hashShort": "d4dfd465dc8f683e", + "dateModified": "2025-07-05T23:28:59.220Z", + "hashShort": "f59f94ff3eafeb91", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 1215, - ], - "fromEgg": "Atlantis Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 23, - "goldenThumbnail": "rbxassetid://14968261606", - "maxChance": 0.0234375, - "name": "Hydra", + "evolved": true, + "goldenThumbnail": "rbxassetid://14976425978", + "huge": true, + "indexDesc": "Earned from evolving Huge King Cobras in PSX!", + "indexObtainable": true, + "name": "Huge Evolved King Cobra", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968262860", + "thumbnail": "rbxassetid://14976426069", }, - "configName": "Hydra", + "configName": "Huge Evolved King Cobra", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.615Z", - "hashShort": "69465523224b4c56", + "dateModified": "2025-07-05T23:28:59.379Z", + "hashShort": "8c315dffa56cc363", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 23548, - ], - "fromEgg": "Metal Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 49, - "goldenThumbnail": "rbxassetid://14968203570", - "maxChance": 0.79601982129156, - "name": "Cyborg Bunny", + "goldenThumbnail": "rbxassetid://14976553090", + "huge": true, + "indexDesc": "Hatched from eggs in PSX!", + "indexObtainable": false, + "name": "Huge Sombrero Chihuahua", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968203766", + "thumbnail": "rbxassetid://14976553203", }, - "configName": "Cyborg Bunny", + "configName": "Huge Sombrero Chihuahua", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.616Z", - "hashShort": "6e291507ad2a7ee8", + "dateModified": "2025-07-05T23:28:59.382Z", + "hashShort": "e9916bff9930105a", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 27127, - ], - "fromEgg": "Metal Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 49, - "goldenThumbnail": "rbxassetid://14968204990", - "maxChance": 0.0049751238830722504, - "name": "Cyborg Dragon", + "fly": true, + "goldenThumbnail": "rbxassetid://14976578410", + "huge": true, + "indexDesc": "Hatched from eggs in PSX!", + "indexObtainable": false, + "name": "Huge Wild Fire Agony", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968205100", + "thumbnail": "rbxassetid://14976578547", }, - "configName": "Cyborg Dragon", + "configName": "Huge Wild Fire Agony", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.623Z", - "hashShort": "ffc50df556362792", + "dateModified": "2025-07-05T23:28:59.381Z", + "hashShort": "bca14430e20adadf", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 24697, - ], - "fromEgg": "Metal Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 49, - "goldenThumbnail": "rbxassetid://14968205654", - "maxChance": 0.19900495532289, - "name": "Cyborg Panda", + "goldenThumbnail": "rbxassetid://14976511102", + "huge": true, + "indexDesc": "Hatched from Hype Gifts in PSX!", + "indexObtainable": true, + "name": "Huge Party Penguin", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968205745", + "thumbnail": "rbxassetid://14976511281", }, - "configName": "Cyborg Panda", + "configName": "Huge Party Penguin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.618Z", - "hashShort": "8b26d86c43613d9c", + "dateModified": "2025-07-05T23:28:59.367Z", + "hashShort": "8c1b69503e9d8ec6", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 34210, - ], - "fromEgg": "Metal Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 49, - "goldenThumbnail": "rbxassetid://14968204710", - "maxChance": 0.0009990009990009992, - "name": "Cyborg Dominus", - "overrideZoneNumber": 52, + "goldenThumbnail": "rbxassetid://14976362945", + "huge": true, + "indexDesc": "Earned from Group Reward in PSX!", + "indexObtainable": false, + "name": "Huge BIG Maskot", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968204801", + "thumbnail": "rbxassetid://14976363084", }, - "configName": "Cyborg Dominus", + "configName": "Huge BIG Maskot", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.620Z", - "hashShort": "d4fd6d1c8add01a2", + "dateModified": "2025-07-05T23:28:59.382Z", + "hashShort": "bcaaa79d5ae6329c", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 2620, - ], - "fromEgg": "Zebra Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 28, - "goldenThumbnail": "rbxassetid://14968191884", - "maxChance": 0.006896551724137932, - "name": "Cheetah", + "fly": true, + "goldenThumbnail": "rbxassetid://14976557900", + "hideSerial": true, + "huge": true, + "indexDesc": "Found in the (Epic, Mythical) Series 2 Merch Gifts!", + "indexObtainable": true, + "name": "Huge Stealth Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968191981", + "thumbnail": "rbxassetid://14976557966", }, - "configName": "Cheetah", + "configName": "Huge Stealth Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.621Z", - "hashShort": "1b73a2c5e2b7a6ce", + "dateModified": "2025-07-05T23:28:59.370Z", + "hashShort": "93058d78c79b95fd", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 4004, - ], - "fromEgg": "Cowboy Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 33, - "goldenThumbnail": "rbxassetid://14968259225", - "maxChance": 0.013806706114398421, - "name": "Honey Badger", + "goldenThumbnail": "rbxassetid://14976460376", + "huge": true, + "indexDesc": "Found in the Lucky Block Merch!", + "indexObtainable": true, + "name": "Huge Husky", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968259388", + "thumbnail": "rbxassetid://14976460483", }, - "configName": "Honey Badger", + "configName": "Huge Husky", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.622Z", - "hashShort": "ffba75d95870a626", + "dateModified": "2025-07-05T23:28:59.368Z", + "hashShort": "dd2c057c8fe54025", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 8, - ], - "fromEgg": "Paw Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 2, - "goldenThumbnail": "rbxassetid://14968281421", - "maxChance": 0.19083969465648856, - "name": "Monkey", - "power": 8, + "fly": true, + "goldenThumbnail": "rbxassetid://14976427618", + "hideSerial": true, + "huge": true, + "indexDesc": "Found in the (Legendary, Mythical) Series 2 Merch Gifts!", + "indexObtainable": true, + "name": "Huge Exquisite Parrot", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968281826", + "thumbnail": "rbxassetid://14976427729", }, - "configName": "Monkey", + "configName": "Huge Exquisite Parrot", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.624Z", - "hashShort": "b29d08c10bde7cda", + "dateModified": "2025-07-05T23:28:59.389Z", + "hashShort": "ff70bf6955ff1264", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 2222, - ], - "fromEgg": "Cheetah Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 29, - "goldenThumbnail": "rbxassetid://14968244875", - "maxChance": 0.8620689655172413, - "name": "Gazelle", + "animations": { + "colorVariants": [ + { + "Chance": 0.35, + "Color": null, + "Desc": "Comes in a Yellow color! (35%)", + "Id": 1, + "IsUnique": true, + "Magnitude": 1, + "Name": "Yellow", + "Title": "Chroma", + }, + { + "Chance": 0.3, + "Color": null, + "Desc": "Comes in a Pink color! (30%)", + "Id": 2, + "IsUnique": true, + "Magnitude": 1, + "Name": "Pink", + "Title": "Chroma", + }, + { + "Chance": 0.2, + "Color": null, + "Desc": "Comes in a Blue color! (20%)", + "Id": 3, + "IsUnique": true, + "Magnitude": 1, + "Name": "Blue", + "Title": "Chroma", + }, + { + "Chance": 0.1, + "Color": null, + "Desc": "Comes in an Orange color! (10%)", + "Id": 4, + "IsUnique": true, + "Magnitude": 1, + "Name": "Orange", + "Title": "Chroma", + }, + { + "Chance": 0.04, + "Color": null, + "Desc": "Comes in a Red color! (4%)", + "Id": 5, + "IsUnique": true, + "Magnitude": 1, + "Name": "Red", + "Title": "Chroma", + }, + { + "Chance": 0.01, + "Color": null, + "Desc": "Comes in a Purple color! (1%)", + "Id": 6, + "IsUnique": true, + "Magnitude": 1, + "Name": "Purple", + "Title": "Chroma", + }, + ], + }, + "fly": true, + "goldenThumbnail": "rbxassetid://14976381485", + "huge": true, + "name": "Huge Chroma Lucki", + "preventGolden": true, "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968245015", + "thumbnail": "rbxassetid://14976381547", }, - "configName": "Gazelle", + "configName": "Huge Chroma Lucki", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.623Z", - "hashShort": "657b88aebbca5377", + "dateModified": "2025-07-05T23:28:59.374Z", + "hashShort": "f6cf4f41d60f9832", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968271803", - "name": "Lava Scorpion", + "animations": { + "colorVariants": [ + { + "Chance": 0.35, + "Color": null, + "Desc": "Comes in a Yellow color! (35%)", + "Id": 1, + "IsUnique": true, + "Magnitude": 1, + "Name": "Yellow", + "Title": "Chroma", + }, + { + "Chance": 0.3, + "Color": null, + "Desc": "Comes in a Pink color! (30%)", + "Id": 2, + "IsUnique": true, + "Magnitude": 1, + "Name": "Pink", + "Title": "Chroma", + }, + { + "Chance": 0.2, + "Color": null, + "Desc": "Comes in a Blue color! (20%)", + "Id": 3, + "IsUnique": true, + "Magnitude": 1, + "Name": "Blue", + "Title": "Chroma", + }, + { + "Chance": 0.1, + "Color": null, + "Desc": "Comes in an Orange color! (10%)", + "Id": 4, + "IsUnique": true, + "Magnitude": 1, + "Name": "Orange", + "Title": "Chroma", + }, + { + "Chance": 0.04, + "Color": null, + "Desc": "Comes in a Red color! (4%)", + "Id": 5, + "IsUnique": true, + "Magnitude": 1, + "Name": "Red", + "Title": "Chroma", + }, + { + "Chance": 0.01, + "Color": null, + "Desc": "Comes in a Purple color! (1%)", + "Id": 6, + "IsUnique": true, + "Magnitude": 1, + "Name": "Purple", + "Title": "Chroma", + }, + ], + }, + "goldenThumbnail": "rbxassetid://15282013171", + "huge": true, + "name": "Huge Chroma Lucky Block Mimic", + "preventGolden": true, "rarity": { "Announce": true, "Color": null, @@ -78857,117 +82077,113 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968271886", + "thumbnail": "rbxassetid://15282013087", }, - "configName": "Lava Scorpion", + "configName": "Huge Chroma Lucky Block Mimic", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.923Z", - "hashShort": "d42bdc0dfe74c4fa", + "dateModified": "2025-07-05T23:28:59.395Z", + "hashShort": "f3b5370d90dee34d", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 90, - ], - "fromEgg": "Hive Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 5, - "goldenThumbnail": "rbxassetid://14968327286", - "maxChance": 0.38011695906432746, - "name": "Scarecrow Cat", + "goldenThumbnail": "rbxassetid://14976568507", + "hideSerial": true, + "huge": true, + "indexDesc": "Found in the (Basic, Rare, Mythical) Series 2 Merch Gifts!", + "indexObtainable": true, + "name": "Huge Tiedye Bunny", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968327391", + "thumbnail": "rbxassetid://14976568628", }, - "configName": "Scarecrow Cat", + "configName": "Huge Tiedye Bunny", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.928Z", - "hashShort": "111b2e40f8dd9223", + "dateModified": "2025-07-05T23:28:59.369Z", + "hashShort": "8fee5bb9f0903fa0", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 654, - ], - "fromEgg": "Jungle Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 18, - "goldenThumbnail": "rbxassetid://14968331949", - "maxChance": 0.5899705014749262, - "name": "Sloth", + "goldenThumbnail": "rbxassetid://14976567658", + "hideSerial": true, + "huge": true, + "indexDesc": "Found in the (Rare, Mythical) Series 2 Merch Gifts!", + "indexObtainable": true, + "name": "Huge Tiedye Axolotl", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968332057", + "thumbnail": "rbxassetid://14976567779", }, - "configName": "Sloth", + "configName": "Huge Tiedye Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.924Z", - "hashShort": "2b356acecad92423", + "dateModified": "2025-07-05T23:28:59.390Z", + "hashShort": "0a3ddab6b5c0eb25", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 3137, - ], - "fromEgg": "Egyptian Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 31, - "goldenThumbnail": "rbxassetid://14968336766", - "maxChance": 0.018687552428966536, - "name": "Spitting Dino", + "goldenThumbnail": "rbxassetid://14976494461", + "hideSerial": true, + "huge": true, + "indexDesc": "Found in the (Epic, Mythical) Series 2 Merch Gifts!", + "indexObtainable": true, + "name": "Huge Mosaic Lamb", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968336870", + "thumbnail": "rbxassetid://14976494608", }, - "configName": "Spitting Dino", + "configName": "Huge Mosaic Lamb", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.926Z", - "hashShort": "f44acb40bf3e0a01", + "dateModified": "2025-07-05T23:28:59.398Z", + "hashShort": "26e35abcef3ae15a", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 3, + "animations": { + "balloon": true, + }, "fly": true, - "goldenThumbnail": "rbxassetid://14968286289", - "name": "Nebula Dragon", + "goldenThumbnail": "rbxassetid://14976576256", + "huge": true, + "indexDesc": "Found in the Series 1 CoolBeanz! [RARE]", + "indexObtainable": true, + "name": "Huge White Balloon Cat", "rarity": { "Announce": true, "Color": null, @@ -78980,120 +82196,125 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968286552", + "thumbnail": "rbxassetid://14976576332", }, - "configName": "Nebula Dragon", + "configName": "Huge White Balloon Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.930Z", - "hashShort": "bc210bf0d18c4b97", + "dateModified": "2025-07-05T23:28:59.377Z", + "hashShort": "431a4c7bf7d7b780", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 478989, - ], - "fly": true, - "fromEgg": "Wizard Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 73, - "goldenThumbnail": "rbxassetid://14968294018", - "maxChance": 0.289704385644888, - "name": "Owl", + "animations": { + "flipbookAnimation": [ + "rbxassetid://13982245778", + "rbxassetid://13982466934", + ], + "flipbookAnimationGold": [ + "rbxassetid://13982245670", + "rbxassetid://13982466789", + ], + "flipbookAnimationSpeed": 1, + }, + "goldenThumbnail": "rbxassetid://14976352499", + "huge": true, + "indexDesc": "Earned from Claw Machine Event in PSX!", + "indexObtainable": false, + "name": "Huge Arcade Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968294097", + "thumbnail": "rbxassetid://14976352617", }, - "configName": "Owl", + "configName": "Huge Arcade Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.919Z", - "hashShort": "b9d0e4918871dad3", + "dateModified": "2025-07-05T23:28:59.398Z", + "hashShort": "7ea740eb23eb9300", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 18, - ], + "animations": { + "balloon": true, + }, "fly": true, - "fromEgg": "Paw Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 2, - "goldenThumbnail": "rbxassetid://14968295137", - "maxChance": 0.2517985611510791, - "name": "Parrot", - "power": 18, + "goldenThumbnail": "rbxassetid://14976358265", + "huge": true, + "indexDesc": "Hatched from eggs in PSX!", + "indexObtainable": false, + "name": "Huge Balloon Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968295353", + "thumbnail": "rbxassetid://14976358748", }, - "configName": "Parrot", + "configName": "Huge Balloon Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.922Z", - "hashShort": "a7ccf371498c7a76", + "dateModified": "2025-07-05T23:28:59.389Z", + "hashShort": "1b58f3ef981a6304", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 3545, - ], - "fromEgg": "Sandstone Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 32, - "goldenThumbnail": "rbxassetid://14968328243", - "maxChance": 0.7889546351084813, - "name": "Scorpion", + "animations": { + "balloon": true, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://14976365612", + "huge": true, + "indexDesc": "Exclusive Shop pet in PSX!", + "indexObtainable": false, + "name": "Huge Blue Balloon Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968328402", + "thumbnail": "rbxassetid://14976365873", }, - "configName": "Scorpion", + "configName": "Huge Blue Balloon Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.934Z", - "hashShort": "a4c5f5428a471055", + "dateModified": "2025-07-05T23:28:59.378Z", + "hashShort": "04b1422a81bcc560", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "rbxassetid://14968243684", - "name": "Galaxy Pegasus", + "goldenThumbnail": "rbxassetid://14976374264", + "huge": true, + "indexDesc": "Comes with the Cat plush!", + "indexObtainable": true, + "name": "Huge Cat", "rarity": { "Announce": true, "Color": null, @@ -79106,20 +82327,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968243819", + "thumbnail": "rbxassetid://14976374906", }, - "configName": "Galaxy Pegasus", + "configName": "Huge Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.921Z", - "hashShort": "252647a82fcecee6", + "dateModified": "2025-07-05T23:28:59.383Z", + "hashShort": "40e4bddbf46fcb76", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968347727", - "name": "Subzero Cat", + "goldenThumbnail": "rbxassetid://15281989997", + "huge": true, + "indexDesc": "Earned from limited-time My Restaurant promotion!", + "indexObtainable": false, + "name": "Huge Chef Cat", "rarity": { "Announce": true, "Color": null, @@ -79132,85 +82355,78 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968347840", + "thumbnail": "rbxassetid://15281989941", }, - "configName": "Subzero Cat", + "configName": "Huge Chef Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.927Z", - "hashShort": "6621f14ec0bf3100", + "dateModified": "2025-07-05T23:28:59.372Z", + "hashShort": "0cef3913456fa55a", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 2819, - ], - "fromEgg": "Egyptian Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 31, - "goldenThumbnail": "rbxassetid://14968208009", - "maxChance": 0.830557885731846, - "name": "Dino", + "goldenThumbnail": "rbxassetid://14976385365", + "huge": true, + "indexDesc": "Found in the Event Cool Egg!", + "indexObtainable": true, + "name": "Huge Cool Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968208845", + "thumbnail": "rbxassetid://14976385467", }, - "configName": "Dino", + "configName": "Huge Cool Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.918Z", - "hashShort": "80d3c8e3d8b50707", + "dateModified": "2025-07-05T23:28:59.369Z", + "hashShort": "288137ea7d38d543", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 182, - ], - "fromEgg": "Cat Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 8, - "goldenThumbnail": "rbxassetid://14968254850", - "maxChance": 0.12562814070351758, - "name": "Hedgehog", + "goldenThumbnail": "rbxassetid://15281989874", + "huge": true, + "indexDesc": "Gifted to top 250 spenders on PSX!", + "indexObtainable": false, + "name": "Huge Crowned Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968254942", + "thumbnail": "rbxassetid://15281989820", }, - "configName": "Hedgehog", + "configName": "Huge Crowned Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.939Z", - "hashShort": "fbb42d7a1e1422b0", + "dateModified": "2025-07-05T23:28:59.368Z", + "hashShort": "3c779a6d2ce8f4af", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "rbxassetid://14968210551", - "name": "Dominus Darkwing", + "goldenThumbnail": "rbxassetid://14976391512", + "huge": true, + "indexDesc": "Comes with Series 2 Cyborg Cat Collector Bundle!", + "indexObtainable": true, + "name": "Huge Cyborg Cat", "rarity": { "Announce": true, "Color": null, @@ -79223,53 +82439,50 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968210625", + "thumbnail": "rbxassetid://14976391620", }, - "configName": "Dominus Darkwing", + "configName": "Huge Cyborg Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.939Z", - "hashShort": "ffa1915c27943aa0", + "dateModified": "2025-07-05T23:28:59.396Z", + "hashShort": "9ec263eaf854259d", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 755, - ], - "fromEgg": "Palm Tree Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 19, - "goldenThumbnail": "rbxassetid://14968257308", - "maxChance": 0.30303030303030304, - "name": "Hippo", + "goldenThumbnail": "rbxassetid://14976396615", + "huge": true, + "indexDesc": "Chance to get from purchasing high-end Diamond packs!", + "indexObtainable": true, + "name": "Huge Diamond Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968257583", + "thumbnail": "rbxassetid://14976396731", }, - "configName": "Hippo", + "configName": "Huge Diamond Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.940Z", - "hashShort": "8d8291f95911f94c", + "dateModified": "2025-07-05T23:28:59.381Z", + "hashShort": "8c9e31602638ad5b", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "rbxassetid://14968347369", - "name": "Stunt Unicorn", + "goldenThumbnail": "rbxassetid://14976402329", + "huge": true, + "indexDesc": "Hatched from eggs in PSX!", + "indexObtainable": false, + "name": "Huge Doodle Cat", "rarity": { "Announce": true, "Color": null, @@ -79282,214 +82495,193 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968347562", + "thumbnail": "rbxassetid://14976402524", }, - "configName": "Stunt Unicorn", + "configName": "Huge Doodle Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.934Z", - "hashShort": "6af7897468728031", + "dateModified": "2025-07-05T23:28:59.375Z", + "hashShort": "021a286811701f66", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 545465, - ], - "fromEgg": "Eerie Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 75, - "goldenThumbnail": "rbxassetid://14968358254", - "maxChance": 0.049949550953536925, - "name": "Werewolf", + "goldenThumbnail": "rbxassetid://15281989430", + "huge": true, + "indexDesc": "Hatched from the 2022 Easter Event in PSX!", + "indexObtainable": false, + "name": "Huge Easter Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968358411", + "thumbnail": "rbxassetid://15281989384", }, - "configName": "Werewolf", + "configName": "Huge Easter Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.128Z", - "hashShort": "640d4eda5e3840a7", + "dateModified": "2025-07-05T23:28:59.386Z", + "hashShort": "6c1d4d360515d255", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 719684, - ], - "fly": true, - "fromEgg": "Cursed Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 77, - "goldenThumbnail": "rbxassetid://14968357496", - "maxChance": 0.6993006993006994, - "name": "Vampire Bat", + "goldenThumbnail": "rbxassetid://14976419700", + "huge": true, + "indexDesc": "Found in the Christmas 2022 Stocking in PSX!", + "indexObtainable": true, + "name": "Huge Elf Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968357579", + "thumbnail": "rbxassetid://14976419865", }, - "configName": "Vampire Bat", + "configName": "Huge Elf Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.129Z", - "hashShort": "03fe2ba7f9c0d049", + "dateModified": "2025-07-05T23:28:59.380Z", + "hashShort": "48cb6c822f3db785", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 767245, - ], - "fly": true, - "fromEgg": "Cursed Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 77, - "goldenThumbnail": "rbxassetid://14968351176", - "maxChance": 0.08991008991008992, - "name": "Grim Reaper", + "goldenThumbnail": "rbxassetid://14976424036", + "huge": true, + "indexDesc": "Hatched from eggs in PSX!", + "indexObtainable": false, + "name": "Huge Error Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968351247", + "thumbnail": "rbxassetid://14976424262", }, - "configName": "Grim Reaper", + "configName": "Huge Error Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.951Z", - "hashShort": "3958d43d8d48326b", + "dateModified": "2025-07-05T23:28:59.373Z", + "hashShort": "aa347c50569cd7fe", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 603715, - ], - "fromEgg": "Abyssal Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 76, - "goldenThumbnail": "rbxassetid://14968362721", - "maxChance": 0.1, - "name": "Zombie Bull", + "evolved": true, + "goldenThumbnail": "rbxassetid://14976425481", + "huge": true, + "indexDesc": "Earned from evolving Huge Hacked Cats in PSX!", + "indexObtainable": true, + "name": "Huge Evolved Hacked Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968362793", + "thumbnail": "rbxassetid://14976425579", }, - "configName": "Zombie Bull", + "configName": "Huge Evolved Hacked Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.956Z", - "hashShort": "c00ca1807ca6bd3c", + "dateModified": "2025-07-05T23:28:59.397Z", + "hashShort": "d9953042bbacced1", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 15929, - ], - "fromEgg": "Volcano Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 45, - "goldenThumbnail": "rbxassetid://14968282695", - "maxChance": 0.04994755506717947, - "name": "Mortuus", + "evolved": true, + "goldenThumbnail": "rbxassetid://14976426523", + "huge": true, + "indexDesc": "Earned from evolving Huge Pixel Cats in PSX!", + "indexObtainable": true, + "name": "Huge Evolved Pixel Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968282781", + "thumbnail": "rbxassetid://14976426599", }, - "configName": "Mortuus", + "configName": "Huge Evolved Pixel Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.953Z", - "hashShort": "d82d652b43181190", + "dateModified": "2025-07-05T23:28:59.373Z", + "hashShort": "3930cfee59eaa9de", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 578420, - ], - "fromEgg": "Abyssal Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 76, - "goldenThumbnail": "rbxassetid://14968363154", - "maxChance": 0.5, - "name": "Zombie Squirrel", + "goldenThumbnail": "rbxassetid://14976427212", + "hideSerial": true, + "huge": true, + "indexDesc": "Found in the (Legendary, Mythical) Series 2 Merch Gifts!", + "indexObtainable": true, + "name": "Huge Exquisite Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968363305", + "thumbnail": "rbxassetid://14976427289", }, - "configName": "Zombie Squirrel", + "configName": "Huge Exquisite Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.956Z", - "hashShort": "862f1d387d632854", + "dateModified": "2025-07-05T23:28:59.376Z", + "hashShort": "27cf017bb95d1b7e", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968183149", - "name": "Blobenstein", + "goldenThumbnail": "rbxassetid://15281989314", + "huge": true, + "indexDesc": "From the 2021 Insane Christmas Exclusive Egg!", + "indexObtainable": false, + "name": "Huge Festive Cat", "rarity": { "Announce": true, "Color": null, @@ -79502,53 +82694,55 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968183240", + "thumbnail": "rbxassetid://15281989250", }, - "configName": "Blobenstein", + "configName": "Huge Festive Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.954Z", - "hashShort": "1b3094e526eb0489", + "dateModified": "2025-07-05T23:28:59.399Z", + "hashShort": "6b53fa1d30f0c53e", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 12701, - ], + "animations": { + "balloon": true, + }, "fly": true, - "fromEgg": "Magma Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 43, - "goldenThumbnail": "rbxassetid://14968301020", - "maxChance": 0.034161490683229816, - "name": "Phoenix", + "goldenThumbnail": "rbxassetid://14976446836", + "huge": true, + "indexDesc": "Hatched from eggs in PSX!", + "indexObtainable": false, + "name": "Huge Green Balloon Cat", + "preventGolden": true, "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968301259", + "thumbnail": "rbxassetid://14976447015", }, - "configName": "Phoenix", + "configName": "Huge Green Balloon Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.263Z", - "hashShort": "b031af9344164e05", + "dateModified": "2025-07-05T23:29:00.475Z", + "hashShort": "28bf47038f83b363", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968270529", - "name": "Knife Cat", + "goldenThumbnail": "rbxassetid://14976448160", + "huge": true, + "indexDesc": "Found in the Exclusive Jolly Egg!", + "indexObtainable": true, + "name": "Huge Grinch Cat", "rarity": { "Announce": true, "Color": null, @@ -79561,53 +82755,50 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968270716", + "thumbnail": "rbxassetid://14976448309", }, - "configName": "Knife Cat", + "configName": "Huge Grinch Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.254Z", - "hashShort": "0fd7542c599b1a0c", + "dateModified": "2025-07-05T23:28:59.384Z", + "hashShort": "cc7e539eede688da", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 777, - ], - "fromEgg": "Beach Ball Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 20, - "goldenThumbnail": "rbxassetid://14968329137", - "maxChance": 0.7245326764237067, - "name": "Seal", + "goldenThumbnail": "rbxassetid://14976449416", + "huge": true, + "indexDesc": "Hatched from eggs in PSX!", + "indexObtainable": false, + "name": "Huge Hacked Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968329238", + "thumbnail": "rbxassetid://14976449581", }, - "configName": "Seal", + "configName": "Huge Hacked Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.256Z", - "hashShort": "54a481f391bd4b45", + "dateModified": "2025-07-05T23:28:59.397Z", + "hashShort": "9c091e249b28858a", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "rbxassetid://15260344356", - "name": "Storm Dragon", + "goldenThumbnail": "rbxassetid://14976463072", + "huge": true, + "indexDesc": "Found in the Exclusive Elemental Egg!", + "indexObtainable": true, + "name": "Huge Inferno Cat", "rarity": { "Announce": true, "Color": null, @@ -79620,24 +82811,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15260344244", + "thumbnail": "rbxassetid://14976463498", }, - "configName": "Storm Dragon", + "configName": "Huge Inferno Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.266Z", - "hashShort": "d388d553acbc679c", + "dateModified": "2025-07-05T23:28:59.396Z", + "hashShort": "05ea5036e0823cb9", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - }, - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "rbxassetid://14968359701", - "name": "Wicked Angelus", + "goldenThumbnail": "rbxassetid://14976470496", + "huge": true, + "indexDesc": "Hatched from eggs in PSX!", + "indexObtainable": false, + "name": "Huge Kawaii Cat", "rarity": { "Announce": true, "Color": null, @@ -79650,52 +82839,50 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968359818", + "thumbnail": "rbxassetid://14976470713", }, - "configName": "Wicked Angelus", + "configName": "Huge Kawaii Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.278Z", - "hashShort": "4f277b1fffaf3566", + "dateModified": "2025-07-05T23:28:59.390Z", + "hashShort": "168e2b14f2ac6cc4", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 1570, - ], - "fromEgg": "Tiki Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 26, - "goldenThumbnail": "rbxassetid://14968275203", - "maxChance": 0.7841599686336013, - "name": "Luau Cat", + "goldenThumbnail": "rbxassetid://14976472430", + "huge": true, + "indexDesc": "Found in the Exclusive Meme Egg!", + "indexObtainable": true, + "name": "Huge Knife Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968275276", + "thumbnail": "rbxassetid://14976472648", }, - "configName": "Luau Cat", + "configName": "Huge Knife Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.258Z", - "hashShort": "55a7548da9ad4aa7", + "dateModified": "2025-07-05T23:28:59.376Z", + "hashShort": "4e3637fd77688fd5", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://81626212949143", - "name": "Cosmic Axolotl", + "goldenThumbnail": "rbxassetid://14976475436", + "huge": true, + "indexDesc": "Hatched from the 2023 St. Patrick's Event in PSX!", + "indexObtainable": false, + "name": "Huge Leprechaun Cat", "rarity": { "Announce": true, "Color": null, @@ -79708,21 +82895,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15201620186", + "thumbnail": "rbxassetid://14976475596", }, - "configName": "Cosmic Axolotl", + "configName": "Huge Leprechaun Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.258Z", - "hashShort": "f859e44a9c2d2141", + "dateModified": "2025-07-05T23:28:59.375Z", + "hashShort": "5db2e473118e6f23", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "rbxassetid://15260345481", - "name": "Sapphire Phoenix", + "goldenThumbnail": "rbxassetid://14976477689", + "huge": true, + "indexDesc": "Hatched from the Tiki Egg in PSX!", + "indexObtainable": true, + "name": "Huge Luau Cat", "rarity": { "Announce": true, "Color": null, @@ -79735,85 +82923,83 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15260345330", + "thumbnail": "rbxassetid://14976477787", }, - "configName": "Sapphire Phoenix", + "configName": "Huge Luau Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.255Z", - "hashShort": "32279e8414ba0cf1", + "dateModified": "2025-07-05T23:28:59.370Z", + "hashShort": "9675d3f67b906a36", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 2230, - ], - "fromEgg": "Zebra Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 28, - "goldenThumbnail": "rbxassetid://14968362485", - "maxChance": 0.1554605518849592, - "name": "Zebra", + "goldenThumbnail": "rbxassetid://14976485056", + "huge": true, + "indexDesc": "Found in one of the first non-tradable Exclusive Eggs!", + "indexObtainable": false, + "name": "Huge Lucky Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968362598", + "thumbnail": "rbxassetid://14976485216", }, - "configName": "Zebra", + "configName": "Huge Lucky Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.268Z", - "hashShort": "83b930b8ed17c2cc", + "dateModified": "2025-07-05T23:28:59.392Z", + "hashShort": "d1084d55e9c5fc9d", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 2093, - ], - "fromEgg": "Zebra Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 28, - "goldenThumbnail": "rbxassetid://14968247326", - "maxChance": 0.7773027594247959, - "name": "Giraffe", + "goldenThumbnail": "rbxassetid://14976497513", + "huge": true, + "indexDesc": "Found in the Exclusive Neon Egg!", + "indexObtainable": true, + "name": "Huge Neon Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968247427", + "thumbnail": "rbxassetid://14976497661", }, - "configName": "Giraffe", + "configName": "Huge Neon Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.255Z", - "hashShort": "af7ec77c04c75a1e", + "dateModified": "2025-07-05T23:28:59.387Z", + "hashShort": "9524458e0c63f9ea", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://14968342047", - "hideSerial": true, - "name": "Stealth Bobcat", + "animations": { + "balloon": true, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://14976505626", + "huge": true, + "indexDesc": "Hatched from eggs in PSX!", + "indexObtainable": false, + "name": "Huge Orange Balloon Cat", + "preventGolden": true, "rarity": { "Announce": true, "Color": null, @@ -79826,278 +83012,162 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968342188", + "thumbnail": "rbxassetid://14976505912", }, - "configName": "Stealth Bobcat", + "configName": "Huge Orange Balloon Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.254Z", - "hashShort": "28ff0c13b922ac3f", + "dateModified": "2025-07-05T23:28:59.385Z", + "hashShort": "3a2af613b75b7e43", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 10987, - ], - "fromEgg": "Ice Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 41, - "goldenThumbnail": "rbxassetid://14968308633", - "maxChance": 0.0012422360248447205, - "name": "Polar Bear", + "goldenThumbnail": "rbxassetid://14976507026", + "huge": true, + "indexDesc": "Earned from the 2023 Easter Event in PSX!", + "indexObtainable": false, + "name": "Huge Painted Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968308767", - }, - "configName": "Polar Bear", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.260Z", - "hashShort": "5a331641437c829e", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 4460, - ], - "fromWorldNumber": 1, - "goldenThumbnail": "rbxassetid://14968189749", - "hidden": false, - "name": "Candycane", - "thumbnail": "rbxassetid://14968190013", + "thumbnail": "rbxassetid://14976507206", }, - "configName": "Candycane", + "configName": "Huge Painted Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.277Z", - "hashShort": "6854b301eefe930c", + "dateModified": "2025-07-05T23:28:59.388Z", + "hashShort": "2732c652c80c95c7", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 1245, - ], - "fromEgg": "Tropical Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 24, - "goldenThumbnail": "rbxassetid://14968280140", - "maxChance": 0.7272727272727273, - "name": "Mermaid Cat", + "goldenThumbnail": "rbxassetid://14976508831", + "huge": true, + "indexDesc": "Hatched from 2023 Anniversary Gifts in PSX!", + "indexObtainable": true, + "name": "Huge Party Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968280233", - }, - "configName": "Mermaid Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.252Z", - "hashShort": "cd5f7a8fc339944a", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 1373, - ], - "fly": true, - "fromWorldNumber": 1, - "goldenThumbnail": "rbxassetid://14968321872", - "hidden": false, - "name": "Rudolf", - "thumbnail": "rbxassetid://14968321951", + "thumbnail": "rbxassetid://14976508941", }, - "configName": "Rudolf", + "configName": "Huge Party Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.270Z", - "hashShort": "7580217bb1e21666", + "dateModified": "2025-07-05T23:28:59.386Z", + "hashShort": "201494bd64a13b43", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 6113, - ], - "fromEgg": "Melted Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 36, - "goldenThumbnail": "rbxassetid://14968234834", - "maxChance": 0.001132078683724454, - "name": "Fawn", + "goldenThumbnail": "rbxassetid://14976516168", + "huge": true, + "indexDesc": "Earned from the Cinco de Mayo Event in PSX!", + "indexObtainable": false, + "name": "Huge Piñata Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968235057", + "thumbnail": "rbxassetid://14976516399", }, - "configName": "Fawn", + "configName": "Huge Pinata Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.280Z", - "hashShort": "ec507e8fb77ca120", + "dateModified": "2025-07-05T23:28:59.367Z", + "hashShort": "e69e9f36b3eb7907", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 7193, - ], - "fromEgg": "Snowman Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 39, - "goldenThumbnail": "rbxassetid://14968300629", - "maxChance": 0.9079445145018915, - "name": "Penguin", + "goldenThumbnail": "rbxassetid://14976517135", + "huge": true, + "indexDesc": "Hatched from eggs in PSX!", + "indexObtainable": false, + "name": "Huge Pineapple Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968300735", - }, - "configName": "Penguin", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.273Z", - "hashShort": "6bb2637e7ba85856", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 418, - ], - "fly": true, - "fromWorldNumber": 1, - "goldenThumbnail": "rbxassetid://14968235535", - "hidden": false, - "name": "Festive Cardinal", - "thumbnail": "rbxassetid://14968235639", - }, - "configName": "Festive Cardinal", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.274Z", - "hashShort": "24d0690c2780445c", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 4460, - ], - "fromWorldNumber": 1, - "goldenThumbnail": "rbxassetid://14968292561", - "hidden": false, - "name": "North Pole Wolf", - "thumbnail": "rbxassetid://14968292692", - }, - "configName": "North Pole Wolf", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.273Z", - "hashShort": "cca3e23c7fcedc91", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 167061, - ], - "fromWorldNumber": 1, - "fromZoneNumber": 63, - "goldenThumbnail": "rbxassetid://14968326741", - "hidden": false, - "name": "Santa Paws", - "thumbnail": "rbxassetid://14968326864", - }, - "configName": "Santa Paws", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.281Z", - "hashShort": "5e4d806a56ad1126", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 14485, - ], - "fromWorldNumber": 1, - "goldenThumbnail": "rbxassetid://14968330751", - "hidden": false, - "name": "Silver Stag", - "thumbnail": "rbxassetid://14968330834", + "thumbnail": "rbxassetid://14976517235", }, - "configName": "Silver Stag", + "configName": "Huge Pineapple Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.272Z", - "hashShort": "567922f02eccaf7f", + "dateModified": "2025-07-05T23:28:59.388Z", + "hashShort": "81c81b113e93fef2", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 14485, - ], - "fly": true, - "fromWorldNumber": 1, - "goldenThumbnail": "rbxassetid://14968330497", - "hidden": false, - "name": "Silver Dragon", - "thumbnail": "rbxassetid://14968330592", + "goldenThumbnail": "rbxassetid://14976386012", + "huge": true, + "indexDesc": "Comes with the Corgi plush!", + "indexObtainable": true, + "name": "Huge Corgi", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://14976386115", }, - "configName": "Silver Dragon", + "configName": "Huge Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.271Z", - "hashShort": "a243bd045d18769b", + "dateModified": "2025-07-05T23:28:59.391Z", + "hashShort": "0ea4a00f61c0a26a", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968270804", - "name": "Koala", + "goldenThumbnail": "rbxassetid://15281989771", + "huge": true, + "indexDesc": "Gifted to top 50 spenders on PSX!", + "indexObtainable": false, + "name": "Huge Crowned Corgi", "rarity": { "Announce": true, "Color": null, @@ -80110,20 +83180,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968270886", + "thumbnail": "rbxassetid://15281989661", }, - "configName": "Koala", + "configName": "Huge Crowned Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.267Z", - "hashShort": "3861def18cb953bf", + "dateModified": "2025-07-05T23:28:59.366Z", + "hashShort": "e7fd9dd158754261", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968293579", - "name": "Orca", + "goldenThumbnail": "rbxassetid://14976388332", + "hideSerial": true, + "huge": true, + "indexDesc": "Found in the (Epic, Mythical) Series 1 Merch Gifts!", + "indexObtainable": true, + "name": "Huge Crystal Dog", "rarity": { "Announce": true, "Color": null, @@ -80136,21 +83209,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968293678", + "thumbnail": "rbxassetid://14976388450", }, - "configName": "Orca", + "configName": "Huge Crystal Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.269Z", - "hashShort": "ccee294538d8ff37", + "dateModified": "2025-07-05T23:28:59.378Z", + "hashShort": "bd256ce6d5b2c81b", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, "fly": true, - "goldenThumbnail": "rbxassetid://14968244583", - "name": "Gargoyle Dragon", + "goldenThumbnail": "rbxassetid://14976389236", + "huge": true, + "indexDesc": "Hatched from eggs in PSX!", + "indexObtainable": false, + "name": "Huge Cupid Corgi", "rarity": { "Announce": true, "Color": null, @@ -80163,52 +83238,50 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968244743", + "thumbnail": "rbxassetid://14976389349", }, - "configName": "Gargoyle Dragon", + "configName": "Huge Cupid Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.269Z", - "hashShort": "a1fe4be2854b3978", + "dateModified": "2025-07-05T23:28:59.379Z", + "hashShort": "1a1a9232ddd396a3", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 7807, - ], - "fromEgg": "Icicle Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 38, - "goldenThumbnail": "rbxassetid://14968175100", - "maxChance": 0.05044136191677175, - "name": "Snow Fox", + "goldenThumbnail": "rbxassetid://14976397595", + "huge": true, + "indexDesc": "Comes with the Dog plush!", + "indexObtainable": true, + "name": "Huge Dog", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968175223", + "thumbnail": "rbxassetid://14976397743", }, - "configName": "Arctic Fox", + "configName": "Huge Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.279Z", - "hashShort": "1bbf258707222e30", + "dateModified": "2025-07-05T23:28:59.553Z", + "hashShort": "a2ad5d162acb951e", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968314806", - "name": "Punkey", + "goldenThumbnail": "rbxassetid://14976420000", + "huge": true, + "indexDesc": "Found in the Christmas 2022 Stocking in PSX!", + "indexObtainable": true, + "name": "Huge Elf Dog", "rarity": { "Announce": true, "Color": null, @@ -80221,20 +83294,79 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968314943", + "thumbnail": "rbxassetid://14976420144", }, - "configName": "Punkey", + "configName": "Huge Elf Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.275Z", - "hashShort": "d30a0a2e282373da", + "dateModified": "2025-07-05T23:28:59.549Z", + "hashShort": "cdbb25cf1365ce68", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968293791", - "name": "Otter", + "animations": { + "jelly": true, + "replacementPool": [ + [ + 1, + 0.5, + ], + [ + 2, + 0.2, + ], + [ + 3, + 0.15, + ], + [ + 4, + 0.1, + ], + [ + 5, + 0.05, + ], + ], + "replacements": [ + { + "desc": "Comes with a Coin inside! (50%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with Diamonds inside! (20%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with a Chest inside! (15%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with a Lucky Block inside! (10%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with a Maskot Pet inside! (5%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + ], + }, + "goldenThumbnail": "rbxassetid://14976465768", + "huge": true, + "indexDesc": "Found in the Exclusive Jelly Egg!", + "indexObtainable": true, + "name": "Huge Jelly Corgi", "rarity": { "Announce": true, "Color": null, @@ -80247,53 +83379,51 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968293937", + "thumbnail": "rbxassetid://14976465933", }, - "configName": "Otter", + "configName": "Huge Jelly Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.267Z", - "hashShort": "337aad46d3a08ff8", + "dateModified": "2025-07-05T23:28:59.549Z", + "hashShort": "8b4e00e280ce433c", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 2427311, - ], - "fromEgg": "Carnival Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 88, - "goldenThumbnail": "rbxassetid://14968190428", - "maxChance": 0.24975024975024976, - "name": "Carnival Elephant", + "goldenThumbnail": "rbxassetid://14976493213", + "hideSerial": true, + "huge": true, + "indexDesc": "Found in the (Epic, Mythical) Series 1 Merch Gifts!", + "indexObtainable": true, + "name": "Huge Mosaic Corgi", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968190542", + "thumbnail": "rbxassetid://14976493326", }, - "configName": "Carnival Elephant", + "configName": "Huge Mosaic Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.279Z", - "hashShort": "8d4821a9728e7df4", + "dateModified": "2025-07-05T23:28:59.539Z", + "hashShort": "f07551071d300fd4", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "rbxassetid://14968234397", - "name": "Fairy Queen", + "goldenThumbnail": "rbxassetid://14976509888", + "huge": true, + "indexDesc": "Hatched from Hype Gifts in PSX!", + "indexObtainable": true, + "name": "Huge Party Dog", "rarity": { "Announce": true, "Color": null, @@ -80306,20 +83436,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968234492", + "thumbnail": "rbxassetid://14976510103", }, - "configName": "Fairy Queen", + "configName": "Huge Party Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.271Z", - "hashShort": "07a6849d5bcd5fe0", + "dateModified": "2025-07-05T23:28:59.547Z", + "hashShort": "4edb9d7d5a462ea7", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://15260351714", - "name": "Sleipnir", + "goldenThumbnail": "rbxassetid://14976519334", + "huge": true, + "indexDesc": "Comes with Series 2 Pixel Corgi Collector Bundle!", + "indexObtainable": true, + "name": "Huge Pixel Corgi", "rarity": { "Announce": true, "Color": null, @@ -80332,21 +83464,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15260351612", + "thumbnail": "rbxassetid://14976519576", }, - "configName": "Sleipnir", + "configName": "Huge Pixel Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.457Z", - "hashShort": "7055b1be7ee366e3", + "dateModified": "2025-07-05T23:28:59.549Z", + "hashShort": "732aba7666594e79", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "fly": true, - "goldenThumbnail": "rbxassetid://14968240791", - "name": "Forest Wyvern", + "goldenThumbnail": "rbxassetid://15281988902", + "huge": true, + "indexDesc": "Comes with the Reindeer Dog plush!", + "indexObtainable": true, + "name": "Huge Reindeer Dog", "rarity": { "Announce": true, "Color": null, @@ -80359,375 +83492,338 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968240950", + "thumbnail": "rbxassetid://15281988831", }, - "configName": "Nature Dragon", + "configName": "Huge Reindeer Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.461Z", - "hashShort": "e22e50257775b5ff", + "dateModified": "2025-07-05T23:28:59.540Z", + "hashShort": "a712d018763b3128", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 2861, - ], - "fromEgg": "Fossil Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 30, - "goldenThumbnail": "rbxassetid://14968262976", - "maxChance": 0.14950041943173228, - "name": "Hyena", + "goldenThumbnail": "rbxassetid://14976538687", + "huge": true, + "indexDesc": "Earned from Scavanger Eggs in PSX!", + "indexObtainable": false, + "name": "Huge Safari Dog", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968263246", + "thumbnail": "rbxassetid://14976538804", }, - "configName": "Hyena", + "configName": "Huge Safari Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.286Z", - "hashShort": "3df58f841dbfdc36", + "dateModified": "2025-07-05T23:28:59.544Z", + "hashShort": "d5003385a5fcbdf2", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 663, - ], - "fromEgg": "Overgrown Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 17, - "goldenThumbnail": "rbxassetid://14968285641", - "maxChance": 0.022556390977443608, - "name": "Mystical Fox", + "fly": true, + "goldenThumbnail": "rbxassetid://15281988331", + "huge": true, + "indexDesc": "Opened from the Halloween Gift in PSX!", + "indexObtainable": true, + "name": "Huge Scary Corgi", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968285793", + "thumbnail": "rbxassetid://15281988264", }, - "configName": "Mystical Fox", + "configName": "Huge Scary Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.287Z", - "hashShort": "a2753672072500db", + "dateModified": "2025-07-05T23:28:59.547Z", + "hashShort": "79f497545f420e3f", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 1653, - ], - "fromEgg": "Sand Bucket Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 26, - "goldenThumbnail": "rbxassetid://14968325769", - "maxChance": 0.7836990595611285, - "name": "Sandcastle Cat", + "fly": true, + "goldenThumbnail": "rbxassetid://14976565367", + "huge": true, + "indexDesc": "Found in one of the first non-tradable Exclusive Eggs!", + "indexObtainable": false, + "name": "Huge Super Corgi", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968325954", + "thumbnail": "rbxassetid://14976565468", }, - "configName": "Sandcastle Cat", + "configName": "Huge Super Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.288Z", - "hashShort": "b317521cd3bf0134", + "dateModified": "2025-07-05T23:28:59.556Z", + "hashShort": "064f88bec2e77208", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 8678, - ], - "fromEgg": "Snowman Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 39, - "goldenThumbnail": "rbxassetid://14968334272", - "maxChance": 0.6459627329192547, - "name": "Snowman", + "goldenThumbnail": "rbxassetid://14976569286", + "hideSerial": true, + "huge": true, + "indexDesc": "Found in the (Rare, Mythical) Series 1 Merch Gifts!", + "indexObtainable": true, + "name": "Huge Tiedye Corgi", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968334476", + "thumbnail": "rbxassetid://14976569398", }, - "configName": "Snowman", + "configName": "Huge Tiedye Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.587Z", - "hashShort": "0125f983b3713f31", + "dateModified": "2025-07-05T23:28:59.541Z", + "hashShort": "62d49beffbd22930", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 1660, - ], - "fromEgg": "Beach Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 24, - "goldenThumbnail": "rbxassetid://14968280542", - "maxChance": 0.024171539961013646, - "name": "Midnight Axolotl", + "fly": true, + "goldenThumbnail": "rbxassetid://14976435952", + "huge": true, + "indexDesc": "Found in Digsite!", + "indexObtainable": true, + "name": "Huge Fossil Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968280640", + "thumbnail": "rbxassetid://14976436145", }, - "configName": "Midnight Axolotl", + "configName": "Huge Fossil Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.589Z", - "hashShort": "8897f977e5d02072", + "dateModified": "2025-07-05T23:28:59.551Z", + "hashShort": "3bc570c05990a4b9", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 2, - ], - "fromEgg": "Spotted Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 1, - "goldenThumbnail": "rbxassetid://14968188488", - "maxChance": 0.6451612903225806, - "name": "Bunny", - "power": 2, + "fly": true, + "goldenThumbnail": "rbxassetid://15281990120", + "huge": true, + "indexDesc": "Achievement reward!", + "indexObtainable": true, + "name": "Huge Angel Dog", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968188553", + "thumbnail": "rbxassetid://15281990069", }, - "configName": "Bunny", + "configName": "Huge Angel Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.583Z", - "hashShort": "040e598ee5b883da", + "dateModified": "2025-07-05T23:28:59.546Z", + "hashShort": "133324006b948c5a", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 7045723, - ], - "fly": true, - "fromEgg": "Heaven Castle Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 97, - "goldenThumbnail": "rbxassetid://14968228607", - "maxChance": 0.1998001998001998, - "name": "Empyrean Axolotl", + "goldenThumbnail": "rbxassetid://14976450755", + "huge": true, + "indexDesc": "Earned from the limited-time Happy Rock Event in PSX!", + "indexObtainable": false, + "name": "Huge Happy Rock", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968228755", + "thumbnail": "rbxassetid://14976450873", }, - "configName": "Empyrean Axolotl", + "configName": "Huge Happy Rock", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.588Z", - "hashShort": "4a4f4dd19c698dbc", + "dateModified": "2025-07-05T23:28:59.553Z", + "hashShort": "c863a7fe3fcb0af2", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 25062, - ], "fly": true, - "fromEgg": "Hell Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 48, - "goldenThumbnail": "rbxassetid://14968257019", - "maxChance": 0.0012360939431396785, - "name": "Hellish Axolotl", + "goldenThumbnail": "rbxassetid://14976574132", + "huge": true, + "indexDesc": "Earned in the 2022 and 2023 Halloween Event in PSX!", + "indexObtainable": false, + "name": "Huge Vampire Bat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968257131", + "thumbnail": "rbxassetid://14976574393", }, - "configName": "Hellish Axolotl", + "configName": "Huge Vampire Bat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.591Z", - "hashShort": "a518a98d18ae1a56", + "dateModified": "2025-07-05T23:28:59.542Z", + "hashShort": "3a871025ee0fd5eb", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 2270, - ], - "fromEgg": "Sunny Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 27, - "goldenThumbnail": "rbxassetid://15260349582", - "maxChance": 0.0010351966873706003, - "name": "Hydra Axolotl", + "fly": true, + "goldenThumbnail": "rbxassetid://15163489578", + "huge": true, + "indexDesc": "Found in the Exclusive Dragon Egg!", + "indexObtainable": true, + "name": "Huge Celestial Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15260349347", + "thumbnail": "rbxassetid://15163489240", }, - "configName": "Hydra Axolotl", + "configName": "Huge Celestial Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.584Z", - "hashShort": "378499607846cc3a", + "dateModified": "2025-07-05T23:28:59.540Z", + "hashShort": "af6dcc5205d374ab", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 980, - ], - "fromEgg": "Beach Ball Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 20, - "goldenThumbnail": "rbxassetid://14968178215", - "maxChance": 0.015873015873015872, - "name": "Axolotuus", + "fly": true, + "goldenThumbnail": "rbxassetid://15163489798", + "huge": true, + "indexDesc": "Found in the Exclusive Dragon Egg!", + "indexObtainable": true, + "name": "Huge Unicorn Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968178287", + "thumbnail": "rbxassetid://15163489495", }, - "configName": "Axolotuus", + "configName": "Huge Unicorn Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.586Z", - "hashShort": "34de254ec2f3cf3e", + "dateModified": "2025-07-05T23:28:59.542Z", + "hashShort": "6eb3cd4b16aa3e4b", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 3361, - ], - "fromEgg": "Sandstone Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 32, - "goldenThumbnail": "rbxassetid://14968189344", - "maxChance": 0.14287215043597015, - "name": "Camel", + "goldenThumbnail": "rbxassetid://14976442477", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Giraffe", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968189415", + "thumbnail": "rbxassetid://14976442623", }, - "configName": "Camel", + "configName": "Huge Giraffe", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.598Z", - "hashShort": "b38a97a55a0cee65", + "dateModified": "2025-07-05T23:28:59.550Z", + "hashShort": "6c1def137c7dd831", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968308866", - "name": "Pony", + "goldenThumbnail": "rbxassetid://14976533174", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets and tied to the Huge Plush merch in stores!", + "indexObtainable": true, + "name": "Huge Red Panda", "rarity": { "Announce": true, "Color": null, @@ -80740,52 +83836,50 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968308927", + "thumbnail": "rbxassetid://14976533293", }, - "configName": "Pony", + "configName": "Huge Red Panda", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.582Z", - "hashShort": "f37f4ec1a8c76fc2", + "dateModified": "2025-07-05T23:28:59.557Z", + "hashShort": "c6b9edcaf65b2db3", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 1016, - ], - "fromEgg": "Anchor Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 22, - "goldenThumbnail": "rbxassetid://14968266890", - "maxChance": 0.2971768202080238, - "name": "Jellyfish", + "goldenThumbnail": "rbxassetid://14976489368", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Mermaid Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968266953", + "thumbnail": "rbxassetid://14976489487", }, - "configName": "Jellyfish", + "configName": "Huge Mermaid Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.594Z", - "hashShort": "fd8daba8aa8cb07e", + "dateModified": "2025-07-05T23:28:59.540Z", + "hashShort": "604e642b2245d612", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968316730", - "name": "Rave Crab", + "goldenThumbnail": "rbxassetid://14976387204", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Crocodile", "rarity": { "Announce": true, "Color": null, @@ -80798,20 +83892,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968316850", + "thumbnail": "rbxassetid://14976387300", }, - "configName": "Rave Crab", + "configName": "Huge Crocodile", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.581Z", - "hashShort": "d99a0c95d80e6fee", + "dateModified": "2025-07-05T23:28:59.548Z", + "hashShort": "acf225eac17ca7ca", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968263341", - "name": "Ice Cream Cone", + "goldenThumbnail": "rbxassetid://14976362247", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Bearserker", "rarity": { "Announce": true, "Color": null, @@ -80824,84 +83920,84 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968263480", + "thumbnail": "rbxassetid://14976362435", }, - "configName": "Ice Cream Cone", + "configName": "Huge Bearserker", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.594Z", - "hashShort": "b79ffc5356bc0089", + "dateModified": "2025-07-05T23:28:59.543Z", + "hashShort": "aa0a673dc5b77ede", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 2121, - ], - "fromEgg": "Pirate Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 27, - "goldenThumbnail": "rbxassetid://14968323772", - "maxChance": 0.017880670054583096, - "name": "Sailor Dolphin", + "animations": { + "swerve": true, + "swerveAggression": 1, + "swerveMaxAngle": 60, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://15340315690", + "huge": true, + "indexDesc": "Earned from the Spinny Wheel!", + "indexObtainable": true, + "name": "Huge Propeller Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968323899", + "thumbnail": "rbxassetid://15340315459", }, - "configName": "Sailor Dolphin", + "configName": "Huge Propeller Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.593Z", - "hashShort": "53e98e1fed7a76c2", + "dateModified": "2025-07-05T23:28:59.538Z", + "hashShort": "075af22ceed7e0d5", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 666, - ], - "fromEgg": "Jungle Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 18, - "goldenThumbnail": "rbxassetid://14968273908", - "maxChance": 0.3834808259587021, - "name": "Lion", + "goldenThumbnail": "rbxassetid://15477703494", + "huge": true, + "indexDesc": "Earned through fishing!", + "indexObtainable": true, + "name": "Huge Poseidon Corgi", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968274042", + "thumbnail": "rbxassetid://15477703422", }, - "configName": "Lion", + "configName": "Huge Poseidon Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.601Z", - "hashShort": "1ed3fd797753d817", + "dateModified": "2025-07-05T23:28:59.558Z", + "hashShort": "f05e4f258d6dfa45", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968316424", - "name": "Rainbow Unicorn", + "goldenThumbnail": "rbxassetid://15480654604", + "huge": true, + "indexDesc": "Found in Chest Rush minigame!", + "indexObtainable": true, + "name": "Huge Fire Horse", "rarity": { "Announce": true, "Color": null, @@ -80914,20 +84010,27 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968316589", + "thumbnail": "rbxassetid://15480654527", }, - "configName": "Rainbow Unicorn", + "configName": "Huge Fire Horse", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.602Z", - "hashShort": "a8b45ea699e35e13", + "dateModified": "2025-07-05T23:28:59.542Z", + "hashShort": "bd077b5c2f695a49", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968269943", - "name": "Keyboard Cat", + "animations": { + "flyHeight": 0.3, + "flyHeightChange": 0.25, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://15542598865", + "huge": true, + "indexDesc": "Comes with the exclusive Pet Rugs merch!", + "indexObtainable": true, + "name": "Huge Hoverboard Cat", "rarity": { "Announce": true, "Color": null, @@ -80940,21 +84043,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968270057", + "thumbnail": "rbxassetid://15542598827", }, - "configName": "Keyboard Cat", + "configName": "Huge Hoverboard Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.596Z", - "hashShort": "b1d14d0bce73cebc", + "dateModified": "2025-07-05T23:28:59.558Z", + "hashShort": "8070b1d4311e346c", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "rbxassetid://14968339743", - "name": "Starfall Dragon", + "goldenThumbnail": "rbxassetid://15634002856", + "huge": true, + "indexDesc": "Found in the Exclusive Fruit Egg!", + "indexObtainable": true, + "name": "Huge Strawberry Corgi", "rarity": { "Announce": true, "Color": null, @@ -80967,180 +84071,168 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968340882", + "thumbnail": "rbxassetid://15634002728", }, - "configName": "Starfall Dragon", + "configName": "Huge Strawberry Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.593Z", - "hashShort": "e245971c1a80321f", + "dateModified": "2025-07-05T23:28:59.558Z", + "hashShort": "47536cea5cd6e481", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 1846555, - ], - "fromEgg": "Ice Cream Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 85, - "goldenThumbnail": "rbxassetid://14968194314", - "maxChance": 0.6993006993006994, - "name": "Chocolate Bunny", + "goldenThumbnail": "rbxassetid://15637230140", + "huge": true, + "indexDesc": "Reward in the 2023 Festive Clan Battle!", + "indexObtainable": true, + "name": "Huge Present Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968194551", + "thumbnail": "rbxassetid://15637230004", }, - "configName": "Chocolate Bunny", + "configName": "Huge Present Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.293Z", - "hashShort": "621316ba94436501", + "dateModified": "2025-07-05T23:28:59.548Z", + "hashShort": "053e36223aa7c9f6", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 2077375, - ], - "fromEgg": "Sweets Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 86, - "goldenThumbnail": "rbxassetid://14968302727", - "maxChance": 0.4995004995004995, - "name": "Pink Marshmallow Chick", + "goldenThumbnail": "rbxassetid://14976579654", + "huge": true, + "indexDesc": "Found in the Crystal Chest!", + "indexObtainable": true, + "name": "Huge Wizard Westie", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968302868", + "thumbnail": "rbxassetid://14976579774", }, - "configName": "Pink Marshmallow Chick", + "configName": "Huge Wizard Westie", "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.288Z", - "hashShort": "059f7927820324cd", + "dateModified": "2025-07-05T23:28:59.545Z", + "hashShort": "ac8f56760ea4333c", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 1928625, - ], - "fromEgg": "Sweets Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 86, - "goldenThumbnail": "rbxassetid://14968184950", - "maxChance": 0.1998001998001998, - "name": "Blue Marshmallow Chick", + "goldenThumbnail": "rbxassetid://14976469002", + "huge": true, + "indexDesc": "Found in the 2023 Titanic Present!", + "indexObtainable": true, + "name": "Huge Jolly Narwhal", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968185202", + "thumbnail": "rbxassetid://14976825062", }, - "configName": "Blue Marshmallow Chick", + "configName": "Huge Jolly Narwhal", "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.300Z", - "hashShort": "94b241eddc2c35f0", + "dateModified": "2025-07-05T23:28:59.548Z", + "hashShort": "a6ea45ef2cd16d35", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 411, - ], - "fromEgg": "Mushroom Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 14, - "goldenThumbnail": "rbxassetid://14968331736", - "maxChance": 0.40404040404040403, - "name": "Slime", + "fly": true, + "goldenThumbnail": "rbxassetid://15716049676", + "huge": true, + "indexDesc": "Found in the Exclusive Xmas Egg!", + "indexObtainable": true, + "name": "Huge Holiday Pegasus", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968331835", + "thumbnail": "rbxassetid://15716049550", }, - "configName": "Slime", + "configName": "Huge Holiday Pegasus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.597Z", - "hashShort": "215614a2c879690e", + "dateModified": "2025-07-05T23:28:59.538Z", + "hashShort": "4599ab728fc6d0c7", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 2184727, - ], - "fromEgg": "Toy Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 87, - "goldenThumbnail": "rbxassetid://14968299534", - "maxChance": 0.14985014985014986, - "name": "Pastel Sock Bunny", + "animations": { + "spinZ": true, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://15716049351", + "huge": true, + "indexDesc": "Found in the Exclusive Xmas Egg!", + "indexObtainable": true, + "name": "Huge Peppermint Angelus", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968299620", + "thumbnail": "rbxassetid://15716049163", }, - "configName": "Pastel Sock Bunny", + "configName": "Huge Peppermint Angelus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.298Z", - "hashShort": "3ca0752fb3e70ce4", + "dateModified": "2025-07-05T23:28:59.537Z", + "hashShort": "0132a3c0d12ec3ca", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968286725", - "name": "Neon Cat", + "fly": true, + "goldenThumbnail": "rbxassetid://15809136979", + "huge": true, + "indexDesc": "Reward in the 2024 New Year's Clan Battle!", + "indexObtainable": true, + "name": "Huge Owl", "rarity": { "Announce": true, "Color": null, @@ -81153,181 +84245,162 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968286845", + "thumbnail": "rbxassetid://15809137117", }, - "configName": "Neon Cat", + "configName": "Huge Owl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.600Z", - "hashShort": "d1098f80550551a4", + "dateModified": "2025-07-05T23:28:59.550Z", + "hashShort": "32091868375cff5f", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 2157610, - ], - "fromEgg": "Toy Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 87, - "goldenThumbnail": "rbxassetid://14968299360", - "maxChance": 0.24975024975024976, - "name": "Pastel Sock Bear", + "goldenThumbnail": "rbxassetid://15803982279", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Fluffy Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968299438", + "thumbnail": "rbxassetid://15803982174", }, - "configName": "Pastel Sock Bear", + "configName": "Huge Fluffy Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.288Z", - "hashShort": "d8a0a50693901bb3", + "dateModified": "2025-07-05T23:28:59.551Z", + "hashShort": "5d901021a224a98a", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 2491491, - ], - "fly": true, - "fromEgg": "Toy Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 87, - "goldenThumbnail": "rbxassetid://14968299882", - "maxChance": 0.08991008991008992, - "name": "Pastel Sock Dragon", + "goldenThumbnail": "rbxassetid://15803989875", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Zebra", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968299954", + "thumbnail": "rbxassetid://15803989668", }, - "configName": "Pastel Sock Dragon", + "configName": "Huge Zebra", "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.302Z", - "hashShort": "7b11268dcae1d4a3", + "dateModified": "2025-07-05T23:28:59.545Z", + "hashShort": "2d528f945f4c70b1", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 1726204, - ], - "fromEgg": "Ice Cream Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 85, - "goldenThumbnail": "rbxassetid://14968194945", - "maxChance": 0.14985014985014986, - "name": "Chocolate Frog", + "goldenThumbnail": "rbxassetid://15804001569", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Robber Pug", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968195096", + "thumbnail": "rbxassetid://15804001482", }, - "configName": "Chocolate Frog", + "configName": "Huge Robber Pug", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.787Z", - "hashShort": "6fc0ed3e2d221767", + "dateModified": "2025-07-05T23:28:59.544Z", + "hashShort": "ce1be6d1c05e76e6", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 382, - ], - "fromEgg": "Sprout Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 14, - "goldenThumbnail": "rbxassetid://14968182196", - "maxChance": 0.5678591709256104, - "name": "Black Widow", + "goldenThumbnail": "rbxassetid://15804006428", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Knight Beagle", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968182339", + "thumbnail": "rbxassetid://15804006339", }, - "configName": "Black Widow", + "configName": "Huge Knight Beagle", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.799Z", - "hashShort": "19a3c09d56569026", + "dateModified": "2025-07-05T23:28:59.546Z", + "hashShort": "67288597ff29a552", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 1968585, - ], - "fromEgg": "Ice Cream Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 85, - "goldenThumbnail": "rbxassetid://14968195341", - "maxChance": 0.08991008991008992, - "name": "Chocolate Hippo", + "goldenThumbnail": "rbxassetid://15804010470", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Shadow Dominus", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968195465", + "thumbnail": "rbxassetid://15804010569", }, - "configName": "Chocolate Hippo", + "configName": "Huge Shadow Dominus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.613Z", - "hashShort": "61f89328b860c072", + "dateModified": "2025-07-05T23:28:59.539Z", + "hashShort": "813481e200618480", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968190105", - "name": "Capybara", + "goldenThumbnail": "rbxassetid://16029125841", + "huge": true, + "indexDesc": "Reward in the 2024 Pet Collecting Battle!", + "indexObtainable": true, + "name": "Huge Sensei Penguin", "rarity": { "Announce": true, "Color": null, @@ -81340,20 +84413,69 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968190224", + "thumbnail": "rbxassetid://16029125715", }, - "configName": "Capybara", + "configName": "Huge Sensei Penguin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.614Z", - "hashShort": "ac0b1340bc988dcf", + "dateModified": "2025-07-05T23:28:59.541Z", + "hashShort": "17414589190d3b1d", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968239909", - "name": "Floppa", + "animations": { + "customAnimations": true, + "fadeFrames": [ + { + "duration": 3, + "iconThumbnail": "rbxassetid://16047450864", + "instant": true, + "textureName": "frame1", + }, + { + "duration": 1, + "iconThumbnail": "rbxassetid://16047451474", + "instant": true, + "textureName": "frame2", + }, + { + "duration": 1, + "iconThumbnail": "rbxassetid://16047451214", + "instant": true, + "textureName": "frame3", + }, + { + "duration": 5, + "iconThumbnail": "rbxassetid://16047451035", + "instant": true, + "textureName": "frame4", + }, + { + "duration": 1, + "iconThumbnail": "rbxassetid://16047451214", + "instant": true, + "textureName": "frame3", + }, + { + "duration": 1, + "iconThumbnail": "rbxassetid://16047451474", + "instant": true, + "textureName": "frame2", + }, + ], + "idleActionAnimations": [ + [ + "LookAround", + 0.6, + ], + ], + }, + "goldenThumbnail": "rbxassetid://16044352051", + "huge": true, + "indexDesc": "Found in the Exclusive Emoji Egg!", + "indexObtainable": true, + "name": "Huge Emoji Cat", "rarity": { "Announce": true, "Color": null, @@ -81366,118 +84488,108 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968240040", + "thumbnail": "rbxassetid://16047450864", }, - "configName": "Floppa", + "configName": "Huge Emoji Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.616Z", - "hashShort": "38bf8636c90ed127", + "dateModified": "2025-07-05T23:28:59.547Z", + "hashShort": "a4ca835772db0904", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 28240, - ], - "fromEgg": "Sakura Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 50, - "goldenThumbnail": "rbxassetid://14968291044", - "maxChance": 0.09998990101999697, - "name": "Ninja Maskot", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, + "animations": { + "customAnimations": true, + "fadeFrames": [ + { + "duration": 2, + "iconThumbnail": "rbxassetid://16047450351", + "instant": true, + "textureName": "frame1", + }, + { + "duration": 3, + "iconThumbnail": "rbxassetid://16047450651", + "instant": true, + "textureName": "frame2", + }, + ], + "idleActionAnimations": [ + [ + "MonkeyBackflip", + 1, + ], + ], }, - "thumbnail": "rbxassetid://14968291771", - }, - "configName": "Ninja Maskot", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.617Z", - "hashShort": "0a7464e55d58bd6c", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 26294, - ], - "fromEgg": "Sakura Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 50, - "goldenThumbnail": "rbxassetid://14968291452", - "maxChance": 0.8999091091799728, - "name": "Ninja Turtle", + "goldenThumbnail": "rbxassetid://16044355802", + "huge": true, + "indexDesc": "Found in the Exclusive Emoji Egg!", + "indexObtainable": true, + "name": "Huge Emoji Monkey", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968291600", + "thumbnail": "rbxassetid://16047450351", }, - "configName": "Ninja Turtle", + "configName": "Huge Emoji Monkey", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.940Z", - "hashShort": "0762b994c05c6f30", + "dateModified": "2025-07-05T23:28:59.555Z", + "hashShort": "5f04599d9a3798a2", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 631, - ], - "fromEgg": "Mossy Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 18, - "goldenThumbnail": "rbxassetid://14968193988", - "maxChance": 0.3258145363408521, - "name": "Chimpanzee", + "fly": true, + "goldenThumbnail": "rbxassetid://14977567555", + "indexDesc": "Comes with the Titanic Scary Corgi plush!", + "indexObtainable": true, + "name": "Titanic Scary Corgi", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968194141", + "thumbnail": "rbxassetid://14976669980", + "titanic": true, }, - "configName": "Chimpanzee", + "configName": "Titanic Scary Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.937Z", - "hashShort": "c2e6ce01756fe0eb", + "dateModified": "2025-07-05T23:29:01.104Z", + "hashShort": "678cb69c1a2f67ee", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "exclusiveLevel": 1, + "animations": { + "balloon": true, + "ridingCameraOffset": null, + "ridingGravity": 65.3346, + "ridingJumpPower": 52.5, + }, "fly": true, - "goldenThumbnail": "rbxassetid://14968353514", - "hideSerial": true, - "name": "Tiedye Dragon", + "goldenThumbnail": "rbxassetid://11970074726", + "indexDesc": "Found in the Exclusive Balloon Egg!", + "indexObtainable": true, + "name": "Titanic Balloon Monkey", "rarity": { "Announce": true, "Color": null, @@ -81490,85 +84602,79 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968353613", + "thumbnail": "rbxassetid://14976586764", + "titanic": true, }, - "configName": "Tiedye Dragon", + "configName": "Titanic Balloon Monkey", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.938Z", - "hashShort": "11b88d3f8a5cba57", + "dateModified": "2025-07-05T23:29:01.103Z", + "hashShort": "1ed45773b51756ea", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 14, - ], - "fromEgg": "Grass Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 3, - "goldenThumbnail": "rbxassetid://14968227368", - "maxChance": 0.7194244604316546, - "name": "Elephant", + "goldenThumbnail": "rbxassetid://14977533744", + "indexDesc": "Comes with the Titanic Hippomelon plush!", + "indexObtainable": true, + "name": "Titanic Hippomelon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968227455", + "thumbnail": "rbxassetid://14976631515", + "titanic": true, }, - "configName": "Elephant", + "configName": "Titanic Hippomelon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.938Z", - "hashShort": "b9532e60a328557e", + "dateModified": "2025-07-05T23:29:01.105Z", + "hashShort": "e0a7d685ad47061c", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 147502, - ], - "fromEgg": "Frosted Geode Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 63, - "goldenThumbnail": "rbxassetid://14976269599", - "maxChance": 0.06993006993006994, - "name": "Jolly Cat", + "fly": true, + "goldenThumbnail": "rbxassetid://12224913519", + "indexDesc": "Found in the Exclusive Neon Egg!", + "indexObtainable": true, + "name": "Titanic Neon Agony", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976269717", + "thumbnail": "rbxassetid://14976647939", + "titanic": true, }, - "configName": "Jolly Cat", + "configName": "Titanic Neon Agony", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.939Z", - "hashShort": "6313c84443bde8fd", + "dateModified": "2025-07-05T23:29:01.096Z", + "hashShort": "7a37b3a7e2b294bb", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968352100", - "hideSerial": true, - "name": "Tiedye Bear", + "goldenThumbnail": "rbxassetid://12422515522", + "indexDesc": "Found in the Exclusive Meme Egg!", + "indexObtainable": true, + "name": "Titanic Hubert", "rarity": { "Announce": true, "Color": null, @@ -81581,22 +84687,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968352252", + "thumbnail": "rbxassetid://14976633736", + "titanic": true, }, - "configName": "Tiedye Bear", + "configName": "Titanic Hubert", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.935Z", - "hashShort": "d45e0362cf3c48b7", + "dateModified": "2025-07-05T23:29:01.082Z", + "hashShort": "3e71eb49dd17c1fd", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "exclusiveLevel": 2, "fly": true, - "goldenThumbnail": "rbxassetid://14968284011", - "hideSerial": true, - "name": "Mosaic Griffin", + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Cosmic Egg!", + "indexObtainable": true, + "name": "Titanic Cosmic Pegasus", "rarity": { "Announce": true, "Color": null, @@ -81609,40 +84716,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968284179", - }, - "configName": "Mosaic Griffin", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.939Z", - "hashShort": "64b8b571afbc7095", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 4460, - ], - "fromWorldNumber": 1, - "goldenThumbnail": "rbxassetid://14968292876", - "hidden": false, - "name": "Nutcracker Cat", - "thumbnail": "rbxassetid://14968292963", + "thumbnail": "rbxassetid://15201628877", + "titanic": true, }, - "configName": "Nutcracker Cat", + "configName": "Titanic Cosmic Pegasus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.937Z", - "hashShort": "338a4fbdbeef918a", + "dateModified": "2025-07-05T23:29:01.243Z", + "hashShort": "87398dfc7b0815e1", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "exclusiveLevel": 2, "fly": true, - "goldenThumbnail": "rbxassetid://14968283455", - "hideSerial": true, - "name": "Mosaic Dove", + "goldenThumbnail": "rbxassetid://14977542134", + "indexDesc": "Comes with the Titanic Lucki plush!", + "indexObtainable": true, + "name": "Titanic Lucki", "rarity": { "Announce": true, "Color": null, @@ -81655,21 +84745,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968283582", + "thumbnail": "rbxassetid://14976642572", + "titanic": true, }, - "configName": "Mosaic Dove", + "configName": "Titanic Lucki", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.935Z", - "hashShort": "62da727f3e01c8d6", + "dateModified": "2025-07-05T23:29:01.251Z", + "hashShort": "ab42ecc92667bd2a", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968200950", - "hideSerial": true, - "name": "Crystal Deer", + "goldenThumbnail": "rbxassetid://14977493695", + "indexDesc": "Comes with the Titanic Capybara plush!", + "indexObtainable": true, + "name": "Titanic Capybara", "rarity": { "Announce": true, "Color": null, @@ -81682,21 +84773,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968201085", + "thumbnail": "rbxassetid://14976593327", + "titanic": true, }, - "configName": "Crystal Deer", + "configName": "Titanic Capybara", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.936Z", - "hashShort": "7b5f36275231d54a", + "dateModified": "2025-07-05T23:29:01.234Z", + "hashShort": "4f4b1a305983a0b8", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://15260346933", - "hideSerial": true, - "name": "Nightfall Wolf", + "goldenThumbnail": "rbxassetid://14977504373", + "indexDesc": "Found in the Exclusive Dominus Egg!", + "indexObtainable": true, + "name": "Titanic Dominus Astra", "rarity": { "Announce": true, "Color": null, @@ -81709,22 +84801,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15260346749", + "thumbnail": "rbxassetid://14976605624", + "titanic": true, }, - "configName": "Nightfall Wolf", + "configName": "Titanic Dominus Astra", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.936Z", - "hashShort": "a329fba946983ceb", + "dateModified": "2025-07-05T23:29:01.234Z", + "hashShort": "b714415a8cbd2bba", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "rbxassetid://15260347656", - "hideSerial": true, - "name": "Nightfall Pegasus", + "goldenThumbnail": "rbxassetid://14977490217", + "indexDesc": "Comes with the Titanic Blobfish plush!", + "indexObtainable": true, + "name": "Titanic Blobfish", "rarity": { "Announce": true, "Color": null, @@ -81737,86 +84829,97 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15260347529", + "thumbnail": "rbxassetid://14976589636", + "titanic": true, }, - "configName": "Nightfall Pegasus", + "configName": "Titanic Blobfish", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.934Z", - "hashShort": "ddd45a120fa4f24b", + "dateModified": "2025-07-05T23:29:01.247Z", + "hashShort": "6c4dee28252eed21", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 10454, - ], - "fromEgg": "Thawed Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 42, - "goldenThumbnail": "rbxassetid://14968272013", - "maxChance": 0.6206361520558572, - "name": "Lava Slime", + "animations": { + "flyHeight": 2.2, + "ridingCameraOffset": null, + "ridingGravity": 65.3346, + "spin": true, + "swerve": true, + "swerveMaxAngle": 45, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://14977486389", + "indexDesc": "Found in the Exclusive Atlantean Egg!", + "indexObtainable": true, + "name": "Titanic Atlantean Jellyfish", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968272695", + "thumbnail": "rbxassetid://14976584980", + "titanic": true, }, - "configName": "Lava Slime", + "configName": "Titanic Atlantean Jellyfish", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.937Z", - "hashShort": "c4cb354542eee985", + "dateModified": "2025-07-05T23:29:01.250Z", + "hashShort": "c86141710f0bda2e", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 463, - ], - "fly": true, - "fromEgg": "Sprout Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 14, - "goldenThumbnail": "rbxassetid://14968169708", - "maxChance": 0.030303030303030304, - "name": "Agony", + "goldenThumbnail": "rbxassetid://14977487931", + "hideExists": true, + "indexDesc": "Tied to the Banana Shoulder Pet Roblox limited!", + "indexObtainable": false, + "name": "Titanic Banana", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968169798", + "thumbnail": "rbxassetid://14976586993", + "titanic": true, + "tradable": false, + "ugc": true, }, - "configName": "Agony", + "configName": "Titanic Banana", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.546Z", - "hashShort": "dccbe36fd0ccab88", + "dateModified": "2026-03-14T15:52:20.733Z", + "hashShort": "d71a11fc3668ff58", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://15260347226", - "hideSerial": true, - "name": "Nightfall Tiger", + "animations": { + "balloon": true, + "ridingCameraOffset": null, + "ridingGravity": 65.3346, + "ridingJumpPower": 52.5, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://12292639155", + "indexDesc": "Comes with the Titanic Blue Balloon Cat plush!", + "indexObtainable": true, + "name": "Titanic Blue Balloon Cat", "rarity": { "Announce": true, "Color": null, @@ -81829,21 +84932,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15260347082", + "thumbnail": "rbxassetid://14976589786", + "titanic": true, }, - "configName": "Nightfall Tiger", + "configName": "Titanic Blue Balloon Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.933Z", - "hashShort": "bfb32a24624a4a17", + "dateModified": "2025-07-05T23:29:01.252Z", + "hashShort": "6a244b51795b7a84", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "exclusiveLevel": 2, "fly": true, - "goldenThumbnail": "rbxassetid://14968348636", - "name": "Super Capybara", + "goldenThumbnail": "rbxassetid://15547850879", + "indexDesc": "Comes with the Titanic Tiedye Dragon plush!", + "indexObtainable": true, + "name": "Titanic Tiedye Dragon", "rarity": { "Announce": true, "Color": null, @@ -81856,85 +84961,91 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968348781", + "thumbnail": "rbxassetid://15547792197", + "titanic": true, }, - "configName": "Super Capybara", + "configName": "Titanic Tiedye Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.949Z", - "hashShort": "eb2cb1e30b9a2f01", + "dateModified": "2025-07-05T23:29:01.249Z", + "hashShort": "477d1f9625e475fc", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 593898, - ], - "fromEgg": "Abyssal Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 76, - "goldenThumbnail": "rbxassetid://14968362924", - "maxChance": 0.2, - "name": "Zombie Corgi", + "goldenThumbnail": "rbxassetid://14977494107", + "indexDesc": "From limited-time event on PSX!", + "indexObtainable": false, + "name": "Titanic Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968363018", + "thumbnail": "rbxassetid://14976594978", + "titanic": true, }, - "configName": "Zombie Corgi", + "configName": "Titanic Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.951Z", - "hashShort": "597ddf61353fd212", + "dateModified": "2025-07-05T23:29:01.249Z", + "hashShort": "776e84b2a36fa06d", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 806, - ], - "fromEgg": "Beach Ball Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 20, - "goldenThumbnail": "rbxassetid://14968209432", - "maxChance": 0.25358643674829734, - "name": "Dolphin", + "animations": { + "flyHeight": 2, + "flyHeightChange": 0, + "ridingCameraOffset": null, + "ridingTransparency": 0.75, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://14977533986", + "indexDesc": "Found in the Exclusive Hologram Egg!", + "indexObtainable": true, + "name": "Titanic Hologram Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968209544", + "thumbnail": "rbxassetid://14976631845", + "titanic": true, }, - "configName": "Dolphin", + "configName": "Titanic Hologram Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.959Z", - "hashShort": "a227b3b8feccb446", + "dateModified": "2025-07-05T23:29:01.234Z", + "hashShort": "108bdf5fcea33779", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "exclusiveLevel": 3, + "animations": { + "boneFlyingAnimation": "rbxassetid://15696174011", + "ridingCameraOffset": null, + }, "fly": true, - "goldenThumbnail": "rbxassetid://15260349978", - "name": "Cyborg Capybara", + "flyingTitanic": true, + "goldenThumbnail": "rbxassetid://15687351161", + "indexDesc": "Found in the 2023 Titanic Present & Exclusive Xmas Egg!", + "indexObtainable": true, + "name": "Titanic Silver Dragon", "rarity": { "Announce": true, "Color": null, @@ -81947,20 +85058,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15260349851", + "thumbnail": "rbxassetid://15687351099", + "titanic": true, }, - "configName": "Cyborg Capybara", + "configName": "Titanic Silver Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.957Z", - "hashShort": "ef35ada93c7e03f4", + "dateModified": "2025-07-05T23:29:01.237Z", + "hashShort": "9c69bc9a170310f2", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968346853", - "name": "Stunt Chick", + "goldenThumbnail": "rbxassetid://17787594822", + "indexDesc": "Earned on the Christmas Event in PSX and the Exclusive Jolly Egg!", + "indexObtainable": true, + "name": "Titanic Jolly Cat", "rarity": { "Announce": true, "Color": null, @@ -81973,117 +85086,118 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968347006", + "thumbnail": "rbxassetid://17787600314", + "titanic": true, }, - "configName": "Stunt Chick", + "configName": "Titanic Jolly Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.946Z", - "hashShort": "30fe1b8cc213ab68", + "dateModified": "2025-07-05T23:29:01.253Z", + "hashShort": "fb8591bd41ae7173", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 1672, - ], - "fromEgg": "Coconut Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 25, - "goldenThumbnail": "rbxassetid://14968302587", - "maxChance": 0.01960399921584003, - "name": "Pineapple Cat", + "animations": { + "balloon": true, + "balloonScale": null, + "balloonSpeed": 0.25, + }, + "goldenThumbnail": "rbxassetid://15260478739", + "indexDesc": "Found in the Exclusive Nightmare Egg!", + "indexObtainable": true, + "name": "Titanic Nightmare Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968302642", + "thumbnail": "rbxassetid://15260478604", + "titanic": true, }, - "configName": "Pineapple Cat", + "configName": "Titanic Nightmare Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.955Z", - "hashShort": "cca36ed7245b7a7e", + "dateModified": "2025-07-05T23:29:01.236Z", + "hashShort": "0091f1af723492b0", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 2366, - ], - "fromEgg": "Cheetah Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 29, - "goldenThumbnail": "rbxassetid://14968315507", - "maxChance": 0.1506276150627615, - "name": "Quokka", + "animations": { + "balloon": true, + "ridingCameraOffset": null, + "ridingGravity": 65.3346, + "ridingJumpPower": 52.5, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://14976586251", + "indexDesc": "Comes with the Titanic Red Balloon Cat plush!", + "indexObtainable": true, + "name": "Titanic Red Balloon Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968315607", + "thumbnail": "rbxassetid://14976586155", + "titanic": true, }, - "configName": "Quokka", + "configName": "Titanic Red Balloon Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.945Z", - "hashShort": "249158508bccf42b", + "dateModified": "2025-07-05T23:29:01.253Z", + "hashShort": "211faf61fa0a1829", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 75, - ], - "fromEgg": "Hive Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 5, - "goldenThumbnail": "rbxassetid://14968355157", - "maxChance": 0.31746031746031744, - "name": "Turkey", + "goldenThumbnail": "rbxassetid://15547850956", + "indexDesc": "Comes with the Titanic Tiedye Cat plush!", + "indexObtainable": true, + "name": "Titanic Tiedye Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968355260", + "thumbnail": "rbxassetid://15547792344", + "titanic": true, }, - "configName": "Turkey", + "configName": "Titanic Tiedye Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.948Z", - "hashShort": "2293d9817d6daf8d", + "dateModified": "2025-07-05T23:29:01.235Z", + "hashShort": "34374a1b2066051b", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "fly": true, - "goldenThumbnail": "rbxassetid://14968273641", - "name": "Lightning Bat", + "goldenThumbnail": "rbxassetid://14977547006", + "indexDesc": "Found in the Exclusive Crystal Egg!", + "indexObtainable": true, + "name": "Titanic Mystic Corgi", "rarity": { "Announce": true, "Color": null, @@ -82096,20 +85210,26 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968273789", + "thumbnail": "rbxassetid://14976647316", + "titanic": true, }, - "configName": "Lightning Bat", + "configName": "Titanic Mystic Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.941Z", - "hashShort": "f592b125af6187bf", + "dateModified": "2025-07-05T23:29:01.245Z", + "hashShort": "d21e1824bcc920d3", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968312852", - "name": "Prickly Panda", + "animations": { + "ridingCameraOffset": null, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://15163496678", + "indexDesc": "Found in the Exclusive Dragon Egg!", + "indexObtainable": true, + "name": "Titanic Fire Dragon", "rarity": { "Announce": true, "Color": null, @@ -82122,182 +85242,230 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968312942", + "thumbnail": "rbxassetid://15163496528", + "titanic": true, }, - "configName": "Prickly Panda", + "configName": "Titanic Fire Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.942Z", - "hashShort": "1c0fd6fdca9f9ab0", + "dateModified": "2025-07-05T23:29:01.235Z", + "hashShort": "c1e5a8b85133e193", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 342, - ], "fly": true, - "fromEgg": "Spike Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 13, - "goldenThumbnail": "rbxassetid://14968251425", - "maxChance": 0.37267080745341613, - "name": "Griffin", + "goldenThumbnail": "rbxassetid://14977638619", + "indexDesc": "Comes with the Titanic Shadow Griffin plush!", + "indexObtainable": true, + "name": "Titanic Shadow Griffin", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968251552", + "thumbnail": "rbxassetid://14976670848", + "titanic": true, }, - "configName": "Griffin", + "configName": "Titanic Shadow Griffin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.952Z", - "hashShort": "b598251aeefc5420", + "dateModified": "2025-07-05T23:29:01.254Z", + "hashShort": "52f2d6e40726df13", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 296, - ], - "fromEgg": "Hut Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 12, - "goldenThumbnail": "rbxassetid://14968326949", - "maxChance": 0.5108840515326522, - "name": "Sapphire Carbuncle", + "goldenThumbnail": "rbxassetid://14977494512", + "indexDesc": "Comes with the Titanic Cheerful Yeti plush!", + "indexObtainable": true, + "name": "Titanic Cheerful Yeti", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968327028", + "thumbnail": "rbxassetid://14976595593", + "titanic": true, }, - "configName": "Sapphire Carbuncle", + "configName": "Titanic Cheerful Yeti", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.946Z", - "hashShort": "4574cdbb2c2196b8", + "dateModified": "2025-07-05T23:29:01.254Z", + "hashShort": "aa08cca148e48448", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 432, - ], - "fromEgg": "Spirit Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 15, - "goldenThumbnail": "rbxassetid://14968285018", - "maxChance": 0.5681818181818182, - "name": "Mushroom Raccoon", + "goldenThumbnail": "rbxassetid://14977562334", + "indexDesc": "Comes with the Titanic Reindeer plush!", + "indexObtainable": true, + "name": "Titanic Reindeer", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968285196", + "thumbnail": "rbxassetid://15581758974", + "titanic": true, }, - "configName": "Mushroom Raccoon", + "configName": "Titanic Reindeer", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.958Z", - "hashShort": "68e39429be21eb70", + "dateModified": "2025-07-05T23:29:01.238Z", + "hashShort": "9da333f0fb2c0315", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 7953, - ], - "fromEgg": "Snowman Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 39, - "goldenThumbnail": "rbxassetid://14968180898", - "maxChance": 0.03026481715006305, - "name": "Bearserker", + "goldenThumbnail": "rbxassetid://14977522484", + "indexDesc": "Comes with the Titanic Fawn plush!", + "indexObtainable": true, + "name": "Titanic Fawn", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968180995", + "thumbnail": "rbxassetid://14976619071", + "titanic": true, }, - "configName": "Bearserker", + "configName": "Titanic Fawn", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.957Z", - "hashShort": "b365081d434db7a8", + "dateModified": "2025-07-05T23:29:01.235Z", + "hashShort": "169d29573336b257", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 1046, - ], - "fromEgg": "Anchor Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 22, - "goldenThumbnail": "rbxassetid://14968278129", - "maxChance": 0.08915304606240713, - "name": "Mantis Shrimp", + "goldenThumbnail": "rbxassetid://15644507241", + "indexDesc": "Found in the Exclusive Fruit Egg!", + "indexObtainable": true, + "name": "Titanic Banana Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968278221", + "thumbnail": "rbxassetid://15644507059", + "titanic": true, }, - "configName": "Mantis Shrimp", + "configName": "Titanic Banana Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.948Z", - "hashShort": "1b25ee159bb21ac9", + "dateModified": "2025-07-05T23:29:01.255Z", + "hashShort": "f22112643212d3d8", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "fly": true, - "goldenThumbnail": "rbxassetid://14968348891", - "name": "Super Cat", + "animations": { + "jelly": true, + "replacementPool": [ + [ + 1, + 0.5, + ], + [ + 2, + 0.2, + ], + [ + 3, + 0.15, + ], + [ + 4, + 0.1, + ], + [ + 5, + 0.04, + ], + [ + 6, + 0.01, + ], + ], + "replacements": [ + { + "desc": "Comes with a Coin inside! (50%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with Diamonds inside! (20%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with a Chest inside! (15%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with a Lucky Block inside! (10%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with a Maskot Pet inside! (4%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with Preston inside! (1%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + ], + }, + "goldenThumbnail": "rbxassetid://14977537480", + "indexDesc": "Found in the Exclusive Jelly Egg!", + "indexObtainable": true, + "name": "Titanic Jelly Cat", "rarity": { "Announce": true, "Color": null, @@ -82310,84 +85478,101 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968349033", + "thumbnail": "rbxassetid://14976635882", + "titanic": true, }, - "configName": "Super Cat", + "configName": "Titanic Jelly Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.950Z", - "hashShort": "330e8bd7a2dff013", + "dateModified": "2025-07-05T23:29:01.255Z", + "hashShort": "6074573aee78987a", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 2457818, - ], - "fromEgg": "Carnival Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 88, - "goldenThumbnail": "rbxassetid://14968190652", - "maxChance": 0.14985014985014986, - "name": "Carnival Panda", + "goldenThumbnail": "rbxassetid://15842479903", + "indexDesc": "Comes with the Titanic Red Panda plush!", + "indexObtainable": true, + "name": "Titanic Red Panda", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968190760", + "thumbnail": "rbxassetid://15842479817", + "titanic": true, }, - "configName": "Carnival Panda", + "configName": "Titanic Red Panda", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.949Z", - "hashShort": "d0269107826271af", + "dateModified": "2025-07-05T23:29:01.240Z", + "hashShort": "fa17d7eed68d48c7", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 11290, - ], - "fromEgg": "Thawed Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 42, - "goldenThumbnail": "rbxassetid://14968322334", - "maxChance": 0.6211180124223602, - "name": "Sabretooth Tiger", + "goldenThumbnail": "rbxassetid://15842480094", + "indexDesc": "Comes with the Titanic Monkey plush!", + "indexObtainable": true, + "name": "Titanic Monkey", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968322431", + "thumbnail": "rbxassetid://15842479997", + "titanic": true, }, - "configName": "Sabretooth Tiger", + "configName": "Titanic Monkey", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.943Z", - "hashShort": "8a9e63224544c9e5", + "dateModified": "2025-07-05T23:29:01.236Z", + "hashShort": "a0dd636a9e5d1635", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://15260347843", - "name": "Neon Twilight Wolf", + "animations": { + "customAnimations": true, + "fadeFrames": [ + { + "duration": 2, + "iconThumbnail": "rbxassetid://16047477969", + "instant": true, + "textureName": "frame1", + }, + { + "duration": 3, + "iconThumbnail": "rbxassetid://16047478331", + "instant": true, + "textureName": "frame2", + }, + ], + "idleActionAnimations": [ + [ + "CorgiJumping", + 1, + ], + ], + }, + "goldenThumbnail": "rbxassetid://16046367062", + "indexDesc": "Found in the Exclusive Emoji Egg!", + "indexObtainable": true, + "name": "Titanic Emoji Corgi", "rarity": { "Announce": true, "Color": null, @@ -82400,201 +85585,234 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15260347743", + "thumbnail": "rbxassetid://16047477969", + "titanic": true, }, - "configName": "Neon Twilight Wolf", + "configName": "Titanic Emoji Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.950Z", - "hashShort": "2262897541631d84", + "dateModified": "2025-07-05T23:29:01.242Z", + "hashShort": "c93a481748d2fe10", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://15260348124", - "name": "Neon Twilight Tiger", + "cachedPower": [ + 279, + 330, + 363, + ], + "fly": true, + "fromEgg": "Dragon Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 10, + "goldenThumbnail": "rbxassetid://14968223666", + "maxChance": 0.0410958904109589, + "name": "Dragon", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://15260347988", + "thumbnail": "rbxassetid://14968223807", }, - "configName": "Neon Twilight Tiger", + "configName": "Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.941Z", - "hashShort": "6de11151439241b9", + "dateModified": "2026-06-27T16:05:18.086Z", + "hashShort": "83026addcf13ffa3", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "rbxassetid://15260348332", - "name": "Neon Twilight Dragon", + "cachedPower": [ + 37926, + 42506, + 45294, + ], + "fromEgg": "Bonsai Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 53, + "goldenThumbnail": "rbxassetid://14968359268", + "maxChance": 0.7192807192807193, + "name": "White Tiger", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15260348258", + "thumbnail": "rbxassetid://14968359346", }, - "configName": "Neon Twilight Dragon", + "configName": "White Tiger", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.943Z", - "hashShort": "ecdb5b386913b826", + "dateModified": "2026-06-27T16:05:18.072Z", + "hashShort": "8dd2ed6f1b53326b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 18069, + 759, + 869, + 940, ], - "fromEgg": "Bone Egg", + "fromEgg": "Sandcastle Egg", "fromWorldNumber": 1, - "fromZoneNumber": 46, - "goldenThumbnail": "rbxassetid://14968237302", - "maxChance": 0.0353584056573449, - "name": "Fire Horse", + "fromZoneNumber": 19, + "goldenThumbnail": "rbxassetid://14968200034", + "maxChance": 0.09090909090909091, + "name": "Crocodile", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968237389", + "thumbnail": "rbxassetid://14968200101", }, - "configName": "Fire Horse", + "configName": "Crocodile", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.944Z", - "hashShort": "45935a2d599fe7d6", + "dateModified": "2026-06-27T16:05:18.072Z", + "hashShort": "81974841f755b7f4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 5076, + 35160, + 39392, + 42287, ], - "fromEgg": "Hyena Egg", + "fromEgg": "Lantern Egg", "fromWorldNumber": 1, - "fromZoneNumber": 35, - "goldenThumbnail": "rbxassetid://14968181677", - "maxChance": 0.012987012987012988, - "name": "Bison", + "fromZoneNumber": 52, + "goldenThumbnail": "rbxassetid://14968294476", + "maxChance": 0.1999800019998, + "name": "Panda", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968181797", + "thumbnail": "rbxassetid://14968294565", }, - "configName": "Bison", + "configName": "Panda", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.947Z", - "hashShort": "6178459d48b259c4", + "dateModified": "2026-06-27T16:05:18.073Z", + "hashShort": "4a2565f07d6f493a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "hybridFly": true, - }, - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968173019", - "name": "Anime Monkey", + "cachedPower": [ + 37872, + 42447, + 45205, + ], + "fromEgg": "Lantern Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 52, + "goldenThumbnail": "rbxassetid://14968317873", + "maxChance": 0.00999900009999, + "name": "Red Panda", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14968173242", + "thumbnail": "rbxassetid://14968318074", }, - "configName": "Anime Monkey", + "configName": "Red Panda", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.950Z", - "hashShort": "b75a71bab0cac492", + "dateModified": "2026-06-27T16:05:18.074Z", + "hashShort": "dd2ef1bf454168bf", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "hybridFly": true, - }, - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://14968172373", - "name": "Anime Agony", + "cachedPower": [ + 320, + 376, + 411, + ], + "fromEgg": "Grave Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 12, + "goldenThumbnail": "rbxassetid://14968250751", + "maxChance": 0.3614457831325301, + "name": "Green Cobra", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968172578", + "thumbnail": "rbxassetid://14968250862", }, - "configName": "Anime Agony", + "configName": "Green Cobra", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.959Z", - "hashShort": "c0a52841fea9f95c", + "dateModified": "2026-06-27T16:05:18.066Z", + "hashShort": "79b05abd53b12fb1", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 20641, + 485, + 560, + 611, ], - "fromEgg": "Hell Egg", + "fromEgg": "Crimson Egg", "fromWorldNumber": 1, - "fromZoneNumber": 48, - "goldenThumbnail": "rbxassetid://14968238630", - "maxChance": 0.9888751545117429, - "name": "Flamortuus", + "fromZoneNumber": 16, + "goldenThumbnail": "rbxassetid://14968315238", + "maxChance": 0.6497175141242938, + "name": "Purple Cobra", "rarity": { "Announce": false, "Color": null, @@ -82607,99 +85825,162 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968238749", + "thumbnail": "rbxassetid://14968315310", }, - "configName": "Flamortuus", + "configName": "Purple Cobra", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.127Z", - "hashShort": "0bba0eb7c3856341", + "dateModified": "2026-06-27T16:05:18.069Z", + "hashShort": "886293d44c857d52", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "hybridFly": true, + "cachedPower": [ + 829, + ], + "fromEgg": "Sandcastle Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 19, + "goldenThumbnail": "rbxassetid://14968270218", + "maxChance": 0.0009389671361502347, + "name": "King Cobra", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Legendary", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 4, + "_id": "Legendary", + "_script": null, }, - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968173393", - "name": "Anime Unicorn", + "thumbnail": "rbxassetid://14968270385", + }, + "configName": "King Cobra", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:53.456Z", + "hashShort": "9872204b838efec0", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 191, + 236, + 263, + ], + "fromEgg": "Cat Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 8, + "goldenThumbnail": "rbxassetid://14968355913", + "maxChance": 0.625, + "name": "Ugly Duckling", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968173600", + "thumbnail": "rbxassetid://14968356058", }, - "configName": "Anime Unicorn", + "configName": "Ugly Duckling", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.148Z", - "hashShort": "9a9c5478ae69b0c2", + "dateModified": "2026-06-27T16:05:18.066Z", + "hashShort": "0a161e39d6fbc8cb", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 14485, + 450, + 524, + 568, ], + "fromEgg": "Spirit Egg", "fromWorldNumber": 1, - "goldenThumbnail": "rbxassetid://14968311378", - "hidden": false, - "name": "Present Cat", - "thumbnail": "rbxassetid://14968311524", + "fromZoneNumber": 15, + "goldenThumbnail": "rbxassetid://14968232162", + "maxChance": 0.14204545454545456, + "name": "Enchanted Elephant", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://14968232250", }, - "configName": "Present Cat", + "configName": "Enchanted Elephant", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.965Z", - "hashShort": "ac379ae017f769e6", + "dateModified": "2026-06-27T16:05:18.074Z", + "hashShort": "a7b7b702849856db", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968346293", - "name": "Stunt Bobcat", + "cachedPower": [ + 1354535, + 1496264, + 1598458, + ], + "fromEgg": "Cotton Candy Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 83, + "goldenThumbnail": "rbxassetid://14968199167", + "maxChance": 0.1998001998001998, + "name": "Cotton Candy Lamb", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968346408", + "thumbnail": "rbxassetid://14968199238", }, - "configName": "Stunt Bobcat", + "configName": "Cotton Candy Lamb", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.966Z", - "hashShort": "5e4b16dff7f0b389", + "dateModified": "2026-06-27T16:05:18.076Z", + "hashShort": "7b38ea2ab88421c8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 880, + 86926, + 97100, + 103267, ], - "fromEgg": "Coral Egg", + "fromEgg": "Colorful Egg", "fromWorldNumber": 1, - "fromZoneNumber": 21, - "goldenThumbnail": "rbxassetid://14968183893", - "maxChance": 0.6349206349206349, - "name": "Blue Fish", + "fromZoneNumber": 60, + "goldenThumbnail": "rbxassetid://14968315928", + "maxChance": 0.6493506493506493, + "name": "Colorful Fish", "rarity": { "Announce": false, "Color": null, @@ -82712,84 +85993,123 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968184034", + "thumbnail": "rbxassetid://14968316077", }, - "configName": "Blue Fish", + "configName": "Colorful Fish", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.293Z", - "hashShort": "6dd13f9c9752eaa0", + "dateModified": "2026-06-27T16:05:18.068Z", + "hashShort": "dfc850491046081c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 138359, + 14777, + 16579, + 17691, ], - "fromEgg": "Frosted Geode Egg", + "fromEgg": "Obsidian Egg", "fromWorldNumber": 1, - "fromZoneNumber": 63, - "goldenThumbnail": "rbxassetid://14968268484", - "maxChance": 0.009989810393398734, - "name": "Jolly Penguin", + "fromZoneNumber": 44, + "goldenThumbnail": "rbxassetid://14968256450", + "maxChance": 0.1498426652015384, + "name": "Hell Spider", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968268575", + "thumbnail": "rbxassetid://14968256548", }, - "configName": "Jolly Penguin", + "configName": "Hell Spider", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.288Z", - "hashShort": "6952e9e40e13daa3", + "dateModified": "2026-06-27T16:05:18.059Z", + "hashShort": "2f19a530338e65ad", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 3760, + 89281, + 99608, + 107030, ], - "fromEgg": "Cowboy Egg", + "fromEgg": "Colorful Egg", "fromWorldNumber": 1, - "fromZoneNumber": 33, - "goldenThumbnail": "rbxassetid://14968207336", - "maxChance": 0.1814595660749507, - "name": "Desert Ram", + "fromZoneNumber": 60, + "goldenThumbnail": "rbxassetid://14968316193", + "maxChance": 0.2997002997002997, + "name": "Colorful Slime", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968207414", + "thumbnail": "rbxassetid://14968316333", }, - "configName": "Desert Ram", + "configName": "Colorful Slime", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.285Z", - "hashShort": "b925f5f07f8da8c7", + "dateModified": "2026-06-27T16:05:18.075Z", + "hashShort": "a18ec59f37b984ea", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 12701, + 14243, + 15155, + ], + "fly": true, + "fromEgg": "Magma Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 43, + "goldenThumbnail": "rbxassetid://14968351341", + "maxChance": 0.9610764055742432, + "name": "Three Headed Dragon", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://14968351447", + }, + "configName": "Three Headed Dragon", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:18.070Z", + "hashShort": "ac1b4a592a8863c8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://14968277071", - "name": "Lucky Cat", + "goldenThumbnail": "rbxassetid://14968209943", + "name": "Dominus Astra", "rarity": { "Announce": true, "Color": null, @@ -82802,44 +86122,62 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968277226", + "thumbnail": "rbxassetid://14968210060", }, - "configName": "Lucky Cat", + "configName": "Dominus Astra", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.286Z", - "hashShort": "fa1b675ab94b822d", + "dateModified": "2025-07-05T23:28:53.289Z", + "hashShort": "55941e435498e05a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 14485, + 4465, + 5038, + 5372, ], + "fromEgg": "Canyon Egg", "fromWorldNumber": 1, - "goldenThumbnail": "rbxassetid://14968284550", - "hidden": false, - "name": "Mrs. Claws", - "thumbnail": "rbxassetid://14968284667", + "fromZoneNumber": 34, + "goldenThumbnail": "rbxassetid://14968188192", + "maxChance": 0.8658008658008658, + "name": "Bull", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://14968188342", }, - "configName": "Mrs. Claws", + "configName": "Bull", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.287Z", - "hashShort": "d78da675c03fb49c", + "dateModified": "2026-06-27T16:05:18.080Z", + "hashShort": "9dc8c7cdb250a7f0", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 123331, + 30930, + 34685, + 37329, ], - "fromEgg": "Frosted Geode Egg", + "fromEgg": "Ninja Egg", "fromWorldNumber": 1, - "fromZoneNumber": 63, - "goldenThumbnail": "rbxassetid://14968242250", - "maxChance": 0.6992867275379114, - "name": "Frost Bear", + "fromZoneNumber": 51, + "goldenThumbnail": "rbxassetid://14968324677", + "maxChance": 0.2997002997002997, + "name": "Samurai Bull", "rarity": { "Announce": false, "Color": null, @@ -82852,26 +86190,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968242362", + "thumbnail": "rbxassetid://14968324814", }, - "configName": "Frost Bear", + "configName": "Samurai Bull", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.287Z", - "hashShort": "69241f0953ca46f7", + "dateModified": "2026-06-27T16:05:18.058Z", + "hashShort": "7f20b4a3d12965f5", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 127237, + 7, + 22, + 36, ], - "fromEgg": "Frosted Geode Egg", + "fromEgg": "Paw Egg", "fromWorldNumber": 1, - "fromZoneNumber": 63, - "goldenThumbnail": "rbxassetid://14976335686", - "maxChance": 0.2897045014085633, - "name": "Frost Axolotl", + "fromZoneNumber": 2, + "goldenThumbnail": "rbxassetid://14968224041", + "maxChance": 0.3816793893129771, + "name": "Ducky", "rarity": { "Announce": false, "Color": null, @@ -82884,58 +86224,63 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968242105", + "thumbnail": "rbxassetid://14968224483", }, - "configName": "Frost Axolotl", + "configName": "Ducky", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.284Z", - "hashShort": "3a8c77a752bed493", + "dateModified": "2026-06-27T16:05:18.082Z", + "hashShort": "4165cc395b228b25", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2343, + 413, + 479, + 522, ], - "fromEgg": "Cactus Egg", + "fly": true, + "fromEgg": "Sprout Egg", "fromWorldNumber": 1, - "fromZoneNumber": 29, - "goldenThumbnail": "rbxassetid://14968250396", - "maxChance": 0.8368200836820083, - "name": "Gorilla", + "fromZoneNumber": 14, + "goldenThumbnail": "rbxassetid://14968329549", + "maxChance": 0.16161616161616163, + "name": "Shadow Griffin", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968250591", + "thumbnail": "rbxassetid://14968329630", }, - "configName": "Gorilla", + "configName": "Shadow Griffin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.296Z", - "hashShort": "7367208e5af0be19", + "dateModified": "2026-06-27T16:05:18.081Z", + "hashShort": "255991ce14aacddd", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 953, + 12043, + 13521, + 14560, ], - "fromEgg": "Coral Egg", + "fromEgg": "Magma Egg", "fromWorldNumber": 1, - "fromZoneNumber": 21, - "goldenThumbnail": "rbxassetid://14968250171", - "maxChance": 0.5943536404160475, - "name": "Goldfish", + "fromZoneNumber": 43, + "goldenThumbnail": "rbxassetid://14968256139", + "maxChance": 0.3105590062111801, + "name": "Hell Rock", "rarity": { "Announce": false, "Color": null, @@ -82948,78 +86293,97 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968250275", + "thumbnail": "rbxassetid://14968256357", }, - "configName": "Goldfish", + "configName": "Hell Rock", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.295Z", - "hashShort": "755afa7bce9b92db", + "dateModified": "2026-06-27T16:05:18.071Z", + "hashShort": "a6e9445a58f47419", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 33881, + 6262865, + 6893201, + 7335613, ], - "fromEgg": "Sakura Egg", + "fly": true, + "fromEgg": "Heaven Egg", "fromWorldNumber": 1, - "fromZoneNumber": 50, - "goldenThumbnail": "rbxassetid://14968324944", - "maxChance": 0.00009998990101999697, - "name": "Ninja Cat", - "overrideZoneNumber": 51, + "fromZoneNumber": 96, + "goldenThumbnail": "rbxassetid://14968223390", + "maxChance": 0.1998001998001998, + "name": "Dove", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968325159", + "thumbnail": "rbxassetid://14968223534", }, - "configName": "Ninja Cat", + "configName": "Dove", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.290Z", - "hashShort": "ca693bbcad9949fa", + "dateModified": "2026-06-27T16:05:18.065Z", + "hashShort": "d7f8616f7318bd26", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 128227, + 558, + 644, + 700, ], + "fromEgg": "Overgrown Egg", "fromWorldNumber": 1, - "fromZoneNumber": 63, - "goldenThumbnail": "rbxassetid://14968312627", - "hidden": false, - "name": "Present Dragon", - "thumbnail": "rbxassetid://14968312733", + "fromZoneNumber": 17, + "goldenThumbnail": "rbxassetid://14968300111", + "maxChance": 0.3776873910517141, + "name": "Peacock", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://14968300268", }, - "configName": "Present Dragon", + "configName": "Peacock", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.295Z", - "hashShort": "08cf5ab775a60914", + "dateModified": "2026-06-27T16:05:18.067Z", + "hashShort": "948df1d604cadc59", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 186683, + 6392629, + 7016640, + 7482205, ], - "fromEgg": "Hot Cocoa Egg", + "fromEgg": "Angel Egg", "fromWorldNumber": 1, - "fromZoneNumber": 65, - "goldenThumbnail": "rbxassetid://14968292387", + "fromZoneNumber": 95, + "goldenThumbnail": "rbxassetid://14968254614", "maxChance": 0.08991008991008992, - "name": "North Pole Bunny", + "name": "Heavenly Peacock", "rarity": { "Announce": false, "Color": null, @@ -83032,59 +86396,55 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968292491", + "thumbnail": "rbxassetid://14968254733", }, - "configName": "North Pole Bunny", + "configName": "Heavenly Peacock", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.289Z", - "hashShort": "b99a329d7d81e694", + "dateModified": "2026-06-27T16:05:18.084Z", + "hashShort": "b3bfcb7d6c5290ff", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 135770, + 1085, + 1237, + 1334, ], + "fromEgg": "Anchor Egg", "fromWorldNumber": 1, - "fromZoneNumber": 63, - "goldenThumbnail": "rbxassetid://14968189860", - "hidden": false, - "name": "Candycane Unicorn", - "thumbnail": "rbxassetid://14968189945", + "fromZoneNumber": 22, + "goldenThumbnail": "rbxassetid://14968271035", + "maxChance": 0.78125, + "name": "Kraken", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://14968271149", }, - "configName": "Candycane Unicorn", + "configName": "Kraken", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.290Z", - "hashShort": "f29814785573e930", + "dateModified": "2026-06-27T16:05:18.070Z", + "hashShort": "8acabf11f2c84f2f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 152742, - ], + "exclusiveLevel": 1, "fly": true, - "fromWorldNumber": 1, - "fromZoneNumber": 63, - "goldenThumbnail": "rbxassetid://14968334067", - "hidden": false, - "name": "Snowflake Pegasus", - "thumbnail": "rbxassetid://14968334166", - }, - "configName": "Snowflake Pegasus", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.304Z", - "hashShort": "299fac31d591f2b1", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://14968311645", - "name": "Present Chest Mimic", + "goldenThumbnail": "rbxassetid://14968185297", + "name": "Sea Dragon", "rarity": { "Announce": true, "Color": null, @@ -83097,27 +86457,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968311832", + "thumbnail": "rbxassetid://14968185465", }, - "configName": "Present Chest Mimic", + "configName": "Sea Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.309Z", - "hashShort": "e53a47a3126a272c", + "dateModified": "2025-07-05T23:28:53.602Z", + "hashShort": "3fd2f5fea0fb5e09", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 3383, + 16042, + 17962, + 19113, ], - "fly": true, - "fromEgg": "Egyptian Egg", + "fromEgg": "Obsidian Egg", "fromWorldNumber": 1, - "fromZoneNumber": 31, - "goldenThumbnail": "rbxassetid://14968241018", - "maxChance": 0.001245836828597769, - "name": "Fossil Dragon", + "fromZoneNumber": 44, + "goldenThumbnail": "rbxassetid://14968260740", + "maxChance": 0.0009989511013435894, + "name": "Hound of Hades", "rarity": { "Announce": false, "Color": null, @@ -83130,86 +86491,81 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14968241204", + "thumbnail": "rbxassetid://14968260886", }, - "configName": "Fossil Dragon", + "configName": "Hound of Hades", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.305Z", - "hashShort": "40774aeb40f6beac", + "dateModified": "2026-06-27T16:05:18.089Z", + "hashShort": "773a729c162de9ec", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "balloon": true, - }, - "exclusiveLevel": 1, - "fly": true, - "goldenThumbnail": "rbxassetid://14968179039", - "name": "Balloon Dragon", + "cachedPower": [ + 168, + 213, + 239, + ], + "fromEgg": "Cat Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 8, + "goldenThumbnail": "rbxassetid://14968355354", + "maxChance": 0.5025125628140703, + "name": "Turtle", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968179312", + "thumbnail": "rbxassetid://14968355788", }, - "configName": "Balloon Dragon", + "configName": "Turtle", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.305Z", - "hashShort": "cb824b6f1fad64cf", + "dateModified": "2026-06-27T16:05:18.092Z", + "hashShort": "434fce8dc31e77bd", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 5073, - ], - "fromEgg": "Melted Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 36, - "goldenThumbnail": "rbxassetid://14968206382", - "maxChance": 0.8511869802439502, - "name": "Deer", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968192582", + "name": "Chest Mimic", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968206452", + "thumbnail": "rbxassetid://14968192663", }, - "configName": "Deer", + "configName": "Chest Mimic", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.289Z", - "hashShort": "2ebfef042f2e1735", + "dateModified": "2025-07-05T23:28:53.588Z", + "hashShort": "8c5b0a9a2d7ff927", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "balloon": true, - }, "exclusiveLevel": 3, "fly": true, - "goldenThumbnail": "rbxassetid://14968178373", - "name": "Balloon Axolotl", + "goldenThumbnail": "rbxassetid://14968243016", + "name": "Galaxy Dragon", "rarity": { "Announce": true, "Color": null, @@ -83222,20 +86578,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968178558", + "thumbnail": "rbxassetid://14968243135", }, - "configName": "Balloon Axolotl", + "configName": "Galaxy Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.291Z", - "hashShort": "0cdf9ce4c36268fc", + "dateModified": "2025-07-05T23:28:53.592Z", + "hashShort": "5da0ce0913fc91cb", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://15260348547", - "name": "Neon Twilight Cat", + "goldenThumbnail": "rbxassetid://14968334948", + "name": "Sock Monkey", "rarity": { "Announce": true, "Color": null, @@ -83248,90 +86604,90 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15260348437", + "thumbnail": "rbxassetid://14968335044", }, - "configName": "Neon Twilight Cat", + "configName": "Sock Monkey", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.291Z", - "hashShort": "629f33e45181e36a", + "dateModified": "2025-07-05T23:28:53.603Z", + "hashShort": "196669d4730c8699", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 1310, - ], - "fromEgg": "Beach Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 24, - "goldenThumbnail": "rbxassetid://14968282264", - "maxChance": 0.7513148009015778, - "name": "Moray Eel", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968183329", + "name": "Blobfish", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968282484", + "thumbnail": "rbxassetid://14968183467", }, - "configName": "Moray Eel", + "configName": "Blobfish", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.307Z", - "hashShort": "41d5f6c6b7d288cc", + "dateModified": "2025-07-05T23:28:53.599Z", + "hashShort": "23beda6f39836a0c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 31, + 56320, + 62941, + 67544, ], - "fromEgg": "Wood Egg", + "fly": true, + "fromEgg": "Pedal Egg", "fromWorldNumber": 1, - "fromZoneNumber": 4, - "goldenThumbnail": "rbxassetid://14968337699", - "maxChance": 0.684931506849315, - "name": "Squirrel", + "fromZoneNumber": 56, + "goldenThumbnail": "rbxassetid://14968233976", + "maxChance": 0.2, + "name": "Fairy", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968337785", + "thumbnail": "rbxassetid://14968234592", }, - "configName": "Squirrel", + "configName": "Fairy", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.306Z", - "hashShort": "f238169417be92cd", + "dateModified": "2026-06-27T16:05:18.093Z", + "hashShort": "97c9a19ca3f77539", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 6677, + 1, + 6, + 13, ], - "fromEgg": "Icicle Egg", + "fromEgg": "Cracked Egg", "fromWorldNumber": 1, - "fromZoneNumber": 38, - "goldenThumbnail": "rbxassetid://14968313800", - "maxChance": 0.321285140562249, - "name": "Puffin", + "fromZoneNumber": 1, + "goldenThumbnail": "rbxassetid://14968177877", + "maxChance": 0.25, + "name": "Axolotl", + "power": 1, "rarity": { "Announce": false, "Color": null, @@ -83344,91 +86700,94 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968313879", + "thumbnail": "rbxassetid://14968178095", }, - "configName": "Puffin", + "configName": "Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.294Z", - "hashShort": "859659c27a603167", + "dateModified": "2026-06-27T16:05:18.095Z", + "hashShort": "1235fd981b212354", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 8103, + 3860, ], - "fromEgg": "Yeti Egg", + "fromEgg": "Sandstone Egg", "fromWorldNumber": 1, - "fromZoneNumber": 40, - "goldenThumbnail": "rbxassetid://14968357669", - "maxChance": 0.8899876390605687, - "name": "Walrus", + "fromZoneNumber": 32, + "goldenThumbnail": "rbxassetid://14968336301", + "maxChance": 0.0007353713625380817, + "name": "Sphinx", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14968357843", + "thumbnail": "rbxassetid://14968336386", }, - "configName": "Walrus", + "configName": "Sphinx", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.310Z", - "hashShort": "83b38c2cb379e265", + "dateModified": "2025-07-05T23:28:53.604Z", + "hashShort": "cc85d501c4664b22", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 50, + 2214659, + 2437493, + 2599221, ], - "fromEgg": "Grass Egg", + "fromEgg": "Sweets Egg", "fromWorldNumber": 1, - "fromZoneNumber": 3, - "goldenThumbnail": "rbxassetid://14968353903", - "maxChance": 0.0410958904109589, - "name": "Tiger", - "power": 50, + "fromZoneNumber": 86, + "goldenThumbnail": "rbxassetid://14968201524", + "maxChance": 0.08991008991008992, + "name": "Cupcake", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968353990", + "thumbnail": "rbxassetid://14968202115", }, - "configName": "Tiger", + "configName": "Cupcake", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.299Z", - "hashShort": "32ef0d26394c80e7", + "dateModified": "2026-06-27T16:05:18.094Z", + "hashShort": "21965a1c2e118a60", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 6105, + 164, + 210, + 234, ], - "fromEgg": "Snow Egg", + "fromEgg": "Blossom Egg", "fromWorldNumber": 1, - "fromZoneNumber": 37, - "goldenThumbnail": "rbxassetid://14968332189", - "maxChance": 0.10180534817429075, - "name": "Snow Cat", + "fromZoneNumber": 7, + "goldenThumbnail": "rbxassetid://14968238350", + "maxChance": 0.05454545454545454, + "name": "Flamingo", "rarity": { "Announce": false, "Color": null, @@ -83441,21 +86800,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968332435", + "thumbnail": "rbxassetid://14968238473", }, - "configName": "Snow Cat", + "configName": "Flamingo", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.306Z", - "hashShort": "dc168b9b6f8e67b2", + "dateModified": "2026-06-27T16:05:18.098Z", + "hashShort": "9369aa72060f5b47", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "rbxassetid://14968287224", - "name": "Neon Griffin", + "goldenThumbnail": "rbxassetid://15260344146", + "name": "Storm Wolf", "rarity": { "Announce": true, "Color": null, @@ -83468,315 +86826,296 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968287391", + "thumbnail": "rbxassetid://15260344049", }, - "configName": "Neon Griffin", + "configName": "Storm Wolf", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.301Z", - "hashShort": "ae0313abf9a45bbe", + "dateModified": "2025-07-05T23:28:53.585Z", + "hashShort": "2fc3569abb1726a6", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 11290, - ], - "fromEgg": "Thawed Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 42, - "goldenThumbnail": "rbxassetid://14968172022", - "maxChance": 0.03413498836307215, - "name": "Angry Yeti", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968284821", + "name": "Mushroom King", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968172235", + "thumbnail": "rbxassetid://14968284903", }, - "configName": "Angry Yeti", + "configName": "Mushroom King", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.301Z", - "hashShort": "28cea22bb2855e56", + "dateModified": "2025-07-05T23:28:53.598Z", + "hashShort": "5781ead336354ec3", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 37, + 751671, + 831697, + 890051, ], - "fromEgg": "Wood Egg", + "fromEgg": "Dungeon Egg", "fromWorldNumber": 1, - "fromZoneNumber": 4, - "goldenThumbnail": "rbxassetid://14968180661", - "maxChance": 0.273972602739726, - "name": "Bear", + "fromZoneNumber": 78, + "goldenThumbnail": "rbxassetid://14968245406", + "maxChance": 0.1998001998001998, + "name": "Ghost", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968180773", + "thumbnail": "rbxassetid://14968245811", }, - "configName": "Bear", + "configName": "Ghost", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.294Z", - "hashShort": "670075848a1ece26", + "dateModified": "2026-06-27T16:05:18.104Z", + "hashShort": "0557dd48a79795ea", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 9768, - ], - "fromEgg": "Yeti Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 40, - "goldenThumbnail": "rbxassetid://14968191676", - "maxChance": 0.0546583850931677, - "name": "Cheerful Yeti", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968252371", + "name": "Guest Noob", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968191769", + "thumbnail": "rbxassetid://14968252525", }, - "configName": "Cheerful Yeti", + "configName": "Guest Noob", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.309Z", - "hashShort": "ae3495fe1d7f6d71", + "dateModified": "2025-07-05T23:28:53.589Z", + "hashShort": "1fa216be164c5d4f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 309, + 14698, + 16491, + 17560, ], - "fromEgg": "Hut Egg", + "fromEgg": "Volcano Egg", "fromWorldNumber": 1, - "fromZoneNumber": 12, - "goldenThumbnail": "rbxassetid://14968227948", - "maxChance": 0.1332741003998223, - "name": "Emerald Carbuncle", + "fromZoneNumber": 45, + "goldenThumbnail": "rbxassetid://14968255762", + "maxChance": 0.7991608810748715, + "name": "Hell Chick", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968228041", + "thumbnail": "rbxassetid://14968255858", }, - "configName": "Emerald Carbuncle", + "configName": "Hell Chick", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.497Z", - "hashShort": "1a7b979f91c2e820", + "dateModified": "2026-06-27T16:05:18.103Z", + "hashShort": "01a624fa57bd0ef1", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 5642, + 19128, + 21427, + 23038, ], - "fromEgg": "Melted Egg", + "fly": true, + "fromEgg": "Volcano Egg", "fromWorldNumber": 1, - "fromZoneNumber": 36, - "goldenThumbnail": "rbxassetid://14968333229", - "maxChance": 0.6787023211619384, - "name": "Snow Ram", + "fromZoneNumber": 45, + "goldenThumbnail": "rbxassetid://14968361546", + "maxChance": 0.0003214400514304082, + "name": "Wyvern of Hades", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14968333395", + "thumbnail": "rbxassetid://14968361712", }, - "configName": "Snow Ram", + "configName": "Wyvern of Hades", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.644Z", - "hashShort": "759d6fe190b8068d", + "dateModified": "2026-06-27T16:05:18.107Z", + "hashShort": "083be9cc700dc2c5", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 6395, - ], - "fromEgg": "Snow Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 37, - "goldenThumbnail": "rbxassetid://14968332888", - "maxChance": 0.015270802226143613, - "name": "Snow Leopard", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://14968211409", + "name": "Domortuus Astra", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968332999", + "thumbnail": "rbxassetid://14968211535", }, - "configName": "Snow Leopard", + "configName": "Domortuus Astra", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.662Z", - "hashShort": "00a0dfc4d9d1fc16", + "dateModified": "2025-07-05T23:28:53.596Z", + "hashShort": "b6d13da1ae11c2a6", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 735, - ], - "fromEgg": "Palm Tree Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 19, - "goldenThumbnail": "rbxassetid://14968245120", - "maxChance": 0.6060606060606061, - "name": "Gecko", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968292237", + "name": "Noobortuus", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968245227", + "thumbnail": "rbxassetid://14968292316", }, - "configName": "Gecko", + "configName": "Noobortuus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.662Z", - "hashShort": "28b5895132be533d", + "dateModified": "2025-07-05T23:28:53.601Z", + "hashShort": "501dd1c679579292", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 263, - ], - "fromEgg": "Geode Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 11, - "goldenThumbnail": "rbxassetid://14968253742", - "maxChance": 0.28409090909090906, - "name": "Happy Rock", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968255468", + "name": "Hell Chest Mimic", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968253894", + "thumbnail": "rbxassetid://14968255585", }, - "configName": "Happy Rock", + "configName": "Hell Chest Mimic", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.652Z", - "hashShort": "3d3b4cf848b5a3f6", + "dateModified": "2025-07-05T23:28:53.598Z", + "hashShort": "3d4e5eead24c8e90", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 144, + 1478, + 1688, + 1817, ], - "fromEgg": "Corgi Egg", + "fromEgg": "Beach Egg", "fromWorldNumber": 1, - "fromZoneNumber": 8, - "goldenThumbnail": "rbxassetid://14968199307", - "maxChance": 0.9090909090909091, - "name": "Cow", + "fromZoneNumber": 24, + "goldenThumbnail": "rbxassetid://14968329706", + "maxChance": 0.1949317738791423, + "name": "Shark", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968199389", + "thumbnail": "rbxassetid://14968329861", }, - "configName": "Cow", + "configName": "Shark", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.839Z", - "hashShort": "ca1f3336f4d294c9", + "dateModified": "2026-06-27T16:05:18.113Z", + "hashShort": "80e82b8eae59d5e9", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 313, + 7589140, + 8397905, + 8791673, ], "fly": true, - "fromEgg": "Grave Egg", + "fromEgg": "Heaven Castle Egg", "fromWorldNumber": 1, - "fromZoneNumber": 12, - "goldenThumbnail": "rbxassetid://14968180144", - "maxChance": 0.6024096385542169, - "name": "Bat", + "fromZoneNumber": 97, + "goldenThumbnail": "rbxassetid://14968229257", + "maxChance": 0.6993006993006994, + "name": "Empyrean Dragon", "rarity": { "Announce": false, "Color": null, @@ -83789,26 +87128,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968180230", + "thumbnail": "rbxassetid://14968229341", }, - "configName": "Bat", + "configName": "Empyrean Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.652Z", - "hashShort": "74d898f1c7e94235", + "dateModified": "2026-06-27T16:05:21.608Z", + "hashShort": "120a181bd25f18e0", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 863151, + 1228978, + 1354972, + 1444944, ], - "fromEgg": "Dungeon Egg", + "fromEgg": "Empyrean Egg", "fromWorldNumber": 1, - "fromZoneNumber": 78, - "goldenThumbnail": "rbxassetid://14968316950", + "fromZoneNumber": 81, + "goldenThumbnail": "rbxassetid://14968229488", "maxChance": 0.08991008991008992, - "name": "Reaper", + "name": "Empyrean Fox", "rarity": { "Announce": false, "Color": null, @@ -83821,26 +87162,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968317238", + "thumbnail": "rbxassetid://14968229607", }, - "configName": "Reaper", + "configName": "Empyrean Fox", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.651Z", - "hashShort": "63cf741eff72d4c8", + "dateModified": "2026-06-27T16:05:18.109Z", + "hashShort": "2521dffee0ea6137", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 809645, + 1152795, + 1279528, + 1345418, ], - "fromEgg": "Dungeon Egg", + "fromEgg": "Empyrean Egg", "fromWorldNumber": 1, - "fromZoneNumber": 78, - "goldenThumbnail": "rbxassetid://14968331188", - "maxChance": 0.6993006993006994, - "name": "Skeleton", + "fromZoneNumber": 81, + "goldenThumbnail": "rbxassetid://14968229892", + "maxChance": 0.8991008991008992, + "name": "Empyrean Stallion", "rarity": { "Announce": false, "Color": null, @@ -83853,86 +87196,66 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968331286", + "thumbnail": "rbxassetid://14968231233", }, - "configName": "Skeleton", + "configName": "Empyrean Stallion", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.647Z", - "hashShort": "0eeffe7f4ea3b788", + "dateModified": "2026-06-27T16:05:18.114Z", + "hashShort": "b91cc64c5a88cc79", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 364, + 1070250, + 1182993, + 1264647, ], - "fly": true, - "fromEgg": "Hut Egg", + "fromEgg": "Empyrean Egg", "fromWorldNumber": 1, - "fromZoneNumber": 12, - "goldenThumbnail": "rbxassetid://14968360717", - "maxChance": 0.03614457831325301, - "name": "Willow Wisp", + "fromZoneNumber": 81, + "goldenThumbnail": "rbxassetid://14968229723", + "maxChance": 0.1998001998001998, + "name": "Empyrean Snake", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968360884", + "thumbnail": "rbxassetid://14968229797", }, - "configName": "Willow Wisp", + "configName": "Empyrean Snake", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.657Z", - "hashShort": "56cd5e95f305bd30", + "dateModified": "2026-06-27T16:05:18.115Z", + "hashShort": "a1e704e6db02b43e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "rbxassetid://14968359938", - "name": "Wicked Empyrean Dragon", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, + "animations": { + "spinZ": true, }, - "thumbnail": "rbxassetid://14968360041", - }, - "configName": "Wicked Empyrean Dragon", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.641Z", - "hashShort": "94ba88247690ef5d", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { "cachedPower": [ - 644, + 7191707, + 7891529, + 8415192, ], - "fromEgg": "Mossy Egg", + "fly": true, + "fromEgg": "Heaven Egg", "fromWorldNumber": 1, - "fromZoneNumber": 18, - "goldenThumbnail": "rbxassetid://14968294619", - "maxChance": 0.15037593984962405, - "name": "Panther", + "fromZoneNumber": 96, + "goldenThumbnail": "rbxassetid://14968171792", + "maxChance": 0.08991008991008992, + "name": "Angelus", "rarity": { "Announce": false, "Color": null, @@ -83945,53 +87268,48 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968294740", + "thumbnail": "rbxassetid://14968171896", }, - "configName": "Panther", + "configName": "Angelus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.648Z", - "hashShort": "7383b22a86ea47ff", + "dateModified": "2026-06-27T16:05:18.110Z", + "hashShort": "1f4ffeb1820cb0c8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 901, - ], - "fromEgg": "Coral Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 21, - "goldenThumbnail": "rbxassetid://14968251006", - "maxChance": 0.31746031746031744, - "name": "Green Fish", + "exclusiveLevel": 1, + "fly": true, + "goldenThumbnail": "rbxassetid://14968313282", + "name": "Pterodactyl", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968251113", + "thumbnail": "rbxassetid://14968313449", }, - "configName": "Green Fish", + "configName": "Pterodactyl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.658Z", - "hashShort": "afbd765a47ec8e02", + "dateModified": "2025-07-05T23:28:53.591Z", + "hashShort": "5acf0e60a3107143", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, + "exclusiveLevel": 3, "fly": true, - "goldenThumbnail": "", - "name": "Cosmic Dragon", + "goldenThumbnail": "rbxassetid://14968228350", + "name": "Empyrean Agony", "rarity": { "Announce": true, "Color": null, @@ -84004,245 +87322,266 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15201619975", + "thumbnail": "rbxassetid://14968228476", }, - "configName": "Cosmic Dragon", + "configName": "Empyrean Agony", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.648Z", - "hashShort": "0262314a77c1ec97", + "dateModified": "2025-07-05T23:28:53.788Z", + "hashShort": "d4dfd465dc8f683e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968318248", - "name": "Redstone Cat", + "cachedPower": [ + 1215, + 1386, + 1491, + ], + "fromEgg": "Atlantis Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 23, + "goldenThumbnail": "rbxassetid://14968261606", + "maxChance": 0.0234375, + "name": "Hydra", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14968318336", + "thumbnail": "rbxassetid://14968262860", }, - "configName": "Redstone Cat", + "configName": "Hydra", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.649Z", - "hashShort": "9dada8c777475bd2", + "dateModified": "2026-06-27T16:05:18.112Z", + "hashShort": "143ccea8f1997a87", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2805, + 23548, + 26383, + 28096, ], - "fromEgg": "Fossil Egg", + "fromEgg": "Metal Egg", "fromWorldNumber": 1, - "fromZoneNumber": 30, - "goldenThumbnail": "rbxassetid://14968268680", - "maxChance": 0.015037593984962405, - "name": "Kangaroo", + "fromZoneNumber": 49, + "goldenThumbnail": "rbxassetid://14968203570", + "maxChance": 0.79601982129156, + "name": "Cyborg Bunny", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968268764", + "thumbnail": "rbxassetid://14968203766", }, - "configName": "Kangaroo", + "configName": "Cyborg Bunny", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.644Z", - "hashShort": "8d6f8c2edc9eeeed", + "dateModified": "2026-06-27T16:05:18.109Z", + "hashShort": "d4c1ac57724b5b73", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 63, + 27127, + 30447, + 32742, ], - "fromEgg": "Pumpkin Egg", + "fromEgg": "Metal Egg", "fromWorldNumber": 1, - "fromZoneNumber": 5, - "goldenThumbnail": "rbxassetid://14968241467", - "maxChance": 0.22727272727272727, - "name": "Fox", + "fromZoneNumber": 49, + "goldenThumbnail": "rbxassetid://14968204990", + "maxChance": 0.0049751238830722504, + "name": "Cyborg Dragon", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14968241601", + "thumbnail": "rbxassetid://14968205100", }, - "configName": "Fox", + "configName": "Cyborg Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.641Z", - "hashShort": "b8994f54c0aa28ea", + "dateModified": "2026-06-27T16:05:18.112Z", + "hashShort": "573111eee63c0d82", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 116, + 24697, + 27678, + 29733, ], - "fromEgg": "Blossom Egg", + "fromEgg": "Metal Egg", "fromWorldNumber": 1, - "fromZoneNumber": 7, - "goldenThumbnail": "rbxassetid://14968358895", - "maxChance": 0.6242197253433209, - "name": "White Bunny", + "fromZoneNumber": 49, + "goldenThumbnail": "rbxassetid://14968205654", + "maxChance": 0.19900495532289, + "name": "Cyborg Panda", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968359101", + "thumbnail": "rbxassetid://14968205745", }, - "configName": "White Bunny", + "configName": "Cyborg Panda", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.660Z", - "hashShort": "0e08a77055b9cd11", + "dateModified": "2026-06-27T16:05:18.111Z", + "hashShort": "11b4e8992d83bc8b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 335, + 34210, + 38353, + 41132, ], - "fromEgg": "Spike Egg", + "fromEgg": "Metal Egg", "fromWorldNumber": 1, - "fromZoneNumber": 13, - "goldenThumbnail": "rbxassetid://14968181884", - "maxChance": 0.6211180124223602, - "name": "Black Bear", + "fromZoneNumber": 49, + "goldenThumbnail": "rbxassetid://14968204710", + "maxChance": 0.0009990009990009992, + "name": "Cyborg Dominus", + "overrideZoneNumber": 52, "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14968181998", + "thumbnail": "rbxassetid://14968204801", }, - "configName": "Black Bear", + "configName": "Cyborg Dominus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.665Z", - "hashShort": "a5d5cc3d5103a1dc", + "dateModified": "2026-06-27T16:05:18.119Z", + "hashShort": "c14a32cce6b0668b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 8189, + 2620, ], - "fly": true, - "fromEgg": "Snowman Egg", + "fromEgg": "Zebra Egg", "fromWorldNumber": 1, - "fromZoneNumber": 39, - "goldenThumbnail": "rbxassetid://14968242511", - "maxChance": 0.09888751545117429, - "name": "Snow Dragon", + "fromZoneNumber": 28, + "goldenThumbnail": "rbxassetid://14968191884", + "maxChance": 0.006896551724137932, + "name": "Cheetah", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14968242615", + "thumbnail": "rbxassetid://14968191981", }, - "configName": "Frost Dragon", + "configName": "Cheetah", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.649Z", - "hashShort": "c8567feea31cf6fe", + "dateModified": "2025-07-05T23:28:53.621Z", + "hashShort": "1b73a2c5e2b7a6ce", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 12518, + 4004, + 4521, + 4843, ], - "fromEgg": "Thawed Egg", + "fromEgg": "Cowboy Egg", "fromWorldNumber": 1, - "fromZoneNumber": 42, - "goldenThumbnail": "rbxassetid://14968263862", - "maxChance": 0.0007757951900698216, - "name": "Icemortuus", + "fromZoneNumber": 33, + "goldenThumbnail": "rbxassetid://14968259225", + "maxChance": 0.013806706114398421, + "name": "Honey Badger", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14968263977", + "thumbnail": "rbxassetid://14968259388", }, - "configName": "Icemortuus", + "configName": "Honey Badger", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.661Z", - "hashShort": "378315ee4309c584", + "dateModified": "2026-06-27T16:05:18.121Z", + "hashShort": "70d268191e478ff2", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 19512, + 8, + 25, + 40, ], - "fromEgg": "Tentacle Egg", + "fromEgg": "Paw Egg", "fromWorldNumber": 1, - "fromZoneNumber": 47, - "goldenThumbnail": "rbxassetid://14968255941", - "maxChance": 0.19996000799840033, - "name": "Hell Fox", + "fromZoneNumber": 2, + "goldenThumbnail": "rbxassetid://14968281421", + "maxChance": 0.19083969465648856, + "name": "Monkey", + "power": 8, "rarity": { "Announce": false, "Color": null, @@ -84255,27 +87594,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968256017", + "thumbnail": "rbxassetid://14968281826", }, - "configName": "Hell Fox", + "configName": "Monkey", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.666Z", - "hashShort": "fce2434f4b506286", + "dateModified": "2026-06-27T16:05:18.121Z", + "hashShort": "eb6dfe134a75870d", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 18601, + 2222, + 2519, + 2711, ], - "fly": true, - "fromEgg": "Tentacle Egg", + "fromEgg": "Cheetah Egg", "fromWorldNumber": 1, - "fromZoneNumber": 47, - "goldenThumbnail": "rbxassetid://14968255258", - "maxChance": 0.7998400319936013, - "name": "Hell Bat", + "fromZoneNumber": 29, + "goldenThumbnail": "rbxassetid://14968244875", + "maxChance": 0.8620689655172413, + "name": "Gazelle", "rarity": { "Announce": false, "Color": null, @@ -84288,58 +87628,54 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968255366", + "thumbnail": "rbxassetid://14968245015", }, - "configName": "Hell Bat", + "configName": "Gazelle", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.655Z", - "hashShort": "3b4e55c458186eea", + "dateModified": "2026-06-27T16:05:18.122Z", + "hashShort": "f7aae2019043fbeb", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 10705, - ], - "fromEgg": "Thawed Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 42, - "goldenThumbnail": "rbxassetid://14968263632", - "maxChance": 0.3103180760279286, - "name": "Ice Slime", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968271803", + "name": "Lava Scorpion", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968263728", + "thumbnail": "rbxassetid://14968271886", }, - "configName": "Ice Slime", + "configName": "Lava Scorpion", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.656Z", - "hashShort": "715508ed5708a594", + "dateModified": "2025-07-05T23:28:53.923Z", + "hashShort": "d42bdc0dfe74c4fa", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 6516, + 90, + 133, + 157, ], - "fromEgg": "Icicle Egg", + "fromEgg": "Hive Egg", "fromWorldNumber": 1, - "fromZoneNumber": 38, - "goldenThumbnail": "rbxassetid://14968333795", - "maxChance": 0.642570281124498, - "name": "Snow Squirrel", + "fromZoneNumber": 5, + "goldenThumbnail": "rbxassetid://14968327286", + "maxChance": 0.38011695906432746, + "name": "Scarecrow Cat", "rarity": { "Announce": false, "Color": null, @@ -84352,27 +87688,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968333979", + "thumbnail": "rbxassetid://14968327391", }, - "configName": "Snow Squirrel", + "configName": "Scarecrow Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.654Z", - "hashShort": "1a9f2aeada85f67c", + "dateModified": "2026-06-27T16:05:18.124Z", + "hashShort": "996593b1b3ecbb18", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 3, + 654, + 755, + 814, ], - "fromEgg": "Spotted Egg", + "fromEgg": "Jungle Egg", "fromWorldNumber": 1, - "fromZoneNumber": 1, - "goldenThumbnail": "rbxassetid://14968192966", - "maxChance": 0.2903225806451613, - "name": "Chick", - "power": 3, + "fromZoneNumber": 18, + "goldenThumbnail": "rbxassetid://14968331949", + "maxChance": 0.5899705014749262, + "name": "Sloth", "rarity": { "Announce": false, "Color": null, @@ -84385,91 +87722,90 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968193170", + "thumbnail": "rbxassetid://14968332057", }, - "configName": "Chick", + "configName": "Sloth", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.656Z", - "hashShort": "a42881bbabe4ab78", + "dateModified": "2026-06-27T16:05:18.125Z", + "hashShort": "644d0aaac42e43fb", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 5, + 3137, + 3546, + 3792, ], - "fromEgg": "Spotted Egg", + "fromEgg": "Egyptian Egg", "fromWorldNumber": 1, - "fromZoneNumber": 1, - "goldenThumbnail": "rbxassetid://14968206125", - "maxChance": 0.3816793893129771, - "name": "Dalmatian", - "power": 5, + "fromZoneNumber": 31, + "goldenThumbnail": "rbxassetid://14968336766", + "maxChance": 0.018687552428966536, + "name": "Spitting Dino", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14968206257", + "thumbnail": "rbxassetid://14968336870", }, - "configName": "Dalmatian", + "configName": "Spitting Dino", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.646Z", - "hashShort": "be9e920cf69c9c43", + "dateModified": "2026-06-27T16:05:19.890Z", + "hashShort": "98aaa1acaece77f0", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 122, - ], - "fromEgg": "Blossom Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 7, - "goldenThumbnail": "rbxassetid://14968193335", - "maxChance": 0.37453183520599254, - "name": "Chicken", + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "rbxassetid://14968286289", + "name": "Nebula Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968193451", + "thumbnail": "rbxassetid://14968286552", }, - "configName": "Chicken", + "configName": "Nebula Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.661Z", - "hashShort": "83e0327333892a79", + "dateModified": "2025-07-05T23:28:53.930Z", + "hashShort": "bc210bf0d18c4b97", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 85, + 478989, + 529755, + 565031, ], - "fromEgg": "Acorn Egg", + "fly": true, + "fromEgg": "Wizard Egg", "fromWorldNumber": 1, - "fromZoneNumber": 6, - "goldenThumbnail": "rbxassetid://14968301383", - "maxChance": 0.5847953216374269, - "name": "Piggy", + "fromZoneNumber": 73, + "goldenThumbnail": "rbxassetid://14968294018", + "maxChance": 0.289704385644888, + "name": "Owl", "rarity": { "Announce": false, "Color": null, @@ -84482,26 +87818,30 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968301566", + "thumbnail": "rbxassetid://14968294097", }, - "configName": "Piggy", + "configName": "Owl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.657Z", - "hashShort": "4505b2ef57f1a98c", + "dateModified": "2026-06-27T16:05:19.911Z", + "hashShort": "65e1052d7517d88f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 9526, + 18, + 43, + 63, ], - "fromEgg": "Ice Egg", + "fly": true, + "fromEgg": "Paw Egg", "fromWorldNumber": 1, - "fromZoneNumber": 41, - "goldenThumbnail": "rbxassetid://14968261326", - "maxChance": 0.2981366459627329, - "name": "Husky", + "fromZoneNumber": 2, + "goldenThumbnail": "rbxassetid://14968295137", + "maxChance": 0.2517985611510791, + "name": "Parrot", + "power": 18, "rarity": { "Announce": false, "Color": null, @@ -84514,26 +87854,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968261449", + "thumbnail": "rbxassetid://14968295353", }, - "configName": "Husky", + "configName": "Parrot", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.667Z", - "hashShort": "86722b0a5ae35509", + "dateModified": "2026-06-27T16:05:19.912Z", + "hashShort": "b880fafb15096775", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 58, + 3545, + 4005, + 4287, ], - "fromEgg": "Pumpkin Egg", + "fromEgg": "Sandstone Egg", "fromWorldNumber": 1, - "fromZoneNumber": 5, - "goldenThumbnail": "rbxassetid://14968271568", - "maxChance": 0.45454545454545453, - "name": "Lamb", + "fromZoneNumber": 32, + "goldenThumbnail": "rbxassetid://14968328243", + "maxChance": 0.7889546351084813, + "name": "Scorpion", "rarity": { "Announce": false, "Color": null, @@ -84546,59 +87888,81 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968271702", + "thumbnail": "rbxassetid://14968328402", }, - "configName": "Lamb", + "configName": "Scorpion", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.659Z", - "hashShort": "b652beb6dcc52895", + "dateModified": "2026-06-27T16:05:19.902Z", + "hashShort": "9ca719c0e7c3c925", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 2656, - ], - "fromEgg": "Fossil Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 30, - "goldenThumbnail": "rbxassetid://14968175339", - "maxChance": 0.14202172096908938, - "name": "Armadillo", + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "rbxassetid://14968243684", + "name": "Galaxy Pegasus", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968175530", + "thumbnail": "rbxassetid://14968243819", }, - "configName": "Armadillo", + "configName": "Galaxy Pegasus", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:53.921Z", + "hashShort": "252647a82fcecee6", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968347727", + "name": "Subzero Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://14968347840", + }, + "configName": "Subzero Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.666Z", - "hashShort": "b2e59dde7362da23", + "dateModified": "2025-07-05T23:28:53.927Z", + "hashShort": "6621f14ec0bf3100", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 6745902, + 2819, + 3191, + 3431, ], - "fly": true, - "fromEgg": "Heaven Egg", + "fromEgg": "Egyptian Egg", "fromWorldNumber": 1, - "fromZoneNumber": 96, - "goldenThumbnail": "rbxassetid://14968300424", - "maxChance": 0.6993006993006994, - "name": "Pegasus", + "fromZoneNumber": 31, + "goldenThumbnail": "rbxassetid://14968208009", + "maxChance": 0.830557885731846, + "name": "Dino", "rarity": { "Announce": false, "Color": null, @@ -84611,27 +87975,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968300520", + "thumbnail": "rbxassetid://14968208845", }, - "configName": "Pegasus", + "configName": "Dino", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.642Z", - "hashShort": "d81e9e6d8257a583", + "dateModified": "2026-06-27T16:05:19.894Z", + "hashShort": "147dbe1000607841", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 32154, + 182, + 225, + 253, ], - "fly": true, - "fromEgg": "Ninja Egg", + "fromEgg": "Cat Egg", "fromWorldNumber": 1, - "fromZoneNumber": 51, - "goldenThumbnail": "rbxassetid://14968325270", - "maxChance": 0.059940059940059943, - "name": "Samurai Dragon", + "fromZoneNumber": 8, + "goldenThumbnail": "rbxassetid://14968254850", + "maxChance": 0.12562814070351758, + "name": "Hedgehog", "rarity": { "Announce": false, "Color": null, @@ -84644,26 +88009,55 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968325380", + "thumbnail": "rbxassetid://14968254942", }, - "configName": "Samurai Dragon", + "configName": "Hedgehog", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.902Z", + "hashShort": "e7218c2bff58ad59", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "rbxassetid://14968210551", + "name": "Dominus Darkwing", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://14968210625", + }, + "configName": "Dominus Darkwing", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.653Z", - "hashShort": "b57d1ff3ca227239", + "dateModified": "2025-07-05T23:28:53.939Z", + "hashShort": "ffa1915c27943aa0", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 61, + 755, + 866, + 936, ], - "fromEgg": "Pumpkin Egg", + "fromEgg": "Palm Tree Egg", "fromWorldNumber": 1, - "fromZoneNumber": 5, - "goldenThumbnail": "rbxassetid://14968315696", - "maxChance": 0.3181818181818182, - "name": "Raccoon", + "fromZoneNumber": 19, + "goldenThumbnail": "rbxassetid://14968257308", + "maxChance": 0.30303030303030304, + "name": "Hippo", "rarity": { "Announce": false, "Color": null, @@ -84676,27 +88070,55 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968315758", + "thumbnail": "rbxassetid://14968257583", }, - "configName": "Raccoon", + "configName": "Hippo", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.918Z", + "hashShort": "2ba71898cb5e2aaf", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "rbxassetid://14968347369", + "name": "Stunt Unicorn", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://14968347562", + }, + "configName": "Stunt Unicorn", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.655Z", - "hashShort": "cc5d602397e1e460", + "dateModified": "2025-07-05T23:28:53.934Z", + "hashShort": "6af7897468728031", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 23364, + 545465, + 602302, + 640326, ], - "fly": true, - "fromEgg": "Tentacle Egg", + "fromEgg": "Eerie Egg", "fromWorldNumber": 1, - "fromZoneNumber": 47, - "goldenThumbnail": "rbxassetid://14968206862", - "maxChance": 0.009888751545117428, - "name": "Demon", + "fromZoneNumber": 75, + "goldenThumbnail": "rbxassetid://14968358254", + "maxChance": 0.049949550953536925, + "name": "Werewolf", "rarity": { "Announce": false, "Color": null, @@ -84709,26 +88131,29 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14968206949", + "thumbnail": "rbxassetid://14968358411", }, - "configName": "Demon", + "configName": "Werewolf", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.645Z", - "hashShort": "efbc4000a454ca01", + "dateModified": "2026-06-27T16:05:19.915Z", + "hashShort": "b2fb5c776a729ef6", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 411, + 719684, + 799560, + 841844, ], - "fromEgg": "Mushroom Egg", + "fly": true, + "fromEgg": "Cursed Egg", "fromWorldNumber": 1, - "fromZoneNumber": 14, - "goldenThumbnail": "rbxassetid://14968205864", - "maxChance": 0.40404040404040403, - "name": "Cyclops", + "fromZoneNumber": 77, + "goldenThumbnail": "rbxassetid://14968357496", + "maxChance": 0.6993006993006994, + "name": "Vampire Bat", "rarity": { "Announce": false, "Color": null, @@ -84741,58 +88166,63 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968205992", + "thumbnail": "rbxassetid://14968357579", }, - "configName": "Cyclops", + "configName": "Vampire Bat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.653Z", - "hashShort": "07f20d17626666bf", + "dateModified": "2026-06-27T16:05:19.914Z", + "hashShort": "54d2229ffa6ad45a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 191, + 767245, + 847178, + 903496, ], - "fromEgg": "Dog Egg", + "fly": true, + "fromEgg": "Cursed Egg", "fromWorldNumber": 1, - "fromZoneNumber": 9, - "goldenThumbnail": "rbxassetid://14968241712", - "maxChance": 0.3125, - "name": "Froggy", + "fromZoneNumber": 77, + "goldenThumbnail": "rbxassetid://14968351176", + "maxChance": 0.08991008991008992, + "name": "Grim Reaper", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968241898", + "thumbnail": "rbxassetid://14968351247", }, - "configName": "Froggy", + "configName": "Grim Reaper", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.645Z", - "hashShort": "cd2e77a185a20f85", + "dateModified": "2026-06-27T16:05:19.894Z", + "hashShort": "c532c5130fc79e43", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 417125, + 603715, + 667416, + 712606, ], - "fromEgg": "Wizard Egg", + "fromEgg": "Abyssal Egg", "fromWorldNumber": 1, - "fromZoneNumber": 73, - "goldenThumbnail": "rbxassetid://14968249829", - "maxChance": 0.1997802417340925, - "name": "Goblin", + "fromZoneNumber": 76, + "goldenThumbnail": "rbxassetid://14968362721", + "maxChance": 0.1, + "name": "Zombie Bull", "rarity": { "Announce": false, "Color": null, @@ -84805,26 +88235,62 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968250023", + "thumbnail": "rbxassetid://14968362793", }, - "configName": "Goblin", + "configName": "Zombie Bull", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.654Z", - "hashShort": "746e8a35350a2c6b", + "dateModified": "2026-06-27T16:05:19.898Z", + "hashShort": "091af90165d5aa5e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 490, + 15929, + 17840, + 19013, ], - "fromEgg": "Spirit Egg", + "fromEgg": "Volcano Egg", "fromWorldNumber": 1, - "fromZoneNumber": 15, - "goldenThumbnail": "rbxassetid://14968231615", - "maxChance": 0.3107344632768362, - "name": "Enchanted Deer", + "fromZoneNumber": 45, + "goldenThumbnail": "rbxassetid://14968282695", + "maxChance": 0.04994755506717947, + "name": "Mortuus", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Epic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 3, + "_id": "Epic", + "_script": null, + }, + "thumbnail": "rbxassetid://14968282781", + }, + "configName": "Mortuus", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.900Z", + "hashShort": "e33ac76da81b4577", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 578420, + 642001, + 680859, + ], + "fromEgg": "Abyssal Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 76, + "goldenThumbnail": "rbxassetid://14968363154", + "maxChance": 0.5, + "name": "Zombie Squirrel", "rarity": { "Announce": false, "Color": null, @@ -84837,20 +88303,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968231993", + "thumbnail": "rbxassetid://14968363305", }, - "configName": "Enchanted Deer", + "configName": "Zombie Squirrel", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.651Z", - "hashShort": "f7e42f098a938e55", + "dateModified": "2026-06-27T16:05:19.913Z", + "hashShort": "106dbefabde0503c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968227154", - "name": "Electric Slime", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968183149", + "name": "Blobenstein", "rarity": { "Announce": true, "Color": null, @@ -84863,54 +88329,55 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968227249", + "thumbnail": "rbxassetid://14968183240", }, - "configName": "Electric Slime", + "configName": "Blobenstein", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.650Z", - "hashShort": "1f24ebec576ea2e5", + "dateModified": "2025-07-05T23:28:53.954Z", + "hashShort": "1b3094e526eb0489", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 951333, + 12701, + 14243, + 15155, ], "fly": true, - "fromEgg": "Treasure Egg", + "fromEgg": "Magma Egg", "fromWorldNumber": 1, - "fromZoneNumber": 80, - "goldenThumbnail": "rbxassetid://16043357261", - "maxChance": 0.1998001998001998, - "name": "Red Dragon", + "fromZoneNumber": 43, + "goldenThumbnail": "rbxassetid://14968301020", + "maxChance": 0.034161490683229816, + "name": "Phoenix", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://16043357132", + "thumbnail": "rbxassetid://14968301259", }, - "configName": "Red Dragon", + "configName": "Phoenix", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.643Z", - "hashShort": "81c6ce8734daf049", + "dateModified": "2026-06-27T16:05:19.900Z", + "hashShort": "ee27a294ee1a655e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968352730", - "hideSerial": true, - "name": "Tiedye Cat", + "goldenThumbnail": "rbxassetid://14968270529", + "name": "Knife Cat", "rarity": { "Announce": true, "Color": null, @@ -84923,46 +88390,55 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968352979", + "thumbnail": "rbxassetid://14968270716", }, - "configName": "Tiedye Cat", + "configName": "Knife Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.643Z", - "hashShort": "e3851ba1a6a3722f", + "dateModified": "2025-07-05T23:28:54.254Z", + "hashShort": "0fd7542c599b1a0c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968228916", - "name": "Empyrean Dominus", + "cachedPower": [ + 777, + 890, + 969, + ], + "fromEgg": "Beach Ball Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 20, + "goldenThumbnail": "rbxassetid://14968329137", + "maxChance": 0.7245326764237067, + "name": "Seal", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968229114", + "thumbnail": "rbxassetid://14968329238", }, - "configName": "Empyrean Dominus", + "configName": "Seal", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.640Z", - "hashShort": "f750ecf5ab0c37fb", + "dateModified": "2026-06-27T16:05:19.928Z", + "hashShort": "af49552c0315167c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://14968264563", - "name": "Inferno Dominus", + "fly": true, + "goldenThumbnail": "rbxassetid://15260344356", + "name": "Storm Dragon", "rarity": { "Announce": true, "Color": null, @@ -84975,20 +88451,24 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968264716", + "thumbnail": "rbxassetid://15260344244", }, - "configName": "Inferno Dominus", + "configName": "Storm Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.816Z", - "hashShort": "edad6bd7606d8cad", + "dateModified": "2025-07-05T23:28:54.266Z", + "hashShort": "d388d553acbc679c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://15260344540", - "name": "Storm Dominus", + "animations": { + "spinZ": true, + }, + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "rbxassetid://14968359701", + "name": "Wicked Angelus", "rarity": { "Announce": true, "Color": null, @@ -85001,54 +88481,54 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15260344456", + "thumbnail": "rbxassetid://14968359818", }, - "configName": "Storm Dominus", + "configName": "Wicked Angelus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.810Z", - "hashShort": "b7c9b38a79e25544", + "dateModified": "2025-07-05T23:28:54.278Z", + "hashShort": "4f277b1fffaf3566", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 5566991, + 1570, + 1785, + 1931, ], - "fly": true, - "fromEgg": "Angel Egg", + "fromEgg": "Tiki Egg", "fromWorldNumber": 1, - "fromZoneNumber": 95, - "goldenThumbnail": "rbxassetid://14968171293", - "maxChance": 0.1998001998001998, - "name": "Angel Cat", + "fromZoneNumber": 26, + "goldenThumbnail": "rbxassetid://14968275203", + "maxChance": 0.7841599686336013, + "name": "Luau Cat", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968171393", + "thumbnail": "rbxassetid://14968275276", }, - "configName": "Angel Cat", + "configName": "Luau Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.806Z", - "hashShort": "cb2909e67968ecde", + "dateModified": "2026-06-27T16:05:19.937Z", + "hashShort": "30a60cf5d81f519b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://15260347448", - "hideSerial": true, - "name": "Nightfall Ram", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://81626212949143", + "name": "Cosmic Axolotl", "rarity": { "Announce": true, "Color": null, @@ -85061,24 +88541,21 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15260347339", + "thumbnail": "rbxassetid://15201620186", }, - "configName": "Nightfall Ram", + "configName": "Cosmic Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.810Z", - "hashShort": "751b93b99ec23948", + "dateModified": "2025-07-05T23:28:54.258Z", + "hashShort": "f859e44a9c2d2141", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "flyHeightChange": 0, - }, - "exclusiveLevel": 2, + "exclusiveLevel": 3, "fly": true, - "goldenThumbnail": "rbxassetid://14968258995", - "name": "Hologram Tiger", + "goldenThumbnail": "rbxassetid://15260345481", + "name": "Sapphire Phoenix", "rarity": { "Announce": true, "Color": null, @@ -85091,81 +88568,89 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968259117", + "thumbnail": "rbxassetid://15260345330", }, - "configName": "Hologram Tiger", + "configName": "Sapphire Phoenix", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.815Z", - "hashShort": "bc83f5f83e61716b", + "dateModified": "2025-07-05T23:28:54.255Z", + "hashShort": "32279e8414ba0cf1", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "flyHeightChange": 0, - }, - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "rbxassetid://14968257984", - "name": "Hologram Axolotl", + "cachedPower": [ + 2230, + 2528, + 2725, + ], + "fromEgg": "Zebra Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 28, + "goldenThumbnail": "rbxassetid://14968362485", + "maxChance": 0.1554605518849592, + "name": "Zebra", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968258075", + "thumbnail": "rbxassetid://14968362598", }, - "configName": "Hologram Axolotl", + "configName": "Zebra", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.826Z", - "hashShort": "460c783a4f840b09", + "dateModified": "2026-06-27T16:05:19.938Z", + "hashShort": "3db9b11676e5a35a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "flyHeightChange": 0, - }, - "exclusiveLevel": 1, - "fly": true, - "goldenThumbnail": "rbxassetid://14968258693", - "name": "Hologram Shark", + "cachedPower": [ + 2093, + 2381, + 2562, + ], + "fromEgg": "Zebra Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 28, + "goldenThumbnail": "rbxassetid://14968247326", + "maxChance": 0.7773027594247959, + "name": "Giraffe", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968258877", + "thumbnail": "rbxassetid://14968247427", }, - "configName": "Hologram Shark", + "configName": "Giraffe", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.828Z", - "hashShort": "0d2440e9c94ab3ab", + "dateModified": "2026-06-27T16:05:19.955Z", + "hashShort": "d191fb25223e0200", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://14968342300", + "goldenThumbnail": "rbxassetid://14968342047", "hideSerial": true, - "name": "Stealth Cat", + "name": "Stealth Bobcat", "rarity": { "Announce": true, "Color": null, @@ -85178,169 +88663,167 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968342472", + "thumbnail": "rbxassetid://14968342188", }, - "configName": "Stealth Cat", + "configName": "Stealth Bobcat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.830Z", - "hashShort": "bfd7af0947f57ddc", + "dateModified": "2025-07-05T23:28:54.254Z", + "hashShort": "28ff0c13b922ac3f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 4267, + 10987, + 12339, + 13210, ], - "fromEgg": "Canyon Egg", + "fromEgg": "Ice Egg", "fromWorldNumber": 1, - "fromZoneNumber": 34, - "goldenThumbnail": "rbxassetid://14968259574", - "maxChance": 0.12599748005039899, - "name": "Horse", + "fromZoneNumber": 41, + "goldenThumbnail": "rbxassetid://14968308633", + "maxChance": 0.0012422360248447205, + "name": "Polar Bear", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14968259839", + "thumbnail": "rbxassetid://14968308767", }, - "configName": "Horse", + "configName": "Polar Bear", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.820Z", - "hashShort": "21c193e468c2b167", + "dateModified": "2026-06-27T16:05:19.936Z", + "hashShort": "931dcff3089b5ca7", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 109622, + 4460, + 5032, + 5365, ], - "fromEgg": "Colorful Mosaic Egg", "fromWorldNumber": 1, - "fromZoneNumber": 62, - "goldenThumbnail": "rbxassetid://14968329954", - "maxChance": 0.7, - "name": "Shiba", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - "thumbnail": "rbxassetid://14968330093", + "goldenThumbnail": "rbxassetid://14968189749", + "hidden": false, + "name": "Candycane", + "thumbnail": "rbxassetid://14968190013", }, - "configName": "Shiba", + "configName": "Candycane", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.831Z", - "hashShort": "edda9aa041f4c9a1", + "dateModified": "2026-06-27T16:05:19.939Z", + "hashShort": "29453c18d02bdea8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968228161", - "name": "Emerald Monkey", + "cachedPower": [ + 1245, + 1419, + 1541, + ], + "fromEgg": "Tropical Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 24, + "goldenThumbnail": "rbxassetid://14968280140", + "maxChance": 0.7272727272727273, + "name": "Mermaid Cat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968228249", + "thumbnail": "rbxassetid://14968280233", }, - "configName": "Emerald Monkey", + "configName": "Mermaid Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.825Z", - "hashShort": "d4921287c0a0e6f1", + "dateModified": "2026-06-27T16:05:19.954Z", + "hashShort": "282ea4b8aca3f2f8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, + "cachedPower": [ + 1373, + ], "fly": true, - "goldenThumbnail": "rbxassetid://14968170930", - "name": "Amethyst Dragon", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://14968171079", + "fromWorldNumber": 1, + "goldenThumbnail": "rbxassetid://14968321872", + "hidden": false, + "name": "Rudolf", + "thumbnail": "rbxassetid://14968321951", }, - "configName": "Amethyst Dragon", + "configName": "Rudolf", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.831Z", - "hashShort": "e5eade4999cc2c4a", + "dateModified": "2025-07-05T23:28:54.270Z", + "hashShort": "7580217bb1e21666", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968322675", - "name": "Sad Cat", + "cachedPower": [ + 6113, + ], + "fromEgg": "Melted Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 36, + "goldenThumbnail": "rbxassetid://14968234834", + "maxChance": 0.001132078683724454, + "name": "Fawn", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14968322801", + "thumbnail": "rbxassetid://14968235057", }, - "configName": "Sad Cat", + "configName": "Fawn", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.827Z", - "hashShort": "09f653e248f00d37", + "dateModified": "2025-07-05T23:28:54.280Z", + "hashShort": "ec507e8fb77ca120", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 689, + 7193, + 8097, + 8629, ], - "fromEgg": "Sandcastle Egg", + "fromEgg": "Snowman Egg", "fromWorldNumber": 1, - "fromZoneNumber": 19, - "goldenThumbnail": "rbxassetid://14968272985", - "maxChance": 0.7511737089201878, - "name": "Lemur", + "fromZoneNumber": 39, + "goldenThumbnail": "rbxassetid://14968300629", + "maxChance": 0.9079445145018915, + "name": "Penguin", "rarity": { "Announce": false, "Color": null, @@ -85353,113 +88836,141 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968273169", + "thumbnail": "rbxassetid://14968300735", }, - "configName": "Lemur", + "configName": "Penguin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.819Z", - "hashShort": "7b69e8109f18fe89", + "dateModified": "2026-06-27T16:05:19.944Z", + "hashShort": "69d88d8e112ce217", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 527922, + 418, ], "fly": true, - "fromEgg": "Eerie Egg", "fromWorldNumber": 1, - "fromZoneNumber": 75, - "goldenThumbnail": "rbxassetid://14968327603", - "maxChance": 0.1997982038141477, - "name": "Scary Cat", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - "thumbnail": "rbxassetid://14968327765", + "goldenThumbnail": "rbxassetid://14968235535", + "hidden": false, + "name": "Festive Cardinal", + "thumbnail": "rbxassetid://14968235639", }, - "configName": "Scary Cat", + "configName": "Festive Cardinal", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.819Z", - "hashShort": "6b26c137648a5e04", + "dateModified": "2025-07-05T23:28:54.274Z", + "hashShort": "24d0690c2780445c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "", - "name": "Cosmic Agony", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://15201620079", + "cachedPower": [ + 4460, + ], + "fromWorldNumber": 1, + "goldenThumbnail": "rbxassetid://14968292561", + "hidden": false, + "name": "North Pole Wolf", + "thumbnail": "rbxassetid://14968292692", }, - "configName": "Cosmic Agony", + "configName": "North Pole Wolf", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.827Z", - "hashShort": "cf8e997a5b1776c0", + "dateModified": "2025-07-05T23:28:54.273Z", + "hashShort": "cca3e23c7fcedc91", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2067, + 167061, + 185455, ], - "fromEgg": "Pirate Egg", "fromWorldNumber": 1, - "fromZoneNumber": 27, - "goldenThumbnail": "rbxassetid://14968302972", - "maxChance": 0.8413967185527976, - "name": "Pirate Cat", + "fromZoneNumber": 63, + "goldenThumbnail": "rbxassetid://14968326741", + "hidden": false, + "name": "Santa Paws", + "thumbnail": "rbxassetid://14968326864", + }, + "configName": "Santa Paws", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.942Z", + "hashShort": "c5ab6f6a41a4e2e8", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 14485, + 16223, + ], + "fromWorldNumber": 1, + "goldenThumbnail": "rbxassetid://14968330751", + "hidden": false, + "name": "Silver Stag", + "thumbnail": "rbxassetid://14968330834", + }, + "configName": "Silver Stag", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.939Z", + "hashShort": "82eff0b948f7ff49", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 14485, + ], + "fly": true, + "fromWorldNumber": 1, + "goldenThumbnail": "rbxassetid://14968330497", + "hidden": false, + "name": "Silver Dragon", + "thumbnail": "rbxassetid://14968330592", + }, + "configName": "Silver Dragon", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:54.271Z", + "hashShort": "a243bd045d18769b", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968270804", + "name": "Koala", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968303084", + "thumbnail": "rbxassetid://14968270886", }, - "configName": "Pirate Cat", + "configName": "Koala", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.811Z", - "hashShort": "6ca5647c8e840495", + "dateModified": "2025-07-05T23:28:54.267Z", + "hashShort": "3861def18cb953bf", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "rbxassetid://14968198703", - "name": "Cool Dragon", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968293579", + "name": "Orca", "rarity": { "Announce": true, "Color": null, @@ -85472,21 +88983,21 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968198861", + "thumbnail": "rbxassetid://14968293678", }, - "configName": "Cool Dragon", + "configName": "Orca", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.812Z", - "hashShort": "fa50c83d0fef4457", + "dateModified": "2025-07-05T23:28:54.269Z", + "hashShort": "ccee294538d8ff37", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, + "exclusiveLevel": 2, "fly": true, - "goldenThumbnail": "rbxassetid://15260344951", - "name": "Storm Agony", + "goldenThumbnail": "rbxassetid://14968244583", + "name": "Gargoyle Dragon", "rarity": { "Announce": true, "Color": null, @@ -85499,26 +89010,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15260344841", + "thumbnail": "rbxassetid://14968244743", }, - "configName": "Storm Agony", + "configName": "Gargoyle Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.830Z", - "hashShort": "4ee8e03083d7e65a", + "dateModified": "2025-07-05T23:28:54.269Z", + "hashShort": "a1fe4be2854b3978", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 4804, + 7807, + 8787, + 9389, ], - "fromEgg": "Hyena Egg", + "fromEgg": "Icicle Egg", "fromWorldNumber": 1, - "fromZoneNumber": 35, - "goldenThumbnail": "rbxassetid://14968249667", - "maxChance": 0.12121212121212122, - "name": "Goat", + "fromZoneNumber": 38, + "goldenThumbnail": "rbxassetid://14968175100", + "maxChance": 0.05044136191677175, + "name": "Snow Fox", "rarity": { "Announce": false, "Color": null, @@ -85531,21 +89044,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968249753", + "thumbnail": "rbxassetid://14968175223", }, - "configName": "Goat", + "configName": "Arctic Fox", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.816Z", - "hashShort": "6026d735aea7e7dc", + "dateModified": "2026-06-27T16:05:19.942Z", + "hashShort": "4c8576f1c37b9fb5", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "exclusiveLevel": 2, - "fly": true, - "goldenThumbnail": "rbxassetid://14968293066", - "name": "Nyan Cat", + "goldenThumbnail": "rbxassetid://14968314806", + "name": "Punkey", "rarity": { "Announce": true, "Color": null, @@ -85558,23 +89070,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968293166", + "thumbnail": "rbxassetid://14968314943", }, - "configName": "Nyan Cat", + "configName": "Punkey", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.814Z", - "hashShort": "7483a18cb995cefa", + "dateModified": "2025-07-05T23:28:54.275Z", + "hashShort": "d30a0a2e282373da", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "jelly": true, - }, - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968266252", - "name": "Jelly Panda", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968293791", + "name": "Otter", "rarity": { "Announce": true, "Color": null, @@ -85587,23 +89096,55 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968266382", + "thumbnail": "rbxassetid://14968293937", }, - "configName": "Jelly Panda", + "configName": "Otter", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.830Z", - "hashShort": "63304ae08f0d88d0", + "dateModified": "2025-07-05T23:28:54.267Z", + "hashShort": "337aad46d3a08ff8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "jelly": true, + "cachedPower": [ + 2427311, + 2679047, + 2851741, + ], + "fromEgg": "Carnival Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 88, + "goldenThumbnail": "rbxassetid://14968190428", + "maxChance": 0.24975024975024976, + "name": "Carnival Elephant", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, }, + "thumbnail": "rbxassetid://14968190542", + }, + "configName": "Carnival Elephant", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.953Z", + "hashShort": "dc34d4e23f243b54", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://14968266535", - "name": "Jelly Piggy", + "fly": true, + "goldenThumbnail": "rbxassetid://14968234397", + "name": "Fairy Queen", "rarity": { "Announce": true, "Color": null, @@ -85616,22 +89157,47 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968266649", + "thumbnail": "rbxassetid://14968234492", }, - "configName": "Jelly Piggy", + "configName": "Fairy Queen", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.808Z", - "hashShort": "b41c6412f59c9e4a", + "dateModified": "2025-07-05T23:28:54.271Z", + "hashShort": "07a6849d5bcd5fe0", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://15260351714", + "name": "Sleipnir", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://15260351612", + }, + "configName": "Sleipnir", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:54.457Z", + "hashShort": "7055b1be7ee366e3", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 2, "fly": true, - "goldenThumbnail": "rbxassetid://14968342644", - "hideSerial": true, - "name": "Stealth Dragon", + "goldenThumbnail": "rbxassetid://14968240791", + "name": "Forest Wyvern", "rarity": { "Announce": true, "Color": null, @@ -85644,26 +89210,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968342742", + "thumbnail": "rbxassetid://14968240950", }, - "configName": "Stealth Dragon", + "configName": "Nature Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.978Z", - "hashShort": "44615944dfab1174", + "dateModified": "2025-07-05T23:28:54.461Z", + "hashShort": "e22e50257775b5ff", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 5398, + 2861, + 3240, + 3504, ], - "fromEgg": "Melted Egg", + "fromEgg": "Fossil Egg", "fromWorldNumber": 1, - "fromZoneNumber": 36, - "goldenThumbnail": "rbxassetid://14968281990", - "maxChance": 0.12767804703659255, - "name": "Moose", + "fromZoneNumber": 30, + "goldenThumbnail": "rbxassetid://14968262976", + "maxChance": 0.14950041943173228, + "name": "Hyena", "rarity": { "Announce": false, "Color": null, @@ -85676,26 +89244,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968282134", + "thumbnail": "rbxassetid://14968263246", }, - "configName": "Moose", + "configName": "Hyena", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.979Z", - "hashShort": "d37da7ee7893f32e", + "dateModified": "2026-06-27T16:05:19.957Z", + "hashShort": "4e80eab6f2a6bdef", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 6990, + 663, + 764, + 824, ], - "fromEgg": "Snow Egg", + "fromEgg": "Overgrown Egg", "fromWorldNumber": 1, - "fromZoneNumber": 37, - "goldenThumbnail": "rbxassetid://14968285885", - "maxChance": 0.035341365461847386, - "name": "Narwhal", + "fromZoneNumber": 17, + "goldenThumbnail": "rbxassetid://14968285641", + "maxChance": 0.022556390977443608, + "name": "Mystical Fox", "rarity": { "Announce": false, "Color": null, @@ -85708,261 +89278,299 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14968285990", + "thumbnail": "rbxassetid://14968285793", }, - "configName": "Narwhal", + "configName": "Mystical Fox", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.987Z", - "hashShort": "4dc98962ef509c7f", + "dateModified": "2026-06-27T16:05:19.960Z", + "hashShort": "0bfe1498bc20a185", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://14968233513", - "hideSerial": true, - "name": "Exquisite Elephant", + "cachedPower": [ + 1653, + 1885, + 2030, + ], + "fromEgg": "Sand Bucket Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 26, + "goldenThumbnail": "rbxassetid://14968325769", + "maxChance": 0.7836990595611285, + "name": "Sandcastle Cat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968233585", + "thumbnail": "rbxassetid://14968325954", }, - "configName": "Exquisite Elephant", + "configName": "Sandcastle Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.972Z", - "hashShort": "22099cc1535d078f", + "dateModified": "2026-06-27T16:05:19.958Z", + "hashShort": "ff9d09922ca281c2", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "rbxassetid://14968233653", - "hideSerial": true, - "name": "Exquisite Parrot", + "cachedPower": [ + 8678, + 9760, + 10454, + ], + "fromEgg": "Snowman Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 39, + "goldenThumbnail": "rbxassetid://14968334272", + "maxChance": 0.6459627329192547, + "name": "Snowman", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968233738", + "thumbnail": "rbxassetid://14968334476", }, - "configName": "Exquisite Parrot", + "configName": "Snowman", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.980Z", - "hashShort": "91cf417c755e8037", + "dateModified": "2026-06-27T16:05:19.962Z", + "hashShort": "8b6ba6c2ee413c9d", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1375, + 1660, + 1893, + 2037, ], "fromEgg": "Beach Egg", "fromWorldNumber": 1, "fromZoneNumber": 24, - "goldenThumbnail": "rbxassetid://14968358564", - "maxChance": 0.22539444027047334, - "name": "Whale Shark", + "goldenThumbnail": "rbxassetid://14968280542", + "maxChance": 0.024171539961013646, + "name": "Midnight Axolotl", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14968358704", + "thumbnail": "rbxassetid://14968280640", }, - "configName": "Whale Shark", + "configName": "Midnight Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.971Z", - "hashShort": "f6902097428936cf", + "dateModified": "2026-06-27T16:05:21.601Z", + "hashShort": "6100cf7c5e686513", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968283743", - "hideSerial": true, - "name": "Mosaic Elephant", + "cachedPower": [ + 2, + 9, + 18, + ], + "fromEgg": "Spotted Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 1, + "goldenThumbnail": "rbxassetid://14968188488", + "maxChance": 0.6451612903225806, + "name": "Bunny", + "power": 2, "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968283881", + "thumbnail": "rbxassetid://14968188553", }, - "configName": "Mosaic Elephant", + "configName": "Bunny", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.994Z", - "hashShort": "50a8b738b38ca801", + "dateModified": "2026-06-27T16:05:21.602Z", + "hashShort": "3c3c0242aecad468", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968284282", - "hideSerial": true, - "name": "Mosaic Lamb", + "cachedPower": [ + 7045723, + 7752965, + 8248386, + ], + "fly": true, + "fromEgg": "Heaven Castle Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 97, + "goldenThumbnail": "rbxassetid://14968228607", + "maxChance": 0.1998001998001998, + "name": "Empyrean Axolotl", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968284378", + "thumbnail": "rbxassetid://14968228755", }, - "configName": "Mosaic Lamb", + "configName": "Empyrean Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.993Z", - "hashShort": "3cf9d3734cb19eb8", + "dateModified": "2026-06-27T16:05:21.603Z", + "hashShort": "5b9b3f78ff4724fe", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "ballBounceHeight": 2, - }, "cachedPower": [ - 3153293, + 25062, + 28087, + 30069, ], - "fromEgg": "Hot Air Balloon Egg", + "fly": true, + "fromEgg": "Hell Egg", "fromWorldNumber": 1, - "fromZoneNumber": 89, - "goldenThumbnail": "rbxassetid://14968179819", - "maxChance": 0.08991008991008992, - "name": "Basketball Retriever", + "fromZoneNumber": 48, + "goldenThumbnail": "rbxassetid://14968257019", + "maxChance": 0.0012360939431396785, + "name": "Hellish Axolotl", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14968179950", + "thumbnail": "rbxassetid://14968257131", }, - "configName": "Basketball Retriever", + "configName": "Hellish Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.973Z", - "hashShort": "07ae6582ba95140d", + "dateModified": "2026-06-27T16:05:21.610Z", + "hashShort": "245a60ca4204f78f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "christmasLights": true, - }, "cachedPower": [ - 1373, + 2270, ], + "fromEgg": "Sunny Egg", "fromWorldNumber": 1, - "goldenThumbnail": "rbxassetid://15260346087", - "hidden": false, - "name": "Reindeer Cat", - "thumbnail": "rbxassetid://15260345952", + "fromZoneNumber": 27, + "goldenThumbnail": "rbxassetid://15260349582", + "maxChance": 0.0010351966873706003, + "name": "Hydra Axolotl", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Legendary", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 4, + "_id": "Legendary", + "_script": null, + }, + "thumbnail": "rbxassetid://15260349347", }, - "configName": "Reindeer Cat", + "configName": "Hydra Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.990Z", - "hashShort": "7467013b7b06b74a", + "dateModified": "2025-07-05T23:28:54.584Z", + "hashShort": "378499607846cc3a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 1, - "flyHeightChange": 4, - "flySpeed": 0.4, - }, "cachedPower": [ - 222, + 980, ], - "fly": true, - "fromEgg": "Dragon Egg", + "fromEgg": "Beach Ball Egg", "fromWorldNumber": 1, - "fromZoneNumber": 10, - "goldenThumbnail": "rbxassetid://14968356213", - "maxChance": 0.485201358563804, - "name": "Umbrella Cat", + "fromZoneNumber": 20, + "goldenThumbnail": "rbxassetid://14968178215", + "maxChance": 0.015873015873015872, + "name": "Axolotuus", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14968356324", + "thumbnail": "rbxassetid://14968178287", }, - "configName": "Umbrella Cat", + "configName": "Axolotuus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.992Z", - "hashShort": "7c5790b5468ec98c", + "dateModified": "2025-07-05T23:28:54.586Z", + "hashShort": "34de254ec2f3cf3e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 680867, + 3361, + 3807, + 4091, ], - "fromEgg": "Cursed Egg", + "fromEgg": "Sandstone Egg", "fromWorldNumber": 1, - "fromZoneNumber": 77, - "goldenThumbnail": "rbxassetid://14968207513", - "maxChance": 0.08991008991008992, - "name": "Detective Terrier", + "fromZoneNumber": 32, + "goldenThumbnail": "rbxassetid://14968189344", + "maxChance": 0.14287215043597015, + "name": "Camel", "rarity": { "Announce": false, "Color": null, @@ -85975,90 +89583,80 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968207596", + "thumbnail": "rbxassetid://14968189415", }, - "configName": "Detective Terrier", + "configName": "Camel", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.253Z", - "hashShort": "dbd01393d54f8e4c", + "dateModified": "2026-06-27T16:05:21.623Z", + "hashShort": "4d3da3eae2c5c635", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 508717, - ], - "fromEgg": "Wizard Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 73, - "goldenThumbnail": "rbxassetid://14968361253", - "maxChance": 0.009989806401547861, - "name": "Wizard Westie", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968308866", + "name": "Pony", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968361410", + "thumbnail": "rbxassetid://14968308927", }, - "configName": "Wizard Westie", + "configName": "Pony", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.981Z", - "hashShort": "747e8affe29de19c", + "dateModified": "2025-07-05T23:28:54.582Z", + "hashShort": "f37f4ec1a8c76fc2", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "flipbookAnimation": [ - "rbxassetid://12442921582", - "rbxassetid://12445580091", - ], - "flipbookAnimationGold": [ - "rbxassetid://12442921397", - "rbxassetid://12445579992", - ], - "flipbookAnimationSpeed": 0.15, - }, - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://14968309002", - "name": "Pop Cat", + "cachedPower": [ + 1016, + 1163, + 1258, + ], + "fromEgg": "Anchor Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 22, + "goldenThumbnail": "rbxassetid://14968266890", + "maxChance": 0.2971768202080238, + "name": "Jellyfish", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968309066", + "thumbnail": "rbxassetid://14968266953", }, - "configName": "Pop Cat", + "configName": "Jellyfish", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.975Z", - "hashShort": "1a7876f2da315165", + "dateModified": "2026-06-27T16:05:21.607Z", + "hashShort": "3357c73a1573bfc9", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968352356", - "hideSerial": true, - "name": "Tiedye Bunny", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968316730", + "name": "Rave Crab", "rarity": { "Announce": true, "Color": null, @@ -86071,21 +89669,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968352460", + "thumbnail": "rbxassetid://14968316850", }, - "configName": "Tiedye Bunny", + "configName": "Rave Crab", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.997Z", - "hashShort": "182aa5206d26b92b", + "dateModified": "2025-07-05T23:28:54.581Z", + "hashShort": "d99a0c95d80e6fee", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968351612", - "hideSerial": true, - "name": "Tiedye Axolotl", + "goldenThumbnail": "rbxassetid://14968263341", + "name": "Ice Cream Cone", "rarity": { "Announce": true, "Color": null, @@ -86098,54 +89695,62 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968351742", + "thumbnail": "rbxassetid://14968263480", }, - "configName": "Tiedye Axolotl", + "configName": "Ice Cream Cone", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.970Z", - "hashShort": "20f6be72ce15a23e", + "dateModified": "2025-07-05T23:28:54.594Z", + "hashShort": "b79ffc5356bc0089", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "fly": true, - "goldenThumbnail": "rbxassetid://14968353698", - "hideSerial": true, - "name": "Tiedye Griffin", + "cachedPower": [ + 2121, + 2413, + 2591, + ], + "fromEgg": "Pirate Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 27, + "goldenThumbnail": "rbxassetid://14968323772", + "maxChance": 0.017880670054583096, + "name": "Sailor Dolphin", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14968353783", + "thumbnail": "rbxassetid://14968323899", }, - "configName": "Tiedye Griffin", + "configName": "Sailor Dolphin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.968Z", - "hashShort": "452e5a280bfbec66", + "dateModified": "2026-06-27T16:05:21.606Z", + "hashShort": "22f0699821a725f7", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 3989, + 666, + 767, + 828, ], - "fromEgg": "Cowboy Egg", + "fromEgg": "Jungle Egg", "fromWorldNumber": 1, - "fromZoneNumber": 33, - "goldenThumbnail": "rbxassetid://14968313952", - "maxChance": 0.8399832003359933, - "name": "Puma", + "fromZoneNumber": 18, + "goldenThumbnail": "rbxassetid://14968273908", + "maxChance": 0.3834808259587021, + "name": "Lion", "rarity": { "Announce": false, "Color": null, @@ -86158,21 +89763,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968314442", + "thumbnail": "rbxassetid://14968274042", }, - "configName": "Puma", + "configName": "Lion", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.984Z", - "hashShort": "e0baff365e6c0fe9", + "dateModified": "2026-06-27T16:05:21.612Z", + "hashShort": "dd4312bb1ecedaed", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "fly": true, - "goldenThumbnail": "rbxassetid://14968290405", - "name": "Nightmare Spirit", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968316424", + "name": "Rainbow Unicorn", "rarity": { "Announce": true, "Color": null, @@ -86185,20 +89789,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968290525", + "thumbnail": "rbxassetid://14968316589", }, - "configName": "Nightmare Spirit", + "configName": "Rainbow Unicorn", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.970Z", - "hashShort": "3bbb8062b0a4f6e7", + "dateModified": "2025-07-05T23:28:54.602Z", + "hashShort": "a8b45ea699e35e13", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968289559", - "name": "Nightmare Bear", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968269943", + "name": "Keyboard Cat", "rarity": { "Announce": true, "Color": null, @@ -86211,28 +89815,21 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968289661", + "thumbnail": "rbxassetid://14968270057", }, - "configName": "Nightmare Bear", + "configName": "Keyboard Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.991Z", - "hashShort": "16a943867e3c8c2c", + "dateModified": "2025-07-05T23:28:54.596Z", + "hashShort": "b1d14d0bce73cebc", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.025, - "flyHeightChange": 0, - "swerve": true, - "swerveAggression": 0.2, - "swerveMaxAngle": 60, - }, "exclusiveLevel": 3, "fly": true, - "goldenThumbnail": "rbxassetid://14968290148", - "name": "Nightmare Kraken", + "goldenThumbnail": "rbxassetid://14968339743", + "name": "Starfall Dragon", "rarity": { "Announce": true, "Color": null, @@ -86245,26 +89842,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968290312", + "thumbnail": "rbxassetid://14968340882", }, - "configName": "Nightmare Kraken", + "configName": "Starfall Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.592Z", - "hashShort": "7b59eac75262e133", + "dateModified": "2025-07-05T23:28:54.593Z", + "hashShort": "e245971c1a80321f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2650, + 1846555, + 2047788, + 2150613, ], - "fromEgg": "Cheetah Egg", + "fromEgg": "Ice Cream Egg", "fromWorldNumber": 1, - "fromZoneNumber": 29, - "goldenThumbnail": "rbxassetid://14968320513", - "maxChance": 0.835421888053467, - "name": "Rhino", + "fromZoneNumber": 85, + "goldenThumbnail": "rbxassetid://14968194314", + "maxChance": 0.6993006993006994, + "name": "Chocolate Bunny", "rarity": { "Announce": false, "Color": null, @@ -86277,26 +89876,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968320647", + "thumbnail": "rbxassetid://14968194551", }, - "configName": "Rhino", + "configName": "Chocolate Bunny", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.983Z", - "hashShort": "b8ff92fc761b8cf1", + "dateModified": "2026-06-27T16:05:43.875Z", + "hashShort": "c820e14f2b666b08", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1955, + 2077375, + 2303292, + 2418242, ], - "fromEgg": "Sunny Egg", + "fromEgg": "Sweets Egg", "fromWorldNumber": 1, - "fromZoneNumber": 27, - "goldenThumbnail": "rbxassetid://14968324478", - "maxChance": 0.9410878976096367, - "name": "Sailor Shark", + "fromZoneNumber": 86, + "goldenThumbnail": "rbxassetid://14968302727", + "maxChance": 0.4995004995004995, + "name": "Pink Marshmallow Chick", "rarity": { "Announce": false, "Color": null, @@ -86309,26 +89910,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968324575", + "thumbnail": "rbxassetid://14968302868", }, - "configName": "Sailor Shark", + "configName": "Pink Marshmallow Chick", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.993Z", - "hashShort": "3a926d1f21a76c8b", + "dateModified": "2026-06-27T16:05:43.875Z", + "hashShort": "a9c804ab4b6f612e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2104, + 1928625, + 2128471, + 2271637, ], - "fromEgg": "Ship Egg", + "fromEgg": "Sweets Egg", "fromWorldNumber": 1, - "fromZoneNumber": 28, - "goldenThumbnail": "rbxassetid://14968303283", - "maxChance": 0.12620950778291964, - "name": "Pirate Panda", + "fromZoneNumber": 86, + "goldenThumbnail": "rbxassetid://14968184950", + "maxChance": 0.1998001998001998, + "name": "Blue Marshmallow Chick", "rarity": { "Announce": false, "Color": null, @@ -86341,59 +89944,62 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968303410", + "thumbnail": "rbxassetid://14968185202", }, - "configName": "Pirate Panda", + "configName": "Blue Marshmallow Chick", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.996Z", - "hashShort": "21dcaa4ed587999d", + "dateModified": "2026-06-27T16:05:43.860Z", + "hashShort": "9ea09bd701115b26", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2196, + 411, + 478, + 520, ], - "fly": true, - "fromEgg": "Ship Egg", + "fromEgg": "Mushroom Egg", "fromWorldNumber": 1, - "fromZoneNumber": 28, - "goldenThumbnail": "rbxassetid://14968303556", - "maxChance": 0.02103491796381994, - "name": "Pirate Parrot", + "fromZoneNumber": 14, + "goldenThumbnail": "rbxassetid://14968331736", + "maxChance": 0.40404040404040403, + "name": "Slime", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968303717", + "thumbnail": "rbxassetid://14968331835", }, - "configName": "Pirate Parrot", + "configName": "Slime", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.993Z", - "hashShort": "425bab95a3c4d1a4", + "dateModified": "2026-06-27T16:05:21.631Z", + "hashShort": "7e09f91cd89ee4e2", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1645, + 2184727, + 2408450, + 2575979, ], - "fromEgg": "Tiki Egg", + "fromEgg": "Toy Egg", "fromWorldNumber": 1, - "fromZoneNumber": 26, - "goldenThumbnail": "rbxassetid://14968275392", - "maxChance": 0.19603999215840032, - "name": "Luau Seal", + "fromZoneNumber": 87, + "goldenThumbnail": "rbxassetid://14968299534", + "maxChance": 0.14985014985014986, + "name": "Pastel Sock Bunny", "rarity": { "Announce": false, "Color": null, @@ -86406,159 +90012,157 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968275539", + "thumbnail": "rbxassetid://14968299620", }, - "configName": "Luau Seal", + "configName": "Pastel Sock Bunny", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.977Z", - "hashShort": "2439f876b09ff713", + "dateModified": "2026-06-27T16:05:43.886Z", + "hashShort": "3e9d788085c22379", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "balloon": true, - }, - "cachedPower": [ - 855, - ], - "fromEgg": "Beach Ball Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 20, - "goldenThumbnail": "rbxassetid://14968313633", - "maxChance": 0.0217359802927112, - "name": "Pufferfish", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968286725", + "name": "Neon Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968313710", + "thumbnail": "rbxassetid://14968286845", }, - "configName": "Pufferfish", + "configName": "Neon Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.992Z", - "hashShort": "61518b48a873ced0", + "dateModified": "2025-07-05T23:28:54.600Z", + "hashShort": "d1098f80550551a4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1970, + 2157610, + 2382035, + 2536355, ], - "fromEgg": "Tiki Egg", + "fromEgg": "Toy Egg", "fromWorldNumber": 1, - "fromZoneNumber": 26, - "goldenThumbnail": "rbxassetid://14968354069", - "maxChance": 0.0007836990595611286, - "name": "Tiki Dominus", + "fromZoneNumber": 87, + "goldenThumbnail": "rbxassetid://14968299360", + "maxChance": 0.24975024975024976, + "name": "Pastel Sock Bear", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968354226", + "thumbnail": "rbxassetid://14968299438", }, - "configName": "Tiki Dominus", + "configName": "Pastel Sock Bear", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.995Z", - "hashShort": "b89891ce24b1f828", + "dateModified": "2026-06-27T16:05:43.887Z", + "hashShort": "6023d908e5a876c8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 172, + 2491491, + 2741285, + 2923156, ], - "fromEgg": "Corgi Egg", + "fly": true, + "fromEgg": "Toy Egg", "fromWorldNumber": 1, - "fromZoneNumber": 8, - "goldenThumbnail": "rbxassetid://14968271288", - "maxChance": 0.32663316582914576, - "name": "Ladybug", + "fromZoneNumber": 87, + "goldenThumbnail": "rbxassetid://14968299882", + "maxChance": 0.08991008991008992, + "name": "Pastel Sock Dragon", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968271410", + "thumbnail": "rbxassetid://14968299954", }, - "configName": "Ladybug", + "configName": "Pastel Sock Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.986Z", - "hashShort": "3e0a83e65e7a76fd", + "dateModified": "2026-06-27T16:05:43.876Z", + "hashShort": "51abbedeb4824214", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 245, + 1726204, + 1904153, + 2037898, ], - "fly": true, - "fromEgg": "Rock Egg", + "fromEgg": "Ice Cream Egg", "fromWorldNumber": 1, - "fromZoneNumber": 10, - "goldenThumbnail": "rbxassetid://14968237865", - "maxChance": 0.273972602739726, - "name": "Firefly", + "fromZoneNumber": 85, + "goldenThumbnail": "rbxassetid://14968194945", + "maxChance": 0.14985014985014986, + "name": "Chocolate Frog", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968237983", + "thumbnail": "rbxassetid://14968195096", }, - "configName": "Firefly", + "configName": "Chocolate Frog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.969Z", - "hashShort": "d472913fd77c295e", + "dateModified": "2026-06-27T16:05:21.627Z", + "hashShort": "06046c4011d019e6", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 524, + 382, + 445, + 486, ], - "fly": true, - "fromEgg": "Crimson Egg", + "fromEgg": "Sprout Egg", "fromWorldNumber": 1, - "fromZoneNumber": 16, - "goldenThumbnail": "rbxassetid://14968188646", - "maxChance": 0.5810575246949449, - "name": "Butterfly", + "fromZoneNumber": 14, + "goldenThumbnail": "rbxassetid://14968182196", + "maxChance": 0.5678591709256104, + "name": "Black Widow", "rarity": { "Announce": false, "Color": null, @@ -86571,48 +90175,54 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968189196", + "thumbnail": "rbxassetid://14968182339", }, - "configName": "Butterfly", + "configName": "Black Widow", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.968Z", - "hashShort": "f509510abe834dcc", + "dateModified": "2026-06-27T16:05:21.626Z", + "hashShort": "63e97fdac128061a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968176816", - "name": "Atlantean Orca", + "cachedPower": [ + 1968585, + 2167380, + 2311201, + ], + "fromEgg": "Ice Cream Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 85, + "goldenThumbnail": "rbxassetid://14968195341", + "maxChance": 0.08991008991008992, + "name": "Chocolate Hippo", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968176963", + "thumbnail": "rbxassetid://14968195465", }, - "configName": "Atlantean Orca", + "configName": "Chocolate Hippo", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.980Z", - "hashShort": "c659dee0fc823622", + "dateModified": "2026-06-27T16:05:21.628Z", + "hashShort": "4ca9655094375dcd", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://14968175998", - "indexDesc": "Found in the Exclusive Atlantean Egg!", - "indexObtainable": true, - "name": "Atlantean Dolphin", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968190105", + "name": "Capybara", "rarity": { "Announce": true, "Color": null, @@ -86625,20 +90235,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968176121", + "thumbnail": "rbxassetid://14968190224", }, - "configName": "Atlantean Dolphin", + "configName": "Capybara", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.986Z", - "hashShort": "059cfedbc7ef6026", + "dateModified": "2025-07-05T23:28:54.614Z", + "hashShort": "ac0b1340bc988dcf", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968177109", - "name": "Atlantean Stingray", + "goldenThumbnail": "rbxassetid://14968239909", + "name": "Floppa", "rarity": { "Announce": true, "Color": null, @@ -86651,90 +90261,96 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968177273", + "thumbnail": "rbxassetid://14968240040", }, - "configName": "Atlantean Stingray", + "configName": "Floppa", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.147Z", - "hashShort": "14bde21ee3843553", + "dateModified": "2025-07-05T23:28:54.616Z", + "hashShort": "38bf8636c90ed127", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1396, + 28240, + 31667, + 33873, ], - "fromEgg": "Coconut Egg", + "fromEgg": "Sakura Egg", "fromWorldNumber": 1, - "fromZoneNumber": 25, - "goldenThumbnail": "rbxassetid://14968240140", - "maxChance": 0.7797270955165692, - "name": "Flower Gecko", + "fromZoneNumber": 50, + "goldenThumbnail": "rbxassetid://14968291044", + "maxChance": 0.09998990101999697, + "name": "Ninja Maskot", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968240285", + "thumbnail": "rbxassetid://14968291771", }, - "configName": "Flower Gecko", + "configName": "Ninja Maskot", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.147Z", - "hashShort": "74d3d5bccddb9075", + "dateModified": "2026-06-27T16:05:21.628Z", + "hashShort": "0c3b5310dfc08ecf", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1880, + 26294, + 29516, + 31346, ], - "fromEgg": "Sand Bucket Egg", + "fromEgg": "Sakura Egg", "fromWorldNumber": 1, - "fromZoneNumber": 26, - "goldenThumbnail": "rbxassetid://14968238086", - "maxChance": 0.18325233049159428, - "name": "Fish in a Bucket", + "fromZoneNumber": 50, + "goldenThumbnail": "rbxassetid://14968291452", + "maxChance": 0.8999091091799728, + "name": "Ninja Turtle", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968238185", + "thumbnail": "rbxassetid://14968291600", }, - "configName": "Fish in a Bucket", + "configName": "Ninja Turtle", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.149Z", - "hashShort": "aa535938d17e13cd", + "dateModified": "2026-06-27T16:05:21.629Z", + "hashShort": "c6e297222499fca8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1764, + 631, + 728, + 789, ], - "fromEgg": "Sunny Egg", + "fromEgg": "Mossy Egg", "fromWorldNumber": 1, - "fromZoneNumber": 27, - "goldenThumbnail": "rbxassetid://14968355435", - "maxChance": 0.7967492630069317, - "name": "Turtle in a Bucket", + "fromZoneNumber": 18, + "goldenThumbnail": "rbxassetid://14968193988", + "maxChance": 0.3258145363408521, + "name": "Chimpanzee", "rarity": { "Announce": false, "Color": null, @@ -86747,63 +90363,56 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968355544", + "thumbnail": "rbxassetid://14968194141", }, - "configName": "Turtle in a Bucket", + "configName": "Chimpanzee", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.139Z", - "hashShort": "3f941995df69a9ae", + "dateModified": "2026-06-27T16:05:21.630Z", + "hashShort": "60755d0f933a1cf1", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - }, - "cachedPower": [ - 12118516, - ], + "exclusiveLevel": 1, "fly": true, - "fromEgg": "Rainbow Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 99, - "goldenThumbnail": "rbxassetid://14968348019", - "maxChance": 3.995922560619145e-7, - "name": "Sun Angelus", + "goldenThumbnail": "rbxassetid://14968353514", + "hideSerial": true, + "name": "Tiedye Dragon", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968348199", + "thumbnail": "rbxassetid://14968353613", }, - "configName": "Sun Angelus", + "configName": "Tiedye Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.139Z", - "hashShort": "058efcf7d908000a", + "dateModified": "2025-07-05T23:28:54.938Z", + "hashShort": "11b88d3f8a5cba57", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 68, + 14, + 37, + 55, ], - "fly": true, - "fromEgg": "Hive Egg", + "fromEgg": "Grass Egg", "fromWorldNumber": 1, - "fromZoneNumber": 5, - "goldenThumbnail": "rbxassetid://14968181144", - "maxChance": 0.6349206349206349, - "name": "Bee", + "fromZoneNumber": 3, + "goldenThumbnail": "rbxassetid://14968227368", + "maxChance": 0.7194244604316546, + "name": "Elephant", "rarity": { "Announce": false, "Color": null, @@ -86816,180 +90425,183 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968181287", + "thumbnail": "rbxassetid://14968227455", }, - "configName": "Bee", + "configName": "Elephant", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.140Z", - "hashShort": "99f4faaaf0899fac", + "dateModified": "2026-06-27T16:05:21.617Z", + "hashShort": "7bb2356bb81ad611", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 105, + 147502, + 163912, + 174911, ], - "fromEgg": "Acorn Egg", + "fromEgg": "Frosted Geode Egg", "fromWorldNumber": 1, - "fromZoneNumber": 6, - "goldenThumbnail": "rbxassetid://14968274225", - "maxChance": 0.03508771929824561, - "name": "Llama", + "fromZoneNumber": 63, + "goldenThumbnail": "rbxassetid://14976269599", + "maxChance": 0.06993006993006994, + "name": "Jolly Cat", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968274443", + "thumbnail": "rbxassetid://14976269717", }, - "configName": "Llama", + "configName": "Jolly Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.136Z", - "hashShort": "f21648cf53dbb718", + "dateModified": "2026-06-27T16:05:21.623Z", + "hashShort": "b5517d16a679e4d1", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 1156, - ], - "fromEgg": "Atlantis Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 23, - "goldenThumbnail": "rbxassetid://14968343939", - "maxChance": 0.1953125, - "name": "Stingray", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968352100", + "hideSerial": true, + "name": "Tiedye Bear", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968344086", + "thumbnail": "rbxassetid://14968352252", }, - "configName": "Stingray", + "configName": "Tiedye Bear", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.150Z", - "hashShort": "3b98eb797d1144f7", + "dateModified": "2025-07-05T23:28:54.935Z", + "hashShort": "d45e0362cf3c48b7", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 725, - ], - "fromEgg": "Jungle Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 18, - "goldenThumbnail": "rbxassetid://14968264925", - "maxChance": 0.22535211267605634, - "name": "Jaguar", + "exclusiveLevel": 2, + "fly": true, + "goldenThumbnail": "rbxassetid://14968284011", + "hideSerial": true, + "name": "Mosaic Griffin", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968265120", + "thumbnail": "rbxassetid://14968284179", }, - "configName": "Jaguar", + "configName": "Mosaic Griffin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.139Z", - "hashShort": "97d740f1ff34edd2", + "dateModified": "2025-07-05T23:28:54.939Z", + "hashShort": "64b8b571afbc7095", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 382, + 4460, ], - "fromEgg": "Spike Egg", "fromWorldNumber": 1, - "fromZoneNumber": 13, - "goldenThumbnail": "rbxassetid://14968252723", - "maxChance": 0.39750141964792735, - "name": "Guilded Raven", + "goldenThumbnail": "rbxassetid://14968292876", + "hidden": false, + "name": "Nutcracker Cat", + "thumbnail": "rbxassetid://14968292963", + }, + "configName": "Nutcracker Cat", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:54.937Z", + "hashShort": "338a4fbdbeef918a", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 2, + "fly": true, + "goldenThumbnail": "rbxassetid://14968283455", + "hideSerial": true, + "name": "Mosaic Dove", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968252788", + "thumbnail": "rbxassetid://14968283582", }, - "configName": "Guilded Raven", + "configName": "Mosaic Dove", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.155Z", - "hashShort": "d127f04bf9d389f6", + "dateModified": "2025-07-05T23:28:54.935Z", + "hashShort": "62da727f3e01c8d6", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 244, - ], - "fromEgg": "Dragon Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 10, - "goldenThumbnail": "rbxassetid://14968306457", - "maxChance": 0.684931506849315, - "name": "Platypus", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968200950", + "hideSerial": true, + "name": "Crystal Deer", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968306539", + "thumbnail": "rbxassetid://14968201085", }, - "configName": "Platypus", + "configName": "Crystal Deer", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.153Z", - "hashShort": "6cd46e703fbfa908", + "dateModified": "2025-07-05T23:28:54.936Z", + "hashShort": "7b5f36275231d54a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968334567", - "name": "Sock Cat", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://15260346933", + "hideSerial": true, + "name": "Nightfall Wolf", "rarity": { "Announce": true, "Color": null, @@ -87002,58 +90614,56 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968334672", + "thumbnail": "rbxassetid://15260346749", }, - "configName": "Sock Cat", + "configName": "Nightfall Wolf", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.158Z", - "hashShort": "095ab078e3d4836d", + "dateModified": "2025-07-05T23:28:54.936Z", + "hashShort": "a329fba946983ceb", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 538861, - ], - "fromEgg": "Witch Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 74, - "goldenThumbnail": "rbxassetid://15260343719", - "maxChance": 0.0009989806401547862, - "name": "Witch Cat", + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "rbxassetid://15260347656", + "hideSerial": true, + "name": "Nightfall Pegasus", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15260351079", + "thumbnail": "rbxassetid://15260347529", }, - "configName": "Witch Cat", + "configName": "Nightfall Pegasus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.142Z", - "hashShort": "e2199cd45f30f182", + "dateModified": "2025-07-05T23:28:54.934Z", + "hashShort": "ddd45a120fa4f24b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 590, + 10454, + 11747, + 12597, ], - "fromEgg": "Overgrown Egg", + "fromEgg": "Thawed Egg", "fromWorldNumber": 1, - "fromZoneNumber": 17, - "goldenThumbnail": "rbxassetid://14968187069", - "maxChance": 0.5012531328320802, - "name": "Bobcat", + "fromZoneNumber": 42, + "goldenThumbnail": "rbxassetid://14968272013", + "maxChance": 0.6206361520558572, + "name": "Lava Slime", "rarity": { "Announce": false, "Color": null, @@ -87066,53 +90676,83 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968187219", + "thumbnail": "rbxassetid://14968272695", }, - "configName": "Bobcat", + "configName": "Lava Slime", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.159Z", - "hashShort": "67bb5764b7ea1f0c", + "dateModified": "2026-06-27T16:05:21.641Z", + "hashShort": "af59c0da17045fae", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1, + 463, + 537, + 583, ], - "fromEgg": "Cracked Egg", + "fly": true, + "fromEgg": "Sprout Egg", "fromWorldNumber": 1, - "fromZoneNumber": 1, - "goldenThumbnail": "rbxassetid://14968190880", - "maxChance": 0.25, - "name": "Cat", - "power": 1, + "fromZoneNumber": 14, + "goldenThumbnail": "rbxassetid://14968169708", + "maxChance": 0.030303030303030304, + "name": "Agony", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14968191202", + "thumbnail": "rbxassetid://14968169798", }, - "configName": "Cat", + "configName": "Agony", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:38.188Z", + "hashShort": "fecc146c3f9cc060", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://15260347226", + "hideSerial": true, + "name": "Nightfall Tiger", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://15260347082", + }, + "configName": "Nightfall Tiger", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.989Z", - "hashShort": "8c29c3e1451787b3", + "dateModified": "2025-07-05T23:28:54.933Z", + "hashShort": "bfb32a24624a4a17", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968196327", - "name": "Clout Cat", + "fly": true, + "goldenThumbnail": "rbxassetid://14968348636", + "name": "Super Capybara", "rarity": { "Announce": true, "Color": null, @@ -87125,26 +90765,62 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968196480", + "thumbnail": "rbxassetid://14968348781", }, - "configName": "Clout Cat", + "configName": "Super Capybara", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.154Z", - "hashShort": "85e817673956a817", + "dateModified": "2025-07-05T23:28:54.949Z", + "hashShort": "eb2cb1e30b9a2f01", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2629177, + 593898, + 657598, + 704254, ], - "fromEgg": "Carnival Egg", + "fromEgg": "Abyssal Egg", "fromWorldNumber": 1, - "fromZoneNumber": 88, - "goldenThumbnail": "rbxassetid://14968197614", - "maxChance": 0.6993006993006994, - "name": "Clown Cat", + "fromZoneNumber": 76, + "goldenThumbnail": "rbxassetid://14968362924", + "maxChance": 0.2, + "name": "Zombie Corgi", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://14968363018", + }, + "configName": "Zombie Corgi", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:21.640Z", + "hashShort": "f310baa9eb838998", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 806, + 926, + 1002, + ], + "fromEgg": "Beach Ball Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 20, + "goldenThumbnail": "rbxassetid://14968209432", + "maxChance": 0.25358643674829734, + "name": "Dolphin", "rarity": { "Announce": false, "Color": null, @@ -87157,20 +90833,21 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968197693", + "thumbnail": "rbxassetid://14968209544", }, - "configName": "Clown Cat", + "configName": "Dolphin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.142Z", - "hashShort": "111d68bb5af99430", + "dateModified": "2026-06-27T16:05:21.642Z", + "hashShort": "de14af75f2e549aa", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968198354", - "name": "Cool Cat", + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "rbxassetid://15260349978", + "name": "Cyborg Capybara", "rarity": { "Announce": true, "Color": null, @@ -87183,20 +90860,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968198436", + "thumbnail": "rbxassetid://15260349851", }, - "configName": "Cool Cat", + "configName": "Cyborg Capybara", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.148Z", - "hashShort": "2c2c65e75afccca4", + "dateModified": "2025-07-05T23:28:54.957Z", + "hashShort": "ef35ada93c7e03f4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968199510", - "name": "Yee-haw Cat", + "goldenThumbnail": "rbxassetid://14968346853", + "name": "Stunt Chick", "rarity": { "Announce": true, "Color": null, @@ -87209,58 +90886,96 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968199662", + "thumbnail": "rbxassetid://14968347006", }, - "configName": "Yee-haw Cat", + "configName": "Stunt Chick", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.138Z", - "hashShort": "5dd4ef542c94c547", + "dateModified": "2025-07-05T23:28:54.946Z", + "hashShort": "30fe1b8cc213ab68", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 296, + 1672, + 1907, + 2049, ], - "fromEgg": "Geode Egg", + "fromEgg": "Coconut Egg", "fromWorldNumber": 1, - "fromZoneNumber": 11, - "goldenThumbnail": "rbxassetid://14968206548", - "maxChance": 0.35539760106619284, - "name": "Demolition Cat", + "fromZoneNumber": 25, + "goldenThumbnail": "rbxassetid://14968302587", + "maxChance": 0.01960399921584003, + "name": "Pineapple Cat", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14968206706", + "thumbnail": "rbxassetid://14968302642", }, - "configName": "Demolition Cat", + "configName": "Pineapple Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.146Z", - "hashShort": "4747a4008b0c5383", + "dateModified": "2026-06-27T16:05:21.648Z", + "hashShort": "58ba90445c5bf28f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 3169, + 2366, + 2689, + 2890, ], - "fromEgg": "Sandstone Egg", + "fromEgg": "Cheetah Egg", "fromWorldNumber": 1, - "fromZoneNumber": 32, - "goldenThumbnail": "rbxassetid://14968207121", - "maxChance": 0.8404244143292362, - "name": "Desert Cat", + "fromZoneNumber": 29, + "goldenThumbnail": "rbxassetid://14968315507", + "maxChance": 0.1506276150627615, + "name": "Quokka", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://14968315607", + }, + "configName": "Quokka", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:21.645Z", + "hashShort": "07eaf16c6285af15", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 75, + 115, + 141, + ], + "fromEgg": "Hive Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 5, + "goldenThumbnail": "rbxassetid://14968355157", + "maxChance": 0.31746031746031744, + "name": "Turkey", "rarity": { "Announce": false, "Color": null, @@ -87273,20 +90988,21 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968207221", + "thumbnail": "rbxassetid://14968355260", }, - "configName": "Desert Cat", + "configName": "Turkey", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.153Z", - "hashShort": "d95ad3832ca8a735", + "dateModified": "2026-06-27T16:05:21.647Z", + "hashShort": "fa27f83f5ddbd663", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://14968207729", - "name": "Diamond Cat", + "exclusiveLevel": 2, + "fly": true, + "goldenThumbnail": "rbxassetid://14968273641", + "name": "Lightning Bat", "rarity": { "Announce": true, "Color": null, @@ -87299,58 +91015,55 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968207912", + "thumbnail": "rbxassetid://14968273789", }, - "configName": "Diamond Cat", + "configName": "Lightning Bat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.150Z", - "hashShort": "0a3cc86b65538be0", + "dateModified": "2025-07-05T23:28:54.941Z", + "hashShort": "f592b125af6187bf", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 3824, - ], - "fromEgg": "Egyptian Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 31, - "goldenThumbnail": "rbxassetid://14968208254", - "maxChance": 0.00000830557885731846, - "name": "Dino Cat", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968312852", + "name": "Prickly Panda", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968208485", + "thumbnail": "rbxassetid://14968312942", }, - "configName": "Dino Cat", + "configName": "Prickly Panda", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.145Z", - "hashShort": "83034adb7da78c0d", + "dateModified": "2025-07-05T23:28:54.942Z", + "hashShort": "1c0fd6fdca9f9ab0", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 442, + 342, + 401, + 438, ], - "fromEgg": "Spirit Egg", + "fly": true, + "fromEgg": "Spike Egg", "fromWorldNumber": 1, - "fromZoneNumber": 15, - "goldenThumbnail": "rbxassetid://14968231342", - "maxChance": 0.2840909090909091, - "name": "Enchanted Cat", + "fromZoneNumber": 13, + "goldenThumbnail": "rbxassetid://14968251425", + "maxChance": 0.37267080745341613, + "name": "Griffin", "rarity": { "Announce": false, "Color": null, @@ -87363,53 +91076,62 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968231444", + "thumbnail": "rbxassetid://14968251552", }, - "configName": "Enchanted Cat", + "configName": "Griffin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.159Z", - "hashShort": "23179dc3691b341a", + "dateModified": "2026-06-27T16:05:21.647Z", + "hashShort": "033bc08912daf0df", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://14976332148", - "hideSerial": true, - "name": "Exquisite Cat", + "cachedPower": [ + 296, + 349, + 383, + ], + "fromEgg": "Hut Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 12, + "goldenThumbnail": "rbxassetid://14968326949", + "maxChance": 0.5108840515326522, + "name": "Sapphire Carbuncle", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968233437", + "thumbnail": "rbxassetid://14968327028", }, - "configName": "Exquisite Cat", + "configName": "Sapphire Carbuncle", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.160Z", - "hashShort": "4e628137419c5ffe", + "dateModified": "2026-06-27T16:05:21.650Z", + "hashShort": "3866ac202931793e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 16719, + 432, + 501, + 547, ], - "fromEgg": "Bone Egg", + "fromEgg": "Spirit Egg", "fromWorldNumber": 1, - "fromZoneNumber": 46, - "goldenThumbnail": "rbxassetid://14968236867", - "maxChance": 0.6428801028608164, - "name": "Fire Cat", + "fromZoneNumber": 15, + "goldenThumbnail": "rbxassetid://14968285018", + "maxChance": 0.5681818181818182, + "name": "Mushroom Raccoon", "rarity": { "Announce": false, "Color": null, @@ -87422,58 +91144,62 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968236938", + "thumbnail": "rbxassetid://14968285196", }, - "configName": "Fire Cat", + "configName": "Mushroom Raccoon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.144Z", - "hashShort": "35d1df1841644d30", + "dateModified": "2026-06-27T16:05:21.649Z", + "hashShort": "5a34df2a80b4da64", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 61846, + 7953, + 8948, + 9524, ], - "fromEgg": "Crowned Egg", + "fromEgg": "Snowman Egg", "fromWorldNumber": 1, - "fromZoneNumber": 57, - "goldenThumbnail": "rbxassetid://14968240534", - "maxChance": 0.4699765011749413, - "name": "Fluffy Cat", + "fromZoneNumber": 39, + "goldenThumbnail": "rbxassetid://14968180898", + "maxChance": 0.03026481715006305, + "name": "Bearserker", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14968240656", + "thumbnail": "rbxassetid://14968180995", }, - "configName": "Fluffy Cat", + "configName": "Bearserker", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.148Z", - "hashShort": "107c5d1d7f420720", + "dateModified": "2026-06-27T16:05:21.651Z", + "hashShort": "cd82ebef0e271dba", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 44500, + 1046, + 1200, + 1291, ], - "fromEgg": "Garden Egg", + "fromEgg": "Anchor Egg", "fromWorldNumber": 1, - "fromZoneNumber": 54, - "goldenThumbnail": "rbxassetid://14968244157", - "maxChance": 0.2, - "name": "Garden Cat", + "fromZoneNumber": 22, + "goldenThumbnail": "rbxassetid://14968278129", + "maxChance": 0.08915304606240713, + "name": "Mantis Shrimp", "rarity": { "Announce": false, "Color": null, @@ -87486,26 +91212,55 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968244437", + "thumbnail": "rbxassetid://14968278221", }, - "configName": "Garden Cat", + "configName": "Mantis Shrimp", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:21.653Z", + "hashShort": "5f5ec6cc65fede7b", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 1, + "fly": true, + "goldenThumbnail": "rbxassetid://14968348891", + "name": "Super Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://14968349033", + }, + "configName": "Super Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.157Z", - "hashShort": "537dee7690304794", + "dateModified": "2025-07-05T23:28:54.950Z", + "hashShort": "330e8bd7a2dff013", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 668152, + 2457818, + 2708691, + 2896207, ], - "fromEgg": "Cursed Egg", + "fromEgg": "Carnival Egg", "fromWorldNumber": 1, - "fromZoneNumber": 77, - "goldenThumbnail": "rbxassetid://14968245583", - "maxChance": 0.1998001998001998, - "name": "Ghost Cat", + "fromZoneNumber": 88, + "goldenThumbnail": "rbxassetid://14968190652", + "maxChance": 0.14985014985014986, + "name": "Carnival Panda", "rarity": { "Announce": false, "Color": null, @@ -87518,38 +91273,54 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968245724", + "thumbnail": "rbxassetid://14968190760", }, - "configName": "Ghost Cat", + "configName": "Carnival Panda", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.152Z", - "hashShort": "d18c240e812ac265", + "dateModified": "2026-06-27T16:05:21.654Z", + "hashShort": "b860c42f835d88a4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 418, + 11290, + 12671, + 13485, ], + "fromEgg": "Thawed Egg", "fromWorldNumber": 1, - "goldenThumbnail": "rbxassetid://14968246334", - "hidden": false, - "name": "Gingerbread Cat", - "thumbnail": "rbxassetid://14968246488", + "fromZoneNumber": 42, + "goldenThumbnail": "rbxassetid://14968322334", + "maxChance": 0.6211180124223602, + "name": "Sabretooth Tiger", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://14968322431", }, - "configName": "Gingerbread Cat", + "configName": "Sabretooth Tiger", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.154Z", - "hashShort": "6e93f8f27e99453d", + "dateModified": "2026-06-27T16:05:21.732Z", + "hashShort": "f4b283ce961d50eb", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968251748", - "name": "Grinch Cat", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://15260347843", + "name": "Neon Twilight Wolf", "rarity": { "Announce": true, "Color": null, @@ -87562,20 +91333,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968251919", + "thumbnail": "rbxassetid://15260347743", }, - "configName": "Grinch Cat", + "configName": "Neon Twilight Wolf", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.159Z", - "hashShort": "aaa3eac9e287ce93", + "dateModified": "2025-07-05T23:28:54.950Z", + "hashShort": "2262897541631d84", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968252063", - "name": "Grumpy Cat", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://15260348124", + "name": "Neon Twilight Tiger", "rarity": { "Announce": true, "Color": null, @@ -87588,20 +91359,21 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968252224", + "thumbnail": "rbxassetid://15260347988", }, - "configName": "Grumpy Cat", + "configName": "Neon Twilight Tiger", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.156Z", - "hashShort": "df2c70b4fee0ed47", + "dateModified": "2025-07-05T23:28:54.941Z", + "hashShort": "6de11151439241b9", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://14968264352", - "name": "Inferno Cat", + "fly": true, + "goldenThumbnail": "rbxassetid://15260348332", + "name": "Neon Twilight Dragon", "rarity": { "Announce": true, "Color": null, @@ -87614,77 +91386,80 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968264482", + "thumbnail": "rbxassetid://15260348258", }, - "configName": "Inferno Cat", + "configName": "Neon Twilight Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.155Z", - "hashShort": "31eb2b885776be44", + "dateModified": "2025-07-05T23:28:54.943Z", + "hashShort": "ecdb5b386913b826", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2234, + 18069, + 20216, + 21501, ], - "fromEgg": "Ship Egg", + "fromEgg": "Bone Egg", "fromWorldNumber": 1, - "fromZoneNumber": 28, - "goldenThumbnail": "rbxassetid://14968169351", - "maxChance": 0.06607073455110765, - "name": "African Wild Dog", + "fromZoneNumber": 46, + "goldenThumbnail": "rbxassetid://14968237302", + "maxChance": 0.0353584056573449, + "name": "Fire Horse", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14968169510", + "thumbnail": "rbxassetid://14968237389", }, - "configName": "African Wild Dog", + "configName": "Fire Horse", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.150Z", - "hashShort": "2d3ba7d3b04a5035", + "dateModified": "2026-06-27T16:05:21.719Z", + "hashShort": "9fd13583616fea65", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 5996357, + 5076, + 5725, + 6127, ], - "fly": true, - "fromEgg": "Angel Egg", + "fromEgg": "Hyena Egg", "fromWorldNumber": 1, - "fromZoneNumber": 95, - "goldenThumbnail": "rbxassetid://14968171537", - "maxChance": 0.6993006993006994, - "name": "Angel Dog", + "fromZoneNumber": 35, + "goldenThumbnail": "rbxassetid://14968181677", + "maxChance": 0.012987012987012988, + "name": "Bison", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14968171653", + "thumbnail": "rbxassetid://14968181797", }, - "configName": "Angel Dog", + "configName": "Bison", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.151Z", - "hashShort": "5085dc7c6bbac338", + "dateModified": "2026-06-27T16:05:21.719Z", + "hashShort": "06a13ba58128994c", }, { "category": "Uncategorized", @@ -87694,8 +91469,8 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "hybridFly": true, }, "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968172702", - "name": "Anime Corgi", + "goldenThumbnail": "rbxassetid://14968173019", + "name": "Anime Monkey", "rarity": { "Announce": true, "Color": null, @@ -87708,24 +91483,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968172812", + "thumbnail": "rbxassetid://14968173242", }, - "configName": "Anime Corgi", + "configName": "Anime Monkey", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.152Z", - "hashShort": "9c7d16cbd01a6b82", + "dateModified": "2025-07-05T23:28:54.950Z", + "hashShort": "b75a71bab0cac492", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "animations": { - "balloon": true, + "hybridFly": true, }, - "exclusiveLevel": 2, - "fly": true, - "goldenThumbnail": "rbxassetid://14968178812", - "name": "Balloon Corgi", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://14968172373", + "name": "Anime Agony", "rarity": { "Announce": true, "Color": null, @@ -87738,26 +91512,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968178899", + "thumbnail": "rbxassetid://14968172578", }, - "configName": "Balloon Corgi", + "configName": "Anime Agony", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.137Z", - "hashShort": "c94f31497a32371b", + "dateModified": "2025-07-05T23:28:54.959Z", + "hashShort": "c0a52841fea9f95c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1704778, + 20641, + 23078, + 24452, ], - "fromEgg": "Ice Cream Egg", + "fromEgg": "Hell Egg", "fromWorldNumber": 1, - "fromZoneNumber": 85, - "goldenThumbnail": "rbxassetid://14968194661", - "maxChance": 0.24975024975024976, - "name": "Chocolate Dog", + "fromZoneNumber": 48, + "goldenThumbnail": "rbxassetid://14968238630", + "maxChance": 0.9888751545117429, + "name": "Flamortuus", "rarity": { "Announce": false, "Color": null, @@ -87770,20 +91546,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968194774", + "thumbnail": "rbxassetid://14968238749", }, - "configName": "Chocolate Dog", + "configName": "Flamortuus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.137Z", - "hashShort": "93afade276bfd38a", + "dateModified": "2026-06-27T16:05:21.715Z", + "hashShort": "3a33d1a0da4e6e54", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968198512", - "name": "Cool Corgi", + "animations": { + "hybridFly": true, + }, + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968173393", + "name": "Anime Unicorn", "rarity": { "Announce": true, "Color": null, @@ -87796,145 +91575,166 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968198599", + "thumbnail": "rbxassetid://14968173600", }, - "configName": "Cool Corgi", + "configName": "Anime Unicorn", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.295Z", - "hashShort": "8ab76acc5c6838de", + "dateModified": "2025-07-05T23:28:55.148Z", + "hashShort": "9a9c5478ae69b0c2", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1, + 14485, ], - "fromEgg": "Cracked Egg", "fromWorldNumber": 1, - "fromZoneNumber": 1, - "goldenThumbnail": "rbxassetid://14968198987", - "maxChance": 0.25, - "name": "Corgi", - "power": 1, + "goldenThumbnail": "rbxassetid://14968311378", + "hidden": false, + "name": "Present Cat", + "thumbnail": "rbxassetid://14968311524", + }, + "configName": "Present Cat", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:54.965Z", + "hashShort": "ac379ae017f769e6", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968346293", + "name": "Stunt Bobcat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968199094", + "thumbnail": "rbxassetid://14968346408", }, - "configName": "Corgi", + "configName": "Stunt Bobcat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.289Z", - "hashShort": "7b058d196e52598a", + "dateModified": "2025-07-05T23:28:54.966Z", + "hashShort": "5e4b16dff7f0b389", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 4493, + 880, + 1007, + 1095, ], - "fromEgg": "Canyon Egg", + "fromEgg": "Coral Egg", "fromWorldNumber": 1, - "fromZoneNumber": 34, - "goldenThumbnail": "rbxassetid://14968361944", - "maxChance": 0.01511969760604788, - "name": "Yee-haw Dog", + "fromZoneNumber": 21, + "goldenThumbnail": "rbxassetid://14968183893", + "maxChance": 0.6349206349206349, + "name": "Blue Fish", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968362070", + "thumbnail": "rbxassetid://14968184034", }, - "configName": "Cowboy Dog", + "configName": "Blue Fish", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.296Z", - "hashShort": "809b2b51e1d7a5fa", + "dateModified": "2026-06-27T16:05:21.724Z", + "hashShort": "6f02b838d08967d9", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968201278", - "hideSerial": true, - "name": "Crystal Dog", + "cachedPower": [ + 138359, + 154357, + 163431, + ], + "fromEgg": "Frosted Geode Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 63, + "goldenThumbnail": "rbxassetid://14968268484", + "maxChance": 0.009989810393398734, + "name": "Jolly Penguin", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14968201434", + "thumbnail": "rbxassetid://14968268575", }, - "configName": "Crystal Dog", + "configName": "Jolly Penguin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.302Z", - "hashShort": "8f2b753379d58b64", + "dateModified": "2026-06-27T16:05:21.725Z", + "hashShort": "b014ffd3c2f00631", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1, + 3760, + 4254, + 4575, ], - "fromEgg": "Cracked Egg", + "fromEgg": "Cowboy Egg", "fromWorldNumber": 1, - "fromZoneNumber": 1, - "goldenThumbnail": "rbxassetid://14968209024", - "maxChance": 0.25, - "name": "Dog", - "power": 1, + "fromZoneNumber": 33, + "goldenThumbnail": "rbxassetid://14968207336", + "maxChance": 0.1814595660749507, + "name": "Desert Ram", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968209124", + "thumbnail": "rbxassetid://14968207414", }, - "configName": "Dog", + "configName": "Desert Ram", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.287Z", - "hashShort": "dee960e75b42dbd8", + "dateModified": "2026-06-27T16:05:21.724Z", + "hashShort": "71c63bf240ae0547", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968209211", - "name": "Doge", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://14968277071", + "name": "Lucky Cat", "rarity": { "Announce": true, "Color": null, @@ -87947,77 +91747,46 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968209297", - }, - "configName": "Doge", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.288Z", - "hashShort": "8e2388a1435470d3", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 17131, - ], - "fromEgg": "Bone Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 46, - "goldenThumbnail": "rbxassetid://14968237034", - "maxChance": 0.3214400514304082, - "name": "Fire Dog", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - "thumbnail": "rbxassetid://14968237194", + "thumbnail": "rbxassetid://14968277226", }, - "configName": "Fire Dog", + "configName": "Lucky Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.304Z", - "hashShort": "98858a845f0d6ff1", + "dateModified": "2025-07-05T23:28:55.286Z", + "hashShort": "fa1b675ab94b822d", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 418, + 14485, ], "fromWorldNumber": 1, - "goldenThumbnail": "rbxassetid://14968246720", + "goldenThumbnail": "rbxassetid://14968284550", "hidden": false, - "name": "Gingerbread Corgi", - "thumbnail": "rbxassetid://14968246820", + "name": "Mrs. Claws", + "thumbnail": "rbxassetid://14968284667", }, - "configName": "Gingerbread Corgi", + "configName": "Mrs. Claws", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.291Z", - "hashShort": "b99253d9ff0a511c", + "dateModified": "2025-07-05T23:28:55.287Z", + "hashShort": "d78da675c03fb49c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2957824, + 123331, + 137623, + 145943, ], - "fly": true, - "fromEgg": "Hot Air Balloon Egg", + "fromEgg": "Frosted Geode Egg", "fromWorldNumber": 1, - "fromZoneNumber": 89, - "goldenThumbnail": "rbxassetid://14968259968", - "maxChance": 0.8991008991008992, - "name": "Hot Air Balloon Dog", + "fromZoneNumber": 63, + "goldenThumbnail": "rbxassetid://14968242250", + "maxChance": 0.6992867275379114, + "name": "Frost Bear", "rarity": { "Announce": false, "Color": null, @@ -88030,87 +91799,96 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968260184", + "thumbnail": "rbxassetid://14968242362", }, - "configName": "Hot Air Balloon Dog", + "configName": "Frost Bear", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.290Z", - "hashShort": "122afa0b820b95c2", + "dateModified": "2026-06-27T16:05:21.721Z", + "hashShort": "9568db0a1a7fe9b0", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2802927, + 127237, + 141743, + 152123, ], - "fromEgg": "Carnival Egg", + "fromEgg": "Frosted Geode Egg", "fromWorldNumber": 1, - "fromZoneNumber": 88, - "goldenThumbnail": "rbxassetid://14968260319", - "maxChance": 0.08991008991008992, - "name": "Hot Dog", + "fromZoneNumber": 63, + "goldenThumbnail": "rbxassetid://14976335686", + "maxChance": 0.2897045014085633, + "name": "Frost Axolotl", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968260460", + "thumbnail": "rbxassetid://14968242105", }, - "configName": "Hot Dog", + "configName": "Frost Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.305Z", - "hashShort": "83c34f8afd466492", + "dateModified": "2026-06-27T16:05:21.717Z", + "hashShort": "c0ad16ff01ff7e3b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "jelly": true, - }, - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968266009", - "name": "Jelly Corgi", + "cachedPower": [ + 2343, + 2662, + 2866, + ], + "fromEgg": "Cactus Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 29, + "goldenThumbnail": "rbxassetid://14968250396", + "maxChance": 0.8368200836820083, + "name": "Gorilla", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968266152", + "thumbnail": "rbxassetid://14968250591", }, - "configName": "Jelly Corgi", + "configName": "Gorilla", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.294Z", - "hashShort": "e564d2136d596e5d", + "dateModified": "2026-06-27T16:05:23.829Z", + "hashShort": "30312f712f8436a0", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 253, + 953, + 1092, + 1175, ], - "fromEgg": "Geode Egg", + "fromEgg": "Coral Egg", "fromWorldNumber": 1, - "fromZoneNumber": 11, - "goldenThumbnail": "rbxassetid://14968280835", - "maxChance": 0.7102272727272727, - "name": "Mining Dog", + "fromZoneNumber": 21, + "goldenThumbnail": "rbxassetid://14968250171", + "maxChance": 0.5943536404160475, + "name": "Goldfish", "rarity": { "Announce": false, "Color": null, @@ -88123,261 +91901,246 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968281023", + "thumbnail": "rbxassetid://14968250275", }, - "configName": "Mining Dog", + "configName": "Goldfish", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.311Z", - "hashShort": "874525b6e3bb4bfd", + "dateModified": "2026-06-27T16:05:23.838Z", + "hashShort": "6d7df0f1ec712b8f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968283236", - "hideSerial": true, - "name": "Mosaic Corgi", + "cachedPower": [ + 33881, + 37990, + 40588, + ], + "fromEgg": "Sakura Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 50, + "goldenThumbnail": "rbxassetid://14968324944", + "maxChance": 0.00009998990101999697, + "name": "Ninja Cat", + "overrideZoneNumber": 51, "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://14968283350", + "thumbnail": "rbxassetid://14968325159", }, - "configName": "Mosaic Corgi", + "configName": "Ninja Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.307Z", - "hashShort": "54dd029418318eb9", + "dateModified": "2026-06-27T16:05:23.798Z", + "hashShort": "96a974a3c1d7c56d", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968286984", - "name": "Neon Dog", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://14968287106", + "cachedPower": [ + 128227, + ], + "fromWorldNumber": 1, + "fromZoneNumber": 63, + "goldenThumbnail": "rbxassetid://14968312627", + "hidden": false, + "name": "Present Dragon", + "thumbnail": "rbxassetid://14968312733", }, - "configName": "Neon Dog", + "configName": "Present Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.289Z", - "hashShort": "fdbf6936d87e8ae3", + "dateModified": "2025-07-05T23:28:55.295Z", + "hashShort": "08cf5ab775a60914", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2337046, + 186683, + 207237, + 221114, ], - "fromEgg": "Toy Egg", + "fromEgg": "Hot Cocoa Egg", "fromWorldNumber": 1, - "fromZoneNumber": 87, - "goldenThumbnail": "rbxassetid://14968299714", - "maxChance": 0.4995004995004995, - "name": "Pastel Sock Corgi", + "fromZoneNumber": 65, + "goldenThumbnail": "rbxassetid://14968292387", + "maxChance": 0.08991008991008992, + "name": "North Pole Bunny", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968299814", + "thumbnail": "rbxassetid://14968292491", }, - "configName": "Pastel Sock Corgi", + "configName": "North Pole Bunny", "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.287Z", - "hashShort": "62afea07e4a619f0", + "dateModified": "2026-06-27T16:05:23.797Z", + "hashShort": "86e98eca22dd9538", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1376, + 135770, ], - "fromEgg": "Tropical Egg", "fromWorldNumber": 1, - "fromZoneNumber": 24, - "goldenThumbnail": "rbxassetid://14968309163", - "maxChance": 0.01818181818181818, - "name": "Poseidon Corgi", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, - }, - "thumbnail": "rbxassetid://14968309285", + "fromZoneNumber": 63, + "goldenThumbnail": "rbxassetid://14968189860", + "hidden": false, + "name": "Candycane Unicorn", + "thumbnail": "rbxassetid://14968189945", }, - "configName": "Poseidon Corgi", + "configName": "Candycane Unicorn", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.285Z", - "hashShort": "e2885a8c961bedce", + "dateModified": "2025-07-05T23:28:55.290Z", + "hashShort": "f29814785573e930", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1291, + 152742, ], - "fromEgg": "Tropical Egg", + "fly": true, "fromWorldNumber": 1, - "fromZoneNumber": 24, - "goldenThumbnail": "rbxassetid://14968309379", - "maxChance": 0.2545454545454545, - "name": "Poseidon Dog", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - "thumbnail": "rbxassetid://14976332368", + "fromZoneNumber": 63, + "goldenThumbnail": "rbxassetid://14968334067", + "hidden": false, + "name": "Snowflake Pegasus", + "thumbnail": "rbxassetid://14968334166", }, - "configName": "Poseidon Dog", + "configName": "Snowflake Pegasus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.298Z", - "hashShort": "1d650312c7d71463", + "dateModified": "2025-07-05T23:28:55.304Z", + "hashShort": "299fac31d591f2b1", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "christmasLights": true, + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://14968311645", + "name": "Present Chest Mimic", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, }, - "cachedPower": [ - 1373, - ], - "fromWorldNumber": 1, - "goldenThumbnail": "rbxassetid://15260345801", - "hidden": false, - "name": "Reindeer Corgi", - "thumbnail": "rbxassetid://15260345651", + "thumbnail": "rbxassetid://14968311832", }, - "configName": "Reindeer Corgi", + "configName": "Present Chest Mimic", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.304Z", - "hashShort": "4144d1647f2098a9", + "dateModified": "2025-07-05T23:28:55.309Z", + "hashShort": "e53a47a3126a272c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1749, + 3383, + 3833, + 4112, ], - "fromEgg": "Sand Bucket Egg", + "fly": true, + "fromEgg": "Egyptian Egg", "fromWorldNumber": 1, - "fromZoneNumber": 26, - "goldenThumbnail": "rbxassetid://14968326049", - "maxChance": 0.19592476489028213, - "name": "Sandcastle Dog", + "fromZoneNumber": 31, + "goldenThumbnail": "rbxassetid://14968241018", + "maxChance": 0.001245836828597769, + "name": "Fossil Dragon", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14968326174", + "thumbnail": "rbxassetid://14968241204", }, - "configName": "Sandcastle Dog", + "configName": "Fossil Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.310Z", - "hashShort": "01f093619bc4af7a", + "dateModified": "2026-06-27T16:05:23.802Z", + "hashShort": "943cc204f37c4c4b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 505087, - ], + "animations": { + "balloon": true, + }, + "exclusiveLevel": 1, "fly": true, - "fromEgg": "Eerie Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 75, - "goldenThumbnail": "rbxassetid://14968327953", - "maxChance": 0.7492432643030539, - "name": "Scary Corgi", + "goldenThumbnail": "rbxassetid://14968179039", + "name": "Balloon Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968328035", + "thumbnail": "rbxassetid://14968179312", }, - "configName": "Scary Corgi", + "configName": "Balloon Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.286Z", - "hashShort": "9a0a7a73005e7eb4", + "dateModified": "2025-07-05T23:28:55.305Z", + "hashShort": "cb824b6f1fad64cf", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 6006, + 5073, + 5721, + 6121, ], - "fromEgg": "Snow Egg", + "fromEgg": "Melted Egg", "fromWorldNumber": 1, - "fromZoneNumber": 37, - "goldenThumbnail": "rbxassetid://14968332611", - "maxChance": 0.2036106963485815, - "name": "Snow Dog", + "fromZoneNumber": 36, + "goldenThumbnail": "rbxassetid://14968206382", + "maxChance": 0.8511869802439502, + "name": "Deer", "rarity": { "Announce": false, "Color": null, @@ -88390,20 +92153,24 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968332769", + "thumbnail": "rbxassetid://14968206452", }, - "configName": "Snow Dog", + "configName": "Deer", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.309Z", - "hashShort": "2f23c5274c3220a4", + "dateModified": "2026-06-27T16:05:23.810Z", + "hashShort": "9376e7f3fde6092c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968334765", - "name": "Sock Corgi", + "animations": { + "balloon": true, + }, + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "rbxassetid://14968178373", + "name": "Balloon Axolotl", "rarity": { "Announce": true, "Color": null, @@ -88416,20 +92183,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968334854", + "thumbnail": "rbxassetid://14968178558", }, - "configName": "Sock Corgi", + "configName": "Balloon Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.285Z", - "hashShort": "e59a4c2e5acdc9b8", + "dateModified": "2025-07-05T23:28:55.291Z", + "hashShort": "0cdf9ce4c36268fc", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968339038", - "name": "Stacked Doge Noob", + "goldenThumbnail": "rbxassetid://15260348547", + "name": "Neon Twilight Cat", "rarity": { "Announce": true, "Color": null, @@ -88442,113 +92209,130 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968339288", + "thumbnail": "rbxassetid://15260348437", }, - "configName": "Stacked Doge Noob", + "configName": "Neon Twilight Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.309Z", - "hashShort": "548cf487b9175209", + "dateModified": "2025-07-05T23:28:55.291Z", + "hashShort": "629f33e45181e36a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "fly": true, - "goldenThumbnail": "rbxassetid://14968349230", - "name": "Super Corgi", + "cachedPower": [ + 1310, + 1497, + 1613, + ], + "fromEgg": "Beach Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 24, + "goldenThumbnail": "rbxassetid://14968282264", + "maxChance": 0.7513148009015778, + "name": "Moray Eel", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968349380", + "thumbnail": "rbxassetid://14968282484", }, - "configName": "Super Corgi", + "configName": "Moray Eel", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.301Z", - "hashShort": "e3f1bdc5862cc9ad", + "dateModified": "2026-06-27T16:05:23.803Z", + "hashShort": "5de26b5d0623426f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968353106", - "hideSerial": true, - "name": "Tiedye Corgi", + "cachedPower": [ + 31, + 62, + 85, + ], + "fromEgg": "Wood Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 4, + "goldenThumbnail": "rbxassetid://14968337699", + "maxChance": 0.684931506849315, + "name": "Squirrel", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968353197", + "thumbnail": "rbxassetid://14968337785", }, - "configName": "Tiedye Corgi", + "configName": "Squirrel", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.292Z", - "hashShort": "f4dc01cbf15c38ff", + "dateModified": "2026-06-27T16:05:23.805Z", + "hashShort": "6cf9284dbc0d168c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968353278", - "hideSerial": true, - "name": "Tiedye Dog", + "cachedPower": [ + 6677, + 7522, + 8107, + ], + "fromEgg": "Icicle Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 38, + "goldenThumbnail": "rbxassetid://14968313800", + "maxChance": 0.321285140562249, + "name": "Puffin", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968353381", + "thumbnail": "rbxassetid://14968313879", }, - "configName": "Tiedye Dog", + "configName": "Puffin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.311Z", - "hashShort": "0d9aed11045300ec", + "dateModified": "2026-06-27T16:05:23.804Z", + "hashShort": "376baef3e20e7d98", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 1, - "flyHeightChange": 4, - "flySpeed": 0.4, - }, "cachedPower": [ - 202, + 8103, + 9116, + 9713, ], - "fly": true, - "fromEgg": "Dog Egg", + "fromEgg": "Yeti Egg", "fromWorldNumber": 1, - "fromZoneNumber": 9, - "goldenThumbnail": "rbxassetid://14968356471", - "maxChance": 0.485201358563804, - "name": "Umbrella Dog", + "fromZoneNumber": 40, + "goldenThumbnail": "rbxassetid://14968357669", + "maxChance": 0.8899876390605687, + "name": "Walrus", "rarity": { "Announce": false, "Color": null, @@ -88561,66 +92345,81 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968356589", + "thumbnail": "rbxassetid://14968357843", }, - "configName": "Umbrella Dog", + "configName": "Walrus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.297Z", - "hashShort": "b126fbc0ace10cf1", + "dateModified": "2026-06-27T16:05:23.801Z", + "hashShort": "e0e3eed039a96267", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "fly": true, - "goldenThumbnail": "rbxassetid://15163402325", - "name": "Rift Dragon", + "cachedPower": [ + 50, + 86, + 111, + ], + "fromEgg": "Grass Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 3, + "goldenThumbnail": "rbxassetid://14968353903", + "maxChance": 0.0410958904109589, + "name": "Tiger", + "power": 50, "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://15163402414", + "thumbnail": "rbxassetid://14968353990", }, - "configName": "Rift Dragon", + "configName": "Tiger", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.299Z", - "hashShort": "7402594c43bb78db", + "dateModified": "2026-06-27T16:05:23.812Z", + "hashShort": "754a9cb1a6094024", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "fly": true, - "goldenThumbnail": "rbxassetid://15163402478", - "name": "Unicorn Dragon", + "cachedPower": [ + 6105, + 6884, + 7375, + ], + "fromEgg": "Snow Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 37, + "goldenThumbnail": "rbxassetid://14968332189", + "maxChance": 0.10180534817429075, + "name": "Snow Cat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://15163402536", + "thumbnail": "rbxassetid://14968332435", }, - "configName": "Unicorn Dragon", + "configName": "Snow Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.307Z", - "hashShort": "c3ce711a55b44da4", + "dateModified": "2026-06-27T16:05:23.827Z", + "hashShort": "ea95554986ff2329", }, { "category": "Uncategorized", @@ -88628,8 +92427,8 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "configData": { "exclusiveLevel": 3, "fly": true, - "goldenThumbnail": "rbxassetid://15163401960", - "name": "Celestial Dragon", + "goldenThumbnail": "rbxassetid://14968287224", + "name": "Neon Griffin", "rarity": { "Announce": true, "Color": null, @@ -88642,92 +92441,62 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15163402047", - }, - "configName": "Celestial Dragon", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.290Z", - "hashShort": "9d7abee0f41056eb", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 42881, - ], - "fly": true, - "fromEgg": "Lantern Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 52, - "goldenThumbnail": "rbxassetid://15565568923", - "maxChance": 0.0009990009990009992, - "name": "Ancient Dragon", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - "thumbnail": "rbxassetid://15565568888", + "thumbnail": "rbxassetid://14968287391", }, - "configName": "Ancient Dragon", + "configName": "Neon Griffin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.304Z", - "hashShort": "c6c9c5c4748c2a6f", + "dateModified": "2025-07-05T23:28:55.301Z", + "hashShort": "ae0313abf9a45bbe", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 43436, + 11290, + 12671, + 13485, ], - "fromEgg": "Garden Egg", + "fromEgg": "Thawed Egg", "fromWorldNumber": 1, - "fromZoneNumber": 54, - "goldenThumbnail": "rbxassetid://15565568848", - "maxChance": 0.47, - "name": "Blossom Bunny", + "fromZoneNumber": 42, + "goldenThumbnail": "rbxassetid://14968172022", + "maxChance": 0.03413498836307215, + "name": "Angry Yeti", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://15565568796", + "thumbnail": "rbxassetid://14968172235", }, - "configName": "Blossom Bunny", + "configName": "Angry Yeti", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.308Z", - "hashShort": "9de27aa90a15b8e6", + "dateModified": "2026-06-27T16:05:23.832Z", + "hashShort": "1954460a043fa8ac", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 48793, + 37, + 71, + 93, ], - "fly": true, - "fromEgg": "Pixie Egg", + "fromEgg": "Wood Egg", "fromWorldNumber": 1, - "fromZoneNumber": 55, - "goldenThumbnail": "rbxassetid://15565568742", - "maxChance": 0.49, - "name": "Fairy Bee", + "fromZoneNumber": 4, + "goldenThumbnail": "rbxassetid://14968180661", + "maxChance": 0.273972602739726, + "name": "Bear", "rarity": { "Announce": false, "Color": null, @@ -88740,91 +92509,96 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15565568703", + "thumbnail": "rbxassetid://14968180773", }, - "configName": "Fairy Bee", + "configName": "Bear", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.309Z", - "hashShort": "a68286e94b30dc69", + "dateModified": "2026-06-27T16:05:23.807Z", + "hashShort": "ad503180dc674d13", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 66276, + 9768, + 10977, + 11755, ], - "fromEgg": "Crowned Egg", + "fromEgg": "Yeti Egg", "fromWorldNumber": 1, - "fromZoneNumber": 57, - "goldenThumbnail": "rbxassetid://15565566458", - "maxChance": 0.029998500074996253, - "name": "Royal Peacock", + "fromZoneNumber": 40, + "goldenThumbnail": "rbxassetid://14968191676", + "maxChance": 0.0546583850931677, + "name": "Cheerful Yeti", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://15565566377", + "thumbnail": "rbxassetid://14968191769", }, - "configName": "Royal Peacock", + "configName": "Cheerful Yeti", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.296Z", - "hashShort": "0880d5a670eb3826", + "dateModified": "2026-06-27T16:05:23.833Z", + "hashShort": "616aae73fa15f79e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 49543, + 309, + 365, + 398, ], - "fly": true, - "fromEgg": "Pixie Egg", + "fromEgg": "Hut Egg", "fromWorldNumber": 1, - "fromZoneNumber": 55, - "goldenThumbnail": "rbxassetid://15565568653", - "maxChance": 0.3, - "name": "Fairy Ladybug", + "fromZoneNumber": 12, + "goldenThumbnail": "rbxassetid://14968227948", + "maxChance": 0.1332741003998223, + "name": "Emerald Carbuncle", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://15565568611", + "thumbnail": "rbxassetid://14968228041", }, - "configName": "Fairy Ladybug", + "configName": "Emerald Carbuncle", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.310Z", - "hashShort": "a1f327cdfd5cbd7e", + "dateModified": "2026-06-27T16:05:23.819Z", + "hashShort": "7849af533cc9d4d2", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 33665, + 5642, + 6360, + 6768, ], - "fromEgg": "Ninja Egg", + "fromEgg": "Melted Egg", "fromWorldNumber": 1, - "fromZoneNumber": 51, - "goldenThumbnail": "rbxassetid://15565568541", - "maxChance": 0.7399260073992601, - "name": "Kitsune Fox", + "fromZoneNumber": 36, + "goldenThumbnail": "rbxassetid://14968333229", + "maxChance": 0.6787023211619384, + "name": "Snow Ram", "rarity": { "Announce": false, "Color": null, @@ -88837,26 +92611,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15565568489", + "thumbnail": "rbxassetid://14968333395", }, - "configName": "Kitsune Fox", + "configName": "Snow Ram", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.308Z", - "hashShort": "cdcc492005cbb30f", + "dateModified": "2026-06-27T16:05:23.837Z", + "hashShort": "b57468a8909c03af", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 41376, + 6395, + 7203, + 7683, ], - "fromEgg": "Bonsai Egg", + "fromEgg": "Snow Egg", "fromWorldNumber": 1, - "fromZoneNumber": 53, - "goldenThumbnail": "rbxassetid://15565568346", - "maxChance": 0.029970029970029972, - "name": "Koi Fish", + "fromZoneNumber": 37, + "goldenThumbnail": "rbxassetid://14968332888", + "maxChance": 0.015270802226143613, + "name": "Snow Leopard", "rarity": { "Announce": false, "Color": null, @@ -88869,59 +92645,62 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://15565567792", + "thumbnail": "rbxassetid://14968332999", }, - "configName": "Koi Fish", + "configName": "Snow Leopard", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.302Z", - "hashShort": "1974efdfaee4f32f", + "dateModified": "2026-06-27T16:05:23.836Z", + "hashShort": "d044de57489364f1", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 120624, + 735, + 847, + 913, ], - "fly": true, - "fromEgg": "Colorful Mosaic Egg", + "fromEgg": "Palm Tree Egg", "fromWorldNumber": 1, - "fromZoneNumber": 62, - "goldenThumbnail": "rbxassetid://15565567487", - "maxChance": 0.02, - "name": "Lunar Moth", + "fromZoneNumber": 19, + "goldenThumbnail": "rbxassetid://14968245120", + "maxChance": 0.6060606060606061, + "name": "Gecko", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15565567426", + "thumbnail": "rbxassetid://14968245227", }, - "configName": "Lunar Moth", + "configName": "Gecko", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.306Z", - "hashShort": "7298b81c18b3d05a", + "dateModified": "2026-06-27T16:05:23.835Z", + "hashShort": "51a1e5031d73768b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 30157, + 263, + 314, + 344, ], - "fromEgg": "Ninja Egg", + "fromEgg": "Geode Egg", "fromWorldNumber": 1, - "fromZoneNumber": 51, - "goldenThumbnail": "rbxassetid://15565567378", - "maxChance": 0.6293706293706294, - "name": "Ninja Raccoon", + "fromZoneNumber": 11, + "goldenThumbnail": "rbxassetid://14968253742", + "maxChance": 0.28409090909090906, + "name": "Happy Rock", "rarity": { "Announce": false, "Color": null, @@ -88934,26 +92713,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15565567332", + "thumbnail": "rbxassetid://14968253894", }, - "configName": "Ninja Raccoon", + "configName": "Happy Rock", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.288Z", - "hashShort": "4f39062b449f0d2f", + "dateModified": "2026-06-27T16:05:23.836Z", + "hashShort": "81a9d08ff1714af7", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 53923, + 144, + 186, + 213, ], - "fromEgg": "Pixie Egg", + "fromEgg": "Corgi Egg", "fromWorldNumber": 1, - "fromZoneNumber": 55, - "goldenThumbnail": "rbxassetid://15565567299", - "maxChance": 0.47, - "name": "Pixie Squirrel", + "fromZoneNumber": 8, + "goldenThumbnail": "rbxassetid://14968199307", + "maxChance": 0.9090909090909091, + "name": "Cow", "rarity": { "Announce": false, "Color": null, @@ -88966,26 +92747,29 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15565567260", + "thumbnail": "rbxassetid://14968199389", }, - "configName": "Pixie Squirrel", + "configName": "Cow", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.291Z", - "hashShort": "25980d1e6e1fb83b", + "dateModified": "2026-06-27T16:05:40.197Z", + "hashShort": "91bd27a4dd14ed1c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 55736, + 313, + 370, + 403, ], - "fromEgg": "Pedal Egg", + "fly": true, + "fromEgg": "Grave Egg", "fromWorldNumber": 1, - "fromZoneNumber": 56, - "goldenThumbnail": "rbxassetid://15565566771", - "maxChance": 0.3, - "name": "Rabbit", + "fromZoneNumber": 12, + "goldenThumbnail": "rbxassetid://14968180144", + "maxChance": 0.6024096385542169, + "name": "Bat", "rarity": { "Announce": false, "Color": null, @@ -88998,59 +92782,62 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15565566729", + "thumbnail": "rbxassetid://14968180230", }, - "configName": "Rabbit", + "configName": "Bat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.446Z", - "hashShort": "17bae3de78c25ec6", + "dateModified": "2026-06-27T16:05:23.845Z", + "hashShort": "04d13f02dcb43a5c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 36329, + 863151, + 952705, + 1016017, ], - "fromEgg": "Lantern Egg", + "fromEgg": "Dungeon Egg", "fromWorldNumber": 1, - "fromZoneNumber": 52, - "goldenThumbnail": "rbxassetid://15565566688", - "maxChance": 0.04999500049995, - "name": "Ronin Panda", + "fromZoneNumber": 78, + "goldenThumbnail": "rbxassetid://14968316950", + "maxChance": 0.08991008991008992, + "name": "Reaper", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://15565566650", + "thumbnail": "rbxassetid://14968317238", }, - "configName": "Ronin Panda", + "configName": "Reaper", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.445Z", - "hashShort": "feabc3065bf495dc", + "dateModified": "2026-06-27T16:05:23.847Z", + "hashShort": "1bd869451f6659b9", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 44038, + 809645, + 899284, + 946521, ], - "fly": true, - "fromEgg": "Garden Egg", + "fromEgg": "Dungeon Egg", "fromWorldNumber": 1, - "fromZoneNumber": 54, - "goldenThumbnail": "rbxassetid://15565566601", - "maxChance": 0.3, - "name": "Rose Butterfly", + "fromZoneNumber": 78, + "goldenThumbnail": "rbxassetid://14968331188", + "maxChance": 0.6993006993006994, + "name": "Skeleton", "rarity": { "Announce": false, "Color": null, @@ -89063,27 +92850,29 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15565566558", + "thumbnail": "rbxassetid://14968331286", }, - "configName": "Rose Butterfly", + "configName": "Skeleton", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.438Z", - "hashShort": "27001c03fb8f0bc3", + "dateModified": "2026-06-27T16:05:23.846Z", + "hashShort": "2239e28d30f59300", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 58912, + 364, + 425, + 464, ], "fly": true, - "fromEgg": "Pedal Egg", + "fromEgg": "Hut Egg", "fromWorldNumber": 1, - "fromZoneNumber": 56, - "goldenThumbnail": "rbxassetid://15565565564", - "maxChance": 0.03, - "name": "Starry Owl", + "fromZoneNumber": 12, + "goldenThumbnail": "rbxassetid://14968360717", + "maxChance": 0.03614457831325301, + "name": "Willow Wisp", "rarity": { "Announce": false, "Color": null, @@ -89096,188 +92885,176 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://15565565517", + "thumbnail": "rbxassetid://14968360884", }, - "configName": "Starry Owl", + "configName": "Willow Wisp", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.438Z", - "hashShort": "dea69790b69ca326", + "dateModified": "2026-06-27T16:05:23.847Z", + "hashShort": "81d9447759542eb2", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 46547, - ], - "fromEgg": "Garden Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 54, - "goldenThumbnail": "rbxassetid://15565565466", - "maxChance": 0.03, - "name": "Sunflower Lion", + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "rbxassetid://14968359938", + "name": "Wicked Empyrean Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15565565410", + "thumbnail": "rbxassetid://14968360041", }, - "configName": "Sunflower Lion", + "configName": "Wicked Empyrean Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.440Z", - "hashShort": "f4e71ba91477ce22", + "dateModified": "2025-07-05T23:28:55.641Z", + "hashShort": "94ba88247690ef5d", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 78696, + 644, + 743, + 804, ], - "fromEgg": "Dandelion Egg", + "fromEgg": "Mossy Egg", "fromWorldNumber": 1, - "fromZoneNumber": 59, - "goldenThumbnail": "rbxassetid://15565565376", - "maxChance": 0.3996003996003996, - "name": "Tulip Hedgehog", + "fromZoneNumber": 18, + "goldenThumbnail": "rbxassetid://14968294619", + "maxChance": 0.15037593984962405, + "name": "Panther", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://15565565329", + "thumbnail": "rbxassetid://14968294740", }, - "configName": "Tulip Hedgehog", + "configName": "Panther", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.435Z", - "hashShort": "90f225d110e3610a", + "dateModified": "2026-06-27T16:05:23.849Z", + "hashShort": "38f58aff8efdcf34", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 50062, + 901, + 1033, + 1119, ], - "fromEgg": "Pixie Egg", + "fromEgg": "Coral Egg", "fromWorldNumber": 1, - "fromZoneNumber": 55, - "goldenThumbnail": "rbxassetid://15565565070", - "maxChance": 0.2, - "name": "Pixie Fox", + "fromZoneNumber": 21, + "goldenThumbnail": "rbxassetid://14968251006", + "maxChance": 0.31746031746031744, + "name": "Green Fish", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15565565022", + "thumbnail": "rbxassetid://14968251113", }, - "configName": "Pixie Fox", + "configName": "Green Fish", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.449Z", - "hashShort": "259046dcf53eedda", + "dateModified": "2026-06-27T16:05:23.849Z", + "hashShort": "3f2276366a179455", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 39336, - ], + "exclusiveLevel": 2, "fly": true, - "fromEgg": "Bonsai Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 53, - "goldenThumbnail": "rbxassetid://15565564981", - "maxChance": 0.24975024975024976, - "name": "Woodpecker", + "goldenThumbnail": "", + "name": "Cosmic Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15565564817", + "thumbnail": "rbxassetid://15201619975", }, - "configName": "Woodpecker", + "configName": "Cosmic Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.450Z", - "hashShort": "27b5dd5c60f61b9e", + "dateModified": "2025-07-05T23:28:55.648Z", + "hashShort": "0262314a77c1ec97", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 92880, - ], - "fromEgg": "Royal Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 58, - "goldenThumbnail": "rbxassetid://15565565238", - "maxChance": 0.04995004995004995, - "name": "Unicorn Kitten", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968318248", + "name": "Redstone Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15565565151", + "thumbnail": "rbxassetid://14968318336", }, - "configName": "Unicorn Kitten", + "configName": "Redstone Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.454Z", - "hashShort": "e048ea3677e53c63", + "dateModified": "2025-07-05T23:28:55.649Z", + "hashShort": "9dada8c777475bd2", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 74561, + 2805, + 3175, + 3406, ], - "fly": true, - "fromEgg": "Royal Egg", + "fromEgg": "Fossil Egg", "fromWorldNumber": 1, - "fromZoneNumber": 58, - "goldenThumbnail": "rbxassetid://15565566973", - "maxChance": 0.02998485764688832, - "name": "Princess Dragon", + "fromZoneNumber": 30, + "goldenThumbnail": "rbxassetid://14968268680", + "maxChance": 0.015037593984962405, + "name": "Kangaroo", "rarity": { "Announce": false, "Color": null, @@ -89290,26 +93067,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://15565566917", + "thumbnail": "rbxassetid://14968268764", }, - "configName": "Princess Dragon", + "configName": "Kangaroo", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.458Z", - "hashShort": "d633524a1fccf378", + "dateModified": "2026-06-27T16:05:23.852Z", + "hashShort": "44fd23c5316f121a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 67123, + 63, + 103, + 127, ], - "fromEgg": "Royal Egg", + "fromEgg": "Pumpkin Egg", "fromWorldNumber": 1, - "fromZoneNumber": 58, - "goldenThumbnail": "rbxassetid://15565567105", - "maxChance": 0.969510397249389, - "name": "Prince Donkey", + "fromZoneNumber": 5, + "goldenThumbnail": "rbxassetid://14968241467", + "maxChance": 0.22727272727272727, + "name": "Fox", "rarity": { "Announce": false, "Color": null, @@ -89322,154 +93101,163 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15565567040", + "thumbnail": "rbxassetid://14968241601", }, - "configName": "Prince Donkey", + "configName": "Fox", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.437Z", - "hashShort": "85c6aa833f233da9", + "dateModified": "2026-06-27T16:05:23.851Z", + "hashShort": "4ec7ca12cd91331b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 78612, + 116, + 159, + 185, ], - "fromEgg": "Crowned Egg", + "fromEgg": "Blossom Egg", "fromWorldNumber": 1, - "fromZoneNumber": 57, - "goldenThumbnail": "rbxassetid://15565568452", - "maxChance": 0.0004997476274481387, - "name": "Knight Beagle", + "fromZoneNumber": 7, + "goldenThumbnail": "rbxassetid://14968358895", + "maxChance": 0.6242197253433209, + "name": "White Bunny", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15565568400", + "thumbnail": "rbxassetid://14968359101", }, - "configName": "Knight Beagle", + "configName": "White Bunny", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.453Z", - "hashShort": "d3eb8afe898abfb0", + "dateModified": "2026-06-27T16:05:23.852Z", + "hashShort": "4dd1c502cf7ec5b0", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 63360, + 335, + 392, + 429, ], - "fromEgg": "Crowned Egg", + "fromEgg": "Spike Egg", "fromWorldNumber": 1, - "fromZoneNumber": 57, - "goldenThumbnail": "rbxassetid://15565566869", - "maxChance": 0.199990000499975, - "name": "Queen Piggy", + "fromZoneNumber": 13, + "goldenThumbnail": "rbxassetid://14968181884", + "maxChance": 0.6211180124223602, + "name": "Black Bear", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15565566823", + "thumbnail": "rbxassetid://14968181998", }, - "configName": "Queen Piggy", + "configName": "Black Bear", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.442Z", - "hashShort": "d259eebdf5ae119d", + "dateModified": "2026-06-27T16:05:23.853Z", + "hashShort": "1c57f06ffe2c9b25", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 62703, + 8189, + 9213, + 9859, ], - "fromEgg": "Crowned Egg", + "fly": true, + "fromEgg": "Snowman Egg", "fromWorldNumber": 1, - "fromZoneNumber": 57, - "goldenThumbnail": "rbxassetid://15565567223", - "maxChance": 0.29998500074996254, - "name": "King Cow", + "fromZoneNumber": 39, + "goldenThumbnail": "rbxassetid://14968242511", + "maxChance": 0.09888751545117429, + "name": "Snow Dragon", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://15565567168", + "thumbnail": "rbxassetid://14968242615", }, - "configName": "King Cow", + "configName": "Frost Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.452Z", - "hashShort": "88d3333a95097d73", + "dateModified": "2026-06-27T16:05:23.854Z", + "hashShort": "eb3a8ca15b72f091", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 81517, + 12518, ], - "fromEgg": "Dandelion Egg", + "fromEgg": "Thawed Egg", "fromWorldNumber": 1, - "fromZoneNumber": 59, - "goldenThumbnail": "rbxassetid://15637923529", - "maxChance": 0.0999000999000999, - "name": "Calico Cat", + "fromZoneNumber": 42, + "goldenThumbnail": "rbxassetid://14968263862", + "maxChance": 0.0007757951900698216, + "name": "Icemortuus", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://15637923438", + "thumbnail": "rbxassetid://14968263977", }, - "configName": "Calico Cat", + "configName": "Icemortuus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.445Z", - "hashShort": "2a0480cc438e6f2c", + "dateModified": "2025-07-05T23:28:55.661Z", + "hashShort": "378315ee4309c584", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 162752, + 19512, + 21844, + 23451, ], - "fromEgg": "Frosted Geode Egg", + "fromEgg": "Tentacle Egg", "fromWorldNumber": 1, - "fromZoneNumber": 63, - "goldenThumbnail": "rbxassetid://15637923369", - "maxChance": 0.0999000999000999, - "name": "Colorful Dragon", + "fromZoneNumber": 47, + "goldenThumbnail": "rbxassetid://14968255941", + "maxChance": 0.19996000799840033, + "name": "Hell Fox", "rarity": { "Announce": false, "Color": null, @@ -89482,26 +93270,29 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://15637923286", + "thumbnail": "rbxassetid://14968256017", }, - "configName": "Colorful Dragon", + "configName": "Hell Fox", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.435Z", - "hashShort": "7662512b246c8c27", + "dateModified": "2026-06-27T16:05:23.854Z", + "hashShort": "dbc1e5fda178ab93", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 113908, + 18601, + 20851, + 22174, ], - "fromEgg": "Colorful Mosaic Egg", + "fly": true, + "fromEgg": "Tentacle Egg", "fromWorldNumber": 1, - "fromZoneNumber": 62, - "goldenThumbnail": "rbxassetid://15637923742", - "maxChance": 0.22, - "name": "Colorful Firefly", + "fromZoneNumber": 47, + "goldenThumbnail": "rbxassetid://14968255258", + "maxChance": 0.7998400319936013, + "name": "Hell Bat", "rarity": { "Announce": false, "Color": null, @@ -89514,90 +93305,97 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15637923696", + "thumbnail": "rbxassetid://14968255366", }, - "configName": "Colorful Firefly", + "configName": "Hell Bat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.437Z", - "hashShort": "ffeeb9614dd33ce0", + "dateModified": "2026-06-27T16:05:23.855Z", + "hashShort": "7ee8e91a7ebd37ee", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 116545, + 10705, + 12027, + 12952, ], - "fromEgg": "Colorful Geode Egg", + "fromEgg": "Thawed Egg", "fromWorldNumber": 1, - "fromZoneNumber": 61, - "goldenThumbnail": "rbxassetid://15637923649", - "maxChance": 0.06, - "name": "Colorful Rock", + "fromZoneNumber": 42, + "goldenThumbnail": "rbxassetid://14968263632", + "maxChance": 0.3103180760279286, + "name": "Ice Slime", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15637923583", + "thumbnail": "rbxassetid://14968263728", }, - "configName": "Colorful Rock", + "configName": "Ice Slime", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.442Z", - "hashShort": "2103f310527f6092", + "dateModified": "2026-06-27T16:05:23.856Z", + "hashShort": "6dad0530bf187b55", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 103596, + 6516, + 7341, + 7889, ], - "fromEgg": "Colorful Egg", + "fromEgg": "Icicle Egg", "fromWorldNumber": 1, - "fromZoneNumber": 60, - "goldenThumbnail": "rbxassetid://15637923947", - "maxChance": 0.0999000999000999, - "name": "Colorful Wisp", + "fromZoneNumber": 38, + "goldenThumbnail": "rbxassetid://14968333795", + "maxChance": 0.642570281124498, + "name": "Snow Squirrel", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15637923898", + "thumbnail": "rbxassetid://14968333979", }, - "configName": "Colorful Wisp", + "configName": "Snow Squirrel", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.457Z", - "hashShort": "7c498da33db8e1a4", + "dateModified": "2026-06-27T16:05:23.856Z", + "hashShort": "7d41dfebb6e4160b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 143010, + 3, + 12, + 23, ], - "fromEgg": "Ice Sculpture Egg", + "fromEgg": "Spotted Egg", "fromWorldNumber": 1, - "fromZoneNumber": 64, - "goldenThumbnail": "rbxassetid://15637923839", - "maxChance": 0.2997002997002997, - "name": "Frost Fox", + "fromZoneNumber": 1, + "goldenThumbnail": "rbxassetid://14968192966", + "maxChance": 0.2903225806451613, + "name": "Chick", + "power": 3, "rarity": { "Announce": false, "Color": null, @@ -89610,26 +93408,29 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15637923791", + "thumbnail": "rbxassetid://14968193170", }, - "configName": "Frost Fox", + "configName": "Chick", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.454Z", - "hashShort": "c0072424a8711345", + "dateModified": "2026-06-27T16:05:23.857Z", + "hashShort": "82cd5161b31fca6e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 141268, + 5, + 18, + 31, ], - "fromEgg": "Ice Sculpture Egg", + "fromEgg": "Spotted Egg", "fromWorldNumber": 1, - "fromZoneNumber": 64, - "goldenThumbnail": "rbxassetid://15637924384", - "maxChance": 0.4495504495504496, - "name": "Frost Rabbit", + "fromZoneNumber": 1, + "goldenThumbnail": "rbxassetid://14968206125", + "maxChance": 0.3816793893129771, + "name": "Dalmatian", + "power": 5, "rarity": { "Announce": false, "Color": null, @@ -89642,26 +93443,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15637924287", + "thumbnail": "rbxassetid://14968206257", }, - "configName": "Frost Rabbit", + "configName": "Dalmatian", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.447Z", - "hashShort": "6f8783fa1f6799b9", + "dateModified": "2026-06-27T16:05:23.858Z", + "hashShort": "9952ebbac4074133", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 78103, + 122, + 165, + 190, ], - "fromEgg": "Dandelion Egg", + "fromEgg": "Blossom Egg", "fromWorldNumber": 1, - "fromZoneNumber": 59, - "goldenThumbnail": "rbxassetid://15637924187", - "maxChance": 0.4995004995004995, - "name": "Hamster", + "fromZoneNumber": 7, + "goldenThumbnail": "rbxassetid://14968193335", + "maxChance": 0.37453183520599254, + "name": "Chicken", "rarity": { "Announce": false, "Color": null, @@ -89674,26 +93477,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15637924096", + "thumbnail": "rbxassetid://14968193451", }, - "configName": "Hamster", + "configName": "Chicken", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.450Z", - "hashShort": "6a63aa1d89e35980", + "dateModified": "2026-06-27T16:05:23.860Z", + "hashShort": "112bf894d688626f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 98139, + 85, + 126, + 152, ], - "fromEgg": "Colorful Geode Egg", + "fromEgg": "Acorn Egg", "fromWorldNumber": 1, - "fromZoneNumber": 61, - "goldenThumbnail": "rbxassetid://15637924009", - "maxChance": 0.5994005994005994, - "name": "Mining Axolotl", + "fromZoneNumber": 6, + "goldenThumbnail": "rbxassetid://14968301383", + "maxChance": 0.5847953216374269, + "name": "Piggy", "rarity": { "Announce": false, "Color": null, @@ -89706,26 +93511,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15637924572", + "thumbnail": "rbxassetid://14968301566", }, - "configName": "Mining Axolotl", + "configName": "Piggy", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.462Z", - "hashShort": "87ed8abb529c7d28", + "dateModified": "2026-06-27T16:05:23.864Z", + "hashShort": "50aec64f8b1f4009", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 100441, + 9526, + 10709, + 11532, ], - "fromEgg": "Colorful Geode Egg", + "fromEgg": "Ice Egg", "fromWorldNumber": 1, - "fromZoneNumber": 61, - "goldenThumbnail": "rbxassetid://15637924526", - "maxChance": 0.2997002997002997, - "name": "Mining Cat", + "fromZoneNumber": 41, + "goldenThumbnail": "rbxassetid://14968261326", + "maxChance": 0.2981366459627329, + "name": "Husky", "rarity": { "Announce": false, "Color": null, @@ -89738,136 +93545,97 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15637924469", - }, - "configName": "Mining Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.439Z", - "hashShort": "e924e947c4e36b1b", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://15634020673", - "name": "Orange Axolotl", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://15634020515", - }, - "configName": "Orange Axolotl", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.443Z", - "hashShort": "93eb7b736f30f2de", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://15634025444", - "name": "Dragonfruit Dragon", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://15634025370", + "thumbnail": "rbxassetid://14968261449", }, - "configName": "Dragonfruit Dragon", + "configName": "Husky", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.439Z", - "hashShort": "5ce6e0ce05ddb7b5", + "dateModified": "2026-06-27T16:05:23.859Z", + "hashShort": "f79234a7d2c0ba74", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://15634029235", - "name": "Blueberry Cow", + "cachedPower": [ + 58, + 97, + 121, + ], + "fromEgg": "Pumpkin Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 5, + "goldenThumbnail": "rbxassetid://14968271568", + "maxChance": 0.45454545454545453, + "name": "Lamb", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15634029076", + "thumbnail": "rbxassetid://14968271702", }, - "configName": "Blueberry Cow", + "configName": "Lamb", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.460Z", - "hashShort": "ceae598da625a634", + "dateModified": "2026-06-27T16:05:23.868Z", + "hashShort": "de777922248960d4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 221624, + 2656, + 3015, + 3241, ], - "fromEgg": "Teddy Egg", + "fromEgg": "Fossil Egg", "fromWorldNumber": 1, - "fromZoneNumber": 67, - "goldenThumbnail": "rbxassetid://15715876758", - "maxChance": 0.009989810393398734, - "name": "Train Conductor Dog", + "fromZoneNumber": 30, + "goldenThumbnail": "rbxassetid://14968175339", + "maxChance": 0.14202172096908938, + "name": "Armadillo", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://15715876574", + "thumbnail": "rbxassetid://14968175530", }, - "configName": "Train Conductor Dog", + "configName": "Armadillo", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.458Z", - "hashShort": "46463f7f453b7eff", + "dateModified": "2026-06-27T16:05:23.860Z", + "hashShort": "de27da44aad5e18e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 203810, + 6745902, + 7466005, + 7817946, ], - "fromEgg": "Teddy Egg", + "fly": true, + "fromEgg": "Heaven Egg", "fromWorldNumber": 1, - "fromZoneNumber": 67, - "goldenThumbnail": "rbxassetid://15715876978", - "maxChance": 0.2897045014085633, - "name": "Train Conductor Cat", + "fromZoneNumber": 96, + "goldenThumbnail": "rbxassetid://14968300424", + "maxChance": 0.6993006993006994, + "name": "Pegasus", "rarity": { "Announce": false, "Color": null, @@ -89880,26 +93648,29 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15715876878", + "thumbnail": "rbxassetid://14968300520", }, - "configName": "Train Conductor Cat", + "configName": "Pegasus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.453Z", - "hashShort": "af35922b983db228", + "dateModified": "2026-06-27T16:05:23.867Z", + "hashShort": "b1d5c0cfeab843ff", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 236270, + 32154, + 36011, + 38410, ], - "fromEgg": "Teddy Egg", + "fly": true, + "fromEgg": "Ninja Egg", "fromWorldNumber": 1, - "fromZoneNumber": 67, - "goldenThumbnail": "rbxassetid://15715877220", - "maxChance": 0.18981018981018982, - "name": "Teddy Bear", + "fromZoneNumber": 51, + "goldenThumbnail": "rbxassetid://14968325270", + "maxChance": 0.059940059940059943, + "name": "Samurai Dragon", "rarity": { "Announce": false, "Color": null, @@ -89912,122 +93683,131 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://15715877102", + "thumbnail": "rbxassetid://14968325380", }, - "configName": "Teddy Bear", + "configName": "Samurai Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.461Z", - "hashShort": "af4cedd87ecc0b66", + "dateModified": "2026-06-27T16:05:23.869Z", + "hashShort": "de287c53acb1ea28", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 260697, + 61, + 100, + 124, ], - "fromEgg": "Teddy Egg", + "fromEgg": "Pumpkin Egg", "fromWorldNumber": 1, - "fromZoneNumber": 67, - "goldenThumbnail": "rbxassetid://15715877508", - "maxChance": 0.052029136316337155, - "name": "Snowflake Dominus", + "fromZoneNumber": 5, + "goldenThumbnail": "rbxassetid://14968315696", + "maxChance": 0.3181818181818182, + "name": "Raccoon", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15715877322", + "thumbnail": "rbxassetid://14968315758", }, - "configName": "Snowflake Dominus", + "configName": "Raccoon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.448Z", - "hashShort": "b446f3f56dd9dd20", + "dateModified": "2026-06-27T16:05:23.870Z", + "hashShort": "775dd367c330921b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 179481, + 23364, + 26175, + 27784, ], - "fromEgg": "Ice Castle Egg Egg", + "fly": true, + "fromEgg": "Tentacle Egg", "fromWorldNumber": 1, - "fromZoneNumber": 66, - "goldenThumbnail": "rbxassetid://15715877930", - "maxChance": 0.3996003996003996, - "name": "Silver Moose", + "fromZoneNumber": 47, + "goldenThumbnail": "rbxassetid://14968206862", + "maxChance": 0.009888751545117428, + "name": "Demon", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://15715877677", + "thumbnail": "rbxassetid://14968206949", }, - "configName": "Silver Moose", + "configName": "Demon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.452Z", - "hashShort": "8c22a712bff9f218", + "dateModified": "2026-06-27T16:05:23.869Z", + "hashShort": "037fa5d3e83bee4e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 145509, + 411, + 478, + 520, ], - "fromEgg": "Ice Sculpture Egg", + "fromEgg": "Mushroom Egg", "fromWorldNumber": 1, - "fromZoneNumber": 64, - "goldenThumbnail": "rbxassetid://15715880134", - "maxChance": 0.14985014985014986, - "name": "Hot Cocoa Cat", + "fromZoneNumber": 14, + "goldenThumbnail": "rbxassetid://14968205864", + "maxChance": 0.40404040404040403, + "name": "Cyclops", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15715879987", + "thumbnail": "rbxassetid://14968205992", }, - "configName": "Hot Cocoa Cat", + "configName": "Cyclops", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.460Z", - "hashShort": "d57437172088773c", + "dateModified": "2026-06-27T16:05:23.871Z", + "hashShort": "e45c7beafc3b410b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 197553, + 191, + 236, + 263, ], - "fromEgg": "Teddy Egg", + "fromEgg": "Dog Egg", "fromWorldNumber": 1, - "fromZoneNumber": 67, - "goldenThumbnail": "rbxassetid://15715878925", - "maxChance": 0.6992867275379114, - "name": "Pajamas Dog", + "fromZoneNumber": 9, + "goldenThumbnail": "rbxassetid://14968241712", + "maxChance": 0.3125, + "name": "Froggy", "rarity": { "Announce": false, "Color": null, @@ -90040,58 +93820,62 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15715878740", + "thumbnail": "rbxassetid://14968241898", }, - "configName": "Pajamas Dog", + "configName": "Froggy", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.459Z", - "hashShort": "38e7c5523f7c3bfb", + "dateModified": "2026-06-27T16:05:23.872Z", + "hashShort": "11dc90778f3903b8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 210018, + 417125, + 462385, + 495777, ], - "fromEgg": "Ice Castle Egg Egg", + "fromEgg": "Wizard Egg", "fromWorldNumber": 1, - "fromZoneNumber": 66, - "goldenThumbnail": "rbxassetid://15715879235", - "maxChance": 0.0009990009990009992, - "name": "Pajamas Cat", + "fromZoneNumber": 73, + "goldenThumbnail": "rbxassetid://14968249829", + "maxChance": 0.1997802417340925, + "name": "Goblin", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://15715879132", + "thumbnail": "rbxassetid://14968250023", }, - "configName": "Pajamas Cat", + "configName": "Goblin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.461Z", - "hashShort": "0afa58c246067ea1", + "dateModified": "2026-06-27T16:05:23.872Z", + "hashShort": "c045659154913c67", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 151158, + 490, + 566, + 617, ], - "fromEgg": "Ice Sculpture Egg", + "fromEgg": "Spirit Egg", "fromWorldNumber": 1, - "fromZoneNumber": 64, - "goldenThumbnail": "rbxassetid://15715879440", - "maxChance": 0.5494505494505495, - "name": "Ice Snowman", + "fromZoneNumber": 15, + "goldenThumbnail": "rbxassetid://14968231615", + "maxChance": 0.3107344632768362, + "name": "Enchanted Deer", "rarity": { "Announce": false, "Color": null, @@ -90104,88 +93888,82 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15715879340", + "thumbnail": "rbxassetid://14968231993", }, - "configName": "Ice Snowman", + "configName": "Enchanted Deer", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.448Z", - "hashShort": "bfed04a870c0aac7", + "dateModified": "2026-06-27T16:05:23.873Z", + "hashShort": "bb6a9dcd0a99f169", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 175110, - ], - "fromEgg": "Hot Cocoa Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 65, - "goldenThumbnail": "rbxassetid://15715879649", - "maxChance": 0.4995004995004995, - "name": "Ice Penguin", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968227154", + "name": "Electric Slime", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15715879541", + "thumbnail": "rbxassetid://14968227249", }, - "configName": "Ice Penguin", + "configName": "Electric Slime", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.451Z", - "hashShort": "af9534a1d4c50624", + "dateModified": "2025-07-05T23:28:55.650Z", + "hashShort": "1f24ebec576ea2e5", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 160322, + 951333, + 1051898, + 1124895, ], - "fromEgg": "Hot Cocoa Egg", + "fly": true, + "fromEgg": "Treasure Egg", "fromWorldNumber": 1, - "fromZoneNumber": 65, - "goldenThumbnail": "rbxassetid://15715879880", - "maxChance": 0.3396603396603397, - "name": "Ice Corgi", + "fromZoneNumber": 80, + "goldenThumbnail": "rbxassetid://16043357261", + "maxChance": 0.1998001998001998, + "name": "Red Dragon", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://15715879745", + "thumbnail": "rbxassetid://16043357132", }, - "configName": "Ice Corgi", + "configName": "Red Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.454Z", - "hashShort": "8732f7b981d4868a", + "dateModified": "2026-06-27T16:05:23.874Z", + "hashShort": "653fd56c4142bbc6", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - }, - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "rbxassetid://15715878611", - "name": "Peppermint Angelus", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968352730", + "hideSerial": true, + "name": "Tiedye Cat", "rarity": { "Announce": true, "Color": null, @@ -90198,21 +93976,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15715878441", + "thumbnail": "rbxassetid://14968352979", }, - "configName": "Peppermint Angelus", + "configName": "Tiedye Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.436Z", - "hashShort": "c6a1121e505dd309", + "dateModified": "2025-07-05T23:28:55.643Z", + "hashShort": "e3851ba1a6a3722f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "fly": true, - "goldenThumbnail": "rbxassetid://15715880570", - "name": "Holiday Pegasus", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968228916", + "name": "Empyrean Dominus", "rarity": { "Announce": true, "Color": null, @@ -90225,24 +94002,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15715880316", + "thumbnail": "rbxassetid://14968229114", }, - "configName": "Holiday Pegasus", + "configName": "Empyrean Dominus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.457Z", - "hashShort": "00cfb6a8b8c807c8", + "dateModified": "2025-07-05T23:28:55.640Z", + "hashShort": "f750ecf5ab0c37fb", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "balloon": true, - }, - "exclusiveLevel": 2, - "fly": true, - "goldenThumbnail": "rbxassetid://15715880914", - "name": "Holiday Balloon Cat", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://14968264563", + "name": "Inferno Dominus", "rarity": { "Announce": true, "Color": null, @@ -90255,59 +94028,55 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15715880811", + "thumbnail": "rbxassetid://14968264716", }, - "configName": "Holiday Balloon Cat", + "configName": "Inferno Dominus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.447Z", - "hashShort": "69ed0ce0f8543f9a", + "dateModified": "2025-07-05T23:28:55.816Z", + "hashShort": "edad6bd7606d8cad", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 196999, - ], - "fromEgg": "Ice Castle Egg Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 66, - "goldenThumbnail": "rbxassetid://15715878226", - "maxChance": 0.00999000999000999, - "name": "Silver Bison", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://15260344540", + "name": "Storm Dominus", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15715878088", + "thumbnail": "rbxassetid://15260344456", }, - "configName": "Silver Bison", + "configName": "Storm Dominus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.443Z", - "hashShort": "8e97e14a8192447a", + "dateModified": "2025-07-05T23:28:55.810Z", + "hashShort": "b7c9b38a79e25544", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 594571, + 5566991, + 6128808, + 6523905, ], "fly": true, - "fromEgg": "Witch Egg", + "fromEgg": "Angel Egg", "fromWorldNumber": 1, - "fromZoneNumber": 74, - "goldenThumbnail": "rbxassetid://15810014383", - "maxChance": 0.19, - "name": "Broomstick Corgi", + "fromZoneNumber": 95, + "goldenThumbnail": "rbxassetid://14968171293", + "maxChance": 0.1998001998001998, + "name": "Angel Cat", "rarity": { "Announce": false, "Color": null, @@ -90320,190 +94089,172 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://15805723781", + "thumbnail": "rbxassetid://14968171393", }, - "configName": "Broomstick Corgi", + "configName": "Angel Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.444Z", - "hashShort": "b24057b893645c60", + "dateModified": "2026-06-27T16:05:23.879Z", + "hashShort": "691dce70eb975beb", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 378459, - ], - "fly": true, - "fromEgg": "Ruins Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 71, - "goldenThumbnail": "rbxassetid://15805728222", - "maxChance": 0.08991008991008992, - "name": "Rock Dragon", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://15260347448", + "hideSerial": true, + "name": "Nightfall Ram", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15805728356", + "thumbnail": "rbxassetid://15260347339", }, - "configName": "Rock Dragon", + "configName": "Nightfall Ram", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.434Z", - "hashShort": "5da3a536a6cb5ef7", + "dateModified": "2025-07-05T23:28:55.810Z", + "hashShort": "751b93b99ec23948", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 354999, - ], - "fromEgg": "Ruins Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 71, - "goldenThumbnail": "rbxassetid://15805727980", - "maxChance": 0.6993006993006994, - "name": "Rock Dog", + "animations": { + "flyHeightChange": 0, + }, + "exclusiveLevel": 2, + "fly": true, + "goldenThumbnail": "rbxassetid://14968258995", + "name": "Hologram Tiger", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15805728089", + "thumbnail": "rbxassetid://14968259117", }, - "configName": "Rock Dog", + "configName": "Hologram Tiger", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.592Z", - "hashShort": "4abe487d87d5c0be", + "dateModified": "2025-07-05T23:28:55.815Z", + "hashShort": "bc83f5f83e61716b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 239166, - ], + "animations": { + "flyHeightChange": 0, + }, + "exclusiveLevel": 3, "fly": true, - "fromEgg": "Firefly Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 68, - "goldenThumbnail": "rbxassetid://15805723954", - "maxChance": 0.04995004995004995, - "name": "Cold Butterfly", + "goldenThumbnail": "rbxassetid://14968257984", + "name": "Hologram Axolotl", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15805724092", + "thumbnail": "rbxassetid://14968258075", }, - "configName": "Cold Butterfly", + "configName": "Hologram Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.587Z", - "hashShort": "2c30cfb915843518", + "dateModified": "2025-07-05T23:28:55.826Z", + "hashShort": "460c783a4f840b09", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 399374, - ], - "fromEgg": "Runic Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 72, - "goldenThumbnail": "rbxassetid://15805727484", - "maxChance": 0.6992308460693237, - "name": "Relic Cyclops", + "animations": { + "flyHeightChange": 0, + }, + "exclusiveLevel": 1, + "fly": true, + "goldenThumbnail": "rbxassetid://14968258693", + "name": "Hologram Shark", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15805727647", + "thumbnail": "rbxassetid://14968258877", }, - "configName": "Relic Cyclops", + "configName": "Hologram Shark", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.593Z", - "hashShort": "ddec5f2a2e5bf9d8", + "dateModified": "2025-07-05T23:28:55.828Z", + "hashShort": "0d2440e9c94ab3ab", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 370777, - ], - "fly": true, - "fromEgg": "Runic Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 72, - "goldenThumbnail": "rbxassetid://15805727186", - "maxChance": 0.1998001998001998, - "name": "Relic Bat", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://14968342300", + "hideSerial": true, + "name": "Stealth Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15805727353", + "thumbnail": "rbxassetid://14968342472", }, - "configName": "Relic Bat", + "configName": "Stealth Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.587Z", - "hashShort": "995b0ef2cff70409", + "dateModified": "2025-07-05T23:28:55.830Z", + "hashShort": "bfd7af0947f57ddc", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 425766, + 4267, + 4824, + 5177, ], - "fly": true, - "fromEgg": "Runic Egg", + "fromEgg": "Canyon Egg", "fromWorldNumber": 1, - "fromZoneNumber": 72, - "goldenThumbnail": "rbxassetid://15805726919", - "maxChance": 0.09989012086704625, - "name": "Relic Agony", + "fromZoneNumber": 34, + "goldenThumbnail": "rbxassetid://14968259574", + "maxChance": 0.12599748005039899, + "name": "Horse", "rarity": { "Announce": false, "Color": null, @@ -90516,26 +94267,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://15805727049", + "thumbnail": "rbxassetid://14968259839", }, - "configName": "Relic Agony", + "configName": "Horse", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.585Z", - "hashShort": "5b796b55fc04ce78", + "dateModified": "2026-06-27T16:05:25.636Z", + "hashShort": "e97cef777cffb8d3", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 450558, + 109622, + 122372, + 129830, ], - "fromEgg": "Witch Egg", + "fromEgg": "Colorful Mosaic Egg", "fromWorldNumber": 1, - "fromZoneNumber": 74, - "goldenThumbnail": "rbxassetid://15805726611", - "maxChance": 0.6992864481083503, - "name": "Potion Poodle", + "fromZoneNumber": 62, + "goldenThumbnail": "rbxassetid://14968329954", + "maxChance": 0.7, + "name": "Shiba", "rarity": { "Announce": false, "Color": null, @@ -90548,156 +94301,107 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15805726755", + "thumbnail": "rbxassetid://14968330093", }, - "configName": "Potion Poodle", + "configName": "Shiba", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.599Z", - "hashShort": "d6699abb0f494688", + "dateModified": "2026-06-27T16:05:25.637Z", + "hashShort": "76e2129d1945b553", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 298702, - ], - "fromEgg": "Golden Brick Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 69, - "goldenThumbnail": "rbxassetid://15805728503", - "maxChance": 0.08991008991008992, - "name": "Tabby Cat", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968228161", + "name": "Emerald Monkey", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15805728586", - }, - "configName": "Tabby Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.586Z", - "hashShort": "6b9a0ffbd92c2c30", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 257419, - ], - "fly": true, - "fromEgg": "Golden Brick Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 69, - "goldenThumbnail": "rbxassetid://15805726243", - "maxChance": 0.3121748178980229, - "name": "Orange Parrot", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - "thumbnail": "rbxassetid://15805726424", + "thumbnail": "rbxassetid://14968228249", }, - "configName": "Orange Parrot", + "configName": "Emerald Monkey", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.588Z", - "hashShort": "b9b7ad4997b95490", + "dateModified": "2025-07-05T23:28:55.825Z", + "hashShort": "d4921287c0a0e6f1", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 637729, - ], + "exclusiveLevel": 3, "fly": true, - "fromEgg": "Witch Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 74, - "goldenThumbnail": "rbxassetid://15805725950", - "maxChance": 0.6993006993006994, - "name": "Imp", + "goldenThumbnail": "rbxassetid://14968170930", + "name": "Amethyst Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15805726087", + "thumbnail": "rbxassetid://14968171079", }, - "configName": "Imp", + "configName": "Amethyst Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.600Z", - "hashShort": "ff421d28948eae44", + "dateModified": "2025-07-05T23:28:55.831Z", + "hashShort": "e5eade4999cc2c4a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 280171, - ], - "fromEgg": "Golden Brick Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 69, - "goldenThumbnail": "rbxassetid://15805725673", - "maxChance": 0.6993006993006994, - "name": "Golden Retriever", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968322675", + "name": "Sad Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15805725808", + "thumbnail": "rbxassetid://14968322801", }, - "configName": "Golden Retriever", + "configName": "Sad Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.583Z", - "hashShort": "ce37bea217170d63", + "dateModified": "2025-07-05T23:28:55.827Z", + "hashShort": "09f653e248f00d37", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 315555, + 689, + 790, + 861, ], - "fromEgg": "Cobblestone Egg", + "fromEgg": "Sandcastle Egg", "fromWorldNumber": 1, - "fromZoneNumber": 70, - "goldenThumbnail": "rbxassetid://15805725467", - "maxChance": 0.6993006993006994, - "name": "Enchanted Raccoon", + "fromZoneNumber": 19, + "goldenThumbnail": "rbxassetid://14968272985", + "maxChance": 0.7511737089201878, + "name": "Lemur", "rarity": { "Announce": false, "Color": null, @@ -90710,26 +94414,29 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15805725579", + "thumbnail": "rbxassetid://14968273169", }, - "configName": "Enchanted Raccoon", + "configName": "Lemur", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.586Z", - "hashShort": "ccc6c53f889f47ce", + "dateModified": "2026-06-27T16:05:25.645Z", + "hashShort": "1f95989ee9e8b3fa", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 292959, + 527922, + 584760, + 626494, ], - "fromEgg": "Cobblestone Egg", + "fly": true, + "fromEgg": "Eerie Egg", "fromWorldNumber": 1, - "fromZoneNumber": 70, - "goldenThumbnail": "rbxassetid://15805725191", - "maxChance": 0.1998001998001998, - "name": "Enchanted Fox", + "fromZoneNumber": 75, + "goldenThumbnail": "rbxassetid://14968327603", + "maxChance": 0.1997982038141477, + "name": "Scary Cat", "rarity": { "Announce": false, "Color": null, @@ -90742,59 +94449,55 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://15805725330", + "thumbnail": "rbxassetid://14968327765", }, - "configName": "Enchanted Fox", + "configName": "Scary Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.596Z", - "hashShort": "0d540a791e0b35f8", + "dateModified": "2026-06-27T16:05:25.616Z", + "hashShort": "dc3fb0923a16f83a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 336408, - ], + "exclusiveLevel": 3, "fly": true, - "fromEgg": "Cobblestone Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 70, - "goldenThumbnail": "rbxassetid://15805724888", - "maxChance": 0.08991008991008992, - "name": "Enchanted Dragon", + "goldenThumbnail": "", + "name": "Cosmic Agony", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15805725040", + "thumbnail": "rbxassetid://15201620079", }, - "configName": "Enchanted Dragon", + "configName": "Cosmic Agony", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.588Z", - "hashShort": "6330f90dbf39bbac", + "dateModified": "2025-07-05T23:28:55.827Z", + "hashShort": "cf8e997a5b1776c0", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 221461, + 2067, + 2350, + 2535, ], - "fromEgg": "Firefly Egg", + "fromEgg": "Pirate Egg", "fromWorldNumber": 1, - "fromZoneNumber": 68, - "goldenThumbnail": "rbxassetid://15805724487", - "maxChance": 0.7492507492507493, - "name": "Cold Ladybug", + "fromZoneNumber": 27, + "goldenThumbnail": "rbxassetid://14968302972", + "maxChance": 0.8413967185527976, + "name": "Pirate Cat", "rarity": { "Announce": false, "Color": null, @@ -90807,91 +94510,82 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15805724703", + "thumbnail": "rbxassetid://14968303084", }, - "configName": "Cold Ladybug", + "configName": "Pirate Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.601Z", - "hashShort": "0c3382ea11669fee", + "dateModified": "2026-06-27T16:05:25.633Z", + "hashShort": "114bdaa7c0e3fc74", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 249327, - ], + "exclusiveLevel": 3, "fly": true, - "fromEgg": "Firefly Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 68, - "goldenThumbnail": "rbxassetid://15805724208", - "maxChance": 0.6243496357960459, - "name": "Cold Firefly", + "goldenThumbnail": "rbxassetid://14968198703", + "name": "Cool Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15805724346", + "thumbnail": "rbxassetid://14968198861", }, - "configName": "Cold Firefly", + "configName": "Cool Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.590Z", - "hashShort": "4055aca4e4b3e2c3", + "dateModified": "2025-07-05T23:28:55.812Z", + "hashShort": "fa50c83d0fef4457", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 329579, - ], - "fromEgg": "Ruins Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 71, - "goldenThumbnail": "rbxassetid://15805727771", - "maxChance": 0.1998001998001998, - "name": "Rock Cat", + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "rbxassetid://15260344951", + "name": "Storm Agony", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15805727880", + "thumbnail": "rbxassetid://15260344841", }, - "configName": "Rock Cat", + "configName": "Storm Agony", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.594Z", - "hashShort": "7310c858c7446e5d", + "dateModified": "2025-07-05T23:28:55.830Z", + "hashShort": "4ee8e03083d7e65a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1523852, + 4804, + 5427, + 5821, ], - "fromEgg": "Gummy Egg", + "fromEgg": "Hyena Egg", "fromWorldNumber": 1, - "fromZoneNumber": 84, - "goldenThumbnail": "rbxassetid://16043359832", - "maxChance": 0.1998001998001998, - "name": "Gummy Raccoon", + "fromZoneNumber": 35, + "goldenThumbnail": "rbxassetid://14968249667", + "maxChance": 0.12121212121212122, + "name": "Goat", "rarity": { "Announce": false, "Color": null, @@ -90904,187 +94598,141 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16043359584", + "thumbnail": "rbxassetid://14968249753", }, - "configName": "Gummy Raccoon", + "configName": "Goat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.602Z", - "hashShort": "11ed5c6b3aac1db9", + "dateModified": "2026-06-27T16:05:25.630Z", + "hashShort": "f63aaa7d8ca3aa95", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 1749854, - ], - "fromEgg": "Gummy Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 84, - "goldenThumbnail": "rbxassetid://16043360110", - "maxChance": 0.08991008991008992, - "name": "Gummy Fox", + "exclusiveLevel": 2, + "fly": true, + "goldenThumbnail": "rbxassetid://14968293066", + "name": "Nyan Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16043359977", + "thumbnail": "rbxassetid://14968293166", }, - "configName": "Gummy Fox", + "configName": "Nyan Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.590Z", - "hashShort": "9001646f3d596e45", + "dateModified": "2025-07-05T23:28:55.814Z", + "hashShort": "7483a18cb995cefa", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 1641382, - ], - "fromEgg": "Gummy Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 84, - "goldenThumbnail": "rbxassetid://16043360472", - "maxChance": 0.4995004995004995, - "name": "Gummy Bear", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, + "animations": { + "jelly": true, }, - "thumbnail": "rbxassetid://16043360293", - }, - "configName": "Gummy Bear", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.603Z", - "hashShort": "d86f01d0ad4944d1", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 1382600, - ], - "fly": true, - "fromEgg": "Mythic Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 82, - "goldenThumbnail": "rbxassetid://16043361076", - "maxChance": 0.08991008991008992, - "name": "Encrusted Dragon", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968266252", + "name": "Jelly Panda", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16043360960", + "thumbnail": "rbxassetid://14968266382", }, - "configName": "Encrusted Dragon", + "configName": "Jelly Panda", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.602Z", - "hashShort": "b86e7752c698f647", + "dateModified": "2025-07-05T23:28:55.830Z", + "hashShort": "63304ae08f0d88d0", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 1555426, - ], - "fromEgg": "Cotton Candy Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 83, - "goldenThumbnail": "rbxassetid://16043365204", - "maxChance": 0.08991008991008992, - "name": "Cotton Candy Unicorn", + "animations": { + "jelly": true, + }, + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://14968266535", + "name": "Jelly Piggy", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16043365064", + "thumbnail": "rbxassetid://14968266649", }, - "configName": "Cotton Candy Unicorn", + "configName": "Jelly Piggy", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.606Z", - "hashShort": "4881f65478f53350", + "dateModified": "2025-07-05T23:28:55.808Z", + "hashShort": "b41c6412f59c9e4a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 1459007, - ], - "fromEgg": "Cotton Candy Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 83, - "goldenThumbnail": "rbxassetid://16043365467", - "maxChance": 0.6993006993006994, - "name": "Cotton Candy Cow", + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "rbxassetid://14968342644", + "hideSerial": true, + "name": "Stealth Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16043365309", + "thumbnail": "rbxassetid://14968342742", }, - "configName": "Cotton Candy Cow", + "configName": "Stealth Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.589Z", - "hashShort": "a055d2dc444297ae", + "dateModified": "2025-07-05T23:28:55.978Z", + "hashShort": "44615944dfab1174", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 8090671, + 5398, + 6092, + 6535, ], - "fromEgg": "Heaven Castle Egg", + "fromEgg": "Melted Egg", "fromWorldNumber": 1, - "fromZoneNumber": 97, - "goldenThumbnail": "rbxassetid://16043355173", - "maxChance": 0.08991008991008992, - "name": "Vibrant Whale", + "fromZoneNumber": 36, + "goldenThumbnail": "rbxassetid://14968281990", + "maxChance": 0.12767804703659255, + "name": "Moose", "rarity": { "Announce": false, "Color": null, @@ -91097,155 +94745,117 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16043355041", - }, - "configName": "Vibrant Whale", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.594Z", - "hashShort": "8f89557d87eb9304", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 11298403, - ], - "fly": true, - "fromEgg": "Rainbow Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 99, - "goldenThumbnail": "rbxassetid://16043355544", - "maxChance": 0.000019979612803095722, - "name": "Vibrant Toucan", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "thumbnail": "rbxassetid://16043355332", + "thumbnail": "rbxassetid://14968282134", }, - "configName": "Vibrant Toucan", + "configName": "Moose", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.601Z", - "hashShort": "5f0884dd1f5da37b", + "dateModified": "2026-06-27T16:05:25.647Z", + "hashShort": "4da7fe122acb6fe0", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 10239761, + 6990, + 7874, + 8402, ], - "fromEgg": "Rainbow Egg", + "fromEgg": "Snow Egg", "fromWorldNumber": 1, - "fromZoneNumber": 99, - "goldenThumbnail": "rbxassetid://16043355910", - "maxChance": 0.0009989806401547862, - "name": "Vibrant Cobra", + "fromZoneNumber": 37, + "goldenThumbnail": "rbxassetid://14968285885", + "maxChance": 0.035341365461847386, + "name": "Narwhal", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://16043355769", + "thumbnail": "rbxassetid://14968285990", }, - "configName": "Vibrant Cobra", + "configName": "Narwhal", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.607Z", - "hashShort": "d9c5adb54144b6f2", + "dateModified": "2026-06-27T16:05:25.646Z", + "hashShort": "0290d68f8596836d", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 9102005, - ], - "fromEgg": "Colorful Cloud Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 98, - "goldenThumbnail": "rbxassetid://16043358267", - "maxChance": 0.2996941920464358, - "name": "Pastel Goat", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://14968233513", + "hideSerial": true, + "name": "Exquisite Elephant", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16043358145", + "thumbnail": "rbxassetid://14968233585", }, - "configName": "Pastel Goat", + "configName": "Exquisite Elephant", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.595Z", - "hashShort": "0f0f86eaab7f870f", + "dateModified": "2025-07-05T23:28:55.972Z", + "hashShort": "22099cc1535d078f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 7926438, - ], - "fromEgg": "Colorful Cloud Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 98, - "goldenThumbnail": "rbxassetid://16043358753", - "maxChance": 0.1998001998001998, - "name": "Pastel Elephant", + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "rbxassetid://14968233653", + "hideSerial": true, + "name": "Exquisite Parrot", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16043358433", + "thumbnail": "rbxassetid://14968233738", }, - "configName": "Pastel Elephant", + "configName": "Exquisite Parrot", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.592Z", - "hashShort": "3db383e5a45f8505", + "dateModified": "2025-07-05T23:28:55.980Z", + "hashShort": "91cf417c755e8037", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 3743496, + 1375, + 1564, + 1684, ], - "fromEgg": "Cloud Garden Egg", + "fromEgg": "Beach Egg", "fromWorldNumber": 1, - "fromZoneNumber": 91, - "goldenThumbnail": "rbxassetid://16043557601", - "maxChance": 0.8991008991008992, - "name": "Blossom Squirrel", + "fromZoneNumber": 24, + "goldenThumbnail": "rbxassetid://14968358564", + "maxChance": 0.22539444027047334, + "name": "Whale Shark", "rarity": { "Announce": false, "Color": null, @@ -91258,90 +94868,85 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16043367219", + "thumbnail": "rbxassetid://14968358704", }, - "configName": "Blossom Squirrel", + "configName": "Whale Shark", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.593Z", - "hashShort": "f3e2037d2e9c2491", + "dateModified": "2026-06-27T16:05:25.657Z", + "hashShort": "ca2490f431b8e3f3", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 3327552, - ], - "fromEgg": "Cloud Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 90, - "goldenThumbnail": "rbxassetid://16043365668", - "maxChance": 0.8991008991008992, - "name": "Cloud Penguin", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968283743", + "hideSerial": true, + "name": "Mosaic Elephant", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16043365595", + "thumbnail": "rbxassetid://14968283881", }, - "configName": "Cloud Penguin", + "configName": "Mosaic Elephant", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.596Z", - "hashShort": "f45387daef0ae57a", + "dateModified": "2025-07-05T23:28:55.994Z", + "hashShort": "50a8b738b38ca801", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 1296895, - ], - "fromEgg": "Mythic Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 82, - "goldenThumbnail": "rbxassetid://16043360783", - "maxChance": 0.6993006993006994, - "name": "Encrusted Wolf", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968284282", + "hideSerial": true, + "name": "Mosaic Lamb", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16043360588", + "thumbnail": "rbxassetid://14968284378", }, - "configName": "Encrusted Wolf", + "configName": "Mosaic Lamb", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.585Z", - "hashShort": "e4d257786ae21a39", + "dateModified": "2025-07-05T23:28:55.993Z", + "hashShort": "3cf9d3734cb19eb8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "ballBounceHeight": 2, + }, "cachedPower": [ - 3547455, + 3153293, + 3467238, + 3697251, ], - "fromEgg": "Cloud Egg", + "fromEgg": "Hot Air Balloon Egg", "fromWorldNumber": 1, - "fromZoneNumber": 90, - "goldenThumbnail": "rbxassetid://16043365955", + "fromZoneNumber": 89, + "goldenThumbnail": "rbxassetid://14968179819", "maxChance": 0.08991008991008992, - "name": "Cloud Monkey", + "name": "Basketball Retriever", "rarity": { "Announce": false, "Color": null, @@ -91354,58 +94959,57 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16043365782", + "thumbnail": "rbxassetid://14968179950", }, - "configName": "Cloud Monkey", + "configName": "Basketball Retriever", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.607Z", - "hashShort": "901dbb810cea8fc5", + "dateModified": "2026-06-27T16:05:25.658Z", + "hashShort": "091b2ba0813b008d", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "christmasLights": true, + }, "cachedPower": [ - 3990887, + 1373, + 1562, + 1680, ], - "fromEgg": "Cloud Garden Egg", "fromWorldNumber": 1, - "fromZoneNumber": 91, - "goldenThumbnail": "rbxassetid://16043557977", - "maxChance": 0.08991008991008992, - "name": "Blossom Koi Fish", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - "thumbnail": "rbxassetid://16043557777", + "goldenThumbnail": "rbxassetid://15260346087", + "hidden": false, + "name": "Reindeer Cat", + "thumbnail": "rbxassetid://15260345952", }, - "configName": "Blossom Koi Fish", + "configName": "Reindeer Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.595Z", - "hashShort": "1756950aba9197f5", + "dateModified": "2026-06-27T16:05:25.666Z", + "hashShort": "47aa7099a4fb2b14", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "flyHeight": 1, + "flyHeightChange": 4, + "flySpeed": 0.4, + }, "cachedPower": [ - 4211433, + 222, + 268, + 297, ], - "fromEgg": "Cloud Forest Egg", + "fly": true, + "fromEgg": "Dragon Egg", "fromWorldNumber": 1, - "fromZoneNumber": 92, - "goldenThumbnail": "rbxassetid://16043366163", - "maxChance": 0.8991008991008992, - "name": "Cloud Hedgehog", + "fromZoneNumber": 10, + "goldenThumbnail": "rbxassetid://14968356213", + "maxChance": 0.485201358563804, + "name": "Umbrella Cat", "rarity": { "Announce": false, "Color": null, @@ -91418,293 +95022,242 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16043366050", + "thumbnail": "rbxassetid://14968356324", }, - "configName": "Cloud Hedgehog", + "configName": "Umbrella Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.588Z", - "hashShort": "d97319c368315ee0", + "dateModified": "2026-06-27T16:05:25.661Z", + "hashShort": "dc901bd9ea0eae77", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 8537782, + 680867, + 752223, + 802604, ], - "fly": true, - "fromEgg": "Colorful Cloud Egg", + "fromEgg": "Cursed Egg", "fromWorldNumber": 1, - "fromZoneNumber": 98, - "goldenThumbnail": "rbxassetid://16043358020", - "maxChance": 0.6992864481083503, - "name": "Pastel Griffin", + "fromZoneNumber": 77, + "goldenThumbnail": "rbxassetid://14968207513", + "maxChance": 0.08991008991008992, + "name": "Detective Terrier", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16043357891", + "thumbnail": "rbxassetid://14968207596", }, - "configName": "Pastel Griffin", + "configName": "Detective Terrier", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.594Z", - "hashShort": "e17dd20651f6d07d", + "dateModified": "2026-06-27T16:05:36.148Z", + "hashShort": "97a2324480dd1f49", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 5050966, + 508717, + 565316, + 597328, ], - "fromEgg": "Cloud House Egg", + "fromEgg": "Wizard Egg", "fromWorldNumber": 1, - "fromZoneNumber": 93, - "goldenThumbnail": "rbxassetid://16043366417", - "maxChance": 0.08991008991008992, - "name": "Cloud Dog", + "fromZoneNumber": 73, + "goldenThumbnail": "rbxassetid://14968361253", + "maxChance": 0.009989806401547861, + "name": "Wizard Westie", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://16043366316", + "thumbnail": "rbxassetid://14968361410", }, - "configName": "Cloud Dog", + "configName": "Wizard Westie", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.605Z", - "hashShort": "b80a78cfad9c852d", + "dateModified": "2026-06-27T16:05:25.667Z", + "hashShort": "8d24ede5291bfeb4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 4489748, - ], - "fromEgg": "Cloud Forest Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 92, - "goldenThumbnail": "rbxassetid://16043359123", - "maxChance": 0.08991008991008992, - "name": "Pastel Deer", + "animations": { + "flipbookAnimation": [ + "rbxassetid://12442921582", + "rbxassetid://12445580091", + ], + "flipbookAnimationGold": [ + "rbxassetid://12442921397", + "rbxassetid://12445579992", + ], + "flipbookAnimationSpeed": 0.15, + }, + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://14968309002", + "name": "Pop Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16043358958", + "thumbnail": "rbxassetid://14968309066", }, - "configName": "Pastel Deer", + "configName": "Pop Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.604Z", - "hashShort": "61b40fa170c5fd91", + "dateModified": "2025-07-05T23:28:55.975Z", + "hashShort": "1a7876f2da315165", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 5682337, - ], - "fromEgg": "Cloud Castle Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 94, - "goldenThumbnail": "rbxassetid://16043356504", - "maxChance": 0.08991008991008992, - "name": "Royal Cloud Corgi", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968352356", + "hideSerial": true, + "name": "Tiedye Bunny", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16043356327", + "thumbnail": "rbxassetid://14968352460", }, - "configName": "Royal Cloud Corgi", + "configName": "Tiedye Bunny", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.603Z", - "hashShort": "e9bb72535e8c4fc9", + "dateModified": "2025-07-05T23:28:55.997Z", + "hashShort": "182aa5206d26b92b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 5330096, - ], - "fromEgg": "Cloud Castle Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 94, - "goldenThumbnail": "rbxassetid://16043356772", - "maxChance": 0.6993006993006994, - "name": "Royal Cloud Cat", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968351612", + "hideSerial": true, + "name": "Tiedye Axolotl", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16043356632", + "thumbnail": "rbxassetid://14968351742", }, - "configName": "Royal Cloud Cat", + "configName": "Tiedye Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.589Z", - "hashShort": "215b30565ed2185a", + "dateModified": "2025-07-05T23:28:55.970Z", + "hashShort": "20f6be72ce15a23e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 4737863, - ], + "exclusiveLevel": 2, "fly": true, - "fromEgg": "Cloud House Egg", - "fromWorldNumber": 1, - "fromZoneNumber": 93, - "goldenThumbnail": "rbxassetid://16043366751", - "maxChance": 0.8991008991008992, - "name": "Cloud Bat", + "goldenThumbnail": "rbxassetid://14968353698", + "hideSerial": true, + "name": "Tiedye Griffin", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16043366600", + "thumbnail": "rbxassetid://14968353783", }, - "configName": "Cloud Bat", + "configName": "Tiedye Griffin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.606Z", - "hashShort": "39eacc0a9660b0dd", + "dateModified": "2025-07-05T23:28:55.968Z", + "hashShort": "452e5a280bfbec66", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 845630, + 3989, + 4504, + 4817, ], - "fromEgg": "Shadow Egg", + "fromEgg": "Cowboy Egg", "fromWorldNumber": 1, - "fromZoneNumber": 79, - "goldenThumbnail": "rbxassetid://16043367051", - "maxChance": 0.1998001998001998, - "name": "Blue Slime", + "fromZoneNumber": 33, + "goldenThumbnail": "rbxassetid://14968313952", + "maxChance": 0.8399832003359933, + "name": "Puma", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16043366874", + "thumbnail": "rbxassetid://14968314442", }, - "configName": "Blue Slime", + "configName": "Puma", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.602Z", - "hashShort": "078fb23e2b100b73", + "dateModified": "2026-06-27T16:05:25.672Z", + "hashShort": "ebc631384f7bab49", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "customAnimations": true, - "fadeFrames": [ - { - "duration": 3, - "iconThumbnail": "rbxassetid://16047313414", - "instant": true, - "textureName": "frame1", - }, - { - "duration": 1, - "iconThumbnail": "rbxassetid://16047314024", - "instant": true, - "textureName": "frame2", - }, - { - "duration": 1, - "iconThumbnail": "rbxassetid://16047699763", - "instant": true, - "textureName": "frame3", - }, - { - "duration": 5, - "iconThumbnail": "rbxassetid://16047699544", - "instant": true, - "textureName": "frame4", - }, - { - "duration": 1, - "iconThumbnail": "rbxassetid://16047699763", - "instant": true, - "textureName": "frame3", - }, - { - "duration": 1, - "iconThumbnail": "rbxassetid://16047314024", - "instant": true, - "textureName": "frame2", - }, - ], - "idleActionAnimations": [ - [ - "LookAround", - 0.6, - ], - ], - }, "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://16043364155", - "name": "Emoji Cat", + "fly": true, + "goldenThumbnail": "rbxassetid://14968290405", + "name": "Nightmare Spirit", "rarity": { "Announce": true, "Color": null, @@ -91717,43 +95270,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16047313527", + "thumbnail": "rbxassetid://14968290525", }, - "configName": "Emoji Cat", + "configName": "Nightmare Spirit", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.591Z", - "hashShort": "810eb435b3869939", + "dateModified": "2025-07-05T23:28:55.970Z", + "hashShort": "3bbb8062b0a4f6e7", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "customAnimations": true, - "fadeFrames": [ - { - "duration": 2, - "iconThumbnail": "rbxassetid://16047312407", - "instant": true, - "textureName": "frame1", - }, - { - "duration": 3, - "iconThumbnail": "rbxassetid://16047312609", - "instant": true, - "textureName": "frame2", - }, - ], - "idleActionAnimations": [ - [ - "Angry", - 0.3, - ], - ], - }, "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://16043362572", - "name": "Emoji Dog", + "goldenThumbnail": "rbxassetid://14968289559", + "name": "Nightmare Bear", "rarity": { "Announce": true, "Color": null, @@ -91766,43 +95296,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16047312609", + "thumbnail": "rbxassetid://14968289661", }, - "configName": "Emoji Dog", + "configName": "Nightmare Bear", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.605Z", - "hashShort": "b92ba0ac0e2ec336", + "dateModified": "2025-07-05T23:28:55.991Z", + "hashShort": "16a943867e3c8c2c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "animations": { - "customAnimations": true, - "fadeFrames": [ - { - "duration": 2, - "iconThumbnail": "rbxassetid://16047312048", - "instant": true, - "textureName": "frame1", - }, - { - "duration": 3, - "iconThumbnail": "rbxassetid://16047363462", - "instant": true, - "textureName": "frame2", - }, - ], - "idleActionAnimations": [ - [ - "MonkeyBackflip", - 1, - ], - ], + "flyHeight": 0.025, + "flyHeightChange": 0, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, }, "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://16043362082", - "name": "Emoji Monkey", + "fly": true, + "goldenThumbnail": "rbxassetid://14968290148", + "name": "Nightmare Kraken", "rarity": { "Announce": true, "Color": null, @@ -91815,90 +95330,96 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16047363462", + "thumbnail": "rbxassetid://14968290312", }, - "configName": "Emoji Monkey", + "configName": "Nightmare Kraken", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.591Z", - "hashShort": "4c5d52c2fd52a610", + "dateModified": "2025-07-05T23:28:58.592Z", + "hashShort": "7b59eac75262e133", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 971044, + 2650, + 3007, + 3234, ], - "fromEgg": "Shadow Egg", + "fromEgg": "Cheetah Egg", "fromWorldNumber": 1, - "fromZoneNumber": 79, - "goldenThumbnail": "rbxassetid://16043356152", - "maxChance": 0.08991008991008992, - "name": "Stacked King Slime", + "fromZoneNumber": 29, + "goldenThumbnail": "rbxassetid://14968320513", + "maxChance": 0.835421888053467, + "name": "Rhino", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16043356028", + "thumbnail": "rbxassetid://14968320647", }, - "configName": "Stacked King Slime", + "configName": "Rhino", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.599Z", - "hashShort": "b103f11d014590b0", + "dateModified": "2026-06-27T16:05:25.679Z", + "hashShort": "3d96619d5d607b6f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1092425, + 1955, + 2217, + 2378, ], - "fromEgg": "Treasure Egg", + "fromEgg": "Sunny Egg", "fromWorldNumber": 1, - "fromZoneNumber": 80, - "goldenThumbnail": "rbxassetid://16043359430", - "maxChance": 0.08991008991008992, - "name": "Knight Cat", + "fromZoneNumber": 27, + "goldenThumbnail": "rbxassetid://14968324478", + "maxChance": 0.9410878976096367, + "name": "Sailor Shark", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16043359236", + "thumbnail": "rbxassetid://14968324575", }, - "configName": "Knight Cat", + "configName": "Sailor Shark", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.604Z", - "hashShort": "56c9984a9178518a", + "dateModified": "2026-06-27T16:05:25.679Z", + "hashShort": "a8f385e99f5ea003", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2746031, + 2104, + 2394, + 2574, ], - "fromEgg": "Hot Air Balloon Egg", + "fromEgg": "Ship Egg", "fromWorldNumber": 1, - "fromZoneNumber": 89, - "goldenThumbnail": "rbxassetid://16043357741", - "maxChance": 0.1998001998001998, - "name": "Popcorn Cat", + "fromZoneNumber": 28, + "goldenThumbnail": "rbxassetid://14968303283", + "maxChance": 0.12620950778291964, + "name": "Pirate Panda", "rarity": { "Announce": false, "Color": null, @@ -91911,231 +95432,260 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16043357636", + "thumbnail": "rbxassetid://14968303410", }, - "configName": "Popcorn Cat", + "configName": "Pirate Panda", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.598Z", - "hashShort": "57ea69440c8aab2c", + "dateModified": "2026-06-27T16:05:25.680Z", + "hashShort": "26dba9c4883c9ac7", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 910851, + 2196, ], - "fromEgg": "Shadow Egg", + "fly": true, + "fromEgg": "Ship Egg", "fromWorldNumber": 1, - "fromZoneNumber": 79, - "goldenThumbnail": "rbxassetid://16043357527", - "maxChance": 0.6993006993006994, - "name": "Queen Slime", + "fromZoneNumber": 28, + "goldenThumbnail": "rbxassetid://14968303556", + "maxChance": 0.02103491796381994, + "name": "Pirate Parrot", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://16043357408", + "thumbnail": "rbxassetid://14968303717", }, - "configName": "Queen Slime", + "configName": "Pirate Parrot", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.604Z", - "hashShort": "67a03961208491e0", + "dateModified": "2025-07-05T23:28:55.993Z", + "hashShort": "425bab95a3c4d1a4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1024707, + 1645, + 1875, + 2022, ], - "fromEgg": "Treasure Egg", + "fromEgg": "Tiki Egg", "fromWorldNumber": 1, - "fromZoneNumber": 80, - "goldenThumbnail": "rbxassetid://16043357021", - "maxChance": 0.6993006993006994, - "name": "Robber Goblin", + "fromZoneNumber": 26, + "goldenThumbnail": "rbxassetid://14968275392", + "maxChance": 0.19603999215840032, + "name": "Luau Seal", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16043356911", + "thumbnail": "rbxassetid://14968275539", }, - "configName": "Robber Goblin", + "configName": "Luau Seal", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.600Z", - "hashShort": "a4ae6913c0e1cae8", + "dateModified": "2026-06-27T16:05:25.686Z", + "hashShort": "89e903be7ca87f55", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976421238", - "huge": true, - "indexDesc": "Reward in the 2024 Achievements Clan Battle!", - "indexObtainable": true, - "name": "Huge Empyrean Axolotl", + "animations": { + "balloon": true, + }, + "cachedPower": [ + 855, + 977, + 1056, + ], + "fromEgg": "Beach Ball Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 20, + "goldenThumbnail": "rbxassetid://14968313633", + "maxChance": 0.0217359802927112, + "name": "Pufferfish", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14976421410", + "thumbnail": "rbxassetid://14968313710", }, - "configName": "Huge Empyrean Axolotl", + "configName": "Pufferfish", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.685Z", - "hashShort": "82cab5d13250066c", + "dateModified": "2026-06-27T16:05:25.687Z", + "hashShort": "da53fa6ad9421451", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://16291099415", - "huge": true, - "indexDesc": "Found in the Exclusive Valentine's Egg!", - "indexObtainable": true, - "name": "Huge Valentine's Cat", + "cachedPower": [ + 1970, + ], + "fromEgg": "Tiki Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 26, + "goldenThumbnail": "rbxassetid://14968354069", + "maxChance": 0.0007836990595611286, + "name": "Tiki Dominus", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://16290990548", + "thumbnail": "rbxassetid://14968354226", }, - "configName": "Huge Valentines Cat", + "configName": "Tiki Dominus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.687Z", - "hashShort": "d8fbc9f11b4f8234", + "dateModified": "2025-07-05T23:28:55.995Z", + "hashShort": "b89891ce24b1f828", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "balloon": true, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://16306792763", - "huge": true, - "indexDesc": "Found in the Exclusive Valentine's Egg!", - "indexObtainable": true, - "name": "Huge Heart Balloon Cat", + "cachedPower": [ + 172, + 215, + 242, + ], + "fromEgg": "Corgi Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 8, + "goldenThumbnail": "rbxassetid://14968271288", + "maxChance": 0.32663316582914576, + "name": "Ladybug", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16306792637", + "thumbnail": "rbxassetid://14968271410", }, - "configName": "Huge Heart Balloon Cat", + "configName": "Ladybug", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.692Z", - "hashShort": "ff33717eda408f24", + "dateModified": "2026-06-27T16:05:25.688Z", + "hashShort": "9f765de52b14ff06", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://16250978273", - "huge": true, - "indexDesc": "Tied to the Huge Plush merch in stores!", - "indexObtainable": true, - "name": "Huge Hot Dog", + "cachedPower": [ + 245, + 292, + 323, + ], + "fly": true, + "fromEgg": "Rock Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 10, + "goldenThumbnail": "rbxassetid://14968237865", + "maxChance": 0.273972602739726, + "name": "Firefly", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16250978135", + "thumbnail": "rbxassetid://14968237983", }, - "configName": "Huge Hot Dog", + "configName": "Firefly", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.695Z", - "hashShort": "2abe8e271352eb66", + "dateModified": "2026-06-27T16:05:25.688Z", + "hashShort": "c4b863d66ebd0ae9", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { + "cachedPower": [ + 524, + 606, + 656, + ], "fly": true, - "goldenThumbnail": "rbxassetid://16251004477", - "huge": true, - "indexDesc": "Tied to the Huge Plush merch in stores!", - "indexObtainable": true, - "name": "Huge Purple Dragon", + "fromEgg": "Crimson Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 16, + "goldenThumbnail": "rbxassetid://14968188646", + "maxChance": 0.5810575246949449, + "name": "Butterfly", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16251004392", + "thumbnail": "rbxassetid://14968189196", }, - "configName": "Huge Purple Dragon", + "configName": "Butterfly", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.691Z", - "hashShort": "019a89bf3f9570c4", + "dateModified": "2026-06-27T16:05:25.689Z", + "hashShort": "854b0527bac5f098", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://16125357265", - "indexDesc": "Comes with the Titanic Corgi plush!", - "indexObtainable": true, - "name": "Titanic Corgi", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968176816", + "name": "Atlantean Orca", "rarity": { "Announce": true, "Color": null, @@ -92148,20 +95698,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16125357082", - "titanic": true, + "thumbnail": "rbxassetid://14968176963", }, - "configName": "Titanic Corgi", + "configName": "Atlantean Orca", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.088Z", - "hashShort": "38eaf18928220256", + "dateModified": "2025-07-05T23:28:55.980Z", + "hashShort": "c659dee0fc823622", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14977487161", - "name": "Titanic Axolotl", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://14968175998", + "indexDesc": "Found in the Exclusive Atlantean Egg!", + "indexObtainable": true, + "name": "Atlantean Dolphin", "rarity": { "Announce": true, "Color": null, @@ -92174,28 +95726,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976585715", - "titanic": true, + "thumbnail": "rbxassetid://14968176121", }, - "configName": "Titanic Axolotl", + "configName": "Atlantean Dolphin", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.247Z", - "hashShort": "7f4a4efedf225e37", + "dateModified": "2025-07-05T23:28:55.986Z", + "hashShort": "059cfedbc7ef6026", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "boneFlyingAnimation": "rbxassetid://16359183141", - "ridingCameraOffset": null, - }, - "fly": true, - "flyingTitanic": true, - "goldenThumbnail": "rbxassetid://16234774701", - "indexDesc": "Comes with the Titanic Love Lamb plush!", - "indexObtainable": true, - "name": "Titanic Love Lamb", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968177109", + "name": "Atlantean Stingray", "rarity": { "Announce": true, "Color": null, @@ -92208,303 +95752,365 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16234774596", - "titanic": true, + "thumbnail": "rbxassetid://14968177273", }, - "configName": "Titanic Love Lamb", + "configName": "Atlantean Stingray", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.246Z", - "hashShort": "6e790cf67eb44961", + "dateModified": "2025-07-05T23:28:56.147Z", + "hashShort": "14bde21ee3843553", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://16234782215", - "indexDesc": "Comes with the Titanic Valentines Cat plush!", - "indexObtainable": true, - "name": "Titanic Valentine's Cat", + "cachedPower": [ + 1396, + 1588, + 1721, + ], + "fromEgg": "Coconut Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 25, + "goldenThumbnail": "rbxassetid://14968240140", + "maxChance": 0.7797270955165692, + "name": "Flower Gecko", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16234782048", - "titanic": true, + "thumbnail": "rbxassetid://14968240285", }, - "configName": "Titanic Valentines Cat", + "configName": "Flower Gecko", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.250Z", - "hashShort": "ca84dd8cb65e0ccb", + "dateModified": "2026-06-27T16:05:25.692Z", + "hashShort": "f797484d669231fd", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://16306754911", - "indexDesc": "Found in the Exclusive Valentine's Egg!", - "indexObtainable": true, - "name": "Titanic Lovemelon", + "cachedPower": [ + 1880, + 2141, + 2301, + ], + "fromEgg": "Sand Bucket Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 26, + "goldenThumbnail": "rbxassetid://14968238086", + "maxChance": 0.18325233049159428, + "name": "Fish in a Bucket", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16306754796", - "titanic": true, + "thumbnail": "rbxassetid://14968238185", }, - "configName": "Titanic Lovemelon", + "configName": "Fish in a Bucket", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.248Z", - "hashShort": "f250385d0de3b97d", + "dateModified": "2026-06-27T16:05:25.691Z", + "hashShort": "3f9ad25623a36e94", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968357274", - "name": "Valentine's Cat", + "cachedPower": [ + 1764, + 2004, + 2165, + ], + "fromEgg": "Sunny Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 27, + "goldenThumbnail": "rbxassetid://14968355435", + "maxChance": 0.7967492630069317, + "name": "Turtle in a Bucket", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968357373", + "thumbnail": "rbxassetid://14968355544", }, - "configName": "Valentines Cat", + "configName": "Turtle in a Bucket", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.134Z", - "hashShort": "3893c8ba52b95c73", + "dateModified": "2026-06-27T16:05:25.694Z", + "hashShort": "763ebfc9cac8cd18", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968202287", - "name": "Cupid Corgi", + "animations": { + "spinZ": true, + }, + "cachedPower": [ + 12118516, + 13439012, + 14084802, + ], + "fly": true, + "fromEgg": "Rainbow Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 99, + "goldenThumbnail": "rbxassetid://14968348019", + "maxChance": 3.995922560619145e-7, + "name": "Sun Angelus", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://14968202482", + "thumbnail": "rbxassetid://14968348199", }, - "configName": "Cupid Corgi", + "configName": "Sun Angelus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.303Z", - "hashShort": "34a711be1db8167e", + "dateModified": "2026-06-27T16:05:28.060Z", + "hashShort": "f3fa138ae9a2745e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "balloon": true, - }, - "exclusiveLevel": 3, + "cachedPower": [ + 68, + 109, + 133, + ], "fly": true, - "goldenThumbnail": "rbxassetid://16306672226", - "name": "Heart Balloon Cat", + "fromEgg": "Hive Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 5, + "goldenThumbnail": "rbxassetid://14968181144", + "maxChance": 0.6349206349206349, + "name": "Bee", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16306670734", + "thumbnail": "rbxassetid://14968181287", }, - "configName": "Heart Balloon Cat", + "configName": "Bee", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.749Z", - "hashShort": "bfd7ec0e36352d61", + "dateModified": "2026-06-27T16:05:28.053Z", + "hashShort": "e88c3930b882c058", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976369867", - "huge": true, - "indexDesc": "Found in the Huge Machine Blurred Dominus Egg!", - "indexObtainable": true, - "name": "Huge Blurred Dominus", + "cachedPower": [ + 105, + 147, + 173, + ], + "fromEgg": "Acorn Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 6, + "goldenThumbnail": "rbxassetid://14968274225", + "maxChance": 0.03508771929824561, + "name": "Llama", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14976370033", + "thumbnail": "rbxassetid://14968274443", }, - "configName": "Huge Blurred Dominus", + "configName": "Llama", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.559Z", - "hashShort": "c8cda7e619e46b17", + "dateModified": "2026-06-27T16:05:28.069Z", + "hashShort": "9ff520d6eaec1a68", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://16498746040", - "huge": true, - "indexDesc": "Found in the Huge Machine Blurred Dominus Egg!", - "indexObtainable": true, - "name": "Huge Pastel Elephant", + "cachedPower": [ + 1156, + 1322, + 1427, + ], + "fromEgg": "Atlantis Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 23, + "goldenThumbnail": "rbxassetid://14968343939", + "maxChance": 0.1953125, + "name": "Stingray", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16498745846", + "thumbnail": "rbxassetid://14968344086", }, - "configName": "Huge Pastel Elephant", + "configName": "Stingray", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.552Z", - "hashShort": "c1d9edfbf65c6cc3", + "dateModified": "2026-06-27T16:05:28.055Z", + "hashShort": "6ef422ae2e8f6b86", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976532871", - "huge": true, - "indexDesc": "Found in the Huge Machine Blurred Dominus Egg!", - "indexObtainable": true, - "name": "Huge Red Fluffy", + "cachedPower": [ + 725, + 834, + 902, + ], + "fromEgg": "Jungle Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 18, + "goldenThumbnail": "rbxassetid://14968264925", + "maxChance": 0.22535211267605634, + "name": "Jaguar", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14976533036", + "thumbnail": "rbxassetid://14968265120", }, - "configName": "Huge Red Fluffy", + "configName": "Jaguar", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.559Z", - "hashShort": "268be830768552f5", + "dateModified": "2026-06-27T16:05:28.059Z", + "hashShort": "d176f39fd855ad06", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976579094", - "huge": true, - "indexDesc": "Found in the Huge Machine Blurred Dominus Egg!", - "indexObtainable": true, - "name": "Huge Willow Wisp", + "cachedPower": [ + 382, + 445, + 486, + ], + "fromEgg": "Spike Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 13, + "goldenThumbnail": "rbxassetid://14968252723", + "maxChance": 0.39750141964792735, + "name": "Guilded Raven", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14976579205", + "thumbnail": "rbxassetid://14968252788", }, - "configName": "Huge Willow Wisp", + "configName": "Guilded Raven", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.556Z", - "hashShort": "f86b958012598d45", + "dateModified": "2026-06-27T16:05:28.064Z", + "hashShort": "6bb24237b1deec69", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976360354", - "huge": true, - "indexDesc": "Found in the Huge Machine Blurred Dominus Egg!", - "indexObtainable": true, - "name": "Huge Bat", + "cachedPower": [ + 244, + 291, + 321, + ], + "fromEgg": "Dragon Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 10, + "goldenThumbnail": "rbxassetid://14968306457", + "maxChance": 0.684931506849315, + "name": "Platypus", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14976360459", + "thumbnail": "rbxassetid://14968306539", }, - "configName": "Huge Bat", + "configName": "Platypus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.557Z", - "hashShort": "07eedcfaf3b01649", + "dateModified": "2026-06-27T16:05:28.054Z", + "hashShort": "2dc768ef899cdeae", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976419386", - "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", - "indexObtainable": true, - "name": "Huge Elephant", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968334567", + "name": "Sock Cat", "rarity": { "Announce": true, "Color": null, @@ -92517,107 +96123,123 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976419563", + "thumbnail": "rbxassetid://14968334672", }, - "configName": "Huge Elephant", + "configName": "Sock Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.543Z", - "hashShort": "04eacd4127b18cb7", + "dateModified": "2025-07-05T23:28:56.158Z", + "hashShort": "095ab078e3d4836d", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://16179890776", - "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", - "indexObtainable": true, - "name": "Huge Koi Fish", + "cachedPower": [ + 538861, + 595722, + 635372, + ], + "fromEgg": "Witch Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 74, + "goldenThumbnail": "rbxassetid://15260343719", + "maxChance": 0.0009989806401547862, + "name": "Witch Cat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://16179890678", + "thumbnail": "rbxassetid://15260351079", }, - "configName": "Huge Koi Fish", + "configName": "Witch Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.552Z", - "hashShort": "e7ffca742a0e99c8", + "dateModified": "2026-06-27T16:05:28.075Z", + "hashShort": "9b7c74858a8507c3", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976362543", - "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", - "indexObtainable": true, - "name": "Huge Bee", + "cachedPower": [ + 590, + 681, + 736, + ], + "fromEgg": "Overgrown Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 17, + "goldenThumbnail": "rbxassetid://14968187069", + "maxChance": 0.5012531328320802, + "name": "Bobcat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14976362778", + "thumbnail": "rbxassetid://14968187219", }, - "configName": "Huge Bee", + "configName": "Bobcat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.535Z", - "hashShort": "a20e452b193020e3", + "dateModified": "2026-06-27T16:05:28.086Z", + "hashShort": "b0083206289a5c2e", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://16410740693", - "huge": true, - "indexDesc": "Found in Secret Rooms!", - "indexObtainable": true, - "name": "Huge Lumi Axolotl", + "cachedPower": [ + 1, + 6, + 13, + ], + "fromEgg": "Cracked Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 1, + "goldenThumbnail": "rbxassetid://14968190880", + "maxChance": 0.25, + "name": "Cat", + "power": 1, "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16410740491", + "thumbnail": "rbxassetid://14968191202", }, - "configName": "Huge Lumi Axolotl", + "configName": "Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.702Z", - "hashShort": "f30b0b6f08210af1", + "dateModified": "2026-06-27T16:05:25.674Z", + "hashShort": "7fc7a2a11ca7fc48", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://16410753812", - "huge": true, - "indexDesc": "Found inside minigame!", - "indexObtainable": true, - "name": "Huge Colorful Wisp", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968196327", + "name": "Clout Cat", "rarity": { "Announce": true, "Color": null, @@ -92630,50 +96252,54 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16410753529", + "thumbnail": "rbxassetid://14968196480", }, - "configName": "Huge Colorful Wisp", + "configName": "Clout Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.701Z", - "hashShort": "079b461b8c3b571b", + "dateModified": "2025-07-05T23:28:56.154Z", + "hashShort": "85e817673956a817", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976496147", - "huge": true, - "indexDesc": "Reward in the 2024 Raid Clan Battle!", - "indexObtainable": true, - "name": "Huge Mystical Fox", + "cachedPower": [ + 2629177, + 2913956, + 3057649, + ], + "fromEgg": "Carnival Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 88, + "goldenThumbnail": "rbxassetid://14968197614", + "maxChance": 0.6993006993006994, + "name": "Clown Cat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14976496299", + "thumbnail": "rbxassetid://14968197693", }, - "configName": "Huge Mystical Fox", + "configName": "Clown Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.696Z", - "hashShort": "a4062ccce0818019", + "dateModified": "2026-06-27T16:05:28.074Z", + "hashShort": "56881a612fe13392", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://16472007123", - "huge": true, - "indexDesc": "Earned from the limited-time Huge Spinny Wheel!", - "indexObtainable": true, - "name": "Huge Hi-Tech Tiger", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968198354", + "name": "Cool Cat", "rarity": { "Announce": true, "Color": null, @@ -92686,23 +96312,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16472006999", + "thumbnail": "rbxassetid://14968198436", }, - "configName": "Huge Hi-Tech Tiger", + "configName": "Cool Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.700Z", - "hashShort": "eebcd08151ebc9af", + "dateModified": "2025-07-05T23:28:56.148Z", + "hashShort": "2c2c65e75afccca4", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://16472013505", - "huge": true, - "indexDesc": "Earned from the limited-time Happy Computer Event!", - "indexObtainable": true, - "name": "Huge Happy Computer", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968199510", + "name": "Yee-haw Cat", "rarity": { "Announce": true, "Color": null, @@ -92715,161 +96338,88 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16472013395", + "thumbnail": "rbxassetid://14968199662", }, - "configName": "Huge Happy Computer", + "configName": "Yee-haw Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.684Z", - "hashShort": "3a7a257e237bdf12", + "dateModified": "2025-07-05T23:28:56.138Z", + "hashShort": "5dd4ef542c94c547", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.3, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.7, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.3, - }, - "goldenThumbnail": "rbxassetid://16471981376", - "huge": true, - "indexDesc": "Earned from the Tech Spinny Wheel!", - "indexObtainable": true, - "name": "Huge Abyssal Axolotl", + "cachedPower": [ + 296, + 349, + 383, + ], + "fromEgg": "Geode Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 11, + "goldenThumbnail": "rbxassetid://14968206548", + "maxChance": 0.35539760106619284, + "name": "Demolition Cat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16471981261", + "thumbnail": "rbxassetid://14968206706", }, - "configName": "Huge Abyssal Axolotl", + "configName": "Demolition Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.708Z", - "hashShort": "063c2022122bab6e", + "dateModified": "2026-06-27T16:05:28.061Z", + "hashShort": "9ff81960d5c05231", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://16472011745", - "huge": true, - "indexDesc": "Earned from the Tech Chest!", - "indexObtainable": true, - "name": "Huge Cyber Agony", + "cachedPower": [ + 3169, + 3585, + 3849, + ], + "fromEgg": "Sandstone Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 32, + "goldenThumbnail": "rbxassetid://14968207121", + "maxChance": 0.8404244143292362, + "name": "Desert Cat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16472011675", + "thumbnail": "rbxassetid://14968207221", }, - "configName": "Huge Cyber Agony", + "configName": "Desert Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.688Z", - "hashShort": "2152790f81bb0f04", + "dateModified": "2026-06-27T16:05:28.082Z", + "hashShort": "07ea71dfa5803f70", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "jelly": true, - "replacementPool": [ - [ - 1, - 0.5, - ], - [ - 2, - 0.2, - ], - [ - 3, - 0.15, - ], - [ - 4, - 0.1, - ], - [ - 5, - 0.05, - ], - ], - "replacements": [ - { - "desc": "Comes with a Lootbag inside! (50%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with a Enchant Book inside! (20%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with a Crystal Chest inside! (15%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with a Present inside! (10%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with a Pinata inside! (5%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - ], - }, - "goldenThumbnail": "rbxassetid://16483328226", - "huge": true, - "indexDesc": "Found in the Exclusive Super Jelly Egg!", - "indexObtainable": true, - "name": "Huge Jelly Axolotl", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://14968207729", + "name": "Diamond Cat", "rarity": { "Announce": true, "Color": null, @@ -92882,134 +96432,87 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16483328135", + "thumbnail": "rbxassetid://14968207912", }, - "configName": "Huge Jelly Axolotl", + "configName": "Diamond Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.683Z", - "hashShort": "837136343361b597", + "dateModified": "2025-07-05T23:28:56.150Z", + "hashShort": "0a3cc86b65538be0", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "jelly": true, - "replacementPool": [ - [ - 1, - 0.5, - ], - [ - 2, - 0.2, - ], - [ - 3, - 0.15, - ], - [ - 4, - 0.1, - ], - [ - 5, - 0.05, - ], - ], - "replacements": [ - { - "desc": "Comes with a Lootbag inside! (50%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with a Enchant Book inside! (20%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with a Crystal Chest inside! (15%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with a Present inside! (10%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with a Pinata inside! (5%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - ], - }, - "goldenThumbnail": "rbxassetid://16495814288", - "huge": true, - "indexDesc": "Found in the Exclusive Super Jelly Egg!", - "indexObtainable": true, - "name": "Huge Jelly Monkey", + "cachedPower": [ + 3824, + ], + "fromEgg": "Egyptian Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 31, + "goldenThumbnail": "rbxassetid://14968208254", + "maxChance": 0.00000830557885731846, + "name": "Dino Cat", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://16495814071", + "thumbnail": "rbxassetid://14968208485", }, - "configName": "Huge Jelly Monkey", + "configName": "Dino Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.702Z", - "hashShort": "12a6bb79410155ef", + "dateModified": "2025-07-05T23:28:56.145Z", + "hashShort": "83034adb7da78c0d", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://16468736159", - "huge": true, - "indexDesc": "Found in Chest Raid minigame!", - "indexObtainable": true, - "name": "Huge Glitched Cat", + "cachedPower": [ + 442, + 514, + 559, + ], + "fromEgg": "Spirit Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 15, + "goldenThumbnail": "rbxassetid://14968231342", + "maxChance": 0.2840909090909091, + "name": "Enchanted Cat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16468736057", + "thumbnail": "rbxassetid://14968231444", }, - "configName": "Huge Glitched Cat", + "configName": "Enchanted Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.705Z", - "hashShort": "ca219f77569d8969", + "dateModified": "2026-06-27T16:05:28.092Z", + "hashShort": "e230f4749aaf7b08", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://16393812985", - "indexDesc": "Comes with the Titanic Kawaii Cat plush!", - "indexObtainable": true, - "name": "Titanic Kawaii Cat", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://14976332148", + "hideSerial": true, + "name": "Exquisite Cat", "rarity": { "Announce": true, "Color": null, @@ -93022,152 +96525,96 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16393812743", - "titanic": true, + "thumbnail": "rbxassetid://14968233437", }, - "configName": "Titanic Kawaii Cat", + "configName": "Exquisite Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.239Z", - "hashShort": "e06bac21a5b0fc90", + "dateModified": "2025-07-05T23:28:56.160Z", + "hashShort": "4e628137419c5ffe", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://16393819369", - "indexDesc": "Comes with the Titanic Bread Shiba plush!", - "indexObtainable": true, - "name": "Titanic Bread Shiba", + "cachedPower": [ + 16719, + 18746, + 20037, + ], + "fromEgg": "Bone Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 46, + "goldenThumbnail": "rbxassetid://14968236867", + "maxChance": 0.6428801028608164, + "name": "Fire Cat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16393819211", - "titanic": true, + "thumbnail": "rbxassetid://14968236938", }, - "configName": "Titanic Bread Shiba", + "configName": "Fire Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.240Z", - "hashShort": "89f6dfa8511a7cab", + "dateModified": "2026-06-27T16:05:28.089Z", + "hashShort": "909cf1ae98a8a9a1", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "jelly": true, - "replacementPool": [ - [ - 1, - 0.5, - ], - [ - 2, - 0.2, - ], - [ - 3, - 0.15, - ], - [ - 4, - 0.1, - ], - [ - 5, - 0.04, - ], - [ - 6, - 0.01, - ], - ], - "replacements": [ - { - "desc": "Comes with a Lootbag inside! (50%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with a Enchant Book inside! (20%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with a Crystal Chest inside! (15%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with a Present inside! (10%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with a Pinata inside! (4%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - { - "desc": "Comes with Preston inside! (1%)", - "dst": null, - "isUnique": true, - "title": "Jelly", - }, - ], - }, - "fly": true, - "flyingTitanic": true, - "goldenThumbnail": "rbxassetid://16483351499", - "indexDesc": "Found in the Exclusive Super Jelly Egg!", - "indexObtainable": true, - "name": "Titanic Jelly Dragon", + "cachedPower": [ + 61846, + 69145, + 74028, + ], + "fromEgg": "Crowned Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 57, + "goldenThumbnail": "rbxassetid://14968240534", + "maxChance": 0.4699765011749413, + "name": "Fluffy Cat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16483343520", - "titanic": true, + "thumbnail": "rbxassetid://14968240656", }, - "configName": "Titanic Jelly Dragon", + "configName": "Fluffy Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.248Z", - "hashShort": "2154bbd660d30a7e", + "dateModified": "2026-06-27T16:05:28.093Z", + "hashShort": "fd901fab204ff229", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 12959690, + 44500, + 49792, + 53441, ], - "fromEgg": "Tech City Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 101, - "goldenThumbnail": "rbxassetid://14968205242", - "maxChance": 0.08991008991008992, - "name": "Cyborg Ducky", + "fromEgg": "Garden Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 54, + "goldenThumbnail": "rbxassetid://14968244157", + "maxChance": 0.2, + "name": "Garden Cat", "rarity": { "Announce": false, "Color": null, @@ -93180,187 +96627,160 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968205362", + "thumbnail": "rbxassetid://14968244437", }, - "configName": "Cyborg Ducky", + "configName": "Garden Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.621Z", - "hashShort": "bfec2837c60f0920", + "dateModified": "2026-06-27T16:05:28.059Z", + "hashShort": "e8f6b1db014b845d", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 23240443, + 668152, + 739547, + 791727, ], - "fromEgg": "Tech Cuboid Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 105, - "goldenThumbnail": "rbxassetid://14968202776", - "maxChance": 0.000009999900000999989, - "name": "Cyber Fox", + "fromEgg": "Cursed Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 77, + "goldenThumbnail": "rbxassetid://14968245583", + "maxChance": 0.1998001998001998, + "name": "Ghost Cat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968202915", + "thumbnail": "rbxassetid://14968245724", }, - "configName": "Cyber Fox", + "configName": "Ghost Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.919Z", - "hashShort": "d2eac81bdbcd1253", + "dateModified": "2026-06-27T16:05:28.075Z", + "hashShort": "dfed13d6568d263a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 26145499, + 418, + 484, + 528, ], - "fromEgg": "Tech Sprout Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 106, - "goldenThumbnail": "rbxassetid://14968202610", - "maxChance": 0.000009999900000999989, - "name": "Cyber Bunny", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "thumbnail": "rbxassetid://14968202676", + "fromWorldNumber": 1, + "goldenThumbnail": "rbxassetid://14968246334", + "hidden": false, + "name": "Gingerbread Cat", + "thumbnail": "rbxassetid://14968246488", }, - "configName": "Cyber Bunny", + "configName": "Gingerbread Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.929Z", - "hashShort": "4f5067f77687e554", + "dateModified": "2026-06-27T16:05:28.073Z", + "hashShort": "ba7c2b74f9e42c7f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 29413686, - ], - "fromEgg": "Tech Tree Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 107, - "goldenThumbnail": "rbxassetid://14968203102", - "maxChance": 0.000009999900000999989, - "name": "Cyber Raccoon", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968251748", + "name": "Grinch Cat", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968203400", + "thumbnail": "rbxassetid://14968251919", }, - "configName": "Cyber Raccoon", + "configName": "Grinch Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.931Z", - "hashShort": "7717b4809097b9f2", + "dateModified": "2025-07-05T23:28:56.159Z", + "hashShort": "aaa3eac9e287ce93", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 230283337, - ], - "fly": true, - "fromEgg": "Tech Flurry Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 124, - "goldenThumbnail": "rbxassetid://15260349060", - "maxChance": 3.995922560619145e-7, - "name": "M-6 PROTOTYPE", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968252063", + "name": "Grumpy Cat", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://15260348918", + "thumbnail": "rbxassetid://14968252224", }, - "configName": "M-6 PROTOTYPE", + "configName": "Grumpy Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.933Z", - "hashShort": "46238295f3e2ffc9", + "dateModified": "2025-07-05T23:28:56.156Z", + "hashShort": "df2c70b4fee0ed47", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 9494765, - ], - "fromEgg": "Tech Ciruit Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 100, - "goldenThumbnail": "rbxassetid://14968204190", - "maxChance": 0.9, - "name": "Cyborg Cat", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://14968264352", + "name": "Inferno Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968204327", + "thumbnail": "rbxassetid://14968264482", }, - "configName": "Cyborg Cat", + "configName": "Inferno Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.138Z", - "hashShort": "b41adc8fbf44e202", + "dateModified": "2025-07-05T23:28:56.155Z", + "hashShort": "31eb2b885776be44", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 10197468, + 2234, + 2533, + 2732, ], - "fromEgg": "Tech Ciruit Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 100, - "goldenThumbnail": "rbxassetid://14968204443", - "maxChance": 0.1, - "name": "Cyborg Dog", + "fromEgg": "Ship Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 28, + "goldenThumbnail": "rbxassetid://14968169351", + "maxChance": 0.06607073455110765, + "name": "African Wild Dog", "rarity": { "Announce": false, "Color": null, @@ -93373,53 +96793,58 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968204634", + "thumbnail": "rbxassetid://14968169510", }, - "configName": "Cyborg Dog", + "configName": "African Wild Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.297Z", - "hashShort": "312c4386a9544c91", + "dateModified": "2026-06-27T16:05:28.088Z", + "hashShort": "2ffa8014cf2bde51", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "jelly": true, - }, - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://16483033972", - "name": "Jelly Shiba", + "cachedPower": [ + 5996357, + 6637538, + 6952118, + ], + "fly": true, + "fromEgg": "Angel Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 95, + "goldenThumbnail": "rbxassetid://14968171537", + "maxChance": 0.6993006993006994, + "name": "Angel Dog", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16495773748", + "thumbnail": "rbxassetid://14968171653", }, - "configName": "Jelly Shiba", + "configName": "Angel Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.583Z", - "hashShort": "23cf0cf1ec4cf761", + "dateModified": "2026-06-27T16:05:28.073Z", + "hashShort": "8d7d555519f3557b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "animations": { - "jelly": true, + "hybridFly": true, }, - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "rbxassetid://16483034554", - "name": "Jelly Monkey", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968172702", + "name": "Anime Corgi", "rarity": { "Announce": true, "Color": null, @@ -93432,23 +96857,24 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16495773922", + "thumbnail": "rbxassetid://14968172812", }, - "configName": "Jelly Monkey", + "configName": "Anime Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.743Z", - "hashShort": "ac2f3063a30262e1", + "dateModified": "2025-07-05T23:28:56.152Z", + "hashShort": "9c7d16cbd01a6b82", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "animations": { - "jelly": true, + "balloon": true, }, - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://16483035084", - "name": "Jelly Axolotl", + "exclusiveLevel": 2, + "fly": true, + "goldenThumbnail": "rbxassetid://14968178812", + "name": "Balloon Corgi", "rarity": { "Announce": true, "Color": null, @@ -93461,26 +96887,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16483035003", + "thumbnail": "rbxassetid://14968178899", }, - "configName": "Jelly Axolotl", + "configName": "Balloon Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.756Z", - "hashShort": "6164bf45b52f2abc", + "dateModified": "2025-07-05T23:28:56.137Z", + "hashShort": "c94f31497a32371b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 13675877, + 1704778, + 1883177, + 2006433, ], - "fromEgg": "Tech Forest Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 102, - "goldenThumbnail": "rbxassetid://16471609761", - "maxChance": 0.8991008991008992, - "name": "Cyborg Squirrel", + "fromEgg": "Ice Cream Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 85, + "goldenThumbnail": "rbxassetid://14968194661", + "maxChance": 0.24975024975024976, + "name": "Chocolate Dog", "rarity": { "Announce": false, "Color": null, @@ -93493,156 +96921,151 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16471609663", + "thumbnail": "rbxassetid://14968194774", }, - "configName": "Cyborg Squirrel", + "configName": "Chocolate Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.755Z", - "hashShort": "aacb495d08e01f49", + "dateModified": "2026-06-27T16:05:28.087Z", + "hashShort": "1b6c0d3239fbcb92", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 12156335, - ], - "fromEgg": "Tech City Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 101, - "goldenThumbnail": "rbxassetid://16471610134", - "maxChance": 0.8991008991008992, - "name": "Cyborg Corgi", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968198512", + "name": "Cool Corgi", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16471610090", + "thumbnail": "rbxassetid://14968198599", }, - "configName": "Cyborg Corgi", + "configName": "Cool Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.741Z", - "hashShort": "a35acadffce45c35", + "dateModified": "2025-07-05T23:28:56.295Z", + "hashShort": "8ab76acc5c6838de", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 14579652, + 1, + 6, + 13, ], - "fly": true, - "fromEgg": "Tech Forest Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 102, - "goldenThumbnail": "rbxassetid://16471610265", - "maxChance": 0.08991008991008992, - "name": "Cyborg Bat", + "fromEgg": "Cracked Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 1, + "goldenThumbnail": "rbxassetid://14968198987", + "maxChance": 0.25, + "name": "Corgi", + "power": 1, "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16471610188", + "thumbnail": "rbxassetid://14968199094", }, - "configName": "Cyborg Bat", + "configName": "Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.753Z", - "hashShort": "2b42bebf64ac5fc4", + "dateModified": "2026-06-27T16:05:28.090Z", + "hashShort": "02813b4b3fde45eb", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 18077368, + 4493, + 5070, + 5421, ], - "fromEgg": "Tech Cuboid Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 105, - "goldenThumbnail": "rbxassetid://16471610401", - "maxChance": 0.1999980000199998, - "name": "Cyber Slime", + "fromEgg": "Canyon Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 34, + "goldenThumbnail": "rbxassetid://14968361944", + "maxChance": 0.01511969760604788, + "name": "Yee-haw Dog", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://16471610337", + "thumbnail": "rbxassetid://14968362070", }, - "configName": "Cyber Slime", + "configName": "Cowboy Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.746Z", - "hashShort": "50de4a4d9ff1837f", + "dateModified": "2026-06-27T16:05:28.091Z", + "hashShort": "89c33d3316490ab5", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 16402108, - ], - "fromEgg": "Tech Silo Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 103, - "goldenThumbnail": "rbxassetid://16471610031", - "maxChance": 0.08991008991008992, - "name": "Cyborg Cow", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968201278", + "hideSerial": true, + "name": "Crystal Dog", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16471609970", + "thumbnail": "rbxassetid://14968201434", }, - "configName": "Cyborg Cow", + "configName": "Crystal Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.748Z", - "hashShort": "02d12da52bbfe32d", + "dateModified": "2025-07-05T23:28:56.302Z", + "hashShort": "8f2b753379d58b64", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 21905499, + 1, + 6, + 13, ], - "fly": true, - "fromEgg": "Tech Sprout Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 106, - "goldenThumbnail": "rbxassetid://16471611406", - "maxChance": 0.989990100098999, - "name": "Cyber Agony", + "fromEgg": "Cracked Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 1, + "goldenThumbnail": "rbxassetid://14968209024", + "maxChance": 0.25, + "name": "Dog", + "power": 1, "rarity": { "Announce": false, "Color": null, @@ -93655,58 +97078,54 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16471976747", + "thumbnail": "rbxassetid://14968209124", }, - "configName": "Cyber Agony", + "configName": "Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.745Z", - "hashShort": "34705a4357afd23c", + "dateModified": "2026-06-27T16:05:28.094Z", + "hashShort": "994c7dc8f53755ea", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 17308531, - ], - "fromEgg": "Tech Data Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 104, - "goldenThumbnail": "rbxassetid://16498330541", - "maxChance": 0.6999930000699993, - "name": "Cyber Axolotl", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968209211", + "name": "Doge", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16471611168", + "thumbnail": "rbxassetid://14968209297", }, - "configName": "Cyber Axolotl", + "configName": "Doge", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.750Z", - "hashShort": "7cade9d7e42e9744", + "dateModified": "2025-07-05T23:28:56.288Z", + "hashShort": "8e2388a1435470d3", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 24643687, + 17131, + 19197, + 20672, ], - "fromEgg": "Tech Tree Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 107, - "goldenThumbnail": "rbxassetid://16471611066", - "maxChance": 0.989010989010989, - "name": "Cyber Bear", + "fromEgg": "Bone Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 46, + "goldenThumbnail": "rbxassetid://14968237034", + "maxChance": 0.3214400514304082, + "name": "Fire Dog", "rarity": { "Announce": false, "Color": null, @@ -93719,27 +97138,49 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16471610938", + "thumbnail": "rbxassetid://14968237194", }, - "configName": "Cyber Bear", + "configName": "Fire Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.749Z", - "hashShort": "42f63f56c32f48f9", + "dateModified": "2026-06-27T16:05:28.102Z", + "hashShort": "603e9795c9140141", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 19471555, + 418, + 484, + 528, + ], + "fromWorldNumber": 1, + "goldenThumbnail": "rbxassetid://14968246720", + "hidden": false, + "name": "Gingerbread Corgi", + "thumbnail": "rbxassetid://14968246820", + }, + "configName": "Gingerbread Corgi", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:28.096Z", + "hashShort": "4eb83a5914515292", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 2957824, + 3277576, + 3438251, ], "fly": true, - "fromEgg": "Tech Cuboid Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 105, - "goldenThumbnail": "rbxassetid://16471610795", - "maxChance": 0.989990100098999, - "name": "Cyber Dragon", + "fromEgg": "Hot Air Balloon Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 89, + "goldenThumbnail": "rbxassetid://14968259968", + "maxChance": 0.8991008991008992, + "name": "Hot Air Balloon Dog", "rarity": { "Announce": false, "Color": null, @@ -93752,26 +97193,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16471610692", + "thumbnail": "rbxassetid://14968260184", }, - "configName": "Cyber Dragon", + "configName": "Hot Air Balloon Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.756Z", - "hashShort": "3a886f98f5bec48e", + "dateModified": "2026-06-27T16:05:28.114Z", + "hashShort": "a42e37c062c9d5aa", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 18452371, + 2802927, + 3082958, + 3287486, ], - "fromEgg": "Tech Data Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 104, - "goldenThumbnail": "rbxassetid://16471610556", - "maxChance": 0.08999910000899991, - "name": "Cyber Ducky", + "fromEgg": "Carnival Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 88, + "goldenThumbnail": "rbxassetid://14968260319", + "maxChance": 0.08991008991008992, + "name": "Hot Dog", "rarity": { "Announce": false, "Color": null, @@ -93784,154 +97227,144 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16471610472", + "thumbnail": "rbxassetid://14968260460", }, - "configName": "Cyber Ducky", + "configName": "Hot Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.760Z", - "hashShort": "aae2a48cc40c60c2", + "dateModified": "2026-06-27T16:05:28.101Z", + "hashShort": "110a5e8935617b79", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 15385361, - ], - "fromEgg": "Tech Silo Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 103, - "goldenThumbnail": "rbxassetid://16471609911", - "maxChance": 0.8991008991008992, - "name": "Cyborg Piggy", + "animations": { + "jelly": true, + }, + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968266009", + "name": "Jelly Corgi", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16471609845", + "thumbnail": "rbxassetid://14968266152", }, - "configName": "Cyborg Piggy", + "configName": "Jelly Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.760Z", - "hashShort": "ce7a1591ace5f04f", + "dateModified": "2025-07-05T23:28:56.294Z", + "hashShort": "e564d2136d596e5d", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 85316883, + 253, + 301, + 333, ], - "fromEgg": "Tech Luminati Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 117, - "goldenThumbnail": "rbxassetid://16471601398", - "maxChance": 0.08991008991008992, - "name": "Tech Sphinx", + "fromEgg": "Geode Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 11, + "goldenThumbnail": "rbxassetid://14968280835", + "maxChance": 0.7102272727272727, + "name": "Mining Dog", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16471601286", + "thumbnail": "rbxassetid://14968281023", }, - "configName": "Tech Sphinx", + "configName": "Mining Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.753Z", - "hashShort": "1f7d8fe063f84de3", + "dateModified": "2026-06-27T16:05:28.105Z", + "hashShort": "fcb6a5caa03dda8c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 80028193, - ], - "fromEgg": "Tech Luminati Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 117, - "goldenThumbnail": "rbxassetid://16471601561", - "maxChance": 0.8991008991008992, - "name": "Tech Scorpion", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968283236", + "hideSerial": true, + "name": "Mosaic Corgi", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16471601490", + "thumbnail": "rbxassetid://14968283350", }, - "configName": "Tech Scorpion", + "configName": "Mosaic Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.748Z", - "hashShort": "1760f5cb736c64a6", + "dateModified": "2025-07-05T23:28:56.307Z", + "hashShort": "54dd029418318eb9", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 75837230, - ], - "fromEgg": "Tech Dusty Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 116, - "goldenThumbnail": "rbxassetid://16471601761", - "maxChance": 0.08991008991008992, - "name": "Tech Puma", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968286984", + "name": "Neon Dog", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16471601645", + "thumbnail": "rbxassetid://14968287106", }, - "configName": "Tech Puma", + "configName": "Neon Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.758Z", - "hashShort": "cc7f836b3b26edcb", + "dateModified": "2025-07-05T23:28:56.289Z", + "hashShort": "fdbf6936d87e8ae3", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 90031717, + 2337046, + 2590688, + 2719203, ], - "fromEgg": "Tech Cactus Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 118, - "goldenThumbnail": "rbxassetid://16471601941", - "maxChance": 0.8991008991008992, - "name": "Tech Horse", + "fromEgg": "Toy Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 87, + "goldenThumbnail": "rbxassetid://14968299714", + "maxChance": 0.4995004995004995, + "name": "Pastel Sock Corgi", "rarity": { "Announce": false, "Color": null, @@ -93944,83 +97377,60 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16471601862", + "thumbnail": "rbxassetid://14968299814", }, - "configName": "Tech Horse", + "configName": "Pastel Sock Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.756Z", - "hashShort": "6e71ab2984b0fd9a", + "dateModified": "2026-06-27T16:05:43.884Z", + "hashShort": "308e3672d15ffacb", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 95981494, + 1376, + 1565, + 1686, ], - "fromEgg": "Tech Cactus Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 118, - "goldenThumbnail": "rbxassetid://16471603218", - "maxChance": 0.08991008991008992, - "name": "Tech Bull", + "fromEgg": "Tropical Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 24, + "goldenThumbnail": "rbxassetid://14968309163", + "maxChance": 0.01818181818181818, + "name": "Poseidon Corgi", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://16471603112", + "thumbnail": "rbxassetid://14968309285", }, - "configName": "Tech Bull", + "configName": "Poseidon Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.758Z", - "hashShort": "6347f741ee846414", + "dateModified": "2026-06-27T16:05:28.107Z", + "hashShort": "c9d422a9f72048ae", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.3, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.7, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.3, - }, "cachedPower": [ - 44409961, + 1291, ], - "fromEgg": "Tech Palm Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 112, - "goldenThumbnail": "rbxassetid://16471612509", - "maxChance": 0.8991008991008992, - "name": "Abyssal Axolotl", + "fromEgg": "Tropical Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 24, + "goldenThumbnail": "rbxassetid://14968309379", + "maxChance": 0.2545454545454545, + "name": "Poseidon Dog", "rarity": { "Announce": false, "Color": null, @@ -94033,59 +97443,84 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16471612420", + "thumbnail": "rbxassetid://14976332368", }, - "configName": "Abyssal Axolotl", + "configName": "Poseidon Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.748Z", - "hashShort": "f2034a438e324284", + "dateModified": "2025-07-05T23:28:56.298Z", + "hashShort": "1d650312c7d71463", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "christmasLights": true, + }, "cachedPower": [ - 27724920, + 1373, ], - "fly": true, - "fromEgg": "Tech Incubator Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 108, - "goldenThumbnail": "rbxassetid://16471605210", - "maxChance": 0.8991008991008992, - "name": "Hi-Tech Bee", + "fromWorldNumber": 1, + "goldenThumbnail": "rbxassetid://15260345801", + "hidden": false, + "name": "Reindeer Corgi", + "thumbnail": "rbxassetid://15260345651", + }, + "configName": "Reindeer Corgi", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:56.304Z", + "hashShort": "4144d1647f2098a9", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1749, + 1986, + 2138, + ], + "fromEgg": "Sand Bucket Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 26, + "goldenThumbnail": "rbxassetid://14968326049", + "maxChance": 0.19592476489028213, + "name": "Sandcastle Dog", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16471605103", + "thumbnail": "rbxassetid://14968326174", }, - "configName": "Hi-Tech Bee", + "configName": "Sandcastle Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.752Z", - "hashShort": "09d3dea608a6bfb7", + "dateModified": "2026-06-27T16:05:28.113Z", + "hashShort": "9d514444bf69be4b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 71136171, + 505087, + 561612, + 591772, ], - "fromEgg": "Tech Dusty Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 116, - "goldenThumbnail": "rbxassetid://16471603013", - "maxChance": 0.8991008991008992, - "name": "Tech Camel", + "fly": true, + "fromEgg": "Eerie Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 75, + "goldenThumbnail": "rbxassetid://14968327953", + "maxChance": 0.7492432643030539, + "name": "Scary Corgi", "rarity": { "Announce": false, "Color": null, @@ -94098,437 +97533,386 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16471602889", + "thumbnail": "rbxassetid://14968328035", }, - "configName": "Tech Camel", + "configName": "Scary Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.743Z", - "hashShort": "7757e1d3dc19fa9e", + "dateModified": "2026-06-27T16:05:28.124Z", + "hashShort": "6c421b01143448e8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 29557131, + 6006, + 6772, + 7281, ], - "fromEgg": "Tech Incubator Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 108, - "goldenThumbnail": "rbxassetid://16471604612", - "maxChance": 0.08991008991008992, - "name": "Hi-Tech Ladybug", + "fromEgg": "Snow Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 37, + "goldenThumbnail": "rbxassetid://14968332611", + "maxChance": 0.2036106963485815, + "name": "Snow Dog", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16471604503", + "thumbnail": "rbxassetid://14968332769", }, - "configName": "Hi-Tech Ladybug", + "configName": "Snow Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.751Z", - "hashShort": "56530e62f65b4db0", + "dateModified": "2026-06-27T16:05:28.109Z", + "hashShort": "3a064604d7c01a36", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 194582095, - ], - "fromEgg": "Tech Flurry Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 124, - "goldenThumbnail": "rbxassetid://16471605378", - "maxChance": 0.0009989806401547862, - "name": "Frostbyte Yeti", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968334765", + "name": "Sock Corgi", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16471605282", + "thumbnail": "rbxassetid://14968334854", }, - "configName": "Frostbyte Yeti", + "configName": "Sock Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.764Z", - "hashShort": "2483fd076bf65a31", + "dateModified": "2025-07-05T23:28:56.285Z", + "hashShort": "e59a4c2e5acdc9b8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 119010719, - ], - "fromEgg": "Tech Snow Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 121, - "goldenThumbnail": "rbxassetid://16471606175", - "maxChance": 0.1998001998001998, - "name": "Frostbyte Snow Ram", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968339038", + "name": "Stacked Doge Noob", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16471605970", + "thumbnail": "rbxassetid://14968339288", }, - "configName": "Frostbyte Snow Ram", + "configName": "Stacked Doge Noob", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.745Z", - "hashShort": "043cd2fe7359ef0c", + "dateModified": "2025-07-05T23:28:56.309Z", + "hashShort": "548cf487b9175209", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 214699045, - ], - "fromEgg": "Tech Flurry Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 124, - "goldenThumbnail": "rbxassetid://16471605779", - "maxChance": 0.000019979612803095722, - "name": "Frostbyte Snowman", + "exclusiveLevel": 1, + "fly": true, + "goldenThumbnail": "rbxassetid://14968349230", + "name": "Super Corgi", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16471605552", + "thumbnail": "rbxassetid://14968349380", }, - "configName": "Frostbyte Snowman", + "configName": "Super Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.744Z", - "hashShort": "acbb332a003ec12a", + "dateModified": "2025-07-05T23:28:56.301Z", + "hashShort": "e3f1bdc5862cc9ad", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 153743794, - ], - "fromEgg": "Tech Mossy Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 122, - "goldenThumbnail": "rbxassetid://16471606739", - "maxChance": 0.08991008991008992, - "name": "Frostbyte Snow Leopard", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968353106", + "hideSerial": true, + "name": "Tiedye Corgi", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16471606444", + "thumbnail": "rbxassetid://14968353197", }, - "configName": "Frostbyte Snow Leopard", + "configName": "Tiedye Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.763Z", - "hashShort": "9d42ff805df35e04", + "dateModified": "2025-07-05T23:28:56.292Z", + "hashShort": "f4dc01cbf15c38ff", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 35089352, - ], - "fromEgg": "Tech Magma Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 110, - "goldenThumbnail": "rbxassetid://16471603826", - "maxChance": 0.8991008991008992, - "name": "Hi-Tech Sloth", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968353278", + "hideSerial": true, + "name": "Tiedye Dog", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16471603684", + "thumbnail": "rbxassetid://14968353381", }, - "configName": "Hi-Tech Sloth", + "configName": "Tiedye Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.755Z", - "hashShort": "e06bf8176a44880d", + "dateModified": "2025-07-05T23:28:56.311Z", + "hashShort": "0d9aed11045300ec", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.3, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.7, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.3, + "flyHeight": 1, + "flyHeightChange": 4, + "flySpeed": 0.4, }, "cachedPower": [ - 47344809, + 202, + 249, + 275, ], - "fromEgg": "Tech Palm Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 112, - "goldenThumbnail": "rbxassetid://16471674246", - "maxChance": 0.08991008991008992, - "name": "Abyssal Seal", + "fly": true, + "fromEgg": "Dog Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 9, + "goldenThumbnail": "rbxassetid://14968356471", + "maxChance": 0.485201358563804, + "name": "Umbrella Dog", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16471611609", + "thumbnail": "rbxassetid://14968356589", }, - "configName": "Abyssal Seal", + "configName": "Umbrella Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.757Z", - "hashShort": "349e1b5ea3954241", + "dateModified": "2026-06-27T16:05:28.115Z", + "hashShort": "8348939f650b6cf5", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 33251773, - ], + "exclusiveLevel": 2, "fly": true, - "fromEgg": "Tech Overgrown Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 109, - "goldenThumbnail": "rbxassetid://16471604164", - "maxChance": 0.08991008991008992, - "name": "Hi-Tech Parrot", + "goldenThumbnail": "rbxassetid://15163402325", + "name": "Rift Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16471604009", + "thumbnail": "rbxassetid://15163402414", }, - "configName": "Hi-Tech Parrot", + "configName": "Rift Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.761Z", - "hashShort": "2ea066c648bf3d54", + "dateModified": "2025-07-05T23:28:56.299Z", + "hashShort": "7402594c43bb78db", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 162240077, - ], - "fromEgg": "Tech Ice Crystal Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 123, - "goldenThumbnail": "rbxassetid://16471607215", - "maxChance": 0.6992864481083503, - "name": "Frostbyte Husky", + "exclusiveLevel": 1, + "fly": true, + "goldenThumbnail": "rbxassetid://15163402478", + "name": "Unicorn Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16471606992", + "thumbnail": "rbxassetid://15163402536", }, - "configName": "Frostbyte Husky", + "configName": "Unicorn Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.743Z", - "hashShort": "f1f522ca66f32442", + "dateModified": "2025-07-05T23:28:56.307Z", + "hashShort": "c3ce711a55b44da4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 128189690, - ], - "fromEgg": "Tech Snow Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 121, - "goldenThumbnail": "rbxassetid://16471607548", - "maxChance": 0.8991008991008992, - "name": "Frostbyte Fox", + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "rbxassetid://15163401960", + "name": "Celestial Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16471607419", + "thumbnail": "rbxassetid://15163402047", }, - "configName": "Frostbyte Fox", + "configName": "Celestial Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.746Z", - "hashShort": "b7cadf2ca67178d2", + "dateModified": "2025-07-05T23:28:56.290Z", + "hashShort": "9d7abee0f41056eb", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 136661150, + 42881, + 48031, + 51253, ], "fly": true, - "fromEgg": "Tech Snow Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 121, - "goldenThumbnail": "rbxassetid://16471607913", - "maxChance": 0.08991008991008992, - "name": "Frostbyte Dragon", + "fromEgg": "Lantern Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 52, + "goldenThumbnail": "rbxassetid://15565568923", + "maxChance": 0.0009990009990009992, + "name": "Ancient Dragon", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://16471607717", + "thumbnail": "rbxassetid://15565568888", }, - "configName": "Frostbyte Dragon", + "configName": "Ancient Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.744Z", - "hashShort": "6d1936a4bf5cb63e", + "dateModified": "2026-06-27T16:05:28.119Z", + "hashShort": "74c8e73bf36c09d0", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 107979180, + 43436, + 48639, + 52164, ], - "fromEgg": "Tech Cowboy Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 119, - "goldenThumbnail": "rbxassetid://16471602555", - "maxChance": 0.08991008991008992, - "name": "Tech Yee-haw Dog", + "fromEgg": "Garden Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 54, + "goldenThumbnail": "rbxassetid://15565568848", + "maxChance": 0.47, + "name": "Blossom Bunny", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16471602487", + "thumbnail": "rbxassetid://15565568796", }, - "configName": "Tech Cowboy Dog", + "configName": "Blossom Bunny", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.747Z", - "hashShort": "754987f3103a991c", + "dateModified": "2026-06-27T16:05:28.124Z", + "hashShort": "2d4047b9095298a9", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 144213401, + 48793, + 54611, + 58500, ], - "fromEgg": "Tech Mossy Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 122, - "goldenThumbnail": "rbxassetid://16471609087", - "maxChance": 0.8991008991008992, - "name": "Frostbyte Deer", + "fly": true, + "fromEgg": "Pixie Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 55, + "goldenThumbnail": "rbxassetid://15565568742", + "maxChance": 0.49, + "name": "Fairy Bee", "rarity": { "Announce": false, "Color": null, @@ -94541,58 +97925,63 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16471608117", + "thumbnail": "rbxassetid://15565568703", }, - "configName": "Frostbyte Deer", + "configName": "Fairy Bee", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.764Z", - "hashShort": "57c684a2017317cb", + "dateModified": "2026-06-27T16:05:28.120Z", + "hashShort": "bc84ee8365c94e30", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 101285681, + 66276, + 73840, + 78385, ], - "fromEgg": "Tech Cowboy Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 119, - "goldenThumbnail": "rbxassetid://16471602758", - "maxChance": 0.8991008991008992, - "name": "Tech Yee-haw Cat", + "fromEgg": "Crowned Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 57, + "goldenThumbnail": "rbxassetid://15565566458", + "maxChance": 0.029998500074996253, + "name": "Royal Peacock", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://16471602645", + "thumbnail": "rbxassetid://15565566377", }, - "configName": "Tech Cowboy Cat", + "configName": "Royal Peacock", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.741Z", - "hashShort": "25778fdcb8521456", + "dateModified": "2026-06-27T16:05:28.122Z", + "hashShort": "36f8f47d6d174cb4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 31190535, + 49543, + 55423, + 59631, ], - "fromEgg": "Tech Overgrown Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 109, - "goldenThumbnail": "rbxassetid://16471604430", - "maxChance": 0.8991008991008992, - "name": "Hi-Tech Monkey", + "fly": true, + "fromEgg": "Pixie Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 55, + "goldenThumbnail": "rbxassetid://15565568653", + "maxChance": 0.3, + "name": "Fairy Ladybug", "rarity": { "Announce": false, "Color": null, @@ -94605,26 +97994,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16471604319", + "thumbnail": "rbxassetid://15565568611", }, - "configName": "Hi-Tech Monkey", + "configName": "Fairy Ladybug", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.754Z", - "hashShort": "da043a0c44c6d6f8", + "dateModified": "2026-06-27T16:05:28.121Z", + "hashShort": "b05680c73d7fc4fd", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 113946391, + 33665, + 37750, + 40228, ], - "fromEgg": "Tech Canyon Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 120, - "goldenThumbnail": "rbxassetid://16471602379", - "maxChance": 0.6993006993006994, - "name": "Tech Goat", + "fromEgg": "Ninja Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 51, + "goldenThumbnail": "rbxassetid://15565568541", + "maxChance": 0.7399260073992601, + "name": "Kitsune Fox", "rarity": { "Announce": false, "Color": null, @@ -94637,91 +98028,97 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16471602267", + "thumbnail": "rbxassetid://15565568489", }, - "configName": "Tech Goat", + "configName": "Kitsune Fox", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.759Z", - "hashShort": "d2ca89b265e8fae2", + "dateModified": "2026-06-27T16:05:28.122Z", + "hashShort": "ccca859d6a6736ab", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 121476578, + 41376, + 46233, + 49110, ], - "fly": true, - "fromEgg": "Tech Canyon Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 120, - "goldenThumbnail": "rbxassetid://16471602147", - "maxChance": 0.08991008991008992, - "name": "Tech Griffin", + "fromEgg": "Bonsai Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 53, + "goldenThumbnail": "rbxassetid://15565568346", + "maxChance": 0.029970029970029972, + "name": "Koi Fish", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://16471602040", + "thumbnail": "rbxassetid://15565567792", }, - "configName": "Tech Griffin", + "configName": "Koi Fish", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.759Z", - "hashShort": "bded09906d5f9b86", + "dateModified": "2026-06-27T16:05:28.123Z", + "hashShort": "57c5481d39e96f2a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 37408244, + 120624, + 133851, + 141661, ], - "fromEgg": "Tech Magma Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 110, - "goldenThumbnail": "rbxassetid://16471603520", - "maxChance": 0.08991008991008992, - "name": "Hi-Tech Tiger", + "fly": true, + "fromEgg": "Colorful Mosaic Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 62, + "goldenThumbnail": "rbxassetid://15565567487", + "maxChance": 0.02, + "name": "Lunar Moth", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://16471603384", + "thumbnail": "rbxassetid://15565567426", }, - "configName": "Hi-Tech Tiger", + "configName": "Lunar Moth", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.752Z", - "hashShort": "6cb8cdecd9775ed4", + "dateModified": "2026-06-27T16:05:28.126Z", + "hashShort": "63ec8eaad5bd0290", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 39475521, + 30157, + 33833, + 36189, ], - "fromEgg": "Tech Oasis Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 111, - "goldenThumbnail": "rbxassetid://16471604803", - "maxChance": 0.8991008991008992, - "name": "Hi-Tech Flamingo", + "fromEgg": "Ninja Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 51, + "goldenThumbnail": "rbxassetid://15565567378", + "maxChance": 0.6293706293706294, + "name": "Ninja Raccoon", "rarity": { "Announce": false, "Color": null, @@ -94734,435 +98131,303 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16471604692", + "thumbnail": "rbxassetid://15565567332", }, - "configName": "Hi-Tech Flamingo", + "configName": "Ninja Raccoon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.747Z", - "hashShort": "61c8d6229659a652", + "dateModified": "2026-06-27T16:05:28.155Z", + "hashShort": "ad80927b1378f934", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 42084275, + 53923, + 60351, + 64160, ], - "fromEgg": "Tech Oasis Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 111, - "goldenThumbnail": "rbxassetid://16471605008", - "maxChance": 0.08991008991008992, - "name": "Hi-Tech Elephant", + "fromEgg": "Pixie Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 55, + "goldenThumbnail": "rbxassetid://15565567299", + "maxChance": 0.47, + "name": "Pixie Squirrel", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16471604919", + "thumbnail": "rbxassetid://15565567260", }, - "configName": "Hi-Tech Elephant", + "configName": "Pixie Squirrel", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.740Z", - "hashShort": "8307366d4c05f837", + "dateModified": "2026-06-27T16:05:28.151Z", + "hashShort": "fc6643dde7e6380a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.3, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.7, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.3, - }, "cachedPower": [ - 59920774, + 55736, + 62315, + 67043, ], - "fromEgg": "Tech Ship Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 114, - "goldenThumbnail": "rbxassetid://16471612338", - "maxChance": 0.08991008991008992, - "name": "Abyssal Dolphin", + "fromEgg": "Pedal Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 56, + "goldenThumbnail": "rbxassetid://15565566771", + "maxChance": 0.3, + "name": "Rabbit", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16471612276", + "thumbnail": "rbxassetid://15565566729", }, - "configName": "Abyssal Dolphin", + "configName": "Rabbit", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.757Z", - "hashShort": "67129e0a263585f5", + "dateModified": "2026-06-27T16:05:28.156Z", + "hashShort": "d0953fb87b71efc5", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.3, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.7, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.3, - }, "cachedPower": [ - 56206357, + 36329, + 40649, + 43307, ], - "fromEgg": "Tech Ship Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 114, - "goldenThumbnail": "rbxassetid://16471612199", - "maxChance": 0.8991008991008992, - "name": "Abyssal Fish", + "fromEgg": "Lantern Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 52, + "goldenThumbnail": "rbxassetid://15565566688", + "maxChance": 0.04999500049995, + "name": "Ronin Panda", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://16471612106", + "thumbnail": "rbxassetid://15565566650", }, - "configName": "Abyssal Fish", + "configName": "Ronin Panda", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.742Z", - "hashShort": "996df504e9fab6dc", + "dateModified": "2026-06-27T16:05:28.156Z", + "hashShort": "47ac41ae43df6bd4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.3, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.7, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.3, - }, "cachedPower": [ - 67410871, + 44038, + 49293, + 53039, ], - "fromEgg": "Tech Ruins Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 115, - "goldenThumbnail": "rbxassetid://16471612023", - "maxChance": 0.08991008991008992, - "name": "Abyssal Kraken", + "fly": true, + "fromEgg": "Garden Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 54, + "goldenThumbnail": "rbxassetid://15565566601", + "maxChance": 0.3, + "name": "Rose Butterfly", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16471611962", + "thumbnail": "rbxassetid://15565566558", }, - "configName": "Abyssal Kraken", + "configName": "Rose Butterfly", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.761Z", - "hashShort": "44e77448363c7b1d", + "dateModified": "2026-06-27T16:05:28.157Z", + "hashShort": "01c75b90adfe878e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.3, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.7, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.3, - }, "cachedPower": [ - 63232152, + 58912, + 65681, + 69735, ], "fly": true, - "fromEgg": "Tech Ruins Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 115, - "goldenThumbnail": "rbxassetid://16471611896", - "maxChance": 0.8991008991008992, - "name": "Abyssal Parrot", + "fromEgg": "Pedal Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 56, + "goldenThumbnail": "rbxassetid://15565565564", + "maxChance": 0.03, + "name": "Starry Owl", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://16471611826", + "thumbnail": "rbxassetid://15565565517", }, - "configName": "Abyssal Parrot", + "configName": "Starry Owl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.754Z", - "hashShort": "278a079a557f41f5", + "dateModified": "2026-06-27T16:05:31.380Z", + "hashShort": "c39fc1dad4244704", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "balloon": true, - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.3, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.7, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.3, - }, "cachedPower": [ - 49961207, + 46547, + 51971, + 55197, ], - "fromEgg": "Tech Coral Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 113, - "goldenThumbnail": "rbxassetid://16471611770", - "maxChance": 0.8991008991008992, - "name": "Abyssal Pufferfish", + "fromEgg": "Garden Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 54, + "goldenThumbnail": "rbxassetid://15565565466", + "maxChance": 0.03, + "name": "Sunflower Lion", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://16471611709", + "thumbnail": "rbxassetid://15565565410", }, - "configName": "Abyssal Pufferfish", + "configName": "Sunflower Lion", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.744Z", - "hashShort": "dd0606f8c0ad2e2a", + "dateModified": "2026-06-27T16:05:31.375Z", + "hashShort": "b0445a2e45610600", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.3, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.7, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.3, - }, "cachedPower": [ - 53262910, + 78696, + 87878, + 94175, ], - "fromEgg": "Tech Coral Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 113, - "goldenThumbnail": "rbxassetid://16471611544", - "maxChance": 0.08991008991008992, - "name": "Abyssal Shark", + "fromEgg": "Dandelion Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 59, + "goldenThumbnail": "rbxassetid://15565565376", + "maxChance": 0.3996003996003996, + "name": "Tulip Hedgehog", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16471611487", + "thumbnail": "rbxassetid://15565565329", }, - "configName": "Abyssal Shark", + "configName": "Tulip Hedgehog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.742Z", - "hashShort": "da065700972b62eb", + "dateModified": "2026-06-27T16:05:31.386Z", + "hashShort": "a21949e585a273d2", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 182520191, + 50062, + 55981, + 60079, ], - "fromEgg": "Tech Flurry Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 124, - "goldenThumbnail": "rbxassetid://16471609371", - "maxChance": 0.009989806401547861, - "name": "Frostbyte Bear", + "fromEgg": "Pixie Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 55, + "goldenThumbnail": "rbxassetid://15565565070", + "maxChance": 0.2, + "name": "Pixie Fox", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16471609155", + "thumbnail": "rbxassetid://15565565022", }, - "configName": "Frostbyte Bear", + "configName": "Pixie Fox", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.739Z", - "hashShort": "8ed43ac4e12491e2", + "dateModified": "2026-06-27T16:05:31.382Z", + "hashShort": "13ba24b87787e5ac", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 172961768, + 39336, + 44049, + 47345, ], "fly": true, - "fromEgg": "Tech Ice Crystal Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 123, - "goldenThumbnail": "rbxassetid://16471609563", - "maxChance": 0.289704385644888, - "name": "Frostbyte Bat", + "fromEgg": "Bonsai Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 53, + "goldenThumbnail": "rbxassetid://15565564981", + "maxChance": 0.24975024975024976, + "name": "Woodpecker", "rarity": { "Announce": false, "Color": null, @@ -95175,339 +98440,403 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16471609451", + "thumbnail": "rbxassetid://15565564817", }, - "configName": "Frostbyte Bat", + "configName": "Woodpecker", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.740Z", - "hashShort": "e346746bc673d1dd", + "dateModified": "2026-06-27T16:05:31.384Z", + "hashShort": "3075e84f99ee733c", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://16744676672", - "huge": true, - "indexDesc": "Obtained as a reward from the Adventurer Store in Area 140!", - "indexObtainable": true, - "name": "Huge Firefly", + "cachedPower": [ + 92880, + 103386, + 110125, + ], + "fromEgg": "Royal Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 58, + "goldenThumbnail": "rbxassetid://15565565238", + "maxChance": 0.04995004995004995, + "name": "Unicorn Kitten", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://16744676508", + "thumbnail": "rbxassetid://15565565151", }, - "configName": "Huge Firefly", + "configName": "Unicorn Kitten", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.689Z", - "hashShort": "ddd1d3c52150e666", + "dateModified": "2026-06-27T16:05:31.381Z", + "hashShort": "29123fb1f8089771", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://16725471704", - "huge": true, - "indexDesc": "Found in Deep Pools in the Advanced Fishing minigame!", - "indexObtainable": true, - "name": "Huge Whale Shark", + "cachedPower": [ + 74561, + 83014, + 88112, + ], + "fly": true, + "fromEgg": "Royal Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 58, + "goldenThumbnail": "rbxassetid://15565566973", + "maxChance": 0.02998485764688832, + "name": "Princess Dragon", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://16725471591", + "thumbnail": "rbxassetid://15565566917", }, - "configName": "Huge Whale Shark", + "configName": "Princess Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.690Z", - "hashShort": "2b025d952b71343e", + "dateModified": "2026-06-27T16:05:31.390Z", + "hashShort": "bc8d373b1711b6b6", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://16744715532", - "huge": true, - "indexDesc": "Found in The Forever Pack!", - "indexObtainable": true, - "name": "Huge Rich Cat", + "cachedPower": [ + 67123, + 74874, + 79210, + ], + "fromEgg": "Royal Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 58, + "goldenThumbnail": "rbxassetid://15565567105", + "maxChance": 0.969510397249389, + "name": "Prince Donkey", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16744715368", + "thumbnail": "rbxassetid://15565567040", }, - "configName": "Huge Rich Cat", + "configName": "Prince Donkey", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.704Z", - "hashShort": "fa5277c72d8329fd", + "dateModified": "2026-06-27T16:05:31.388Z", + "hashShort": "62db45d12a1fd873", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://16744695639", - "huge": true, - "indexDesc": "Earned from the 2024 St. Patrick's Event!", - "indexObtainable": true, - "name": "Huge Clover Fairy", + "cachedPower": [ + 78612, + 87789, + 94041, + ], + "fromEgg": "Crowned Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 57, + "goldenThumbnail": "rbxassetid://15565568452", + "maxChance": 0.0004997476274481387, + "name": "Knight Beagle", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://16744695511", + "thumbnail": "rbxassetid://15565568400", }, - "configName": "Huge Clover Fairy", + "configName": "Knight Beagle", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.685Z", - "hashShort": "b611d783bec7098a", + "dateModified": "2026-06-27T16:05:31.386Z", + "hashShort": "7de79db2974cae9a", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://16746767734", - "huge": true, - "indexDesc": "Found in the Exclusive Superhero Egg!", - "indexObtainable": true, - "name": "Huge Super Tiger", + "cachedPower": [ + 63360, + 70768, + 75937, + ], + "fromEgg": "Crowned Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 57, + "goldenThumbnail": "rbxassetid://15565566869", + "maxChance": 0.199990000499975, + "name": "Queen Piggy", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16746767650", + "thumbnail": "rbxassetid://15565566823", }, - "configName": "Huge Super Tiger", + "configName": "Queen Piggy", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.699Z", - "hashShort": "775081b1a478aeaa", + "dateModified": "2026-06-27T16:05:31.382Z", + "hashShort": "c630aaab6c0ee7f1", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://16746769191", - "huge": true, - "indexDesc": "Found in the Exclusive Superhero Egg!", - "indexObtainable": true, - "name": "Huge Jester Dog", + "cachedPower": [ + 62703, + 70066, + 75378, + ], + "fromEgg": "Crowned Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 57, + "goldenThumbnail": "rbxassetid://15565567223", + "maxChance": 0.29998500074996254, + "name": "King Cow", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16746769132", + "thumbnail": "rbxassetid://15565567168", }, - "configName": "Huge Jester Dog", + "configName": "King Cow", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.690Z", - "hashShort": "cc91df774ed5da5a", + "dateModified": "2026-06-27T16:05:31.392Z", + "hashShort": "29908ad637af84ff", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://16756391226", - "huge": true, - "indexDesc": "Found in the Claw Machine!", - "indexObtainable": true, - "name": "Huge Arcade Dragon", + "cachedPower": [ + 81517, + 90864, + 97096, + ], + "fromEgg": "Dandelion Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 59, + "goldenThumbnail": "rbxassetid://15637923529", + "maxChance": 0.0999000999000999, + "name": "Calico Cat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16756391066", + "thumbnail": "rbxassetid://15637923438", }, - "configName": "Huge Arcade Dragon", + "configName": "Calico Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.701Z", - "hashShort": "133189b53a7723e6", + "dateModified": "2026-06-27T16:05:31.384Z", + "hashShort": "2eda6a6592f45530", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://16756608290", - "huge": true, - "indexDesc": "Reward in the 2024 Quest Clan Battle!", - "indexObtainable": true, - "name": "Huge Alien Arachnid", + "cachedPower": [ + 162752, + 181014, + 194106, + ], + "fromEgg": "Frosted Geode Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 63, + "goldenThumbnail": "rbxassetid://15637923369", + "maxChance": 0.0999000999000999, + "name": "Colorful Dragon", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16756608144", + "thumbnail": "rbxassetid://15637923286", }, - "configName": "Huge Alien Arachnid", + "configName": "Colorful Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.707Z", - "hashShort": "39b9efb724953039", + "dateModified": "2026-06-27T16:05:31.376Z", + "hashShort": "6b1fd71500db0f01", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://16393837514", - "indexDesc": "Comes with the Titanic Sock Cat plush!", - "indexObtainable": true, - "name": "Titanic Sock Cat", + "cachedPower": [ + 113908, + 126902, + 136216, + ], + "fromEgg": "Colorful Mosaic Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 62, + "goldenThumbnail": "rbxassetid://15637923742", + "maxChance": 0.22, + "name": "Colorful Firefly", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16393837325", - "titanic": true, + "thumbnail": "rbxassetid://15637923696", }, - "configName": "Titanic Sock Cat", + "configName": "Colorful Firefly", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.252Z", - "hashShort": "106dc4e18c77ffb0", + "dateModified": "2026-06-27T16:05:31.378Z", + "hashShort": "e4a319c75d04badc", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://16393836932", - "indexDesc": "Comes with the Titanic Sock Monkey plush!", - "indexObtainable": true, - "name": "Titanic Sock Monkey", + "cachedPower": [ + 116545, + 129652, + 138371, + ], + "fromEgg": "Colorful Geode Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 61, + "goldenThumbnail": "rbxassetid://15637923649", + "maxChance": 0.06, + "name": "Colorful Rock", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16393836771", - "titanic": true, + "thumbnail": "rbxassetid://15637923583", }, - "configName": "Titanic Sock Monkey", + "configName": "Colorful Rock", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.243Z", - "hashShort": "a481277bbf3325bc", + "dateModified": "2026-06-27T16:05:31.385Z", + "hashShort": "19cdb685f6c7a6fb", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://16746763506", - "indexDesc": "Found in the Exclusive Superhero Egg!", - "indexObtainable": true, - "name": "Titanic Bat Cat", + "cachedPower": [ + 103596, + 115311, + 123075, + ], + "fromEgg": "Colorful Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 60, + "goldenThumbnail": "rbxassetid://15637923947", + "maxChance": 0.0999000999000999, + "name": "Colorful Wisp", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16746763420", - "titanic": true, + "thumbnail": "rbxassetid://15637923898", }, - "configName": "Titanic Bat Cat", + "configName": "Colorful Wisp", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.232Z", - "hashShort": "c2eaec62c2b662fc", + "dateModified": "2026-06-27T16:05:31.403Z", + "hashShort": "ce9e12b0fc7a429c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1924691438, + 143010, + 159250, + 170770, ], - "fromEgg": "Tech Factory Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 144, - "goldenThumbnail": "rbxassetid://14968321272", - "maxChance": 0.8991008991008992, - "name": "Robot", + "fromEgg": "Ice Sculpture Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 64, + "goldenThumbnail": "rbxassetid://15637923839", + "maxChance": 0.2997002997002997, + "name": "Frost Fox", "rarity": { "Announce": false, "Color": null, @@ -95520,27 +98849,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968321451", + "thumbnail": "rbxassetid://15637923791", }, - "configName": "Robot", + "configName": "Frost Fox", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.789Z", - "hashShort": "fb4605df1e0f5d19", + "dateModified": "2026-06-27T16:05:31.391Z", + "hashShort": "6b2e09d854c9db40", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 292361886, + 141268, + 157425, + 168032, ], - "fly": true, - "fromEgg": "Tech Nexus Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 128, - "goldenThumbnail": "rbxassetid://14968253382", - "maxChance": 0.8991008991008992, - "name": "Happy Computer", + "fromEgg": "Ice Sculpture Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 64, + "goldenThumbnail": "rbxassetid://15637924384", + "maxChance": 0.4495504495504496, + "name": "Frost Rabbit", "rarity": { "Announce": false, "Color": null, @@ -95553,60 +98883,62 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968253514", + "thumbnail": "rbxassetid://15637924287", }, - "configName": "Happy Computer", + "configName": "Frost Rabbit", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.925Z", - "hashShort": "15e7f8690f6dfb3a", + "dateModified": "2026-06-27T16:05:31.405Z", + "hashShort": "3515a848b6d0a29d", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2051885335, + 78103, + 87244, + 93224, ], - "fly": true, - "fromEgg": "Tech Factory Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 144, - "goldenThumbnail": "rbxassetid://15260349236", - "maxChance": 0.08991008991008992, - "name": "M-2 PROTOTYPE", + "fromEgg": "Dandelion Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 59, + "goldenThumbnail": "rbxassetid://15637924187", + "maxChance": 0.4995004995004995, + "name": "Hamster", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15260349138", + "thumbnail": "rbxassetid://15637924096", }, - "configName": "M-2 PROTOTYPE", + "configName": "Hamster", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.927Z", - "hashShort": "ef28c2b37033fb31", + "dateModified": "2026-06-27T16:05:31.400Z", + "hashShort": "fad41de05373874f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2165277868, + 98139, + 109563, + 116624, ], - "fly": true, - "fromEgg": "Tech Robot Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 145, - "goldenThumbnail": "rbxassetid://15260350978", - "maxChance": 0.8991008991008992, - "name": "A-36", + "fromEgg": "Colorful Geode Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 61, + "goldenThumbnail": "rbxassetid://15637924009", + "maxChance": 0.5994005994005994, + "name": "Mining Axolotl", "rarity": { "Announce": false, "Color": null, @@ -95619,155 +98951,174 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15260350888", + "thumbnail": "rbxassetid://15637924572", }, - "configName": "A-36", + "configName": "Mining Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.928Z", - "hashShort": "2af43c2521196730", + "dateModified": "2026-06-27T16:05:31.389Z", + "hashShort": "2d5bafacb09cdacb", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 3468260800, + 100441, + 112004, + 120286, ], - "fromEgg": "Alien Lab Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 149, - "goldenThumbnail": "rbxassetid://14968182666", - "maxChance": 0.009999796004161515, - "name": "Bleebo The Alien", + "fromEgg": "Colorful Geode Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 61, + "goldenThumbnail": "rbxassetid://15637924526", + "maxChance": 0.2997002997002997, + "name": "Mining Cat", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968182805", + "thumbnail": "rbxassetid://15637924469", }, - "configName": "Bleebo The Alien", + "configName": "Mining Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.957Z", - "hashShort": "66a5b47cc8dfe335", + "dateModified": "2026-06-27T16:05:31.397Z", + "hashShort": "6eb7840ca4081f18", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 592701314, - ], - "fromEgg": "Tech Planets Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 134, - "goldenThumbnail": "rbxassetid://14968279521", - "maxChance": 0.8991008991008992, - "name": "Meebo The Alien", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://15634020673", + "name": "Orange Axolotl", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968279726", + "thumbnail": "rbxassetid://15634020515", }, - "configName": "Meebo The Alien", + "configName": "Orange Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.957Z", - "hashShort": "c486a5ee39929c3d", + "dateModified": "2025-07-05T23:28:56.443Z", + "hashShort": "93eb7b736f30f2de", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 2862227719, - ], - "fromEgg": "Alien Forest Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 148, - "goldenThumbnail": "rbxassetid://14968290647", - "maxChance": 0.1998001998001998, - "name": "Nine Eyed Lion", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://15634025444", + "name": "Dragonfruit Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968290843", + "thumbnail": "rbxassetid://15634025370", }, - "configName": "Nine Eyed Lion", + "configName": "Dragonfruit Dragon", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:56.439Z", + "hashShort": "5ce6e0ce05ddb7b5", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://15634029235", + "name": "Blueberry Cow", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://15634029076", + }, + "configName": "Blueberry Cow", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.257Z", - "hashShort": "84b509b5e5d4f83c", + "dateModified": "2025-07-05T23:28:56.460Z", + "hashShort": "ceae598da625a634", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 4375916201, + 221624, + 246917, + 260968, ], - "fly": true, - "fromEgg": "Alien Lab Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 149, - "goldenThumbnail": "rbxassetid://14968279272", - "maxChance": 3.9999184016646064e-7, - "name": "Meebo in a Spaceship", + "fromEgg": "Teddy Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 67, + "goldenThumbnail": "rbxassetid://15715876758", + "maxChance": 0.009989810393398734, + "name": "Train Conductor Dog", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14968279401", + "thumbnail": "rbxassetid://15715876574", }, - "configName": "Meebo in a Spaceship", + "configName": "Train Conductor Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.276Z", - "hashShort": "b6f86cacb5f6f74c", + "dateModified": "2026-06-27T16:05:31.406Z", + "hashShort": "d933668ed9cdb093", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2740429801, + 203810, + 226643, + 242782, ], - "fromEgg": "Alien Garden Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 147, - "goldenThumbnail": "rbxassetid://14968247533", - "maxChance": 0.6993006993006994, - "name": "Gleebo The Alien", + "fromEgg": "Teddy Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 67, + "goldenThumbnail": "rbxassetid://15715876978", + "maxChance": 0.2897045014085633, + "name": "Train Conductor Cat", "rarity": { "Announce": false, "Color": null, @@ -95780,59 +99131,62 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968247642", + "thumbnail": "rbxassetid://15715876878", }, - "configName": "Gleebo The Alien", + "configName": "Train Conductor Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.262Z", - "hashShort": "84e14bdacf18b606", + "dateModified": "2026-06-27T16:05:31.397Z", + "hashShort": "dc9ffd28490c5fcf", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 3082983526, + 236270, + 262024, + 279541, ], - "fromEgg": "Alien Forest Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 148, - "goldenThumbnail": "rbxassetid://14968170208", - "maxChance": 0.6999857202913061, - "name": "Alien Axolotl", + "fromEgg": "Teddy Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 67, + "goldenThumbnail": "rbxassetid://15715877220", + "maxChance": 0.18981018981018982, + "name": "Teddy Bear", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968170299", + "thumbnail": "rbxassetid://15715877102", }, - "configName": "Alien Axolotl", + "configName": "Teddy Bear", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.262Z", - "hashShort": "7261a9aeb3e95101", + "dateModified": "2026-06-27T16:05:31.401Z", + "hashShort": "82db23bec946fcb1", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 631870184, + 260697, + 289430, + 310329, ], - "fly": true, - "fromEgg": "Tech Planets Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 134, - "goldenThumbnail": "rbxassetid://14968339590", - "maxChance": 0.08991008991008992, - "name": "Star Surfer", + "fromEgg": "Teddy Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 67, + "goldenThumbnail": "rbxassetid://15715877508", + "maxChance": 0.052029136316337155, + "name": "Snowflake Dominus", "rarity": { "Announce": false, "Color": null, @@ -95845,59 +99199,62 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968339654", + "thumbnail": "rbxassetid://15715877322", }, - "configName": "Star Surfer", + "configName": "Snowflake Dominus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.259Z", - "hashShort": "60347ac1d29f3d05", + "dateModified": "2026-06-27T16:05:31.404Z", + "hashShort": "27ff1d352baf080c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 4079751448, + 179481, + 199797, + 213373, ], - "fly": true, - "fromEgg": "Alien Lab Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 149, - "goldenThumbnail": "rbxassetid://14968265282", - "maxChance": 0.000019999592008323033, - "name": "Jelly Alien", + "fromEgg": "Ice Castle Egg Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 66, + "goldenThumbnail": "rbxassetid://15715877930", + "maxChance": 0.3996003996003996, + "name": "Silver Moose", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968265425", + "thumbnail": "rbxassetid://15715877677", }, - "configName": "Jelly Alien", + "configName": "Silver Moose", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.277Z", - "hashShort": "8b48c66794a31673", + "dateModified": "2026-06-27T16:05:31.387Z", + "hashShort": "d6717fc4f9a1e0c7", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2921532049, + 145509, + 161851, + 173306, ], - "fromEgg": "Alien Garden Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 147, - "goldenThumbnail": "rbxassetid://14968170030", - "maxChance": 0.08991008991008992, - "name": "Alien Arachnid", + "fromEgg": "Ice Sculpture Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 64, + "goldenThumbnail": "rbxassetid://15715880134", + "maxChance": 0.14985014985014986, + "name": "Hot Cocoa Cat", "rarity": { "Announce": false, "Color": null, @@ -95910,26 +99267,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968170120", + "thumbnail": "rbxassetid://15715879987", }, - "configName": "Alien Arachnid", + "configName": "Hot Cocoa Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.260Z", - "hashShort": "59515550d25f8893", + "dateModified": "2026-06-27T16:05:31.396Z", + "hashShort": "0ba553bf830ccfe4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 750137600, + 197553, + 220132, + 233016, ], - "fromEgg": "Tech Mars Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 136, - "goldenThumbnail": "rbxassetid://14968317608", - "maxChance": 0.9, - "name": "Red Fluffy", + "fromEgg": "Teddy Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 67, + "goldenThumbnail": "rbxassetid://15715878925", + "maxChance": 0.6992867275379114, + "name": "Pajamas Dog", "rarity": { "Announce": false, "Color": null, @@ -95942,58 +99301,62 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968317699", + "thumbnail": "rbxassetid://15715878740", }, - "configName": "Red Fluffy", + "configName": "Pajamas Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.257Z", - "hashShort": "e4546954e4577057", + "dateModified": "2026-06-27T16:05:31.390Z", + "hashShort": "39861fd431bfef57", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 843881038, + 210018, + 233024, + 248615, ], - "fromEgg": "Tech Saturn Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 137, - "goldenThumbnail": "rbxassetid://14968184154", - "maxChance": 0.989010989010989, - "name": "Blue Fluffy", + "fromEgg": "Ice Castle Egg Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 66, + "goldenThumbnail": "rbxassetid://15715879235", + "maxChance": 0.0009990009990009992, + "name": "Pajamas Cat", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14968184345", + "thumbnail": "rbxassetid://15715879132", }, - "configName": "Blue Fluffy", + "configName": "Pajamas Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.253Z", - "hashShort": "b59c3a58673e53c5", + "dateModified": "2026-06-27T16:05:31.402Z", + "hashShort": "6fef3cd0060eda7f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 3286723555, + 151158, + 167661, + 177828, ], - "fromEgg": "Alien Forest Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 148, - "goldenThumbnail": "rbxassetid://15260350778", - "maxChance": 0.28999408412068395, - "name": "Alien Parasite", + "fromEgg": "Ice Sculpture Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 64, + "goldenThumbnail": "rbxassetid://15715879440", + "maxChance": 0.5494505494505495, + "name": "Ice Snowman", "rarity": { "Announce": false, "Color": null, @@ -96006,60 +99369,62 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15260350131", + "thumbnail": "rbxassetid://15715879340", }, - "configName": "Alien Parasite", + "configName": "Ice Snowman", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.261Z", - "hashShort": "cd6fbcf22a818b98", + "dateModified": "2026-06-27T16:05:31.401Z", + "hashShort": "3794a9fcce9224f3", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1138650589, + 175110, + 195223, + 206511, ], - "fly": true, - "fromEgg": "Tech Galaxy Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 139, - "goldenThumbnail": "rbxassetid://14968243367", - "maxChance": 0.08991008991008992, - "name": "Galaxy Fox", + "fromEgg": "Hot Cocoa Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 65, + "goldenThumbnail": "rbxassetid://15715879649", + "maxChance": 0.4995004995004995, + "name": "Ice Penguin", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968243570", + "thumbnail": "rbxassetid://15715879541", }, - "configName": "Galaxy Fox", + "configName": "Ice Penguin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.261Z", - "hashShort": "46457a6e09535dd3", + "dateModified": "2026-06-27T16:05:31.398Z", + "hashShort": "117702c0f9995faf", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1068067013, + 160322, + 178488, + 191057, ], - "fly": true, - "fromEgg": "Tech Galaxy Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 139, - "goldenThumbnail": "rbxassetid://14968242686", - "maxChance": 0.8991008991008992, - "name": "Galaxy Axolotl", + "fromEgg": "Hot Cocoa Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 65, + "goldenThumbnail": "rbxassetid://15715879880", + "maxChance": 0.3396603396603397, + "name": "Ice Corgi", "rarity": { "Announce": false, "Color": null, @@ -96072,21 +99437,24 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968242856", + "thumbnail": "rbxassetid://15715879745", }, - "configName": "Astral Axolotl", + "configName": "Ice Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.597Z", - "hashShort": "de97ba470c54694a", + "dateModified": "2026-06-27T16:05:31.380Z", + "hashShort": "c6fa4398d7a65f28", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "spinZ": true, + }, "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://17825124454", - "name": "Banana", - "preventGolden": true, + "fly": true, + "goldenThumbnail": "rbxassetid://15715878611", + "name": "Peppermint Angelus", "rarity": { "Announce": true, "Color": null, @@ -96099,22 +99467,21 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "secret": true, - "thumbnail": "rbxassetid://17825124454", + "thumbnail": "rbxassetid://15715878441", }, - "configName": "Banana", + "configName": "Peppermint Angelus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.604Z", - "hashShort": "1bf8ee206146892d", + "dateModified": "2025-07-05T23:28:56.436Z", + "hashShort": "c6a1121e505dd309", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://17825174788", - "name": "Yellow Lucky Block", - "preventGolden": true, + "exclusiveLevel": 1, + "fly": true, + "goldenThumbnail": "rbxassetid://15715880570", + "name": "Holiday Pegasus", "rarity": { "Announce": true, "Color": null, @@ -96127,131 +99494,93 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "secret": true, - "thumbnail": "rbxassetid://17825174788", + "thumbnail": "rbxassetid://15715880316", }, - "configName": "Yellow Lucky Block", + "configName": "Holiday Pegasus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.952Z", - "hashShort": "57057ab7cb82a3e3", + "dateModified": "2025-07-05T23:28:56.457Z", + "hashShort": "00cfb6a8b8c807c8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 1012133857, - ], + "animations": { + "balloon": true, + }, + "exclusiveLevel": 2, "fly": true, - "fromEgg": "Tech Comet Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 138, - "goldenThumbnail": "rbxassetid://14968197753", - "maxChance": 0.08991008991008992, - "name": "Comet Agony", + "goldenThumbnail": "rbxassetid://15715880914", + "name": "Holiday Balloon Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968197850", + "thumbnail": "rbxassetid://15715880811", }, - "configName": "Comet Agony", + "configName": "Holiday Balloon Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.644Z", - "hashShort": "a7d817ca267628f5", + "dateModified": "2025-07-05T23:28:56.447Z", + "hashShort": "69ed0ce0f8543f9a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 949392900, + 196999, + 219552, + 232146, ], - "fly": true, - "fromEgg": "Tech Comet Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 138, - "goldenThumbnail": "rbxassetid://14968197898", - "maxChance": 0.8991008991008992, - "name": "Comet Cyclops", + "fromEgg": "Ice Castle Egg Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 66, + "goldenThumbnail": "rbxassetid://15715878226", + "maxChance": 0.00999000999000999, + "name": "Silver Bison", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14968198011", - }, - "configName": "Comet Cyclops", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.640Z", - "hashShort": "633977567a01a1a4", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 3446010518, - ], - "fly": true, - "fromWorldNumber": 2, - "fromZoneNumber": 149, - "goldenThumbnail": "rbxassetid://14968197158", - "name": "Clover Fairy", - "thumbnail": "rbxassetid://14968197237", - }, - "configName": "Clover Fairy", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.813Z", - "hashShort": "5eb01891995a8d64", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 4092137490, - ], - "fromWorldNumber": 2, - "fromZoneNumber": 149, - "goldenThumbnail": "rbxassetid://14968196586", - "name": "Clover Axolotl", - "thumbnail": "rbxassetid://14968196669", + "thumbnail": "rbxassetid://15715878088", }, - "configName": "Clover Axolotl", + "configName": "Silver Bison", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.807Z", - "hashShort": "be4bcbfd1df6dd03", + "dateModified": "2026-06-27T16:05:31.405Z", + "hashShort": "ecbd63b836608b4b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2308371002, + 594571, + 658273, + 705267, ], "fly": true, - "fromEgg": "Tech Robot Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 145, - "goldenThumbnail": "rbxassetid://15260348775", - "maxChance": 0.08991008991008992, - "name": "M-10 PROTOTYPE", + "fromEgg": "Witch Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 74, + "goldenThumbnail": "rbxassetid://15810014383", + "maxChance": 0.19, + "name": "Broomstick Corgi", "rarity": { "Announce": false, "Color": null, @@ -96264,72 +99593,63 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://15260348651", + "thumbnail": "rbxassetid://15805723781", }, - "configName": "M-10 PROTOTYPE", + "configName": "Broomstick Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.823Z", - "hashShort": "a51e779f61431f3f", + "dateModified": "2026-06-27T16:05:31.383Z", + "hashShort": "8804379672837af6", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 3025304158, + 378459, + 418934, + 446863, ], - "fromWorldNumber": 2, - "fromZoneNumber": 149, - "goldenThumbnail": "rbxassetid://14968273282", - "name": "Leprechaun Cat", - "thumbnail": "rbxassetid://14968273460", - }, - "configName": "Leprechaun Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.808Z", - "hashShort": "9ea438b41765cd39", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://17825174910", - "name": "Coin", - "preventGolden": true, + "fly": true, + "fromEgg": "Ruins Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 71, + "goldenThumbnail": "rbxassetid://15805728222", + "maxChance": 0.08991008991008992, + "name": "Rock Dragon", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "secret": true, - "thumbnail": "rbxassetid://17825174910", + "thumbnail": "rbxassetid://15805728356", }, - "configName": "Coin", + "configName": "Rock Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.136Z", - "hashShort": "2aec1390be4c010b", + "dateModified": "2026-06-27T16:05:31.402Z", + "hashShort": "1f6895e6b1a19f41", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 526845612, + 354999, + 395032, + 416836, ], - "fromEgg": "Tech Rocket Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 133, - "goldenThumbnail": "rbxassetid://14968175706", - "maxChance": 0.8991008991008992, - "name": "Astronaut Cat", + "fromEgg": "Ruins Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 71, + "goldenThumbnail": "rbxassetid://15805727980", + "maxChance": 0.6993006993006994, + "name": "Rock Dog", "rarity": { "Announce": false, "Color": null, @@ -96342,44 +99662,63 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968175851", + "thumbnail": "rbxassetid://15805728089", }, - "configName": "Astronaut Cat", + "configName": "Rock Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.144Z", - "hashShort": "6efa2e41a32183f6", + "dateModified": "2026-06-27T16:05:31.406Z", + "hashShort": "cf25db0330ddb847", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 3214385668, + 239166, + 264966, + 281802, ], - "fromWorldNumber": 2, - "fromZoneNumber": 149, - "goldenThumbnail": "rbxassetid://14968264781", - "name": "Irish Corgi", - "thumbnail": "rbxassetid://14968264849", + "fly": true, + "fromEgg": "Firefly Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 68, + "goldenThumbnail": "rbxassetid://15805723954", + "maxChance": 0.04995004995004995, + "name": "Cold Butterfly", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Epic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 3, + "_id": "Epic", + "_script": null, + }, + "thumbnail": "rbxassetid://15805724092", }, - "configName": "Irish Corgi", + "configName": "Cold Butterfly", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.294Z", - "hashShort": "d3fb38a025b96f80", + "dateModified": "2026-06-27T16:05:31.400Z", + "hashShort": "4d58c164eeac669d", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 231001984, + 399374, + 444285, + 468627, ], - "fromEgg": "Tech Glacier Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 126, - "goldenThumbnail": "rbxassetid://16746704348", - "maxChance": 0.8991008991008992, - "name": "Frostbyte Walrus", + "fromEgg": "Runic Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 72, + "goldenThumbnail": "rbxassetid://15805727484", + "maxChance": 0.6992308460693237, + "name": "Relic Cyclops", "rarity": { "Announce": false, "Color": null, @@ -96392,122 +99731,132 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16746704421", + "thumbnail": "rbxassetid://15805727647", }, - "configName": "Frostbyte Walrus", + "configName": "Relic Cyclops", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.919Z", - "hashShort": "d190ded216686b4a", + "dateModified": "2026-06-27T16:05:31.403Z", + "hashShort": "f7a76b1d4d9e3932", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 370020512, + 370777, + 411169, + 440967, ], - "fromEgg": "Nuclear Forest Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 130, - "goldenThumbnail": "rbxassetid://16746706379", - "maxChance": 0.8991008991008992, - "name": "Nuclear Squirrel", + "fly": true, + "fromEgg": "Runic Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 72, + "goldenThumbnail": "rbxassetid://15805727186", + "maxChance": 0.1998001998001998, + "name": "Relic Bat", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16746706447", + "thumbnail": "rbxassetid://15805727353", }, - "configName": "Nuclear Squirrel", + "configName": "Relic Bat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.916Z", - "hashShort": "db5676d0124ab89a", + "dateModified": "2026-06-27T16:05:31.399Z", + "hashShort": "310b2ba746d3fa8c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 259877232, + 425766, + 471094, + 502482, ], - "fromEgg": "Tech Melted Egg Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 127, - "goldenThumbnail": "rbxassetid://16746705408", - "maxChance": 0.8991008991008992, - "name": "Melted Slime", + "fly": true, + "fromEgg": "Runic Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 72, + "goldenThumbnail": "rbxassetid://15805726919", + "maxChance": 0.09989012086704625, + "name": "Relic Agony", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16746705513", + "thumbnail": "rbxassetid://15805727049", }, - "configName": "Melted Slime", + "configName": "Relic Agony", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.907Z", - "hashShort": "88fbd0949c5e0135", + "dateModified": "2026-06-27T16:05:31.401Z", + "hashShort": "29c05dc6e82d4383", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 277051309, + 450558, + 500975, + 528800, ], - "fromEgg": "Tech Melted Egg Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 127, - "goldenThumbnail": "rbxassetid://16746705175", - "maxChance": 0.08991008991008992, - "name": "Melted Rock", + "fromEgg": "Witch Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 74, + "goldenThumbnail": "rbxassetid://15805726611", + "maxChance": 0.6992864481083503, + "name": "Potion Poodle", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16746705286", + "thumbnail": "rbxassetid://15805726755", }, - "configName": "Melted Rock", + "configName": "Potion Poodle", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.928Z", - "hashShort": "d190fd3fcc665dd0", + "dateModified": "2026-06-27T16:05:31.414Z", + "hashShort": "ce67b0660af47079", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 193778430, + 298702, + 330979, + 353173, ], - "fromEgg": "Tech Ice Circuit Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 125, - "goldenThumbnail": "rbxassetid://16746704136", - "maxChance": 0.1, - "name": "Frostbyte Penguin", + "fromEgg": "Golden Brick Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 69, + "goldenThumbnail": "rbxassetid://15805728503", + "maxChance": 0.08991008991008992, + "name": "Tabby Cat", "rarity": { "Announce": false, "Color": null, @@ -96520,58 +99869,64 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16746704253", + "thumbnail": "rbxassetid://15805728586", }, - "configName": "Frostbyte Penguin", + "configName": "Tabby Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.929Z", - "hashShort": "390c2afaf1cf017e", + "dateModified": "2026-06-27T16:05:31.411Z", + "hashShort": "436d400befc5d4ba", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 246267830, + 257419, + 286067, + 305933, ], - "fromEgg": "Tech Glacier Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 126, - "goldenThumbnail": "rbxassetid://16764660881", - "maxChance": 0.08991008991008992, - "name": "Frostbyte Narwhal", + "fly": true, + "fromEgg": "Golden Brick Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 69, + "goldenThumbnail": "rbxassetid://15805726243", + "maxChance": 0.3121748178980229, + "name": "Orange Parrot", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16746704071", + "thumbnail": "rbxassetid://15805726424", }, - "configName": "Frostbyte Narwhal", + "configName": "Orange Parrot", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.907Z", - "hashShort": "e412b8c13824f5ec", + "dateModified": "2026-06-27T16:05:31.416Z", + "hashShort": "76035377114f5f11", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 666788978, + 637729, + 708877, + 745722, ], - "fromEgg": "Tech Moon Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 135, - "goldenThumbnail": "rbxassetid://16746704905", - "maxChance": 0.8991008991008992, - "name": "Lunar Fox", + "fly": true, + "fromEgg": "Witch Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 74, + "goldenThumbnail": "rbxassetid://15805725950", + "maxChance": 0.6993006993006994, + "name": "Imp", "rarity": { "Announce": false, "Color": null, @@ -96584,58 +99939,62 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16746705031", + "thumbnail": "rbxassetid://15805726087", }, - "configName": "Lunar Fox", + "configName": "Imp", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.910Z", - "hashShort": "9ff1fe9a6018a8ed", + "dateModified": "2026-06-27T16:05:31.412Z", + "hashShort": "816d063cb17d123a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 710853957, + 280171, + 311975, + 329307, ], - "fromEgg": "Tech Moon Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 135, - "goldenThumbnail": "rbxassetid://16746704728", - "maxChance": 0.08991008991008992, - "name": "Lunar Deer", + "fromEgg": "Golden Brick Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 69, + "goldenThumbnail": "rbxassetid://15805725673", + "maxChance": 0.6993006993006994, + "name": "Golden Retriever", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16746704804", + "thumbnail": "rbxassetid://15805725808", }, - "configName": "Lunar Deer", + "configName": "Golden Retriever", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.926Z", - "hashShort": "a60431b7df7bf784", + "dateModified": "2026-06-27T16:05:31.416Z", + "hashShort": "9e7aa82cb6e2bca3", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 180425231, + 315555, + 351242, + 370774, ], - "fromEgg": "Tech Ice Circuit Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 125, - "goldenThumbnail": "rbxassetid://16746703785", - "maxChance": 0.9, - "name": "Frostbyte Cat", + "fromEgg": "Cobblestone Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 70, + "goldenThumbnail": "rbxassetid://15805725467", + "maxChance": 0.6993006993006994, + "name": "Enchanted Raccoon", "rarity": { "Announce": false, "Color": null, @@ -96648,52 +100007,63 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16746703911", + "thumbnail": "rbxassetid://15805725579", }, - "configName": "Frostbyte Cat", + "configName": "Enchanted Raccoon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.920Z", - "hashShort": "373cf7f80ccc02fe", + "dateModified": "2026-06-27T16:05:31.417Z", + "hashShort": "aad2e0b8dd88b6db", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://16746708967", - "name": "Thunder Bear", + "cachedPower": [ + 292959, + 325139, + 348712, + ], + "fromEgg": "Cobblestone Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 70, + "goldenThumbnail": "rbxassetid://15805725191", + "maxChance": 0.1998001998001998, + "name": "Enchanted Fox", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16746709043", + "thumbnail": "rbxassetid://15805725330", }, - "configName": "Thunder Bear", + "configName": "Enchanted Fox", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.908Z", - "hashShort": "8e9463618cbd41b2", + "dateModified": "2026-06-27T16:05:31.418Z", + "hashShort": "03e09df41216cc23", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 799710702, + 336408, + 372553, + 397405, ], - "fromEgg": "Tech Mars Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 136, - "goldenThumbnail": "rbxassetid://16764657640", - "maxChance": 0.09, - "name": "Red Woofy", + "fly": true, + "fromEgg": "Cobblestone Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 70, + "goldenThumbnail": "rbxassetid://15805724888", + "maxChance": 0.08991008991008992, + "name": "Enchanted Dragon", "rarity": { "Announce": false, "Color": null, @@ -96706,26 +100076,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16746706891", + "thumbnail": "rbxassetid://15805725040", }, - "configName": "Red Woofy", + "configName": "Enchanted Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.922Z", - "hashShort": "79bb63398094366a", + "dateModified": "2026-06-27T16:05:31.440Z", + "hashShort": "59e61b1915603620", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 328907122, + 221461, + 246746, + 260713, ], - "fromEgg": "Nuclear Crack Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 129, - "goldenThumbnail": "rbxassetid://16746705903", - "maxChance": 0.8991008991008992, - "name": "Nuclear Axolotl", + "fromEgg": "Firefly Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 68, + "goldenThumbnail": "rbxassetid://15805724487", + "maxChance": 0.7492507492507493, + "name": "Cold Ladybug", "rarity": { "Announce": false, "Color": null, @@ -96738,60 +100110,63 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16746706084", + "thumbnail": "rbxassetid://15805724703", }, - "configName": "Nuclear Axolotl", + "configName": "Cold Ladybug", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.921Z", - "hashShort": "3828519cc485ae0f", + "dateModified": "2026-06-27T16:05:31.419Z", + "hashShort": "c74cfbb8b875f220", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 311682722, + 249327, + 277693, + 293373, ], "fly": true, - "fromEgg": "Tech Nexus Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 128, - "goldenThumbnail": "rbxassetid://16746703541", - "maxChance": 0.08991008991008992, - "name": "Evil Computer", + "fromEgg": "Firefly Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 68, + "goldenThumbnail": "rbxassetid://15805724208", + "maxChance": 0.6243496357960459, + "name": "Cold Firefly", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16746703643", + "thumbnail": "rbxassetid://15805724346", }, - "configName": "Evil Computer", + "configName": "Cold Firefly", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.909Z", - "hashShort": "f6f754cfa8ce0ae6", + "dateModified": "2026-06-27T16:05:31.420Z", + "hashShort": "d34cfc7b232b51be", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 350643063, + 329579, + 365631, + 392133, ], - "fly": true, - "fromEgg": "Nuclear Crack Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 129, - "goldenThumbnail": "rbxassetid://16746707233", - "maxChance": 0.08991008991008992, - "name": "Nuclear Dragon", + "fromEgg": "Ruins Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 71, + "goldenThumbnail": "rbxassetid://15805727771", + "maxChance": 0.1998001998001998, + "name": "Rock Cat", "rarity": { "Announce": false, "Color": null, @@ -96804,79 +100179,96 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16746708235", + "thumbnail": "rbxassetid://15805727880", }, - "configName": "Nuclear Dragon", + "configName": "Rock Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.912Z", - "hashShort": "b8888b64bcf42c17", + "dateModified": "2026-06-27T16:05:31.419Z", + "hashShort": "db08f2d9cb7aa14d", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://16746704524", - "name": "Jester Dog", + "cachedPower": [ + 1523852, + 1682773, + 1797112, + ], + "fromEgg": "Gummy Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 84, + "goldenThumbnail": "rbxassetid://16043359832", + "maxChance": 0.1998001998001998, + "name": "Gummy Raccoon", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16746704663", + "thumbnail": "rbxassetid://16043359584", }, - "configName": "Jester Dog", + "configName": "Gummy Raccoon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.919Z", - "hashShort": "38864ee5ff36da5e", + "dateModified": "2026-06-27T16:05:31.421Z", + "hashShort": "72be1c9f0b9459e4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "rbxassetid://16746708772", - "name": "Super Tiger", + "cachedPower": [ + 1749854, + 1927212, + 2055113, + ], + "fromEgg": "Gummy Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 84, + "goldenThumbnail": "rbxassetid://16043360110", + "maxChance": 0.08991008991008992, + "name": "Gummy Fox", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16746708885", + "thumbnail": "rbxassetid://16043359977", }, - "configName": "Super Tiger", + "configName": "Gummy Fox", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.911Z", - "hashShort": "7d79881d96f62980", + "dateModified": "2026-06-27T16:05:31.421Z", + "hashShort": "a5b61e2c965e52e8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1351772313, + 1641382, + 1820635, + 1912621, ], - "fromEgg": "Electric City Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 141, - "goldenThumbnail": "rbxassetid://16746702192", - "maxChance": 0.8991008991008992, - "name": "Electric Bear", + "fromEgg": "Gummy Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 84, + "goldenThumbnail": "rbxassetid://16043360472", + "maxChance": 0.4995004995004995, + "name": "Gummy Bear", "rarity": { "Announce": false, "Color": null, @@ -96889,26 +100281,29 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16746702289", + "thumbnail": "rbxassetid://16043360293", }, - "configName": "Electric Bear", + "configName": "Gummy Bear", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.922Z", - "hashShort": "445c27120d3d16c8", + "dateModified": "2026-06-27T16:05:31.423Z", + "hashShort": "32c5ecd26c45dcdc", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1280981913, + 1382600, + 1523797, + 1624958, ], - "fromEgg": "Electric Garden Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 140, - "goldenThumbnail": "rbxassetid://16746702369", + "fly": true, + "fromEgg": "Mythic Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 82, + "goldenThumbnail": "rbxassetid://16043361076", "maxChance": 0.08991008991008992, - "name": "Electric Bunny", + "name": "Encrusted Dragon", "rarity": { "Announce": false, "Color": null, @@ -96921,58 +100316,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16746702462", - }, - "configName": "Electric Bunny", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.913Z", - "hashShort": "1fcedbe5d90fd91e", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 1520743852, - ], - "fromEgg": "Electric Forest Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 142, - "goldenThumbnail": "rbxassetid://16746702612", - "maxChance": 0.8991008991008992, - "name": "Electric Cat", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - "thumbnail": "rbxassetid://16746702740", + "thumbnail": "rbxassetid://16043360960", }, - "configName": "Electric Cat", + "configName": "Encrusted Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.914Z", - "hashShort": "05a38ba869ded8c1", + "dateModified": "2026-06-27T16:05:31.422Z", + "hashShort": "7a4566b4c7ffb9da", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1621242734, + 1555426, + 1713669, + 1827415, ], - "fromEgg": "Electric Forest Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 142, - "goldenThumbnail": "rbxassetid://16746702851", + "fromEgg": "Cotton Candy Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 83, + "goldenThumbnail": "rbxassetid://16043365204", "maxChance": 0.08991008991008992, - "name": "Electric Corgi", + "name": "Cotton Candy Unicorn", "rarity": { "Announce": false, "Color": null, @@ -96985,26 +100350,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16746702949", + "thumbnail": "rbxassetid://16043365064", }, - "configName": "Electric Corgi", + "configName": "Cotton Candy Unicorn", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.915Z", - "hashShort": "ba06160fe6d1a791", + "dateModified": "2026-06-27T16:05:31.435Z", + "hashShort": "7faabd5baeded6ef", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1201575389, + 1459007, + 1618688, + 1700985, ], - "fromEgg": "Electric Garden Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 140, - "goldenThumbnail": "rbxassetid://16746703097", - "maxChance": 0.8991008991008992, - "name": "Electric Fox", + "fromEgg": "Cotton Candy Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 83, + "goldenThumbnail": "rbxassetid://16043365467", + "maxChance": 0.6993006993006994, + "name": "Cotton Candy Cow", "rarity": { "Announce": false, "Color": null, @@ -97017,27 +100384,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16746703212", + "thumbnail": "rbxassetid://16043365309", }, - "configName": "Electric Fox", + "configName": "Cotton Candy Cow", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.908Z", - "hashShort": "0a36982f59d62b1e", + "dateModified": "2026-06-27T16:05:31.429Z", + "hashShort": "51dd895fab44cdfd", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1441104652, + 8090671, + 8875549, + 9466669, ], - "fly": true, - "fromEgg": "Electric City Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 141, - "goldenThumbnail": "rbxassetid://16746703344", + "fromEgg": "Heaven Castle Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 97, + "goldenThumbnail": "rbxassetid://16043355173", "maxChance": 0.08991008991008992, - "name": "Electric Griffin", + "name": "Vibrant Whale", "rarity": { "Announce": false, "Color": null, @@ -97050,91 +100418,97 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16746703468", + "thumbnail": "rbxassetid://16043355041", }, - "configName": "Electric Griffin", + "configName": "Vibrant Whale", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.909Z", - "hashShort": "d57e42b935cf7bf5", + "dateModified": "2026-06-27T16:05:31.431Z", + "hashShort": "ffbc6a5623e43dcd", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 443782626, + 11298403, + 12467305, + 13304684, ], - "fromEgg": "Nuclear Mine Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 131, - "goldenThumbnail": "rbxassetid://16746708561", - "maxChance": 0.08991008991008992, - "name": "Nuclear Mining Dog", + "fly": true, + "fromEgg": "Rainbow Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 99, + "goldenThumbnail": "rbxassetid://16043355544", + "maxChance": 0.000019979612803095722, + "name": "Vibrant Toucan", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://16746708632", + "thumbnail": "rbxassetid://16043355332", }, - "configName": "Nuclear Mining Dog", + "configName": "Vibrant Toucan", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.910Z", - "hashShort": "13217dd18f7b1498", + "dateModified": "2026-06-27T16:05:31.433Z", + "hashShort": "e72746e22c5ceae8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 499255454, + 10239761, + 11275190, + 12020940, ], - "fly": true, - "fromEgg": "Nuclear Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 132, - "goldenThumbnail": "rbxassetid://16746705619", - "maxChance": 0.08991008991008992, - "name": "Nuclear Agony", + "fromEgg": "Rainbow Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 99, + "goldenThumbnail": "rbxassetid://16043355910", + "maxChance": 0.0009989806401547862, + "name": "Vibrant Cobra", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://16746705737", + "thumbnail": "rbxassetid://16043355769", }, - "configName": "Nuclear Agony", + "configName": "Vibrant Cobra", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.918Z", - "hashShort": "f5704ab83a1a68d3", + "dateModified": "2026-06-27T16:05:31.431Z", + "hashShort": "539087e50d733a38", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 468307211, + 9102005, + 10012077, + 10678999, ], - "fromEgg": "Nuclear Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 132, - "goldenThumbnail": "rbxassetid://16746706194", - "maxChance": 0.8991008991008992, - "name": "Nuclear Mortuus", + "fromEgg": "Colorful Cloud Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 98, + "goldenThumbnail": "rbxassetid://16043358267", + "maxChance": 0.2996941920464358, + "name": "Pastel Goat", "rarity": { "Announce": false, "Color": null, @@ -97147,26 +100521,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16746706290", + "thumbnail": "rbxassetid://16043358145", }, - "configName": "Nuclear Mortuus", + "configName": "Pastel Goat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.907Z", - "hashShort": "c7b1e6e9d9c8683d", + "dateModified": "2026-06-27T16:05:31.430Z", + "hashShort": "5995fe2d54182f0c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 394473445, + 7926438, + 8720002, + 9274817, ], - "fromEgg": "Nuclear Forest Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 130, - "goldenThumbnail": "rbxassetid://16764648195", - "maxChance": 0.08991008991008992, - "name": "Nuclear Wolf", + "fromEgg": "Colorful Cloud Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 98, + "goldenThumbnail": "rbxassetid://16043358753", + "maxChance": 0.1998001998001998, + "name": "Pastel Elephant", "rarity": { "Announce": false, "Color": null, @@ -97179,26 +100555,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16746706571", + "thumbnail": "rbxassetid://16043358433", }, - "configName": "Nuclear Wolf", + "configName": "Pastel Elephant", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.917Z", - "hashShort": "780495f778489f80", + "dateModified": "2026-06-27T16:05:31.432Z", + "hashShort": "7897c2b13e7a141b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 416273076, + 3743496, + 4146652, + 4347599, ], - "fromEgg": "Nuclear Mine Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 131, - "goldenThumbnail": "rbxassetid://16746708387", + "fromEgg": "Cloud Garden Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 91, + "goldenThumbnail": "rbxassetid://16043557601", "maxChance": 0.8991008991008992, - "name": "Nuclear Mining Cat", + "name": "Blossom Squirrel", "rarity": { "Announce": false, "Color": null, @@ -97211,58 +100589,62 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16746708501", + "thumbnail": "rbxassetid://16043367219", }, - "configName": "Nuclear Mining Cat", + "configName": "Blossom Squirrel", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.905Z", - "hashShort": "d854669947970aee", + "dateModified": "2026-06-27T16:05:31.434Z", + "hashShort": "4d020892a63fd509", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 561662386, + 3327552, + 3686585, + 3866265, ], - "fromEgg": "Tech Rocket Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 133, - "goldenThumbnail": "rbxassetid://16746701992", - "maxChance": 0.08991008991008992, - "name": "Astronaut Dog", + "fromEgg": "Cloud Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 90, + "goldenThumbnail": "rbxassetid://16043365668", + "maxChance": 0.8991008991008992, + "name": "Cloud Penguin", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16746702070", + "thumbnail": "rbxassetid://16043365595", }, - "configName": "Astronaut Dog", + "configName": "Cloud Penguin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.930Z", - "hashShort": "7bbe06cf06b03a8f", + "dateModified": "2026-06-27T16:05:31.433Z", + "hashShort": "d5b85776ac82cb4d", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1710836834, + 1296895, + 1439147, + 1512782, ], - "fromEgg": "Electric Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 143, - "goldenThumbnail": "rbxassetid://16747972472", - "maxChance": 0.8991008991008992, - "name": "Electric Unicorn", + "fromEgg": "Mythic Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 82, + "goldenThumbnail": "rbxassetid://16043360783", + "maxChance": 0.6993006993006994, + "name": "Encrusted Wolf", "rarity": { "Announce": false, "Color": null, @@ -97275,27 +100657,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16747972522", + "thumbnail": "rbxassetid://16043360588", }, - "configName": "Electric Unicorn", + "configName": "Encrusted Wolf", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.922Z", - "hashShort": "fcec8c5136c2bbf4", + "dateModified": "2026-06-27T16:05:31.434Z", + "hashShort": "bf40eb516997162d", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2596917377, + 3547455, + 3899439, + 4158120, ], - "fly": true, - "fromEgg": "Tech Hive Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 146, - "goldenThumbnail": "rbxassetid://16747972631", + "fromEgg": "Cloud Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 90, + "goldenThumbnail": "rbxassetid://16043365955", "maxChance": 0.08991008991008992, - "name": "M-B PROTOTYPE", + "name": "Cloud Monkey", "rarity": { "Announce": false, "Color": null, @@ -97308,27 +100691,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16747972793", + "thumbnail": "rbxassetid://16043365782", }, - "configName": "M-B PROTOTYPE", + "configName": "Cloud Monkey", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.915Z", - "hashShort": "ce5b166ba4369440", + "dateModified": "2026-06-27T16:05:31.437Z", + "hashShort": "6fa0a399cb0f7aff", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1823898075, + 3990887, + 4385539, + 4676469, ], - "fly": true, - "fromEgg": "Electric Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 143, - "goldenThumbnail": "rbxassetid://16747972338", + "fromEgg": "Cloud Garden Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 91, + "goldenThumbnail": "rbxassetid://16043557977", "maxChance": 0.08991008991008992, - "name": "Electric Dragon", + "name": "Blossom Koi Fish", "rarity": { "Announce": false, "Color": null, @@ -97341,26 +100725,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16747972405", + "thumbnail": "rbxassetid://16043557777", }, - "configName": "Electric Dragon", + "configName": "Blossom Koi Fish", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.917Z", - "hashShort": "b780cf866bc5b5db", + "dateModified": "2026-06-27T16:05:31.435Z", + "hashShort": "61b23a71a44af575", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2435937601, + 4211433, + 4664150, + 4888898, ], - "fromEgg": "Tech Hive Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 146, - "goldenThumbnail": "rbxassetid://16747972888", + "fromEgg": "Cloud Forest Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 92, + "goldenThumbnail": "rbxassetid://16043366163", "maxChance": 0.8991008991008992, - "name": "Robot Bee", + "name": "Cloud Hedgehog", "rarity": { "Announce": false, "Color": null, @@ -97373,246 +100759,307 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://16747972982", + "thumbnail": "rbxassetid://16043366050", }, - "configName": "Robot Bee", + "configName": "Cloud Hedgehog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.927Z", - "hashShort": "bd470542fa30afc4", + "dateModified": "2026-06-27T16:05:31.436Z", + "hashShort": "4440b3914ef99266", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976522526", - "hidden": false, - "huge": true, - "indexDesc": "Comes with Series 2 Lunch Bag DLC!", - "indexObtainable": true, - "name": "Huge Pixel Wolf", + "cachedPower": [ + 8537782, + 9447270, + 9911405, + ], + "fly": true, + "fromEgg": "Colorful Cloud Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 98, + "goldenThumbnail": "rbxassetid://16043358020", + "maxChance": 0.6992864481083503, + "name": "Pastel Griffin", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14976522632", + "thumbnail": "rbxassetid://16043357891", }, - "configName": "Huge Pixel Wolf", + "configName": "Pastel Griffin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.074Z", - "hashShort": "01a9913daa681ded", + "dateModified": "2026-06-27T16:05:31.437Z", + "hashShort": "c405737749d5a0f0", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://16901792834", - "huge": true, - "indexDesc": "Found in the Hype Egg every update!", - "indexObtainable": true, - "name": "Huge Party Dragon", + "cachedPower": [ + 5050966, + 5547172, + 5915187, + ], + "fromEgg": "Cloud House Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 93, + "goldenThumbnail": "rbxassetid://16043366417", + "maxChance": 0.08991008991008992, + "name": "Cloud Dog", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16901792712", + "thumbnail": "rbxassetid://16043366316", }, - "configName": "Huge Party Dragon", + "configName": "Cloud Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.706Z", - "hashShort": "f299f614d68d1437", + "dateModified": "2026-06-27T16:05:31.438Z", + "hashShort": "f1ca010ce31abaca", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://16914837569", - "huge": true, - "indexDesc": "Found in Treasure Hideout minigame!", - "indexObtainable": true, - "name": "Huge Electric Cat", + "cachedPower": [ + 4489748, + 4932262, + 5259468, + ], + "fromEgg": "Cloud Forest Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 92, + "goldenThumbnail": "rbxassetid://16043359123", + "maxChance": 0.08991008991008992, + "name": "Pastel Deer", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://16914837316", + "thumbnail": "rbxassetid://16043358958", }, - "configName": "Huge Electric Cat", + "configName": "Pastel Deer", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.691Z", - "hashShort": "26c53c4e730ebc3f", + "dateModified": "2026-06-27T16:05:31.439Z", + "hashShort": "c6c4f3dd2e692bb0", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "particlesSketch": { - "Farm": { - "Left": null, - "Right": null, - }, - "Idle": { - "Left": null, - "Right": null, - }, - }, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://17028962738", - "huge": true, - "indexDesc": "Found in the Exclusive Sketch Egg!", - "indexObtainable": true, - "name": "Huge Sketch Dragon", + "cachedPower": [ + 5682337, + 6238775, + 6652697, + ], + "fromEgg": "Cloud Castle Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 94, + "goldenThumbnail": "rbxassetid://16043356504", + "maxChance": 0.08991008991008992, + "name": "Royal Cloud Corgi", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17027110585", + "thumbnail": "rbxassetid://16043356327", }, - "configName": "Huge Sketch Dragon", + "configName": "Royal Cloud Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.699Z", - "hashShort": "e8b5fad47c3e2028", + "dateModified": "2026-06-27T16:05:31.438Z", + "hashShort": "521610d6fc266ffe", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "particlesSketch": { - "Farm": { - "Left": null, - "Right": null, - }, - "Idle": { - "Left": null, - "Right": null, - }, - }, - }, - "goldenThumbnail": "rbxassetid://17028962868", - "huge": true, - "indexDesc": "Found in the Exclusive Sketch Egg!", - "indexObtainable": true, - "name": "Huge Sketch Corgi", + "cachedPower": [ + 5330096, + 5901023, + 6182227, + ], + "fromEgg": "Cloud Castle Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 94, + "goldenThumbnail": "rbxassetid://16043356772", + "maxChance": 0.6993006993006994, + "name": "Royal Cloud Cat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17027110720", + "thumbnail": "rbxassetid://16043356632", }, - "configName": "Huge Sketch Corgi", + "configName": "Royal Cloud Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.694Z", - "hashShort": "42587f3cc27ec395", + "dateModified": "2026-06-27T16:05:31.441Z", + "hashShort": "81e3188f9e9be7f8", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://17024851744", - "huge": true, - "indexDesc": "Reward in the 2024 Pixel Clan Battle!", - "indexObtainable": true, - "name": "Huge Pixel Shark", + "cachedPower": [ + 4737863, + 5246251, + 5497639, + ], + "fly": true, + "fromEgg": "Cloud House Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 93, + "goldenThumbnail": "rbxassetid://16043366751", + "maxChance": 0.8991008991008992, + "name": "Cloud Bat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17024845317", + "thumbnail": "rbxassetid://16043366600", }, - "configName": "Huge Pixel Shark", + "configName": "Cloud Bat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.693Z", - "hashShort": "fde927ebe9fd04ee", + "dateModified": "2026-06-27T16:05:31.439Z", + "hashShort": "6ab5b7d513207d39", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://17028331329", - "huge": true, - "indexDesc": "Found in the Clan Gift!", - "indexObtainable": true, - "name": "Huge Tech Samurai Cat", + "cachedPower": [ + 845630, + 935337, + 1000600, + ], + "fromEgg": "Shadow Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 79, + "goldenThumbnail": "rbxassetid://16043367051", + "maxChance": 0.1998001998001998, + "name": "Blue Slime", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17028331108", + "thumbnail": "rbxassetid://16043366874", }, - "configName": "Huge Tech Samurai Cat", + "configName": "Blue Slime", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.692Z", - "hashShort": "07b06f39dc1f0002", + "dateModified": "2026-06-27T16:05:31.442Z", + "hashShort": "8b01457d0946ed29", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://17028306770", - "huge": true, - "indexDesc": "Found in the Global Event Gift!", - "indexObtainable": true, - "name": "Huge Lunar Moth", + "animations": { + "customAnimations": true, + "fadeFrames": [ + { + "duration": 3, + "iconThumbnail": "rbxassetid://16047313414", + "instant": true, + "textureName": "frame1", + }, + { + "duration": 1, + "iconThumbnail": "rbxassetid://16047314024", + "instant": true, + "textureName": "frame2", + }, + { + "duration": 1, + "iconThumbnail": "rbxassetid://16047699763", + "instant": true, + "textureName": "frame3", + }, + { + "duration": 5, + "iconThumbnail": "rbxassetid://16047699544", + "instant": true, + "textureName": "frame4", + }, + { + "duration": 1, + "iconThumbnail": "rbxassetid://16047699763", + "instant": true, + "textureName": "frame3", + }, + { + "duration": 1, + "iconThumbnail": "rbxassetid://16047314024", + "instant": true, + "textureName": "frame2", + }, + ], + "idleActionAnimations": [ + [ + "LookAround", + 0.6, + ], + ], + }, + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://16043364155", + "name": "Emoji Cat", "rarity": { "Announce": true, "Color": null, @@ -97625,21 +101072,43 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17028306654", + "thumbnail": "rbxassetid://16047313527", }, - "configName": "Huge Lunar Moth", + "configName": "Emoji Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.706Z", - "hashShort": "d56d3255358ae805", + "dateModified": "2025-07-05T23:28:56.591Z", + "hashShort": "810eb435b3869939", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://16901676326", - "indexDesc": "Found in the Hype Egg every update!", - "indexObtainable": true, - "name": "Titanic Party Cat", + "animations": { + "customAnimations": true, + "fadeFrames": [ + { + "duration": 2, + "iconThumbnail": "rbxassetid://16047312407", + "instant": true, + "textureName": "frame1", + }, + { + "duration": 3, + "iconThumbnail": "rbxassetid://16047312609", + "instant": true, + "textureName": "frame2", + }, + ], + "idleActionAnimations": [ + [ + "Angry", + 0.3, + ], + ], + }, + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://16043362572", + "name": "Emoji Dog", "rarity": { "Announce": true, "Color": null, @@ -97652,34 +101121,43 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16901676187", - "titanic": true, + "thumbnail": "rbxassetid://16047312609", }, - "configName": "Titanic Party Cat", + "configName": "Emoji Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.237Z", - "hashShort": "c1f22d16dcb27a68", + "dateModified": "2025-07-05T23:28:56.605Z", + "hashShort": "b92ba0ac0e2ec336", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { "animations": { - "particlesSketch": { - "Farm": { - "Left": null, - "Right": null, + "customAnimations": true, + "fadeFrames": [ + { + "duration": 2, + "iconThumbnail": "rbxassetid://16047312048", + "instant": true, + "textureName": "frame1", }, - "Idle": { - "Left": null, - "Right": null, + { + "duration": 3, + "iconThumbnail": "rbxassetid://16047363462", + "instant": true, + "textureName": "frame2", }, - }, + ], + "idleActionAnimations": [ + [ + "MonkeyBackflip", + 1, + ], + ], }, - "goldenThumbnail": "rbxassetid://17028962602", - "indexDesc": "Found in the Exclusive Sketch Egg!", - "indexObtainable": true, - "name": "Titanic Sketch Cat", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://16043362082", + "name": "Emoji Monkey", "rarity": { "Announce": true, "Color": null, @@ -97692,27 +101170,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17027114400", - "titanic": true, + "thumbnail": "rbxassetid://16047363462", }, - "configName": "Titanic Sketch Cat", + "configName": "Emoji Monkey", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.239Z", - "hashShort": "608dd6830cf96543", + "dateModified": "2025-07-05T23:28:56.591Z", + "hashShort": "4c5d52c2fd52a610", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 54389772774, + 971044, + 1071386, + 1142564, ], - "fromEgg": "Dominus Rex Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 173, - "goldenThumbnail": "rbxassetid://14968211239", - "maxChance": 0.1998001998001998, - "name": "Domortuus", + "fromEgg": "Shadow Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 79, + "goldenThumbnail": "rbxassetid://16043356152", + "maxChance": 0.08991008991008992, + "name": "Stacked King Slime", "rarity": { "Announce": false, "Color": null, @@ -97725,26 +101204,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968211665", + "thumbnail": "rbxassetid://16043356028", }, - "configName": "Domortuus", + "configName": "Stacked King Slime", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.584Z", - "hashShort": "d2c7acff5f301ea2", + "dateModified": "2026-06-27T16:05:31.499Z", + "hashShort": "4135ddf10ecc7314", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 6527875161, + 1092425, + 1204860, + 1284883, ], - "fromEgg": "Steampunk Lantern Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 155, - "goldenThumbnail": "rbxassetid://14968354944", - "maxChance": 0.1998001998001998, - "name": "Toy Mouse", + "fromEgg": "Treasure Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 80, + "goldenThumbnail": "rbxassetid://16043359430", + "maxChance": 0.08991008991008992, + "name": "Knight Cat", "rarity": { "Announce": false, "Color": null, @@ -97757,58 +101238,62 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968355065", + "thumbnail": "rbxassetid://16043359236", }, - "configName": "Toy Mouse", + "configName": "Knight Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.931Z", - "hashShort": "b331531025b86c6b", + "dateModified": "2026-06-27T16:05:31.552Z", + "hashShort": "d90b93a482be5591", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 7031352345, + 2746031, + 3027960, + 3228654, ], - "fromEgg": "Steampunk Lantern Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 155, - "goldenThumbnail": "rbxassetid://14968224191", - "maxChance": 0.6993006993006994, - "name": "Ducky Magician", + "fromEgg": "Hot Air Balloon Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 89, + "goldenThumbnail": "rbxassetid://16043357741", + "maxChance": 0.1998001998001998, + "name": "Popcorn Cat", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968224321", + "thumbnail": "rbxassetid://16043357636", }, - "configName": "Ducky Magician", + "configName": "Popcorn Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.932Z", - "hashShort": "dfc890925b2a3a9d", + "dateModified": "2026-06-27T16:05:31.555Z", + "hashShort": "d9267f119fdfc78c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 7910271388, + 910851, + 1011452, + 1064227, ], - "fromEgg": "Steampunk Clockwork Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 156, - "goldenThumbnail": "rbxassetid://14968343093", + "fromEgg": "Shadow Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 79, + "goldenThumbnail": "rbxassetid://16043357527", "maxChance": 0.6993006993006994, - "name": "Steampunk Crocodile", + "name": "Queen Slime", "rarity": { "Announce": false, "Color": null, @@ -97821,1153 +101306,1235 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968343176", + "thumbnail": "rbxassetid://16043357408", }, - "configName": "Steampunk Crocodile", + "configName": "Queen Slime", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.925Z", - "hashShort": "bb5eac11e0da581b", + "dateModified": "2026-06-27T16:05:31.558Z", + "hashShort": "a63f349d46fecf18", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 7343859556, + 1024707, + 1137618, + 1196584, ], - "fromEgg": "Steampunk Clockwork Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 156, - "goldenThumbnail": "rbxassetid://14968343395", - "maxChance": 0.1998001998001998, - "name": "Steampunk Octopus", + "fromEgg": "Treasure Egg", + "fromWorldNumber": 1, + "fromZoneNumber": 80, + "goldenThumbnail": "rbxassetid://16043357021", + "maxChance": 0.6993006993006994, + "name": "Robber Goblin", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968343518", + "thumbnail": "rbxassetid://16043356911", }, - "configName": "Steampunk Octopus", + "configName": "Robber Goblin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.929Z", - "hashShort": "7eaa4f491d2020c5", + "dateModified": "2026-06-27T16:05:31.441Z", + "hashShort": "637ec26fe67d03cd", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 6663130390, - ], - "fromEgg": "Steampunk Gears Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 154, - "goldenThumbnail": "rbxassetid://14968343240", - "maxChance": 0.08991008991008992, - "name": "Steampunk Fish", + "fly": true, + "goldenThumbnail": "rbxassetid://14976421238", + "huge": true, + "indexDesc": "Reward in the 2024 Achievements Clan Battle!", + "indexObtainable": true, + "name": "Huge Empyrean Axolotl", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968343316", + "thumbnail": "rbxassetid://14976421410", }, - "configName": "Steampunk Fish", + "configName": "Huge Empyrean Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.921Z", - "hashShort": "9b23a0aa7636dfa7", + "dateModified": "2025-07-05T23:28:59.685Z", + "hashShort": "82cab5d13250066c", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 8433024400, - ], - "fromEgg": "Steampunk Clockwork Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 156, - "goldenThumbnail": "rbxassetid://14968281240", - "maxChance": 0.08991008991008992, - "name": "Mining Mole", + "goldenThumbnail": "rbxassetid://16291099415", + "huge": true, + "indexDesc": "Found in the Exclusive Valentine's Egg!", + "indexObtainable": true, + "name": "Huge Valentine's Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968281332", + "thumbnail": "rbxassetid://16290990548", }, - "configName": "Mining Mole", + "configName": "Huge Valentines Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.926Z", - "hashShort": "fb870ff09bfdd0c2", + "dateModified": "2025-07-05T23:28:59.687Z", + "hashShort": "d8fbc9f11b4f8234", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 7496021689, - ], - "fromEgg": "Steampunk Lantern Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 155, - "goldenThumbnail": "rbxassetid://14968279012", - "maxChance": 0.08991008991008992, - "name": "Mechanical Spider", + "animations": { + "balloon": true, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://16306792763", + "huge": true, + "indexDesc": "Found in the Exclusive Valentine's Egg!", + "indexObtainable": true, + "name": "Huge Heart Balloon Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968279152", + "thumbnail": "rbxassetid://16306792637", }, - "configName": "Mechanical Spider", + "configName": "Huge Heart Balloon Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.933Z", - "hashShort": "3bfb9b22acf9e339", + "dateModified": "2025-07-05T23:28:59.692Z", + "hashShort": "ff33717eda408f24", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 8261842001, - ], - "fromEgg": "Steampunk Airship Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 157, - "goldenThumbnail": "rbxassetid://14968343689", - "maxChance": 0.1998001998001998, - "name": "Steampunk Wolf", + "goldenThumbnail": "rbxassetid://16250978273", + "huge": true, + "indexDesc": "Tied to the Huge Plush merch in stores!", + "indexObtainable": true, + "name": "Huge Hot Dog", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968343794", + "thumbnail": "rbxassetid://16250978135", }, - "configName": "Steampunk Wolf", + "configName": "Huge Hot Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.930Z", - "hashShort": "6e7770688e4d4647", + "dateModified": "2025-07-05T23:28:59.695Z", + "hashShort": "2abe8e271352eb66", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 9487152450, - ], "fly": true, - "fromEgg": "Steampunk Airship Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 157, - "goldenThumbnail": "rbxassetid://14968182927", - "maxChance": 0.08991008991008992, - "name": "Blimp Dragon", + "goldenThumbnail": "rbxassetid://16251004477", + "huge": true, + "indexDesc": "Tied to the Huge Plush merch in stores!", + "indexObtainable": true, + "name": "Huge Purple Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968183021", + "thumbnail": "rbxassetid://16251004392", }, - "configName": "Blimp Dragon", + "configName": "Huge Purple Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.932Z", - "hashShort": "f22ec6b2dfc23de0", + "dateModified": "2025-07-05T23:28:59.691Z", + "hashShort": "019a89bf3f9570c4", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 8899055312, - ], - "fly": true, - "fromEgg": "Steampunk Airship Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 157, - "goldenThumbnail": "rbxassetid://14968342869", - "maxChance": 0.8991008991008992, - "name": "Steampunk Bat", + "goldenThumbnail": "rbxassetid://16125357265", + "indexDesc": "Comes with the Titanic Corgi plush!", + "indexObtainable": true, + "name": "Titanic Corgi", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968342991", + "thumbnail": "rbxassetid://16125357082", + "titanic": true, }, - "configName": "Steampunk Bat", + "configName": "Titanic Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.920Z", - "hashShort": "f251e917403941a8", + "dateModified": "2025-07-05T23:29:01.088Z", + "hashShort": "38eaf18928220256", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 62456297997, - ], - "fromEgg": "Dominus Rex Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 173, - "goldenThumbnail": "rbxassetid://14968339391", - "maxChance": 0.28999408412068395, - "name": "Stacked Dominus", + "goldenThumbnail": "rbxassetid://14977487161", + "name": "Titanic Axolotl", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968339508", + "thumbnail": "rbxassetid://14976585715", + "titanic": true, }, - "configName": "Stacked Dominus", + "configName": "Titanic Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.941Z", - "hashShort": "3574d04b6a38c2e3", + "dateModified": "2025-07-05T23:29:01.247Z", + "hashShort": "7f4a4efedf225e37", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 83153791814, - ], - "fromEgg": "Dominus Frigidus Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 174, - "goldenThumbnail": "rbxassetid://14968209751", - "maxChance": 3.9999184016646064e-7, - "name": "Dominus Alienus", + "animations": { + "boneFlyingAnimation": "rbxassetid://16359183141", + "ridingCameraOffset": null, + }, + "fly": true, + "flyingTitanic": true, + "goldenThumbnail": "rbxassetid://16234774701", + "indexDesc": "Comes with the Titanic Love Lamb plush!", + "indexObtainable": true, + "name": "Titanic Love Lamb", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968209853", + "thumbnail": "rbxassetid://16234774596", + "titanic": true, }, - "configName": "Dominus Alienus", + "configName": "Titanic Love Lamb", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.935Z", - "hashShort": "62a037088bdfaded", + "dateModified": "2025-07-05T23:29:01.246Z", + "hashShort": "6e790cf67eb44961", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 58584707414, - ], - "fromEgg": "Dominus Rex Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 173, - "goldenThumbnail": "rbxassetid://14968210742", - "maxChance": 0.6999857202913061, - "name": "Dominus Infernus", + "goldenThumbnail": "rbxassetid://16234782215", + "indexDesc": "Comes with the Titanic Valentines Cat plush!", + "indexObtainable": true, + "name": "Titanic Valentine's Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968210911", + "thumbnail": "rbxassetid://16234782048", + "titanic": true, }, - "configName": "Dominus Infernus", + "configName": "Titanic Valentines Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.658Z", - "hashShort": "51011d0fc7aa3fbd", + "dateModified": "2025-07-05T23:29:01.250Z", + "hashShort": "ca84dd8cb65e0ccb", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 6250090974, - ], - "fromEgg": "Steampunk Gears Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 154, - "goldenThumbnail": "rbxassetid://14968336124", - "maxChance": 0.6993006993006994, - "name": "Sophisticated Fox", + "goldenThumbnail": "rbxassetid://16306754911", + "indexDesc": "Found in the Exclusive Valentine's Egg!", + "indexObtainable": true, + "name": "Titanic Lovemelon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968336217", + "thumbnail": "rbxassetid://16306754796", + "titanic": true, }, - "configName": "Sophisticated Fox", + "configName": "Titanic Lovemelon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.146Z", - "hashShort": "7171c637d0e29cda", + "dateModified": "2025-07-05T23:29:01.248Z", + "hashShort": "f250385d0de3b97d", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 5802555699, - ], - "fromEgg": "Steampunk Gears Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 154, - "goldenThumbnail": "rbxassetid://14968190987", - "maxChance": 0.1998001998001998, - "name": "Cat Magician", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968357274", + "name": "Valentine's Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968191131", + "thumbnail": "rbxassetid://14968357373", }, - "configName": "Cat Magician", + "configName": "Valentines Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.158Z", - "hashShort": "23801578da9e4ede", + "dateModified": "2025-07-05T23:28:56.134Z", + "hashShort": "3893c8ba52b95c73", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 3682294287, - ], - "fromEgg": "Alien UFO Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 150, - "goldenThumbnail": "rbxassetid://17026768687", - "maxChance": 0.1, - "name": "Brain", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968202287", + "name": "Cupid Corgi", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026768803", + "thumbnail": "rbxassetid://14968202482", }, - "configName": "Brain", + "configName": "Cupid Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.929Z", - "hashShort": "b35aadf07adda603", + "dateModified": "2025-07-05T23:28:56.303Z", + "hashShort": "34a711be1db8167e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 3428548769, - ], - "fromEgg": "Alien UFO Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 150, - "goldenThumbnail": "rbxassetid://17026768363", - "maxChance": 0.9, - "name": "Alien Octopus", + "animations": { + "balloon": true, + }, + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "rbxassetid://16306672226", + "name": "Heart Balloon Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026768574", + "thumbnail": "rbxassetid://16306670734", }, - "configName": "Alien Octopus", + "configName": "Heart Balloon Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.931Z", - "hashShort": "3536cc826e5df42f", + "dateModified": "2025-07-05T23:28:56.749Z", + "hashShort": "bfd7ec0e36352d61", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 5555636421, - ], - "fly": true, - "fromEgg": "Space Junkyard Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 153, - "goldenThumbnail": "rbxassetid://17026775295", - "maxChance": 0.6993006993006994, - "name": "Junkyard Bat", + "goldenThumbnail": "rbxassetid://14976369867", + "huge": true, + "indexDesc": "Found in the Huge Machine Blurred Dominus Egg!", + "indexObtainable": true, + "name": "Huge Blurred Dominus", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026775468", + "thumbnail": "rbxassetid://14976370033", }, - "configName": "Junkyard Bat", + "configName": "Huge Blurred Dominus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.928Z", - "hashShort": "38b78661a3398427", + "dateModified": "2025-07-05T23:28:59.559Z", + "hashShort": "c8cda7e619e46b17", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 10011437226, - ], - "fromEgg": "Motherboard Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 158, - "goldenThumbnail": "rbxassetid://17026768940", - "maxChance": 0.8991008991008992, - "name": "Circuit Cat", + "goldenThumbnail": "rbxassetid://16498746040", + "huge": true, + "indexDesc": "Found in the Huge Machine Blurred Dominus Egg!", + "indexObtainable": true, + "name": "Huge Pastel Elephant", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026769153", + "thumbnail": "rbxassetid://16498745846", }, - "configName": "Circuit Cat", + "configName": "Huge Pastel Elephant", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.930Z", - "hashShort": "352d661a07c6835a", + "dateModified": "2025-07-05T23:28:59.552Z", + "hashShort": "c1d9edfbf65c6cc3", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 4389638654, - ], - "fromEgg": "Space Forge Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 151, - "goldenThumbnail": "rbxassetid://17026774077", - "maxChance": 0.8991008991008992, - "name": "Forged Cyclops", + "goldenThumbnail": "rbxassetid://14976532871", + "huge": true, + "indexDesc": "Found in the Huge Machine Blurred Dominus Egg!", + "indexObtainable": true, + "name": "Huge Red Fluffy", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026774215", + "thumbnail": "rbxassetid://14976533036", }, - "configName": "Forged Cyclops", + "configName": "Huge Red Fluffy", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.927Z", - "hashShort": "c4383ff155af1837", + "dateModified": "2025-07-05T23:28:59.559Z", + "hashShort": "268be830768552f5", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 12007177319, - ], "fly": true, - "fromEgg": "Aura Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 159, - "goldenThumbnail": "rbxassetid://17026769540", - "maxChance": 0.08991008991008992, - "name": "Circuit Griffin", + "goldenThumbnail": "rbxassetid://14976579094", + "huge": true, + "indexDesc": "Found in the Huge Machine Blurred Dominus Egg!", + "indexObtainable": true, + "name": "Huge Willow Wisp", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026769669", + "thumbnail": "rbxassetid://14976579205", }, - "configName": "Circuit Griffin", + "configName": "Huge Willow Wisp", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.931Z", - "hashShort": "b88cd6eb51fecb87", + "dateModified": "2025-07-05T23:28:59.556Z", + "hashShort": "f86b958012598d45", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 4938343485, - ], - "fromEgg": "Space Factory Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 152, - "goldenThumbnail": "rbxassetid://17026774349", - "maxChance": 0.8991008991008992, - "name": "Forged Hedgehog", + "fly": true, + "goldenThumbnail": "rbxassetid://14976360354", + "huge": true, + "indexDesc": "Found in the Huge Machine Blurred Dominus Egg!", + "indexObtainable": true, + "name": "Huge Bat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026774496", + "thumbnail": "rbxassetid://14976360459", }, - "configName": "Forged Hedgehog", + "configName": "Huge Bat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.929Z", - "hashShort": "a657e4cca672cf2c", + "dateModified": "2025-07-05T23:28:59.557Z", + "hashShort": "07eedcfaf3b01649", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 11262866879, - ], - "fromEgg": "Aura Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 159, - "goldenThumbnail": "rbxassetid://17026769256", - "maxChance": 0.8991008991008992, - "name": "Circuit Corgi", + "goldenThumbnail": "rbxassetid://14976419386", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Elephant", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026769389", + "thumbnail": "rbxassetid://14976419563", }, - "configName": "Circuit Corgi", + "configName": "Huge Elephant", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.914Z", - "hashShort": "36c0bdb9abf63a65", + "dateModified": "2025-07-05T23:28:59.543Z", + "hashShort": "04eacd4127b18cb7", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 4679729437, - ], - "fly": true, - "fromEgg": "Space Forge Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 151, - "goldenThumbnail": "rbxassetid://17026774645", - "maxChance": 0.08991008991008992, - "name": "Forged Robot", + "goldenThumbnail": "rbxassetid://16179890776", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Koi Fish", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026774776", + "thumbnail": "rbxassetid://16179890678", }, - "configName": "Forged Robot", + "configName": "Huge Koi Fish", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.920Z", - "hashShort": "c52408ae69beef86", + "dateModified": "2025-07-05T23:28:59.552Z", + "hashShort": "e7ffca742a0e99c8", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 10673046506, - ], - "fromEgg": "Motherboard Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 158, - "goldenThumbnail": "rbxassetid://17026769782", - "maxChance": 0.08991008991008992, - "name": "Circuit Slime", + "fly": true, + "goldenThumbnail": "rbxassetid://14976362543", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Bee", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026769942", + "thumbnail": "rbxassetid://14976362778", }, - "configName": "Circuit Slime", + "configName": "Huge Bee", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.921Z", - "hashShort": "ab2774f6e0390f96", + "dateModified": "2025-07-05T23:28:59.535Z", + "hashShort": "a20e452b193020e3", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 5264695617, - ], - "fromEgg": "Space Factory Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 152, - "goldenThumbnail": "rbxassetid://17026774933", - "maxChance": 0.08991008991008992, - "name": "Forged Turtle", + "goldenThumbnail": "rbxassetid://16410740693", + "huge": true, + "indexDesc": "Found in Secret Rooms!", + "indexObtainable": true, + "name": "Huge Lumi Axolotl", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026775079", + "thumbnail": "rbxassetid://16410740491", }, - "configName": "Forged Turtle", + "configName": "Huge Lumi Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.923Z", - "hashShort": "576fd8b52ee5ccf7", + "dateModified": "2025-07-05T23:28:59.702Z", + "hashShort": "f30b0b6f08210af1", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 5922782569, - ], - "fromEgg": "Space Junkyard Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 153, - "goldenThumbnail": "rbxassetid://17026775580", - "maxChance": 0.08991008991008992, - "name": "Junkyard Hound", + "goldenThumbnail": "rbxassetid://16410753812", + "huge": true, + "indexDesc": "Found inside minigame!", + "indexObtainable": true, + "name": "Huge Colorful Wisp", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026775686", + "thumbnail": "rbxassetid://16410753529", }, - "configName": "Junkyard Hound", + "configName": "Huge Colorful Wisp", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.916Z", - "hashShort": "9057beea3fb21eed", + "dateModified": "2025-07-05T23:28:59.701Z", + "hashShort": "079b461b8c3b571b", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 14254565894, - ], - "fromEgg": "Wizard Temple Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 161, - "goldenThumbnail": "rbxassetid://17026775791", - "maxChance": 0.8991008991008992, - "name": "Relic Bear", + "goldenThumbnail": "rbxassetid://14976496147", + "huge": true, + "indexDesc": "Reward in the 2024 Raid Clan Battle!", + "indexObtainable": true, + "name": "Huge Mystical Fox", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026776510", + "thumbnail": "rbxassetid://14976496299", }, - "configName": "Relic Bear", + "configName": "Huge Mystical Fox", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.911Z", - "hashShort": "bee81fbccb7a8851", + "dateModified": "2025-07-05T23:28:59.696Z", + "hashShort": "a4062ccce0818019", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 18040934960, - ], - "fromEgg": "Wizard Tower Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 163, - "goldenThumbnail": "rbxassetid://17026782475", - "maxChance": 0.8991008991008992, - "name": "Wizard Cat", + "goldenThumbnail": "rbxassetid://16472007123", + "huge": true, + "indexDesc": "Earned from the limited-time Huge Spinny Wheel!", + "indexObtainable": true, + "name": "Huge Hi-Tech Tiger", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026782764", + "thumbnail": "rbxassetid://16472006999", }, - "configName": "Wizard Cat", + "configName": "Huge Hi-Tech Tiger", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.925Z", - "hashShort": "d246eff33f92e115", + "dateModified": "2025-07-05T23:28:59.700Z", + "hashShort": "eebcd08151ebc9af", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 15196583795, - ], "fly": true, - "fromEgg": "Wizard Temple Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 161, - "goldenThumbnail": "rbxassetid://17026776672", - "maxChance": 0.08991008991008992, - "name": "Relic Dragon", + "goldenThumbnail": "rbxassetid://16472013505", + "huge": true, + "indexDesc": "Earned from the limited-time Happy Computer Event!", + "indexObtainable": true, + "name": "Huge Happy Computer", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026776805", + "thumbnail": "rbxassetid://16472013395", }, - "configName": "Relic Dragon", + "configName": "Huge Happy Computer", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.913Z", - "hashShort": "52cd9150577c453e", + "dateModified": "2025-07-05T23:28:59.684Z", + "hashShort": "3a7a257e237bdf12", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 16036386631, - ], - "fromEgg": "Wizard Forest Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 162, - "goldenThumbnail": "rbxassetid://17026776930", - "maxChance": 0.8991008991008992, - "name": "Relic Fox", + "animations": { + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.3, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.7, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.3, + }, + "goldenThumbnail": "rbxassetid://16471981376", + "huge": true, + "indexDesc": "Earned from the Tech Spinny Wheel!", + "indexObtainable": true, + "name": "Huge Abyssal Axolotl", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026777052", + "thumbnail": "rbxassetid://16471981261", }, - "configName": "Relic Fox", + "configName": "Huge Abyssal Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.914Z", - "hashShort": "691eca43a7f4f545", + "dateModified": "2025-07-05T23:28:59.708Z", + "hashShort": "063c2022122bab6e", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 13508074484, - ], - "fromEgg": "Wizard Ruins Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 160, - "goldenThumbnail": "rbxassetid://17026777335", - "maxChance": 0.08991008991008992, - "name": "Relic Goblin", + "fly": true, + "goldenThumbnail": "rbxassetid://16472011745", + "huge": true, + "indexDesc": "Earned from the Tech Chest!", + "indexObtainable": true, + "name": "Huge Cyber Agony", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026777629", + "thumbnail": "rbxassetid://16472011675", }, - "configName": "Relic Goblin", + "configName": "Huge Cyber Agony", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.925Z", - "hashShort": "666a0f2321ba097a", + "dateModified": "2025-07-05T23:28:59.688Z", + "hashShort": "2152790f81bb0f04", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 17096156769, - ], - "fromEgg": "Wizard Forest Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 162, - "goldenThumbnail": "rbxassetid://17026777745", - "maxChance": 0.08991008991008992, - "name": "Relic Raccoon", + "animations": { + "jelly": true, + "replacementPool": [ + [ + 1, + 0.5, + ], + [ + 2, + 0.2, + ], + [ + 3, + 0.15, + ], + [ + 4, + 0.1, + ], + [ + 5, + 0.05, + ], + ], + "replacements": [ + { + "desc": "Comes with a Lootbag inside! (50%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with a Enchant Book inside! (20%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with a Crystal Chest inside! (15%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with a Present inside! (10%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with a Pinata inside! (5%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + ], + }, + "goldenThumbnail": "rbxassetid://16483328226", + "huge": true, + "indexDesc": "Found in the Exclusive Super Jelly Egg!", + "indexObtainable": true, + "name": "Huge Jelly Axolotl", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026778003", + "thumbnail": "rbxassetid://16483328135", }, - "configName": "Relic Raccoon", + "configName": "Huge Jelly Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.906Z", - "hashShort": "f511c2e355d97fcf", + "dateModified": "2025-07-05T23:28:59.683Z", + "hashShort": "837136343361b597", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 12670725239, - ], - "fromEgg": "Wizard Ruins Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 160, - "goldenThumbnail": "rbxassetid://17026778289", - "maxChance": 0.8991008991008992, - "name": "Relic Squirrel", + "animations": { + "jelly": true, + "replacementPool": [ + [ + 1, + 0.5, + ], + [ + 2, + 0.2, + ], + [ + 3, + 0.15, + ], + [ + 4, + 0.1, + ], + [ + 5, + 0.05, + ], + ], + "replacements": [ + { + "desc": "Comes with a Lootbag inside! (50%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with a Enchant Book inside! (20%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with a Crystal Chest inside! (15%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with a Present inside! (10%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with a Pinata inside! (5%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + ], + }, + "goldenThumbnail": "rbxassetid://16495814288", + "huge": true, + "indexDesc": "Found in the Exclusive Super Jelly Egg!", + "indexObtainable": true, + "name": "Huge Jelly Monkey", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026778500", + "thumbnail": "rbxassetid://16495814071", }, - "configName": "Relic Squirrel", + "configName": "Huge Jelly Monkey", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.090Z", - "hashShort": "4ffa9c74ecf2fb54", + "dateModified": "2025-07-05T23:28:59.702Z", + "hashShort": "12a6bb79410155ef", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 19233176365, - ], - "fromEgg": "Wizard Tower Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 163, - "goldenThumbnail": "rbxassetid://17026782930", - "maxChance": 0.08991008991008992, - "name": "Wizard Unicorn", + "goldenThumbnail": "rbxassetid://16468736159", + "huge": true, + "indexDesc": "Found in Chest Raid minigame!", + "indexObtainable": true, + "name": "Huge Glitched Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026783042", + "thumbnail": "rbxassetid://16468736057", }, - "configName": "Wizard Unicorn", + "configName": "Huge Glitched Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.074Z", - "hashShort": "3dd363ca9965f3b3", + "dateModified": "2025-07-05T23:28:59.705Z", + "hashShort": "ca219f77569d8969", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 20296051830, - ], - "fromEgg": "Wizard Dungeon Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 164, - "goldenThumbnail": "rbxassetid://17026779130", - "maxChance": 0.8991008991008992, - "name": "Runic Wolf", + "goldenThumbnail": "rbxassetid://16393812985", + "indexDesc": "Comes with the Titanic Kawaii Cat plush!", + "indexObtainable": true, + "name": "Titanic Kawaii Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026779290", + "thumbnail": "rbxassetid://16393812743", + "titanic": true, }, - "configName": "Runic Wolf", + "configName": "Titanic Kawaii Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.089Z", - "hashShort": "68c51e91dcd790ee", + "dateModified": "2025-07-05T23:29:01.239Z", + "hashShort": "e06bac21a5b0fc90", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 49348186071, - ], - "fromEgg": "Tech Dojo Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 171, - "goldenThumbnail": "rbxassetid://17026779468", - "maxChance": 0.08991008991008992, - "name": "Tech Ninja Cow", + "goldenThumbnail": "rbxassetid://16393819369", + "indexDesc": "Comes with the Titanic Bread Shiba plush!", + "indexObtainable": true, + "name": "Titanic Bread Shiba", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026779632", + "thumbnail": "rbxassetid://16393819211", + "titanic": true, }, - "configName": "Tech Ninja Cow", + "configName": "Titanic Bread Shiba", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.076Z", - "hashShort": "d377c0cc3dcda326", + "dateModified": "2025-07-05T23:29:01.240Z", + "hashShort": "89f6dfa8511a7cab", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 21637323411, - ], + "animations": { + "jelly": true, + "replacementPool": [ + [ + 1, + 0.5, + ], + [ + 2, + 0.2, + ], + [ + 3, + 0.15, + ], + [ + 4, + 0.1, + ], + [ + 5, + 0.04, + ], + [ + 6, + 0.01, + ], + ], + "replacements": [ + { + "desc": "Comes with a Lootbag inside! (50%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with a Enchant Book inside! (20%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with a Crystal Chest inside! (15%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with a Present inside! (10%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with a Pinata inside! (4%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + { + "desc": "Comes with Preston inside! (1%)", + "dst": null, + "isUnique": true, + "title": "Jelly", + }, + ], + }, "fly": true, - "fromEgg": "Wizard Dungeon Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 164, - "goldenThumbnail": "rbxassetid://17026778683", - "maxChance": 0.08991008991008992, - "name": "Runic Agony", + "flyingTitanic": true, + "goldenThumbnail": "rbxassetid://16483351499", + "indexDesc": "Found in the Exclusive Super Jelly Egg!", + "indexObtainable": true, + "name": "Titanic Jelly Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026778881", + "thumbnail": "rbxassetid://16483343520", + "titanic": true, }, - "configName": "Runic Agony", + "configName": "Titanic Jelly Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.082Z", - "hashShort": "47d23eac8a56e5fc", - }, + "dateModified": "2025-07-05T23:29:01.248Z", + "hashShort": "2154bbd660d30a7e", + }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 24341988837, + 12959690, + 13965545, + 14685722, ], - "fromEgg": "Cyberpunk Undercity Egg", + "fromEgg": "Tech City Egg", "fromWorldNumber": 2, - "fromZoneNumber": 165, - "goldenThumbnail": "rbxassetid://17026770093", + "fromZoneNumber": 101, + "goldenThumbnail": "rbxassetid://14968205242", "maxChance": 0.08991008991008992, - "name": "Cyberpunk Axolotl", + "name": "Cyborg Ducky", "rarity": { "Announce": false, "Color": null, @@ -98980,186 +102547,191 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17026770223", + "thumbnail": "rbxassetid://14968205362", }, - "configName": "Cyberpunk Axolotl", + "configName": "Cyborg Ducky", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.083Z", - "hashShort": "8f7c997f4a6bf556", + "dateModified": "2026-06-27T16:05:18.120Z", + "hashShort": "d24351626b1b2b7e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 25687190597, + 23240443, ], - "fromEgg": "Cyberpunk Industrial Egg", + "fromEgg": "Tech Cuboid Egg", "fromWorldNumber": 2, - "fromZoneNumber": 166, - "goldenThumbnail": "rbxassetid://17026770373", - "maxChance": 0.8991008991008992, - "name": "Cyberpunk Bunny", + "fromZoneNumber": 105, + "goldenThumbnail": "rbxassetid://14968202776", + "maxChance": 0.000009999900000999989, + "name": "Cyber Fox", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://17026770495", + "thumbnail": "rbxassetid://14968202915", }, - "configName": "Cyberpunk Bunny", + "configName": "Cyber Fox", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.075Z", - "hashShort": "302741ffcbb75d36", + "dateModified": "2025-07-05T23:28:53.919Z", + "hashShort": "d2eac81bdbcd1253", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 28898089421, + 26145499, ], - "fromEgg": "Cyberpunk City Egg", + "fromEgg": "Tech Sprout Egg", "fromWorldNumber": 2, - "fromZoneNumber": 167, - "goldenThumbnail": "rbxassetid://17026770610", - "maxChance": 0.8991008991008992, - "name": "Cyberpunk Cat", + "fromZoneNumber": 106, + "goldenThumbnail": "rbxassetid://14968202610", + "maxChance": 0.000009999900000999989, + "name": "Cyber Bunny", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://17026770713", + "thumbnail": "rbxassetid://14968202676", }, - "configName": "Cyberpunk Cat", + "configName": "Cyber Bunny", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.091Z", - "hashShort": "2f1448d323326300", + "dateModified": "2025-07-05T23:28:53.929Z", + "hashShort": "4f5067f77687e554", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 30807829622, + 29413686, ], - "fromEgg": "Cyberpunk City Egg", + "fromEgg": "Tech Tree Egg", "fromWorldNumber": 2, - "fromZoneNumber": 167, - "goldenThumbnail": "rbxassetid://17026770829", - "maxChance": 0.08991008991008992, - "name": "Cyberpunk Dog", + "fromZoneNumber": 107, + "goldenThumbnail": "rbxassetid://14968203102", + "maxChance": 0.000009999900000999989, + "name": "Cyber Raccoon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://17026770948", + "thumbnail": "rbxassetid://14968203400", }, - "configName": "Cyberpunk Dog", + "configName": "Cyber Raccoon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.077Z", - "hashShort": "e91ac5b4ee15c7e1", + "dateModified": "2025-07-05T23:28:53.931Z", + "hashShort": "7717b4809097b9f2", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 22833058308, + 230283337, ], - "fromEgg": "Cyberpunk Undercity Egg", + "fly": true, + "fromEgg": "Tech Flurry Egg", "fromWorldNumber": 2, - "fromZoneNumber": 165, - "goldenThumbnail": "rbxassetid://17026771041", - "maxChance": 0.8991008991008992, - "name": "Cyberpunk Gecko", + "fromZoneNumber": 124, + "goldenThumbnail": "rbxassetid://15260349060", + "maxChance": 3.995922560619145e-7, + "name": "M-6 PROTOTYPE", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://17026771137", + "thumbnail": "rbxassetid://15260348918", }, - "configName": "Cyberpunk Gecko", + "configName": "M-6 PROTOTYPE", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.074Z", - "hashShort": "7c9039f47f552608", + "dateModified": "2025-07-05T23:28:53.933Z", + "hashShort": "46238295f3e2ffc9", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 34658808324, + 9494765, + 10200551, + 10720929, ], - "fromEgg": "Cyberpunk Road Egg", + "fromEgg": "Tech Ciruit Egg", "fromWorldNumber": 2, - "fromZoneNumber": 168, - "goldenThumbnail": "rbxassetid://17026771242", - "maxChance": 0.08991008991008992, - "name": "Cyberpunk Ghost", + "fromZoneNumber": 100, + "goldenThumbnail": "rbxassetid://14968204190", + "maxChance": 0.9, + "name": "Cyborg Cat", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17026771369", + "thumbnail": "rbxassetid://14968204327", }, - "configName": "Cyberpunk Ghost", + "configName": "Cyborg Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.090Z", - "hashShort": "f09d50596cf8f256", + "dateModified": "2026-06-27T16:05:28.068Z", + "hashShort": "c5f45e91d23fd970", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 38991159365, + 10197468, + 11003197, + 11557260, ], - "fromEgg": "Tech Kyoto Egg", + "fromEgg": "Tech Ciruit Egg", "fromWorldNumber": 2, - "fromZoneNumber": 169, - "goldenThumbnail": "rbxassetid://17026779796", - "maxChance": 0.08991008991008992, - "name": "Tech Ninja Giraffe", + "fromZoneNumber": 100, + "goldenThumbnail": "rbxassetid://14968204443", + "maxChance": 0.1, + "name": "Cyborg Dog", "rarity": { "Announce": false, "Color": null, @@ -99172,122 +102744,116 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17026779953", + "thumbnail": "rbxassetid://14968204634", }, - "configName": "Tech Ninja Giraffe", + "configName": "Cyborg Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.071Z", - "hashShort": "460fc996dd7a726c", + "dateModified": "2026-06-27T16:05:28.094Z", + "hashShort": "e663a2c662be4fc0", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 27384737442, - ], - "fromEgg": "Cyberpunk Industrial Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 166, - "goldenThumbnail": "rbxassetid://17026772124", - "maxChance": 0.08991008991008992, - "name": "Cyberpunk Meerkat", + "animations": { + "jelly": true, + }, + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://16483033972", + "name": "Jelly Shiba", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026772356", + "thumbnail": "rbxassetid://16495773748", }, - "configName": "Cyberpunk Meerkat", + "configName": "Jelly Shiba", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.094Z", - "hashShort": "25290b0b9d889d70", + "dateModified": "2025-07-05T23:28:56.583Z", + "hashShort": "23cf0cf1ec4cf761", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 36574144424, - ], - "fromEgg": "Tech Kyoto Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 169, - "goldenThumbnail": "rbxassetid://17026780170", - "maxChance": 0.8991008991008992, - "name": "Tech Ninja Panda", + "animations": { + "jelly": true, + }, + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "rbxassetid://16483034554", + "name": "Jelly Monkey", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026780365", + "thumbnail": "rbxassetid://16495773922", }, - "configName": "Tech Ninja Panda", + "configName": "Jelly Monkey", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.072Z", - "hashShort": "ab0640a0bf01398a", + "dateModified": "2025-07-05T23:28:56.743Z", + "hashShort": "ac2f3063a30262e1", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 46289151537, - ], - "fromEgg": "Tech Dojo Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 171, - "goldenThumbnail": "rbxassetid://17026780629", - "maxChance": 0.8991008991008992, - "name": "Tech Ninja Red Panda", + "animations": { + "jelly": true, + }, + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://16483035084", + "name": "Jelly Axolotl", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17026780859", + "thumbnail": "rbxassetid://16483035003", }, - "configName": "Tech Ninja Red Panda", + "configName": "Jelly Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.073Z", - "hashShort": "3ff066f90d207fe8", + "dateModified": "2025-07-05T23:28:56.756Z", + "hashShort": "6164bf45b52f2abc", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 32510350599, + 13675877, + 14845529, + 15452603, ], - "fromEgg": "Cyberpunk Road Egg", + "fromEgg": "Tech Forest Egg", "fromWorldNumber": 2, - "fromZoneNumber": 168, - "goldenThumbnail": "rbxassetid://17026772623", + "fromZoneNumber": 102, + "goldenThumbnail": "rbxassetid://16471609761", "maxChance": 0.8991008991008992, - "name": "Cyberpunk Spider", + "name": "Cyborg Squirrel", "rarity": { "Announce": false, "Color": null, @@ -99300,26 +102866,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17026773017", + "thumbnail": "rbxassetid://16471609663", }, - "configName": "Cyberpunk Spider", + "configName": "Cyborg Squirrel", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.072Z", - "hashShort": "07574afce52bca8f", + "dateModified": "2026-06-27T16:05:31.444Z", + "hashShort": "f9230694454140e3", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 41145912477, + 12156335, + 13197040, + 13736579, ], - "fromEgg": "Tech Samurai Egg", + "fromEgg": "Tech City Egg", "fromWorldNumber": 2, - "fromZoneNumber": 170, - "goldenThumbnail": "rbxassetid://17026781007", + "fromZoneNumber": 101, + "goldenThumbnail": "rbxassetid://16471610134", "maxChance": 0.8991008991008992, - "name": "Tech Samurai Cat", + "name": "Cyborg Corgi", "rarity": { "Announce": false, "Color": null, @@ -99332,27 +102900,29 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17026781127", + "thumbnail": "rbxassetid://16471610090", }, - "configName": "Tech Samurai Cat", + "configName": "Cyborg Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.089Z", - "hashShort": "334dea29957919e3", + "dateModified": "2026-06-27T16:05:31.446Z", + "hashShort": "0de1ba81095bed90", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 43865054286, + 14579652, + 15710359, + 16519652, ], "fly": true, - "fromEgg": "Tech Samurai Egg", + "fromEgg": "Tech Forest Egg", "fromWorldNumber": 2, - "fromZoneNumber": 170, - "goldenThumbnail": "rbxassetid://17026781280", + "fromZoneNumber": 102, + "goldenThumbnail": "rbxassetid://16471610265", "maxChance": 0.08991008991008992, - "name": "Tech Samurai Dragon", + "name": "Cyborg Bat", "rarity": { "Announce": false, "Color": null, @@ -99365,26 +102935,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17026781487", + "thumbnail": "rbxassetid://16471610188", }, - "configName": "Tech Samurai Dragon", + "configName": "Cyborg Bat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.096Z", - "hashShort": "425243ab4b8e8af5", + "dateModified": "2026-06-27T16:05:31.447Z", + "hashShort": "a59b1191be476f4b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 55516709330, + 18077368, + 19591001, + 20467920, ], - "fromEgg": "Tech Sakura Egg", + "fromEgg": "Tech Cuboid Egg", "fromWorldNumber": 2, - "fromZoneNumber": 172, - "goldenThumbnail": "rbxassetid://17026771811", - "maxChance": 0.08991008991008992, - "name": "Cyberpunk Lemur", + "fromZoneNumber": 105, + "goldenThumbnail": "rbxassetid://16471610401", + "maxChance": 0.1999980000199998, + "name": "Cyber Slime", "rarity": { "Announce": false, "Color": null, @@ -99397,508 +102969,532 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17026771973", + "thumbnail": "rbxassetid://16471610337", }, - "configName": "Cyberpunk Lemur", + "configName": "Cyber Slime", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.095Z", - "hashShort": "721d21db9f6a0318", + "dateModified": "2026-06-27T16:05:33.891Z", + "hashShort": "087bf08f7f7b751c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 52075295479, + 16402108, + 17673196, + 18582661, ], - "fromEgg": "Tech Sakura Egg", + "fromEgg": "Tech Silo Egg", "fromWorldNumber": 2, - "fromZoneNumber": 172, - "goldenThumbnail": "rbxassetid://17026771488", - "maxChance": 0.6993006993006994, - "name": "Cyberpunk Husky", + "fromZoneNumber": 103, + "goldenThumbnail": "rbxassetid://16471610031", + "maxChance": 0.08991008991008992, + "name": "Cyborg Cow", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17026771652", + "thumbnail": "rbxassetid://16471609970", }, - "configName": "Cyberpunk Husky", + "configName": "Cyborg Cow", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.092Z", - "hashShort": "3c29c6e915d76a84", + "dateModified": "2026-06-27T16:05:33.876Z", + "hashShort": "2bca8d2c25b8d211", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 65905977926, + 21905499, + 23771625, + 24745121, ], - "fromEgg": "Dominus Frigidus Egg", + "fly": true, + "fromEgg": "Tech Sprout Egg", "fromWorldNumber": 2, - "fromZoneNumber": 174, - "goldenThumbnail": "rbxassetid://17026773204", - "maxChance": 0.009999796004161515, - "name": "Dominus Hippomelon", + "fromZoneNumber": 106, + "goldenThumbnail": "rbxassetid://16471611406", + "maxChance": 0.989990100098999, + "name": "Cyber Agony", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17026773352", + "thumbnail": "rbxassetid://16471976747", }, - "configName": "Dominus Hippomelon", + "configName": "Cyber Agony", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.076Z", - "hashShort": "ecaa2d0c20a8884f", + "dateModified": "2026-06-27T16:05:33.887Z", + "hashShort": "9e02c2abbbca1aa2", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 77525891025, + 17308531, + 18786113, + 19554667, ], - "fromEgg": "Dominus Frigidus Egg", + "fromEgg": "Tech Data Egg", "fromWorldNumber": 2, - "fromZoneNumber": 174, - "goldenThumbnail": "rbxassetid://17026773467", - "maxChance": 0.000019999592008323033, - "name": "Dominus Mushrooms", + "fromZoneNumber": 104, + "goldenThumbnail": "rbxassetid://16498330541", + "maxChance": 0.6999930000699993, + "name": "Cyber Axolotl", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17026773570", + "thumbnail": "rbxassetid://16471611168", }, - "configName": "Dominus Mushrooms", + "configName": "Cyber Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.079Z", - "hashShort": "30db0f23376dd201", + "dateModified": "2026-06-27T16:05:33.877Z", + "hashShort": "9bcdec9f9acbab79", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "particlesSketch": { - "Farm": { - "Left": null, - "Right": null, - }, - "Idle": { - "Left": null, - "Right": null, - }, - }, - }, - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://17028976493", - "name": "Sketch Corgi", + "cachedPower": [ + 24643687, + 26741305, + 27836636, + ], + "fromEgg": "Tech Tree Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 107, + "goldenThumbnail": "rbxassetid://16471611066", + "maxChance": 0.989010989010989, + "name": "Cyber Bear", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17027101955", + "thumbnail": "rbxassetid://16471610938", }, - "configName": "Sketch Corgi", + "configName": "Cyber Bear", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.069Z", - "hashShort": "19ca1d4589967c05", + "dateModified": "2026-06-27T16:05:33.873Z", + "hashShort": "0f194653c9619958", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "particlesSketch": { - "Farm": { - "Left": null, - "Right": null, - }, - "Idle": { - "Left": null, - "Right": null, - }, - }, - }, - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://17028976356", - "name": "Sketch Cow", + "cachedPower": [ + 19471555, + 21131775, + 21996984, + ], + "fly": true, + "fromEgg": "Tech Cuboid Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 105, + "goldenThumbnail": "rbxassetid://16471610795", + "maxChance": 0.989990100098999, + "name": "Cyber Dragon", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17027102136", + "thumbnail": "rbxassetid://16471610692", }, - "configName": "Sketch Cow", + "configName": "Cyber Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.100Z", - "hashShort": "932aea0981840173", + "dateModified": "2026-06-27T16:05:33.875Z", + "hashShort": "503b01ae7eb3040b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "particlesSketch": { - "Farm": { - "Left": null, - "Right": null, - }, - "Idle": { - "Left": null, - "Right": null, - }, - }, - }, - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "rbxassetid://17028976196", - "name": "Sketch Dragon", + "cachedPower": [ + 18452371, + 19881299, + 20903367, + ], + "fromEgg": "Tech Data Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 104, + "goldenThumbnail": "rbxassetid://16471610556", + "maxChance": 0.08999910000899991, + "name": "Cyber Ducky", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17027101695", + "thumbnail": "rbxassetid://16471610472", }, - "configName": "Sketch Dragon", + "configName": "Cyber Ducky", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.081Z", - "hashShort": "bf73db89844044d1", + "dateModified": "2026-06-27T16:05:33.879Z", + "hashShort": "05e139fde00d2f91", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://17208308091", - "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", - "indexObtainable": true, - "name": "Huge Kangaroo", + "cachedPower": [ + 15385361, + 16699975, + 17383035, + ], + "fromEgg": "Tech Silo Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 103, + "goldenThumbnail": "rbxassetid://16471609911", + "maxChance": 0.8991008991008992, + "name": "Cyborg Piggy", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17208307820", + "thumbnail": "rbxassetid://16471609845", }, - "configName": "Huge Kangaroo", + "configName": "Cyborg Piggy", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.694Z", - "hashShort": "423abaf623bb0afa", + "dateModified": "2026-06-27T16:05:33.880Z", + "hashShort": "b53d9874d1d0dbd3", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://17288680856", - "huge": true, - "indexDesc": "Found in Glitched Gifts!", - "indexObtainable": true, - "name": "Huge 404 Demon", + "cachedPower": [ + 85316883, + 91871592, + 96543384, + ], + "fromEgg": "Tech Luminati Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 117, + "goldenThumbnail": "rbxassetid://16471601398", + "maxChance": 0.08991008991008992, + "name": "Tech Sphinx", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17288680692", + "thumbnail": "rbxassetid://16471601286", }, - "configName": "Huge 404 Demon", + "configName": "Tech Sphinx", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.686Z", - "hashShort": "2ba4d4188286ca86", + "dateModified": "2026-06-27T16:05:33.893Z", + "hashShort": "451cfddc2b41bcf6", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "balloon": true, - "fly": true, - "goldenThumbnail": "rbxassetid://17277934973", - "huge": true, - "indexDesc": "Reward in the 2024 Bubble Clan Battle!", - "indexObtainable": true, - "name": "Huge Bubble Dog", + "cachedPower": [ + 80028193, + 86792287, + 90351590, + ], + "fromEgg": "Tech Luminati Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 117, + "goldenThumbnail": "rbxassetid://16471601561", + "maxChance": 0.8991008991008992, + "name": "Tech Scorpion", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17277934726", + "thumbnail": "rbxassetid://16471601490", }, - "configName": "Huge Bubble Dog", + "configName": "Tech Scorpion", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.706Z", - "hashShort": "3caa64ce7c2b9d61", + "dateModified": "2026-06-27T16:05:33.894Z", + "hashShort": "2fbb2f961b26ac89", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://17285736725", - "huge": true, - "indexDesc": "Found in the Exclusive Black Hole Egg!", - "indexObtainable": true, - "name": "Huge Black Hole Kitsune", + "cachedPower": [ + 75837230, + 81666677, + 85822526, + ], + "fromEgg": "Tech Dusty Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 116, + "goldenThumbnail": "rbxassetid://16471601761", + "maxChance": 0.08991008991008992, + "name": "Tech Puma", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17285736637", + "thumbnail": "rbxassetid://16471601645", }, - "configName": "Huge Black Hole Kitsune", + "configName": "Tech Puma", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.696Z", - "hashShort": "bb1b09e5439e31c2", + "dateModified": "2026-06-27T16:05:33.876Z", + "hashShort": "3bd4463cf2153ca5", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://17285736535", - "huge": true, - "indexDesc": "Found in the Exclusive Black Hole Egg!", - "indexObtainable": true, - "name": "Huge Black Hole Axolotl", + "cachedPower": [ + 90031717, + 97636444, + 101641095, + ], + "fromEgg": "Tech Cactus Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 118, + "goldenThumbnail": "rbxassetid://16471601941", + "maxChance": 0.8991008991008992, + "name": "Tech Horse", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17285736425", + "thumbnail": "rbxassetid://16471601862", }, - "configName": "Huge Black Hole Axolotl", + "configName": "Tech Horse", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.688Z", - "hashShort": "da3da469a0c4f3c0", + "dateModified": "2026-06-27T16:05:33.908Z", + "hashShort": "65e8b3ef8ac30e3f", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "balloon": true, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://14977806706", - "indexDesc": "Comes with the Titanic Pink Balloon plush!", - "indexObtainable": true, - "name": "Titanic Pink Balloon Cat", + "cachedPower": [ + 95981494, + 103351785, + 108603664, + ], + "fromEgg": "Tech Cactus Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 118, + "goldenThumbnail": "rbxassetid://16471603218", + "maxChance": 0.08991008991008992, + "name": "Tech Bull", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14976657520", - "titanic": true, + "thumbnail": "rbxassetid://16471603112", }, - "configName": "Titanic Pink Balloon", + "configName": "Tech Bull", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.081Z", - "hashShort": "557a13eb033135f4", + "dateModified": "2026-06-27T16:05:33.892Z", + "hashShort": "be5b8c447c74be77", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://16393850204", - "indexDesc": "Comes with the Titanic Shiba plush!", - "indexObtainable": true, - "name": "Titanic Shiba", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, + "animations": { + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.3, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.7, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.3, }, - "thumbnail": "rbxassetid://16393850015", - "titanic": true, - }, - "configName": "Titanic Shiba", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.246Z", - "hashShort": "545f56b2c92526db", - }, - { - "category": "Titanic", - "collection": "Pets", - "configData": { - "goldenThumbnail": "rbxassetid://17194509191", - "indexDesc": "Found in The Forever Pack!", - "indexObtainable": true, - "name": "Titanic Rich Cat", + "cachedPower": [ + 44409961, + 48176508, + 50150531, + ], + "fromEgg": "Tech Palm Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 112, + "goldenThumbnail": "rbxassetid://16471612509", + "maxChance": 0.8991008991008992, + "name": "Abyssal Axolotl", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17194508969", - "titanic": true, + "thumbnail": "rbxassetid://16471612420", }, - "configName": "Titanic Rich Cat", + "configName": "Abyssal Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.233Z", - "hashShort": "88808e585cfa6dfd", + "dateModified": "2026-06-27T16:05:33.897Z", + "hashShort": "19465252ebf1dc23", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 2.2, - "ridingCameraOffset": null, - "ridingGravity": 65.3346, - "spinZ": true, - "swerve": true, - "swerveMaxAngle": 45, - }, + "cachedPower": [ + 27724920, + 30083616, + 31315368, + ], "fly": true, - "flyingTitanic": true, - "flyingTitanicAlwaysFly": true, - "goldenThumbnail": "rbxassetid://17285296213", - "indexDesc": "Found in the Exclusive Black Hole Egg!", - "indexObtainable": true, - "name": "Titanic Black Hole Angelus", + "fromEgg": "Tech Incubator Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 108, + "goldenThumbnail": "rbxassetid://16471605210", + "maxChance": 0.8991008991008992, + "name": "Hi-Tech Bee", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17285296068", - "titanic": true, + "thumbnail": "rbxassetid://16471605103", }, - "configName": "Titanic Black Hole Angelus", + "configName": "Hi-Tech Bee", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.392Z", - "hashShort": "76fb19dd7baa6281", + "dateModified": "2026-06-27T16:05:33.888Z", + "hashShort": "76848a08c6b065fa", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 433887508303, + 71136171, + 77152648, + 80316122, ], - "fly": true, - "fromEgg": "Glitch Green Egg", + "fromEgg": "Tech Dusty Egg", "fromWorldNumber": 2, - "fromZoneNumber": 190, - "goldenThumbnail": "rbxassetid://14968248489", + "fromZoneNumber": 116, + "goldenThumbnail": "rbxassetid://16471603013", "maxChance": 0.8991008991008992, - "name": "Glitched Dragon", + "name": "Tech Camel", "rarity": { "Announce": false, "Color": null, @@ -99911,26 +103507,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968248611", + "thumbnail": "rbxassetid://16471602889", }, - "configName": "Glitched Dragon", + "configName": "Tech Camel", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.289Z", - "hashShort": "9894a134ffb1d6ab", + "dateModified": "2026-06-27T16:05:33.876Z", + "hashShort": "3d7698a948eb8ff1", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 462561113846, + 29557131, + 31839757, + 33470468, ], - "fromEgg": "Glitch Green Egg", + "fromEgg": "Tech Incubator Egg", "fromWorldNumber": 2, - "fromZoneNumber": 190, - "goldenThumbnail": "rbxassetid://14968248338", + "fromZoneNumber": 108, + "goldenThumbnail": "rbxassetid://16471604612", "maxChance": 0.08991008991008992, - "name": "Glitched Dominus", + "name": "Hi-Tech Ladybug", "rarity": { "Announce": false, "Color": null, @@ -99943,59 +103541,62 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968248407", + "thumbnail": "rbxassetid://16471604503", }, - "configName": "Glitched Dominus", + "configName": "Hi-Tech Ladybug", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.289Z", - "hashShort": "262df54b56831561", + "dateModified": "2026-06-27T16:05:33.878Z", + "hashShort": "d81730d3739e8c7a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 488123446841, + 194582095, + 209481593, + 220085045, ], - "fromEgg": "Glitch Aqua Egg", + "fromEgg": "Tech Flurry Egg", "fromWorldNumber": 2, - "fromZoneNumber": 191, - "goldenThumbnail": "rbxassetid://14968249370", - "maxChance": 0.9, - "name": "Glitched Unicorn", + "fromZoneNumber": 124, + "goldenThumbnail": "rbxassetid://16471605378", + "maxChance": 0.0009989806401547862, + "name": "Frostbyte Yeti", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://14968249527", + "thumbnail": "rbxassetid://16471605282", }, - "configName": "Glitched Unicorn", + "configName": "Frostbyte Yeti", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.592Z", - "hashShort": "ea395d856ab73f0b", + "dateModified": "2026-06-27T16:05:33.874Z", + "hashShort": "e9f36d5c449f5a8e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 520381253077, + 119010719, + 128897221, + 134585530, ], - "fly": true, - "fromEgg": "Glitch Aqua Egg", + "fromEgg": "Tech Snow Egg", "fromWorldNumber": 2, - "fromZoneNumber": 191, - "goldenThumbnail": "rbxassetid://14968249051", - "maxChance": 0.09, - "name": "Glitched Phoenix", + "fromZoneNumber": 121, + "goldenThumbnail": "rbxassetid://16471606175", + "maxChance": 0.1998001998001998, + "name": "Frostbyte Snow Ram", "rarity": { "Announce": false, "Color": null, @@ -100008,59 +103609,62 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968249267", + "thumbnail": "rbxassetid://16471605970", }, - "configName": "Glitched Phoenix", + "configName": "Frostbyte Snow Ram", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.586Z", - "hashShort": "7255c481e7b453e4", + "dateModified": "2026-06-27T16:05:33.901Z", + "hashShort": "05e1299428b16a03", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 549123415385, + 214699045, + 232427310, + 242732538, ], - "fromEgg": "Glitch Cyan Egg", + "fromEgg": "Tech Flurry Egg", "fromWorldNumber": 2, - "fromZoneNumber": 192, - "goldenThumbnail": "rbxassetid://14968248789", - "maxChance": 0.9, - "name": "Glitched Immortuus", + "fromZoneNumber": 124, + "goldenThumbnail": "rbxassetid://16471605779", + "maxChance": 0.000019979612803095722, + "name": "Frostbyte Snowman", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://14968248903", + "thumbnail": "rbxassetid://16471605552", }, - "configName": "Glitched Immortuus", + "configName": "Frostbyte Snowman", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.592Z", - "hashShort": "5d41398f969edde9", + "dateModified": "2026-06-27T16:05:33.890Z", + "hashShort": "fcced0f8ddc711cf", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 342815044874, + 153743794, + 165526864, + 173915852, ], - "fly": true, - "fromEgg": "Hacker Error Egg", + "fromEgg": "Tech Mossy Egg", "fromWorldNumber": 2, - "fromZoneNumber": 188, - "goldenThumbnail": "rbxassetid://14968168948", + "fromZoneNumber": 122, + "goldenThumbnail": "rbxassetid://16471606739", "maxChance": 0.08991008991008992, - "name": "404 Demon", + "name": "Frostbyte Snow Leopard", "rarity": { "Announce": false, "Color": null, @@ -100073,26 +103677,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968169046", + "thumbnail": "rbxassetid://16471606444", }, - "configName": "404 Demon", + "configName": "Frostbyte Snow Leopard", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.588Z", - "hashShort": "921a481c49ace766", + "dateModified": "2026-06-27T16:05:33.880Z", + "hashShort": "c5b5e9cd0003f9eb", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 240769962929, + 35089352, + 38069861, + 39629198, ], - "fromEgg": "Hacker Metal Egg", + "fromEgg": "Tech Magma Egg", "fromWorldNumber": 2, - "fromZoneNumber": 185, - "goldenThumbnail": "rbxassetid://14968254299", - "maxChance": 0.989010989010989, - "name": "Haxolotl", + "fromZoneNumber": 110, + "goldenThumbnail": "rbxassetid://16471603826", + "maxChance": 0.8991008991008992, + "name": "Hi-Tech Sloth", "rarity": { "Announce": false, "Color": null, @@ -100105,90 +103711,122 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968254380", + "thumbnail": "rbxassetid://16471603684", }, - "configName": "Haxolotl", + "configName": "Hi-Tech Sloth", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.590Z", - "hashShort": "f49b52733eb55585", + "dateModified": "2026-06-27T16:05:33.889Z", + "hashShort": "0f26b60fe33c7b09", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.3, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.7, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.3, + }, "cachedPower": [ - 270147846018, + 47344809, + 50992181, + 53595009, ], - "fromEgg": "Hacker Gear Egg", + "fromEgg": "Tech Palm Egg", "fromWorldNumber": 2, - "fromZoneNumber": 186, - "goldenThumbnail": "rbxassetid://14968254003", - "maxChance": 0.989010989010989, - "name": "Haxigator", + "fromZoneNumber": 112, + "goldenThumbnail": "rbxassetid://16471674246", + "maxChance": 0.08991008991008992, + "name": "Abyssal Seal", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968254141", + "thumbnail": "rbxassetid://16471611609", }, - "configName": "Haxigator", + "configName": "Abyssal Seal", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.583Z", - "hashShort": "478c8303cb83a7c4", + "dateModified": "2026-06-27T16:05:33.893Z", + "hashShort": "509a164926b404c9", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 303916326771, + 33251773, + 35818091, + 37650950, ], - "fromEgg": "Hacker Matrix Egg", + "fly": true, + "fromEgg": "Tech Overgrown Egg", "fromWorldNumber": 2, - "fromZoneNumber": 187, - "goldenThumbnail": "rbxassetid://14968253102", - "maxChance": 0.9, - "name": "Hacked Raccoon", + "fromZoneNumber": 109, + "goldenThumbnail": "rbxassetid://16471604164", + "maxChance": 0.08991008991008992, + "name": "Hi-Tech Parrot", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968253240", + "thumbnail": "rbxassetid://16471604009", }, - "configName": "Hacked Raccoon", + "configName": "Hi-Tech Parrot", "dateCreated": null, - "dateModified": "2025-07-05T23:28:54.590Z", - "hashShort": "9d232957c462a68e", + "dateModified": "2026-06-27T16:05:33.912Z", + "hashShort": "270a5101a0aad819", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 385677785159, + 162240077, + 175903015, + 183123236, ], - "fromEgg": "Glitch Tree Egg", + "fromEgg": "Tech Ice Crystal Egg", "fromWorldNumber": 2, - "fromZoneNumber": 189, - "goldenThumbnail": "rbxassetid://14968247789", - "maxChance": 0.8991008991008992, - "name": "Glitched Cat", + "fromZoneNumber": 123, + "goldenThumbnail": "rbxassetid://16471607215", + "maxChance": 0.6992864481083503, + "name": "Frostbyte Husky", "rarity": { "Announce": false, "Color": null, @@ -100201,26 +103839,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968247900", + "thumbnail": "rbxassetid://16471606992", }, - "configName": "Glitched Cat", + "configName": "Frostbyte Husky", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.157Z", - "hashShort": "a2b59481647d5a78", + "dateModified": "2026-06-27T16:05:33.895Z", + "hashShort": "6a95da8a34a920cc", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 324326106488, + 128189690, + 138997624, + 144701349, ], - "fromEgg": "Hacker Error Egg", + "fromEgg": "Tech Snow Egg", "fromWorldNumber": 2, - "fromZoneNumber": 188, - "goldenThumbnail": "rbxassetid://14968252879", + "fromZoneNumber": 121, + "goldenThumbnail": "rbxassetid://16471607548", "maxChance": 0.8991008991008992, - "name": "Hacked Cat", + "name": "Frostbyte Fox", "rarity": { "Announce": false, "Color": null, @@ -100233,26 +103873,29 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968252947", + "thumbnail": "rbxassetid://16471607419", }, - "configName": "Hacked Cat", + "configName": "Frostbyte Fox", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.144Z", - "hashShort": "52ffaeabcb095fcc", + "dateModified": "2026-06-27T16:05:33.909Z", + "hashShort": "d15d2a5f306ae054", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 411165434530, + 136661150, + 147139865, + 154601790, ], - "fromEgg": "Glitch Tree Egg", + "fly": true, + "fromEgg": "Tech Snow Egg", "fromWorldNumber": 2, - "fromZoneNumber": 189, - "goldenThumbnail": "rbxassetid://14968248012", + "fromZoneNumber": 121, + "goldenThumbnail": "rbxassetid://16471607913", "maxChance": 0.08991008991008992, - "name": "Glitched Dog", + "name": "Frostbyte Dragon", "rarity": { "Announce": false, "Color": null, @@ -100265,26 +103908,62 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968248121", + "thumbnail": "rbxassetid://16471607717", }, - "configName": "Glitched Dog", + "configName": "Frostbyte Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.301Z", - "hashShort": "58fc6d0ddd5112b9", + "dateModified": "2026-06-27T16:05:33.902Z", + "hashShort": "d078fb617de0a2af", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 179977948101, + 107979180, + 116266631, + 122170725, ], - "fromEgg": "Dark Tech Brick Egg", + "fromEgg": "Tech Cowboy Egg", "fromWorldNumber": 2, - "fromZoneNumber": 183, - "goldenThumbnail": "rbxassetid://15565566193", + "fromZoneNumber": 119, + "goldenThumbnail": "rbxassetid://16471602555", + "maxChance": 0.08991008991008992, + "name": "Tech Yee-haw Dog", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://16471602487", + }, + "configName": "Tech Cowboy Dog", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:33.896Z", + "hashShort": "75d46b84ee3a55f3", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 144213401, + 156365202, + 162782541, + ], + "fromEgg": "Tech Mossy Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 122, + "goldenThumbnail": "rbxassetid://16471609087", "maxChance": 0.8991008991008992, - "name": "Shadow Bull", + "name": "Frostbyte Deer", "rarity": { "Announce": false, "Color": null, @@ -100297,26 +103976,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15565566144", + "thumbnail": "rbxassetid://16471608117", }, - "configName": "Shadow Bull", + "configName": "Frostbyte Deer", "dateCreated": null, - "dateModified": "2025-07-05T23:28:58.736Z", - "hashShort": "1d8e6f991f8b7bb7", + "dateModified": "2026-06-27T16:05:33.898Z", + "hashShort": "454c53ed07f697db", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 214023771174, + 101285681, + 109835639, + 114341351, ], - "fromEgg": "Dark Tech Spike Egg", + "fromEgg": "Tech Cowboy Egg", "fromWorldNumber": 2, - "fromZoneNumber": 184, - "goldenThumbnail": "rbxassetid://15565566053", - "maxChance": 0.9, - "name": "Shadow Dominus", + "fromZoneNumber": 119, + "goldenThumbnail": "rbxassetid://16471602758", + "maxChance": 0.8991008991008992, + "name": "Tech Yee-haw Cat", "rarity": { "Announce": false, "Color": null, @@ -100329,27 +104010,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15565565989", + "thumbnail": "rbxassetid://16471602645", }, - "configName": "Shadow Dominus", + "configName": "Tech Cowboy Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.441Z", - "hashShort": "e8efa9823e5e7ef9", + "dateModified": "2026-06-27T16:05:33.911Z", + "hashShort": "683374c1c2949a8f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 159587625319, + 31190535, + 33841944, + 35227845, ], - "fly": true, - "fromEgg": "Dark Tech Castle Egg", + "fromEgg": "Tech Overgrown Egg", "fromWorldNumber": 2, - "fromZoneNumber": 182, - "goldenThumbnail": "rbxassetid://15565565945", - "maxChance": 0.9, - "name": "Shadow Dragon", + "fromZoneNumber": 109, + "goldenThumbnail": "rbxassetid://16471604430", + "maxChance": 0.8991008991008992, + "name": "Hi-Tech Monkey", "rarity": { "Announce": false, "Color": null, @@ -100362,26 +104044,63 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://15565565902", + "thumbnail": "rbxassetid://16471604319", }, - "configName": "Shadow Dragon", + "configName": "Hi-Tech Monkey", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.459Z", - "hashShort": "e3f3a94e0543b90d", + "dateModified": "2026-06-27T16:05:33.893Z", + "hashShort": "8ca28a93eaf0bdbf", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 190237995401, + 113946391, + 123559202, + 128628659, ], - "fromEgg": "Dark Tech Brick Egg", + "fromEgg": "Tech Canyon Egg", "fromWorldNumber": 2, - "fromZoneNumber": 183, - "goldenThumbnail": "rbxassetid://15565565842", + "fromZoneNumber": 120, + "goldenThumbnail": "rbxassetid://16471602379", + "maxChance": 0.6993006993006994, + "name": "Tech Goat", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://16471602267", + }, + "configName": "Tech Goat", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:33.913Z", + "hashShort": "0fc02dea02474cee", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 121476578, + 130795424, + 137432835, + ], + "fly": true, + "fromEgg": "Tech Canyon Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 120, + "goldenThumbnail": "rbxassetid://16471602147", "maxChance": 0.08991008991008992, - "name": "Shadow Panther", + "name": "Tech Griffin", "rarity": { "Announce": false, "Color": null, @@ -100394,26 +104113,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://15565565781", + "thumbnail": "rbxassetid://16471602040", }, - "configName": "Shadow Panther", + "configName": "Tech Griffin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.437Z", - "hashShort": "21301aea4b76bc60", + "dateModified": "2026-06-27T16:05:33.900Z", + "hashShort": "b9ede08c03f3ecf4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 228167605864, + 37408244, + 40293561, + 42353677, ], - "fromEgg": "Dark Tech Spike Egg", + "fromEgg": "Tech Magma Egg", "fromWorldNumber": 2, - "fromZoneNumber": 184, - "goldenThumbnail": "rbxassetid://15565565707", - "maxChance": 0.09, - "name": "Shadow Wolf", + "fromZoneNumber": 110, + "goldenThumbnail": "rbxassetid://16471603520", + "maxChance": 0.08991008991008992, + "name": "Hi-Tech Tiger", "rarity": { "Announce": false, "Color": null, @@ -100426,26 +104147,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://15565565607", + "thumbnail": "rbxassetid://16471603384", }, - "configName": "Shadow Wolf", + "configName": "Hi-Tech Tiger", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.436Z", - "hashShort": "fa4a0a6d72cd9eae", + "dateModified": "2026-06-27T16:05:33.878Z", + "hashShort": "a99af74a6c01a575", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 69973170977, + 39475521, + 42826045, + 44580518, ], - "fromEgg": "Dominus Infernus Egg", + "fromEgg": "Tech Oasis Egg", "fromWorldNumber": 2, - "fromZoneNumber": 175, - "goldenThumbnail": "rbxassetid://17026781673", - "maxChance": 0.47120418848167533, - "name": "Wicked Empyrean Dominus", + "fromZoneNumber": 111, + "goldenThumbnail": "rbxassetid://16471604803", + "maxChance": 0.8991008991008992, + "name": "Hi-Tech Flamingo", "rarity": { "Announce": false, "Color": null, @@ -100458,58 +104181,87 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17026782060", + "thumbnail": "rbxassetid://16471604692", }, - "configName": "Wicked Empyrean Dominus", + "configName": "Hi-Tech Flamingo", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.099Z", - "hashShort": "699fa433da0109c3", + "dateModified": "2026-06-27T16:05:33.912Z", + "hashShort": "7df1e52f3d7a96b1", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 65151346023, + 42084275, + 45328294, + 47643896, ], - "fromEgg": "Dominus Infernus Egg", + "fromEgg": "Tech Oasis Egg", "fromWorldNumber": 2, - "fromZoneNumber": 175, - "goldenThumbnail": "rbxassetid://17026773780", - "maxChance": 0.9, - "name": "Dominus Serpents", + "fromZoneNumber": 111, + "goldenThumbnail": "rbxassetid://16471605008", + "maxChance": 0.08991008991008992, + "name": "Hi-Tech Elephant", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17026773962", + "thumbnail": "rbxassetid://16471604919", }, - "configName": "Dominus Serpents", + "configName": "Hi-Tech Elephant", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.084Z", - "hashShort": "00a9d315b791da80", + "dateModified": "2026-06-27T16:05:33.879Z", + "hashShort": "e7b9b3f344a19234", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.3, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.7, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.3, + }, "cachedPower": [ - 133610224479, + 59920774, + 64531740, + 67820528, ], - "fromEgg": "Dark Tech Stone Egg", + "fromEgg": "Tech Ship Egg", "fromWorldNumber": 2, - "fromZoneNumber": 180, - "goldenThumbnail": "rbxassetid://17270075910", - "maxChance": 0.09, - "name": "Shadow Shark", + "fromZoneNumber": 114, + "goldenThumbnail": "rbxassetid://16471612338", + "maxChance": 0.08991008991008992, + "name": "Abyssal Dolphin", "rarity": { "Announce": false, "Color": null, @@ -100522,26 +104274,53 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17270076014", + "thumbnail": "rbxassetid://16471612276", }, - "configName": "Shadow Shark", + "configName": "Abyssal Dolphin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.088Z", - "hashShort": "fbc91e58dbee0189", + "dateModified": "2026-06-27T16:05:33.892Z", + "hashShort": "d16d3f02b49f32e1", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.3, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.7, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.3, + }, "cachedPower": [ - 150311502539, + 56206357, + 60966589, + 63465554, ], - "fromEgg": "Dark Tech Relic Egg", + "fromEgg": "Tech Ship Egg", "fromWorldNumber": 2, - "fromZoneNumber": 181, - "goldenThumbnail": "rbxassetid://17270075615", - "maxChance": 0.9, - "name": "Shadow Kraken", + "fromZoneNumber": 114, + "goldenThumbnail": "rbxassetid://16471612199", + "maxChance": 0.8991008991008992, + "name": "Abyssal Fish", "rarity": { "Announce": false, "Color": null, @@ -100554,58 +104333,113 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17270075776", + "thumbnail": "rbxassetid://16471612106", }, - "configName": "Shadow Kraken", + "configName": "Abyssal Fish", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.083Z", - "hashShort": "622f413938fa9adf", + "dateModified": "2026-06-27T16:05:33.899Z", + "hashShort": "64d3ac918e654b25", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.3, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.7, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.3, + }, "cachedPower": [ - 126404265333, + 67410871, + 72595370, + 76292322, ], - "fromEgg": "Dark Tech Stone Egg", + "fromEgg": "Tech Ruins Egg", "fromWorldNumber": 2, - "fromZoneNumber": 180, - "goldenThumbnail": "rbxassetid://17270075414", - "maxChance": 0.9, - "name": "Shadow Dolphin", + "fromZoneNumber": 115, + "goldenThumbnail": "rbxassetid://16471612023", + "maxChance": 0.08991008991008992, + "name": "Abyssal Kraken", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17270075533", + "thumbnail": "rbxassetid://16471611962", }, - "configName": "Shadow Dolphin", + "configName": "Abyssal Kraken", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.092Z", - "hashShort": "6ad05bda34e82b75", + "dateModified": "2026-06-27T16:05:33.877Z", + "hashShort": "00895bb45cecece4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.3, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.7, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.3, + }, "cachedPower": [ - 1113261849602, + 63232152, + 68583727, + 71395387, ], - "fromEgg": "Void Fracture Egg", + "fly": true, + "fromEgg": "Tech Ruins Egg", "fromWorldNumber": 2, - "fromZoneNumber": 198, - "goldenThumbnail": "rbxassetid://17270076454", - "maxChance": 0.9090721766945409, - "name": "Wireframe Dog", + "fromZoneNumber": 115, + "goldenThumbnail": "rbxassetid://16471611896", + "maxChance": 0.8991008991008992, + "name": "Abyssal Parrot", "rarity": { "Announce": false, "Color": null, @@ -100618,58 +104452,113 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17270076593", + "thumbnail": "rbxassetid://16471611826", }, - "configName": "Wireframe Dog", + "configName": "Abyssal Parrot", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.082Z", - "hashShort": "6dcceeef6d2cc5fa", + "dateModified": "2026-06-27T16:05:33.896Z", + "hashShort": "dd70b39107fa3395", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "balloon": true, + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.3, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.7, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.3, + }, "cachedPower": [ - 1186832142662, + 49961207, + 54195509, + 56416551, ], - "fromEgg": "Void Fracture Egg", + "fromEgg": "Tech Coral Egg", "fromWorldNumber": 2, - "fromZoneNumber": 198, - "goldenThumbnail": "rbxassetid://17270076087", - "maxChance": 0.09090721766945409, - "name": "Wireframe Cat", + "fromZoneNumber": 113, + "goldenThumbnail": "rbxassetid://16471611770", + "maxChance": 0.8991008991008992, + "name": "Abyssal Pufferfish", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17270076280", + "thumbnail": "rbxassetid://16471611709", }, - "configName": "Wireframe Cat", + "configName": "Abyssal Pufferfish", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.089Z", - "hashShort": "d8b604c65fa303ef", + "dateModified": "2026-06-27T16:05:33.894Z", + "hashShort": "d54cf4e9a5774022", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.3, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.7, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.3, + }, "cachedPower": [ - 105568572428, + 53262910, + 57363845, + 60289590, ], - "fromEgg": "Holographic Tree Egg", + "fromEgg": "Tech Coral Egg", "fromWorldNumber": 2, - "fromZoneNumber": 178, - "goldenThumbnail": "rbxassetid://17270073295", - "maxChance": 0.09, - "name": "Holographic Axolotl", + "fromZoneNumber": 113, + "goldenThumbnail": "rbxassetid://16471611544", + "maxChance": 0.08991008991008992, + "name": "Abyssal Shark", "rarity": { "Announce": false, "Color": null, @@ -100682,58 +104571,63 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17270073365", + "thumbnail": "rbxassetid://16471611487", }, - "configName": "Holographic Axolotl", + "configName": "Abyssal Shark", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.077Z", - "hashShort": "cc22bb222f63806d", + "dateModified": "2026-06-27T16:05:33.898Z", + "hashShort": "2926a1914c365865", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 93838731047, + 182520191, + 197882482, + 206005931, ], - "fromEgg": "Holographic Egg", + "fromEgg": "Tech Flurry Egg", "fromWorldNumber": 2, - "fromZoneNumber": 177, - "goldenThumbnail": "rbxassetid://17270073434", - "maxChance": 0.9, - "name": "Holographic Bear", + "fromZoneNumber": 124, + "goldenThumbnail": "rbxassetid://16471609371", + "maxChance": 0.009989806401547861, + "name": "Frostbyte Bear", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://17270073529", + "thumbnail": "rbxassetid://16471609155", }, - "configName": "Holographic Bear", + "configName": "Frostbyte Bear", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.095Z", - "hashShort": "c2e18fee84cf67fb", + "dateModified": "2026-06-27T16:05:33.910Z", + "hashShort": "99c75c74b7d7b8fe", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 79925601255, + 172961768, + 186211689, + 195643054, ], - "fromEgg": "Holographic Pipes Egg", + "fly": true, + "fromEgg": "Tech Ice Crystal Egg", "fromWorldNumber": 2, - "fromZoneNumber": 176, - "goldenThumbnail": "rbxassetid://17270073627", - "maxChance": 0.9, - "name": "Holographic Cat", + "fromZoneNumber": 123, + "goldenThumbnail": "rbxassetid://16471609563", + "maxChance": 0.289704385644888, + "name": "Frostbyte Bat", "rarity": { "Announce": false, "Color": null, @@ -100746,349 +104640,341 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17270073739", + "thumbnail": "rbxassetid://16471609451", }, - "configName": "Holographic Cat", + "configName": "Frostbyte Bat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.088Z", - "hashShort": "34512715b6e20a55", + "dateModified": "2026-06-27T16:05:33.911Z", + "hashShort": "b85e096f4ef13e40", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 84948289708, - ], - "fromEgg": "Holographic Pipes Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 176, - "goldenThumbnail": "rbxassetid://17270073824", - "maxChance": 0.09, - "name": "Holographic Corgi", + "fly": true, + "goldenThumbnail": "rbxassetid://16744676672", + "huge": true, + "indexDesc": "Obtained as a reward from the Adventurer Store in Area 140!", + "indexObtainable": true, + "name": "Huge Firefly", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17270073922", + "thumbnail": "rbxassetid://16744676508", }, - "configName": "Holographic Corgi", + "configName": "Huge Firefly", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.689Z", + "hashShort": "ddd1d3c52150e666", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://16725471704", + "huge": true, + "indexDesc": "Found in Deep Pools in the Advanced Fishing minigame!", + "indexObtainable": true, + "name": "Huge Whale Shark", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://16725471591", + }, + "configName": "Huge Whale Shark", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.071Z", - "hashShort": "51f8b8afbc493892", + "dateModified": "2025-07-05T23:28:59.690Z", + "hashShort": "2b025d952b71343e", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 118764643981, - ], - "fly": true, - "fromEgg": "Holographic Crystal Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 179, - "goldenThumbnail": "rbxassetid://17270074032", - "maxChance": 0.9, - "name": "Holographic Dragon", + "goldenThumbnail": "rbxassetid://16744715532", + "huge": true, + "indexDesc": "Found in The Forever Pack!", + "indexObtainable": true, + "name": "Huge Rich Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17270074170", + "thumbnail": "rbxassetid://16744715368", }, - "configName": "Holographic Dragon", + "configName": "Huge Rich Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.075Z", - "hashShort": "9852fcb1d3feca7e", + "dateModified": "2025-07-05T23:28:59.704Z", + "hashShort": "fa5277c72d8329fd", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 99874975078, - ], - "fromEgg": "Holographic Tree Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 178, - "goldenThumbnail": "rbxassetid://17270074244", - "maxChance": 0.9, - "name": "Holographic Monkey", + "fly": true, + "goldenThumbnail": "rbxassetid://16744695639", + "huge": true, + "indexDesc": "Earned from the 2024 St. Patrick's Event!", + "indexObtainable": true, + "name": "Huge Clover Fairy", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17270074390", + "thumbnail": "rbxassetid://16744695511", }, - "configName": "Holographic Monkey", + "configName": "Huge Clover Fairy", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.080Z", - "hashShort": "89fdf378f00e3eba", + "dateModified": "2025-07-05T23:28:59.685Z", + "hashShort": "b611d783bec7098a", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 781879378595, - ], - "fromEgg": "Quantum Space Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 195, - "goldenThumbnail": "rbxassetid://17270074458", - "maxChance": 0.8991008991008992, - "name": "Quantum Bunny", + "fly": true, + "goldenThumbnail": "rbxassetid://16746767734", + "huge": true, + "indexDesc": "Found in the Exclusive Superhero Egg!", + "indexObtainable": true, + "name": "Huge Super Tiger", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17270074544", + "thumbnail": "rbxassetid://16746767650", }, - "configName": "Quantum Bunny", + "configName": "Huge Super Tiger", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.097Z", - "hashShort": "541873b202393205", + "dateModified": "2025-07-05T23:28:59.699Z", + "hashShort": "775081b1a478aeaa", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 937743915190, - ], - "fromEgg": "Quantum Galaxy Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 196, - "goldenThumbnail": "rbxassetid://17270074647", - "maxChance": 0.08991008991008992, - "name": "Quantum Dominus", + "goldenThumbnail": "rbxassetid://16746769191", + "huge": true, + "indexDesc": "Found in the Exclusive Superhero Egg!", + "indexObtainable": true, + "name": "Huge Jester Dog", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17270074741", + "thumbnail": "rbxassetid://16746769132", }, - "configName": "Quantum Dominus", + "configName": "Huge Jester Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.087Z", - "hashShort": "ee9f736f30891102", + "dateModified": "2025-07-05T23:28:59.690Z", + "hashShort": "cc91df774ed5da5a", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 695003892085, - ], - "fromEgg": "Quantum Leafy Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 194, - "goldenThumbnail": "rbxassetid://17270074801", - "maxChance": 0.8991008991008992, - "name": "Quantum Fox", + "fly": true, + "goldenThumbnail": "rbxassetid://16756391226", + "huge": true, + "indexDesc": "Found in the Claw Machine!", + "indexObtainable": true, + "name": "Huge Arcade Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17270074857", + "thumbnail": "rbxassetid://16756391066", }, - "configName": "Quantum Fox", + "configName": "Huge Arcade Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.092Z", - "hashShort": "2f4f831b65d5fc3a", + "dateModified": "2025-07-05T23:28:59.701Z", + "hashShort": "133189b53a7723e6", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 740933463854, - ], - "fromEgg": "Quantum Leafy Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 194, - "goldenThumbnail": "rbxassetid://17270074955", - "maxChance": 0.08991008991008992, - "name": "Quantum Goat", + "goldenThumbnail": "rbxassetid://16756608290", + "huge": true, + "indexDesc": "Reward in the 2024 Quest Clan Battle!", + "indexObtainable": true, + "name": "Huge Alien Arachnid", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17270075053", + "thumbnail": "rbxassetid://16756608144", }, - "configName": "Quantum Goat", + "configName": "Huge Alien Arachnid", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.078Z", - "hashShort": "50ffda4305f5f6e7", + "dateModified": "2025-07-05T23:28:59.707Z", + "hashShort": "39b9efb724953039", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 879614300920, - ], - "fly": true, - "fromEgg": "Quantum Galaxy Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 196, - "goldenThumbnail": "rbxassetid://17270075114", - "maxChance": 0.8991008991008992, - "name": "Quantum Griffin", + "goldenThumbnail": "rbxassetid://16393837514", + "indexDesc": "Comes with the Titanic Sock Cat plush!", + "indexObtainable": true, + "name": "Titanic Sock Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17270075186", + "thumbnail": "rbxassetid://16393837325", + "titanic": true, }, - "configName": "Quantum Griffin", + "configName": "Titanic Sock Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.097Z", - "hashShort": "603b5ce8894db05e", + "dateModified": "2025-07-05T23:29:01.252Z", + "hashShort": "106dc4e18c77ffb0", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 833550146835, - ], - "fromEgg": "Quantum Space Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 195, - "goldenThumbnail": "rbxassetid://17270075250", - "maxChance": 0.08991008991008992, - "name": "Quantum Tiger", + "goldenThumbnail": "rbxassetid://16393836932", + "indexDesc": "Comes with the Titanic Sock Monkey plush!", + "indexObtainable": true, + "name": "Titanic Sock Monkey", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17270075327", + "thumbnail": "rbxassetid://16393836771", + "titanic": true, }, - "configName": "Quantum Tiger", + "configName": "Titanic Sock Monkey", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.096Z", - "hashShort": "9a603f9def63b9f1", + "dateModified": "2025-07-05T23:29:01.243Z", + "hashShort": "a481277bbf3325bc", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 617763842309, - ], "fly": true, - "fromEgg": "Quantum Egg", - "fromWorldNumber": 2, - "fromZoneNumber": 193, - "goldenThumbnail": "rbxassetid://17277245108", - "maxChance": 0.08991008991008992, - "name": "Fragmented Pterodactyl", + "goldenThumbnail": "rbxassetid://16746763506", + "indexDesc": "Found in the Exclusive Superhero Egg!", + "indexObtainable": true, + "name": "Titanic Bat Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17270073233", + "thumbnail": "rbxassetid://16746763420", + "titanic": true, }, - "configName": "Fragmented Pterodactyl", + "configName": "Titanic Bat Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.101Z", - "hashShort": "d772bc8dc94138b6", + "dateModified": "2025-07-05T23:29:01.232Z", + "hashShort": "c2eaec62c2b662fc", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 584446174988, + 1924691438, + 2085208916, + 2171012884, ], - "fromEgg": "Quantum Egg", + "fromEgg": "Tech Factory Egg", "fromWorldNumber": 2, - "fromZoneNumber": 193, - "goldenThumbnail": "rbxassetid://17270073032", + "fromZoneNumber": 144, + "goldenThumbnail": "rbxassetid://14968321272", "maxChance": 0.8991008991008992, - "name": "Fragmented Dominus", + "name": "Robot", "rarity": { "Announce": false, "Color": null, @@ -101101,27 +104987,29 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17270073102", + "thumbnail": "rbxassetid://14968321451", }, - "configName": "Fragmented Dominus", + "configName": "Robot", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.082Z", - "hashShort": "7b74f219a5e34413", + "dateModified": "2026-06-27T16:05:18.115Z", + "hashShort": "fe0389357cbb41f2", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 989566088535, + 292361886, + 316916758, + 329933945, ], "fly": true, - "fromEgg": "Void Crystal Egg", + "fromEgg": "Tech Nexus Egg", "fromWorldNumber": 2, - "fromZoneNumber": 197, - "goldenThumbnail": "rbxassetid://17270072669", + "fromZoneNumber": 128, + "goldenThumbnail": "rbxassetid://14968253382", "maxChance": 0.8991008991008992, - "name": "Atomic Axolotl", + "name": "Happy Computer", "rarity": { "Announce": false, "Color": null, @@ -101134,27 +105022,29 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17270072788", + "thumbnail": "rbxassetid://14968253514", }, - "configName": "Atomic Axolotl", + "configName": "Happy Computer", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.093Z", - "hashShort": "53fcf386a656d8af", + "dateModified": "2026-06-27T16:05:18.124Z", + "hashShort": "ad6c50a9ea4da810", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1054961904588, + 2051885335, + 2207864839, + 2318499890, ], "fly": true, - "fromEgg": "Void Crystal Egg", + "fromEgg": "Tech Factory Egg", "fromWorldNumber": 2, - "fromZoneNumber": 197, - "goldenThumbnail": "rbxassetid://17270072897", + "fromZoneNumber": 144, + "goldenThumbnail": "rbxassetid://15260349236", "maxChance": 0.08991008991008992, - "name": "Atomic Monkey", + "name": "M-2 PROTOTYPE", "rarity": { "Announce": false, "Color": null, @@ -101167,507 +105057,537 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17270072951", + "thumbnail": "rbxassetid://15260349138", }, - "configName": "Atomic Monkey", + "configName": "M-2 PROTOTYPE", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.098Z", - "hashShort": "041e71674f360989", + "dateModified": "2026-06-27T16:05:19.893Z", + "hashShort": "fef485e081c7d211", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1472870513798, + 2165277868, + 2345792273, + 2442328406, ], - "fromEgg": "Void Spiral Egg", + "fly": true, + "fromEgg": "Tech Robot Egg", "fromWorldNumber": 2, - "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://17276416611", - "maxChance": 0.000020201603926545354, - "name": "Void Alien", + "fromZoneNumber": 145, + "goldenThumbnail": "rbxassetid://15260350978", + "maxChance": 0.8991008991008992, + "name": "A-36", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17276416688", + "thumbnail": "rbxassetid://15260350888", }, - "configName": "Void Alien", + "configName": "A-36", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.079Z", - "hashShort": "af3377cac1fa61bb", + "dateModified": "2026-06-27T16:05:19.889Z", + "hashShort": "e5eddc768b527d07", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - }, "cachedPower": [ - 1579897516716, + 3468260800, + 3756895247, + 3911651075, ], - "fly": true, - "fromEgg": "Void Spiral Egg", + "fromEgg": "Alien Lab Egg", "fromWorldNumber": 2, - "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://17276416269", - "maxChance": 4.040320785309071e-7, - "name": "Black Hole Angelus", + "fromZoneNumber": 149, + "goldenThumbnail": "rbxassetid://14968182666", + "maxChance": 0.009999796004161515, + "name": "Bleebo The Alien", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://17276416395", + "thumbnail": "rbxassetid://14968182805", }, - "configName": "Black Hole Angelus", + "configName": "Bleebo The Alien", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.246Z", - "hashShort": "b2b745ddb36e796e", + "dateModified": "2026-06-27T16:05:19.906Z", + "hashShort": "09f103f0aaed49e8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://17285711649", - "name": "Black Hole Kitsune", + "cachedPower": [ + 592701314, + 642337418, + 668740536, + ], + "fromEgg": "Tech Planets Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 134, + "goldenThumbnail": "rbxassetid://14968279521", + "maxChance": 0.8991008991008992, + "name": "Meebo The Alien", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17285711731", + "thumbnail": "rbxassetid://14968279726", }, - "configName": "Black Hole Kitsune", + "configName": "Meebo The Alien", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.244Z", - "hashShort": "d9d8fc8540462642", + "dateModified": "2026-06-27T16:05:19.918Z", + "hashShort": "2f4b6c8052b9392f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://17285711111", - "name": "Black Hole Axolotl", + "cachedPower": [ + 2862227719, + 3098049683, + 3232685276, + ], + "fromEgg": "Alien Forest Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 148, + "goldenThumbnail": "rbxassetid://14968290647", + "maxChance": 0.1998001998001998, + "name": "Nine Eyed Lion", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17285711200", + "thumbnail": "rbxassetid://14968290843", }, - "configName": "Black Hole Axolotl", + "configName": "Nine Eyed Lion", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.238Z", - "hashShort": "e46f3cd3d073fa46", + "dateModified": "2026-06-27T16:05:19.915Z", + "hashShort": "dbf08f6c5eeba97f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://17285711302", - "name": "Black Hole Immortuus", + "cachedPower": [ + 4375916201, + 4726874063, + 4934491431, + ], + "fly": true, + "fromEgg": "Alien Lab Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 149, + "goldenThumbnail": "rbxassetid://14968279272", + "maxChance": 3.9999184016646064e-7, + "name": "Meebo in a Spaceship", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://17285745121", + "thumbnail": "rbxassetid://14968279401", }, - "configName": "Black Hole Immortuus", + "configName": "Meebo in a Spaceship", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.249Z", - "hashShort": "6d9836fda943d177", + "dateModified": "2026-06-27T16:05:19.919Z", + "hashShort": "483ee144ebfcf96e", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://17375065330", - "huge": true, - "indexDesc": "Earned from the 2024 Backrooms Event!", - "indexObtainable": true, - "name": "Huge Plague Dragon", + "cachedPower": [ + 2740429801, + 2968726291, + 3090921344, + ], + "fromEgg": "Alien Garden Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 147, + "goldenThumbnail": "rbxassetid://14968247533", + "maxChance": 0.6993006993006994, + "name": "Gleebo The Alien", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17375065126", + "thumbnail": "rbxassetid://14968247642", }, - "configName": "Huge Plague Dragon", + "configName": "Gleebo The Alien", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.695Z", - "hashShort": "f16443bec7a0d186", + "dateModified": "2026-06-27T16:05:19.907Z", + "hashShort": "b265f3b0811f11b9", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://17375064755", - "huge": true, - "indexDesc": "Found in the Backrooms Pack!", - "indexObtainable": true, - "name": "Huge Bloo Cat", - "rarity": { - "Announce": true, + "cachedPower": [ + 3082983526, + 3339725532, + 3477204050, + ], + "fromEgg": "Alien Forest Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 148, + "goldenThumbnail": "rbxassetid://14968170208", + "maxChance": 0.6999857202913061, + "name": "Alien Axolotl", + "rarity": { + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17375064407", - }, - "configName": "Huge Bloo Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.687Z", - "hashShort": "a62c58c576982b4a", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 917104998503, - ], - "fromWorldNumber": 2, - "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://17374942746", - "name": "Night Terror Cat", - "thumbnail": "rbxassetid://17374942518", + "thumbnail": "rbxassetid://14968170299", }, - "configName": "Night Terror Cat", + "configName": "Alien Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.237Z", - "hashShort": "4279b9412dd1eb17", + "dateModified": "2026-06-27T16:05:19.904Z", + "hashShort": "876e6ff59d3f7282", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1574881081107, + 631870184, + 680061452, + 714294924, ], "fly": true, + "fromEgg": "Tech Planets Egg", "fromWorldNumber": 2, - "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://17374943172", - "name": "Plague Dragon", - "thumbnail": "rbxassetid://17374942910", - }, - "configName": "Plague Dragon", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.261Z", - "hashShort": "db2ac35698462ad2", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 1520872813580, - ], - "fromWorldNumber": 2, - "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://17374944886", - "name": "Creepy Wolf", - "thumbnail": "rbxassetid://17374944716", + "fromZoneNumber": 134, + "goldenThumbnail": "rbxassetid://14968339590", + "maxChance": 0.08991008991008992, + "name": "Star Surfer", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://14968339654", }, - "configName": "Creepy Wolf", + "configName": "Star Surfer", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.240Z", - "hashShort": "aee007b0fcd1f5af", + "dateModified": "2026-06-27T16:05:19.897Z", + "hashShort": "195e733bd538c605", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1068157586492, + 4079751448, + 4414263620, + 4607406927, ], + "fly": true, + "fromEgg": "Alien Lab Egg", "fromWorldNumber": 2, - "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://17374944579", - "name": "Creepy Yeti", - "thumbnail": "rbxassetid://17374944347", - }, - "configName": "Creepy Yeti", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.238Z", - "hashShort": "34a19a10bbc4b7e2", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://17374946383", - "name": "Bloo Cat", + "fromZoneNumber": 149, + "goldenThumbnail": "rbxassetid://14968265282", + "maxChance": 0.000019999592008323033, + "name": "Jelly Alien", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://17374946247", + "thumbnail": "rbxassetid://14968265425", }, - "configName": "Bloo Cat", + "configName": "Jelly Alien", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.247Z", - "hashShort": "1a40db34f92348cc", + "dateModified": "2026-06-27T16:05:19.907Z", + "hashShort": "04c1a2986864ba75", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1201677284804, + 2921532049, + 3143425633, + 3300749200, ], + "fromEgg": "Alien Garden Egg", "fromWorldNumber": 2, - "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://17374945289", - "name": "Corrupt Skeleton", - "thumbnail": "rbxassetid://17374945083", + "fromZoneNumber": 147, + "goldenThumbnail": "rbxassetid://14968170030", + "maxChance": 0.08991008991008992, + "name": "Alien Arachnid", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://14968170120", }, - "configName": "Corrupt Skeleton", + "configName": "Alien Arachnid", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.241Z", - "hashShort": "9aec7b2fc1b007e7", + "dateModified": "2026-06-27T16:05:19.923Z", + "hashShort": "37567ec1e08adabd", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1451742231144, + 750137600, + 812902334, + 846324135, ], + "fromEgg": "Tech Mars Egg", "fromWorldNumber": 2, - "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://17374945603", - "name": "Corrupt Octopus", - "thumbnail": "rbxassetid://17374945450", - }, - "configName": "Corrupt Octopus", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.259Z", - "hashShort": "37b5902d48900cdb", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "animations": { - "flyHeight": 0.025, - "flyHeightChange": 0, - "swerve": true, - "swerveAggression": 0.2, - "swerveMaxAngle": 60, + "fromZoneNumber": 136, + "goldenThumbnail": "rbxassetid://14968317608", + "maxChance": 0.9, + "name": "Red Fluffy", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, }, - "cachedPower": [ - 1147055590040, - ], - "fly": true, - "fromWorldNumber": 2, - "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://17374943495", - "name": "Ender Slime", - "thumbnail": "rbxassetid://17374943332", + "thumbnail": "rbxassetid://14968317699", }, - "configName": "Ender Slime", + "configName": "Red Fluffy", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.239Z", - "hashShort": "074ac259e108f8fc", + "dateModified": "2026-06-27T16:05:19.924Z", + "hashShort": "e6d0d3adf1e60424", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1662374474502, + 843881038, + 914436071, + 952058971, ], - "fly": true, + "fromEgg": "Tech Saturn Egg", "fromWorldNumber": 2, - "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://17374943779", - "name": "Ender Hades", - "thumbnail": "rbxassetid://17374943619", + "fromZoneNumber": 137, + "goldenThumbnail": "rbxassetid://14968184154", + "maxChance": 0.989010989010989, + "name": "Blue Fluffy", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://14968184345", }, - "configName": "Ender Hades", + "configName": "Blue Fluffy", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.252Z", - "hashShort": "9ae87079ec5421d4", + "dateModified": "2026-06-27T16:05:19.927Z", + "hashShort": "168c394e3feca814", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 995328660140, + 3286723555, + 3536283441, + 3713199401, ], + "fromEgg": "Alien Forest Egg", "fromWorldNumber": 2, - "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://17374944094", - "name": "Ender Goat", - "thumbnail": "rbxassetid://17374943944", - }, - "configName": "Ender Goat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.237Z", - "hashShort": "7af2536a7f59b43e", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "goldenThumbnail": "rbxassetid://17450309513", - "huge": true, - "indexDesc": "Found in the Exclusive Bejeweled Egg!", - "indexObtainable": true, - "name": "Huge Bejeweled Unicorn", + "fromZoneNumber": 148, + "goldenThumbnail": "rbxassetid://15260350778", + "maxChance": 0.28999408412068395, + "name": "Alien Parasite", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17450309349", + "thumbnail": "rbxassetid://15260350131", }, - "configName": "Huge Bejeweled Unicorn", + "configName": "Alien Parasite", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.702Z", - "hashShort": "7bb75b10defce0f5", + "dateModified": "2026-06-27T16:05:19.928Z", + "hashShort": "cc5d309283f2f5aa", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://17450309161", - "huge": true, - "indexDesc": "Found in the Exclusive Bejeweled Egg!", - "indexObtainable": true, - "name": "Huge Bejeweled Lion", + "cachedPower": [ + 1138650589, + 1225343845, + 1286879208, + ], + "fly": true, + "fromEgg": "Tech Galaxy Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 139, + "goldenThumbnail": "rbxassetid://14968243367", + "maxChance": 0.08991008991008992, + "name": "Galaxy Fox", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17450309030", + "thumbnail": "rbxassetid://14968243570", }, - "configName": "Huge Bejeweled Lion", + "configName": "Galaxy Fox", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.704Z", - "hashShort": "ffba292f259a639d", + "dateModified": "2026-06-27T16:05:19.929Z", + "hashShort": "f7736a8289ad55d7", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://17450362996", - "huge": true, - "indexDesc": "Found in the Backrooms Pack!", - "indexObtainable": true, - "name": "Huge Puurple Cat", + "cachedPower": [ + 1068067013, + 1157319246, + 1204917135, + ], + "fly": true, + "fromEgg": "Tech Galaxy Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 139, + "goldenThumbnail": "rbxassetid://14968242686", + "maxChance": 0.8991008991008992, + "name": "Galaxy Axolotl", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17450362839", + "thumbnail": "rbxassetid://14968242856", }, - "configName": "Huge Puurple Cat", + "configName": "Astral Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.703Z", - "hashShort": "ba069ae615e12e37", + "dateModified": "2026-06-27T16:05:21.652Z", + "hashShort": "32fe0275a9a769bd", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://17451173125", - "huge": true, - "indexDesc": "Earned from the 2024 Deep Backrooms Event!", - "indexObtainable": true, - "name": "Huge Night Terror Cat", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://17825124454", + "name": "Banana", + "preventGolden": true, "rarity": { "Announce": true, "Color": null, @@ -101680,21 +105600,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17451173023", + "secret": true, + "thumbnail": "rbxassetid://17825124454", }, - "configName": "Huge Night Terror Cat", + "configName": "Banana", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.693Z", - "hashShort": "86616ee9da5d243c", + "dateModified": "2025-07-05T23:28:54.604Z", + "hashShort": "1bf8ee206146892d", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14977503494", - "indexDesc": "Comes with the Titanic Dino Cat plush!", - "indexObtainable": true, - "name": "Titanic Dino Cat", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://17825174788", + "name": "Yellow Lucky Block", + "preventGolden": true, "rarity": { "Announce": true, "Color": null, @@ -101707,192 +105628,188 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976604955", - "titanic": true, + "secret": true, + "thumbnail": "rbxassetid://17825174788", }, - "configName": "Titanic Dino Cat", + "configName": "Yellow Lucky Block", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.249Z", - "hashShort": "d27e9dbe27cbaca4", + "dateModified": "2025-07-05T23:28:54.952Z", + "hashShort": "57057ab7cb82a3e3", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { + "cachedPower": [ + 1012133857, + 1089220017, + 1143944549, + ], "fly": true, - "goldenThumbnail": "rbxassetid://17450303005", - "indexDesc": "Found in the Exclusive Bejeweled Egg!", - "indexObtainable": true, - "name": "Titanic Bejeweled Griffin", + "fromEgg": "Tech Comet Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 138, + "goldenThumbnail": "rbxassetid://14968197753", + "maxChance": 0.08991008991008992, + "name": "Comet Agony", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17450302814", - "titanic": true, + "thumbnail": "rbxassetid://14968197850", }, - "configName": "Titanic Bejeweled Griffin", + "configName": "Comet Agony", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.391Z", - "hashShort": "79bd10be2135c546", + "dateModified": "2026-06-27T16:05:23.874Z", + "hashShort": "1ff6b3a2236dfd4f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1623488521882, + 949392900, + 1028761351, + 1071067380, ], + "fly": true, + "fromEgg": "Tech Comet Egg", "fromWorldNumber": 2, - "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://17374946122", - "name": "Corrupt Cat", - "thumbnail": "rbxassetid://17374945948", - }, - "configName": "Corrupt Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.241Z", - "hashShort": "9c8bb322661ec253", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://17450284506", - "name": "Bejeweled Lion", + "fromZoneNumber": 138, + "goldenThumbnail": "rbxassetid://14968197898", + "maxChance": 0.8991008991008992, + "name": "Comet Cyclops", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17450284689", + "thumbnail": "rbxassetid://14968198011", }, - "configName": "Bejeweled Lion", + "configName": "Comet Cyclops", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.243Z", - "hashShort": "f3f8da0cb816a0ec", + "dateModified": "2026-06-27T16:05:23.876Z", + "hashShort": "a125d0cf7c575b9a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1555438104797, + 3446010518, + 3711540733, + 3885492941, ], + "fly": true, "fromWorldNumber": 2, - "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://17450285382", - "name": "Evil Gorilla", - "thumbnail": "rbxassetid://17450285573", + "fromZoneNumber": 149, + "goldenThumbnail": "rbxassetid://14968197158", + "name": "Clover Fairy", + "thumbnail": "rbxassetid://14968197237", }, - "configName": "Evil Gorilla", + "configName": "Clover Fairy", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.251Z", - "hashShort": "e8fe4d0b19d60501", + "dateModified": "2026-06-27T16:05:23.878Z", + "hashShort": "f590458dd19de776", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1092433895276, + 4092137490, + 4423767507, + 4621662757, ], "fromWorldNumber": 2, - "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://17450285709", - "name": "Night Terror Dog", - "thumbnail": "rbxassetid://17450285937", + "fromZoneNumber": 149, + "goldenThumbnail": "rbxassetid://14968196586", + "name": "Clover Axolotl", + "thumbnail": "rbxassetid://14968196669", }, - "configName": "Night Terror Dog", + "configName": "Clover Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.253Z", - "hashShort": "e1279e2a9c95e964", + "dateModified": "2026-06-27T16:05:23.879Z", + "hashShort": "e7cb6b12a5b371ce", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1691538938967, + 2308371002, + 2483795833, + 2608206200, ], + "fly": true, + "fromEgg": "Tech Robot Egg", "fromWorldNumber": 2, - "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://17450286088", - "name": "Plague Cow", - "thumbnail": "rbxassetid://17450286194", - }, - "configName": "Plague Cow", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.250Z", - "hashShort": "5c0cdfce60bdfb35", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://17450286320", - "name": "Puurple Cat", + "fromZoneNumber": 145, + "goldenThumbnail": "rbxassetid://15260348775", + "maxChance": 0.08991008991008992, + "name": "M-10 PROTOTYPE", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17450286457", + "thumbnail": "rbxassetid://15260348651", }, - "configName": "Puurple Cat", + "configName": "M-10 PROTOTYPE", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.262Z", - "hashShort": "18a42b390b1ac4b0", + "dateModified": "2026-06-27T16:05:25.646Z", + "hashShort": "6f0dfa4445baf156", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1228988132186, + 3025304158, + 3221829818, + 3409192969, ], "fromWorldNumber": 2, - "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://17450285097", - "name": "Ender Bunny", - "thumbnail": "rbxassetid://17450285216", + "fromZoneNumber": 149, + "goldenThumbnail": "rbxassetid://14968273282", + "name": "Leprechaun Cat", + "thumbnail": "rbxassetid://14968273460", }, - "configName": "Ender Bunny", + "configName": "Leprechaun Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.257Z", - "hashShort": "3516b7b07146cfda", + "dateModified": "2026-06-27T16:05:25.622Z", + "hashShort": "e3f85c8522ea1715", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://17450283974", - "name": "Bejeweled Deer", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://17825174910", + "name": "Coin", + "preventGolden": true, "rarity": { "Announce": true, "Color": null, @@ -101905,293 +105822,321 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17450284180", + "secret": true, + "thumbnail": "rbxassetid://17825174910", }, - "configName": "Bejeweled Deer", + "configName": "Coin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.257Z", - "hashShort": "1a4e073f38d201ad", + "dateModified": "2025-07-05T23:28:56.136Z", + "hashShort": "2aec1390be4c010b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://17450284849", - "name": "Bejeweled Unicorn", + "cachedPower": [ + 526845612, + 570986826, + 594454339, + ], + "fromEgg": "Tech Rocket Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 133, + "goldenThumbnail": "rbxassetid://14968175706", + "maxChance": 0.8991008991008992, + "name": "Astronaut Cat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17450284940", + "thumbnail": "rbxassetid://14968175851", }, - "configName": "Bejeweled Unicorn", + "configName": "Astronaut Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.254Z", - "hashShort": "746a11074b08c1cc", + "dateModified": "2026-06-27T16:05:28.063Z", + "hashShort": "2b3181079226c58f", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://17421845769", - "huge": true, - "indexDesc": "Reward in the 2024 Fragmented Clan Battle!", - "indexObtainable": true, - "name": "Huge Fragmented Dominus", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://17421845704", + "cachedPower": [ + 3214385668, + 3480923371, + 3630159296, + ], + "fromWorldNumber": 2, + "fromZoneNumber": 149, + "goldenThumbnail": "rbxassetid://14968264781", + "name": "Irish Corgi", + "thumbnail": "rbxassetid://14968264849", }, - "configName": "Huge Fragmented Dominus", + "configName": "Irish Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.700Z", - "hashShort": "d4763d4ade706c66", + "dateModified": "2026-06-27T16:05:28.103Z", + "hashShort": "a1906fd4e2fb1839", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://17515615360", - "huge": true, - "indexDesc": "Earned from the Void Chest!", - "indexObtainable": true, - "name": "Huge Holographic Cat", + "cachedPower": [ + 231001984, + 250423614, + 260706916, + ], + "fromEgg": "Tech Glacier Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 126, + "goldenThumbnail": "rbxassetid://16746704348", + "maxChance": 0.8991008991008992, + "name": "Frostbyte Walrus", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17515615256", + "thumbnail": "rbxassetid://16746704421", }, - "configName": "Huge Holographic Cat", + "configName": "Frostbyte Walrus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.707Z", - "hashShort": "d3b354ded50efd51", + "dateModified": "2026-06-27T16:05:33.891Z", + "hashShort": "6e32249bfda8538a", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://17515613170", - "huge": true, - "indexDesc": "Earned from the Void Spinny Wheel!", - "indexObtainable": true, - "name": "Huge Atomic Axolotl", + "cachedPower": [ + 370020512, + 401066660, + 417544451, + ], + "fromEgg": "Nuclear Forest Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 130, + "goldenThumbnail": "rbxassetid://16746706379", + "maxChance": 0.8991008991008992, + "name": "Nuclear Squirrel", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17515613028", + "thumbnail": "rbxassetid://16746706447", }, - "configName": "Huge Atomic Axolotl", + "configName": "Nuclear Squirrel", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.705Z", - "hashShort": "049f7da9983ed9d8", + "dateModified": "2026-06-27T16:05:33.889Z", + "hashShort": "5f758ca45e9fad21", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://17526083618", - "huge": true, - "indexDesc": "Earned from the Prison Chest!", - "indexObtainable": true, - "name": "Huge Prison Cat", + "cachedPower": [ + 259877232, + 281715055, + 293284838, + ], + "fromEgg": "Tech Melted Egg Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 127, + "goldenThumbnail": "rbxassetid://16746705408", + "maxChance": 0.8991008991008992, + "name": "Melted Slime", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17526083509", + "thumbnail": "rbxassetid://16746705513", }, - "configName": "Huge Prison Cat", + "configName": "Melted Slime", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.700Z", - "hashShort": "37cb03f071c28e6a", + "dateModified": "2026-06-27T16:05:33.914Z", + "hashShort": "aab3df2fd1625242", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1585048899874, + 277051309, + 298238512, + 313307819, ], - "fromEgg": "Striped Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 201, - "goldenThumbnail": "rbxassetid://17512183727", - "maxChance": 0.9, - "name": "Robber Cat", + "fromEgg": "Tech Melted Egg Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 127, + "goldenThumbnail": "rbxassetid://16746705175", + "maxChance": 0.08991008991008992, + "name": "Melted Rock", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17512183615", + "thumbnail": "rbxassetid://16746705286", }, - "configName": "Robber Cat", + "configName": "Melted Rock", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.974Z", - "hashShort": "11f88d4e2106c86f", + "dateModified": "2026-06-27T16:05:33.900Z", + "hashShort": "337f44e82dfd14e6", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1783180012358, + 193778430, + 208866465, + 219162352, ], - "fromEgg": "Cinderblocks Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 202, - "goldenThumbnail": "rbxassetid://17512187460", - "maxChance": 0.9989909192724429, - "name": "Detective Cat", + "fromEgg": "Tech Ice Circuit Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 125, + "goldenThumbnail": "rbxassetid://16746704136", + "maxChance": 0.1, + "name": "Frostbyte Penguin", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17512187366", + "thumbnail": "rbxassetid://16746704253", }, - "configName": "Detective Cat", + "configName": "Frostbyte Penguin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.256Z", - "hashShort": "f829f26c4ef429da", + "dateModified": "2026-06-27T16:05:33.913Z", + "hashShort": "e184f9a8a1f651fb", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2902493651778, + 246267830, + 265108774, + 278511871, ], - "fromEgg": "Lootbag Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 204, - "goldenThumbnail": "rbxassetid://17512187151", - "maxChance": 9.989909192724429e-8, - "name": "Guard Corgi", + "fromEgg": "Tech Glacier Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 126, + "goldenThumbnail": "rbxassetid://16764660881", + "maxChance": 0.08991008991008992, + "name": "Frostbyte Narwhal", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17512187005", + "thumbnail": "rbxassetid://16746704071", }, - "configName": "Guard Corgi", + "configName": "Frostbyte Narwhal", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.254Z", - "hashShort": "d0131303b6c0bb74", + "dateModified": "2026-06-27T16:05:33.914Z", + "hashShort": "9c8ed3072bb3ecbe", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2693722772306, + 666788978, + 722604483, + 752310390, ], - "fromEgg": "Lootbag Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 204, - "goldenThumbnail": "rbxassetid://17512186182", - "maxChance": 0.00000998990919272443, - "name": "Prison Axolotl", + "fromEgg": "Tech Moon Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 135, + "goldenThumbnail": "rbxassetid://16746704905", + "maxChance": 0.8991008991008992, + "name": "Lunar Fox", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17512186017", + "thumbnail": "rbxassetid://16746705031", }, - "configName": "Prison Axolotl", + "configName": "Lunar Fox", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.243Z", - "hashShort": "bcf6573264cf37a3", + "dateModified": "2026-06-27T16:05:33.915Z", + "hashShort": "aadbe5b3792c0b56", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1687008313151, + 710853957, + 765049813, + 803542439, ], - "fromEgg": "Cinderblocks Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 202, - "goldenThumbnail": "rbxassetid://17512185812", - "maxChance": 0.09, - "name": "Prison Bunny", + "fromEgg": "Tech Moon Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 135, + "goldenThumbnail": "rbxassetid://16746704728", + "maxChance": 0.08991008991008992, + "name": "Lunar Deer", "rarity": { "Announce": false, "Color": null, @@ -102204,26 +106149,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17512185613", + "thumbnail": "rbxassetid://16746704804", }, - "configName": "Prison Bunny", + "configName": "Lunar Deer", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.240Z", - "hashShort": "58790eb3ec0728b1", + "dateModified": "2026-06-27T16:05:33.916Z", + "hashShort": "83092f8dd8890c22", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1238045066360, + 180425231, + 193583672, + 203509552, ], - "fromEgg": "Rusty Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 200, - "goldenThumbnail": "rbxassetid://17512185456", + "fromEgg": "Tech Ice Circuit Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 125, + "goldenThumbnail": "rbxassetid://16746703785", "maxChance": 0.9, - "name": "Prison Cat", + "name": "Frostbyte Cat", "rarity": { "Announce": false, "Color": null, @@ -102236,58 +106183,54 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17512185186", + "thumbnail": "rbxassetid://16746703911", }, - "configName": "Prison Cat", + "configName": "Frostbyte Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.259Z", - "hashShort": "51a50a26b836e3d2", + "dateModified": "2026-06-27T16:05:33.915Z", + "hashShort": "b6ed49375f495120", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 2406049466303, - ], - "fromEgg": "Lootbag Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 204, - "goldenThumbnail": "rbxassetid://17512184917", - "maxChance": 0.0009989909192724428, - "name": "Prison Cow", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://16746708967", + "name": "Thunder Bear", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17512184722", + "thumbnail": "rbxassetid://16746709043", }, - "configName": "Prison Cow", + "configName": "Thunder Bear", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.258Z", - "hashShort": "8e714a0a36d859d9", + "dateModified": "2025-07-05T23:28:56.908Z", + "hashShort": "8e9463618cbd41b2", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1499562945023, + 799710702, + 860659720, + 903941821, ], - "fromEgg": "Striped Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 201, - "goldenThumbnail": "rbxassetid://17516105420", + "fromEgg": "Tech Mars Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 136, + "goldenThumbnail": "rbxassetid://16764657640", "maxChance": 0.09, - "name": "Prison Dog", + "name": "Red Woofy", "rarity": { "Announce": false, "Color": null, @@ -102300,26 +106243,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17516105511", + "thumbnail": "rbxassetid://16746706891", }, - "configName": "Prison Dog", + "configName": "Red Woofy", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.241Z", - "hashShort": "25530a385eeebf98", + "dateModified": "2026-06-27T16:05:33.916Z", + "hashShort": "4a39cac0df27cb62", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1329672284513, + 328907122, + 356517383, + 371163024, ], - "fromEgg": "Rusty Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 200, - "goldenThumbnail": "rbxassetid://17512184150", - "maxChance": 0.9, - "name": "Prison Monkey", + "fromEgg": "Nuclear Crack Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 129, + "goldenThumbnail": "rbxassetid://16746705903", + "maxChance": 0.8991008991008992, + "name": "Nuclear Axolotl", "rarity": { "Announce": false, "Color": null, @@ -102332,78 +106277,90 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17512183910", + "thumbnail": "rbxassetid://16746706084", }, - "configName": "Prison Monkey", + "configName": "Nuclear Axolotl", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.256Z", - "hashShort": "051885733074e78d", + "dateModified": "2026-06-27T16:05:33.917Z", + "hashShort": "de97677f939f2e20", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://17588547900", - "huge": true, - "indexDesc": "Earned from the Police HQ Egg, Bank Heist Minigame, and Cops vs. Robbers Pack!", - "indexObtainable": true, - "name": "Huge Police Cat", + "cachedPower": [ + 311682722, + 335508568, + 352451429, + ], + "fly": true, + "fromEgg": "Tech Nexus Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 128, + "goldenThumbnail": "rbxassetid://16746703541", + "maxChance": 0.08991008991008992, + "name": "Evil Computer", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17588549479", + "thumbnail": "rbxassetid://16746703643", }, - "configName": "Huge Police Cat", + "configName": "Evil Computer", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.693Z", - "hashShort": "df1785c9cb837325", + "dateModified": "2026-06-27T16:05:33.918Z", + "hashShort": "87e7e0085b88b9c7", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "", - "huge": true, - "indexDesc": "Found in the Exclusive Stargazing Egg!", - "indexObtainable": true, - "name": "Huge Stargazing Axolotl", + "cachedPower": [ + 350643063, + 377436388, + 396485968, + ], + "fly": true, + "fromEgg": "Nuclear Crack Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 129, + "goldenThumbnail": "rbxassetid://16746707233", + "maxChance": 0.08991008991008992, + "name": "Nuclear Dragon", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17602432142", + "thumbnail": "rbxassetid://16746708235", }, - "configName": "Huge Stargazing Axolotl", + "configName": "Nuclear Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.689Z", - "hashShort": "912d7961020d7212", + "dateModified": "2026-06-27T16:05:33.919Z", + "hashShort": "6abf4b723ed06673", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "", - "huge": true, - "indexDesc": "Found in the Exclusive Stargazing Egg!", - "indexObtainable": true, - "name": "Huge Stargazing Wolf", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://16746704524", + "name": "Jester Dog", "rarity": { "Announce": true, "Color": null, @@ -102416,22 +106373,21 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17602431693", + "thumbnail": "rbxassetid://16746704663", }, - "configName": "Huge Stargazing Wolf", + "configName": "Jester Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.687Z", - "hashShort": "75429bbac7007732", + "dateModified": "2025-07-05T23:28:56.919Z", + "hashShort": "38864ee5ff36da5e", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://17604035769", - "huge": true, - "indexDesc": "Found in the Cops vs. Robbers Pack!", - "indexObtainable": true, - "name": "Huge Robber Cat", + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "rbxassetid://16746708772", + "name": "Super Tiger", "rarity": { "Announce": true, "Color": null, @@ -102444,331 +106400,336 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17604035571", + "thumbnail": "rbxassetid://16746708885", }, - "configName": "Huge Robber Cat", + "configName": "Super Tiger", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.686Z", - "hashShort": "0fca2700292dc957", + "dateModified": "2025-07-05T23:28:56.911Z", + "hashShort": "7d79881d96f62980", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Stargazing Egg!", - "indexObtainable": true, - "name": "Titanic Stargazing Bull", + "cachedPower": [ + 1351772313, + 1464640405, + 1524890399, + ], + "fromEgg": "Electric City Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 141, + "goldenThumbnail": "rbxassetid://16746702192", + "maxChance": 0.8991008991008992, + "name": "Electric Bear", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17602420874", - "titanic": true, + "thumbnail": "rbxassetid://16746702289", }, - "configName": "Titanic Stargazing Bull", + "configName": "Electric Bear", "dateCreated": null, - "dateModified": "2025-07-05T23:29:01.395Z", - "hashShort": "32c93af021283f7f", + "dateModified": "2026-06-27T16:05:33.920Z", + "hashShort": "f7fffb064fc64127", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 3065726530796, + 1280981913, + 1378480163, + 1447674608, ], - "fromWorldNumber": 3, - "fromZoneNumber": 204, - "goldenThumbnail": "rbxassetid://17512186518", - "name": "Police Dog", - "thumbnail": "rbxassetid://17512186358", + "fromEgg": "Electric Garden Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 140, + "goldenThumbnail": "rbxassetid://16746702369", + "maxChance": 0.08991008991008992, + "name": "Electric Bunny", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://16746702462", }, - "configName": "Police Dog", + "configName": "Electric Bunny", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.255Z", - "hashShort": "4d7317ccad850430", + "dateModified": "2026-06-27T16:05:33.920Z", + "hashShort": "8c30f7727972638b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 3192735201358, + 1520743852, + 1647670237, + 1715456382, ], - "fromWorldNumber": 3, - "fromZoneNumber": 204, - "goldenThumbnail": "rbxassetid://17512186853", - "name": "Police Cat", - "thumbnail": "rbxassetid://17512186681", - }, - "configName": "Police Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.260Z", - "hashShort": "15b04ddfa95f77a1", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "", - "name": "Stargazing Wolf", + "fromEgg": "Electric Forest Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 142, + "goldenThumbnail": "rbxassetid://16746702612", + "maxChance": 0.8991008991008992, + "name": "Electric Cat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17602385201", + "thumbnail": "rbxassetid://16746702740", }, - "configName": "Stargazing Wolf", + "configName": "Electric Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.261Z", - "hashShort": "afec0df1bdd17faf", + "dateModified": "2026-06-27T16:05:33.921Z", + "hashShort": "49967e7fc42e0ea8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "", - "name": "Stargazing Bear", + "cachedPower": [ + 1621242734, + 1744560989, + 1832054339, + ], + "fromEgg": "Electric Forest Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 142, + "goldenThumbnail": "rbxassetid://16746702851", + "maxChance": 0.08991008991008992, + "name": "Electric Corgi", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17602385427", + "thumbnail": "rbxassetid://16746702949", }, - "configName": "Stargazing Bear", + "configName": "Electric Corgi", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.256Z", - "hashShort": "249962156e79f7c3", + "dateModified": "2026-06-27T16:05:33.922Z", + "hashShort": "27023a5a4e91702f", }, { "category": "Uncategorized", "collection": "Pets", - "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "", - "name": "Stargazing Axolotl", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://17603089445", - }, - "configName": "Stargazing Axolotl", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.255Z", - "hashShort": "b005225764c742d5", - }, - { - "category": "Huge", - "collection": "Pets", "configData": { "cachedPower": [ - 5391647962904, + 1201575389, + 1301942991, + 1355494610, ], - "fromEgg": "Summer Sun Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 209, - "goldenThumbnail": "rbxassetid://17689399677", - "huge": true, - "indexDesc": "Earned from the Summer Obby World and Summer Gifts!", - "indexObtainable": true, - "maxChance": 5.045356468082159e-9, - "name": "Huge Pineapple Monkey", + "fromEgg": "Electric Garden Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 140, + "goldenThumbnail": "rbxassetid://16746703097", + "maxChance": 0.8991008991008992, + "name": "Electric Fox", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17689399533", + "thumbnail": "rbxassetid://16746703212", }, - "configName": "Huge Pineapple Monkey", + "configName": "Electric Fox", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.684Z", - "hashShort": "094b6a8b487a4598", + "dateModified": "2026-06-27T16:05:33.926Z", + "hashShort": "37097fe57b92948e", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { + "cachedPower": [ + 1441104652, + 1550755214, + 1628562696, + ], "fly": true, - "goldenThumbnail": "rbxassetid://17687869302", - "huge": true, - "indexDesc": "Found in the Summer Pack!", - "indexObtainable": true, - "name": "Huge Sun Agony", + "fromEgg": "Electric City Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 141, + "goldenThumbnail": "rbxassetid://16746703344", + "maxChance": 0.08991008991008992, + "name": "Electric Griffin", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17687869169", + "thumbnail": "rbxassetid://16746703468", }, - "configName": "Huge Sun Agony", + "configName": "Electric Griffin", "dateCreated": null, - "dateModified": "2025-07-05T23:28:59.862Z", - "hashShort": "9961877622aeac4f", + "dateModified": "2026-06-27T16:05:33.927Z", + "hashShort": "a015e2b352db1101", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 4093236919523, + 443782626, + 477666539, + 501748819, ], - "fromEgg": "Summer Beachball Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 208, - "goldenThumbnail": "rbxassetid://14968324248", - "maxChance": 0.001009071293616432, - "name": "Sailor Seal", + "fromEgg": "Nuclear Mine Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 131, + "goldenThumbnail": "rbxassetid://16746708561", + "maxChance": 0.08991008991008992, + "name": "Nuclear Mining Dog", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968324382", + "thumbnail": "rbxassetid://16746708632", }, - "configName": "Sailor Seal", + "configName": "Nuclear Mining Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:53.589Z", - "hashShort": "df937be571d9cbc7", + "dateModified": "2026-06-27T16:05:33.929Z", + "hashShort": "2214a7b6bcd8418a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2538941853534, + 499255454, + 537360458, + 564438099, ], - "fromEgg": "Summer Beach Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 205, - "goldenThumbnail": "rbxassetid://14968238834", - "maxChance": 0.8, - "name": "Floatie Ducky", + "fly": true, + "fromEgg": "Nuclear Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 132, + "goldenThumbnail": "rbxassetid://16746705619", + "maxChance": 0.08991008991008992, + "name": "Nuclear Agony", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968238944", + "thumbnail": "rbxassetid://16746705737", }, - "configName": "Floatie Ducky", + "configName": "Nuclear Agony", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.996Z", - "hashShort": "64fed59a98a8193c", + "dateModified": "2026-06-27T16:05:33.927Z", + "hashShort": "54002bb401722c26", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2653434476017, + 468307211, + 507562188, + 528420459, ], - "fromEgg": "Summer Floatie Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 206, - "goldenThumbnail": "rbxassetid://14968239052", - "maxChance": 0.195, - "name": "Floatie Flamingo", + "fromEgg": "Nuclear Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 132, + "goldenThumbnail": "rbxassetid://16746706194", + "maxChance": 0.8991008991008992, + "name": "Nuclear Mortuus", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968239203", + "thumbnail": "rbxassetid://16746706290", }, - "configName": "Floatie Flamingo", + "configName": "Nuclear Mortuus", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.988Z", - "hashShort": "7346bf74aefef5a3", + "dateModified": "2026-06-27T16:05:33.928Z", + "hashShort": "9cd8720043e192fa", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "ballBounceHeight": 2, - }, "cachedPower": [ - 3005121406700, + 394473445, + 424604088, + 446022589, ], - "fromEgg": "Summer Melon Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 207, - "goldenThumbnail": "rbxassetid://14968180491", - "maxChance": 0.1475, - "name": "Beach Ball Monkey", + "fromEgg": "Nuclear Forest Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 130, + "goldenThumbnail": "rbxassetid://16764648195", + "maxChance": 0.08991008991008992, + "name": "Nuclear Wolf", "rarity": { "Announce": false, "Color": null, @@ -102781,29 +106742,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14976335216", + "thumbnail": "rbxassetid://16746706571", }, - "configName": "Beach Ball Monkey", + "configName": "Nuclear Wolf", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.988Z", - "hashShort": "509d388ad9619344", + "dateModified": "2026-06-27T16:05:33.930Z", + "hashShort": "daed6fdfa0441971", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "ballBounceHeight": 2, - }, "cachedPower": [ - 2912685016127, + 416273076, + 451183022, + 469722135, ], - "fromEgg": "Summer Floatie Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 206, - "goldenThumbnail": "rbxassetid://14968180352", - "maxChance": 0.85, - "name": "Beach Ball Dolphin", + "fromEgg": "Nuclear Mine Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 131, + "goldenThumbnail": "rbxassetid://16746708387", + "maxChance": 0.8991008991008992, + "name": "Nuclear Mining Cat", "rarity": { "Announce": false, "Color": null, @@ -102816,66 +106776,62 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968180415", + "thumbnail": "rbxassetid://16746708501", }, - "configName": "Beach Ball Dolphin", + "configName": "Nuclear Mining Cat", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.997Z", - "hashShort": "9cdff61fd5d05cc7", + "dateModified": "2026-06-27T16:05:33.929Z", + "hashShort": "0786aef67bb16f26", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.09, - "flyHeightChange": 0.025, - "swerve": true, - "swerveAggression": 0.2, - "swerveMaxAngle": 60, - }, "cachedPower": [ - 3854035289192, + 561662386, + 604514636, + 634960526, ], - "fly": true, - "fromEgg": "Summer Beachball Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 208, - "goldenThumbnail": "rbxassetid://14968349519", - "maxChance": 0.9989805806802676, - "name": "Surfboard Axolotl", + "fromEgg": "Tech Rocket Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 133, + "goldenThumbnail": "rbxassetid://16746701992", + "maxChance": 0.08991008991008992, + "name": "Astronaut Dog", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968349863", + "thumbnail": "rbxassetid://16746702070", }, - "configName": "Surfboard Axolotl", + "configName": "Astronaut Dog", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.979Z", - "hashShort": "e843914eca205923", + "dateModified": "2026-06-27T16:05:33.931Z", + "hashShort": "7a6f0b0455494586", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2334861553216, + 1710836834, + 1853573534, + 1929838378, ], - "fromEgg": "Summer Beach Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 205, - "goldenThumbnail": "rbxassetid://14968328893", - "maxChance": 0.29, - "name": "Scuba Shark", + "fromEgg": "Electric Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 143, + "goldenThumbnail": "rbxassetid://16747972472", + "maxChance": 0.8991008991008992, + "name": "Electric Unicorn", "rarity": { "Announce": false, "Color": null, @@ -102888,66 +106844,64 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14968328992", + "thumbnail": "rbxassetid://16747972522", }, - "configName": "Scuba Shark", + "configName": "Electric Unicorn", "dateCreated": null, - "dateModified": "2025-07-05T23:28:55.987Z", - "hashShort": "652551f0c3174941", + "dateModified": "2026-06-27T16:05:33.934Z", + "hashShort": "3a2ab6f492c6a66a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2263129425230, + 2596917377, + 2794212715, + 2934114614, ], - "fromEgg": "Summer Beach Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 205, - "goldenThumbnail": "rbxassetid://14968328545", - "maxChance": 0.7, - "name": "Scuba Dog", + "fly": true, + "fromEgg": "Tech Hive Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 146, + "goldenThumbnail": "rbxassetid://16747972631", + "maxChance": 0.08991008991008992, + "name": "M-B PROTOTYPE", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968328827", + "thumbnail": "rbxassetid://16747972793", }, - "configName": "Scuba Dog", + "configName": "M-B PROTOTYPE", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.300Z", - "hashShort": "a94e49a073439943", + "dateModified": "2026-06-27T16:05:33.932Z", + "hashShort": "99e77cd68c9d92ac", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.09, - "flyHeightChange": 0.025, - "swerve": true, - "swerveAggression": 0.2, - "swerveMaxAngle": 60, - }, "cachedPower": [ - 3379508011494, + 1823898075, + 1962588438, + 2060974188, ], "fly": true, - "fromEgg": "Summer Beachball Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 208, - "goldenThumbnail": "rbxassetid://14968350007", - "maxChance": 0.1498351813005694, - "name": "Surfboard Corgi", + "fromEgg": "Electric Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 143, + "goldenThumbnail": "rbxassetid://16747972338", + "maxChance": 0.08991008991008992, + "name": "Electric Dragon", "rarity": { "Announce": false, "Color": null, @@ -102960,120 +106914,114 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14968350214", + "thumbnail": "rbxassetid://16747972405", }, - "configName": "Surfboard Corgi", + "configName": "Electric Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:56.298Z", - "hashShort": "1ac7c1f268138739", + "dateModified": "2026-06-27T16:05:33.935Z", + "hashShort": "fa0700e4444b8c71", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 4853191381696, + 2435937601, + 2638941412, + 2747551954, ], - "fromEgg": "Summer Sun Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 209, - "goldenThumbnail": "rbxassetid://17673257117", - "maxChance": 0.00001009071293616432, - "name": "Pineapple Monkey", + "fromEgg": "Tech Hive Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 146, + "goldenThumbnail": "rbxassetid://16747972888", + "maxChance": 0.8991008991008992, + "name": "Robot Bee", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Mythical", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 5, - "_id": "Mythical", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17673256954", + "thumbnail": "rbxassetid://16747972982", }, - "configName": "Pineapple Monkey", + "configName": "Robot Bee", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.250Z", - "hashShort": "f831781c46306028", + "dateModified": "2026-06-27T16:05:33.933Z", + "hashShort": "7c2beb7ea1dce2a8", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 3340982138194, - ], - "fromEgg": "Summer Melon Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 207, - "goldenThumbnail": "rbxassetid://17673257243", - "maxChance": 0.8490660273698931, - "name": "Flower Cat", + "goldenThumbnail": "rbxassetid://14976522526", + "hidden": false, + "huge": true, + "indexDesc": "Comes with Series 2 Lunch Bag DLC!", + "indexObtainable": true, + "name": "Huge Pixel Wolf", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17671731182", + "thumbnail": "rbxassetid://14976522632", }, - "configName": "Flower Cat", + "configName": "Huge Pixel Wolf", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.252Z", - "hashShort": "ca96602d5d2d68eb", + "dateModified": "2025-07-05T23:28:59.074Z", + "hashShort": "01a9913daa681ded", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 5166081524323, - ], "fly": true, - "fromEgg": "Summer Sun Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 209, - "goldenThumbnail": "rbxassetid://17671730557", - "maxChance": 2.52267823404108e-7, - "name": "Sun Agony", + "goldenThumbnail": "rbxassetid://16901792834", + "huge": true, + "indexDesc": "Found in the Hype Egg every update!", + "indexObtainable": true, + "name": "Huge Party Dragon", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17671730343", + "thumbnail": "rbxassetid://16901792712", }, - "configName": "Sun Agony", + "configName": "Huge Party Dragon", "dateCreated": null, - "dateModified": "2025-07-05T23:28:57.235Z", - "hashShort": "56f942f5e0918766", + "dateModified": "2025-07-05T23:28:59.706Z", + "hashShort": "f299f614d68d1437", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://17746014523", + "goldenThumbnail": "rbxassetid://16914837569", "huge": true, - "indexDesc": "Reward in the 2024 Wicked Clan Battle!", + "indexDesc": "Found in Treasure Hideout minigame!", "indexObtainable": true, - "name": "Huge Wicked Empyrean Dragon", + "name": "Huge Electric Cat", "rarity": { "Announce": true, "Color": null, @@ -103086,22 +107034,35 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17746014334", + "thumbnail": "rbxassetid://16914837316", }, - "configName": "Huge Wicked Empyrean Dragon", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "663489ba631fbeab", + "configName": "Huge Electric Cat", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.691Z", + "hashShort": "26c53c4e730ebc3f", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://17749191048", + "animations": { + "particlesSketch": { + "Farm": { + "Left": null, + "Right": null, + }, + "Idle": { + "Left": null, + "Right": null, + }, + }, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://17028962738", "huge": true, - "indexDesc": "Found in the Exclusive Blazing Egg!", + "indexDesc": "Found in the Exclusive Sketch Egg!", "indexObtainable": true, - "name": "Huge Blazing Shark", + "name": "Huge Sketch Dragon", "rarity": { "Announce": true, "Color": null, @@ -103114,23 +107075,34 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17749190912", + "thumbnail": "rbxassetid://17027110585", }, - "configName": "Huge Blazing Shark", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8bcc25adcc896d89", + "configName": "Huge Sketch Dragon", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.699Z", + "hashShort": "e8b5fad47c3e2028", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://17749191776", + "animations": { + "particlesSketch": { + "Farm": { + "Left": null, + "Right": null, + }, + "Idle": { + "Left": null, + "Right": null, + }, + }, + }, + "goldenThumbnail": "rbxassetid://17028962868", "huge": true, - "indexDesc": "Found in the Exclusive Blazing Egg!", + "indexDesc": "Found in the Exclusive Sketch Egg!", "indexObtainable": true, - "name": "Huge Blazing Bat", + "name": "Huge Sketch Corgi", "rarity": { "Announce": true, "Color": null, @@ -103143,22 +107115,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17749191682", + "thumbnail": "rbxassetid://17027110720", }, - "configName": "Huge Blazing Bat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ad88643278104ca5", + "configName": "Huge Sketch Corgi", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.694Z", + "hashShort": "42587f3cc27ec395", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://17749184301", + "goldenThumbnail": "rbxassetid://17024851744", "huge": true, - "indexDesc": "Found in the Hacker Pack!", + "indexDesc": "Reward in the 2024 Pixel Clan Battle!", "indexObtainable": true, - "name": "Huge Masked Fox", + "name": "Huge Pixel Shark", "rarity": { "Announce": true, "Color": null, @@ -103171,22 +107143,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17749184083", + "thumbnail": "rbxassetid://17024845317", }, - "configName": "Huge Masked Fox", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "fea6d8d2b2f05415", + "configName": "Huge Pixel Shark", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.693Z", + "hashShort": "fde927ebe9fd04ee", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://17769626927", + "goldenThumbnail": "rbxassetid://17028331329", "huge": true, - "indexDesc": "Earned from the Hacker Chest and Hacker Pack!", + "indexDesc": "Found in the Clan Gift!", "indexObtainable": true, - "name": "Huge Hacker Axolotl", + "name": "Huge Tech Samurai Cat", "rarity": { "Announce": true, "Color": null, @@ -103199,24 +107171,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17769626736", + "thumbnail": "rbxassetid://17028331108", }, - "configName": "Huge Hacker Axolotl", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "39b77ade7fb149d1", + "configName": "Huge Tech Samurai Cat", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.692Z", + "hashShort": "07b06f39dc1f0002", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "flyingTitanic": true, - "flyingTitanicAlwaysFly": true, - "goldenThumbnail": "rbxassetid://17749522423", - "indexDesc": "Found in the Exclusive Blazing Egg!", + "goldenThumbnail": "rbxassetid://17028306770", + "huge": true, + "indexDesc": "Found in the Global Event Gift!", "indexObtainable": true, - "name": "Titanic Blazing Dragon", + "name": "Huge Lunar Moth", "rarity": { "Announce": true, "Color": null, @@ -103229,156 +107200,164 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17749522423", - "titanic": true, + "thumbnail": "rbxassetid://17028306654", }, - "configName": "Titanic Blazing Dragon", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e6092a4316a6572a", + "configName": "Huge Lunar Moth", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.706Z", + "hashShort": "d56d3255358ae805", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 8747206079634, - ], - "fromEgg": "Hacker Secure Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://17749017535", - "maxChance": 0.000009999897501050614, - "name": "Hacked Skeleton", + "goldenThumbnail": "rbxassetid://16901676326", + "indexDesc": "Found in the Hype Egg every update!", + "indexObtainable": true, + "name": "Titanic Party Cat", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17749017634", + "thumbnail": "rbxassetid://16901676187", + "titanic": true, }, - "configName": "Hacked Skeleton", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a374462bfe9035bf", + "configName": "Titanic Party Cat", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:01.237Z", + "hashShort": "c1f22d16dcb27a68", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 4493115816844, - ], - "fromEgg": "Hacker Wireframe Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 211, - "goldenThumbnail": "rbxassetid://17749018537", - "maxChance": 0.99, - "name": "Hooded Monkey", + "animations": { + "particlesSketch": { + "Farm": { + "Left": null, + "Right": null, + }, + "Idle": { + "Left": null, + "Right": null, + }, + }, + }, + "goldenThumbnail": "rbxassetid://17028962602", + "indexDesc": "Found in the Exclusive Sketch Egg!", + "indexObtainable": true, + "name": "Titanic Sketch Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17749018649", + "thumbnail": "rbxassetid://17027114400", + "titanic": true, }, - "configName": "Hooded Monkey", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0cae99291f43d9c0", + "configName": "Titanic Sketch Cat", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:01.239Z", + "hashShort": "608dd6830cf96543", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 9310643764904, + 54389772774, + 58849522427, + 61383966442, ], - "fromEgg": "Hacker Secure Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://17749018360", - "maxChance": 2.499974375262654e-7, - "name": "Masked Fox", + "fromEgg": "Dominus Rex Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 173, + "goldenThumbnail": "rbxassetid://14968211239", + "maxChance": 0.1998001998001998, + "name": "Domortuus", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17749018458", + "thumbnail": "rbxassetid://14968211665", }, - "configName": "Masked Fox", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e9d0a07a42f996bd", + "configName": "Domortuus", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:18.086Z", + "hashShort": "67f32b1b3a549357", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 5147162618956, + 6527875161, + 7064883510, + 7371020531, ], - "fly": true, - "fromEgg": "Hacker Wireframe Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 211, - "goldenThumbnail": "rbxassetid://17749018100", - "maxChance": 0.01, - "name": "Hooded Dragon", + "fromEgg": "Steampunk Lantern Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 155, + "goldenThumbnail": "rbxassetid://14968354944", + "maxChance": 0.1998001998001998, + "name": "Toy Mouse", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17749018233", + "thumbnail": "rbxassetid://14968355065", }, - "configName": "Hooded Dragon", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9e85230d57a21319", + "configName": "Toy Mouse", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.899Z", + "hashShort": "3c4151ac68c083ea", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 5054718211253, + 7031352345, + 7615536616, + 7929220425, ], - "fromEgg": "Hacker Crystal Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 212, - "goldenThumbnail": "rbxassetid://17749016239", - "maxChance": 0.9900990099009901, - "name": "Hacker Corgi", + "fromEgg": "Steampunk Lantern Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 155, + "goldenThumbnail": "rbxassetid://14968224191", + "maxChance": 0.6993006993006994, + "name": "Ducky Magician", "rarity": { "Announce": false, "Color": null, @@ -103391,27 +107370,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17749016312", + "thumbnail": "rbxassetid://14968224321", }, - "configName": "Hacker Corgi", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "dbd178d00a973fd3", + "configName": "Ducky Magician", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.919Z", + "hashShort": "b42a780383f61485", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 6392685425835, + 7910271388, + 8567273267, + 8920188333, ], - "fly": true, - "fromEgg": "Hacker Secure Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://17749017298", - "maxChance": 0.9999897501050614, - "name": "Hacked Computer", + "fromEgg": "Steampunk Clockwork Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 156, + "goldenThumbnail": "rbxassetid://14968343093", + "maxChance": 0.6993006993006994, + "name": "Steampunk Crocodile", "rarity": { "Announce": false, "Color": null, @@ -103424,1661 +107404,1808 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17749017401", + "thumbnail": "rbxassetid://14968343176", }, - "configName": "Hacked Computer", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "fa36ae8c375bf888", + "configName": "Steampunk Crocodile", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.896Z", + "hashShort": "923a074e4d3bc569", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 6514377689617, + 7343859556, + 7947869284, + 8292134308, ], - "fromEgg": "Hacker Electric Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 213, - "goldenThumbnail": "rbxassetid://17749015922", - "maxChance": 0.01, - "name": "Hacker Cat", + "fromEgg": "Steampunk Clockwork Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 156, + "goldenThumbnail": "rbxassetid://14968343395", + "maxChance": 0.1998001998001998, + "name": "Steampunk Octopus", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17749016059", + "thumbnail": "rbxassetid://14968343518", }, - "configName": "Hacker Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d1a38db1756388a4", + "configName": "Steampunk Octopus", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.901Z", + "hashShort": "489937a6e1bda307", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 5686599705693, + 6663130390, + 7168252711, + 7526074332, ], - "fromEgg": "Hacker Electric Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 213, - "goldenThumbnail": "rbxassetid://17749015754", - "maxChance": 0.99, - "name": "Hacker Axolotl", + "fromEgg": "Steampunk Gears Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 154, + "goldenThumbnail": "rbxassetid://14968343240", + "maxChance": 0.08991008991008992, + "name": "Steampunk Fish", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17749015842", + "thumbnail": "rbxassetid://14968343316", }, - "configName": "Hacker Axolotl", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2b6e294c75ad8c9e", + "configName": "Steampunk Fish", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.895Z", + "hashShort": "004260e42191ccda", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 3993851426175, + 8433024400, + 9072001415, + 9524538804, ], - "fromEgg": "Hacker Circuit Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 210, - "goldenThumbnail": "rbxassetid://17749017735", - "maxChance": 0.9900990099009901, - "name": "Hooded Bobcat", + "fromEgg": "Steampunk Clockwork Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 156, + "goldenThumbnail": "rbxassetid://14968281240", + "maxChance": 0.08991008991008992, + "name": "Mining Mole", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17749017903", + "thumbnail": "rbxassetid://14968281332", }, - "configName": "Hooded Bobcat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "900252c2d0ada153", + "configName": "Mining Mole", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.915Z", + "hashShort": "7e01a7f481f5f146", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://17749016995", - "name": "Blazing Shark", + "cachedPower": [ + 7496021689, + 8064141620, + 8466542812, + ], + "fromEgg": "Steampunk Lantern Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 155, + "goldenThumbnail": "rbxassetid://14968279012", + "maxChance": 0.08991008991008992, + "name": "Mechanical Spider", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17749017162", + "thumbnail": "rbxassetid://14968279152", }, - "configName": "Blazing Shark", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "57777da6c0e50d79", + "configName": "Mechanical Spider", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.901Z", + "hashShort": "78bc0fd6506eca83", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://17749016591", - "name": "Blazing Corgi", + "cachedPower": [ + 8261842001, + 8941214987, + 9328359162, + ], + "fromEgg": "Steampunk Airship Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 157, + "goldenThumbnail": "rbxassetid://14968343689", + "maxChance": 0.1998001998001998, + "name": "Steampunk Wolf", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17749016673", + "thumbnail": "rbxassetid://14968343794", }, - "configName": "Blazing Corgi", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c9c09a08b67e2442", + "configName": "Steampunk Wolf", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.899Z", + "hashShort": "fc664921153cd26d", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, + "cachedPower": [ + 9487152450, + 10205826811, + 10714749893, + ], "fly": true, - "goldenThumbnail": "rbxassetid://17749016378", - "name": "Blazing Bat", + "fromEgg": "Steampunk Airship Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 157, + "goldenThumbnail": "rbxassetid://14968182927", + "maxChance": 0.08991008991008992, + "name": "Blimp Dragon", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17749016455", + "thumbnail": "rbxassetid://14968183021", }, - "configName": "Blazing Bat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d105fa95278b2b20", + "configName": "Blimp Dragon", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.914Z", + "hashShort": "4278c1ad559cd5b9", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 4576538426002, + 8899055312, + 9637955039, + 10035007541, ], - "fromEgg": "Hacker Circuit Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 210, - "goldenThumbnail": "rbxassetid://17774385358", - "maxChance": 0.009900990099009901, - "name": "Hooded Piggy", + "fly": true, + "fromEgg": "Steampunk Airship Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 157, + "goldenThumbnail": "rbxassetid://14968342869", + "maxChance": 0.8991008991008992, + "name": "Steampunk Bat", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17774385487", + "thumbnail": "rbxassetid://14968342991", }, - "configName": "Hooded Piggy", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "96057ecfc13f5757", + "configName": "Steampunk Bat", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.917Z", + "hashShort": "32c50ed073012bfb", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 5792181445408, + 62456297997, + 67171356961, + 70504944126, ], - "fromEgg": "Hacker Crystal Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 212, - "goldenThumbnail": "rbxassetid://17774385014", - "maxChance": 0.009900990099009901, - "name": "Hacker Bear", + "fromEgg": "Dominus Rex Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 173, + "goldenThumbnail": "rbxassetid://14968339391", + "maxChance": 0.28999408412068395, + "name": "Stacked Dominus", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17774385235", + "thumbnail": "rbxassetid://14968339508", }, - "configName": "Hacker Bear", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "cca6e46bcc8a426a", + "configName": "Stacked Dominus", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.913Z", + "hashShort": "6a2c4d53cbc0568c", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976363240", - "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", - "indexObtainable": true, - "name": "Huge Bison", + "cachedPower": [ + 83153791814, + 89776506403, + 93727319349, + ], + "fromEgg": "Dominus Frigidus Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 174, + "goldenThumbnail": "rbxassetid://14968209751", + "maxChance": 3.9999184016646064e-7, + "name": "Dominus Alienus", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://14976363344", + "thumbnail": "rbxassetid://14968209853", }, - "configName": "Huge Bison", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "76b3069533c98aa4", + "configName": "Dominus Alienus", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.897Z", + "hashShort": "e39296038e6aca65", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976529681", - "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", - "indexObtainable": true, - "name": "Huge Punksky", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, + "cachedPower": [ + 58584707414, + 63428044571, + 66044107987, + ], + "fromEgg": "Dominus Rex Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 173, + "goldenThumbnail": "rbxassetid://14968210742", + "maxChance": 0.6999857202913061, + "name": "Dominus Infernus", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14976529792", + "thumbnail": "rbxassetid://14968210911", }, - "configName": "Huge Punksky", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "68b415eacc3fe3b5", + "configName": "Dominus Infernus", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:23.844Z", + "hashShort": "f714837e43b45e77", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976495433", - "huge": true, - "indexDesc": "Found in the Huge Machine Butterfly Egg!", - "indexObtainable": true, - "name": "Huge Mushroom Raccoon", + "cachedPower": [ + 6250090974, + 6769530865, + 7048344266, + ], + "fromEgg": "Steampunk Gears Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 154, + "goldenThumbnail": "rbxassetid://14968336124", + "maxChance": 0.6993006993006994, + "name": "Sophisticated Fox", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14976495649", + "thumbnail": "rbxassetid://14968336217", }, - "configName": "Huge Mushroom Raccoon", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5950f1c46d5be533", + "configName": "Sophisticated Fox", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:25.692Z", + "hashShort": "01fcce904848d86c", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://17835926283", - "huge": true, - "indexDesc": "Found in the Huge Machine Butterfly Egg!", - "indexObtainable": true, - "name": "Huge Vibrant Toucan", + "cachedPower": [ + 5802555699, + 6279996601, + 6552230147, + ], + "fromEgg": "Steampunk Gears Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 154, + "goldenThumbnail": "rbxassetid://14968190987", + "maxChance": 0.1998001998001998, + "name": "Cat Magician", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17835926180", + "thumbnail": "rbxassetid://14968191131", }, - "configName": "Huge Vibrant Toucan", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a41b9e4c00f798ea", + "configName": "Cat Magician", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:28.065Z", + "hashShort": "944e9155a141c24c", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://17835929193", - "huge": true, - "indexDesc": "Found in the Huge Machine Butterfly Egg!", - "indexObtainable": true, - "name": "Huge Pixie Fox", + "cachedPower": [ + 3682294287, + 3966603545, + 4159734473, + ], + "fromEgg": "Alien UFO Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 150, + "goldenThumbnail": "rbxassetid://17026768687", + "maxChance": 0.1, + "name": "Brain", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17835929068", + "thumbnail": "rbxassetid://17026768803", }, - "configName": "Huge Pixie Fox", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "bd80e268a1950e42", + "configName": "Brain", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:33.936Z", + "hashShort": "a06d3b9c24bb9821", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://121173280304545", - "huge": true, - "indexDesc": "Found in the Huge Machine Butterfly Egg!", - "indexObtainable": true, - "name": "Huge Mantis Shrimp", + "cachedPower": [ + 3428548769, + 3675862016, + 3864915305, + ], + "fromEgg": "Alien UFO Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 150, + "goldenThumbnail": "rbxassetid://17026768363", + "maxChance": 0.9, + "name": "Alien Octopus", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://83192948454394", + "thumbnail": "rbxassetid://17026768574", }, - "configName": "Huge Mantis Shrimp", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e4ca92dc29defa16", + "configName": "Alien Octopus", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:33.936Z", + "hashShort": "c3a8155d97b5fcd6", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 1, - "flyHeightChange": 4, - "flySpeed": 0.4, - }, + "cachedPower": [ + 5555636421, + 6017509853, + 6265328975, + ], "fly": true, - "goldenThumbnail": "rbxassetid://14976572580", - "huge": true, - "indexDesc": "Found in the Huge Machine Butterfly Egg!", - "indexObtainable": true, - "name": "Huge Umbrella Cat", + "fromEgg": "Space Junkyard Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 153, + "goldenThumbnail": "rbxassetid://17026775295", + "maxChance": 0.6993006993006994, + "name": "Junkyard Bat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14976572705", + "thumbnail": "rbxassetid://17026775468", }, - "configName": "Huge Umbrella Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3f429be94ba21ae7", + "configName": "Junkyard Bat", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:33.937Z", + "hashShort": "8766cbbaec6de442", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://17857638178", - "huge": true, - "indexDesc": "Earned from the Virus Egg during a Hacker Virus!", - "indexObtainable": true, - "name": "Huge Virus Griffin", + "cachedPower": [ + 10011437226, + 10842447696, + 11289157337, + ], + "fromEgg": "Motherboard Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 158, + "goldenThumbnail": "rbxassetid://17026768940", + "maxChance": 0.8991008991008992, + "name": "Circuit Cat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17857638038", + "thumbnail": "rbxassetid://17026769153", }, - "configName": "Huge Virus Griffin", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ecd43d903f4efe32", + "configName": "Circuit Cat", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:33.939Z", + "hashShort": "0362091afb181c89", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://17861579071", - "huge": true, - "indexDesc": "Found in the Virus Pack!", - "indexObtainable": true, - "name": "Huge Matrix Monkey", + "cachedPower": [ + 4389638654, + 4754817224, + 4950600691, + ], + "fromEgg": "Space Forge Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 151, + "goldenThumbnail": "rbxassetid://17026774077", + "maxChance": 0.8991008991008992, + "name": "Forged Cyclops", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17861579273", + "thumbnail": "rbxassetid://17026774215", }, - "configName": "Huge Matrix Monkey", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c7f9ca913bb7ed74", + "configName": "Forged Cyclops", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:33.938Z", + "hashShort": "83058d1cb4c43d7e", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { + "cachedPower": [ + 12007177319, + 12916317701, + 13559975024, + ], "fly": true, - "flyingTitanic": true, - "flyingTitanicAlwaysFly": true, - "goldenThumbnail": "rbxassetid://17821211847", - "indexDesc": "Found in the Huge Machine Butterfly Egg!", - "indexObtainable": true, - "name": "Titanic Butterfly", + "fromEgg": "Aura Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 159, + "goldenThumbnail": "rbxassetid://17026769540", + "maxChance": 0.08991008991008992, + "name": "Circuit Griffin", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://17821211666", - "titanic": true, + "thumbnail": "rbxassetid://17026769669", }, - "configName": "Titanic Butterfly", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2484f37045c7fb0c", + "configName": "Circuit Griffin", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:33.940Z", + "hashShort": "34c26ebff57d7bbb", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 10239838170985, + 4938343485, + 5349032379, + 5569302509, ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://17825046728", - "name": "Virus Griffin", - "thumbnail": "rbxassetid://17825046852", + "fromEgg": "Space Factory Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 152, + "goldenThumbnail": "rbxassetid://17026774349", + "maxChance": 0.8991008991008992, + "name": "Forged Hedgehog", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://17026774496", }, - "configName": "Virus Griffin", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c0f24d8ab77c7002", + "configName": "Forged Hedgehog", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:33.944Z", + "hashShort": "2136d059d8b18996", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 9557182292919, + 11262866879, + 12197474965, + 12700051690, ], - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://17825046372", - "name": "Matrix Monkey", - "thumbnail": "rbxassetid://17825046551", - }, - "configName": "Matrix Monkey", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0c0a2e54eada3341", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://17825124339", - "name": "Rainbow Swirl", - "preventGolden": true, + "fromEgg": "Aura Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 159, + "goldenThumbnail": "rbxassetid://17026769256", + "maxChance": 0.8991008991008992, + "name": "Circuit Corgi", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "secret": true, - "thumbnail": "rbxassetid://17825124339", + "thumbnail": "rbxassetid://17026769389", }, - "configName": "Rainbow Swirl", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d15a0d337c722eec", + "configName": "Circuit Corgi", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:33.943Z", + "hashShort": "40291424961c07a8", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18127301164", - "huge": true, - "indexDesc": "Reward in the 2024 Safety Clan Battle!", - "indexObtainable": true, - "name": "Huge Safety Cat", + "cachedPower": [ + 4679729437, + 5034769240, + 5286365572, + ], + "fly": true, + "fromEgg": "Space Forge Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 151, + "goldenThumbnail": "rbxassetid://17026774645", + "maxChance": 0.08991008991008992, + "name": "Forged Robot", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://18127300990", + "thumbnail": "rbxassetid://17026774776", }, - "configName": "Huge Safety Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "94b3914524046cb1", + "configName": "Forged Robot", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:33.942Z", + "hashShort": "fe395af9092d44f9", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18127488955", - "huge": true, - "indexDesc": "Found in the Exclusive Flex Egg!", - "indexObtainable": true, - "name": "Huge Flex Tiger", + "cachedPower": [ + 10673046506, + 11481361686, + 12053699247, + ], + "fromEgg": "Motherboard Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 158, + "goldenThumbnail": "rbxassetid://17026769782", + "maxChance": 0.08991008991008992, + "name": "Circuit Slime", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://18127488955", + "thumbnail": "rbxassetid://17026769942", }, - "configName": "Huge Flex Tiger", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2b5ea0e3a63e0cfb", + "configName": "Circuit Slime", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:33.943Z", + "hashShort": "2a89ff8fb7b77150", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18127488650", - "huge": true, - "indexDesc": "Found in the Exclusive Flex Egg!", - "indexObtainable": true, - "name": "Huge Flex Fluffy Cat", + "cachedPower": [ + 5264695617, + 5664010067, + 5946946609, + ], + "fromEgg": "Space Factory Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 152, + "goldenThumbnail": "rbxassetid://17026774933", + "maxChance": 0.08991008991008992, + "name": "Forged Turtle", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://18127488650", + "thumbnail": "rbxassetid://17026775079", }, - "configName": "Huge Flex Fluffy Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7b4d338482e276eb", + "configName": "Forged Turtle", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:33.946Z", + "hashShort": "ae9158daa35d6279", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://18150534263", - "huge": true, - "indexDesc": "Earned from the Good vs. Evil World and Evil Gifts!", - "indexObtainable": true, - "name": "Huge Evil Imp", + "cachedPower": [ + 5922782569, + 6371894797, + 6690077441, + ], + "fromEgg": "Space Junkyard Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 153, + "goldenThumbnail": "rbxassetid://17026775580", + "maxChance": 0.08991008991008992, + "name": "Junkyard Hound", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://18150534002", + "thumbnail": "rbxassetid://17026775686", }, - "configName": "Huge Evil Imp", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "de9bfc739cb8560d", + "configName": "Junkyard Hound", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:33.945Z", + "hashShort": "017a019ffaaaafd4", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://18150841572", - "huge": true, - "indexDesc": "Earned from the Good vs. Evil World and Good Gifts!", - "indexObtainable": true, - "name": "Huge Avenging Griffin", + "cachedPower": [ + 14254565894, + 15436740382, + 16072884417, + ], + "fromEgg": "Wizard Temple Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 161, + "goldenThumbnail": "rbxassetid://17026775791", + "maxChance": 0.8991008991008992, + "name": "Relic Bear", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18150841344", + "thumbnail": "rbxassetid://17026776510", }, - "configName": "Huge Avenging Griffin", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a147ed6099741c1a", + "configName": "Relic Bear", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:33.947Z", + "hashShort": "08c112d1038a204a", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://18152338268", - "huge": true, - "indexDesc": "Found in the Good vs. Evil Pack!", - "indexObtainable": true, - "name": "Huge Dark Lord", + "cachedPower": [ + 18040934960, + 19536279648, + 20341486106, + ], + "fromEgg": "Wizard Tower Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 163, + "goldenThumbnail": "rbxassetid://17026782475", + "maxChance": 0.8991008991008992, + "name": "Wizard Cat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18152338133", + "thumbnail": "rbxassetid://17026782764", }, - "configName": "Huge Dark Lord", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ea15e487db344161", + "configName": "Wizard Cat", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:33.963Z", + "hashShort": "46cdbe493a96b3f7", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - }, + "cachedPower": [ + 15196583795, + 16346685179, + 17160764162, + ], "fly": true, - "goldenThumbnail": "rbxassetid://18152335445", - "huge": true, - "indexDesc": "Found in the Good vs. Evil Pack!", - "indexObtainable": true, - "name": "Huge Divinus", + "fromEgg": "Wizard Temple Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 161, + "goldenThumbnail": "rbxassetid://17026776672", + "maxChance": 0.08991008991008992, + "name": "Relic Dragon", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://18152335113", + "thumbnail": "rbxassetid://17026776805", }, - "configName": "Huge Divinus", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5f9b184c6da5b2ed", + "configName": "Relic Dragon", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:33.956Z", + "hashShort": "22cfc4f46a6fd0eb", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://18155109776", - "huge": true, - "indexDesc": "Earned from Good vs. Evil Gifts!", - "indexObtainable": true, - "name": "Huge Good vs Evil Cat", + "cachedPower": [ + 16036386631, + 17365954489, + 18081655307, + ], + "fromEgg": "Wizard Forest Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 162, + "goldenThumbnail": "rbxassetid://17026776930", + "maxChance": 0.8991008991008992, + "name": "Relic Fox", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18155109260", + "thumbnail": "rbxassetid://17026777052", }, - "configName": "Huge Good vs Evil Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a31a6388df78eec6", + "configName": "Relic Fox", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:33.962Z", + "hashShort": "dd6a5bb4103e92fa", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.025, - "flyHeightChange": 0, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://18151232769", - "indexDesc": "Found in the Exclusive Flex Egg!", - "indexObtainable": true, - "name": "Titanic Flex Cat", + "cachedPower": [ + 13508074484, + 14530620255, + 15254488452, + ], + "fromEgg": "Wizard Ruins Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 160, + "goldenThumbnail": "rbxassetid://17026777335", + "maxChance": 0.08991008991008992, + "name": "Relic Goblin", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://18151232769", - "titanic": true, + "thumbnail": "rbxassetid://17026777629", }, - "configName": "Titanic Flex Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "65655272ca158903", + "configName": "Relic Goblin", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:33.965Z", + "hashShort": "44cc8f79e2249529", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - }, "cachedPower": [ - 9784734252274, + 17096156769, + 18389730008, + 19305266813, ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18151025379", - "name": "Pentangelus", - "thumbnail": "rbxassetid://18151025598", + "fromEgg": "Wizard Forest Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 162, + "goldenThumbnail": "rbxassetid://91770493041399", + "maxChance": 0.08991008991008992, + "name": "Relic Raccoon", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://17026778003", }, - "configName": "Pentangelus", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "38d8d812ef4bccc4", + "configName": "Relic Raccoon", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:33.955Z", + "hashShort": "79844c9b7a086f26", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - }, "cachedPower": [ - 10012286211629, + 12670725239, + 13721850752, + 14287281057, ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18151024266", - "name": "Divinus", - "thumbnail": "rbxassetid://18151024486", + "fromEgg": "Wizard Ruins Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 160, + "goldenThumbnail": "rbxassetid://17026778289", + "maxChance": 0.8991008991008992, + "name": "Relic Squirrel", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://17026778500", }, - "configName": "Divinus", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f62667e4570029ce", + "configName": "Relic Squirrel", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:33.957Z", + "hashShort": "3153497147aaa8bc", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 8495273149261, + 19233176365, + 20688124172, + 21717768529, ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18155096157", - "name": "Good vs Evil Cat", - "thumbnail": "rbxassetid://18155095918", + "fromEgg": "Wizard Tower Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 163, + "goldenThumbnail": "rbxassetid://17026782930", + "maxChance": 0.08991008991008992, + "name": "Wizard Unicorn", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://17026783042", }, - "configName": "Good vs Evil Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4e64b8e7f7f40a0c", + "configName": "Wizard Unicorn", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:33.959Z", + "hashShort": "d7892f55734e7cd4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 9557182292919, + 20296051830, + 21977850317, + 22883755349, ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18151022519", - "name": "Avenging Griffin", - "thumbnail": "rbxassetid://18151022725", + "fromEgg": "Wizard Dungeon Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 164, + "goldenThumbnail": "rbxassetid://17026779130", + "maxChance": 0.8991008991008992, + "name": "Runic Wolf", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://17026779290", }, - "configName": "Avenging Griffin", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "09a270c2d71a27bb", + "configName": "Runic Wolf", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:33.958Z", + "hashShort": "7f1bd0e7a737b885", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 9102078374209, + 49348186071, + 53075095248, + 55710527178, ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18151024934", - "name": "Heavenly Dove", - "thumbnail": "rbxassetid://18151025112", + "fromEgg": "Tech Dojo Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 171, + "goldenThumbnail": "rbxassetid://17026779468", + "maxChance": 0.08991008991008992, + "name": "Tech Ninja Cow", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://17026779632", }, - "configName": "Heavenly Dove", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "bc87cb335952604b", + "configName": "Tech Ninja Cow", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:33.960Z", + "hashShort": "fc2d530a7dc7ff6a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 9329630333564, + 21637323411, + 23273782940, + 24431762269, ], "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18151021545", - "name": "Angel Pegasus", - "thumbnail": "rbxassetid://18151021778", + "fromEgg": "Wizard Dungeon Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 164, + "goldenThumbnail": "rbxassetid://17026778683", + "maxChance": 0.08991008991008992, + "name": "Runic Agony", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://17026778881", }, - "configName": "Angel Pegasus", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0f38d9ade5135cc0", + "configName": "Runic Agony", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:33.961Z", + "hashShort": "a5585a4a346e3a71", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 9557182292919, + 24341988837, + 26182610623, + 27484926853, ], - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18127447670", - "name": "Evil Deer", - "thumbnail": "rbxassetid://18127447880", + "fromEgg": "Cyberpunk Undercity Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 165, + "goldenThumbnail": "rbxassetid://17026770093", + "maxChance": 0.08991008991008992, + "name": "Cyberpunk Axolotl", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://17026770223", }, - "configName": "Evil Deer", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ceac4a10e8f45121", + "configName": "Cyberpunk Axolotl", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.122Z", + "hashShort": "c417677453558e4a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 9329630333564, + 25687190597, + 27814568380, + 28961222937, ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18127446978", - "name": "Evil Imp", - "thumbnail": "rbxassetid://18127447146", + "fromEgg": "Cyberpunk Industrial Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 166, + "goldenThumbnail": "rbxassetid://17026770373", + "maxChance": 0.8991008991008992, + "name": "Cyberpunk Bunny", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://17026770495", }, - "configName": "Evil Imp", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f82e4958af4a2009", + "configName": "Cyberpunk Bunny", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.107Z", + "hashShort": "431fd2d06b2b1ff0", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 8697541557577, + 28898089421, + 31290758096, + 32580809804, ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18127448059", - "name": "Demon Cat", - "thumbnail": "rbxassetid://18127448207", + "fromEgg": "Cyberpunk City Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 167, + "goldenThumbnail": "rbxassetid://17026770610", + "maxChance": 0.8991008991008992, + "name": "Cyberpunk Cat", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://17026770713", }, - "configName": "Demon Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8b20ab8057c5b9a7", + "configName": "Cyberpunk Cat", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.093Z", + "hashShort": "4f5e83e4d73c6390", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 8697541557577, + 30807829622, + 33136389013, + 34783617437, ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18151021189", - "name": "Angel Lamb", - "thumbnail": "rbxassetid://18151021378", + "fromEgg": "Cyberpunk City Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 167, + "goldenThumbnail": "rbxassetid://17026770829", + "maxChance": 0.08991008991008992, + "name": "Cyberpunk Dog", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://17026770948", }, - "configName": "Angel Lamb", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ca6b52a5834cbd40", + "configName": "Cyberpunk Dog", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.108Z", + "hashShort": "d089210dbf4b5ead", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 8899809965893, + 22833058308, + 24724567280, + 25743763461, ], - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18127447350", - "name": "Evil Ram", - "thumbnail": "rbxassetid://18127447536", + "fromEgg": "Cyberpunk Undercity Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 165, + "goldenThumbnail": "rbxassetid://17026771041", + "maxChance": 0.8991008991008992, + "name": "Cyberpunk Gecko", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://17026771137", }, - "configName": "Evil Ram", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f74fa23d16ba9eb8", + "configName": "Cyberpunk Gecko", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.097Z", + "hashShort": "24dba71604577f48", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 10012286211629, + 34658808324, + 37277900214, + 39130473834, ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18151023580", - "name": "Dark Lord", - "thumbnail": "rbxassetid://18151023962", - }, - "configName": "Dark Lord", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "861c2711ee5bdc8a", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 9102078374209, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18151023001", - "name": "Chimera", - "thumbnail": "rbxassetid://18151023293", - }, - "configName": "Chimera", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "248964870d8ad7b8", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 9784734252274, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18151025807", - "name": "Demon Serpents", - "thumbnail": "rbxassetid://18151025964", - }, - "configName": "Demon Serpents", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8cd217260a6b9a18", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://18127448624", - "name": "Flex Bear", + "fromEgg": "Cyberpunk Road Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 168, + "goldenThumbnail": "rbxassetid://17026771242", + "maxChance": 0.08991008991008992, + "name": "Cyberpunk Ghost", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://18127448624", + "thumbnail": "rbxassetid://17026771369", }, - "configName": "Flex Bear", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "18a9292b5ed41ab7", + "configName": "Cyberpunk Ghost", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.098Z", + "hashShort": "d14e74b984928f2c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://18127449266", - "name": "Flex Tiger", + "cachedPower": [ + 38991159365, + 41937042224, + 44020568805, + ], + "fromEgg": "Tech Kyoto Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 169, + "goldenThumbnail": "rbxassetid://17026779796", + "maxChance": 0.08991008991008992, + "name": "Tech Ninja Giraffe", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://18127449266", + "thumbnail": "rbxassetid://17026779953", }, - "configName": "Flex Tiger", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f791a67de6801144", + "configName": "Tech Ninja Giraffe", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.097Z", + "hashShort": "44e903918d4bcb6a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://18127448974", - "name": "Flex Fluffy Cat", + "cachedPower": [ + 27384737442, + 29454999157, + 30919650116, + ], + "fromEgg": "Cyberpunk Industrial Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 166, + "goldenThumbnail": "rbxassetid://17026772124", + "maxChance": 0.08991008991008992, + "name": "Cyberpunk Meerkat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://18127448974", + "thumbnail": "rbxassetid://17026772356", }, - "configName": "Flex Fluffy Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "54da324a811695cc", + "configName": "Cyberpunk Meerkat", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.117Z", + "hashShort": "c097bfb2c523a138", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 8899809965893, + 36574144424, + 39600803510, + 41233687318, ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18151022013", - "name": "Angel Seal", - "thumbnail": "rbxassetid://18151022248", - }, - "configName": "Angel Seal", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7df8b0f8a28303e9", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://18256895227", - "huge": true, - "indexDesc": "Earned from Good vs. Evil Diamond Egg!", - "indexObtainable": true, - "name": "Huge Good vs Evil Dragon", + "fromEgg": "Tech Kyoto Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 169, + "goldenThumbnail": "rbxassetid://17026780170", + "maxChance": 0.8991008991008992, + "name": "Tech Ninja Panda", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18256895106", + "thumbnail": "rbxassetid://17026780365", }, - "configName": "Huge Good vs Evil Dragon", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "cec9046e4b63074f", + "configName": "Tech Ninja Panda", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.118Z", + "hashShort": "4bcf352cef80e419", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18256894972", - "huge": true, - "indexDesc": "Found in the Good vs. Evil Pack!", - "indexObtainable": true, - "name": "Huge Devil Dominus", + "cachedPower": [ + 46289151537, + 50117848277, + 52184666680, + ], + "fromEgg": "Tech Dojo Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 171, + "goldenThumbnail": "rbxassetid://17026780629", + "maxChance": 0.8991008991008992, + "name": "Tech Ninja Red Panda", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18256894835", + "thumbnail": "rbxassetid://17026780859", }, - "configName": "Huge Devil Dominus", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "afa8fbcb97d8e008", + "configName": "Tech Ninja Red Panda", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.123Z", + "hashShort": "427d56cbbbf93bc6", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://18256894698", - "huge": true, - "indexDesc": "Earned from the Good vs. Evil World and Evil Gifts!", - "indexObtainable": true, - "name": "Huge Devil Agony", + "cachedPower": [ + 32510350599, + 35201403305, + 36652784005, + ], + "fromEgg": "Cyberpunk Road Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 168, + "goldenThumbnail": "rbxassetid://17026772623", + "maxChance": 0.8991008991008992, + "name": "Cyberpunk Spider", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18256894534", + "thumbnail": "rbxassetid://17026773017", }, - "configName": "Huge Devil Agony", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2f675b0e9900f5a1", + "configName": "Cyberpunk Spider", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.098Z", + "hashShort": "aad507df80ed7a1e", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18256895564", - "huge": true, - "indexDesc": "Earned from the Good vs. Evil World and Good Gifts!", - "indexObtainable": true, - "name": "Huge Sage Axolotl", + "cachedPower": [ + 41145912477, + 44550044838, + 46387128521, + ], + "fromEgg": "Tech Samurai Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 170, + "goldenThumbnail": "rbxassetid://17026781007", + "maxChance": 0.8991008991008992, + "name": "Tech Samurai Cat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18256895424", + "thumbnail": "rbxassetid://17026781127", }, - "configName": "Huge Sage Axolotl", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d418ae9da3bd9e82", + "configName": "Tech Samurai Cat", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.113Z", + "hashShort": "8295252863876791", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { + "cachedPower": [ + 43865054286, + 47178512563, + 49521794259, + ], "fly": true, - "goldenThumbnail": "rbxassetid://18256895855", - "huge": true, - "indexDesc": "Found in the Good vs. Evil Pack!", - "indexObtainable": true, - "name": "Huge Warrior Wolf", + "fromEgg": "Tech Samurai Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 170, + "goldenThumbnail": "rbxassetid://17026781280", + "maxChance": 0.08991008991008992, + "name": "Tech Samurai Dragon", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://18256895705", - }, - "configName": "Huge Warrior Wolf", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4b34272adc8b14e4", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 11519817942358, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18256799509", - "name": "Warrior Wolf", - "thumbnail": "rbxassetid://18256799617", - }, - "configName": "Warrior Wolf", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4f64249638cda55e", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 10751830079534, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18256795703", - "name": "Angel Moth", - "thumbnail": "rbxassetid://18256795926", - }, - "configName": "Angel Moth", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2dc885c65dfa3435", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 11263821988083, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18256799049", - "name": "Sage Axolotl", - "thumbnail": "rbxassetid://18256799375", - }, - "configName": "Sage Axolotl", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e1ef2e50f29a2ef0", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 10495834125259, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18256795307", - "name": "Angel Fawn", - "thumbnail": "rbxassetid://18256795515", - }, - "configName": "Angel Fawn", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "103d954e46433ddb", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 10239838170985, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18256796507", - "name": "Archangel Cat", - "thumbnail": "rbxassetid://18256796655", - }, - "configName": "Archangel Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4fa2e5a043699b65", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 11007826033809, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18256796174", - "name": "Angel Pony", - "thumbnail": "rbxassetid://18256796372", - }, - "configName": "Angel Pony", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e95a5d83dce75d55", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 11007826033809, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18256798411", - "name": "Hell Scorpion", - "thumbnail": "rbxassetid://18256798599", - }, - "configName": "Hell Scorpion", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2abb03464d1b479a", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 11263821988083, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18256797088", - "name": "Devil Agony", - "thumbnail": "rbxassetid://18256797251", - }, - "configName": "Devil Agony", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2c3a7e03ad6d81b0", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 10495834125259, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18256797746", - "name": "Evil Bat", - "thumbnail": "rbxassetid://18256797857", + "thumbnail": "rbxassetid://17026781487", }, - "configName": "Evil Bat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "99b3f0580948706f", + "configName": "Tech Samurai Dragon", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.123Z", + "hashShort": "7a53529f1c57b96b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 10239838170985, + 55516709330, + 59708671531, + 62672690097, ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18256796826", - "name": "Demon Dog", - "thumbnail": "rbxassetid://18256796953", + "fromEgg": "Tech Sakura Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 172, + "goldenThumbnail": "rbxassetid://17026771811", + "maxChance": 0.08991008991008992, + "name": "Cyberpunk Lemur", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://17026771973", }, - "configName": "Demon Dog", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b000cbc2855c02cd", + "configName": "Cyberpunk Lemur", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.129Z", + "hashShort": "50fb5d93a6ee359a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 10751830079534, + 52075295479, + 56381523935, + 58706804853, ], - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18256797992", - "name": "Evil Minotaur", - "thumbnail": "rbxassetid://18256798139", + "fromEgg": "Tech Sakura Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 172, + "goldenThumbnail": "rbxassetid://17026771488", + "maxChance": 0.6993006993006994, + "name": "Cyberpunk Husky", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://17026771652", }, - "configName": "Evil Minotaur", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "90d73b98e96161ca", + "configName": "Cyberpunk Husky", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.131Z", + "hashShort": "58e1690d0af7b3cc", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 11519817942358, + 65905977926, + 71351564585, + 74296342655, ], - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18256797403", - "name": "Devil Dominus", - "thumbnail": "rbxassetid://18256797545", + "fromEgg": "Dominus Frigidus Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 174, + "goldenThumbnail": "rbxassetid://17026773204", + "maxChance": 0.009999796004161515, + "name": "Dominus Hippomelon", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Epic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 3, + "_id": "Epic", + "_script": null, + }, + "thumbnail": "rbxassetid://17026773352", }, - "configName": "Devil Dominus", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b315352e8ad0871e", + "configName": "Dominus Hippomelon", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.109Z", + "hashShort": "763326b6f812d679", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 11007826033809, + 77525891025, + 83853066283, + 87490596712, ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18256798226", - "name": "Good vs Evil Dragon", - "thumbnail": "rbxassetid://18256798311", - }, - "configName": "Good vs Evil Dragon", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c45dc8457339fbbb", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "goldenThumbnail": "rbxassetid://18352502702", - "huge": true, - "indexDesc": "Found in The Forever Pack!", - "indexObtainable": true, - "name": "Huge Kitsune Fox", + "fromEgg": "Dominus Frigidus Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 174, + "goldenThumbnail": "rbxassetid://17026773467", + "maxChance": 0.000019999592008323033, + "name": "Dominus Mushrooms", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://18352502490", + "thumbnail": "rbxassetid://17026773570", }, - "configName": "Huge Kitsune Fox", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5f9652db61256c11", + "configName": "Dominus Mushrooms", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.114Z", + "hashShort": "8d2d144aaf8cd61c", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18351655946", - "huge": true, - "indexDesc": "Earned from the Lucky Tile Event!", - "indexObtainable": true, - "name": "Huge UV Kitsune", + "animations": { + "particlesSketch": { + "Farm": { + "Left": null, + "Right": null, + }, + "Idle": { + "Left": null, + "Right": null, + }, + }, + }, + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://17028976493", + "name": "Sketch Corgi", "rarity": { "Announce": true, "Color": null, @@ -105091,71 +109218,32 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18351655777", + "thumbnail": "rbxassetid://17027101955", }, - "configName": "Huge UV Kitsune", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "53a267b1279fa53b", + "configName": "Sketch Corgi", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:57.069Z", + "hashShort": "19ca1d4589967c05", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.1, - "Value": null, - }, - { - "Time": 0.2, - "Value": null, - }, - { - "Time": 0.3, - "Value": null, - }, - { - "Time": 0.4, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.6, - "Value": null, - }, - { - "Time": 0.7, - "Value": null, - }, - { - "Time": 0.8, - "Value": null, - }, - { - "Time": 0.9, - "Value": null, + "particlesSketch": { + "Farm": { + "Left": null, + "Right": null, }, - { - "Time": 1, - "Value": null, + "Idle": { + "Left": null, + "Right": null, }, - ], - "vertexColorAnimSpeed": 0.075, + }, }, - "goldenThumbnail": "rbxassetid://18351655595", - "huge": true, - "indexDesc": "Earned from the Lucky Tile Event's final egg!", - "indexObtainable": true, - "name": "Huge UV Cat", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://17028976356", + "name": "Sketch Cow", "rarity": { "Announce": true, "Color": null, @@ -105168,22 +109256,33 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18356987128", + "thumbnail": "rbxassetid://17027102136", }, - "configName": "Huge UV Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "11922b6877b36dd5", + "configName": "Sketch Cow", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:57.100Z", + "hashShort": "932aea0981840173", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18351655259", - "huge": true, - "indexDesc": "Earned from Rave Gifts!", - "indexObtainable": true, - "name": "Huge Rave Troll", + "animations": { + "particlesSketch": { + "Farm": { + "Left": null, + "Right": null, + }, + "Idle": { + "Left": null, + "Right": null, + }, + }, + }, + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "rbxassetid://17028976196", + "name": "Sketch Dragon", "rarity": { "Announce": true, "Color": null, @@ -105196,23 +109295,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18351655132", + "thumbnail": "rbxassetid://17027101695", }, - "configName": "Huge Rave Troll", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "59cfc610e6605130", + "configName": "Sketch Dragon", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:57.081Z", + "hashShort": "bf73db89844044d1", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://18351654949", + "goldenThumbnail": "rbxassetid://17208308091", "huge": true, - "indexDesc": "Found in the Rave Pack!", + "indexDesc": "Found occasionally in Active Huge Pets!", "indexObtainable": true, - "name": "Huge Rave Meebo in a Spaceship", + "name": "Huge Kangaroo", "rarity": { "Announce": true, "Color": null, @@ -105225,21 +109323,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18351654787", + "thumbnail": "rbxassetid://17208307820", }, - "configName": "Huge Rave Meebo in a Spaceship", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "93be07c7bd9bc6f0", + "configName": "Huge Kangaroo", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.694Z", + "hashShort": "423abaf623bb0afa", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18352470225", - "indexDesc": "Found in The Forever Pack!", + "fly": true, + "goldenThumbnail": "rbxassetid://17288680856", + "huge": true, + "indexDesc": "Found in Glitched Gifts!", "indexObtainable": true, - "name": "Titanic Kitsune Fox", + "name": "Huge 404 Demon", "rarity": { "Announce": true, "Color": null, @@ -105252,207 +109352,24 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18352469980", - "titanic": true, - }, - "configName": "Titanic Kitsune Fox", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "48f8603ce660e203", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 11135824010946, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18351498243", - "indexDesc": "Hatched from eggs in the Lucky Tile Event!", - "name": "UV Kitsune", - "thumbnail": "rbxassetid://18351498436", - }, - "configName": "UV Kitsune", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c0ce4dc1e4da5a64", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 9443406313241, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18351495708", - "indexDesc": "Hatched from eggs in the Lucky Tile Event!", - "name": "DJ Panda", - "thumbnail": "rbxassetid://18351514950", - }, - "configName": "DJ Panda", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "cd827389744b7495", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 9000944170051, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18351496480", - "indexDesc": "Hatched from eggs in the Lucky Tile Event!", - "name": "Rave Corgi", - "thumbnail": "rbxassetid://18351496648", - }, - "configName": "Rave Corgi", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "cb5c27727d26d9de", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.1, - "Value": null, - }, - { - "Time": 0.2, - "Value": null, - }, - { - "Time": 0.3, - "Value": null, - }, - { - "Time": 0.4, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.6, - "Value": null, - }, - { - "Time": 0.7, - "Value": null, - }, - { - "Time": 0.8, - "Value": null, - }, - { - "Time": 0.9, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.075, - }, - "cachedPower": [ - 8596407353419, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18351497816", - "indexDesc": "Hatched from the Lucky Tile Event!", - "name": "UV Cat", - "thumbnail": "rbxassetid://18351497965", - }, - "configName": "UV Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0df21cae1101f36a", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 11663815666637, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18351496779", - "indexDesc": "Hatched from eggs in the Lucky Tile Event!", - "name": "Rave Meebo in a Spaceship", - "thumbnail": "rbxassetid://18351497185", - }, - "configName": "Rave Meebo in a Spaceship", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5377b6432a1a2c5e", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 10367836148122, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18351496011", - "indexDesc": "Hatched from eggs in the Lucky Tile Event!", - "name": "Rave Bunny", - "thumbnail": "rbxassetid://18351496333", - }, - "configName": "Rave Bunny", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "447959a74d5cc517", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 9898510231952, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18351497548", - "indexDesc": "Hatched from eggs in the Lucky Tile Event!", - "name": "Rave Troll", - "thumbnail": "rbxassetid://18351497686", + "thumbnail": "rbxassetid://17288680692", }, - "configName": "Rave Troll", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2ee2e0ee48d1202c", + "configName": "Huge 404 Demon", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.686Z", + "hashShort": "2ba4d4188286ca86", }, { "category": "Huge", "collection": "Pets", "configData": { + "balloon": true, "fly": true, - "goldenThumbnail": "rbxassetid://18458208354", + "goldenThumbnail": "rbxassetid://17277934973", "huge": true, - "indexDesc": "Earned from the Lucky Tile Event's final egg!", + "indexDesc": "Reward in the 2024 Bubble Clan Battle!", "indexObtainable": true, - "name": "Huge Rave Butterfly", + "name": "Huge Bubble Dog", "rarity": { "Announce": true, "Color": null, @@ -105465,23 +109382,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18458208075", + "thumbnail": "rbxassetid://17277934726", }, - "configName": "Huge Rave Butterfly", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "27bed1ab8cb93897", + "configName": "Huge Bubble Dog", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.706Z", + "hashShort": "3caa64ce7c2b9d61", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://18458208822", + "goldenThumbnail": "rbxassetid://17285736725", "huge": true, - "indexDesc": "Found in the Disco Pack!", + "indexDesc": "Found in the Exclusive Black Hole Egg!", "indexObtainable": true, - "name": "Huge Disco Ball Dragon", + "name": "Huge Black Hole Kitsune", "rarity": { "Announce": true, "Color": null, @@ -105494,22 +109410,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18458208582", + "thumbnail": "rbxassetid://17285736637", }, - "configName": "Huge Disco Ball Dragon", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "18a889abe171bc06", + "configName": "Huge Black Hole Kitsune", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.696Z", + "hashShort": "bb1b09e5439e31c2", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18458263785", + "goldenThumbnail": "rbxassetid://17285736535", "huge": true, - "indexDesc": "Earned from the Lucky Tile Event!", + "indexDesc": "Found in the Exclusive Black Hole Egg!", "indexObtainable": true, - "name": "Huge Rave Jaguar", + "name": "Huge Black Hole Axolotl", "rarity": { "Announce": true, "Color": null, @@ -105522,23 +109438,25 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18458263548", + "thumbnail": "rbxassetid://17285736425", }, - "configName": "Huge Rave Jaguar", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f67e2e22a60222b7", + "configName": "Huge Black Hole Axolotl", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.688Z", + "hashShort": "da3da469a0c4f3c0", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { + "animations": { + "balloon": true, + }, "fly": true, - "goldenThumbnail": "rbxassetid://18465100470", - "huge": true, - "indexDesc": "Found in the Exclusive Valkyrie Egg!", + "goldenThumbnail": "rbxassetid://14977806706", + "indexDesc": "Comes with the Titanic Pink Balloon plush!", "indexObtainable": true, - "name": "Huge Valkyrie Wolf", + "name": "Titanic Pink Balloon Cat", "rarity": { "Announce": true, "Color": null, @@ -105551,23 +109469,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18465100470", + "thumbnail": "rbxassetid://14976657520", + "titanic": true, }, - "configName": "Huge Valkyrie Wolf", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8bea455e5faeee28", + "configName": "Titanic Pink Balloon", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:01.081Z", + "hashShort": "557a13eb033135f4", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://18465101315", - "huge": true, - "indexDesc": "Found in the Exclusive Valkyrie Egg!", + "goldenThumbnail": "rbxassetid://16393850204", + "indexDesc": "Comes with the Titanic Shiba plush!", "indexObtainable": true, - "name": "Huge Valkyrie Dog", + "name": "Titanic Shiba", "rarity": { "Announce": true, "Color": null, @@ -105580,21 +109497,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18465101315", + "thumbnail": "rbxassetid://16393850015", + "titanic": true, }, - "configName": "Huge Valkyrie Dog", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e6e4251d5cc1714a", + "configName": "Titanic Shiba", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:01.246Z", + "hashShort": "545f56b2c92526db", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14977573985", - "indexDesc": "Comes with the Titanic Strawberry Cow plush!", + "goldenThumbnail": "rbxassetid://17194509191", + "indexDesc": "Found in The Forever Pack!", "indexObtainable": true, - "name": "Titanic Strawberry Cow", + "name": "Titanic Rich Cat", "rarity": { "Announce": true, "Color": null, @@ -105607,25 +109525,33 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976827001", + "thumbnail": "rbxassetid://17194508969", "titanic": true, }, - "configName": "Titanic Strawberry Cow", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c75ecd83fae5a57d", + "configName": "Titanic Rich Cat", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:01.233Z", + "hashShort": "88808e585cfa6dfd", }, { "category": "Titanic", "collection": "Pets", "configData": { + "animations": { + "flyHeight": 2.2, + "ridingCameraOffset": null, + "ridingGravity": 65.3346, + "spinZ": true, + "swerve": true, + "swerveMaxAngle": 45, + }, "fly": true, "flyingTitanic": true, "flyingTitanicAlwaysFly": true, - "goldenThumbnail": "rbxassetid://18465212052", - "indexDesc": "Found in the Exclusive Valkyrie Egg!", + "goldenThumbnail": "rbxassetid://17285296213", + "indexDesc": "Found in the Exclusive Black Hole Egg!", "indexObtainable": true, - "name": "Titanic Valkyrie Pegasus", + "name": "Titanic Black Hole Angelus", "rarity": { "Announce": true, "Color": null, @@ -105638,422 +109564,509 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18465212052", + "thumbnail": "rbxassetid://17285296068", "titanic": true, }, - "configName": "Titanic Valkyrie Pegasus", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2b3d29272f29be11", + "configName": "Titanic Black Hole Angelus", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:01.392Z", + "hashShort": "76fb19dd7baa6281", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 11951811115196, + 433887508303, + 469628345706, + 489017076411, ], - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18447211927", - "indexDesc": "Hatched from eggs in the Lucky Tile Event!", - "name": "Rave Cat", - "thumbnail": "rbxassetid://18447211749", + "fly": true, + "fromEgg": "Glitch Green Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 190, + "goldenThumbnail": "rbxassetid://14968248489", + "maxChance": 0.8991008991008992, + "name": "Glitched Dragon", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://14968248611", }, - "configName": "Rave Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d6334d49453f27ea", + "configName": "Glitched Dragon", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.959Z", + "hashShort": "4184416d9bd481ba", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 12959795185153, + 462561113846, + 497382024449, + 521967601278, ], - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18447211104", - "indexDesc": "Hatched from eggs in the Lucky Tile Event!", - "name": "Rave Unicorn", - "thumbnail": "rbxassetid://18447210854", + "fromEgg": "Glitch Green Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 190, + "goldenThumbnail": "rbxassetid://14968248338", + "maxChance": 0.08991008991008992, + "name": "Glitched Dominus", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://14968248407", }, - "configName": "Rave Unicorn", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "41a3dfb084944579", + "configName": "Glitched Dominus", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.958Z", + "hashShort": "30f46b6b7bdacaf7", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 12671799736594, + 488123446841, + 528324349478, + 550137482339, ], - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18447211542", - "indexDesc": "Hatched from eggs in the Lucky Tile Event!", - "name": "Rave Jaguar", - "thumbnail": "rbxassetid://18447211319", + "fromEgg": "Glitch Aqua Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 191, + "goldenThumbnail": "rbxassetid://14968249370", + "maxChance": 0.9, + "name": "Glitched Unicorn", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://14968249527", }, - "configName": "Rave Jaguar", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9ad0a6af23d63ac0", + "configName": "Glitched Unicorn", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.959Z", + "hashShort": "e9a187f0c4534e4f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 13607784944410, + 520381253077, + 559548992166, + 587201749922, ], "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18447213533", - "indexDesc": "Hatched from eggs in the Lucky Tile Event!", - "name": "Disco Ball Dragon", - "thumbnail": "rbxassetid://18447213231", + "fromEgg": "Glitch Aqua Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 191, + "goldenThumbnail": "rbxassetid://14968249051", + "maxChance": 0.09, + "name": "Glitched Phoenix", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://14968249267", }, - "configName": "Disco Ball Dragon", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "95f3a801267c4b1a", + "configName": "Glitched Phoenix", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.960Z", + "hashShort": "4ae8b8f1897f3c86", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 13283790064781, + 549123415385, + 594325206542, + 618879262536, ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18447212560", - "indexDesc": "Hatched from eggs in the Lucky Tile Event!", - "name": "Rave Butterfly", - "thumbnail": "rbxassetid://18447212270", + "fromEgg": "Glitch Cyan Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 192, + "goldenThumbnail": "rbxassetid://14968248789", + "maxChance": 0.9, + "name": "Glitched Immortuus", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://14968248903", }, - "configName": "Rave Butterfly", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "29a3a2ce25c5f7dd", + "configName": "Glitched Immortuus", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.961Z", + "hashShort": "aeebf292d7492360", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 12239806563755, + 342815044874, + 371055625291, + 386382306652, ], - "fromWorldNumber": 3, - "fromZoneNumber": 214, - "goldenThumbnail": "rbxassetid://18447213002", - "indexDesc": "Hatched from eggs in the Lucky Tile Event!", - "name": "Rave Axolotl", - "thumbnail": "rbxassetid://18447212767", - }, - "configName": "Rave Axolotl", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "42665cbcf0714166", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "exclusiveLevel": 3, "fly": true, - "goldenThumbnail": "rbxassetid://18464814909", - "name": "Valkyrie Wolf", + "fromEgg": "Hacker Error Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 188, + "goldenThumbnail": "rbxassetid://14968168948", + "maxChance": 0.08991008991008992, + "name": "404 Demon", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://18464814909", + "thumbnail": "rbxassetid://14968169046", }, - "configName": "Valkyrie Wolf", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c7db02514b2b9db0", + "configName": "404 Demon", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.962Z", + "hashShort": "b3b1732a415d7791", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "fly": true, - "goldenThumbnail": "rbxassetid://18464815436", - "name": "Valkyrie Dragon", + "cachedPower": [ + 240769962929, + 260616019551, + 271379174626, + ], + "fromEgg": "Hacker Metal Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 185, + "goldenThumbnail": "rbxassetid://14968254299", + "maxChance": 0.989010989010989, + "name": "Haxolotl", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18464815436", + "thumbnail": "rbxassetid://14968254380", }, - "configName": "Valkyrie Dragon", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c228d8316ea46dcd", + "configName": "Haxolotl", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.961Z", + "hashShort": "47dc1a8293b2963f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "fly": true, - "goldenThumbnail": "rbxassetid://18464815689", - "name": "Valkyrie Dog", + "cachedPower": [ + 270147846018, + 291732010551, + 304462669213, + ], + "fromEgg": "Hacker Gear Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 186, + "goldenThumbnail": "rbxassetid://14968254003", + "maxChance": 0.989010989010989, + "name": "Haxigator", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18464815689", + "thumbnail": "rbxassetid://14968254141", }, - "configName": "Valkyrie Dog", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3b202b5aecb8c878", + "configName": "Haxigator", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:19.963Z", + "hashShort": "10ea297acfb7759a", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18520054270", - "huge": true, - "indexDesc": "Reward in the 2024 Clown Clan Battle!", - "indexObtainable": true, - "name": "Huge Clown Cat", + "cachedPower": [ + 303916326771, + 328193686970, + 342516263944, + ], + "fromEgg": "Hacker Matrix Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 187, + "goldenThumbnail": "rbxassetid://14968253102", + "maxChance": 0.9, + "name": "Hacked Raccoon", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18520054035", + "thumbnail": "rbxassetid://14968253240", }, - "configName": "Huge Clown Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ae8cb14526ef7283", + "configName": "Hacked Raccoon", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:21.612Z", + "hashShort": "b36a71342052bef7", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18556267433", - "huge": true, - "indexDesc": "Found in the Millionaire Pack!", - "indexObtainable": true, - "name": "Huge Luxe Peacock", + "cachedPower": [ + 385677785159, + 417453458855, + 434687237425, + ], + "fromEgg": "Glitch Tree Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 189, + "goldenThumbnail": "rbxassetid://14968247789", + "maxChance": 0.8991008991008992, + "name": "Glitched Cat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18556267256", + "thumbnail": "rbxassetid://14968247900", }, - "configName": "Huge Luxe Peacock", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "36f27686696c2fdc", + "configName": "Glitched Cat", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:28.084Z", + "hashShort": "f55db0fbe079656c", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18556268421", - "huge": true, - "indexDesc": "Earned from the Millionaire World's run minigame!", - "indexObtainable": true, - "name": "Huge Treasure Turtle", + "cachedPower": [ + 324326106488, + 348924624665, + 365996542327, + ], + "fromEgg": "Hacker Error Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 188, + "goldenThumbnail": "rbxassetid://14968252879", + "maxChance": 0.8991008991008992, + "name": "Hacked Cat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18556268254", + "thumbnail": "rbxassetid://14968252947", }, - "configName": "Huge Treasure Turtle", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "87e692cf1a97b342", + "configName": "Hacked Cat", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:28.085Z", + "hashShort": "b31dfda6de188550", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://18556265842", - "huge": true, - "indexDesc": "Earned from Millionaire World's huge raffles!", - "indexObtainable": true, - "name": "Huge Elegant Eagle", + "cachedPower": [ + 411165434530, + 442121990411, + 463980656621, + ], + "fromEgg": "Glitch Tree Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 189, + "goldenThumbnail": "rbxassetid://14968248012", + "maxChance": 0.08991008991008992, + "name": "Glitched Dog", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://18556265741", + "thumbnail": "rbxassetid://14968248121", }, - "configName": "Huge Elegant Eagle", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "de4bea4313ee390a", + "configName": "Glitched Dog", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:28.102Z", + "hashShort": "0b9def408003f6f2", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.5, - }, "cachedPower": [ - 17509694825016, + 179977948101, + 193639192442, + 203124186177, ], - "fromEgg": "Luxe Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18556268101", - "huge": true, - "indexDesc": "Earned from Millionaire World's final egg!", - "indexObtainable": true, - "maxChance": 4.9999487255258196e-9, - "name": "Huge Pristine Snake", + "fromEgg": "Dark Tech Brick Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 183, + "goldenThumbnail": "rbxassetid://15565566193", + "maxChance": 0.8991008991008992, + "name": "Shadow Bull", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18556267952", + "thumbnail": "rbxassetid://15565566144", }, - "configName": "Huge Pristine Snake", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c3a189481073aee6", + "configName": "Shadow Bull", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:46.850Z", + "hashShort": "b93bc214d8b0dc07", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 12518590281036, + 214023771174, + 231674493985, + 241236147315, ], - "fly": true, - "fromEgg": "Elegant Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 218, - "goldenThumbnail": "rbxassetid://18556248780", - "maxChance": 0.00999989745105164, - "name": "Diamond Dragon", + "fromEgg": "Dark Tech Spike Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 184, + "goldenThumbnail": "rbxassetid://15565566053", + "maxChance": 0.9, + "name": "Shadow Dominus", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18556248893", + "thumbnail": "rbxassetid://15565565989", }, - "configName": "Diamond Dragon", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d1e3b613893cf0a3", + "configName": "Shadow Dominus", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:28.159Z", + "hashShort": "c1d0f8ac1211145a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 7197630118855, + 159587625319, + 171827341184, + 180111345364, ], - "fromEgg": "Growing Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 215, - "goldenThumbnail": "rbxassetid://18556249642", - "maxChance": 0.989010989010989, - "name": "Humble Hen", + "fly": true, + "fromEgg": "Dark Tech Castle Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 182, + "goldenThumbnail": "rbxassetid://99732074426475", + "maxChance": 0.9, + "name": "Shadow Demon", "rarity": { "Announce": false, "Color": null, @@ -106066,43 +110079,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18556249774", + "thumbnail": "rbxassetid://76560882581258", }, - "configName": "Humble Hen", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e849a1e24b3ef514", + "configName": "Shadow Dragon", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:31.385Z", + "hashShort": "52eca87d37fe58f5", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.5, - }, "cachedPower": [ - 9891231826991, + 190237995401, + 205925265086, + 214428799738, ], - "fromEgg": "Sturdy Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 216, - "goldenThumbnail": "rbxassetid://18556250778", - "maxChance": 0.09891196834817013, - "name": "Pristine Snake", + "fromEgg": "Dark Tech Brick Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 183, + "goldenThumbnail": "rbxassetid://78776351852605", + "maxChance": 0.08991008991008992, + "name": "Shadow Jaguar", "rarity": { "Announce": false, "Color": null, @@ -106115,91 +110113,96 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://18556250868", + "thumbnail": "rbxassetid://83125750718076", }, - "configName": "Pristine Snake", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e606d1f94bcb4966", + "configName": "Shadow Panther", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:31.386Z", + "hashShort": "d66e1666b02f14f1", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 15762749385023, + 228167605864, + 245359712179, + 257503669527, ], - "fromEgg": "Luxe Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18556250074", - "maxChance": 0.00000999989745105164, - "name": "Luxe Axolotl", + "fromEgg": "Dark Tech Spike Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 184, + "goldenThumbnail": "rbxassetid://15565565707", + "maxChance": 0.09, + "name": "Shadow Wolf", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://18556250211", + "thumbnail": "rbxassetid://15565565607", }, - "configName": "Luxe Axolotl", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "19a8f6c761d62446", + "configName": "Shadow Wolf", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:31.377Z", + "hashShort": "59497154da70424d", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 8789864520766, + 69973170977, + 75346266776, + 78985260360, ], - "fromEgg": "Growing Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 215, - "goldenThumbnail": "rbxassetid://18556249185", - "maxChance": 0.09891196834817013, - "name": "Fortress Dog", + "fromEgg": "Dominus Infernus Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 175, + "goldenThumbnail": "rbxassetid://17026781673", + "maxChance": 0.47120418848167533, + "name": "Wicked Empyrean Dominus", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18556249292", + "thumbnail": "rbxassetid://17026782060", }, - "configName": "Fortress Dog", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "617cfa718221a562", + "configName": "Wicked Empyrean Dominus", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.116Z", + "hashShort": "d1951f598e626efb", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 11742738823361, + 65151346023, + 69817352496, + 73415469311, ], - "fly": true, - "fromEgg": "Elegant Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 218, - "goldenThumbnail": "rbxassetid://18556248984", - "maxChance": 0.9899898476541124, - "name": "Elegant Eagle", + "fromEgg": "Dominus Infernus Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 175, + "goldenThumbnail": "rbxassetid://17026773780", + "maxChance": 0.9, + "name": "Dominus Serpents", "rarity": { "Announce": false, "Color": null, @@ -106212,108 +110215,96 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18556249078", + "thumbnail": "rbxassetid://17026773962", }, - "configName": "Elegant Eagle", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "088e059062fbae25", + "configName": "Dominus Serpents", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.124Z", + "hashShort": "358c0416a3a9ff93", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 9278213391298, + 133610224479, + 144634919483, + 150606476950, ], - "fly": true, - "fromEgg": "Sturdy Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 216, - "goldenThumbnail": "rbxassetid://18556249416", - "maxChance": 0.8902077151335313, - "name": "Fortress Owl", + "fromEgg": "Dark Tech Stone Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 180, + "goldenThumbnail": "rbxassetid://17270075910", + "maxChance": 0.09, + "name": "Shadow Shark", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://18556249535", + "thumbnail": "rbxassetid://17270076014", }, - "configName": "Fortress Owl", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2d15616836997aa5", + "configName": "Shadow Shark", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.096Z", + "hashShort": "16c4b396a49d6b02", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 16778082388700, + 150311502539, + 162711612754, + 169429898488, ], - "fromEgg": "Luxe Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18556250340", - "maxChance": 2.49997436276291e-7, - "name": "Luxe Peacock", + "fromEgg": "Dark Tech Relic Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 181, + "goldenThumbnail": "rbxassetid://17270075615", + "maxChance": 0.9, + "name": "Shadow Kraken", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18556250480", + "thumbnail": "rbxassetid://17270075776", }, - "configName": "Luxe Peacock", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2d58c9929e57b47d", + "configName": "Shadow Kraken", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.116Z", + "hashShort": "dcb5b8ecc39fe116", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.5, - }, "cachedPower": [ - 10437990065210, + 126404265333, + 136003817544, + 142670467882, ], - "fromEgg": "Established Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 217, - "goldenThumbnail": "rbxassetid://18556250595", - "maxChance": 0.8902077151335313, - "name": "Pristine Poodle", + "fromEgg": "Dark Tech Stone Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 180, + "goldenThumbnail": "rbxassetid://17270075414", + "maxChance": 0.9, + "name": "Shadow Dolphin", "rarity": { "Announce": false, "Color": null, @@ -106326,26 +110317,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18556250696", + "thumbnail": "rbxassetid://17270075533", }, - "configName": "Pristine Poodle", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a2637cd0e7c41ba2", + "configName": "Shadow Dolphin", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.120Z", + "hashShort": "a7a61d9b866060ed", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 8244991420763, + 1113261849602, + 1204834001009, + 1256091648389, ], - "fromEgg": "Growing Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 215, - "goldenThumbnail": "rbxassetid://18556249893", - "maxChance": 0.8902077151335313, - "name": "Humble Rabbit", + "fromEgg": "Void Fracture Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 198, + "goldenThumbnail": "rbxassetid://17270076454", + "maxChance": 0.9090721766945409, + "name": "Wireframe Dog", "rarity": { "Announce": false, "Color": null, @@ -106358,26 +110351,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18556249987", + "thumbnail": "rbxassetid://17270076593", }, - "configName": "Humble Rabbit", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "33448cad7de32137", + "configName": "Wireframe Dog", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.094Z", + "hashShort": "1607539a4612ffe3", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 11127635805365, + 1186832142662, + 1278825631553, + 1345481866735, ], - "fromEgg": "Established Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 217, - "goldenThumbnail": "rbxassetid://18556250992", - "maxChance": 0.09891196834817013, - "name": "Treasure Turtle", + "fromEgg": "Void Fracture Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 198, + "goldenThumbnail": "rbxassetid://17270076087", + "maxChance": 0.09090721766945409, + "name": "Wireframe Cat", "rarity": { "Announce": false, "Color": null, @@ -106390,556 +110385,641 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://18556251133", + "thumbnail": "rbxassetid://17270076280", }, - "configName": "Treasure Turtle", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1dae64ffe98ec940", + "configName": "Wireframe Cat", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.109Z", + "hashShort": "b9c8ca72da9549ca", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://18626987216", - "huge": true, - "indexDesc": "Comes with Series 3 Treasure Chest Ultimate Bundle!", - "indexObtainable": true, - "name": "Huge Ancient Dragon", + "cachedPower": [ + 105568572428, + 114283277010, + 119001138586, + ], + "fromEgg": "Holographic Tree Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 178, + "goldenThumbnail": "rbxassetid://17270073295", + "maxChance": 0.09, + "name": "Holographic Axolotl", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://18626986876", + "thumbnail": "rbxassetid://17270073365", }, - "configName": "Huge Ancient Dragon", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9447e951c048b965", + "configName": "Holographic Axolotl", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.119Z", + "hashShort": "b5e7ec8500357dc7", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976546956", - "huge": true, - "indexDesc": "Comes with Series 3 Brown Dog Collector Bundle!", - "indexObtainable": true, - "name": "Huge Shiba", + "cachedPower": [ + 93838731047, + 101586876505, + 105780347274, + ], + "fromEgg": "Holographic Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 177, + "goldenThumbnail": "rbxassetid://17270073434", + "maxChance": 0.9, + "name": "Holographic Bear", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14976547077", + "thumbnail": "rbxassetid://17270073529", }, - "configName": "Huge Shiba", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "77b77800b81e2305", + "configName": "Holographic Bear", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.115Z", + "hashShort": "12649c3a4dc4f118", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://14976567323", - "huge": true, - "indexDesc": "Comes with Series 3 Purple Dragon Collector Bundle!", - "indexObtainable": true, - "name": "Huge Three Headed Dragon", + "cachedPower": [ + 79925601255, + 85677900551, + 90227848114, + ], + "fromEgg": "Holographic Pipes Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 176, + "goldenThumbnail": "rbxassetid://17270073627", + "maxChance": 0.9, + "name": "Holographic Cat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14976567497", + "thumbnail": "rbxassetid://17270073739", }, - "configName": "Huge Three Headed Dragon", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "00848050da11cccd", + "configName": "Holographic Cat", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.114Z", + "hashShort": "c8e97050fb3963fc", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976456310", - "huge": true, - "indexDesc": "Comes with Series 3 Dalmatian Collector Bundle!", - "indexObtainable": true, - "name": "Huge Hippo", + "cachedPower": [ + 84948289708, + 92591544568, + 95811528627, + ], + "fromEgg": "Holographic Pipes Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 176, + "goldenThumbnail": "rbxassetid://17270073824", + "maxChance": 0.09, + "name": "Holographic Corgi", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://14976456459", + "thumbnail": "rbxassetid://17270073922", }, - "configName": "Huge Hippo", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "22b8f0fbffdd28c4", + "configName": "Holographic Corgi", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.096Z", + "hashShort": "9c34b9eff6bfe9f1", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18313092725", - "huge": true, - "indexDesc": "Found in the Exclusive SpongeBob Egg!", - "indexObtainable": true, - "name": "Huge Mr. Krabs", + "cachedPower": [ + 118764643981, + 128566514258, + 133874338397, + ], + "fly": true, + "fromEgg": "Holographic Crystal Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 179, + "goldenThumbnail": "rbxassetid://17270074032", + "maxChance": 0.9, + "name": "Holographic Dragon", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18313092725", + "thumbnail": "rbxassetid://17270074170", }, - "configName": "Huge Mr Krabs", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2fd647895132cf36", + "configName": "Holographic Dragon", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.117Z", + "hashShort": "a6a131fcf4f7d117", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18313092558", - "huge": true, - "indexDesc": "Found in the Exclusive SpongeBob Egg!", - "indexObtainable": true, - "name": "Huge Patrick Star", + "cachedPower": [ + 99874975078, + 107462440396, + 112732666847, + ], + "fromEgg": "Holographic Tree Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 178, + "goldenThumbnail": "rbxassetid://17270074244", + "maxChance": 0.9, + "name": "Holographic Monkey", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18313092558", + "thumbnail": "rbxassetid://17270074390", }, - "configName": "Huge Patrick Star", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c3048a5ca57dd0b2", + "configName": "Holographic Monkey", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.106Z", + "hashShort": "ace272a0e4c97bc2", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18644411976", - "hideSerial": true, - "huge": true, - "indexDesc": "Found in the (Rare, Mythical) Series 3 Merch Gifts!", - "indexObtainable": true, - "name": "Huge Inferno Stealth Bobcat", + "cachedPower": [ + 781879378595, + 846226781340, + 881172238135, + ], + "fromEgg": "Quantum Space Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 195, + "goldenThumbnail": "rbxassetid://17270074458", + "maxChance": 0.8991008991008992, + "name": "Quantum Bunny", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18644411865", + "thumbnail": "rbxassetid://17270074544", }, - "configName": "Huge Inferno Stealth Bobcat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a651020706905436", + "configName": "Quantum Bunny", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.114Z", + "hashShort": "5dba2146ccd5aa0e", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18644413430", - "hideSerial": true, - "huge": true, - "indexDesc": "Found in the (Epic, Mythical) Series 3 Merch Gifts!", - "indexObtainable": true, - "name": "Huge Tropical Flamingo", + "cachedPower": [ + 937743915190, + 1008275442590, + 1058054599518, + ], + "fromEgg": "Quantum Galaxy Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 196, + "goldenThumbnail": "rbxassetid://17270074647", + "maxChance": 0.08991008991008992, + "name": "Quantum Dominus", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://18644413250", + "thumbnail": "rbxassetid://17270074741", }, - "configName": "Huge Tropical Flamingo", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6be7df0b7887d050", + "configName": "Quantum Dominus", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.118Z", + "hashShort": "ce5613c9b8ea6fbb", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18644412228", - "hideSerial": true, - "huge": true, - "indexDesc": "Found in the (Basic, Rare, Mythical) Series 3 Merch Gifts!", - "indexObtainable": true, - "name": "Huge Inferno Stealth Cat", + "cachedPower": [ + 695003892085, + 752211740860, + 783273270945, + ], + "fromEgg": "Quantum Leafy Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 194, + "goldenThumbnail": "rbxassetid://17270074801", + "maxChance": 0.8991008991008992, + "name": "Quantum Fox", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18644412090", + "thumbnail": "rbxassetid://17270074857", }, - "configName": "Huge Inferno Stealth Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a8e0ffce5f6400f3", + "configName": "Quantum Fox", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.121Z", + "hashShort": "4c105f0427a0d68f", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18644412681", - "hideSerial": true, - "huge": true, - "indexDesc": "Found in the (Legendary, Mythical) Series 3 Merch Gifts!", - "indexObtainable": true, - "name": "Huge Old Wizard Corgi", + "cachedPower": [ + 740933463854, + 796677556332, + 836025333925, + ], + "fromEgg": "Quantum Leafy Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 194, + "goldenThumbnail": "rbxassetid://17270074955", + "maxChance": 0.08991008991008992, + "name": "Quantum Goat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://18644412561", + "thumbnail": "rbxassetid://17270075053", }, - "configName": "Huge Old Wizard Corgi", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1f75ac5a96b887f0", + "configName": "Quantum Goat", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.121Z", + "hashShort": "76c5004d69cad7dd", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { + "cachedPower": [ + 879614300920, + 951992449144, + 991307460692, + ], "fly": true, - "goldenThumbnail": "rbxassetid://18644413103", - "hideSerial": true, - "huge": true, - "indexDesc": "Found in the (Legendary, Mythical) Series 3 Merch Gifts!", - "indexObtainable": true, - "name": "Huge Old Wizard Owl", + "fromEgg": "Quantum Galaxy Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 196, + "goldenThumbnail": "rbxassetid://17270075114", + "maxChance": 0.8991008991008992, + "name": "Quantum Griffin", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18644413008", + "thumbnail": "rbxassetid://17270075186", }, - "configName": "Huge Old Wizard Owl", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c39a35c98305a453", + "configName": "Quantum Griffin", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.130Z", + "hashShort": "c47f965bf4ac32f6", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://18644414363", - "hideSerial": true, - "huge": true, - "indexDesc": "Found in the (Epic, Mythical) Series 3 Merch Gifts!", - "indexObtainable": true, - "name": "Huge Tropical Toucan", + "cachedPower": [ + 833550146835, + 896253484237, + 940510616475, + ], + "fromEgg": "Quantum Space Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 195, + "goldenThumbnail": "rbxassetid://17270075250", + "maxChance": 0.08991008991008992, + "name": "Quantum Tiger", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://18644414181", + "thumbnail": "rbxassetid://17270075327", }, - "configName": "Huge Tropical Toucan", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "290d117f741ed792", + "configName": "Quantum Tiger", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.095Z", + "hashShort": "384ffbbd226ad976", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { + "cachedPower": [ + 617763842309, + 668606578835, + 696230893759, + ], "fly": true, - "goldenThumbnail": "rbxassetid://18644414013", - "hideSerial": true, - "huge": true, - "indexDesc": "Found in the (Legendary, Mythical) Series 3 Merch Gifts!", - "indexObtainable": true, - "name": "Huge Tropical Parrot", + "fromEgg": "Quantum Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 193, + "goldenThumbnail": "rbxassetid://17277245108", + "maxChance": 0.08991008991008992, + "name": "Fragmented Pterodactyl", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://18644413700", + "thumbnail": "rbxassetid://17270073233", }, - "configName": "Huge Tropical Parrot", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7ef6b48245c48dc8", + "configName": "Fragmented Pterodactyl", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.106Z", + "hashShort": "f11700864a68aecb", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18673256315", - "huge": true, - "indexDesc": "Earned from the Dino Tycoon's final egg!", - "indexObtainable": true, - "name": "Huge Dino Dog", + "cachedPower": [ + 584446174988, + 628740770478, + 659470734513, + ], + "fromEgg": "Quantum Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 193, + "goldenThumbnail": "rbxassetid://17270073032", + "maxChance": 0.8991008991008992, + "name": "Fragmented Dominus", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18673255790", + "thumbnail": "rbxassetid://17270073102", }, - "configName": "Huge Dino Dog", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8413f30f5a48b794", + "configName": "Fragmented Dominus", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.108Z", + "hashShort": "1470747aa2eeb534", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "fadeFrames": [ - { - "duration": 1, - "iconThumbnail": "rbxassetid://18671776352", - "instant": true, - "textureName": "frame1", - }, - { - "duration": 2, - "iconThumbnail": "rbxassetid://18671776118", - "instant": true, - "textureName": "frame2", - }, - ], - }, - "goldenThumbnail": "rbxassetid://18673256887", - "huge": true, - "indexDesc": "Earned from the Dino Gifts!", - "indexObtainable": true, - "name": "Huge Electric Dino", + "cachedPower": [ + 989566088535, + 1070977435038, + 1115208348135, + ], + "fly": true, + "fromEgg": "Void Crystal Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 197, + "goldenThumbnail": "rbxassetid://17270072669", + "maxChance": 0.8991008991008992, + "name": "Atomic Axolotl", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18673256682", + "thumbnail": "rbxassetid://17270072788", }, - "configName": "Huge Electric Dino", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2b150381916843dc", + "configName": "Atomic Axolotl", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.113Z", + "hashShort": "0bde6829391c7012", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18673257211", - "huge": true, - "indexDesc": "Found in the Dino Pack!", - "indexObtainable": true, - "name": "Huge Mech Dino", + "cachedPower": [ + 1054961904588, + 1134299079717, + 1190289405375, + ], + "fly": true, + "fromEgg": "Void Crystal Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 197, + "goldenThumbnail": "rbxassetid://17270072897", + "maxChance": 0.08991008991008992, + "name": "Atomic Monkey", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://18673257007", + "thumbnail": "rbxassetid://17270072951", }, - "configName": "Huge Mech Dino", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c72b5d2e4a336159", + "configName": "Atomic Monkey", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.124Z", + "hashShort": "ce0eafd23544cfb6", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "flyingTitanic": true, - "flyingTitanicAlwaysFly": true, - "goldenThumbnail": "rbxassetid://18640616459", - "indexDesc": "Comes with the Titanic Nightfall Pegasus plush!", - "indexObtainable": true, - "name": "Titanic Nightfall Pegasus", + "cachedPower": [ + 1472870513798, + 1597112054469, + 1670414789215, + ], + "fromEgg": "Void Spiral Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://17276416611", + "maxChance": 0.000020201603926545354, + "name": "Void Alien", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Mythical", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 5, + "_id": "Mythical", "_script": null, }, - "thumbnail": "rbxassetid://18640616333", - "titanic": true, + "thumbnail": "rbxassetid://17276416688", }, - "configName": "Titanic Nightfall Pegasus", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e00bd90efbaa9974", + "configName": "Void Alien", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.120Z", + "hashShort": "683c6b0b410dfd92", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://16394133269", - "indexDesc": "Comes with the Titanic Nightfall Wolf plush!", - "indexObtainable": true, - "name": "Titanic Nightfall Wolf", + "animations": { + "spinZ": true, + }, + "cachedPower": [ + 1579897516716, + 1711486449952, + 1786081597611, + ], + "fly": true, + "fromEgg": "Void Spiral Egg", + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://17276416269", + "maxChance": 4.040320785309071e-7, + "name": "Black Hole Angelus", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://16394133066", - "titanic": true, + "thumbnail": "rbxassetid://17276416395", }, - "configName": "Titanic Nightfall Wolf", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4ae1b8c4872d162d", + "configName": "Black Hole Angelus", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.129Z", + "hashShort": "3b76224d427d9e9f", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18313091924", - "indexDesc": "Found in the Exclusive SpongeBob Egg!", - "indexObtainable": true, - "name": "Titanic SpongeBob SquarePants", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://17285711649", + "name": "Black Hole Kitsune", "rarity": { "Announce": true, "Color": null, @@ -106952,39 +111032,46 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18313091924", - "titanic": true, + "thumbnail": "rbxassetid://17285711731", }, - "configName": "Titanic SpongeBob SquarePants", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c11ac87d0d9a5b12", + "configName": "Black Hole Kitsune", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:57.244Z", + "hashShort": "d9d8fc8540462642", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 11858636117133, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://14968323255", - "name": "Safari Dog", - "thumbnail": "rbxassetid://14968323471", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://17285711111", + "name": "Black Hole Axolotl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://17285711200", }, - "configName": "Safari Dog", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8adc4cce6b07a3fe", + "configName": "Black Hole Axolotl", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:57.238Z", + "hashShort": "e46f3cd3d073fa46", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://18313099619", - "name": "Gary the Snail", + "goldenThumbnail": "rbxassetid://17285711302", + "name": "Black Hole Immortuus", "rarity": { "Announce": true, "Color": null, @@ -106997,20 +111084,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18313099619", + "thumbnail": "rbxassetid://17285745121", }, - "configName": "Gary the Snail", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "095857193212d46a", + "configName": "Black Hole Immortuus", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:57.249Z", + "hashShort": "6d9836fda943d177", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://18313092388", - "name": "Mr. Krabs", + "fly": true, + "goldenThumbnail": "rbxassetid://17375065330", + "huge": true, + "indexDesc": "Earned from the 2024 Backrooms Event!", + "indexObtainable": true, + "name": "Huge Plague Dragon", "rarity": { "Announce": true, "Color": null, @@ -107023,20 +111113,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18313092388", + "thumbnail": "rbxassetid://17375065126", }, - "configName": "Mr Krabs", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a8fa487e878b9c4f", + "configName": "Huge Plague Dragon", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.695Z", + "hashShort": "f16443bec7a0d186", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://18313092193", - "name": "Patrick Star", + "goldenThumbnail": "rbxassetid://17375064755", + "huge": true, + "indexDesc": "Found in the Backrooms Pack!", + "indexObtainable": true, + "name": "Huge Bloo Cat", "rarity": { "Announce": true, "Color": null, @@ -107049,112 +111141,101 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18313092193", - }, - "configName": "Patrick Star", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7ce9e0ff97be80f4", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 12282158835602, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18673191559", - "name": "Mech Dino", - "thumbnail": "rbxassetid://18673191757", + "thumbnail": "rbxassetid://17375064407", }, - "configName": "Mech Dino", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "661101dcfe8be31f", + "configName": "Huge Bloo Cat", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.687Z", + "hashShort": "a62c58c576982b4a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 11689227029745, + 917104998503, + 992574903295, + 1034503790577, ], - "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18673189493", - "name": "Dino Axolotl", - "thumbnail": "rbxassetid://18673189643", + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://17374942746", + "name": "Night Terror Cat", + "thumbnail": "rbxassetid://17374942518", }, - "configName": "Dino Axolotl", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "41769d9d27984673", + "configName": "Night Terror Cat", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.130Z", + "hashShort": "660524878851a134", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 11604522486052, + 1574881081107, + 1701056486476, + 1779930572159, ], - "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18673189798", - "name": "Dino Dog", - "thumbnail": "rbxassetid://18673189973", + "fly": true, + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://17374943172", + "name": "Plague Dragon", + "thumbnail": "rbxassetid://17374942910", }, - "configName": "Dino Dog", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "85255cee466bcf27", + "configName": "Plague Dragon", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.132Z", + "hashShort": "a0c16aa06103a946", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 11773931573439, + 1520872813580, + 1634271027864, + 1726153249307, ], - "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18673190187", - "name": "Dino Monkey", - "thumbnail": "rbxassetid://18673190450", + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://17374944886", + "name": "Creepy Wolf", + "thumbnail": "rbxassetid://17374944716", }, - "configName": "Dino Monkey", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5715f45d641979ab", + "configName": "Creepy Wolf", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.132Z", + "hashShort": "3a7d0775a1a15601", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 12112749748214, + 1068157586492, + 1144282882733, + 1205265109899, ], - "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18673192189", - "name": "Triceratops", - "thumbnail": "rbxassetid://18673192313", + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://17374944579", + "name": "Creepy Yeti", + "thumbnail": "rbxassetid://17374944347", }, - "configName": "Triceratops", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5b1ad50887f73713", + "configName": "Creepy Yeti", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.133Z", + "hashShort": "c4121993209ab32a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "fly": true, - "goldenThumbnail": "rbxassetid://18644344848", - "hideSerial": true, - "name": "Tropical Toucan", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://17374946383", + "name": "Bloo Cat", "rarity": { "Announce": true, "Color": null, @@ -107167,91 +111248,129 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18644345027", + "thumbnail": "rbxassetid://17374946247", }, - "configName": "Tropical Toucan", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "955e153819dd304b", + "configName": "Bloo Cat", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:57.247Z", + "hashShort": "1a40db34f92348cc", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1201677284804, + 1290713033175, + 1363312969167, + ], + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://17374945289", + "name": "Corrupt Skeleton", + "thumbnail": "rbxassetid://17374945083", + }, + "configName": "Corrupt Skeleton", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.135Z", + "hashShort": "4580900911784d96", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1451742231144, + 1580409775901, + 1645361371363, + ], + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://17374945603", + "name": "Corrupt Octopus", + "thumbnail": "rbxassetid://17374945450", + }, + "configName": "Corrupt Octopus", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.134Z", + "hashShort": "fbf90e3db90beac7", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "animations": { - "fadeFrames": [ - { - "duration": 1, - "iconThumbnail": "rbxassetid://18671776352", - "instant": true, - "textureName": "frame1", - }, - { - "duration": 2, - "iconThumbnail": "rbxassetid://18671776118", - "instant": true, - "textureName": "frame2", - }, - ], + "flyHeight": 0.025, + "flyHeightChange": 0, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, }, "cachedPower": [ - 12197454291908, + 1147055590040, + 1246747253826, + 1297364300143, ], - "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18673190648", - "name": "Electric Dino", - "thumbnail": "rbxassetid://18673191249", + "fly": true, + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://17374943495", + "name": "Ender Slime", + "thumbnail": "rbxassetid://17374943332", }, - "configName": "Electric Dino", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "21f38aead40838ba", + "configName": "Ender Slime", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.136Z", + "hashShort": "8016fcdff56aee78", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 12028045204521, + 1662374474502, ], - "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18673189179", - "name": "Angry Dino", - "thumbnail": "rbxassetid://18673189344", + "fly": true, + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://17374943779", + "name": "Ender Hades", + "thumbnail": "rbxassetid://17374943619", }, - "configName": "Angry Dino", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0c7581df6ff09adb", + "configName": "Ender Hades", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:57.252Z", + "hashShort": "9ae87079ec5421d4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 11943340660827, + 995328660140, + 1082635917918, + 1121882534592, ], - "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18673191907", - "name": "Research Cat", - "thumbnail": "rbxassetid://18673192043", + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://17374944094", + "name": "Ender Goat", + "thumbnail": "rbxassetid://17374943944", }, - "configName": "Research Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6e5f8c9dc503e5e5", + "configName": "Ender Goat", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.137Z", + "hashShort": "26bf802071e812ba", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://18644342277", - "hideSerial": true, - "name": "Inferno Stealth Cat", + "goldenThumbnail": "rbxassetid://17450309513", + "huge": true, + "indexDesc": "Found in the Exclusive Bejeweled Egg!", + "indexObtainable": true, + "name": "Huge Bejeweled Unicorn", "rarity": { "Announce": true, "Color": null, @@ -107264,21 +111383,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18644342367", + "thumbnail": "rbxassetid://17450309349", }, - "configName": "Inferno Stealth Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1808ee0db30ace49", + "configName": "Huge Bejeweled Unicorn", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.702Z", + "hashShort": "7bb75b10defce0f5", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://18644342040", - "hideSerial": true, - "name": "Inferno Stealth Bobcat", + "goldenThumbnail": "rbxassetid://17450309161", + "huge": true, + "indexDesc": "Found in the Exclusive Bejeweled Egg!", + "indexObtainable": true, + "name": "Huge Bejeweled Lion", "rarity": { "Announce": true, "Color": null, @@ -107291,22 +111411,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18644342174", + "thumbnail": "rbxassetid://17450309030", }, - "configName": "Inferno Stealth Bobcat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3451d768e723c739", + "configName": "Huge Bejeweled Lion", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.704Z", + "hashShort": "ffba292f259a639d", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "fly": true, - "goldenThumbnail": "rbxassetid://18644342531", - "hideSerial": true, - "name": "Inferno Stealth Dragon", + "goldenThumbnail": "rbxassetid://17450362996", + "huge": true, + "indexDesc": "Found in the Backrooms Pack!", + "indexObtainable": true, + "name": "Huge Puurple Cat", "rarity": { "Announce": true, "Color": null, @@ -107319,21 +111439,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18644342706", + "thumbnail": "rbxassetid://17450362839", }, - "configName": "Inferno Stealth Dragon", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5fec22bd3b0bf256", + "configName": "Huge Puurple Cat", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.703Z", + "hashShort": "ba069ae615e12e37", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://18644342993", - "hideSerial": true, - "name": "Old Wizard Corgi", + "goldenThumbnail": "rbxassetid://17451173125", + "huge": true, + "indexDesc": "Earned from the 2024 Deep Backrooms Event!", + "indexObtainable": true, + "name": "Huge Night Terror Cat", "rarity": { "Announce": true, "Color": null, @@ -107346,22 +111467,21 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18644343315", + "thumbnail": "rbxassetid://17451173023", }, - "configName": "Old Wizard Corgi", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "171d59d8ea89a2f7", + "configName": "Huge Night Terror Cat", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.693Z", + "hashShort": "86616ee9da5d243c", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "rbxassetid://93694530173685", - "hideSerial": true, - "name": "Old Wizard Dragon", + "goldenThumbnail": "rbxassetid://14977503494", + "indexDesc": "Comes with the Titanic Dino Cat plush!", + "indexObtainable": true, + "name": "Titanic Dino Cat", "rarity": { "Announce": true, "Color": null, @@ -107374,22 +111494,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18644343940", + "thumbnail": "rbxassetid://14976604955", + "titanic": true, }, - "configName": "Old Wizard Dragon", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "494a11a76dd8e6e4", + "configName": "Titanic Dino Cat", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:01.249Z", + "hashShort": "d27e9dbe27cbaca4", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "exclusiveLevel": 3, "fly": true, - "goldenThumbnail": "rbxassetid://18644344108", - "hideSerial": true, - "name": "Old Wizard Owl", + "goldenThumbnail": "rbxassetid://17450303005", + "indexDesc": "Found in the Exclusive Bejeweled Egg!", + "indexObtainable": true, + "name": "Titanic Bejeweled Griffin", "rarity": { "Announce": true, "Color": null, @@ -107402,21 +111523,41 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18644344198", + "thumbnail": "rbxassetid://17450302814", + "titanic": true, }, - "configName": "Old Wizard Owl", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "444bdcd8a421d8e4", + "configName": "Titanic Bejeweled Griffin", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:01.391Z", + "hashShort": "79bd10be2135c546", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://18644344299", - "hideSerial": true, - "name": "Tropical Flamingo", + "cachedPower": [ + 1623488521882, + 1769959769132, + 1838854723235, + ], + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://17374946122", + "name": "Corrupt Cat", + "thumbnail": "rbxassetid://17374945948", + }, + "configName": "Corrupt Cat", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.136Z", + "hashShort": "08180406d9fe608f", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://17450284506", + "name": "Bejeweled Lion", "rarity": { "Announce": true, "Color": null, @@ -107429,22 +111570,79 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18644344373", + "thumbnail": "rbxassetid://17450284689", }, - "configName": "Tropical Flamingo", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d0720c4abea5c442", + "configName": "Bejeweled Lion", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:57.243Z", + "hashShort": "f3f8da0cb816a0ec", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "fly": true, - "goldenThumbnail": "rbxassetid://18644344488", - "hideSerial": true, - "name": "Tropical Parrot", + "cachedPower": [ + 1555438104797, + 1660369624618, + 1755935672899, + ], + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://17450285382", + "name": "Evil Gorilla", + "thumbnail": "rbxassetid://17450285573", + }, + "configName": "Evil Gorilla", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.141Z", + "hashShort": "181e8fc51870c55f", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1092433895276, + 1162549362152, + 1230473169211, + ], + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://17450285709", + "name": "Night Terror Dog", + "thumbnail": "rbxassetid://17450285937", + }, + "configName": "Night Terror Dog", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.140Z", + "hashShort": "302f17b44c82cf5b", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1691538938967, + 1823307974703, + ], + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://17450286088", + "name": "Plague Cow", + "thumbnail": "rbxassetid://17450286194", + }, + "configName": "Plague Cow", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.144Z", + "hashShort": "e08093c908949b57", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://17450286320", + "name": "Puurple Cat", "rarity": { "Announce": true, "Color": null, @@ -107457,22 +111655,40 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18644344647", + "thumbnail": "rbxassetid://17450286457", }, - "configName": "Tropical Parrot", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b4ab42cd705377b3", + "configName": "Puurple Cat", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:57.262Z", + "hashShort": "18a42b390b1ac4b0", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18741937315", - "huge": true, - "indexDesc": "Found in the Dino Pack!", - "indexObtainable": true, - "name": "Huge Hydra Dino", + "cachedPower": [ + 1228988132186, + 1312463103180, + 1387871183633, + ], + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://17450285097", + "name": "Ender Bunny", + "thumbnail": "rbxassetid://17450285216", + }, + "configName": "Ender Bunny", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.145Z", + "hashShort": "90d814cd95e649b1", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://17450283974", + "name": "Bejeweled Deer", "rarity": { "Announce": true, "Color": null, @@ -107485,22 +111701,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18741937148", + "thumbnail": "rbxassetid://17450284180", }, - "configName": "Huge Hydra Dino", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3d61fb68550b0e79", + "configName": "Bejeweled Deer", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:57.257Z", + "hashShort": "1a4e073f38d201ad", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18741936966", - "huge": true, - "indexDesc": "Earned from the Dino Tycoon's final egg!", - "indexObtainable": true, - "name": "Huge Egg Dino", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://17450284849", + "name": "Bejeweled Unicorn", "rarity": { "Announce": true, "Color": null, @@ -107513,22 +111727,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18741936725", + "thumbnail": "rbxassetid://17450284940", }, - "configName": "Huge Egg Dino", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "58665bf411ffe2fe", + "configName": "Bejeweled Unicorn", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:57.254Z", + "hashShort": "746a11074b08c1cc", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18758757408", + "goldenThumbnail": "rbxassetid://17421845769", "huge": true, - "indexDesc": "Earned from the Dino Tycoon's meteor showers!", + "indexDesc": "Reward in the 2024 Fragmented Clan Battle!", "indexObtainable": true, - "name": "Huge Triceratops", + "name": "Huge Fragmented Dominus", "rarity": { "Announce": true, "Color": null, @@ -107541,22 +111755,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18758757156", + "thumbnail": "rbxassetid://17421845704", }, - "configName": "Huge Triceratops", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "faff3d5780aa8b56", + "configName": "Huge Fragmented Dominus", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.700Z", + "hashShort": "d4763d4ade706c66", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18758705217", + "goldenThumbnail": "rbxassetid://17515615360", "huge": true, - "indexDesc": "Earned from the Dino Tycoon's secret lab rooms!", + "indexDesc": "Earned from the Void Chest!", "indexObtainable": true, - "name": "Huge Raptor", + "name": "Huge Holographic Cat", "rarity": { "Announce": true, "Color": null, @@ -107569,22 +111783,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18758705093", + "thumbnail": "rbxassetid://17515615256", }, - "configName": "Huge Raptor", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8f0e3ea53f0dd8aa", + "configName": "Huge Holographic Cat", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.707Z", + "hashShort": "d3b354ded50efd51", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976397095", + "fly": true, + "goldenThumbnail": "rbxassetid://17515613170", "huge": true, - "indexDesc": "Tied to the Huge Plush merch in stores!", + "indexDesc": "Earned from the Void Spinny Wheel!", "indexObtainable": true, - "name": "Huge Dino Cat", + "name": "Huge Atomic Axolotl", "rarity": { "Announce": true, "Color": null, @@ -107597,21 +111812,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976397288", + "thumbnail": "rbxassetid://17515613028", }, - "configName": "Huge Dino Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "289b6cf5d712fb0c", + "configName": "Huge Atomic Axolotl", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.705Z", + "hashShort": "049f7da9983ed9d8", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://17269862235", - "indexDesc": "Comes with the Titanic Blueberry Cow plush!", + "goldenThumbnail": "rbxassetid://17526083618", + "huge": true, + "indexDesc": "Earned from the Prison Chest!", "indexObtainable": true, - "name": "Titanic Blueberry Cow", + "name": "Huge Prison Cat", "rarity": { "Announce": true, "Color": null, @@ -107624,195 +111840,328 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17269862161", - "titanic": true, + "thumbnail": "rbxassetid://17526083509", }, - "configName": "Titanic Blueberry Cow", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "23c457c5bccafe8a", + "configName": "Huge Prison Cat", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.700Z", + "hashShort": "37cb03f071c28e6a", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://17269848775", - "indexDesc": "Comes with the Titanic Orange Axolotl plush!", - "indexObtainable": true, - "name": "Titanic Orange Axolotl", + "cachedPower": [ + 1585048899874, + 1722168353528, + 1792381203639, + ], + "fromEgg": "Striped Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 201, + "goldenThumbnail": "rbxassetid://17512183727", + "maxChance": 0.9, + "name": "Robber Cat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://17269848594", - "titanic": true, + "thumbnail": "rbxassetid://17512183615", }, - "configName": "Titanic Orange Axolotl", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1d7e0fa100c34abf", + "configName": "Robber Cat", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:25.662Z", + "hashShort": "6461454f983a8bbd", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 12620977010377, + 1783180012358, + 1936976185838, + 2016006803781, ], + "fromEgg": "Cinderblocks Egg", "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://14968322975", - "name": "Safari Cat", - "thumbnail": "rbxassetid://14968323113", + "fromZoneNumber": 202, + "goldenThumbnail": "rbxassetid://17512187460", + "maxChance": 0.9989909192724429, + "name": "Detective Cat", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://17512187366", }, - "configName": "Safari Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "db99a26fc09fd9ce", + "configName": "Detective Cat", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.149Z", + "hashShort": "d56c5f07ee27c11a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 12451567922990, + 2902493651778, + 3169511654449, + 3282418795115, ], + "fromEgg": "Lootbag Egg", "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18741612330", - "name": "Egg Triceratops", - "thumbnail": "rbxassetid://18741612556", + "fromZoneNumber": 204, + "goldenThumbnail": "rbxassetid://17512187151", + "maxChance": 9.989909192724429e-8, + "name": "Guard Corgi", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + "thumbnail": "rbxassetid://17512187005", }, - "configName": "Egg Triceratops", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8e4e966861aab44f", + "configName": "Guard Corgi", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.151Z", + "hashShort": "52d593f23dfdd94c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 12790386097765, + 2693722772306, + 2906688387889, + 3051909911030, ], + "fromEgg": "Lootbag Egg", "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18741613822", - "name": "Stegosaurus", - "thumbnail": "rbxassetid://18741614095", + "fromZoneNumber": 204, + "goldenThumbnail": "rbxassetid://17512186182", + "maxChance": 0.00000998990919272443, + "name": "Prison Axolotl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "thumbnail": "rbxassetid://17512186017", }, - "configName": "Stegosaurus", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8545c84aaba5241f", + "configName": "Prison Axolotl", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.150Z", + "hashShort": "e534037ebba1243c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 12536272466683, + 1687008313151, + 1819814371341, + 1913636626548, ], + "fromEgg": "Cinderblocks Egg", "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18741611801", - "name": "Egg Spitting Dino", - "thumbnail": "rbxassetid://18741612079", + "fromZoneNumber": 202, + "goldenThumbnail": "rbxassetid://17512185812", + "maxChance": 0.09, + "name": "Prison Bunny", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://17512185613", }, - "configName": "Egg Spitting Dino", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2ee14de6df4e381b", + "configName": "Prison Bunny", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.152Z", + "hashShort": "4f80f38dce461f7b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 12705681554071, + 1238045066360, + 1331534916982, + 1399161781138, ], + "fromEgg": "Rusty Egg", "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18741613362", - "name": "Research Dog", - "thumbnail": "rbxassetid://18741613571", + "fromZoneNumber": 200, + "goldenThumbnail": "rbxassetid://17512185456", + "maxChance": 0.9, + "name": "Prison Cat", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://17512185186", }, - "configName": "Research Dog", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "53b0c0d36d37a92d", + "configName": "Prison Cat", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.152Z", + "hashShort": "3d59ee7a43a39a04", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 12366863379296, + 2406049466303, + 2593015383501, + 2726926649081, ], + "fromEgg": "Lootbag Egg", "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18741611206", - "name": "Egg Dino", - "thumbnail": "rbxassetid://18741611563", + "fromZoneNumber": 204, + "goldenThumbnail": "rbxassetid://17512184917", + "maxChance": 0.0009989909192724428, + "name": "Prison Cow", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Legendary", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 4, + "_id": "Legendary", + "_script": null, + }, + "thumbnail": "rbxassetid://17512184722", }, - "configName": "Egg Dino", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "34b663fb97daf687", + "configName": "Prison Cow", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.150Z", + "hashShort": "86ee14ace0552578", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 12959795185153, + 1499562945023, + 1617908151465, + 1701608934710, ], + "fromEgg": "Striped Egg", "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18741612820", - "name": "Hydra Dino", - "thumbnail": "rbxassetid://18741613102", + "fromZoneNumber": 201, + "goldenThumbnail": "rbxassetid://17516105420", + "maxChance": 0.09, + "name": "Prison Dog", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://17516105511", }, - "configName": "Hydra Dino", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "baf218f22adfebf4", + "configName": "Prison Dog", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.153Z", + "hashShort": "a7255717b2e02c3d", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 12875090641459, + 1329672284513, + 1435894123767, + 1509323143161, ], + "fromEgg": "Rusty Egg", "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18758698348", - "name": "Raptor", - "thumbnail": "rbxassetid://18758698199", + "fromZoneNumber": 200, + "goldenThumbnail": "rbxassetid://17512184150", + "maxChance": 0.9, + "name": "Prison Monkey", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://17512183910", }, - "configName": "Raptor", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6b37e320bfb76e0d", + "configName": "Prison Monkey", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.153Z", + "hashShort": "aaf9445e09e5ad7b", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976462105", + "goldenThumbnail": "rbxassetid://17588547900", "huge": true, - "indexDesc": "Reward in the 2024 Ice Cream Clan Battle!", + "indexDesc": "Earned from the Police HQ Egg, Bank Heist Minigame, and Cops vs. Robbers Pack!", "indexObtainable": true, - "name": "Huge Ice Cream Cone", + "name": "Huge Police Cat", "rarity": { "Announce": true, "Color": null, @@ -107825,12 +112174,12 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976462189", + "thumbnail": "rbxassetid://17588549479", }, - "configName": "Huge Ice Cream Cone", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "76f5151d47a6edda", + "configName": "Huge Police Cat", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.693Z", + "hashShort": "df1785c9cb837325", }, { "category": "Huge", @@ -107838,9 +112187,9 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "configData": { "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in the Exclusive Classic Egg!", + "indexDesc": "Found in the Exclusive Stargazing Egg!", "indexObtainable": true, - "name": "Huge Classic Dog", + "name": "Huge Stargazing Axolotl", "rarity": { "Announce": true, "Color": null, @@ -107853,23 +112202,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18883372166", + "thumbnail": "rbxassetid://17602432142", }, - "configName": "Huge Classic Dog", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1c38832e53dbf3ff", + "configName": "Huge Stargazing Axolotl", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.689Z", + "hashShort": "912d7961020d7212", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in the Exclusive Classic Egg!", + "indexDesc": "Found in the Exclusive Stargazing Egg!", "indexObtainable": true, - "name": "Huge Classic Dragon", + "name": "Huge Stargazing Wolf", "rarity": { "Announce": true, "Color": null, @@ -107882,26 +112230,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18883372375", + "thumbnail": "rbxassetid://17602431693", }, - "configName": "Huge Classic Dragon", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8dc4877b7e43460a", + "configName": "Huge Stargazing Wolf", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.687Z", + "hashShort": "75429bbac7007732", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://18882975285", + "goldenThumbnail": "rbxassetid://17604035769", "huge": true, - "indexDesc": "1 in 40,000,000 base chance from the RNG Event", + "indexDesc": "Found in the Cops vs. Robbers Pack!", "indexObtainable": true, - "name": "Huge Abyssal Jellyfish", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, + "name": "Huge Robber Cat", "rarity": { "Announce": true, "Color": null, @@ -107914,26 +112258,21 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18882975166", + "thumbnail": "rbxassetid://17604035571", }, - "configName": "Huge Abyssal Jellyfish", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9db5bda4cc5f3e0d", + "configName": "Huge Robber Cat", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.686Z", + "hashShort": "0fca2700292dc957", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://18882976037", - "huge": true, - "indexDesc": "1 in 30,000,000 base chance from the RNG Event", + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Stargazing Egg!", "indexObtainable": true, - "name": "Huge Mechatronic Robot", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, + "name": "Titanic Stargazing Bull", "rarity": { "Announce": true, "Color": null, @@ -107946,26 +112285,61 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18882975779", + "thumbnail": "rbxassetid://17602420874", + "titanic": true, }, - "configName": "Huge Mechatronic Robot", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0b42e2031eeb312b", + "configName": "Titanic Stargazing Bull", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:01.395Z", + "hashShort": "32c93af021283f7f", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://18882974998", - "huge": true, - "indexDesc": "1 in 49,999,999 base chance from the RNG Event", - "indexObtainable": true, - "name": "Huge Corrupt Butterfly", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, + "cachedPower": [ + 3065726530796, + 3296709811126, + 3473216030132, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 204, + "goldenThumbnail": "rbxassetid://17512186518", + "name": "Police Dog", + "thumbnail": "rbxassetid://17512186358", + }, + "configName": "Police Dog", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.146Z", + "hashShort": "9ad10881305bc270", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 3192735201358, + 3444716642971, + 3605080226684, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 204, + "goldenThumbnail": "rbxassetid://17512186853", + "name": "Police Cat", + "thumbnail": "rbxassetid://17512186681", + }, + "configName": "Police Cat", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.149Z", + "hashShort": "48d296d3c662a834", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 1, + "goldenThumbnail": "", + "name": "Stargazing Wolf", "rarity": { "Announce": true, "Color": null, @@ -107978,26 +112352,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18882974863", + "thumbnail": "rbxassetid://17602385201", }, - "configName": "Huge Corrupt Butterfly", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f1c8a9fc10e30846", + "configName": "Stargazing Wolf", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:57.261Z", + "hashShort": "afec0df1bdd17faf", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://18882975615", - "huge": true, - "indexDesc": "1 in 50,000,000 base chance from the RNG Event", - "indexObtainable": true, - "name": "Huge Temporal Owl", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, + "exclusiveLevel": 2, + "goldenThumbnail": "", + "name": "Stargazing Bear", "rarity": { "Announce": true, "Color": null, @@ -108010,23 +112378,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18882992626", + "thumbnail": "rbxassetid://17602385427", }, - "configName": "Huge Temporal Owl", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "632c95a5bb2411ed", + "configName": "Stargazing Bear", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:57.256Z", + "hashShort": "249962156e79f7c3", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://18886114341", - "huge": true, - "indexDesc": "Found in the The Aura Pack!", - "indexObtainable": true, - "name": "Huge Quantum Agony", + "exclusiveLevel": 3, + "goldenThumbnail": "", + "name": "Stargazing Axolotl", "rarity": { "Announce": true, "Color": null, @@ -108039,21 +112404,29 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18886114160", + "thumbnail": "rbxassetid://17603089445", }, - "configName": "Huge Quantum Agony", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f31ded4c8d28c24b", + "configName": "Stargazing Axolotl", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:57.255Z", + "hashShort": "b005225764c742d5", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://17269939076", - "indexDesc": "Comes with the Titanic Pineapple Cat plush!", + "cachedPower": [ + 5391647962904, + ], + "fromEgg": "Summer Sun Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 209, + "goldenThumbnail": "rbxassetid://17689399677", + "huge": true, + "indexDesc": "Earned from the Summer Obby World and Summer Gifts!", "indexObtainable": true, - "name": "Titanic Pineapple Cat", + "maxChance": 5.045356468082159e-9, + "name": "Huge Pineapple Monkey", "rarity": { "Announce": true, "Color": null, @@ -108066,22 +112439,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17269938973", - "titanic": true, + "thumbnail": "rbxassetid://17689399533", }, - "configName": "Titanic Pineapple Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f2090695ce4f4ba0", + "configName": "Huge Pineapple Monkey", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.684Z", + "hashShort": "094b6a8b487a4598", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://17269957190", - "indexDesc": "Comes with the Titanic Dolphin plush!", + "fly": true, + "goldenThumbnail": "rbxassetid://17687869302", + "huge": true, + "indexDesc": "Found in the Summer Pack!", "indexObtainable": true, - "name": "Titanic Dolphin", + "name": "Huge Sun Agony", "rarity": { "Announce": true, "Color": null, @@ -108094,426 +112468,511 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://17269957040", - "titanic": true, + "thumbnail": "rbxassetid://17687869169", }, - "configName": "Titanic Dolphin", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "35be12bc679d8a5f", + "configName": "Huge Sun Agony", + "dateCreated": null, + "dateModified": "2025-07-05T23:28:59.862Z", + "hashShort": "9961877622aeac4f", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Classic Egg!", - "indexObtainable": true, - "name": "Titanic Classic Cat", + "cachedPower": [ + 4093236919523, + 4466223761252, + 4624484538343, + ], + "fromEgg": "Summer Beachball Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 208, + "goldenThumbnail": "rbxassetid://14968324248", + "maxChance": 0.001009071293616432, + "name": "Sailor Seal", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://18883420114", - "titanic": true, + "thumbnail": "rbxassetid://14968324382", }, - "configName": "Titanic Classic Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9500ccdd859f2066", + "configName": "Sailor Seal", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:18.100Z", + "hashShort": "6238c44e1eae6c16", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "ridingCameraOffset": null, - }, - "fly": true, - "flyingTitanic": true, - "flyingTitanicAlwaysFly": true, - "goldenThumbnail": "rbxassetid://18882936384", - "indexDesc": "1 in 3,000,000,000 base chance from the RNG Event", - "indexObtainable": true, - "name": "Titanic Arcane Cat", + "cachedPower": [ + 2538941853534, + 2756246830255, + 2868925322884, + ], + "fromEgg": "Summer Beach Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 205, + "goldenThumbnail": "rbxassetid://14968238834", + "maxChance": 0.8, + "name": "Floatie Ducky", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18882936169", - "titanic": true, + "thumbnail": "rbxassetid://14968238944", }, - "configName": "Titanic Arcane Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "30c0c0463a81081a", + "configName": "Floatie Ducky", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:25.674Z", + "hashShort": "e3c0c0fb6d5def79", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "", - "name": "Classic Dragon", + "cachedPower": [ + 2653434476017, + 2875443787070, + 3005043009802, + ], + "fromEgg": "Summer Floatie Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 206, + "goldenThumbnail": "rbxassetid://14968239052", + "maxChance": 0.195, + "name": "Floatie Flamingo", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://18883358889", + "thumbnail": "rbxassetid://14968239203", }, - "configName": "Classic Dragon", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "aaaad27bccbc7489", + "configName": "Floatie Flamingo", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:25.675Z", + "hashShort": "33e0fa44a60ae17c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "", - "name": "Classic Bunny", + "animations": { + "ballBounceHeight": 2, + }, + "cachedPower": [ + 3005121406700, + 3250066042840, + 3403250377703, + ], + "fromEgg": "Summer Melon Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 207, + "goldenThumbnail": "rbxassetid://14968180491", + "maxChance": 0.1475, + "name": "Beach Ball Monkey", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://18883358224", + "thumbnail": "rbxassetid://14976335216", }, - "configName": "Classic Bunny", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "04aa060280bb7fa1", + "configName": "Beach Ball Monkey", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:25.676Z", + "hashShort": "b5fbc47a029b58da", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "", - "name": "Classic Dog", + "animations": { + "ballBounceHeight": 2, + }, + "cachedPower": [ + 2912685016127, + 3177600691572, + 3294552350800, + ], + "fromEgg": "Summer Floatie Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 206, + "goldenThumbnail": "rbxassetid://14968180352", + "maxChance": 0.85, + "name": "Beach Ball Dolphin", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18883358629", + "thumbnail": "rbxassetid://14968180415", }, - "configName": "Classic Dog", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7e4469cb412f1354", + "configName": "Beach Ball Dolphin", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:25.677Z", + "hashShort": "556827b00083f225", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "flyHeight": 0.09, + "flyHeightChange": 0.025, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, + }, "cachedPower": [ - 14174775983761, + 3854035289192, + 4151555610718, + 4364044910752, ], "fly": true, + "fromEgg": "Summer Beachball Egg", "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18883451050", - "name": "Love Corgi", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, - "thumbnail": "rbxassetid://18883451183", + "fromZoneNumber": 208, + "goldenThumbnail": "rbxassetid://14968349519", + "maxChance": 0.9989805806802676, + "name": "Surfboard Axolotl", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://14968349863", }, - "configName": "Love Corgi", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "20a14f2c27474e55", + "configName": "Surfboard Axolotl", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:25.677Z", + "hashShort": "47e048ae8a456ba5", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 12779798029803, + 2334861553216, + 2537638468051, + 2643861275906, ], - "fly": true, + "fromEgg": "Summer Beach Egg", "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18882334759", - "name": "Umbrella Bear", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, - "thumbnail": "rbxassetid://18882334573", + "fromZoneNumber": 205, + "goldenThumbnail": "rbxassetid://14968328893", + "maxChance": 0.29, + "name": "Scuba Shark", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://14968328992", }, - "configName": "Umbrella Bear", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "97964aa5f0ddd279", + "configName": "Scuba Shark", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:25.686Z", + "hashShort": "f84c3c6d7af991a6", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 14655705883210, + 2263129425230, + 2463422377573, + 2558182645396, ], + "fromEgg": "Summer Beach Egg", "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18882339024", - "name": "Electric Werewolf", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, - "thumbnail": "rbxassetid://18882338864", + "fromZoneNumber": 205, + "goldenThumbnail": "rbxassetid://14968328545", + "maxChance": 0.7, + "name": "Scuba Dog", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://14968328827", }, - "configName": "Electric Werewolf", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "35ebe8e7f39bc609", + "configName": "Scuba Dog", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:28.111Z", + "hashShort": "85e284039bf94c60", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "flyHeight": 0.09, + "flyHeightChange": 0.025, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, + }, "cachedPower": [ - 13702283450969, + 3379508011494, + 3654962765923, + 3826393696062, ], + "fly": true, + "fromEgg": "Summer Beachball Egg", "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18882338137", - "name": "Hell Monkey", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, - "thumbnail": "rbxassetid://18882337967", + "fromZoneNumber": 208, + "goldenThumbnail": "rbxassetid://14968350007", + "maxChance": 0.1498351813005694, + "name": "Surfboard Corgi", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://14968350214", }, - "configName": "Hell Monkey", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7d6d0c69356c680e", + "configName": "Surfboard Corgi", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:28.111Z", + "hashShort": "cd60549ee80ab1fc", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 13229790918176, + 4853191381696, + 5234454264081, + 5492925079119, ], + "fromEgg": "Summer Sun Egg", "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18882337782", - "name": "Ice Bunny", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, - "thumbnail": "rbxassetid://18882337633", + "fromZoneNumber": 209, + "goldenThumbnail": "rbxassetid://17673257117", + "maxChance": 0.00001009071293616432, + "name": "Pineapple Monkey", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + "thumbnail": "rbxassetid://17673256954", }, - "configName": "Ice Bunny", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1ad46fabdec43fb3", + "configName": "Pineapple Monkey", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.165Z", + "hashShort": "0530ba264483d637", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 15718814081992, + 3340982138194, + 3624996751232, + 3781444674027, ], + "fromEgg": "Summer Melon Egg", "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18882336750", - "name": "Plasma Bull", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, - "thumbnail": "rbxassetid://18882336565", + "fromZoneNumber": 207, + "goldenThumbnail": "rbxassetid://17673257243", + "maxChance": 0.8490660273698931, + "name": "Flower Cat", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://17671731182", }, - "configName": "Plasma Bull", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "730c905f784ec3a4", + "configName": "Flower Cat", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.163Z", + "hashShort": "c518ca43f5f18f55", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 16829382468219, + 5166081524323, + 5621573236348, + 5834284757926, ], "fly": true, + "fromEgg": "Summer Sun Egg", "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18882337072", - "name": "Lunar Bat", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, - "thumbnail": "rbxassetid://18882336919", + "fromZoneNumber": 209, + "goldenThumbnail": "rbxassetid://17671730557", + "maxChance": 2.52267823404108e-7, + "name": "Sun Agony", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + "thumbnail": "rbxassetid://17671730343", }, - "configName": "Lunar Bat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9495d9b5b399ad62", + "configName": "Sun Agony", + "dateCreated": null, + "dateModified": "2026-06-27T16:05:36.157Z", + "hashShort": "410889498860920f", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 11939811304840, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18882338585", - "name": "Enchanted Squirrel", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, - "thumbnail": "rbxassetid://18882338352", + "fly": true, + "goldenThumbnail": "rbxassetid://17746014523", + "huge": true, + "indexDesc": "Reward in the 2024 Wicked Clan Battle!", + "indexObtainable": true, + "name": "Huge Wicked Empyrean Dragon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://17746014334", }, - "configName": "Enchanted Squirrel", + "configName": "Huge Wicked Empyrean Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "00e736992d996c92", + "hashShort": "663489ba631fbeab", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 17427380830034, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18882339396", - "name": "Demon Cyclops", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, - "thumbnail": "rbxassetid://18882339207", + "goldenThumbnail": "rbxassetid://17749191048", + "huge": true, + "indexDesc": "Found in the Exclusive Blazing Egg!", + "indexObtainable": true, + "name": "Huge Blazing Shark", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://17749190912", }, - "configName": "Demon Cyclops", + "configName": "Huge Blazing Shark", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "03abf8872e41103f", + "hashShort": "8bcc25adcc896d89", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 15187259982601, - ], "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18886073193", - "name": "Angel Cow", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, - "thumbnail": "rbxassetid://18886073398", - }, - "configName": "Angel Cow", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "94f70969c3be33ff", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 12359804667321, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18882340169", - "name": "Cloud Cat", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, - "thumbnail": "rbxassetid://18882339868", - }, - "configName": "Cloud Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a1ce392d919d7b1f", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 16250368181383, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18882335124", - "indexDesc": "1 in 650,000 base chance from the RNG Event", - "name": "Sun Parrot", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, - "thumbnail": "rbxassetid://18882334922", - }, - "configName": "Sun Parrot", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "64feed614e315081", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://18978050572", + "goldenThumbnail": "rbxassetid://17749191776", "huge": true, - "indexDesc": "Found in the Fire Aura Pack", + "indexDesc": "Found in the Exclusive Blazing Egg!", "indexObtainable": true, - "name": "Huge Atomic Forged Shark", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, + "name": "Huge Blazing Bat", "rarity": { "Announce": true, "Color": null, @@ -108526,25 +112985,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18978050454", + "thumbnail": "rbxassetid://17749191682", }, - "configName": "Huge Atomic Forged Shark", + "configName": "Huge Blazing Bat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b2b0d328a773a323", + "hashShort": "ad88643278104ca5", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18978050771", + "goldenThumbnail": "rbxassetid://17749184301", "huge": true, - "indexDesc": "1 in 30,000,000 base chance from the RNG Event", + "indexDesc": "Found in the Hacker Pack!", "indexObtainable": true, - "name": "Huge Nuclear Wild Dog", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, + "name": "Huge Masked Fox", "rarity": { "Announce": true, "Color": null, @@ -108557,25 +113013,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18978050650", + "thumbnail": "rbxassetid://17749184083", }, - "configName": "Huge Nuclear Wild Dog", + "configName": "Huge Masked Fox", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2e8abc0a2cf17453", + "hashShort": "fea6d8d2b2f05415", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18978050941", + "goldenThumbnail": "rbxassetid://17769626927", "huge": true, - "indexDesc": "1 in 40,000,000 base chance from the RNG Event", + "indexDesc": "Earned from the Hacker Chest and Hacker Pack!", "indexObtainable": true, - "name": "Huge Shuriken Corgi", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, + "name": "Huge Hacker Axolotl", "rarity": { "Announce": true, "Color": null, @@ -108588,26 +113041,24 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18978050838", + "thumbnail": "rbxassetid://17769626736", }, - "configName": "Huge Shuriken Corgi", + "configName": "Huge Hacker Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "87aa4afb503de27f", + "hashShort": "39b77ade7fb149d1", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://18978051137", - "huge": true, - "indexDesc": "1 in 50,000,000 base chance from the RNG Event", + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "goldenThumbnail": "rbxassetid://17749522423", + "indexDesc": "Found in the Exclusive Blazing Egg!", "indexObtainable": true, - "name": "Huge Sorcerer Bear", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, + "name": "Titanic Blazing Dragon", "rarity": { "Announce": true, "Color": null, @@ -108620,366 +113071,329 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://18978051040", + "thumbnail": "rbxassetid://17749522423", + "titanic": true, }, - "configName": "Huge Sorcerer Bear", + "configName": "Titanic Blazing Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3888b7f374b38cfa", + "hashShort": "e6092a4316a6572a", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "ridingCameraOffset": null, - }, - "fly": true, - "flyingTitanic": true, - "flyingTitanicAlwaysFly": true, - "goldenThumbnail": "rbxassetid://18978058202", - "indexDesc": "1 in 3,000,000,000 base chance from the RNG Event", - "indexObtainable": true, - "name": "Titanic Arcane Pyro Cat", + "cachedPower": [ + 8747206079634, + 9430300295148, + 9892949811796, + ], + "fromEgg": "Hacker Secure Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://17749017535", + "maxChance": 0.000009999897501050614, + "name": "Hacked Skeleton", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://18978058000", - "titanic": true, - }, - "configName": "Titanic Arcane Pyro Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f316ef9eee498798", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 18025379191849, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18977984319", - "name": "Comet Pony", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, - "thumbnail": "rbxassetid://18977984420", - }, - "configName": "Comet Pony", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ce986a4d7548c176", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 17726380010942, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18977984543", - "name": "Demolition Husky", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, - "thumbnail": "rbxassetid://18977984672", + "thumbnail": "rbxassetid://17749017634", }, - "configName": "Demolition Husky", + "configName": "Hacked Skeleton", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f25126dc01cf1fcd", + "dateModified": "2026-06-27T16:05:36.156Z", + "hashShort": "57f020795edca258", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 14921482932905, + 4493115816844, + 4793596605834, + 5067696550945, ], + "fromEgg": "Hacker Wireframe Egg", "fromWorldNumber": 3, - "fromZoneNumber": 219, - "goldenThumbnail": "rbxassetid://18977984033", - "name": "Blurred Monkey", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, - "thumbnail": "rbxassetid://18977984197", - }, - "configName": "Blurred Monkey", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "dfa5ec8222292416", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "goldenThumbnail": "rbxassetid://18539512852", - "huge": true, - "indexDesc": "Reward in Free Rewards Gifts!", - "indexObtainable": true, - "name": "Huge Kawaii Tiger", + "fromZoneNumber": 211, + "goldenThumbnail": "rbxassetid://17749018537", + "maxChance": 0.99, + "name": "Hooded Monkey", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://18539512677", + "thumbnail": "rbxassetid://17749018649", }, - "configName": "Huge Kawaii Tiger", + "configName": "Hooded Monkey", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "67ffa25ea8dd7dee", + "dateModified": "2026-06-27T16:05:36.159Z", + "hashShort": "15038145d7bb1524", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 31367024047429, + 9310643764904, + 10127329451175, + 10510053327611, ], - "fromEgg": "Kawaii Egg", + "fromEgg": "Hacker Secure Egg", "fromWorldNumber": 3, - "fromZoneNumber": 224, - "goldenThumbnail": "rbxassetid://14976376349", - "huge": true, - "indexDesc": "Earned from the Kawaii World's final egg!", - "indexObtainable": true, - "maxChance": 9.99987055167571e-9, - "name": "Huge Chef Monkey", + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://17749018360", + "maxChance": 2.499974375262654e-7, + "name": "Masked Fox", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://14976376567", + "thumbnail": "rbxassetid://17749018458", }, - "configName": "Huge Chef Monkey", + "configName": "Masked Fox", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7bcbb865ab210498", + "dateModified": "2026-06-27T16:05:36.158Z", + "hashShort": "58b247060679b00f", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976561656", - "huge": true, - "indexDesc": "Found in the Strawberry Pack!", - "indexObtainable": true, - "name": "Huge Strawberry Cow", + "cachedPower": [ + 5147162618956, + 5582814990290, + 5811711355703, + ], + "fly": true, + "fromEgg": "Hacker Wireframe Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 211, + "goldenThumbnail": "rbxassetid://17749018100", + "maxChance": 0.01, + "name": "Hooded Dragon", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14976561960", + "thumbnail": "rbxassetid://17749018233", }, - "configName": "Huge Strawberry Cow", + "configName": "Hooded Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "58b137b566f78084", + "dateModified": "2026-06-27T16:05:36.158Z", + "hashShort": "0f008d263cbfcefa", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976388843", - "huge": true, - "indexDesc": "Earned from the Kawaii World's Tokyo Alley!", - "indexObtainable": true, - "name": "Huge Cupcake Unicorn", + "cachedPower": [ + 5054718211253, + 5392196757668, + 5700692347526, + ], + "fromEgg": "Hacker Crystal Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 212, + "goldenThumbnail": "rbxassetid://17749016239", + "maxChance": 0.9900990099009901, + "name": "Hacker Corgi", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14976388989", + "thumbnail": "rbxassetid://17749016312", }, - "configName": "Huge Cupcake Unicorn", + "configName": "Hacker Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0f6c25df0ffb662e", + "dateModified": "2026-06-27T16:05:36.164Z", + "hashShort": "deaa11fbca23dfd8", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "swerve": true, - "swerveAggression": 1, - "swerveMaxAngle": 60, - }, + "cachedPower": [ + 6392685425835, + 6813580680770, + 7208321032478, + ], "fly": true, - "goldenThumbnail": "rbxassetid://14976453191", - "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", - "indexObtainable": true, - "name": "Huge Helicopter Cat", + "fromEgg": "Hacker Secure Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://17749017298", + "maxChance": 0.9999897501050614, + "name": "Hacked Computer", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14976453343", + "thumbnail": "rbxassetid://17749017401", }, - "configName": "Huge Helicopter Cat", + "configName": "Hacked Computer", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f76872021c21e185", + "dateModified": "2026-06-27T16:05:36.163Z", + "hashShort": "1eff811973df1030", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.025, - "flyHeightChange": 0, - "swerve": true, - "swerveAggression": 1, - "swerveMaxAngle": 60, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://14976547989", - "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", - "indexObtainable": true, - "name": "Huge Skateboard Bulldog", + "cachedPower": [ + 6514377689617, + 7064169611619, + 7354021839620, + ], + "fromEgg": "Hacker Electric Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 213, + "goldenThumbnail": "rbxassetid://17749015922", + "maxChance": 0.01, + "name": "Hacker Cat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14976548072", + "thumbnail": "rbxassetid://17749016059", }, - "configName": "Huge Skateboard Bulldog", + "configName": "Hacker Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c12f24fbf128e618", + "dateModified": "2026-06-27T16:05:36.165Z", + "hashShort": "afe8dc8f51ac9723", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976428883", - "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", - "indexObtainable": true, - "name": "Huge Fancy Axolotl", + "cachedPower": [ + 5686599705693, + 6065755397410, + 6412884342369, + ], + "fromEgg": "Hacker Electric Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 213, + "goldenThumbnail": "rbxassetid://17749015754", + "maxChance": 0.99, + "name": "Hacker Axolotl", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14976429135", + "thumbnail": "rbxassetid://17749015842", }, - "configName": "Huge Fancy Axolotl", + "configName": "Hacker Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f16dd411f792df13", + "dateModified": "2026-06-27T16:05:36.164Z", + "hashShort": "68da6f3fc8c36118", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976448750", - "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", - "indexObtainable": true, - "name": "Huge Guest Noob", + "cachedPower": [ + 3993851426175, + 4261354161781, + 4504939352182, + ], + "fromEgg": "Hacker Circuit Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 210, + "goldenThumbnail": "rbxassetid://17749017735", + "maxChance": 0.9900990099009901, + "name": "Hooded Bobcat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://14976448855", + "thumbnail": "rbxassetid://17749017903", }, - "configName": "Huge Guest Noob", + "configName": "Hooded Bobcat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "cc1a31a9d1d72298", + "dateModified": "2026-06-27T16:05:36.168Z", + "hashShort": "73f07a77c4c14a73", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://96253919977978", - "huge": true, - "indexDesc": "Found in the Exclusive Luchador Egg!", - "indexObtainable": true, - "name": "Huge Luchador Eagle", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://17749016995", + "name": "Blazing Shark", "rarity": { "Announce": true, "Color": null, @@ -108992,22 +113406,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://92111973498255", + "thumbnail": "rbxassetid://17749017162", }, - "configName": "Huge Luchador Eagle", + "configName": "Blazing Shark", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9b33d3900f057f32", + "hashShort": "57777da6c0e50d79", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://125601035222540", - "huge": true, - "indexDesc": "Found in the Exclusive Luchador Egg!", - "indexObtainable": true, - "name": "Huge Luchador Coyote", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://17749016591", + "name": "Blazing Corgi", "rarity": { "Announce": true, "Color": null, @@ -109020,21 +113432,21 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://111458078240780", + "thumbnail": "rbxassetid://17749016673", }, - "configName": "Huge Luchador Coyote", + "configName": "Blazing Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c97674d9d2ff2c0d", + "hashShort": "c9c09a08b67e2442", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://105152814776651", - "indexDesc": "Found in the Exclusive Luchador Egg!", - "indexObtainable": true, - "name": "Titanic Luchador Cat", + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "rbxassetid://17749016378", + "name": "Blazing Bat", "rarity": { "Announce": true, "Color": null, @@ -109047,59 +113459,62 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://105152814776651", - "titanic": true, + "thumbnail": "rbxassetid://17749016455", }, - "configName": "Titanic Luchador Cat", + "configName": "Blazing Bat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d3614bbdcefd0c39", + "hashShort": "d105fa95278b2b20", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 22556210169372, + 4576538426002, + 4965742797464, + 5168049250787, ], - "fromEgg": "Strawberry Egg", + "fromEgg": "Hacker Circuit Egg", "fromWorldNumber": 3, - "fromZoneNumber": 223, - "goldenThumbnail": "rbxassetid://14968192367", - "maxChance": 0.9899871846158953, - "name": "Chef Monkey", + "fromZoneNumber": 210, + "goldenThumbnail": "rbxassetid://17774385358", + "maxChance": 0.009900990099009901, + "name": "Hooded Piggy", "rarity": { "Announce": false, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14968192507", + "thumbnail": "rbxassetid://17774385487", }, - "configName": "Chef Monkey", + "configName": "Hooded Piggy", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "961b4e3c246de1e2", + "dateModified": "2026-06-27T16:05:36.167Z", + "hashShort": "7c4fc2ed3428206b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 22971191050943, + 5792181445408, + 6283270520873, + 6539458713758, ], - "fromEgg": "Strawberry Egg", + "fromEgg": "Hacker Crystal Egg", "fromWorldNumber": 3, - "fromZoneNumber": 223, - "goldenThumbnail": "rbxassetid://14968201855", - "maxChance": 0.00999987055167571, - "name": "Cupcake Unicorn", + "fromZoneNumber": 212, + "goldenThumbnail": "rbxassetid://17774385014", + "maxChance": 0.009900990099009901, + "name": "Hacker Bear", "rarity": { "Announce": false, "Color": null, @@ -109112,471 +113527,438 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://14968201936", + "thumbnail": "rbxassetid://17774385235", }, - "configName": "Cupcake Unicorn", + "configName": "Hacker Bear", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "934be88e347bb3c2", + "dateModified": "2026-06-27T16:05:36.167Z", + "hashShort": "083a4d55523db6fe", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 21575736669575, - ], - "fromEgg": "Strawberry Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 223, - "goldenThumbnail": "rbxassetid://14968345630", - "maxChance": 0.004967709885742673, - "name": "Strawberry Cow", + "goldenThumbnail": "rbxassetid://14976363240", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Bison", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968345764", + "thumbnail": "rbxassetid://14976363344", }, - "configName": "Strawberry Cow", + "configName": "Huge Bison", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a4403b0bcb6c30dc", + "hashShort": "76b3069533c98aa4", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 20421444089187, - ], - "fromEgg": "Moonlight Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 222, - "goldenThumbnail": "rbxassetid://14968187331", - "maxChance": 0.09935419771485346, - "name": "Bread Shiba", + "goldenThumbnail": "rbxassetid://14976529681", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Punksky", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968187503", + "thumbnail": "rbxassetid://14976529792", }, - "configName": "Bread Shiba", + "configName": "Huge Punksky", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "31504dd6f06c69fc", + "hashShort": "68b415eacc3fe3b5", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 14857742260884, - ], - "fromEgg": "Sakura Blossom Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 220, - "goldenThumbnail": "rbxassetid://14968240348", - "maxChance": 0.8897676717745923, - "name": "Flower Panda", + "goldenThumbnail": "rbxassetid://14976495433", + "huge": true, + "indexDesc": "Found in the Huge Machine Butterfly Egg!", + "indexObtainable": true, + "name": "Huge Mushroom Raccoon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968240441", + "thumbnail": "rbxassetid://14976495649", }, - "configName": "Flower Panda", + "configName": "Huge Mushroom Raccoon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b5ab9a0498b64b37", + "hashShort": "5950f1c46d5be533", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 16719874717163, - ], - "fromEgg": "Dream Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 221, - "goldenThumbnail": "rbxassetid://14968324038", - "maxChance": 0.009886307464162136, - "name": "Sailor Narwhal", + "fly": true, + "goldenThumbnail": "rbxassetid://17835926283", + "huge": true, + "indexDesc": "Found in the Huge Machine Butterfly Egg!", + "indexObtainable": true, + "name": "Huge Vibrant Toucan", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968324130", + "thumbnail": "rbxassetid://17835926180", }, - "configName": "Sailor Narwhal", + "configName": "Huge Vibrant Toucan", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e904f0435d3f34b3", + "hashShort": "a41b9e4c00f798ea", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 18809859056808, - ], - "fromEgg": "Moonlight Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 222, - "goldenThumbnail": "rbxassetid://14968269377", - "maxChance": 0.009886307464162136, - "name": "Kawaii Mushroom Fox", + "goldenThumbnail": "rbxassetid://17835929193", + "huge": true, + "indexDesc": "Found in the Huge Machine Butterfly Egg!", + "indexObtainable": true, + "name": "Huge Pixie Fox", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968269548", + "thumbnail": "rbxassetid://17835929068", }, - "configName": "Kawaii Mushroom Fox", + "configName": "Huge Pixie Fox", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1fbbe05fa9cb393a", + "hashShort": "bd80e268a1950e42", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 17824557015082, - ], - "fromEgg": "Dream Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 221, - "goldenThumbnail": "rbxassetid://14968307048", - "maxChance": 0.8897676717745923, - "name": "Playful Seal", + "goldenThumbnail": "rbxassetid://121173280304545", + "huge": true, + "indexDesc": "Found in the Huge Machine Butterfly Egg!", + "indexObtainable": true, + "name": "Huge Mantis Shrimp", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968307304", + "thumbnail": "rbxassetid://83192948454394", }, - "configName": "Playful Seal", + "configName": "Huge Mantis Shrimp", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a89e5af12a8f8608", + "hashShort": "e4ca92dc29defa16", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 15839621279501, - ], - "fromEgg": "Sakura Blossom Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 220, - "goldenThumbnail": "rbxassetid://14968208088", - "maxChance": 0.09886307464162136, - "name": "Dino Bear", + "animations": { + "flyHeight": 1, + "flyHeightChange": 4, + "flySpeed": 0.4, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://14976572580", + "huge": true, + "indexDesc": "Found in the Huge Machine Butterfly Egg!", + "indexObtainable": true, + "name": "Huge Umbrella Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968208171", + "thumbnail": "rbxassetid://14976572705", }, - "configName": "Dino Bear", + "configName": "Huge Umbrella Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9c6564603ac6ce18", + "hashShort": "3f429be94ba21ae7", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 18152394745944, - ], - "fromEgg": "Dream Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 221, - "goldenThumbnail": "rbxassetid://14968329340", - "maxChance": 0.09886307464162136, - "name": "Seedling Squirrel", + "fly": true, + "goldenThumbnail": "rbxassetid://17857638178", + "huge": true, + "indexDesc": "Earned from the Virus Egg during a Hacker Virus!", + "indexObtainable": true, + "name": "Huge Virus Griffin", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968329472", + "thumbnail": "rbxassetid://17857638038", }, - "configName": "Seedling Squirrel", + "configName": "Huge Virus Griffin", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b316853840814a2d", + "hashShort": "ecd43d903f4efe32", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 30234650416589, - ], - "fly": true, - "fromEgg": "Kawaii Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 224, - "goldenThumbnail": "rbxassetid://14968278686", - "maxChance": 2.4999676379189274e-7, - "name": "Masked Owl", + "goldenThumbnail": "rbxassetid://17861579071", + "huge": true, + "indexDesc": "Found in the Virus Pack!", + "indexObtainable": true, + "name": "Huge Matrix Monkey", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968278850", + "thumbnail": "rbxassetid://17861579273", }, - "configName": "Masked Owl", + "configName": "Huge Matrix Monkey", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "34e4adb0dcff8ca3", + "hashShort": "c7f9ca913bb7ed74", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 20052626641967, - ], "fly": true, - "fromEgg": "Moonlight Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 222, - "goldenThumbnail": "rbxassetid://14968188728", - "maxChance": 0.8941877794336811, - "name": "Butterfly Llama", + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "goldenThumbnail": "rbxassetid://17821211847", + "indexDesc": "Found in the Huge Machine Butterfly Egg!", + "indexObtainable": true, + "name": "Titanic Butterfly", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968188805", + "thumbnail": "rbxassetid://17821211666", + "titanic": true, }, - "configName": "Butterfly Llama", + "configName": "Titanic Butterfly", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "49f134ed662a7b8f", + "hashShort": "2484f37045c7fb0c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 28404987762356, + 10239838170985, + 10910811649465, + 11543768682668, ], "fly": true, - "fromEgg": "Kawaii Egg", "fromWorldNumber": 3, - "fromZoneNumber": 224, - "goldenThumbnail": "rbxassetid://14968269077", - "maxChance": 0.00000999987055167571, - "name": "Kawaii Dragon", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "thumbnail": "rbxassetid://14968269212", + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://17825046728", + "name": "Virus Griffin", + "thumbnail": "rbxassetid://17825046852", }, - "configName": "Kawaii Dragon", + "configName": "Virus Griffin", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d2a06b1c321dbae6", + "dateModified": "2026-06-27T16:05:36.169Z", + "hashShort": "6222e622e0c39a22", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 29148208535412, + 9557182292919, + 10389563460184, + 10799912844023, ], - "fromEgg": "Kawaii Egg", "fromWorldNumber": 3, - "fromZoneNumber": 224, - "goldenThumbnail": "rbxassetid://14968291172", - "maxChance": 0.0000024999676379189274, - "name": "Ninja Axolotl", + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://17825046372", + "name": "Matrix Monkey", + "thumbnail": "rbxassetid://17825046551", + }, + "configName": "Matrix Monkey", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:38.120Z", + "hashShort": "41b4c54c31a7bccd", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://17825124339", + "name": "Rainbow Swirl", + "preventGolden": true, "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968291374", + "secret": true, + "thumbnail": "rbxassetid://17825124339", }, - "configName": "Ninja Axolotl", + "configName": "Rainbow Swirl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "837f2560ca227e4d", + "hashShort": "d15a0d337c722eec", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 30361664280513, - ], - "fromEgg": "Kawaii Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 224, - "goldenThumbnail": "rbxassetid://14968269707", - "maxChance": 1.8499760520600063e-7, - "name": "Kawaii Tiger", + "goldenThumbnail": "rbxassetid://18127301164", + "huge": true, + "indexDesc": "Reward in the 2024 Safety Clan Battle!", + "indexObtainable": true, + "name": "Huge Safety Cat", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968269808", + "thumbnail": "rbxassetid://18127300990", }, - "configName": "Kawaii Tiger", + "configName": "Huge Safety Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7d2fc4ca1b8fe699", + "hashShort": "94b3914524046cb1", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 12970363186288, - ], - "fromEgg": "Sakura Blossom Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 220, - "goldenThumbnail": "rbxassetid://122425832278417", - "maxChance": 0.989010989010989, - "name": "Kawaii Cat", + "goldenThumbnail": "rbxassetid://18127488955", + "huge": true, + "indexDesc": "Found in the Exclusive Flex Egg!", + "indexObtainable": true, + "name": "Huge Flex Tiger", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://113369415163684", + "thumbnail": "rbxassetid://18127488955", }, - "configName": "Kawaii Cat", + "configName": "Huge Flex Tiger", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4953ffea63ef3ba6", + "hashShort": "2b5ea0e3a63e0cfb", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://119069401534754", - "name": "Luchador Axolotl", + "goldenThumbnail": "rbxassetid://18127488650", + "huge": true, + "indexDesc": "Found in the Exclusive Flex Egg!", + "indexObtainable": true, + "name": "Huge Flex Fluffy Cat", "rarity": { "Announce": true, "Color": null, @@ -109589,20 +113971,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://71587431986450", + "thumbnail": "rbxassetid://18127488650", }, - "configName": "Luchador Axolotl", + "configName": "Huge Flex Fluffy Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4ef66312370960e4", + "hashShort": "7b4d338482e276eb", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://73367467413938", - "name": "Luchador Coyote", + "fly": true, + "goldenThumbnail": "rbxassetid://18150534263", + "huge": true, + "indexDesc": "Earned from the Good vs. Evil World and Evil Gifts!", + "indexObtainable": true, + "name": "Huge Evil Imp", "rarity": { "Announce": true, "Color": null, @@ -109615,21 +114000,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://96853996057255", + "thumbnail": "rbxassetid://18150534002", }, - "configName": "Luchador Coyote", + "configName": "Huge Evil Imp", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "32852c5958af8a91", + "hashShort": "de9bfc739cb8560d", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 3, "fly": true, - "goldenThumbnail": "rbxassetid://129909174390085", - "name": "Luchador Eagle", + "goldenThumbnail": "rbxassetid://18150841572", + "huge": true, + "indexDesc": "Earned from the Good vs. Evil World and Good Gifts!", + "indexObtainable": true, + "name": "Huge Avenging Griffin", "rarity": { "Announce": true, "Color": null, @@ -109642,22 +114029,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://137750626211239", + "thumbnail": "rbxassetid://18150841344", }, - "configName": "Luchador Eagle", + "configName": "Huge Avenging Griffin", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c3f1c9d500cbe5c2", + "hashShort": "a147ed6099741c1a", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://101004998026170", + "fly": true, + "goldenThumbnail": "rbxassetid://18152338268", "huge": true, - "indexDesc": "Reward in the 2024 Rave Crab Clan Battle!", + "indexDesc": "Found in the Good vs. Evil Pack!", "indexObtainable": true, - "name": "Huge Rave Crab", + "name": "Huge Dark Lord", "rarity": { "Announce": true, "Color": null, @@ -109670,111 +114058,26 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://109133967059639", + "thumbnail": "rbxassetid://18152338133", }, - "configName": "Huge Rave Crab", + "configName": "Huge Dark Lord", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2467085e3f633331", + "hashShort": "ea15e487db344161", }, { "category": "Huge", "collection": "Pets", "configData": { "animations": { - "colorVariants": [ - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Blue!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 1, - "IsUnique": true, - "Magnitude": 1, - "Name": "Blue", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Purple!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 2, - "IsUnique": true, - "Magnitude": 1, - "Name": "Purple", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Red!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 3, - "IsUnique": true, - "Magnitude": 1, - "Name": "Red", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Orange!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 4, - "IsUnique": true, - "Magnitude": 1, - "Name": "Orange", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Yellow!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 5, - "IsUnique": true, - "Magnitude": 1, - "Name": "Yellow", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Green!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 6, - "IsUnique": true, - "Magnitude": 1, - "Name": "Green", - "Title": "Chroma", - }, - ], + "spinZ": true, }, - "goldenThumbnail": "rbxassetid://122024090717272", + "fly": true, + "goldenThumbnail": "rbxassetid://18152335445", "huge": true, - "indexDesc": "Found in the Art Pack!", + "indexDesc": "Found in the Good vs. Evil Pack!", "indexObtainable": true, - "name": "Huge Chroma Unicorn", - "preventGolden": true, + "name": "Huge Divinus", "rarity": { "Announce": true, "Color": null, @@ -109787,112 +114090,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "staticColorVariants": true, - "thumbnail": "rbxassetid://137010472014317", + "thumbnail": "rbxassetid://18152335113", }, - "configName": "Huge Chroma Unicorn", + "configName": "Huge Divinus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7f61615b80c2b02b", + "hashShort": "5f9b184c6da5b2ed", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "colorVariants": [ - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Blue!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 1, - "IsUnique": true, - "Magnitude": 1, - "Name": "Blue", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Purple!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 2, - "IsUnique": true, - "Magnitude": 1, - "Name": "Purple", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Red!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 3, - "IsUnique": true, - "Magnitude": 1, - "Name": "Red", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Orange!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 4, - "IsUnique": true, - "Magnitude": 1, - "Name": "Orange", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Yellow!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 5, - "IsUnique": true, - "Magnitude": 1, - "Name": "Yellow", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Green!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 6, - "IsUnique": true, - "Magnitude": 1, - "Name": "Green", - "Title": "Chroma", - }, - ], - }, - "goldenThumbnail": "rbxassetid://70702325714787", + "fly": true, + "goldenThumbnail": "rbxassetid://18155109776", "huge": true, - "indexDesc": "Earned from the Color War World's final egg!", + "indexDesc": "Earned from Good vs. Evil Gifts!", "indexObtainable": true, - "name": "Huge Chroma Tiger", - "preventGolden": true, + "name": "Huge Good vs Evil Cat", "rarity": { "Announce": true, "Color": null, @@ -109905,112 +114119,26 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "staticColorVariants": true, - "thumbnail": "rbxassetid://95114398104330", + "thumbnail": "rbxassetid://18155109260", }, - "configName": "Huge Chroma Tiger", + "configName": "Huge Good vs Evil Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d58050fd5b92b9eb", + "hashShort": "a31a6388df78eec6", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { "animations": { - "colorVariants": [ - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Blue!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 1, - "IsUnique": true, - "Magnitude": 1, - "Name": "Blue", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Purple!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 2, - "IsUnique": true, - "Magnitude": 1, - "Name": "Purple", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Red!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 3, - "IsUnique": true, - "Magnitude": 1, - "Name": "Red", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Orange!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 4, - "IsUnique": true, - "Magnitude": 1, - "Name": "Orange", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Yellow!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 5, - "IsUnique": true, - "Magnitude": 1, - "Name": "Yellow", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Green!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 6, - "IsUnique": true, - "Magnitude": 1, - "Name": "Green", - "Title": "Chroma", - }, - ], + "flyHeight": 0.025, + "flyHeightChange": 0, }, - "goldenThumbnail": "rbxassetid://121786978225001", - "huge": true, - "indexDesc": "Earned from Color War Event's leaderboard contest!", + "fly": true, + "goldenThumbnail": "rbxassetid://18151232769", + "indexDesc": "Found in the Exclusive Flex Egg!", "indexObtainable": true, - "name": "Huge Chroma Swan", - "preventGolden": true, + "name": "Titanic Flex Cat", "rarity": { "Announce": true, "Color": null, @@ -110023,455 +114151,317 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "staticColorVariants": true, - "thumbnail": "rbxassetid://109938539345401", + "thumbnail": "rbxassetid://18151232769", + "titanic": true, }, - "configName": "Huge Chroma Swan", + "configName": "Titanic Flex Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "dd4d42fc4bac5cbf", + "hashShort": "65655272ca158903", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { "animations": { - "colorVariants": [ - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Blue!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 1, - "IsUnique": true, - "Magnitude": 1, - "Name": "Blue", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Purple!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 2, - "IsUnique": true, - "Magnitude": 1, - "Name": "Purple", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Red!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 3, - "IsUnique": true, - "Magnitude": 1, - "Name": "Red", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Orange!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 4, - "IsUnique": true, - "Magnitude": 1, - "Name": "Orange", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Yellow!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 5, - "IsUnique": true, - "Magnitude": 1, - "Name": "Yellow", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Green!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 6, - "IsUnique": true, - "Magnitude": 1, - "Name": "Green", - "Title": "Chroma", - }, - ], + "spinZ": true, }, + "cachedPower": [ + 9784734252274, + 10565544100676, + 11063883804761, + ], "fly": true, - "goldenThumbnail": "rbxassetid://98087556725994", - "huge": true, - "indexDesc": "Earned from Color Gifts!", - "indexObtainable": true, - "name": "Huge Chroma Butterfly", - "preventGolden": true, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "staticColorVariants": true, - "thumbnail": "rbxassetid://85411857304687", + "fromWorldNumber": 3, + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18151025379", + "name": "Pentangelus", + "thumbnail": "rbxassetid://18151025598", }, - "configName": "Huge Chroma Butterfly", + "configName": "Pentangelus", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "57e68640eb916a9c", + "dateModified": "2026-06-27T16:05:38.121Z", + "hashShort": "fc5ff0abb9d25705", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "flyingTitanic": true, - "flyingTitanicAlwaysFly": true, - "goldenThumbnail": "rbxassetid://17269789494", - "indexDesc": "Comes with the Titanic Dragonfruit Dragon plush!", - "indexObtainable": true, - "name": "Titanic Dragonfruit Dragon", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, + "animations": { + "spinZ": true, }, - "thumbnail": "rbxassetid://17269789414", - "titanic": true, + "cachedPower": [ + 10012286211629, + 10739281284047, + 11324489579818, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18151024266", + "name": "Divinus", + "thumbnail": "rbxassetid://18151024486", }, - "configName": "Titanic Dragonfruit Dragon", + "configName": "Divinus", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a70398ebb5fb7dbd", + "dateModified": "2026-06-27T16:05:38.135Z", + "hashShort": "5a1fb1518e234c08", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://17269911436", - "indexDesc": "Comes with the Titanic Strawberry Corgi plush!", - "indexObtainable": true, - "name": "Titanic Strawberry Corgi", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://17269911360", - "titanic": true, + "cachedPower": [ + 8495273149261, + 9235643472942, + 9600964578486, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18155096157", + "name": "Good vs Evil Cat", + "thumbnail": "rbxassetid://18155095918", }, - "configName": "Titanic Strawberry Corgi", + "configName": "Good vs Evil Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "54aa582b9311d757", + "dateModified": "2026-06-27T16:05:38.120Z", + "hashShort": "0cbe980e45d8e8a4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 22777330459842, + 9557182292919, + 10389563460184, + 10799912844023, ], + "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 224, - "goldenThumbnail": "rbxassetid://101068731533149", - "name": "Painter Cat", - "thumbnail": "rbxassetid://129358026108922", + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18151022519", + "name": "Avenging Griffin", + "thumbnail": "rbxassetid://18151022725", }, - "configName": "Painter Cat", + "configName": "Avenging Griffin", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "bc0e89c3f44c0b57", + "dateModified": "2026-06-27T16:05:38.129Z", + "hashShort": "9b3d9d3dc6d8c8c4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 23281891577624, + 9102078374209, + 9699155486563, + 10261649538542, ], + "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 224, - "goldenThumbnail": "rbxassetid://74777762962733", - "name": "Painter Dog", - "thumbnail": "rbxassetid://110968298640822", + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18151024934", + "name": "Heavenly Dove", + "thumbnail": "rbxassetid://18151025112", }, - "configName": "Painter Dog", + "configName": "Heavenly Dove", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4a8d374c5a577947", + "dateModified": "2026-06-27T16:05:38.131Z", + "hashShort": "5497d4d96b7bed5b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 21263647106499, + 9329630333564, + 10166056229051, + 10532520546915, ], + "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 224, - "goldenThumbnail": "rbxassetid://120945609849550", - "name": "Flowers Hedgehog", - "thumbnail": "rbxassetid://104463616568165", + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18151021545", + "name": "Angel Pegasus", + "thumbnail": "rbxassetid://18151021778", }, - "configName": "Flowers Hedgehog", + "configName": "Angel Pegasus", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5aa41a5999d5a685", + "dateModified": "2026-06-27T16:05:38.138Z", + "hashShort": "ae278ef5dd78816a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 21768208224280, + 9557182292919, + 10389563460184, + 10799912844023, ], "fromWorldNumber": 3, - "fromZoneNumber": 224, - "goldenThumbnail": "rbxassetid://135417185980960", - "name": "Flowers Fox", - "thumbnail": "rbxassetid://120740412492198", + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18127447670", + "name": "Evil Deer", + "thumbnail": "rbxassetid://18127447880", }, - "configName": "Flowers Fox", + "configName": "Evil Deer", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1e85a80a4295946c", + "dateModified": "2026-06-27T16:05:38.138Z", + "hashShort": "b5fd4a0fdec6826c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "colorVariants": [ - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Blue!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 1, - "IsUnique": true, - "Magnitude": 1, - "Name": "Blue", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Purple!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 2, - "IsUnique": true, - "Magnitude": 1, - "Name": "Purple", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Red!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 3, - "IsUnique": true, - "Magnitude": 1, - "Name": "Red", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Orange!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 4, - "IsUnique": true, - "Magnitude": 1, - "Name": "Orange", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Yellow!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 5, - "IsUnique": true, - "Magnitude": 1, - "Name": "Yellow", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Green!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 6, - "IsUnique": true, - "Magnitude": 1, - "Name": "Green", - "Title": "Chroma", - }, - ], - }, "cachedPower": [ - 25543406587679, + 9329630333564, + 10166056229051, + 10532520546915, ], + "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 224, - "goldenThumbnail": "rbxassetid://111890672303206", - "name": "Chroma Tiger", - "staticColorVariants": true, - "thumbnail": "rbxassetid://134096226963252", + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18127446978", + "name": "Evil Imp", + "thumbnail": "rbxassetid://18127447146", }, - "configName": "Chroma Tiger", + "configName": "Evil Imp", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8b2be16fc2b44250", + "dateModified": "2026-06-27T16:05:38.130Z", + "hashShort": "84a6672a64b9fd43", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 23840512815167, + 8697541557577, + 9392178670340, + 9835767374584, ], + "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 224, - "goldenThumbnail": "rbxassetid://74134979137182", - "name": "Paintbot Spider", - "thumbnail": "rbxassetid://76704856949124", + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18127448059", + "name": "Demon Cat", + "thumbnail": "rbxassetid://18127448207", }, - "configName": "Paintbot Spider", + "configName": "Demon Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1d9945fafeca6cf5", + "dateModified": "2026-06-27T16:05:38.150Z", + "hashShort": "5c693327b8412b04", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 22272769342061, + 8697541557577, + 9392178670340, + 9835767374584, ], "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 224, - "goldenThumbnail": "rbxassetid://128997269902299", - "name": "Gemstone Gargoyle Dragon", - "thumbnail": "rbxassetid://126091008195974", + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18151021189", + "name": "Angel Lamb", + "thumbnail": "rbxassetid://18151021378", }, - "configName": "Gemstone Gargoyle Dragon", + "configName": "Angel Lamb", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a69b03cb08377925", + "dateModified": "2026-06-27T16:05:38.128Z", + "hashShort": "ae12ca9496cbdd98", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 24408144072671, + 8899809965893, + 9546671267691, + 10067506270610, ], - "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 224, - "goldenThumbnail": "rbxassetid://130831454356542", - "name": "Abstract Dragon", - "thumbnail": "rbxassetid://105288293277261", + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18127447350", + "name": "Evil Ram", + "thumbnail": "rbxassetid://18127447536", }, - "configName": "Abstract Dragon", + "configName": "Evil Ram", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4c6aa3818e106ea6", + "dateModified": "2026-06-27T16:05:38.125Z", + "hashShort": "d6464af6dc03d2d0", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 24975775330175, + 10012286211629, + 10739281284047, + 11324489579818, ], "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 224, - "goldenThumbnail": "rbxassetid://119659497222603", - "name": "Abstract Agony", - "thumbnail": "rbxassetid://101176910442920", + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18151023580", + "name": "Dark Lord", + "thumbnail": "rbxassetid://18151023962", }, - "configName": "Abstract Agony", + "configName": "Dark Lord", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a525f2cc87cf31d3", + "dateModified": "2026-06-27T16:05:38.136Z", + "hashShort": "40301bb45819719d", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://139847485438413", - "huge": true, - "indexDesc": "Found in the Exclusive Sad Egg!", - "indexObtainable": true, - "name": "Huge Sad Hamster", + "cachedPower": [ + 9102078374209, + 9699155486563, + 10261649538542, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18151023001", + "name": "Chimera", + "thumbnail": "rbxassetid://18151023293", + }, + "configName": "Chimera", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:38.151Z", + "hashShort": "42751d83631d04a8", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 9784734252274, + 10565544100676, + 11063883804761, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18151025807", + "name": "Demon Serpents", + "thumbnail": "rbxassetid://18151025964", + }, + "configName": "Demon Serpents", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:38.134Z", + "hashShort": "bce4feb5bdfcad4c", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://18127448624", + "name": "Flex Bear", "rarity": { "Announce": true, "Color": null, @@ -110484,22 +114474,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://139847485438413", + "thumbnail": "rbxassetid://18127448624", }, - "configName": "Huge Sad Hamster", + "configName": "Flex Bear", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "161d524a55dd93f6", + "hashShort": "18a9292b5ed41ab7", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://126938121450876", - "huge": true, - "indexDesc": "Found in the Exclusive Sad Egg!", - "indexObtainable": true, - "name": "Huge Sad Doge", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://18127449266", + "name": "Flex Tiger", "rarity": { "Announce": true, "Color": null, @@ -110512,112 +114500,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://126938121450876", + "thumbnail": "rbxassetid://18127449266", }, - "configName": "Huge Sad Doge", + "configName": "Flex Tiger", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5fef3f62be09101f", + "hashShort": "f791a67de6801144", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "colorVariants": [ - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Blue!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 1, - "IsUnique": true, - "Magnitude": 1, - "Name": "Blue", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Purple!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 2, - "IsUnique": true, - "Magnitude": 1, - "Name": "Purple", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Red!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 3, - "IsUnique": true, - "Magnitude": 1, - "Name": "Red", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Orange!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 4, - "IsUnique": true, - "Magnitude": 1, - "Name": "Orange", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Yellow!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 5, - "IsUnique": true, - "Magnitude": 1, - "Name": "Yellow", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Green!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 6, - "IsUnique": true, - "Magnitude": 1, - "Name": "Green", - "Title": "Chroma", - }, - ], - }, - "fly": true, - "goldenThumbnail": "rbxassetid://133867627059600", - "huge": true, - "indexDesc": "Earned from the Color War World's final egg!", - "indexObtainable": true, - "name": "Huge Chroma Phoenix", - "preventGolden": true, + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://18127448974", + "name": "Flex Fluffy Cat", "rarity": { "Announce": true, "Color": null, @@ -110630,112 +114526,44 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "staticColorVariants": true, - "thumbnail": "rbxassetid://79819458470257", + "thumbnail": "rbxassetid://18127448974", }, - "configName": "Huge Chroma Phoenix", + "configName": "Flex Fluffy Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ab9f7596a64f0a40", + "hashShort": "54da324a811695cc", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 8899809965893, + 9546671267691, + 10067506270610, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18151022013", + "name": "Angel Seal", + "thumbnail": "rbxassetid://18151022248", + }, + "configName": "Angel Seal", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:38.128Z", + "hashShort": "f3903482274f4718", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "colorVariants": [ - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Blue!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 1, - "IsUnique": true, - "Magnitude": 1, - "Name": "Blue", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Purple!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 2, - "IsUnique": true, - "Magnitude": 1, - "Name": "Purple", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Red!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 3, - "IsUnique": true, - "Magnitude": 1, - "Name": "Red", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Orange!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 4, - "IsUnique": true, - "Magnitude": 1, - "Name": "Orange", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Yellow!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 5, - "IsUnique": true, - "Magnitude": 1, - "Name": "Yellow", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Green!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 6, - "IsUnique": true, - "Magnitude": 1, - "Name": "Green", - "Title": "Chroma", - }, - ], - }, - "goldenThumbnail": "rbxassetid://135639467156066", + "fly": true, + "goldenThumbnail": "rbxassetid://18256895227", "huge": true, - "indexDesc": "Earned from Graffiti Gifts!", + "indexDesc": "Earned from Good vs. Evil Diamond Egg!", "indexObtainable": true, - "name": "Huge Chroma Snail", - "preventGolden": true, + "name": "Huge Good vs Evil Dragon", "rarity": { "Announce": true, "Color": null, @@ -110748,113 +114576,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "staticColorVariants": true, - "thumbnail": "rbxassetid://99780016268743", + "thumbnail": "rbxassetid://18256895106", }, - "configName": "Huge Chroma Snail", + "configName": "Huge Good vs Evil Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "bafd9e4616544416", + "hashShort": "cec9046e4b63074f", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "colorVariants": [ - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Blue!", - "Disabled": { - "Decal": true, - }, - "IconColor": null, - "Id": 1, - "IsUnique": true, - "Magnitude": 1, - "Name": "Blue", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Purple!", - "Disabled": { - "Decal": true, - }, - "IconColor": null, - "Id": 2, - "IsUnique": true, - "Magnitude": 1, - "Name": "Purple", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Red!", - "Disabled": { - "Decal": true, - }, - "IconColor": null, - "Id": 3, - "IsUnique": true, - "Magnitude": 1, - "Name": "Red", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Orange!", - "Disabled": { - "Decal": true, - }, - "IconColor": null, - "Id": 4, - "IsUnique": true, - "Magnitude": 1, - "Name": "Orange", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Yellow!", - "Disabled": { - "Decal": true, - }, - "IconColor": null, - "Id": 5, - "IsUnique": true, - "Magnitude": 1, - "Name": "Yellow", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Green!", - "Disabled": { - "Decal": true, - }, - "IconColor": null, - "Id": 6, - "IsUnique": true, - "Magnitude": 1, - "Name": "Green", - "Title": "Chroma", - }, - ], - }, - "fly": true, - "goldenThumbnail": "rbxassetid://82796737764799", + "goldenThumbnail": "rbxassetid://18256894972", "huge": true, - "indexDesc": "Found in the Graffiti Pack!", + "indexDesc": "Found in the Good vs. Evil Pack!", "indexObtainable": true, - "name": "Huge Chroma Ink Blob", - "preventGolden": true, + "name": "Huge Devil Dominus", "rarity": { "Announce": true, "Color": null, @@ -110867,23 +114604,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "staticColorVariants": true, - "thumbnail": "rbxassetid://109166274058146", + "thumbnail": "rbxassetid://18256894835", }, - "configName": "Huge Chroma Ink Blob", + "configName": "Huge Devil Dominus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "23e0817662e6fd96", + "hashShort": "afa8fbcb97d8e008", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://120984194688677", + "fly": true, + "goldenThumbnail": "rbxassetid://18256894698", "huge": true, - "indexDesc": "Found in the Color Bomb minigame!", + "indexDesc": "Earned from the Good vs. Evil World and Evil Gifts!", "indexObtainable": true, - "name": "Huge Graffiti Raccoon", + "name": "Huge Devil Agony", "rarity": { "Announce": true, "Color": null, @@ -110896,21 +114633,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://120010094799102", + "thumbnail": "rbxassetid://18256894534", }, - "configName": "Huge Graffiti Raccoon", + "configName": "Huge Devil Agony", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0e5ca0eb402fdc6d", + "hashShort": "2f675b0e9900f5a1", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14977564004", - "indexDesc": "Found in the Exclusive Sad Egg!", + "goldenThumbnail": "rbxassetid://18256895564", + "huge": true, + "indexDesc": "Earned from the Good vs. Evil World and Good Gifts!", "indexObtainable": true, - "name": "Titanic Sad Cat", + "name": "Huge Sage Axolotl", "rarity": { "Announce": true, "Color": null, @@ -110923,129 +114661,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976666952", - "titanic": true, + "thumbnail": "rbxassetid://18256895424", }, - "configName": "Titanic Sad Cat", + "configName": "Huge Sage Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "da02b23bfd0ddb42", + "hashShort": "d418ae9da3bd9e82", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "colorVariants": [ - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Blue!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 1, - "IsUnique": true, - "Magnitude": 1, - "Name": "Blue", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Purple!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 2, - "IsUnique": true, - "Magnitude": 1, - "Name": "Purple", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Red!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 3, - "IsUnique": true, - "Magnitude": 1, - "Name": "Red", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Orange!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 4, - "IsUnique": true, - "Magnitude": 1, - "Name": "Orange", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Yellow!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 5, - "IsUnique": true, - "Magnitude": 1, - "Name": "Yellow", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Green!", - "Disabled": { - "SpecialMesh": true, - }, - "IconColor": null, - "Id": 6, - "IsUnique": true, - "Magnitude": 1, - "Name": "Green", - "Title": "Chroma", - }, - ], - }, - "cachedPower": [ - 31404706135031, - ], "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 224, - "goldenThumbnail": "rbxassetid://86607954856885", - "name": "Chroma Phoenix", - "staticColorVariants": true, - "thumbnail": "rbxassetid://124413442059322", - }, - "configName": "Chroma Phoenix", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "078fa809010126f8", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://93985652343210", - "name": "Sad Bunny", + "goldenThumbnail": "rbxassetid://18256895855", + "huge": true, + "indexDesc": "Found in the Good vs. Evil Pack!", + "indexObtainable": true, + "name": "Huge Warrior Wolf", "rarity": { "Announce": true, "Color": null, @@ -111058,276 +114690,287 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://93985652343210", + "thumbnail": "rbxassetid://18256895705", }, - "configName": "Sad Bunny", + "configName": "Huge Warrior Wolf", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4f6374e1b25ac80b", + "hashShort": "4b34272adc8b14e4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://126520129709696", - "name": "Sad Doge", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://126520129709696", + "cachedPower": [ + 11519817942358, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18256799509", + "name": "Warrior Wolf", + "thumbnail": "rbxassetid://18256799617", }, - "configName": "Sad Doge", + "configName": "Warrior Wolf", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e8bde5311589c825", + "hashShort": "4f64249638cda55e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://113132775217400", - "name": "Sad Hamster", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://113132775217400", + "cachedPower": [ + 10751830079534, + 11687687961285, + 12148651346348, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18256795703", + "name": "Angel Moth", + "thumbnail": "rbxassetid://18256795926", }, - "configName": "Sad Hamster", + "configName": "Angel Moth", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c5f3ea40555ef9ac", + "dateModified": "2026-06-27T16:05:38.128Z", + "hashShort": "0d18fc0ae36f2f19", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 29967889514474, + 11263821988083, + 12080918697117, + 12738497450096, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18256799049", + "name": "Sage Axolotl", + "thumbnail": "rbxassetid://18256799375", + }, + "configName": "Sage Axolotl", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:38.123Z", + "hashShort": "b1ea02e3dd07e63a", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 10495834125259, + 11435772561084, + 11848120147434, ], "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 224, - "goldenThumbnail": "rbxassetid://83306433138588", - "name": "Painted Balloon", - "thumbnail": "rbxassetid://119551855189425", + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18256795307", + "name": "Angel Fawn", + "thumbnail": "rbxassetid://18256795515", }, - "configName": "Painted Balloon", + "configName": "Angel Fawn", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3dbe22bdac880b29", + "dateModified": "2026-06-27T16:05:38.133Z", + "hashShort": "6c807fe141764bcd", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 30686297824752, + 10239838170985, + 10910811649465, + 11543768682668, ], + "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 224, - "goldenThumbnail": "rbxassetid://90979233867389", - "name": "Painted King Crab", - "thumbnail": "rbxassetid://119677435981116", + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18256796507", + "name": "Archangel Cat", + "thumbnail": "rbxassetid://18256796655", }, - "configName": "Painted King Crab", + "configName": "Archangel Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "346220909cdbd331", + "dateModified": "2026-06-27T16:05:38.124Z", + "hashShort": "9c43ecde0ad74228", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 29283691123732, + 11007826033809, + 11885536213555, + 12445423724752, ], + "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 224, - "goldenThumbnail": "rbxassetid://138320347235795", - "name": "Graffiti Dino", - "thumbnail": "rbxassetid://112441484012438", + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18256796174", + "name": "Angel Pony", + "thumbnail": "rbxassetid://18256796372", }, - "configName": "Graffiti Dino", + "configName": "Angel Pony", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6e2d76f439884ca1", + "dateModified": "2026-06-27T16:05:38.131Z", + "hashShort": "a3f0a17dcb9fc3d8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 28645105959040, + 11007826033809, + 11885536213555, + 12445423724752, ], "fromWorldNumber": 3, - "fromZoneNumber": 224, - "goldenThumbnail": "rbxassetid://124803883662934", - "name": "Graffiti Raccoon", - "thumbnail": "rbxassetid://127143278779281", + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18256798411", + "name": "Hell Scorpion", + "thumbnail": "rbxassetid://18256798599", }, - "configName": "Graffiti Raccoon", + "configName": "Hell Scorpion", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "01f360efc9dc087a", + "dateModified": "2026-06-27T16:05:38.139Z", + "hashShort": "ec9acbce817ce4c4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 28006520794348, + 11263821988083, + 12080918697117, + 12738497450096, ], + "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 224, - "goldenThumbnail": "rbxassetid://112243502721414", - "name": "Color Ruins Monkey", - "thumbnail": "rbxassetid://106676692145461", + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18256797088", + "name": "Devil Agony", + "thumbnail": "rbxassetid://18256797251", }, - "configName": "Color Ruins Monkey", + "configName": "Devil Agony", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ebf57127049551e2", + "dateModified": "2026-06-27T16:05:38.133Z", + "hashShort": "7d5fae67b2aefa14", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 27367935629656, + 10495834125259, + 11435772561084, + 11848120147434, ], + "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 224, - "goldenThumbnail": "rbxassetid://89035068634561", - "name": "Color Ruins Parrot", - "thumbnail": "rbxassetid://108510719407005", + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18256797746", + "name": "Evil Bat", + "thumbnail": "rbxassetid://18256797857", }, - "configName": "Color Ruins Parrot", + "configName": "Evil Bat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8437121f463b38d5", + "dateModified": "2026-06-27T16:05:38.132Z", + "hashShort": "bf5f48a573558a81", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 26729350464964, + 10239838170985, + 10910811649465, + 11543768682668, ], + "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 224, - "goldenThumbnail": "rbxassetid://71759696015605", - "name": "Shimmering Octopus", - "thumbnail": "rbxassetid://90478033974273", + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18256796826", + "name": "Demon Dog", + "thumbnail": "rbxassetid://18256796953", }, - "configName": "Shimmering Octopus", + "configName": "Demon Dog", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "181189d840be2bf1", + "dateModified": "2026-06-27T16:05:38.152Z", + "hashShort": "96506ad2f15f9625", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 26111037845183, + 10751830079534, + 11687687961285, + 12148651346348, ], "fromWorldNumber": 3, - "fromZoneNumber": 224, - "goldenThumbnail": "rbxassetid://95534281337989", - "name": "Shimmering Fish", - "thumbnail": "rbxassetid://121020575503156", + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18256797992", + "name": "Evil Minotaur", + "thumbnail": "rbxassetid://18256798139", }, - "configName": "Shimmering Fish", + "configName": "Evil Minotaur", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3ca0c739ea233c30", + "dateModified": "2026-06-27T16:05:38.129Z", + "hashShort": "56ffc21a6cfe23a9", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://115150454670307", - "huge": true, - "indexDesc": "Reward in the 2024 Rave Crab Clan Battle!", - "indexObtainable": true, - "name": "Huge Reversed Cat", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://86486361253800", + "cachedPower": [ + 11519817942358, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18256797403", + "name": "Devil Dominus", + "thumbnail": "rbxassetid://18256797545", }, - "configName": "Huge Reversed Cat", + "configName": "Devil Dominus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5437b64085e19906", + "hashShort": "b315352e8ad0871e", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { + "cachedPower": [ + 11007826033809, + 11885536213555, + 12445423724752, + ], "fly": true, - "goldenThumbnail": "", - "huge": true, - "indexDesc": "Found in the Exclusive Soul Egg!", - "indexObtainable": true, - "name": "Huge Soul Dragon", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://95241548572659", + "fromWorldNumber": 3, + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18256798226", + "name": "Good vs Evil Dragon", + "thumbnail": "rbxassetid://18256798311", }, - "configName": "Huge Soul Dragon", + "configName": "Good vs Evil Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "82d4acfddbcbbd00", + "dateModified": "2026-06-27T16:05:38.152Z", + "hashShort": "90db7bcc8784dac3", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "", + "goldenThumbnail": "rbxassetid://18352502702", "huge": true, - "indexDesc": "Found in the Exclusive Soul Egg!", + "indexDesc": "Found in The Forever Pack!", "indexObtainable": true, - "name": "Huge Soul Cat", + "name": "Huge Kitsune Fox", "rarity": { "Announce": true, "Color": null, @@ -111340,29 +114983,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://114453311306931", + "thumbnail": "rbxassetid://18352502490", }, - "configName": "Huge Soul Cat", + "configName": "Huge Kitsune Fox", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6596a009be07fbd2", + "hashShort": "5f9652db61256c11", }, { "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 56524395715979, - ], - "fromEgg": "Fire Type Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 229, - "goldenThumbnail": "rbxassetid://126355570573247", + "goldenThumbnail": "rbxassetid://18351655946", "huge": true, - "indexDesc": "Earned from the Elemental World's final egg and roaming pets!", + "indexDesc": "Earned from the Lucky Tile Event!", "indexObtainable": true, - "maxChance": 9.99987305161161e-9, - "name": "Huge Electric Penguin", + "name": "Huge UV Kitsune", "rarity": { "Announce": true, "Color": null, @@ -111375,22 +115011,71 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://77658045662575", + "thumbnail": "rbxassetid://18351655777", }, - "configName": "Huge Electric Penguin", + "configName": "Huge UV Kitsune", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ef0f3bd6b7ec7a34", + "hashShort": "53a267b1279fa53b", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://97524659845309", + "animations": { + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.1, + "Value": null, + }, + { + "Time": 0.2, + "Value": null, + }, + { + "Time": 0.3, + "Value": null, + }, + { + "Time": 0.4, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.6, + "Value": null, + }, + { + "Time": 0.7, + "Value": null, + }, + { + "Time": 0.8, + "Value": null, + }, + { + "Time": 0.9, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.075, + }, + "goldenThumbnail": "rbxassetid://18351655595", "huge": true, - "indexDesc": "Earned from Elemental Gifts!", + "indexDesc": "Earned from the Lucky Tile Event's final egg!", "indexObtainable": true, - "name": "Huge Water Zebra", + "name": "Huge UV Cat", "rarity": { "Announce": true, "Color": null, @@ -111403,23 +115088,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://132338879904830", + "thumbnail": "rbxassetid://18356987128", }, - "configName": "Huge Water Zebra", + "configName": "Huge UV Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6a737c47d16aa63e", + "hashShort": "11922b6877b36dd5", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://83821898228179", + "goldenThumbnail": "rbxassetid://18351655259", "huge": true, - "indexDesc": "Caught from the Elemental World's roaming pets!", + "indexDesc": "Earned from Rave Gifts!", "indexObtainable": true, - "name": "Huge Dark Dragon", + "name": "Huge Rave Troll", "rarity": { "Announce": true, "Color": null, @@ -111432,23 +115116,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://74325129208178", + "thumbnail": "rbxassetid://18351655132", }, - "configName": "Huge Dark Dragon", + "configName": "Huge Rave Troll", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0bdcc403e7717d67", + "hashShort": "59cfc610e6605130", }, { "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://85577771684068", + "goldenThumbnail": "rbxassetid://18351654949", "huge": true, - "indexDesc": "Found in the Elemental Pack!", + "indexDesc": "Found in the Rave Pack!", "indexObtainable": true, - "name": "Huge Elemental Phoenix", + "name": "Huge Rave Meebo in a Spaceship", "rarity": { "Announce": true, "Color": null, @@ -111461,40 +115145,21 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://106964408163546", - }, - "configName": "Huge Elemental Phoenix", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ee60dd51f60f0a71", - }, - { - "category": "Titanic", - "collection": "Pets", - "configData": { - "goldenThumbnail": "rbxassetid://134922107752408", - "indexDesc": "Comes with the Titanic Red Kitsune Fox plush!", - "indexObtainable": true, - "name": "Titanic Red Kitsune Fox", - "thumbnail": "rbxassetid://87922327499998", - "titanic": true, + "thumbnail": "rbxassetid://18351654787", }, - "configName": "Titanic Red Kitsune Fox", + "configName": "Huge Rave Meebo in a Spaceship", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e3d7a0cdbdfe042d", + "hashShort": "93be07c7bd9bc6f0", }, { "category": "Titanic", "collection": "Pets", "configData": { - "fly": true, - "flyingTitanic": true, - "flyingTitanicAlwaysFly": true, - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Soul Egg!", + "goldenThumbnail": "rbxassetid://18352470225", + "indexDesc": "Found in The Forever Pack!", "indexObtainable": true, - "name": "Titanic Soul Owl", + "name": "Titanic Kitsune Fox", "rarity": { "Announce": true, "Color": null, @@ -111507,579 +115172,550 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://125310152380772", + "thumbnail": "rbxassetid://18352469980", "titanic": true, }, - "configName": "Titanic Soul Owl", + "configName": "Titanic Kitsune Fox", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a743931e550eacf0", + "hashShort": "48f8603ce660e203", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 54712704711582, + 11135824010946, + 11983533202123, + 12592419207605, ], - "fly": true, - "fromEgg": "Fire Type Egg", "fromWorldNumber": 3, - "fromZoneNumber": 229, - "goldenThumbnail": "rbxassetid://96683003879126", - "maxChance": 1.849976514548148e-7, - "name": "Elemental Phoenix", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, - }, - "thumbnail": "rbxassetid://118999979336349", + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18351498243", + "indexDesc": "Hatched from eggs in the Lucky Tile Event!", + "name": "UV Kitsune", + "thumbnail": "rbxassetid://18351498436", }, - "configName": "Elemental Phoenix", + "configName": "UV Kitsune", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b0dcf59fc057db54", + "dateModified": "2026-06-27T16:05:38.132Z", + "hashShort": "e23aa23528245a92", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 52526018018949, + 9443406313241, + 10300720177081, + 10666647919369, ], - "fromEgg": "Fire Type Egg", "fromWorldNumber": 3, - "fromZoneNumber": 229, - "goldenThumbnail": "rbxassetid://139524389780843", - "maxChance": 0.000002499968262902903, - "name": "Ghost Axolotl", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "thumbnail": "rbxassetid://96644446206157", + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18351495708", + "indexDesc": "Hatched from eggs in the Lucky Tile Event!", + "name": "DJ Panda", + "thumbnail": "rbxassetid://18351514950", }, - "configName": "Ghost Axolotl", + "configName": "DJ Panda", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2dc6c5a7db73f4f7", + "dateModified": "2026-06-27T16:05:38.154Z", + "hashShort": "79f9ec7fceeb3a70", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 51186710019279, + 9000944170051, + 9623162314801, + 10182242841275, ], - "fly": true, - "fromEgg": "Fire Type Egg", "fromWorldNumber": 3, - "fromZoneNumber": 229, - "goldenThumbnail": "rbxassetid://72860524143382", - "maxChance": 0.000009999873051611612, - "name": "Dark Dragon", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18351496480", + "indexDesc": "Hatched from eggs in the Lucky Tile Event!", + "name": "Rave Corgi", + "thumbnail": "rbxassetid://18351496648", + }, + "configName": "Rave Corgi", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:38.137Z", + "hashShort": "4cc4395c0606cf85", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.1, + "Value": null, + }, + { + "Time": 0.2, + "Value": null, + }, + { + "Time": 0.3, + "Value": null, + }, + { + "Time": 0.4, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.6, + "Value": null, + }, + { + "Time": 0.7, + "Value": null, + }, + { + "Time": 0.8, + "Value": null, + }, + { + "Time": 0.9, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.075, }, - "thumbnail": "rbxassetid://117139783052382", + "cachedPower": [ + 8596407353419, + 9314168565028, + 9718752216615, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18351497816", + "indexDesc": "Hatched from the Lucky Tile Event!", + "name": "UV Cat", + "thumbnail": "rbxassetid://18351497965", }, - "configName": "Dark Dragon", + "configName": "UV Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ab039bd3023b77bd", + "dateModified": "2026-06-27T16:05:38.149Z", + "hashShort": "c2a39a7885ce0a07", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 40651881428832, + 11663815666637, + 12569916515579, + 13157637907521, ], "fly": true, - "fromEgg": "Electric Type Egg", "fromWorldNumber": 3, - "fromZoneNumber": 228, - "goldenThumbnail": "rbxassetid://101777940566446", - "maxChance": 0.00999987305161161, - "name": "Fire Bat", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, - }, - "thumbnail": "rbxassetid://137347951628505", + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18351496779", + "indexDesc": "Hatched from eggs in the Lucky Tile Event!", + "name": "Rave Meebo in a Spaceship", + "thumbnail": "rbxassetid://18351497185", }, - "configName": "Fire Bat", + "configName": "Rave Meebo in a Spaceship", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "baaf2757ac1dc8ca", + "dateModified": "2026-06-27T16:05:38.145Z", + "hashShort": "3a835270e1b70be8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 38132442677685, + 10367836148122, + 11174122490609, + 11696425839453, ], - "fromEgg": "Electric Type Egg", "fromWorldNumber": 3, - "fromZoneNumber": 228, - "goldenThumbnail": "rbxassetid://91009099798340", - "maxChance": 0.9899874321095494, - "name": "Psychic Seal", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - "thumbnail": "rbxassetid://136877195748625", + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18351496011", + "indexDesc": "Hatched from eggs in the Lucky Tile Event!", + "name": "Rave Bunny", + "thumbnail": "rbxassetid://18351496333", }, - "configName": "Psychic Seal", + "configName": "Rave Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f4c2dce2a28783b4", + "dateModified": "2026-06-27T16:05:38.137Z", + "hashShort": "4099676be3858984", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 36135005714517, + 9898510231952, + 10652690816177, + 11194603878013, ], - "fromEgg": "Water Type Egg", "fromWorldNumber": 3, - "fromZoneNumber": 227, - "goldenThumbnail": "rbxassetid://102601119458755", - "maxChance": 0.09891196834817013, - "name": "Electric Penguin", + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18351497548", + "indexDesc": "Hatched from eggs in the Lucky Tile Event!", + "name": "Rave Troll", + "thumbnail": "rbxassetid://18351497686", + }, + "configName": "Rave Troll", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:38.132Z", + "hashShort": "4df42883d8602b76", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://18458208354", + "huge": true, + "indexDesc": "Earned from the Lucky Tile Event's final egg!", + "indexObtainable": true, + "name": "Huge Rave Butterfly", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://77616745628277", + "thumbnail": "rbxassetid://18458208075", }, - "configName": "Electric Penguin", + "configName": "Huge Rave Butterfly", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "41a735447a032f7f", + "hashShort": "27bed1ab8cb93897", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 33895504602387, - ], "fly": true, - "fromEgg": "Water Type Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 227, - "goldenThumbnail": "rbxassetid://126012090069251", - "maxChance": 0.8902077151335313, - "name": "Storm Griffin", + "goldenThumbnail": "rbxassetid://18458208822", + "huge": true, + "indexDesc": "Found in the Disco Pack!", + "indexObtainable": true, + "name": "Huge Disco Ball Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://93181573916731", + "thumbnail": "rbxassetid://18458208582", }, - "configName": "Storm Griffin", + "configName": "Huge Disco Ball Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8dcb56e11498c133", + "hashShort": "18a889abe171bc06", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 32120005079571, - ], - "fromEgg": "Rock Type Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 226, - "goldenThumbnail": "rbxassetid://113105637323371", - "maxChance": 0.09891196834817013, - "name": "Water Zebra", + "goldenThumbnail": "rbxassetid://18458263785", + "huge": true, + "indexDesc": "Earned from the Lucky Tile Event!", + "indexObtainable": true, + "name": "Huge Rave Jaguar", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://113627183108934", + "thumbnail": "rbxassetid://18458263548", }, - "configName": "Water Zebra", + "configName": "Huge Rave Jaguar", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "95a21dddd5c92afa", + "hashShort": "f67e2e22a60222b7", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 30129337424344, - ], - "fromEgg": "Rock Type Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 226, - "goldenThumbnail": "rbxassetid://95296298755620", - "maxChance": 0.8902077151335313, - "name": "Poison Turtle", + "fly": true, + "goldenThumbnail": "rbxassetid://18465100470", + "huge": true, + "indexDesc": "Found in the Exclusive Valkyrie Egg!", + "indexObtainable": true, + "name": "Huge Valkyrie Wolf", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://74337210754126", + "thumbnail": "rbxassetid://18465100470", }, - "configName": "Poison Turtle", + "configName": "Huge Valkyrie Wolf", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "774cef65ea6d65b8", + "hashShort": "8bea455e5faeee28", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 28543511869301, - ], - "fromEgg": "Grass Type Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 225, - "goldenThumbnail": "rbxassetid://129131469736695", - "maxChance": 0.09891196834817013, - "name": "Ice Snake", + "fly": true, + "goldenThumbnail": "rbxassetid://18465101315", + "huge": true, + "indexDesc": "Found in the Exclusive Valkyrie Egg!", + "indexObtainable": true, + "name": "Huge Valkyrie Dog", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://96349887522416", + "thumbnail": "rbxassetid://18465101315", }, - "configName": "Ice Snake", + "configName": "Huge Valkyrie Dog", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "02b1295aca3739fa", + "hashShort": "e6e4251d5cc1714a", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 26774133995452, - ], - "fromEgg": "Grass Type Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 225, - "goldenThumbnail": "rbxassetid://75858283248001", - "maxChance": 0.8902077151335313, - "name": "Rock Monkey", + "goldenThumbnail": "rbxassetid://14977573985", + "indexDesc": "Comes with the Titanic Strawberry Cow plush!", + "indexObtainable": true, + "name": "Titanic Strawberry Cow", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://139950129050447", + "thumbnail": "rbxassetid://14976827001", + "titanic": true, }, - "configName": "Rock Monkey", + "configName": "Titanic Strawberry Cow", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ef93d4b6e1f472f0", + "hashShort": "c75ecd83fae5a57d", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 23373015618503, - ], - "fromEgg": "Grass Type Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 225, - "goldenThumbnail": "rbxassetid://131656915924199", - "maxChance": 0.989010989010989, - "name": "Grass Bunny", + "fly": true, + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "goldenThumbnail": "rbxassetid://18465212052", + "indexDesc": "Found in the Exclusive Valkyrie Egg!", + "indexObtainable": true, + "name": "Titanic Valkyrie Pegasus", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://107391057868479", + "thumbnail": "rbxassetid://18465212052", + "titanic": true, }, - "configName": "Grass Bunny", + "configName": "Titanic Valkyrie Pegasus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "59f9bdac2322347b", + "hashShort": "2b3d29272f29be11", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "", - "name": "Soul Dragon", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://102748467861048", + "cachedPower": [ + 11951811115196, + 13035788921449, + 13497521158644, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18447211927", + "indexDesc": "Hatched from eggs in the Lucky Tile Event!", + "name": "Rave Cat", + "thumbnail": "rbxassetid://18447211749", }, - "configName": "Soul Dragon", + "configName": "Rave Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7a50cf88a049feb3", + "dateModified": "2026-06-27T16:05:38.153Z", + "hashShort": "d0d0c4397e1f2205", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "fly": true, - "goldenThumbnail": "", - "name": "Soul Bat", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://81485067716844", + "cachedPower": [ + 12959795185153, + 13807265923246, + 14608708941272, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18447211104", + "indexDesc": "Hatched from eggs in the Lucky Tile Event!", + "name": "Rave Unicorn", + "thumbnail": "rbxassetid://18447210854", }, - "configName": "Soul Bat", + "configName": "Rave Unicorn", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a4cf6e53c62ecf06", + "dateModified": "2026-06-27T16:05:38.134Z", + "hashShort": "239dab31c1244500", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "", - "name": "Soul Cat", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://104507642747948", + "cachedPower": [ + 12671799736594, + 13590207490284, + 14329149011896, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18447211542", + "indexDesc": "Hatched from eggs in the Lucky Tile Event!", + "name": "Rave Jaguar", + "thumbnail": "rbxassetid://18447211319", }, - "configName": "Soul Cat", + "configName": "Rave Jaguar", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6efd6b994121c1db", + "dateModified": "2026-06-27T16:05:38.155Z", + "hashShort": "cb45ada58c888e03", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://18352470225", - "indexDesc": "Comes with the Titanic Pink Kitsune Fox plush!", - "indexObtainable": true, - "name": "Titanic Pink Kitsune Fox", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://81549697873082", - "titanic": true, + "cachedPower": [ + 13607784944410, + 14790892345815, + 15372704635788, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18447213533", + "indexDesc": "Hatched from eggs in the Lucky Tile Event!", + "name": "Disco Ball Dragon", + "thumbnail": "rbxassetid://18447213231", }, - "configName": "Titanic Pink Kitsune Fox", + "configName": "Disco Ball Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7236a773446bddef", + "dateModified": "2026-06-27T16:05:38.138Z", + "hashShort": "83215039ed5349e3", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://139891587257182", - "indexDesc": "Comes with the Titanic Nightmare Corgi plush!", - "indexObtainable": true, - "name": "Titanic Nightmare Corgi", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://137580301485992", - "titanic": true, + "cachedPower": [ + 13283790064781, + 14470959849679, + 14993015158578, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18447212560", + "indexDesc": "Hatched from eggs in the Lucky Tile Event!", + "name": "Rave Butterfly", + "thumbnail": "rbxassetid://18447212270", }, - "configName": "Titanic Nightmare Corgi", + "configName": "Rave Butterfly", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2884e0a2e50d5fac", + "dateModified": "2026-06-27T16:05:38.148Z", + "hashShort": "2eea3887ac3e8229", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "flyingTitanic": true, - "flyingTitanicAlwaysFly": true, - "goldenThumbnail": "rbxassetid://76634123469729", - "indexDesc": "Comes with the Titanic Fossil Dragon plush!", - "indexObtainable": true, - "name": "Titanic Fossil Dragon", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://107708637818615", - "titanic": true, + "cachedPower": [ + 12239806563755, + 13259600980692, + 13833239247508, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 214, + "goldenThumbnail": "rbxassetid://18447213002", + "indexDesc": "Hatched from eggs in the Lucky Tile Event!", + "name": "Rave Axolotl", + "thumbnail": "rbxassetid://18447212767", }, - "configName": "Titanic Fossil Dragon", + "configName": "Rave Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d9540398089660c3", + "dateModified": "2026-06-27T16:05:38.144Z", + "hashShort": "b4f2003a803a891b", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { + "exclusiveLevel": 3, "fly": true, - "goldenThumbnail": "rbxassetid://120686822122737", - "huge": true, - "indexDesc": "Found in The Forever Pack!", - "indexObtainable": true, - "name": "Huge Dominus Darkwing", + "goldenThumbnail": "rbxassetid://18464814909", + "name": "Valkyrie Wolf", "rarity": { "Announce": true, "Color": null, @@ -112092,22 +115728,21 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://100391666936804", + "thumbnail": "rbxassetid://18464814909", }, - "configName": "Huge Dominus Darkwing", + "configName": "Valkyrie Wolf", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ce888c5f6e725cc8", + "hashShort": "c7db02514b2b9db0", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://116037431940023", - "huge": true, - "indexDesc": "Earned from the 2024 Halloween Event's final egg!", - "indexObtainable": true, - "name": "Huge Pumpkin Scarecrow", + "exclusiveLevel": 2, + "fly": true, + "goldenThumbnail": "rbxassetid://18464815436", + "name": "Valkyrie Dragon", "rarity": { "Announce": true, "Color": null, @@ -112120,22 +115755,21 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://116673779811156", + "thumbnail": "rbxassetid://18464815436", }, - "configName": "Huge Pumpkin Scarecrow", + "configName": "Valkyrie Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1bb16e24e60875be", + "hashShort": "c228d8316ea46dcd", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://135050967408837", - "huge": true, - "indexDesc": "Found in the Spider Pack!", - "indexObtainable": true, - "name": "Huge Ghoul Horse", + "exclusiveLevel": 1, + "fly": true, + "goldenThumbnail": "rbxassetid://18464815689", + "name": "Valkyrie Dog", "rarity": { "Announce": true, "Color": null, @@ -112148,30 +115782,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://138823579638125", + "thumbnail": "rbxassetid://18464815689", }, - "configName": "Huge Ghoul Horse", + "configName": "Valkyrie Dog", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "74688de386523d75", + "hashShort": "3b202b5aecb8c878", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.025, - "flyHeightChange": 0, - "swerve": true, - "swerveAggression": 0.2, - "swerveMaxAngle": 60, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://134840760464235", + "goldenThumbnail": "rbxassetid://18520054270", "huge": true, - "indexDesc": "Found in the Pumpkin Gift!", + "indexDesc": "Reward in the 2024 Clown Clan Battle!", "indexObtainable": true, - "name": "Huge Little Melty", + "name": "Huge Clown Cat", "rarity": { "Announce": true, "Color": null, @@ -112184,22 +115810,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://125054778559458", + "thumbnail": "rbxassetid://18520054035", }, - "configName": "Huge Little Melty", + "configName": "Huge Clown Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ad6de5b2bee37abd", + "hashShort": "ae8cb14526ef7283", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://124257400649159", + "goldenThumbnail": "rbxassetid://18556267433", "huge": true, - "indexDesc": "Found in the Candy Corn Gift!", + "indexDesc": "Found in the Millionaire Pack!", "indexObtainable": true, - "name": "Huge Skeleton Cat", + "name": "Huge Luxe Peacock", "rarity": { "Announce": true, "Color": null, @@ -112212,22 +115838,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://99657539993632", + "thumbnail": "rbxassetid://18556267256", }, - "configName": "Huge Skeleton Cat", + "configName": "Huge Luxe Peacock", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c7a3f600389b17e8", + "hashShort": "36f27686696c2fdc", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://106915716318020", + "goldenThumbnail": "rbxassetid://18556268421", "huge": true, - "indexDesc": "Found in the Exclusive Horror Egg!", + "indexDesc": "Earned from the Millionaire World's run minigame!", "indexObtainable": true, - "name": "Huge Slasher Sloth", + "name": "Huge Treasure Turtle", "rarity": { "Announce": true, "Color": null, @@ -112240,22 +115866,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://115427285712502", + "thumbnail": "rbxassetid://18556268254", }, - "configName": "Huge Slasher Sloth", + "configName": "Huge Treasure Turtle", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b5b2d5cd0f047c6b", + "hashShort": "87e692cf1a97b342", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://108025600456665", + "fly": true, + "goldenThumbnail": "rbxassetid://18556265842", "huge": true, - "indexDesc": "Found in the Exclusive Horror Egg!", + "indexDesc": "Earned from Millionaire World's huge raffles!", "indexObtainable": true, - "name": "Huge Machete Dog", + "name": "Huge Elegant Eagle", "rarity": { "Announce": true, "Color": null, @@ -112268,22 +115895,46 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://108025600456665", + "thumbnail": "rbxassetid://18556265741", }, - "configName": "Huge Machete Dog", + "configName": "Huge Elegant Eagle", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2ca7c5c9673d6a4e", + "hashShort": "de4bea4313ee390a", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://82639187833773", + "animations": { + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.5, + }, + "cachedPower": [ + 17509694825016, + ], + "fromEgg": "Luxe Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18556268101", "huge": true, - "indexDesc": "Reward in the 2024 Ghost Clan Battle!", + "indexDesc": "Earned from Millionaire World's final egg!", "indexObtainable": true, - "name": "Huge Ghost Cat", + "maxChance": 4.9999487255258196e-9, + "name": "Huge Pristine Snake", "rarity": { "Announce": true, "Color": null, @@ -112296,278 +115947,434 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://94290261080713", + "thumbnail": "rbxassetid://18556267952", }, - "configName": "Huge Ghost Cat", + "configName": "Huge Pristine Snake", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "90b953401df841d6", + "hashShort": "c3a189481073aee6", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { + "cachedPower": [ + 12518590281036, + 13473650270714, + 14154313182541, + ], "fly": true, - "flyingTitanic": true, - "flyingTitanicAlwaysFly": true, - "goldenThumbnail": "rbxassetid://117074826560672", - "indexDesc": "Found in The Forever Pack!", - "indexObtainable": true, - "name": "Titanic Dominus Darkwing", + "fromEgg": "Elegant Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 218, + "goldenThumbnail": "rbxassetid://18556248780", + "maxChance": 0.00999989745105164, + "name": "Diamond Dragon", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://76103751008934", - "titanic": true, + "thumbnail": "rbxassetid://18556248893", }, - "configName": "Titanic Dominus Darkwing", + "configName": "Diamond Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "351243cc8d0bc9b2", + "dateModified": "2026-06-27T16:05:38.156Z", + "hashShort": "eb3dee64547b32de", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://113883783326229", - "indexDesc": "Found in the Exclusive Horror Egg!", - "indexObtainable": true, - "name": "Titanic Ghostface Cat", + "cachedPower": [ + 7197630118855, + 7676782688944, + 8115912095273, + ], + "fromEgg": "Growing Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 215, + "goldenThumbnail": "rbxassetid://18556249642", + "maxChance": 0.989010989010989, + "name": "Humble Hen", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://119318487422826", - "titanic": true, + "thumbnail": "rbxassetid://18556249774", }, - "configName": "Titanic Ghostface Cat", + "configName": "Humble Hen", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c62cd83a5872f1a9", + "dateModified": "2026-06-27T16:05:38.156Z", + "hashShort": "4fbaa98cca1ff084", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.5, + }, "cachedPower": [ - 36577245969036, + 9891231826991, + 10647132624070, + 11186266589853, ], + "fromEgg": "Sturdy Egg", "fromWorldNumber": 3, - "fromZoneNumber": 229, - "goldenThumbnail": "rbxassetid://14968314534", - "name": "Pumpkin Cat", - "thumbnail": "rbxassetid://14968314681", + "fromZoneNumber": 216, + "goldenThumbnail": "rbxassetid://18556250778", + "maxChance": 0.09891196834817013, + "name": "Pristine Snake", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://18556250868", }, - "configName": "Pumpkin Cat", + "configName": "Pristine Snake", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "da10f46bcc6d4a07", + "dateModified": "2026-06-27T16:05:38.157Z", + "hashShort": "06c4a69481c429ea", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 58256779605516, + 15762749385023, + 16988793270124, + 17817367874067, ], + "fromEgg": "Luxe Egg", "fromWorldNumber": 3, - "fromZoneNumber": 229, - "goldenThumbnail": "rbxassetid://98383319616097", - "name": "Pumpkin Scarecrow", - "thumbnail": "rbxassetid://95055696007488", + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18556250074", + "maxChance": 0.00000999989745105164, + "name": "Luxe Axolotl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "thumbnail": "rbxassetid://18556250211", }, - "configName": "Pumpkin Scarecrow", + "configName": "Luxe Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "dd38bc67c3ca1efe", + "dateModified": "2026-06-27T16:05:38.157Z", + "hashShort": "5d5c7739bb9fdc51", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 52671526449685, + 8789864520766, + 9462946252206, + 9941918747382, ], + "fromEgg": "Growing Egg", "fromWorldNumber": 3, - "fromZoneNumber": 229, - "goldenThumbnail": "rbxassetid://83875557473860", - "name": "Hippokin", - "thumbnail": "rbxassetid://104720763662484", + "fromZoneNumber": 215, + "goldenThumbnail": "rbxassetid://18556249185", + "maxChance": 0.09891196834817013, + "name": "Fortress Dog", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://18556249292", }, - "configName": "Hippokin", + "configName": "Fortress Dog", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e659997095e3bb3e", + "dateModified": "2026-06-27T16:05:38.158Z", + "hashShort": "27ff3edc3eaf18a7", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 37408547013787, + 11742738823361, + 12731397384364, + 13251198657786, ], + "fly": true, + "fromEgg": "Elegant Egg", "fromWorldNumber": 3, - "fromZoneNumber": 229, - "goldenThumbnail": "rbxassetid://89646012960788", - "name": "Zombie Deer", - "thumbnail": "rbxassetid://88196342129386", + "fromZoneNumber": 218, + "goldenThumbnail": "rbxassetid://18556248984", + "maxChance": 0.9899898476541124, + "name": "Elegant Eagle", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://18556249078", }, - "configName": "Zombie Deer", + "configName": "Elegant Eagle", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3bfa4b1c40bf04e3", + "dateModified": "2026-06-27T16:05:38.158Z", + "hashShort": "95aad6080e1441c3", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 42084615390510, + 9278213391298, + 10061084721471, + 10471621654449, ], + "fly": true, + "fromEgg": "Sturdy Egg", "fromWorldNumber": 3, - "fromZoneNumber": 229, - "goldenThumbnail": "rbxassetid://134777228917290", - "name": "Skeleton Cat", - "thumbnail": "rbxassetid://115304402616907", + "fromZoneNumber": 216, + "goldenThumbnail": "rbxassetid://18556249416", + "maxChance": 0.8902077151335313, + "name": "Fortress Owl", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://18556249535", }, - "configName": "Skeleton Cat", + "configName": "Fortress Owl", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "290655dc7aa23165", + "dateModified": "2026-06-27T16:05:38.162Z", + "hashShort": "d164886ca1a6ca8b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 47937007218253, + 16778082388700, + 18242362562523, + 18932659356020, ], - "fly": true, + "fromEgg": "Luxe Egg", "fromWorldNumber": 3, - "fromZoneNumber": 229, - "goldenThumbnail": "rbxassetid://75768850823146", - "name": "Glowy the Ghost", - "thumbnail": "rbxassetid://108033940375222", + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18556250340", + "maxChance": 2.49997436276291e-7, + "name": "Luxe Peacock", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + "thumbnail": "rbxassetid://18556250480", }, - "configName": "Glowy the Ghost", + "configName": "Luxe Peacock", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3e3f55d3dc75d1cd", + "dateModified": "2026-06-27T16:05:38.159Z", + "hashShort": "b4fd2537f6f73db1", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "animations": { - "flyHeight": 0.025, - "flyHeightChange": 0, - "swerve": true, - "swerveAggression": 0.2, - "swerveMaxAngle": 60, + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.5, }, "cachedPower": [ - 38811367526804, + 10437990065210, + 11317734080347, + 11779686129366, ], - "fly": true, + "fromEgg": "Established Egg", "fromWorldNumber": 3, - "fromZoneNumber": 229, - "goldenThumbnail": "rbxassetid://123607978661577", - "name": "Little Melty", - "thumbnail": "rbxassetid://121303946914438", + "fromZoneNumber": 217, + "goldenThumbnail": "rbxassetid://18556250595", + "maxChance": 0.8902077151335313, + "name": "Pristine Poodle", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://18556250696", }, - "configName": "Little Melty", + "configName": "Pristine Poodle", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7f56c02362e7c4fb", + "dateModified": "2026-06-27T16:05:38.163Z", + "hashShort": "c5ed91a9d29dc747", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 35330294401910, + 8244991420763, + 8939283839346, + 9306105987949, ], - "fly": true, + "fromEgg": "Growing Egg", "fromWorldNumber": 3, - "fromZoneNumber": 229, - "goldenThumbnail": "rbxassetid://111312508528084", - "name": "Albino Bat", - "thumbnail": "rbxassetid://109741339541488", + "fromZoneNumber": 215, + "goldenThumbnail": "rbxassetid://18556249893", + "maxChance": 0.8902077151335313, + "name": "Humble Rabbit", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://18556249987", }, - "configName": "Albino Bat", + "configName": "Humble Rabbit", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "60f162ea56d89c22", + "dateModified": "2026-06-27T16:05:38.164Z", + "hashShort": "1209d0e8eb55fc75", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 40681794877493, + 11127635805365, + 11977282560760, + 12583043245560, ], - "fly": true, + "fromEgg": "Established Egg", "fromWorldNumber": 3, - "fromZoneNumber": 229, - "goldenThumbnail": "rbxassetid://112899222235132", - "name": "Broomstick Cat", - "thumbnail": "rbxassetid://88325748556058", - }, - "configName": "Broomstick Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "de1e48ada421bed0", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://77632213721966", - "name": "Slasher Sloth", + "fromZoneNumber": 217, + "goldenThumbnail": "rbxassetid://18556250992", + "maxChance": 0.09891196834817013, + "name": "Treasure Turtle", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://134122513957953", + "thumbnail": "rbxassetid://18556251133", }, - "configName": "Slasher Sloth", + "configName": "Treasure Turtle", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "377fc1a7b2b8576a", + "dateModified": "2026-06-27T16:05:38.168Z", + "hashShort": "e7f31bb693df5605", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://100328927481866", - "name": "Machete Dog", + "fly": true, + "goldenThumbnail": "rbxassetid://18626987216", + "huge": true, + "indexDesc": "Comes with Series 3 Treasure Chest Ultimate Bundle!", + "indexObtainable": true, + "name": "Huge Ancient Dragon", "rarity": { "Announce": true, "Color": null, @@ -112580,20 +116387,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://91856984950236", + "thumbnail": "rbxassetid://18626986876", }, - "configName": "Machete Dog", + "configName": "Huge Ancient Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b6bd474704364009", + "hashShort": "9447e951c048b965", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://111864470739577", - "name": "Cannibal Meerkat", + "goldenThumbnail": "rbxassetid://14976546956", + "huge": true, + "indexDesc": "Comes with Series 3 Brown Dog Collector Bundle!", + "indexObtainable": true, + "name": "Huge Shiba", "rarity": { "Announce": true, "Color": null, @@ -112606,23 +116415,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://99633553273367", + "thumbnail": "rbxassetid://14976547077", }, - "configName": "Cannibal Meerkat", + "configName": "Huge Shiba", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "74b44eae59c7345d", + "hashShort": "77b77800b81e2305", }, { "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://123904176007470", + "goldenThumbnail": "rbxassetid://14976567323", "huge": true, - "indexDesc": "Earned from the 2024 Haunted Backrooms Event!", + "indexDesc": "Comes with Series 3 Purple Dragon Collector Bundle!", "indexObtainable": true, - "name": "Huge Glowy the Ghost", + "name": "Huge Three Headed Dragon", "rarity": { "Announce": true, "Color": null, @@ -112635,23 +116444,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://80650774485901", + "thumbnail": "rbxassetid://14976567497", }, - "configName": "Huge Glowy the Ghost", + "configName": "Huge Three Headed Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c54848a9f91b763d", + "hashShort": "00848050da11cccd", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://138251115739919", + "goldenThumbnail": "rbxassetid://14976456310", "huge": true, - "indexDesc": "Earned from the 2024 Halloween Event's final egg!", + "indexDesc": "Comes with Series 3 Dalmatian Collector Bundle!", "indexObtainable": true, - "name": "Huge Abomination", + "name": "Huge Hippo", "rarity": { "Announce": true, "Color": null, @@ -112664,22 +116472,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://70697028891589", + "thumbnail": "rbxassetid://14976456459", }, - "configName": "Huge Abomination", + "configName": "Huge Hippo", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "dd4a5e592d11ef29", + "hashShort": "22b8f0fbffdd28c4", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://82777280787408", + "goldenThumbnail": "rbxassetid://18313092725", "huge": true, - "indexDesc": "Found in the 2024 Spider Neighborhood Event!", + "indexDesc": "Found in the Exclusive SpongeBob Egg!", "indexObtainable": true, - "name": "Huge Tarantula", + "name": "Huge Mr. Krabs", "rarity": { "Announce": true, "Color": null, @@ -112692,22 +116500,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://124339060912566", + "thumbnail": "rbxassetid://18313092725", }, - "configName": "Huge Tarantula", + "configName": "Huge Mr Krabs", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "eaf6f46583ef4410", + "hashShort": "2fd647895132cf36", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://101002357295735", + "goldenThumbnail": "rbxassetid://18313092558", "huge": true, - "indexDesc": "Found in the 2024 Grim Reaper Neighborhood Event!", + "indexDesc": "Found in the Exclusive SpongeBob Egg!", "indexObtainable": true, - "name": "Huge Reaper Cat", + "name": "Huge Patrick Star", "rarity": { "Announce": true, "Color": null, @@ -112720,23 +116528,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://136851484598871", + "thumbnail": "rbxassetid://18313092558", }, - "configName": "Huge Reaper Cat", + "configName": "Huge Patrick Star", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "bb90bff8d94e8a78", + "hashShort": "c3048a5ca57dd0b2", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://122818031009937", + "goldenThumbnail": "rbxassetid://18644411976", + "hideSerial": true, "huge": true, - "indexDesc": "Found in the 2024 Vampire Neighborhood Event!", + "indexDesc": "Found in the (Rare, Mythical) Series 3 Merch Gifts!", "indexObtainable": true, - "name": "Huge Vampire Dragon", + "name": "Huge Inferno Stealth Bobcat", "rarity": { "Announce": true, "Color": null, @@ -112749,22 +116557,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://122834900117274", + "thumbnail": "rbxassetid://18644411865", }, - "configName": "Huge Vampire Dragon", + "configName": "Huge Inferno Stealth Bobcat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4014cb91449e8035", + "hashShort": "a651020706905436", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://99876397020856", + "goldenThumbnail": "rbxassetid://18644413430", + "hideSerial": true, "huge": true, - "indexDesc": "Found in the Bat Pack!", + "indexDesc": "Found in the (Epic, Mythical) Series 3 Merch Gifts!", "indexObtainable": true, - "name": "Huge Phantom Wolf", + "name": "Huge Tropical Flamingo", "rarity": { "Announce": true, "Color": null, @@ -112777,22 +116586,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://73617612474545", + "thumbnail": "rbxassetid://18644413250", }, - "configName": "Huge Phantom Wolf", + "configName": "Huge Tropical Flamingo", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2f7c23519c956386", + "hashShort": "6be7df0b7887d050", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://102656107458196", + "goldenThumbnail": "rbxassetid://18644412228", + "hideSerial": true, "huge": true, - "indexDesc": "Found in the Ghostface Gift!", + "indexDesc": "Found in the (Basic, Rare, Mythical) Series 3 Merch Gifts!", "indexObtainable": true, - "name": "Huge Mummy Bunny", + "name": "Huge Inferno Stealth Cat", "rarity": { "Announce": true, "Color": null, @@ -112805,21 +116615,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://101133530585577", + "thumbnail": "rbxassetid://18644412090", }, - "configName": "Huge Mummy Bunny", + "configName": "Huge Inferno Stealth Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "cbae8af38b615ab1", + "hashShort": "a8e0ffce5f6400f3", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://108129229977290", - "indexDesc": "Earned from the 2024 Halloween Event!", + "goldenThumbnail": "rbxassetid://18644412681", + "hideSerial": true, + "huge": true, + "indexDesc": "Found in the (Legendary, Mythical) Series 3 Merch Gifts!", "indexObtainable": true, - "name": "Titanic Pumpkin Cat", + "name": "Huge Old Wizard Corgi", "rarity": { "Announce": true, "Color": null, @@ -112832,133 +116644,24 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://111326774282264", - "titanic": true, - }, - "configName": "Titanic Pumpkin Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8f9ba82ef70a6bdb", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 59588363139356, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 229, - "goldenThumbnail": "rbxassetid://83642998757908", - "name": "Evil Wolverine", - "thumbnail": "rbxassetid://113761166558023", - }, - "configName": "Evil Wolverine", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6a5d5f29d1ff7c66", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 61044782629494, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 229, - "goldenThumbnail": "rbxassetid://91010721002877", - "name": "Tarantula", - "thumbnail": "rbxassetid://73078316333134", - }, - "configName": "Tarantula", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "02dcd93fad5e138f", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 66287892793990, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 229, - "goldenThumbnail": "rbxassetid://131979523441145", - "name": "Vampire Dragon", - "thumbnail": "rbxassetid://114237887654774", - }, - "configName": "Vampire Dragon", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "42e7247e8692f61d", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 64789861318420, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 229, - "goldenThumbnail": "rbxassetid://78736451265295", - "name": "Reaper Cat", - "thumbnail": "rbxassetid://125242320052036", - }, - "configName": "Reaper Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6d17d5557a274dd3", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 63291829842849, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 229, - "goldenThumbnail": "rbxassetid://120537522205833", - "name": "Mummy Bunny", - "thumbnail": "rbxassetid://86064284363349", - }, - "configName": "Mummy Bunny", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "918ed8bd3c4c0675", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 67832737753172, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 229, - "goldenThumbnail": "rbxassetid://74975020012890", - "name": "Abomination", - "thumbnail": "rbxassetid://88470325736458", + "thumbnail": "rbxassetid://18644412561", }, - "configName": "Abomination", + "configName": "Huge Old Wizard Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1cb81f7962b29057", + "hashShort": "1f75ac5a96b887f0", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://134101571166624", + "fly": true, + "goldenThumbnail": "rbxassetid://18644413103", + "hideSerial": true, "huge": true, - "indexDesc": "Found in the Exclusive Cartoon Egg!", + "indexDesc": "Found in the (Legendary, Mythical) Series 3 Merch Gifts!", "indexObtainable": true, - "name": "Huge Cartoon Bunny", + "name": "Huge Old Wizard Owl", "rarity": { "Announce": true, "Color": null, @@ -112971,23 +116674,24 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://83751288485339", + "thumbnail": "rbxassetid://18644413008", }, - "configName": "Huge Cartoon Bunny", + "configName": "Huge Old Wizard Owl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "33d49a8495d4ca10", + "hashShort": "c39a35c98305a453", }, { "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://80163134896084", + "goldenThumbnail": "rbxassetid://18644414363", + "hideSerial": true, "huge": true, - "indexDesc": "Found in the Exclusive Cartoon Egg!", + "indexDesc": "Found in the (Epic, Mythical) Series 3 Merch Gifts!", "indexObtainable": true, - "name": "Huge Cartoon Demon", + "name": "Huge Tropical Toucan", "rarity": { "Announce": true, "Color": null, @@ -113000,22 +116704,24 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://114799627163759", + "thumbnail": "rbxassetid://18644414181", }, - "configName": "Huge Cartoon Demon", + "configName": "Huge Tropical Toucan", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f593c07d6ec18367", + "hashShort": "290d117f741ed792", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://97936902453367", + "fly": true, + "goldenThumbnail": "rbxassetid://18644414013", + "hideSerial": true, "huge": true, - "indexDesc": "Found in The Forever Pack!", + "indexDesc": "Found in the (Legendary, Mythical) Series 3 Merch Gifts!", "indexObtainable": true, - "name": "Huge Yee-haw Cat", + "name": "Huge Tropical Parrot", "rarity": { "Announce": true, "Color": null, @@ -113028,22 +116734,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://85182651602746", + "thumbnail": "rbxassetid://18644413700", }, - "configName": "Huge Yee-haw Cat", + "configName": "Huge Tropical Parrot", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e24674c8b611f6aa", + "hashShort": "7ef6b48245c48dc8", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://122770340220299", + "goldenThumbnail": "rbxassetid://18673256315", "huge": true, - "indexDesc": "Tied to the Huge Panda merch in stores!", - "indexObtainable": false, - "name": "Huge Panda", + "indexDesc": "Earned from the Dino Tycoon's final egg!", + "indexObtainable": true, + "name": "Huge Dino Dog", "rarity": { "Announce": true, "Color": null, @@ -113056,22 +116762,38 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://86383655760798", + "thumbnail": "rbxassetid://18673255790", }, - "configName": "Huge Panda", + "configName": "Huge Dino Dog", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e66e29257216b818", + "hashShort": "8413f30f5a48b794", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://74923099050236", + "animations": { + "fadeFrames": [ + { + "duration": 1, + "iconThumbnail": "rbxassetid://18671776352", + "instant": true, + "textureName": "frame1", + }, + { + "duration": 2, + "iconThumbnail": "rbxassetid://18671776118", + "instant": true, + "textureName": "frame2", + }, + ], + }, + "goldenThumbnail": "rbxassetid://18673256887", "huge": true, - "indexDesc": "Comes with Series 3 Fox Collector Bundle!", + "indexDesc": "Earned from the Dino Gifts!", "indexObtainable": true, - "name": "Huge Panther", + "name": "Huge Electric Dino", "rarity": { "Announce": true, "Color": null, @@ -113084,22 +116806,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://127123894075183", + "thumbnail": "rbxassetid://18673256682", }, - "configName": "Huge Panther", + "configName": "Huge Electric Dino", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "18defb471ca732f5", + "hashShort": "2b150381916843dc", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://109333637335372", + "goldenThumbnail": "rbxassetid://18673257211", "huge": true, - "indexDesc": "Comes with Series 3 Treasure Chest Ultimate Bundle!", + "indexDesc": "Found in the Dino Pack!", "indexObtainable": true, - "name": "Huge Jaguar", + "name": "Huge Mech Dino", "rarity": { "Announce": true, "Color": null, @@ -113112,22 +116834,24 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://121900456724248", + "thumbnail": "rbxassetid://18673257007", }, - "configName": "Huge Jaguar", + "configName": "Huge Mech Dino", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6ac5734052a98855", + "hashShort": "c72b5d2e4a336159", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://128570959299987", - "huge": true, - "indexDesc": "Found in the Series 3 Mystery Gift!", + "fly": true, + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "goldenThumbnail": "rbxassetid://18640616459", + "indexDesc": "Comes with the Titanic Nightfall Pegasus plush!", "indexObtainable": true, - "name": "Huge Hedgehog", + "name": "Titanic Nightfall Pegasus", "rarity": { "Announce": true, "Color": null, @@ -113140,22 +116864,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://76079961004041", + "thumbnail": "rbxassetid://18640616333", + "titanic": true, }, - "configName": "Huge Hedgehog", + "configName": "Titanic Nightfall Pegasus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a53631ebfd009c72", + "hashShort": "e00bd90efbaa9974", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://118176850997849", - "huge": true, - "indexDesc": "Found in The Forcefield Pack!", + "goldenThumbnail": "rbxassetid://16394133269", + "indexDesc": "Comes with the Titanic Nightfall Wolf plush!", "indexObtainable": true, - "name": "Huge Forcefield Cat", + "name": "Titanic Nightfall Wolf", "rarity": { "Announce": true, "Color": null, @@ -113168,30 +116892,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://85865166902992", + "thumbnail": "rbxassetid://16394133066", + "titanic": true, }, - "configName": "Huge Forcefield Cat", + "configName": "Titanic Nightfall Wolf", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4718c8c3531c4eaf", + "hashShort": "4ae1b8c4872d162d", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.025, - "flyHeightChange": 0, - "swerve": true, - "swerveAggression": 0.2, - "swerveMaxAngle": 60, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://128553511769929", - "huge": true, - "indexDesc": "Found in the Wooden Gift and woodcutting minigame!", + "goldenThumbnail": "rbxassetid://18313091924", + "indexDesc": "Found in the Exclusive SpongeBob Egg!", "indexObtainable": true, - "name": "Huge Trojan Horse", + "name": "Titanic SpongeBob SquarePants", "rarity": { "Announce": true, "Color": null, @@ -113204,65 +116920,41 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://127674627495853", + "thumbnail": "rbxassetid://18313091924", + "titanic": true, }, - "configName": "Huge Trojan Horse", + "configName": "Titanic SpongeBob SquarePants", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "cacc6f0fc1bbf01e", + "hashShort": "c11ac87d0d9a5b12", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 101858796467066, + 11858636117133, + 12962786753372, + 13388017906529, ], - "fromEgg": "Colosseum Egg", "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://76209542172506", - "huge": true, - "indexDesc": "Earned from the Olympus World's final egg!", - "indexObtainable": true, - "maxChance": 9.99987305161161e-9, - "name": "Huge Gorgon", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://82639968294910", + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://14968323255", + "name": "Safari Dog", + "thumbnail": "rbxassetid://14968323471", }, - "configName": "Huge Gorgon", + "configName": "Safari Dog", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5a794b4490814ed1", + "dateModified": "2026-06-27T16:05:28.109Z", + "hashShort": "6d85d4619375ae0f", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "spriteSheet": { - "Height": 5, - "Part": "Face", - "Rate": 0.1, - "Texture1": "Texture1", - "Width": 5, - }, - }, - "goldenThumbnail": "rbxassetid://137351384037490", - "indexDesc": "Found in the Exclusive Cartoon Egg!", - "indexObtainable": true, - "name": "Titanic Cartoon Cat", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://18313099619", + "name": "Gary the Snail", "rarity": { "Announce": true, "Color": null, @@ -113275,22 +116967,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://96042514794947", - "titanic": true, + "thumbnail": "rbxassetid://18313099619", }, - "configName": "Titanic Cartoon Cat", + "configName": "Gary the Snail", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "84cbf390bdd12d2b", + "hashShort": "095857193212d46a", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://98055089478373", - "indexDesc": "Found in The Forever Pack!", - "indexObtainable": true, - "name": "Titanic Yee-haw Cat", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://18313092388", + "name": "Mr. Krabs", "rarity": { "Announce": true, "Color": null, @@ -113303,22 +116993,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://111695166466582", - "titanic": true, + "thumbnail": "rbxassetid://18313092388", }, - "configName": "Titanic Yee-haw Cat", + "configName": "Mr Krabs", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e7b374496537dce9", + "hashShort": "a8fa487e878b9c4f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "rbxassetid://125987151921577", - "name": "Cartoon Demon", + "goldenThumbnail": "rbxassetid://18313092193", + "name": "Patrick Star", "rarity": { "Announce": true, "Color": null, @@ -113331,20 +117019,122 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://93977999024430", + "thumbnail": "rbxassetid://18313092193", }, - "configName": "Cartoon Demon", + "configName": "Patrick Star", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3573de352a79d6f7", + "hashShort": "7ce9e0ff97be80f4", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 12282158835602, + 13292282954584, + 13882262208347, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18673191559", + "name": "Mech Dino", + "thumbnail": "rbxassetid://18673191757", + }, + "configName": "Mech Dino", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:38.166Z", + "hashShort": "61ea1c4a9b208f34", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 11689227029745, + 12621969236844, + 13187796846419, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18673189493", + "name": "Dino Axolotl", + "thumbnail": "rbxassetid://18673189643", + }, + "configName": "Dino Axolotl", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:38.165Z", + "hashShort": "581d3874dcbfda0d", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 11604522486052, + 12448238899572, + 13087138850079, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18673189798", + "name": "Dino Dog", + "thumbnail": "rbxassetid://18673189973", + }, + "configName": "Dino Dog", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:38.168Z", + "hashShort": "b18fff6326a17c21", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 11773931573439, + 12795068662589, + 13288089297562, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18673190187", + "name": "Dino Monkey", + "thumbnail": "rbxassetid://18673190450", + }, + "configName": "Dino Monkey", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:38.167Z", + "hashShort": "f9e15f25dd6b899b", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 12112749748214, + 13161199853462, + 13685637556664, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18673192189", + "name": "Triceratops", + "thumbnail": "rbxassetid://18673192313", + }, + "configName": "Triceratops", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:38.167Z", + "hashShort": "14a1661573555894", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://91533924655300", - "name": "Cartoon Corgi", + "fly": true, + "goldenThumbnail": "rbxassetid://18644344848", + "hideSerial": true, + "name": "Tropical Toucan", "rarity": { "Announce": true, "Color": null, @@ -113357,346 +117147,346 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://80855491776939", + "thumbnail": "rbxassetid://18644345027", }, - "configName": "Cartoon Corgi", + "configName": "Tropical Toucan", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4aa5419ea6483f23", + "hashShort": "955e153819dd304b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://99743156841242", - "name": "Cartoon Bunny", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, + "animations": { + "fadeFrames": [ + { + "duration": 1, + "iconThumbnail": "rbxassetid://18671776352", + "instant": true, + "textureName": "frame1", + }, + { + "duration": 2, + "iconThumbnail": "rbxassetid://18671776118", + "instant": true, + "textureName": "frame2", + }, + ], }, - "thumbnail": "rbxassetid://123996725271489", + "cachedPower": [ + 12197454291908, + 13226859897325, + 13784127622458, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18673190648", + "name": "Electric Dino", + "thumbnail": "rbxassetid://18673191249", }, - "configName": "Cartoon Bunny", + "configName": "Electric Dino", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "15d6b9e3ef16c669", + "dateModified": "2026-06-27T16:05:38.169Z", + "hashShort": "2acbe73bbdd6cebb", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 42118933082793, + 12028045204521, + 13095301721441, + 13586790358632, ], - "fromEgg": "Elysium Egg", "fromWorldNumber": 3, - "fromZoneNumber": 230, - "goldenThumbnail": "rbxassetid://120972531161583", - "maxChance": 0.989010989010989, - "name": "Sacred Boar", + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18673189179", + "name": "Angry Dino", + "thumbnail": "rbxassetid://18673189344", + }, + "configName": "Angry Dino", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:38.172Z", + "hashShort": "e14d8dfe2d943674", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 11943340660827, + 13029164393051, + 13487584366047, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18673191907", + "name": "Research Cat", + "thumbnail": "rbxassetid://18673192043", + }, + "configName": "Research Cat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:38.169Z", + "hashShort": "d494ec8fb4dd5d1e", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://18644342277", + "hideSerial": true, + "name": "Inferno Stealth Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://112808303499187", + "thumbnail": "rbxassetid://18644342367", }, - "configName": "Sacred Boar", + "configName": "Inferno Stealth Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f50725ba0ed2fa98", + "hashShort": "1808ee0db30ace49", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 48247858834760, - ], - "fromEgg": "Elysium Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 230, - "goldenThumbnail": "rbxassetid://99586577583225", - "maxChance": 0.8955223880597015, - "name": "Sacred Deer", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://18644342040", + "hideSerial": true, + "name": "Inferno Stealth Bobcat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://137733111989398", + "thumbnail": "rbxassetid://18644342174", }, - "configName": "Sacred Deer", + "configName": "Inferno Stealth Bobcat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "47edfc8d7d74268c", + "hashShort": "3451d768e723c739", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 51436335216381, - ], - "fromEgg": "Elysium Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 230, - "goldenThumbnail": "rbxassetid://132672801337464", - "maxChance": 0.8910891089108911, - "name": "Ocean Horse", + "exclusiveLevel": 2, + "fly": true, + "goldenThumbnail": "rbxassetid://18644342531", + "hideSerial": true, + "name": "Inferno Stealth Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://86428675522213", + "thumbnail": "rbxassetid://18644342706", }, - "configName": "Ocean Horse", + "configName": "Inferno Stealth Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d54ef895a76cec4c", + "hashShort": "5fec22bd3b0bf256", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.001, - "flyHeightChange": 0, - "swerve": true, - "swerveAggression": 0.2, - "swerveMaxAngle": 60, - }, - "cachedPower": [ - 61079096894322, - ], - "fly": true, - "fromEgg": "Lost Library Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 232, - "goldenThumbnail": "rbxassetid://92402866691353", - "maxChance": 0.9899874321095494, - "name": "Trojan Horse", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://18644342993", + "hideSerial": true, + "name": "Old Wizard Corgi", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://72050462415984", + "thumbnail": "rbxassetid://18644343315", }, - "configName": "Trojan Horse", + "configName": "Old Wizard Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "81da0f3673bca0f6", + "hashShort": "171d59d8ea89a2f7", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 55356366336702, - ], - "fromEgg": "Paradise Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 231, - "goldenThumbnail": "rbxassetid://111916815981399", - "maxChance": 0.8977556109725686, - "name": "Apollo Raven", + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "rbxassetid://93694530173685", + "hideSerial": true, + "name": "Old Wizard Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://91260499963508", + "thumbnail": "rbxassetid://18644343940", }, - "configName": "Apollo Raven", + "configName": "Old Wizard Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "08c064daeba29f89", + "hashShort": "494a11a76dd8e6e4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 71428225249219, - ], + "exclusiveLevel": 3, "fly": true, - "fromEgg": "Nebula Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 233, - "goldenThumbnail": "rbxassetid://86079929733979", - "maxChance": 0.00999987305161161, - "name": "Athena Owl", + "goldenThumbnail": "rbxassetid://18644344108", + "hideSerial": true, + "name": "Old Wizard Owl", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://71120852277996", + "thumbnail": "rbxassetid://18644344198", }, - "configName": "Athena Owl", + "configName": "Old Wizard Owl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5593fd017b578fb3", + "hashShort": "444bdcd8a421d8e4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 94653590026883, - ], - "fromEgg": "Colosseum Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://95151048796770", - "maxChance": 0.000002499968262902903, - "name": "Gorgon", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://18644344299", + "hideSerial": true, + "name": "Tropical Flamingo", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://107869225206611", + "thumbnail": "rbxassetid://18644344373", }, - "configName": "Gorgon", + "configName": "Tropical Flamingo", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "681954e91f55af8c", + "hashShort": "d0720c4abea5c442", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 98594070450262, - ], - "fromEgg": "Colosseum Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://136171113347678", - "maxChance": 1.849976514548148e-7, - "name": "Zeus Bull", + "exclusiveLevel": 2, + "fly": true, + "goldenThumbnail": "rbxassetid://18644344488", + "hideSerial": true, + "name": "Tropical Parrot", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://126643741129826", + "thumbnail": "rbxassetid://18644344647", }, - "configName": "Zeus Bull", + "configName": "Tropical Parrot", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d302b49931d10999", + "hashShort": "b4ab42cd705377b3", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 92240113523206, - ], - "fromEgg": "Colosseum Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://123474245616789", - "maxChance": 0.000009999873051611612, - "name": "Artemis Bear", + "goldenThumbnail": "rbxassetid://18741937315", + "huge": true, + "indexDesc": "Found in the Dino Pack!", + "indexObtainable": true, + "name": "Huge Hydra Dino", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://78157353231604", + "thumbnail": "rbxassetid://18741937148", }, - "configName": "Artemis Bear", + "configName": "Huge Hydra Dino", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2ee56e9f25463fd7", + "hashShort": "3d61fb68550b0e79", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://125592299400707", + "goldenThumbnail": "rbxassetid://18741936966", "huge": true, - "indexDesc": "Reward in the 2024 Blimp Dragon Clan Battle!", + "indexDesc": "Earned from the Dino Tycoon's final egg!", "indexObtainable": true, - "name": "Huge Blimp Dragon", + "name": "Huge Egg Dino", "rarity": { "Announce": true, "Color": null, @@ -113709,22 +117499,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://113409897234634", + "thumbnail": "rbxassetid://18741936725", }, - "configName": "Huge Blimp Dragon", + "configName": "Huge Egg Dino", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b04dcc08a846afae", + "hashShort": "58665bf411ffe2fe", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://106174951594367", + "goldenThumbnail": "rbxassetid://18758757408", "huge": true, - "indexDesc": "Earned from the 2024 "Line for a Huge Pet" Eggs!", + "indexDesc": "Earned from the Dino Tycoon's meteor showers!", "indexObtainable": true, - "name": "Huge Baby Kitten", + "name": "Huge Triceratops", "rarity": { "Announce": true, "Color": null, @@ -113737,22 +117527,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://108106366016899", + "thumbnail": "rbxassetid://18758757156", }, - "configName": "Huge Baby Kitten", + "configName": "Huge Triceratops", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7198df3d1b5956f6", + "hashShort": "faff3d5780aa8b56", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://104430030513277", + "goldenThumbnail": "rbxassetid://18758705217", "huge": true, - "indexDesc": "Earned from the 2024 "Line for a Huge Pet" Egg Room!", + "indexDesc": "Earned from the Dino Tycoon's secret lab rooms!", "indexObtainable": true, - "name": "Huge Toy Chest Mimic", + "name": "Huge Raptor", "rarity": { "Announce": true, "Color": null, @@ -113765,22 +117555,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://111386850399193", + "thumbnail": "rbxassetid://18758705093", }, - "configName": "Huge Toy Chest Mimic", + "configName": "Huge Raptor", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8c10e8d4f8c03f09", + "hashShort": "8f0e3ea53f0dd8aa", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://92926056587394", + "goldenThumbnail": "rbxassetid://14976397095", "huge": true, - "indexDesc": "Earned from the 2024 "Line for a Huge Pet" Leaderboards!", + "indexDesc": "Tied to the Huge Plush merch in stores!", "indexObtainable": true, - "name": "Huge Baby Piglet", + "name": "Huge Dino Cat", "rarity": { "Announce": true, "Color": null, @@ -113793,30 +117583,21 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://115008493887428", + "thumbnail": "rbxassetid://14976397288", }, - "configName": "Huge Baby Piglet", + "configName": "Huge Dino Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "997b98cf4da158d9", + "hashShort": "289b6cf5d712fb0c", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0, - "flyHeightChange": 0, - "swerve": true, - "swerveAggression": 0, - "swerveMaxAngle": 0, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://72519954771846", - "huge": true, - "indexDesc": "Found in the Paw Print Pack!", + "goldenThumbnail": "rbxassetid://17269862235", + "indexDesc": "Comes with the Titanic Blueberry Cow plush!", "indexObtainable": true, - "name": "Huge Toy Duck", + "name": "Titanic Blueberry Cow", "rarity": { "Announce": true, "Color": null, @@ -113829,22 +117610,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://118862307433647", + "thumbnail": "rbxassetid://17269862161", + "titanic": true, }, - "configName": "Huge Toy Duck", + "configName": "Titanic Blueberry Cow", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5462a1d0783c1980", + "hashShort": "23c457c5bccafe8a", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://102415075721818", - "huge": true, - "indexDesc": "Found in the Adoption Gift!", + "goldenThumbnail": "rbxassetid://17269848775", + "indexDesc": "Comes with the Titanic Orange Axolotl plush!", "indexObtainable": true, - "name": "Huge Baby Puppy", + "name": "Titanic Orange Axolotl", "rarity": { "Announce": true, "Color": null, @@ -113857,138 +117638,181 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://133001320495204", + "thumbnail": "rbxassetid://17269848594", + "titanic": true, }, - "configName": "Huge Baby Puppy", + "configName": "Titanic Orange Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "54bbc8114bd843bd", + "hashShort": "1d7e0fa100c34abf", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0, - "flyHeightChange": 0, - "swerve": true, - "swerveAggression": 0, - "swerveMaxAngle": 0, - }, "cachedPower": [ - 95982270617357, + 12620977010377, + 13551627118409, + 14271278454084, ], - "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://85483094595689", - "name": "Toy Duck", - "thumbnail": "rbxassetid://76328663746051", + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://14968322975", + "name": "Safari Cat", + "thumbnail": "rbxassetid://14968323113", }, - "configName": "Toy Duck", + "configName": "Safari Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "973d80b1f95e383f", + "dateModified": "2026-06-27T16:05:19.912Z", + "hashShort": "4842ab33d7d53dce", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 80577708666423, + 12451567922990, + 13422422482516, + 14077471500244, ], "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://127211185486583", - "name": "Plushie Elephant", - "thumbnail": "rbxassetid://136261079191593", + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18741612330", + "name": "Egg Triceratops", + "thumbnail": "rbxassetid://18741612556", }, - "configName": "Plushie Elephant", + "configName": "Egg Triceratops", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9bc38b70ebde3072", + "dateModified": "2026-06-27T16:05:38.174Z", + "hashShort": "0e4c48a1836b4708", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 75837843450751, + 12790386097765, + 13679905440024, + 14463695936506, ], "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://112077972007097", - "name": "Plushie Fox", - "thumbnail": "rbxassetid://109160933141913", + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18741613822", + "name": "Stegosaurus", + "thumbnail": "rbxassetid://18741614095", }, - "configName": "Plushie Fox", + "configName": "Stegosaurus", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2453239840bee385", + "dateModified": "2026-06-27T16:05:38.175Z", + "hashShort": "fb44706a33211284", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 87983748065911, + 12536272466683, + 13487141123452, + 14174549461648, ], "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://108459051987591", - "name": "Baby Kitten", - "thumbnail": "rbxassetid://110730159918605", + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18741611801", + "name": "Egg Spitting Dino", + "thumbnail": "rbxassetid://18741612079", }, - "configName": "Baby Kitten", + "configName": "Egg Spitting Dino", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4c83ccf919fcd12d", + "dateModified": "2026-06-27T16:05:38.178Z", + "hashShort": "5ec62bf46231cb63", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 104980608487735, + 12705681554071, + 13615881536389, + 14367660081053, ], "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://86865944627088", - "name": "Toy Chest Mimic", - "thumbnail": "rbxassetid://136085318692498", + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18741613362", + "name": "Research Dog", + "thumbnail": "rbxassetid://18741613571", }, - "configName": "Toy Chest Mimic", + "configName": "Research Dog", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "71637d71cbe42c77", + "dateModified": "2026-06-27T16:05:38.179Z", + "hashShort": "26b4033170f9a6fc", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 83421627795827, + 12366863379296, + 13357470120185, + 13980042956748, ], "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://99631548281081", - "name": "Baby Piglet", - "thumbnail": "rbxassetid://111064999087790", + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18741611206", + "name": "Egg Dino", + "thumbnail": "rbxassetid://18741611563", }, - "configName": "Baby Piglet", + "configName": "Egg Dino", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:38.179Z", + "hashShort": "ad65736fc0de69b2", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 12959795185153, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18741612820", + "name": "Hydra Dino", + "thumbnail": "rbxassetid://18741613102", + }, + "configName": "Hydra Dino", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "128918a4f600abfd", + "hashShort": "baf218f22adfebf4", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 12875090641459, + 13743699885629, + 14559387604914, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18758698348", + "name": "Raptor", + "thumbnail": "rbxassetid://18758698199", + }, + "configName": "Raptor", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:38.180Z", + "hashShort": "f2f1a124037758fc", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://139665951915416", + "goldenThumbnail": "rbxassetid://14976462105", "huge": true, - "indexDesc": "Earned from the 2024 "Line for a Titanic Pet" Secret Egg Room!", + "indexDesc": "Reward in the 2024 Ice Cream Clan Battle!", "indexObtainable": true, - "name": "Huge Principal Anteater", + "name": "Huge Ice Cream Cone", "rarity": { "Announce": true, "Color": null, @@ -114001,22 +117825,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://124723336680703", + "thumbnail": "rbxassetid://14976462189", }, - "configName": "Huge Principal Anteater", + "configName": "Huge Ice Cream Cone", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "457a501d67f27b21", + "hashShort": "76f5151d47a6edda", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://76091142779643", + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in the Paper Pack!", + "indexDesc": "Found in the Exclusive Classic Egg!", "indexObtainable": true, - "name": "Huge Coach Tiger", + "name": "Huge Classic Dog", "rarity": { "Announce": true, "Color": null, @@ -114029,22 +117853,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://72728231743832", + "thumbnail": "rbxassetid://18883372166", }, - "configName": "Huge Coach Tiger", + "configName": "Huge Classic Dog", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "45da4b0db3ba1fdd", + "hashShort": "1c38832e53dbf3ff", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://78698394564978", + "fly": true, + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in the School Gift!", + "indexDesc": "Found in the Exclusive Classic Egg!", "indexObtainable": true, - "name": "Huge Librarian Beaver", + "name": "Huge Classic Dragon", "rarity": { "Announce": true, "Color": null, @@ -114057,22 +117882,26 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://103600701852967", + "thumbnail": "rbxassetid://18883372375", }, - "configName": "Huge Librarian Beaver", + "configName": "Huge Classic Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "257e0a36abe71547", + "hashShort": "8dc4877b7e43460a", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://127258024115414", + "fly": true, + "goldenThumbnail": "rbxassetid://18882975285", "huge": true, - "indexDesc": "Earned from the 2024 "Line for a Titanic Pet" Egg Room!", + "indexDesc": "1 in 40,000,000 base chance from the RNG Event", "indexObtainable": true, - "name": "Huge Teacher Cat", + "name": "Huge Abyssal Jellyfish", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, "rarity": { "Announce": true, "Color": null, @@ -114085,22 +117914,26 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://108033517958051", + "thumbnail": "rbxassetid://18882975166", }, - "configName": "Huge Teacher Cat", + "configName": "Huge Abyssal Jellyfish", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "db377a561ba84bde", + "hashShort": "9db5bda4cc5f3e0d", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://107375697404776", + "fly": true, + "goldenThumbnail": "rbxassetid://18882976037", "huge": true, - "indexDesc": "Earned from the 2024 "Line for a Titanic Pet" Eggs!", + "indexDesc": "1 in 30,000,000 base chance from the RNG Event", "indexObtainable": true, - "name": "Huge Student Corgi", + "name": "Huge Mechatronic Robot", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, "rarity": { "Announce": true, "Color": null, @@ -114113,22 +117946,26 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://129996809182527", + "thumbnail": "rbxassetid://18882975779", }, - "configName": "Huge Student Corgi", + "configName": "Huge Mechatronic Robot", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "62f3dc11903a00e1", + "hashShort": "0b42e2031eeb312b", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "", + "fly": true, + "goldenThumbnail": "rbxassetid://18882974998", "huge": true, - "indexDesc": "Found in the Exclusive Chad Egg!", + "indexDesc": "1 in 49,999,999 base chance from the RNG Event", "indexObtainable": true, - "name": "Huge Chad Bunny", + "name": "Huge Corrupt Butterfly", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, "rarity": { "Announce": true, "Color": null, @@ -114141,22 +117978,26 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://106226869216523", + "thumbnail": "rbxassetid://18882974863", }, - "configName": "Huge Chad Bunny", + "configName": "Huge Corrupt Butterfly", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "65e44559a9914a68", + "hashShort": "f1c8a9fc10e30846", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "", + "fly": true, + "goldenThumbnail": "rbxassetid://18882975615", "huge": true, - "indexDesc": "Found in the Exclusive Chad Egg!", + "indexDesc": "1 in 50,000,000 base chance from the RNG Event", "indexObtainable": true, - "name": "Huge Chad Elephant", + "name": "Huge Temporal Owl", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, "rarity": { "Announce": true, "Color": null, @@ -114169,24 +118010,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://125515994456210", + "thumbnail": "rbxassetid://18882992626", }, - "configName": "Huge Chad Elephant", + "configName": "Huge Temporal Owl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "21952afc8a8c7d4a", + "hashShort": "632c95a5bb2411ed", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "flyingTitanic": true, - "flyingTitanicAlwaysFly": true, - "goldenThumbnail": "rbxassetid://108904485259442", - "indexDesc": "Comes with the Titanic Samurai Dragon plush!", + "goldenThumbnail": "rbxassetid://18886114341", + "huge": true, + "indexDesc": "Found in the The Aura Pack!", "indexObtainable": true, - "name": "Titanic Samurai Dragon", + "name": "Huge Quantum Agony", "rarity": { "Announce": true, "Color": null, @@ -114199,22 +118039,21 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://125481811562940", - "titanic": true, + "thumbnail": "rbxassetid://18886114160", }, - "configName": "Titanic Samurai Dragon", + "configName": "Huge Quantum Agony", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "bf4f8259e4ea01f1", + "hashShort": "f31ded4c8d28c24b", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://128737774717641", - "indexDesc": "Comes with the Titanic Gingerbread Cat plush!", + "goldenThumbnail": "rbxassetid://17269939076", + "indexDesc": "Comes with the Titanic Pineapple Cat plush!", "indexObtainable": true, - "name": "Titanic Gingerbread Cat", + "name": "Titanic Pineapple Cat", "rarity": { "Announce": true, "Color": null, @@ -114227,25 +118066,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://123881708128597", + "thumbnail": "rbxassetid://17269938973", "titanic": true, }, - "configName": "Titanic Gingerbread Cat", + "configName": "Titanic Pineapple Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8aae751e486b06ad", + "hashShort": "f2090695ce4f4ba0", }, { "category": "Titanic", "collection": "Pets", "configData": { - "fly": true, - "flyingTitanic": true, - "flyingTitanicAlwaysFly": true, - "goldenThumbnail": "rbxassetid://125504366767960", - "indexDesc": "Comes with Christmas Merch Rewards 2024", + "goldenThumbnail": "rbxassetid://17269957190", + "indexDesc": "Comes with the Titanic Dolphin plush!", "indexObtainable": true, - "name": "Titanic Gingerbread Dragon", + "name": "Titanic Dolphin", "rarity": { "Announce": true, "Color": null, @@ -114258,22 +118094,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://110203202746890", + "thumbnail": "rbxassetid://17269957040", "titanic": true, }, - "configName": "Titanic Gingerbread Dragon", + "configName": "Titanic Dolphin", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ee929b29b28313f4", + "hashShort": "35be12bc679d8a5f", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://106977433199370", - "indexDesc": "Comes with the Titanic Koi Fish plush!", + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Classic Egg!", "indexObtainable": true, - "name": "Titanic Koi Fish", + "name": "Titanic Classic Cat", "rarity": { "Announce": true, "Color": null, @@ -114286,22 +118122,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://86724162375646", + "thumbnail": "rbxassetid://18883420114", "titanic": true, }, - "configName": "Titanic Koi Fish", + "configName": "Titanic Classic Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "83d30100a9088962", + "hashShort": "9500ccdd859f2066", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://82423229958271", - "indexDesc": "Comes with the Titanic Giraffe plush!", + "animations": { + "ridingCameraOffset": null, + }, + "fly": true, + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "goldenThumbnail": "rbxassetid://18882936384", + "indexDesc": "1 in 3,000,000,000 base chance from the RNG Event", "indexObtainable": true, - "name": "Titanic Giraffe", + "name": "Titanic Arcane Cat", "rarity": { "Announce": true, "Color": null, @@ -114314,22 +118156,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://82353035401807", + "thumbnail": "rbxassetid://18882936169", "titanic": true, }, - "configName": "Titanic Giraffe", + "configName": "Titanic Arcane Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7f891c202871a31b", + "hashShort": "30c0c0463a81081a", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://79697476627421", - "indexDesc": "Comes with the Titanic Calico Cat plush!", - "indexObtainable": true, - "name": "Titanic Calico Cat", + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "", + "name": "Classic Dragon", "rarity": { "Announce": true, "Color": null, @@ -114342,22 +118184,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://89706854037994", - "titanic": true, + "thumbnail": "rbxassetid://18883358889", }, - "configName": "Titanic Calico Cat", + "configName": "Classic Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8a9ef0296d7b2ad3", + "hashShort": "aaaad27bccbc7489", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://101595227838905", - "indexDesc": "Earned from the 2024 "Line for a Titanic Pet" Egg Room!", - "indexObtainable": true, - "name": "Titanic Teacher Cat", + "exclusiveLevel": 2, + "goldenThumbnail": "", + "name": "Classic Bunny", "rarity": { "Announce": true, "Color": null, @@ -114370,22 +118210,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://104387672853610", - "titanic": true, + "thumbnail": "rbxassetid://18883358224", }, - "configName": "Titanic Teacher Cat", + "configName": "Classic Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f58261e9bcd52108", + "hashShort": "04aa060280bb7fa1", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { + "exclusiveLevel": 1, "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Chad Egg!", - "indexObtainable": true, - "name": "Titanic Chad Gorilla", + "name": "Classic Dog", "rarity": { "Announce": true, "Color": null, @@ -114398,209 +118236,307 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://101924214050321", - "titanic": true, + "thumbnail": "rbxassetid://18883358629", }, - "configName": "Titanic Chad Gorilla", + "configName": "Classic Dog", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8cfa6bf175f5dedd", + "hashShort": "7e4469cb412f1354", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 80577708666423, + 14174775983761, + 15226598735432, + 16026264220214, ], + "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://98216387032846", - "name": "Teacher Cat", - "thumbnail": "rbxassetid://86384004045055", + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18883451050", + "name": "Love Corgi", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://18883451183", }, - "configName": "Teacher Cat", + "configName": "Love Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0c864bc2edba64cd", + "dateModified": "2026-06-27T16:05:38.189Z", + "hashShort": "7304c63996dd0c52", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 106180386870451, + 12779798029803, + 13671915022158, + 14451710309707, ], + "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://120151090288379", - "name": "Librarian Beaver", - "thumbnail": "rbxassetid://92998696298472", + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18882334759", + "name": "Umbrella Bear", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://18882334573", }, - "configName": "Librarian Beaver", + "configName": "Umbrella Bear", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0396e3a71010918b", + "dateModified": "2026-06-27T16:05:38.186Z", + "hashShort": "72070d09c119e894", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 83421627795827, + 14655705883210, + 15688477876465, + 16524479867838, ], "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://140441065542741", - "name": "Student Corgi", - "thumbnail": "rbxassetid://76345973092096", + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18882339024", + "name": "Electric Werewolf", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://18882338864", }, - "configName": "Student Corgi", + "configName": "Electric Werewolf", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "41ffbfd5f73eac75", + "dateModified": "2026-06-27T16:05:38.187Z", + "hashShort": "cec45fd38ed7bc70", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 87983748065911, + 13702283450969, + 14864147902540, + 15482587970876, ], "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://98919830084882", - "name": "Coach Tiger", - "thumbnail": "rbxassetid://87329789592231", + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18882338137", + "name": "Hell Monkey", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://18882337967", }, - "configName": "Coach Tiger", + "configName": "Hell Monkey", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f9f97fdf8ee6d6f0", + "dateModified": "2026-06-27T16:05:38.188Z", + "hashShort": "0e7d07615dd13d6c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 107980054444527, + 13229790918176, + 14360901217025, + 14929286660979, ], "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://105973492854063", - "name": "Principal Anteater", - "thumbnail": "rbxassetid://104809873146368", + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18882337782", + "name": "Ice Bunny", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://18882337633", }, - "configName": "Principal Anteater", + "configName": "Ice Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5d0976b46b625794", + "dateModified": "2026-06-27T16:05:38.187Z", + "hashShort": "7479882a618c3ed3", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 98381827382791, + 15718814081992, + 16955170732968, + 17766934068335, ], "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://113777502865185", - "name": "Nurse Shark", - "thumbnail": "rbxassetid://140159415590387", + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18882336750", + "name": "Plasma Bull", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://18882336565", }, - "configName": "Nurse Shark", + "configName": "Plasma Bull", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "277546b6d43576a9", + "dateModified": "2026-06-27T16:05:38.187Z", + "hashShort": "e51f2d1feec7c9cb", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "", - "name": "Buff Doge", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://113564767995348", + "cachedPower": [ + 16829382468219, + 18346764673412, + 18993044153172, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18882337072", + "name": "Lunar Bat", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://18882336919", }, - "configName": "Buff Doge", + "configName": "Lunar Bat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "79c66f122ce269d1", + "dateModified": "2026-06-27T16:05:38.189Z", + "hashShort": "d639e86c23dfbbc3", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "", - "name": "Chad Elephant", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://110231925279401", + "cachedPower": [ + 11939811304840, + 13026403463699, + 13483442972019, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18882338585", + "name": "Enchanted Squirrel", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://18882338352", }, - "configName": "Chad Elephant", + "configName": "Enchanted Squirrel", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3462d5f19e657a76", + "dateModified": "2026-06-27T16:05:38.191Z", + "hashShort": "589d9247a467d721", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "", - "name": "Chad Bunny", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://90619861938623", + "cachedPower": [ + 17427380830034, + 18876732894948, + 19690530164802, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18882339396", + "name": "Demon Cyclops", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://18882339207", }, - "configName": "Chad Bunny", + "configName": "Demon Cyclops", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8531dcb5dc93b6a7", + "dateModified": "2026-06-27T16:05:40.156Z", + "hashShort": "8f263556929c99f6", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 15187259982601, + 16544584700247, + 17151055019253, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18886073193", + "name": "Angel Cow", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://18886073398", + }, + "configName": "Angel Cow", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:40.150Z", + "hashShort": "80ea61d099123d8f", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 12359804667321, + 13352046839534, + 13971908035772, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18882340169", + "name": "Cloud Cat", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://18882339868", + }, + "configName": "Cloud Cat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:40.153Z", + "hashShort": "b1bc04b1cac24268", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 16250368181383, + 17358780599919, + 18372348868760, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18882335124", + "name": "Sun Parrot", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://18882334922", + }, + "configName": "Sun Parrot", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:40.152Z", + "hashShort": "b07ba7e6bf6addde", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://104439981305189", + "fly": true, + "goldenThumbnail": "rbxassetid://18978050572", "huge": true, - "indexDesc": "Earned from the 2024 Autumn Event!", + "indexDesc": "Found in the Fire Aura Pack", "indexObtainable": true, - "name": "Huge Scarecrow Dog", + "name": "Huge Atomic Forged Shark", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, "rarity": { "Announce": true, "Color": null, @@ -114613,22 +118549,25 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://137318518159218", + "thumbnail": "rbxassetid://18978050454", }, - "configName": "Huge Scarecrow Dog", + "configName": "Huge Atomic Forged Shark", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "eae640d46d8d3d95", + "hashShort": "b2b0d328a773a323", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://81782238858280", + "goldenThumbnail": "rbxassetid://18978050771", "huge": true, - "indexDesc": "Earned from the 2024 Autumn Event!", + "indexDesc": "1 in 30,000,000 base chance from the RNG Event", "indexObtainable": true, - "name": "Huge Pumpkin Spice Cat", + "name": "Huge Nuclear Wild Dog", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, "rarity": { "Announce": true, "Color": null, @@ -114641,22 +118580,25 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://126378743286438", + "thumbnail": "rbxassetid://18978050650", }, - "configName": "Huge Pumpkin Spice Cat", + "configName": "Huge Nuclear Wild Dog", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "34131a0a7d1e8297", + "hashShort": "2e8abc0a2cf17453", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://118806518304982", + "goldenThumbnail": "rbxassetid://18978050941", "huge": true, - "indexDesc": "Earned from the 2024 Autumn Event!", + "indexDesc": "1 in 40,000,000 base chance from the RNG Event", "indexObtainable": true, - "name": "Huge Corn Cat", + "name": "Huge Shuriken Corgi", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, "rarity": { "Announce": true, "Color": null, @@ -114669,22 +118611,26 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://115417271549195", + "thumbnail": "rbxassetid://18978050838", }, - "configName": "Huge Corn Cat", + "configName": "Huge Shuriken Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0a8ab29ad155a7ef", + "hashShort": "87aa4afb503de27f", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://110089451259851", + "fly": true, + "goldenThumbnail": "rbxassetid://18978051137", "huge": true, - "indexDesc": "Earned from the 2024 Autumn Event!", + "indexDesc": "1 in 50,000,000 base chance from the RNG Event", "indexObtainable": true, - "name": "Huge Autumn Retriever", + "name": "Huge Sorcerer Bear", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, "rarity": { "Announce": true, "Color": null, @@ -114697,21 +118643,27 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://127760564297635", + "thumbnail": "rbxassetid://18978051040", }, - "configName": "Huge Autumn Retriever", + "configName": "Huge Sorcerer Bear", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f044a07f86d350f8", + "hashShort": "3888b7f374b38cfa", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://124806295919284", - "indexDesc": "Earned from the 2024 Autumn Event!", + "animations": { + "ridingCameraOffset": null, + }, + "fly": true, + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "goldenThumbnail": "rbxassetid://18978058202", + "indexDesc": "1 in 3,000,000,000 base chance from the RNG Event", "indexObtainable": true, - "name": "Titanic Pilgrim Turkey", + "name": "Titanic Arcane Pyro Cat", "rarity": { "Announce": true, "Color": null, @@ -114724,185 +118676,93 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://126580879775166", + "thumbnail": "rbxassetid://18978058000", "titanic": true, }, - "configName": "Titanic Pilgrim Turkey", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0f9387fcfdfb9858", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 85317573882095, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://87995424272436", - "name": "Beagle", - "thumbnail": "rbxassetid://81880665027748", - }, - "configName": "Beagle", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d331ffde2394cd0f", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 89583452576200, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://106692887773129", - "name": "Beaver", - "thumbnail": "rbxassetid://79644601164207", - }, - "configName": "Beaver", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e1e756ad7f5bb74d", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 109329805125083, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://102691898381897", - "name": "Corn Cat", - "thumbnail": "rbxassetid://121260329564656", - }, - "configName": "Corn Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "717ae19a6c2a248b", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 106180386870451, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://131995908667948", - "name": "Pumpkin Spice Cat", - "thumbnail": "rbxassetid://91506370579701", - }, - "configName": "Pumpkin Spice Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d98e8ea42141ce2d", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 101981162530942, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://71472444439564", - "name": "Autumn Retriever", - "thumbnail": "rbxassetid://126927862629934", - }, - "configName": "Autumn Retriever", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6001fbd2203c4dd3", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 98381827382791, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://105279543736657", - "name": "Scarecrow Dog", - "thumbnail": "rbxassetid://112962283822788", - }, - "configName": "Scarecrow Dog", + "configName": "Titanic Arcane Pyro Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "418652cafd6e8a34", + "hashShort": "f316ef9eee498798", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 94915800943831, + 18025379191849, + 19333966401911, + 20376380425246, ], + "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://137485011393803", - "name": "Orange Squirrel", - "thumbnail": "rbxassetid://83763838823621", + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18977984319", + "name": "Comet Pony", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://18977984420", }, - "configName": "Orange Squirrel", + "configName": "Comet Pony", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ac682dfa0c7bd987", + "dateModified": "2026-06-27T16:05:40.151Z", + "hashShort": "0b0436f979cdb646", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 91716391923252, + 17726380010942, + 19106308949288, + 20034894246312, ], "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://75460104475063", - "name": "Red Fox", - "thumbnail": "rbxassetid://87937949277481", + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18977984543", + "name": "Demolition Husky", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://18977984672", }, - "configName": "Red Fox", + "configName": "Demolition Husky", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "aac980f7e5df908a", + "dateModified": "2026-06-27T16:05:40.157Z", + "hashShort": "4f01905dd9603d3a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 87450513229148, + 14921482932905, + 16232171973167, + 16839119206403, ], "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://111118515585666", - "name": "Mouse", - "thumbnail": "rbxassetid://104584169122370", + "fromZoneNumber": 219, + "goldenThumbnail": "rbxassetid://18977984033", + "name": "Blurred Monkey", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://18977984197", }, - "configName": "Mouse", + "configName": "Blurred Monkey", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "27a5435d7d47e4d8", + "dateModified": "2026-06-27T16:05:40.161Z", + "hashShort": "ee8b4b30bb2109de", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976457884", + "goldenThumbnail": "rbxassetid://18539512852", "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", + "indexDesc": "Reward in Free Rewards Gifts!", "indexObtainable": true, - "name": "Huge Honey Badger", + "name": "Huge Kawaii Tiger", "rarity": { "Announce": true, "Color": null, @@ -114915,22 +118775,29 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976457989", + "thumbnail": "rbxassetid://18539512677", }, - "configName": "Huge Honey Badger", + "configName": "Huge Kawaii Tiger", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "32c63dd79272309e", + "hashShort": "67ffa25ea8dd7dee", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://87051281205367", + "cachedPower": [ + 31367024047429, + ], + "fromEgg": "Kawaii Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 224, + "goldenThumbnail": "rbxassetid://14976376349", "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", + "indexDesc": "Earned from the Kawaii World's final egg!", "indexObtainable": true, - "name": "Huge Beaver", + "maxChance": 9.99987055167571e-9, + "name": "Huge Chef Monkey", "rarity": { "Announce": true, "Color": null, @@ -114943,22 +118810,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://137999717729131", + "thumbnail": "rbxassetid://14976376567", }, - "configName": "Huge Beaver", + "configName": "Huge Chef Monkey", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "762f29162183a0b2", + "hashShort": "7bcbb865ab210498", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976476543", + "goldenThumbnail": "rbxassetid://14976561656", "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", + "indexDesc": "Found in the Strawberry Pack!", "indexObtainable": true, - "name": "Huge Llama", + "name": "Huge Strawberry Cow", "rarity": { "Announce": true, "Color": null, @@ -114971,22 +118838,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976476776", + "thumbnail": "rbxassetid://14976561960", }, - "configName": "Huge Llama", + "configName": "Huge Strawberry Cow", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "086ba8ce407e8628", + "hashShort": "58b137b566f78084", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14976526672", + "goldenThumbnail": "rbxassetid://14976388843", "huge": true, - "indexDesc": "Earned through fishing!", + "indexDesc": "Earned from the Kawaii World's Tokyo Alley!", "indexObtainable": true, - "name": "Huge Poseidon Dog", + "name": "Huge Cupcake Unicorn", "rarity": { "Announce": true, "Color": null, @@ -114999,22 +118866,28 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976526838", + "thumbnail": "rbxassetid://14976388989", }, - "configName": "Huge Poseidon Dog", + "configName": "Huge Cupcake Unicorn", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d55dc9ac035a9361", + "hashShort": "0f6c25df0ffb662e", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://73918327296432", + "animations": { + "swerve": true, + "swerveAggression": 1, + "swerveMaxAngle": 60, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://14976453191", "huge": true, - "indexDesc": "Found in the Crystal Chest!", + "indexDesc": "Found occasionally in Active Huge Pets!", "indexObtainable": true, - "name": "Huge Pastel Deer", + "name": "Huge Helicopter Cat", "rarity": { "Announce": true, "Color": null, @@ -115027,22 +118900,30 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://117144432225186", + "thumbnail": "rbxassetid://14976453343", }, - "configName": "Huge Pastel Deer", + "configName": "Huge Helicopter Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "28040f5e002198eb", + "hashShort": "f76872021c21e185", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://90829219126989", + "animations": { + "flyHeight": 0.025, + "flyHeightChange": 0, + "swerve": true, + "swerveAggression": 1, + "swerveMaxAngle": 60, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://14976547989", "huge": true, - "indexDesc": "Found in the Tech Chest!", + "indexDesc": "Found occasionally in Active Huge Pets!", "indexObtainable": true, - "name": "Huge Circuit Cat", + "name": "Huge Skateboard Bulldog", "rarity": { "Announce": true, "Color": null, @@ -115055,22 +118936,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://107640739737429", + "thumbnail": "rbxassetid://14976548072", }, - "configName": "Huge Circuit Cat", + "configName": "Huge Skateboard Bulldog", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4aeaa3e9b9c0748d", + "hashShort": "c12f24fbf128e618", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://83419827753394", + "goldenThumbnail": "rbxassetid://14976428883", "huge": true, - "indexDesc": "Found in the Void Chest!", + "indexDesc": "Found occasionally in Active Huge Pets!", "indexObtainable": true, - "name": "Huge Void Alien", + "name": "Huge Fancy Axolotl", "rarity": { "Announce": true, "Color": null, @@ -115083,22 +118964,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://95087944303198", + "thumbnail": "rbxassetid://14976429135", }, - "configName": "Huge Void Alien", + "configName": "Huge Fancy Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "dcf6469588768557", + "hashShort": "f16dd411f792df13", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://75234522483600", + "goldenThumbnail": "rbxassetid://14976448750", "huge": true, - "indexDesc": "Found in the Hacker Chest!", + "indexDesc": "Found occasionally in Active Huge Pets!", "indexObtainable": true, - "name": "Huge Hacked Skeleton", + "name": "Huge Guest Noob", "rarity": { "Announce": true, "Color": null, @@ -115111,22 +118992,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://134082855413685", + "thumbnail": "rbxassetid://14976448855", }, - "configName": "Huge Hacked Skeleton", + "configName": "Huge Guest Noob", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1c2e8aa93823aa2c", + "hashShort": "cc1a31a9d1d72298", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://79169977967868", + "fly": true, + "goldenThumbnail": "rbxassetid://96253919977978", "huge": true, - "indexDesc": "Found in Digsite!", + "indexDesc": "Found in the Exclusive Luchador Egg!", "indexObtainable": true, - "name": "Huge Sand Turtle", + "name": "Huge Luchador Eagle", "rarity": { "Announce": true, "Color": null, @@ -115139,23 +119021,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://135909325660471", + "thumbnail": "rbxassetid://92111973498255", }, - "configName": "Huge Sand Turtle", + "configName": "Huge Luchador Eagle", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0177ac72bbe3a265", + "hashShort": "9b33d3900f057f32", }, { "category": "Huge", "collection": "Pets", "configData": { - "evolved": true, - "goldenThumbnail": "", + "goldenThumbnail": "rbxassetid://125601035222540", "huge": true, - "indexDesc": "Earned from evolving Huge Elephants!", + "indexDesc": "Found in the Exclusive Luchador Egg!", "indexObtainable": true, - "name": "Huge Evolved Elephant", + "name": "Huge Luchador Coyote", "rarity": { "Announce": true, "Color": null, @@ -115168,23 +119049,21 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://94951927058710", + "thumbnail": "rbxassetid://111458078240780", }, - "configName": "Huge Evolved Elephant", + "configName": "Huge Luchador Coyote", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7ff9b8c87e90e0c5", + "hashShort": "c97674d9d2ff2c0d", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "evolved": true, - "goldenThumbnail": "", - "huge": true, - "indexDesc": "Earned from evolving Huge Kangaroos!", + "goldenThumbnail": "rbxassetid://105152814776651", + "indexDesc": "Found in the Exclusive Luchador Egg!", "indexObtainable": true, - "name": "Huge Evolved Kangaroo", + "name": "Titanic Luchador Cat", "rarity": { "Announce": true, "Color": null, @@ -115197,672 +119076,562 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://80169939922601", + "thumbnail": "rbxassetid://105152814776651", + "titanic": true, }, - "configName": "Huge Evolved Kangaroo", + "configName": "Titanic Luchador Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a07f541e1f02c149", + "hashShort": "d3614bbdcefd0c39", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "evolved": true, - "goldenThumbnail": "", - "huge": true, - "indexDesc": "Earned from evolving Huge Bisons!", - "indexObtainable": true, - "name": "Huge Evolved Bison", + "cachedPower": [ + 22556210169372, + 24271710431922, + 25490867129691, + ], + "fromEgg": "Strawberry Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 223, + "goldenThumbnail": "rbxassetid://14968192367", + "maxChance": 0.9899871846158953, + "name": "Chef Monkey", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://98184057731755", + "thumbnail": "rbxassetid://14968192507", }, - "configName": "Huge Evolved Bison", + "configName": "Chef Monkey", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "04c437bdcfb34b8e", + "dateModified": "2026-06-27T16:05:18.076Z", + "hashShort": "34dc90760828bbc3", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.3, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.7, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.3, - }, - "goldenThumbnail": "", - "huge": true, - "indexDesc": "Found in the Exclusive Midnight Egg!", - "indexObtainable": true, - "name": "Huge Midnight Cat", + "cachedPower": [ + 22971191050943, + 24586570361270, + 25963157023712, + ], + "fromEgg": "Strawberry Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 223, + "goldenThumbnail": "rbxassetid://14968201855", + "maxChance": 0.00999987055167571, + "name": "Cupcake Unicorn", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://137864465151841", + "thumbnail": "rbxassetid://14968201936", }, - "configName": "Huge Midnight Cat", + "configName": "Cupcake Unicorn", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "816f00d0badaa5f1", + "dateModified": "2026-06-27T16:05:25.628Z", + "hashShort": "68030858ffb476d8", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.3, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.7, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.3, + "cachedPower": [ + 21575736669575, + 23516626628131, + 24358241424004, + ], + "fromEgg": "Strawberry Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 223, + "goldenThumbnail": "rbxassetid://14968345630", + "maxChance": 0.004967709885742673, + "name": "Strawberry Cow", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Legendary", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 4, + "_id": "Legendary", + "_script": null, }, - "goldenThumbnail": "", - "huge": true, - "indexDesc": "Found in the Exclusive Midnight Egg!", - "indexObtainable": true, - "name": "Huge Midnight Zebra", + "thumbnail": "rbxassetid://14968345764", + }, + "configName": "Strawberry Cow", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:25.626Z", + "hashShort": "f23124db187cbf51", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 20421444089187, + 21857756418454, + 23083436212703, + ], + "fromEgg": "Moonlight Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 222, + "goldenThumbnail": "rbxassetid://14968187331", + "maxChance": 0.09935419771485346, + "name": "Bread Shiba", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://137637076572981", + "thumbnail": "rbxassetid://14968187503", }, - "configName": "Huge Midnight Zebra", + "configName": "Bread Shiba", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "88838e501350c738", + "dateModified": "2026-06-27T16:05:25.634Z", + "hashShort": "3832f7ac79f294d6", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://128206339449259", - "huge": true, - "indexDesc": "Hatched from 2024 Anniversary Gifts!", - "indexObtainable": true, - "name": "Huge Party Corgi", + "cachedPower": [ + 14857742260884, + 16102206912134, + 16763907573450, + ], + "fromEgg": "Sakura Blossom Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 220, + "goldenThumbnail": "rbxassetid://14968240348", + "maxChance": 0.8897676717745923, + "name": "Flower Panda", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://115749071497654", + "thumbnail": "rbxassetid://14968240441", }, - "configName": "Huge Party Corgi", + "configName": "Flower Panda", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8c385bb10a78ae76", + "dateModified": "2026-06-27T16:05:25.624Z", + "hashShort": "99a9f7bfd6b8df18", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://116083930568066", - "huge": true, - "indexDesc": "Earned from the 2024 Autumn Event!", - "indexObtainable": true, - "name": "Huge Red Wolf", + "cachedPower": [ + 16719874717163, + 18123719099031, + 18864037549283, + ], + "fromEgg": "Dream Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 221, + "goldenThumbnail": "rbxassetid://14968324038", + "maxChance": 0.009886307464162136, + "name": "Sailor Narwhal", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://138120594404992", + "thumbnail": "rbxassetid://14968324130", }, - "configName": "Huge Red Wolf", + "configName": "Sailor Narwhal", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "de3127e11ea7748e", + "dateModified": "2026-06-27T16:05:25.633Z", + "hashShort": "bd91ef43657a9f29", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://71276598654443", - "huge": true, - "indexDesc": "Earned from the 2024 Autumn Event!", - "indexObtainable": true, - "name": "Huge Dark Fox", + "cachedPower": [ + 18809859056808, + 20387794638023, + 21220794124508, + ], + "fromEgg": "Moonlight Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 222, + "goldenThumbnail": "rbxassetid://14968269377", + "maxChance": 0.009886307464162136, + "name": "Kawaii Mushroom Fox", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://133312153663051", + "thumbnail": "rbxassetid://14968269548", }, - "configName": "Huge Dark Fox", + "configName": "Kawaii Mushroom Fox", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "660d781efb8c300d", + "dateModified": "2026-06-27T16:05:25.615Z", + "hashShort": "41becaa023eb35ca", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://80724368653156", - "huge": true, - "indexDesc": "Earned from the 2024 Autumn Event!", - "indexObtainable": true, - "name": "Huge Autumn Chest Mimic", + "cachedPower": [ + 17824557015082, + 19181271311014, + 20147337788902, + ], + "fromEgg": "Dream Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 221, + "goldenThumbnail": "rbxassetid://14968307048", + "maxChance": 0.8897676717745923, + "name": "Playful Seal", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://131920407611756", + "thumbnail": "rbxassetid://14968307304", }, - "configName": "Huge Autumn Chest Mimic", + "configName": "Playful Seal", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "90ce9d1d33669ec8", + "dateModified": "2026-06-27T16:05:25.635Z", + "hashShort": "e7fd90b569f1455e", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://129218887404657", - "huge": true, - "indexDesc": "Found in the Turkey Pack!", - "indexObtainable": true, - "name": "Huge Autumn Red Panda", + "cachedPower": [ + 15839621279501, + 17047506938314, + 17905438376353, + ], + "fromEgg": "Sakura Blossom Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 220, + "goldenThumbnail": "rbxassetid://14968208088", + "maxChance": 0.09886307464162136, + "name": "Dino Bear", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://119442470085082", + "thumbnail": "rbxassetid://14968208171", }, - "configName": "Huge Autumn Red Panda", + "configName": "Dino Bear", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "649eb0ffd8b48fc0", + "dateModified": "2026-06-27T16:05:25.649Z", + "hashShort": "9e9d9ad8532967cf", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://126660999595095", - "huge": true, - "indexDesc": "Found in The Forever Pack!", - "indexObtainable": true, - "name": "Huge Nutcracker Cat", + "cachedPower": [ + 18152394745944, + 19430100180361, + 20520581092921, + ], + "fromEgg": "Dream Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 221, + "goldenThumbnail": "rbxassetid://14968329340", + "maxChance": 0.09886307464162136, + "name": "Seedling Squirrel", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://131785972720265", + "thumbnail": "rbxassetid://14968329472", }, - "configName": "Huge Nutcracker Cat", + "configName": "Seedling Squirrel", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f329f2d4f4f7728a", + "dateModified": "2026-06-27T16:05:25.642Z", + "hashShort": "036bdcd5c6bb9a77", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://14977527583", - "indexDesc": "Comes with the Titanic Gingerbread Corgi plush!", - "indexObtainable": true, - "name": "Titanic Gingerbread Corgi", + "cachedPower": [ + 30234650416589, + ], + "fly": true, + "fromEgg": "Kawaii Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 224, + "goldenThumbnail": "rbxassetid://14968278686", + "maxChance": 2.4999676379189274e-7, + "name": "Masked Owl", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://14976625491", - "titanic": true, + "thumbnail": "rbxassetid://14968278850", }, - "configName": "Titanic Gingerbread Corgi", + "configName": "Masked Owl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "bd030257301f92f1", + "hashShort": "34e4adb0dcff8ca3", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.3, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.7, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.3, - }, - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Midnight Egg!", - "indexObtainable": true, - "name": "Titanic Midnight Lion", + "cachedPower": [ + 20052626641967, + 21577883086654, + 22663626215004, + ], + "fly": true, + "fromEgg": "Moonlight Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 222, + "goldenThumbnail": "rbxassetid://14968188728", + "maxChance": 0.8941877794336811, + "name": "Butterfly Llama", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://87889546587335", - "titanic": true, + "thumbnail": "rbxassetid://14968188805", }, - "configName": "Titanic Midnight Lion", + "configName": "Butterfly Llama", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "49c85d23f4cfce3a", + "dateModified": "2026-06-27T16:05:25.625Z", + "hashShort": "c5528a2b5ae51c66", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://71457878302568", - "indexDesc": "Hatched from 2024 Anniversary Gifts!", - "indexObtainable": true, - "name": "Titanic Party Corgi", + "cachedPower": [ + 28404987762356, + 30607388061201, + 32093211787719, + ], + "fly": true, + "fromEgg": "Kawaii Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 224, + "goldenThumbnail": "rbxassetid://14968269077", + "maxChance": 0.00000999987055167571, + "name": "Kawaii Dragon", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://122915996316714", - "titanic": true, + "thumbnail": "rbxassetid://14968269212", }, - "configName": "Titanic Party Corgi", + "configName": "Kawaii Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f303bbad5f50de9a", + "dateModified": "2026-06-27T16:05:25.626Z", + "hashShort": "46fdd78a7ea73259", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://110677951618578", - "indexDesc": "Earned from the 2024 Autumn Event!", - "indexObtainable": true, - "name": "Titanic Autumn Teddy Bear", + "cachedPower": [ + 29148208535412, + ], + "fromEgg": "Kawaii Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 224, + "goldenThumbnail": "rbxassetid://14968291172", + "maxChance": 0.0000024999676379189274, + "name": "Ninja Axolotl", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://102130006064216", - "titanic": true, + "thumbnail": "rbxassetid://14968291374", }, - "configName": "Titanic Autumn Teddy Bear", + "configName": "Ninja Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ed594c1c427db521", + "hashShort": "837f2560ca227e4d", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://90245003628058", - "indexDesc": "Found in The Forever Pack!", - "indexObtainable": true, - "name": "Titanic Nutcracker Cat", + "cachedPower": [ + 30361664280513, + ], + "fromEgg": "Kawaii Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 224, + "goldenThumbnail": "rbxassetid://14968269707", + "maxChance": 1.8499760520600063e-7, + "name": "Kawaii Tiger", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://131594588116580", - "titanic": true, - }, - "configName": "Titanic Nutcracker Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "35cb343a03f821c8", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 117428309208423, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://112436362260140", - "name": "Autumn Teddy Bear", - "thumbnail": "rbxassetid://91231790322872", - }, - "configName": "Autumn Teddy Bear", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8c73b7fde9d0d1b8", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 116078558527866, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://131517789835074", - "name": "Dark Fox", - "thumbnail": "rbxassetid://140116786913965", - }, - "configName": "Dark Fox", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "95d7835b94df3b76", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 118778059888980, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://131384909217281", - "name": "Autumn Chest Mimic", - "thumbnail": "rbxassetid://111899195073305", - }, - "configName": "Autumn Chest Mimic", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3d51daeff4ba4052", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 114728807847310, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://113536006126870", - "name": "Autumn Red Panda", - "thumbnail": "rbxassetid://85073120214204", - }, - "configName": "Autumn Red Panda", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6d7fba8e25f0af58", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 110679555805640, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://88491475144056", - "name": "Skunk", - "thumbnail": "rbxassetid://116389386497040", + "thumbnail": "rbxassetid://14968269808", }, - "configName": "Skunk", + "configName": "Kawaii Tiger", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "aafdb215de948f6f", + "hashShort": "7d2fc4ca1b8fe699", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 112029306486197, + 12970363186288, + 13829041234904, + 14621317746809, ], + "fromEgg": "Sakura Blossom Egg", "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://109321012583032", - "name": "Red Wolf", - "thumbnail": "rbxassetid://118332467177367", - }, - "configName": "Red Wolf", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ae706f6f5a6d0aba", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.3, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.7, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.3, - }, - "exclusiveLevel": 3, - "goldenThumbnail": "", - "name": "Midnight Zebra", + "fromZoneNumber": 220, + "goldenThumbnail": "rbxassetid://122425832278417", + "maxChance": 0.989010989010989, + "name": "Kawaii Cat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://114075426781056", + "thumbnail": "rbxassetid://113369415163684", }, - "configName": "Midnight Zebra", + "configName": "Kawaii Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e4feb7d1541ad4a9", + "dateModified": "2026-06-27T16:05:25.678Z", + "hashShort": "c1a8782cf6298786", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.3, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.7, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.3, - }, "exclusiveLevel": 2, - "goldenThumbnail": "", - "name": "Midnight Deer", + "goldenThumbnail": "rbxassetid://119069401534754", + "name": "Luchador Axolotl", "rarity": { "Announce": true, "Color": null, @@ -115875,101 +119644,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://107410369443282", + "thumbnail": "rbxassetid://71587431986450", }, - "configName": "Midnight Deer", + "configName": "Luchador Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2bc22f3fec8d0f87", + "hashShort": "4ef66312370960e4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.3, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.7, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.3, - }, "exclusiveLevel": 1, - "goldenThumbnail": "", - "name": "Midnight Cat", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://96254731220566", - }, - "configName": "Midnight Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9faa2e056aa98ef9", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "goldenThumbnail": "rbxassetid://74244180005057", - "huge": true, - "indexDesc": "Found in the final Christmas Egg when you discover the Elf on a Shelf!", - "indexObtainable": true, - "name": "Huge Festive Elf", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://72695234324968", - }, - "configName": "Huge Festive Elf", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c5c4bf80b9db27bd", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "goldenThumbnail": "rbxassetid://104732322031320", - "huge": true, - "indexDesc": "Earned from 2024 Christmas Raffles!", - "indexObtainable": true, - "name": "Huge Snowflake Dominus", + "goldenThumbnail": "rbxassetid://73367467413938", + "name": "Luchador Coyote", "rarity": { "Announce": true, "Color": null, @@ -115982,23 +119670,21 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://83373370051521", + "thumbnail": "rbxassetid://96853996057255", }, - "configName": "Huge Snowflake Dominus", + "configName": "Luchador Coyote", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0b782220bea49f95", + "hashShort": "32852c5958af8a91", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { + "exclusiveLevel": 3, "fly": true, - "goldenThumbnail": "rbxassetid://114771410148015", - "huge": true, - "indexDesc": "Reward in the 2024 Bee Clan Battle!", - "indexObtainable": true, - "name": "Huge Doodle Bee", + "goldenThumbnail": "rbxassetid://129909174390085", + "name": "Luchador Eagle", "rarity": { "Announce": true, "Color": null, @@ -116011,22 +119697,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://84450044658879", + "thumbnail": "rbxassetid://137750626211239", }, - "configName": "Huge Doodle Bee", + "configName": "Luchador Eagle", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "06d0a36b425802c0", + "hashShort": "c3f1c9d500cbe5c2", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://79710289346623", + "goldenThumbnail": "rbxassetid://101004998026170", "huge": true, - "indexDesc": "Found in the Snowflake Gift!", + "indexDesc": "Reward in the 2024 Rave Crab Clan Battle!", "indexObtainable": true, - "name": "Huge North Pole Unicorn", + "name": "Huge Rave Crab", "rarity": { "Announce": true, "Color": null, @@ -116039,25 +119725,111 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://118783316706055", + "thumbnail": "rbxassetid://109133967059639", }, - "configName": "Huge North Pole Unicorn", + "configName": "Huge Rave Crab", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "382089d0339a12f4", + "hashShort": "2467085e3f633331", }, { "category": "Huge", "collection": "Pets", "configData": { "animations": { - "newChristmasLights": true, + "colorVariants": [ + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Blue!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 1, + "IsUnique": true, + "Magnitude": 1, + "Name": "Blue", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Purple!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 2, + "IsUnique": true, + "Magnitude": 1, + "Name": "Purple", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Red!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 3, + "IsUnique": true, + "Magnitude": 1, + "Name": "Red", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Orange!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 4, + "IsUnique": true, + "Magnitude": 1, + "Name": "Orange", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Yellow!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 5, + "IsUnique": true, + "Magnitude": 1, + "Name": "Yellow", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Green!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 6, + "IsUnique": true, + "Magnitude": 1, + "Name": "Green", + "Title": "Chroma", + }, + ], }, - "goldenThumbnail": "rbxassetid://108762328175092", + "goldenThumbnail": "rbxassetid://122024090717272", "huge": true, - "indexDesc": "Earned from the 2024 Christmas Event's final egg!", + "indexDesc": "Found in the Art Pack!", "indexObtainable": true, - "name": "Huge Lit Cat", + "name": "Huge Chroma Unicorn", + "preventGolden": true, "rarity": { "Announce": true, "Color": null, @@ -116070,51 +119842,112 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://93603448962886", + "staticColorVariants": true, + "thumbnail": "rbxassetid://137010472014317", }, - "configName": "Huge Lit Cat", + "configName": "Huge Chroma Unicorn", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a5e7697a81d9d66a", + "hashShort": "7f61615b80c2b02b", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://108528612949399", - "huge": true, - "indexDesc": "Earned from rebirthing your Christmas Tree in the 2024 Christmas Event!", - "indexObtainable": true, - "name": "Huge Crackling Dragon", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, + "animations": { + "colorVariants": [ + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Blue!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 1, + "IsUnique": true, + "Magnitude": 1, + "Name": "Blue", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Purple!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 2, + "IsUnique": true, + "Magnitude": 1, + "Name": "Purple", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Red!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 3, + "IsUnique": true, + "Magnitude": 1, + "Name": "Red", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Orange!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 4, + "IsUnique": true, + "Magnitude": 1, + "Name": "Orange", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Yellow!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 5, + "IsUnique": true, + "Magnitude": 1, + "Name": "Yellow", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Green!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 6, + "IsUnique": true, + "Magnitude": 1, + "Name": "Green", + "Title": "Chroma", + }, + ], }, - "thumbnail": "rbxassetid://125990599285140", - }, - "configName": "Huge Crackling Dragon", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3d9c99f33c3d1146", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "goldenThumbnail": "", + "goldenThumbnail": "rbxassetid://70702325714787", "huge": true, - "indexDesc": "Found in the Exclusive Snow Globe Egg!", + "indexDesc": "Earned from the Color War World's final egg!", "indexObtainable": true, - "name": "Huge Snow Globe Hamster", + "name": "Huge Chroma Tiger", + "preventGolden": true, "rarity": { "Announce": true, "Color": null, @@ -116127,53 +119960,112 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "roll": true, - "thumbnail": "rbxassetid://83324398369784", + "staticColorVariants": true, + "thumbnail": "rbxassetid://95114398104330", }, - "configName": "Huge Snow Globe Hamster", + "configName": "Huge Chroma Tiger", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "115690733d1856e1", + "hashShort": "d58050fd5b92b9eb", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "", - "huge": true, - "indexDesc": "Found in the Exclusive Snow Globe Egg!", - "indexObtainable": true, - "name": "Huge Snow Globe Corgi", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, + "animations": { + "colorVariants": [ + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Blue!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 1, + "IsUnique": true, + "Magnitude": 1, + "Name": "Blue", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Purple!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 2, + "IsUnique": true, + "Magnitude": 1, + "Name": "Purple", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Red!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 3, + "IsUnique": true, + "Magnitude": 1, + "Name": "Red", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Orange!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 4, + "IsUnique": true, + "Magnitude": 1, + "Name": "Orange", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Yellow!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 5, + "IsUnique": true, + "Magnitude": 1, + "Name": "Yellow", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Green!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 6, + "IsUnique": true, + "Magnitude": 1, + "Name": "Green", + "Title": "Chroma", + }, + ], }, - "roll": true, - "thumbnail": "rbxassetid://77464634142348", - }, - "configName": "Huge Snow Globe Corgi", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5c7d9738209ca252", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "evolved": true, - "goldenThumbnail": "", + "goldenThumbnail": "rbxassetid://121786978225001", "huge": true, - "indexDesc": "Earned from evolving Huge Scarecrow Dogs!", + "indexDesc": "Earned from Color War Event's leaderboard contest!", "indexObtainable": true, - "name": "Huge Evolved Scarecrow Dog", + "name": "Huge Chroma Swan", + "preventGolden": true, "rarity": { "Announce": true, "Color": null, @@ -116186,51 +120078,113 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://72439149479995", + "staticColorVariants": true, + "thumbnail": "rbxassetid://109938539345401", }, - "configName": "Huge Evolved Scarecrow Dog", + "configName": "Huge Chroma Swan", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8a3c629deffa4adb", + "hashShort": "dd4d42fc4bac5cbf", }, { "category": "Huge", "collection": "Pets", "configData": { - "evolved": true, - "goldenThumbnail": "", - "huge": true, - "indexDesc": "Earned from evolving Huge Red Wolf!", - "indexObtainable": true, - "name": "Huge Evolved Red Wolf", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, + "animations": { + "colorVariants": [ + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Blue!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 1, + "IsUnique": true, + "Magnitude": 1, + "Name": "Blue", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Purple!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 2, + "IsUnique": true, + "Magnitude": 1, + "Name": "Purple", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Red!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 3, + "IsUnique": true, + "Magnitude": 1, + "Name": "Red", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Orange!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 4, + "IsUnique": true, + "Magnitude": 1, + "Name": "Orange", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Yellow!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 5, + "IsUnique": true, + "Magnitude": 1, + "Name": "Yellow", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Green!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 6, + "IsUnique": true, + "Magnitude": 1, + "Name": "Green", + "Title": "Chroma", + }, + ], }, - "thumbnail": "rbxassetid://126635488798392", - }, - "configName": "Huge Evolved Red Wolf", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9462d45b35eb159c", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "goldenThumbnail": "rbxassetid://120946479570062", + "fly": true, + "goldenThumbnail": "rbxassetid://98087556725994", "huge": true, - "indexDesc": "Found in the Snowflake Gift!", + "indexDesc": "Earned from Color Gifts!", "indexObtainable": true, - "name": "Huge Evil Snowman", + "name": "Huge Chroma Butterfly", + "preventGolden": true, "rarity": { "Announce": true, "Color": null, @@ -116243,21 +120197,25 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://117577340597461", + "staticColorVariants": true, + "thumbnail": "rbxassetid://85411857304687", }, - "configName": "Huge Evil Snowman", + "configName": "Huge Chroma Butterfly", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "eed04bf85c94a279", + "hashShort": "57e68640eb916a9c", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://118943284780733", - "indexDesc": "Earned from 2024 Christmas Raffles!", + "fly": true, + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "goldenThumbnail": "rbxassetid://17269789494", + "indexDesc": "Comes with the Titanic Dragonfruit Dragon plush!", "indexObtainable": true, - "name": "Titanic Snowflake Dominus", + "name": "Titanic Dragonfruit Dragon", "rarity": { "Announce": true, "Color": null, @@ -116270,22 +120228,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://71393734598151", + "thumbnail": "rbxassetid://17269789414", "titanic": true, }, - "configName": "Titanic Snowflake Dominus", + "configName": "Titanic Dragonfruit Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2df637ed0d1c905d", + "hashShort": "a70398ebb5fb7dbd", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Snow Globe Egg!", + "goldenThumbnail": "rbxassetid://17269911436", + "indexDesc": "Comes with the Titanic Strawberry Corgi plush!", "indexObtainable": true, - "name": "Titanic Snow Globe Cat", + "name": "Titanic Strawberry Corgi", "rarity": { "Announce": true, "Color": null, @@ -116298,216 +120256,295 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "roll": true, - "thumbnail": "rbxassetid://101380058502586", + "thumbnail": "rbxassetid://17269911360", "titanic": true, }, - "configName": "Titanic Snow Globe Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "869e6d332c45119e", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 109329805125083, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://109873105865448", - "name": "Hot Cocoa Bear", - "thumbnail": "rbxassetid://127093420481345", - }, - "configName": "Hot Cocoa Bear", + "configName": "Titanic Strawberry Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "72345cad55f84087", + "hashShort": "54aa582b9311d757", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 112704181826475, + 22777330459842, + 24439827874527, + 25743043293597, ], "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://119196174973395", - "name": "Nutcracker Bunny", - "thumbnail": "rbxassetid://80520975441658", + "fromZoneNumber": 224, + "goldenThumbnail": "rbxassetid://101068731533149", + "name": "Painter Cat", + "thumbnail": "rbxassetid://129358026108922", }, - "configName": "Nutcracker Bunny", + "configName": "Painter Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1f55ef7cbf955196", + "dateModified": "2026-06-27T16:05:40.169Z", + "hashShort": "e6f32ad3f16b60d6", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 111354431145918, + 23281891577624, + 24820497315761, + 26288937674724, ], "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://84354442708321", - "name": "Gingerbread Lion", - "thumbnail": "rbxassetid://74543535626372", + "fromZoneNumber": 224, + "goldenThumbnail": "rbxassetid://74777762962733", + "name": "Painter Dog", + "thumbnail": "rbxassetid://110968298640822", }, - "configName": "Gingerbread Lion", + "configName": "Painter Dog", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "77f30d23271b7430", + "dateModified": "2026-06-27T16:05:40.169Z", + "hashShort": "4a68ca289d6a2728", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 110004680465362, + 21263647106499, + 23143595812521, + 23992706368787, ], "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://89276550282504", - "name": "Frost Hamster", - "thumbnail": "rbxassetid://131116745343206", + "fromZoneNumber": 224, + "goldenThumbnail": "rbxassetid://120945609849550", + "name": "Flowers Hedgehog", + "thumbnail": "rbxassetid://104463616568165", }, - "configName": "Frost Hamster", + "configName": "Flowers Hedgehog", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5db84cdfe579ef86", + "dateModified": "2026-06-27T16:05:40.162Z", + "hashShort": "34f5eb7de61cd374", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 107980054444527, + 21768208224280, + 23666104332886, + 24582457981137, ], "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://92641048182873", - "name": "Festive Seal", - "thumbnail": "rbxassetid://70377412561091", + "fromZoneNumber": 224, + "goldenThumbnail": "rbxassetid://135417185980960", + "name": "Flowers Fox", + "thumbnail": "rbxassetid://120740412492198", }, - "configName": "Festive Seal", + "configName": "Flowers Fox", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "05706262b48736a9", + "dateModified": "2026-06-27T16:05:40.158Z", + "hashShort": "00452a9905b277a1", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 119452935229258, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://109295835293093", - "name": "Evil Snowman", - "thumbnail": "rbxassetid://107950211561615", + "animations": { + "colorVariants": [ + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Blue!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 1, + "IsUnique": true, + "Magnitude": 1, + "Name": "Blue", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Purple!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 2, + "IsUnique": true, + "Magnitude": 1, + "Name": "Purple", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Red!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 3, + "IsUnique": true, + "Magnitude": 1, + "Name": "Red", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Orange!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 4, + "IsUnique": true, + "Magnitude": 1, + "Name": "Orange", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Yellow!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 5, + "IsUnique": true, + "Magnitude": 1, + "Name": "Yellow", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Green!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 6, + "IsUnique": true, + "Magnitude": 1, + "Name": "Green", + "Title": "Chroma", + }, + ], + }, + "cachedPower": [ + 25543406587679, + 27432008723853, + 28866080901582, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 224, + "goldenThumbnail": "rbxassetid://111890672303206", + "name": "Chroma Tiger", + "staticColorVariants": true, + "thumbnail": "rbxassetid://134096226963252", }, - "configName": "Evil Snowman", + "configName": "Chroma Tiger", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6277c2fbb105e64c", + "dateModified": "2026-06-27T16:05:40.160Z", + "hashShort": "dc7ac9657d9e4970", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 114728807847310, + 23840512815167, + 25869855769713, + 26894950224816, ], "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://87042521903616", - "hidden": false, - "name": "North Pole Unicorn", - "thumbnail": "rbxassetid://110169482274334", + "fromZoneNumber": 224, + "goldenThumbnail": "rbxassetid://74134979137182", + "name": "Paintbot Spider", + "thumbnail": "rbxassetid://76704856949124", }, - "configName": "North Pole Unicorn", + "configName": "Paintbot Spider", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b543379c908f51f1", + "dateModified": "2026-06-27T16:05:40.156Z", + "hashShort": "9887bcea83575e62", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 120127810569536, + 22272769342061, + 24055048986541, + 25165874961619, ], "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://126612859605400", - "name": "Crackling Dragon", - "thumbnail": "rbxassetid://73940960891942", + "fromZoneNumber": 224, + "goldenThumbnail": "rbxassetid://128997269902299", + "name": "Gemstone Gargoyle Dragon", + "thumbnail": "rbxassetid://126091008195974", }, - "configName": "Crackling Dragon", + "configName": "Gemstone Gargoyle Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e6a03a12810bd620", + "dateModified": "2026-06-27T16:05:40.154Z", + "hashShort": "392642f149024d51", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "newChristmasLights": true, - }, "cachedPower": [ - 121477561250093, + 24408144072671, + 26560597420681, + 27558963946824, ], + "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://131614188265959", - "name": "Lit Cat", - "thumbnail": "rbxassetid://116731199298515", + "fromZoneNumber": 224, + "goldenThumbnail": "rbxassetid://130831454356542", + "name": "Abstract Dragon", + "thumbnail": "rbxassetid://105288293277261", }, - "configName": "Lit Cat", + "configName": "Abstract Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c9e58599fbfd11f9", + "dateModified": "2026-06-27T16:05:40.159Z", + "hashShort": "4a5ea6c559329c9a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "", - "name": "Snow Globe Hamster", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "roll": true, - "thumbnail": "rbxassetid://113670868124875", + "cachedPower": [ + 24975775330175, + 26998605769920, + 28215976470683, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 224, + "goldenThumbnail": "rbxassetid://119659497222603", + "name": "Abstract Agony", + "thumbnail": "rbxassetid://101176910442920", }, - "configName": "Snow Globe Hamster", + "configName": "Abstract Agony", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "32179c717b091165", + "dateModified": "2026-06-27T16:05:40.154Z", + "hashShort": "7d01c854413f3cd2", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "", - "name": "Snow Globe Corgi", + "goldenThumbnail": "rbxassetid://139847485438413", + "huge": true, + "indexDesc": "Found in the Exclusive Sad Egg!", + "indexObtainable": true, + "name": "Huge Sad Hamster", "rarity": { "Announce": true, "Color": null, @@ -116520,21 +120557,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "roll": true, - "thumbnail": "rbxassetid://86914138083669", + "thumbnail": "rbxassetid://139847485438413", }, - "configName": "Snow Globe Corgi", + "configName": "Huge Sad Hamster", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8707c0f1b5793165", + "hashShort": "161d524a55dd93f6", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "", - "name": "Snow Globe Axolotl", + "goldenThumbnail": "rbxassetid://126938121450876", + "huge": true, + "indexDesc": "Found in the Exclusive Sad Egg!", + "indexObtainable": true, + "name": "Huge Sad Doge", "rarity": { "Announce": true, "Color": null, @@ -116547,27 +120585,112 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "roll": true, - "thumbnail": "rbxassetid://98106579909050", + "thumbnail": "rbxassetid://126938121450876", }, - "configName": "Snow Globe Axolotl", + "configName": "Huge Sad Doge", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6db072dc39dfd250", + "hashShort": "5fef3f62be09101f", }, { "category": "Huge", "collection": "Pets", "configData": { "animations": { - "christmasLights": true, + "colorVariants": [ + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Blue!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 1, + "IsUnique": true, + "Magnitude": 1, + "Name": "Blue", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Purple!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 2, + "IsUnique": true, + "Magnitude": 1, + "Name": "Purple", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Red!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 3, + "IsUnique": true, + "Magnitude": 1, + "Name": "Red", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Orange!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 4, + "IsUnique": true, + "Magnitude": 1, + "Name": "Orange", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Yellow!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 5, + "IsUnique": true, + "Magnitude": 1, + "Name": "Yellow", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Green!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 6, + "IsUnique": true, + "Magnitude": 1, + "Name": "Green", + "Title": "Chroma", + }, + ], }, "fly": true, - "goldenThumbnail": "rbxassetid://106903403671654", + "goldenThumbnail": "rbxassetid://133867627059600", "huge": true, - "indexDesc": "Found in the 2024 Titanic Present!", + "indexDesc": "Earned from the Color War World's final egg!", "indexObtainable": true, - "name": "Huge Reindeer Agony", + "name": "Huge Chroma Phoenix", + "preventGolden": true, "rarity": { "Announce": true, "Color": null, @@ -116580,23 +120703,112 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://126523808307279", + "staticColorVariants": true, + "thumbnail": "rbxassetid://79819458470257", }, - "configName": "Huge Reindeer Agony", + "configName": "Huge Chroma Phoenix", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5a049d156620a95b", + "hashShort": "ab9f7596a64f0a40", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://104632165181953", + "animations": { + "colorVariants": [ + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Blue!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 1, + "IsUnique": true, + "Magnitude": 1, + "Name": "Blue", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Purple!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 2, + "IsUnique": true, + "Magnitude": 1, + "Name": "Purple", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Red!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 3, + "IsUnique": true, + "Magnitude": 1, + "Name": "Red", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Orange!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 4, + "IsUnique": true, + "Magnitude": 1, + "Name": "Orange", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Yellow!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 5, + "IsUnique": true, + "Magnitude": 1, + "Name": "Yellow", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Green!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 6, + "IsUnique": true, + "Magnitude": 1, + "Name": "Green", + "Title": "Chroma", + }, + ], + }, + "goldenThumbnail": "rbxassetid://135639467156066", "huge": true, - "indexDesc": "Found in the 2024 Titanic Present!", + "indexDesc": "Earned from Graffiti Gifts!", "indexObtainable": true, - "name": "Huge Icy Phoenix", + "name": "Huge Chroma Snail", + "preventGolden": true, "rarity": { "Announce": true, "Color": null, @@ -116609,22 +120821,113 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://77587429055460", + "staticColorVariants": true, + "thumbnail": "rbxassetid://99780016268743", }, - "configName": "Huge Icy Phoenix", + "configName": "Huge Chroma Snail", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "51c8423bf133d3e4", + "hashShort": "bafd9e4616544416", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://82029981056896", + "animations": { + "colorVariants": [ + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Blue!", + "Disabled": { + "Decal": true, + }, + "IconColor": null, + "Id": 1, + "IsUnique": true, + "Magnitude": 1, + "Name": "Blue", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Purple!", + "Disabled": { + "Decal": true, + }, + "IconColor": null, + "Id": 2, + "IsUnique": true, + "Magnitude": 1, + "Name": "Purple", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Red!", + "Disabled": { + "Decal": true, + }, + "IconColor": null, + "Id": 3, + "IsUnique": true, + "Magnitude": 1, + "Name": "Red", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Orange!", + "Disabled": { + "Decal": true, + }, + "IconColor": null, + "Id": 4, + "IsUnique": true, + "Magnitude": 1, + "Name": "Orange", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Yellow!", + "Disabled": { + "Decal": true, + }, + "IconColor": null, + "Id": 5, + "IsUnique": true, + "Magnitude": 1, + "Name": "Yellow", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Green!", + "Disabled": { + "Decal": true, + }, + "IconColor": null, + "Id": 6, + "IsUnique": true, + "Magnitude": 1, + "Name": "Green", + "Title": "Chroma", + }, + ], + }, + "fly": true, + "goldenThumbnail": "rbxassetid://82796737764799", "huge": true, - "indexDesc": "Earned from the 2024 Christmas Event's final egg! (part 2)", + "indexDesc": "Found in the Graffiti Pack!", "indexObtainable": true, - "name": "Huge Holly Corgi", + "name": "Huge Chroma Ink Blob", + "preventGolden": true, "rarity": { "Announce": true, "Color": null, @@ -116637,23 +120940,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://70527773100023", + "staticColorVariants": true, + "thumbnail": "rbxassetid://109166274058146", }, - "configName": "Huge Holly Corgi", + "configName": "Huge Chroma Ink Blob", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6c037b6297332dcf", + "hashShort": "23e0817662e6fd96", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://74842897410688", + "goldenThumbnail": "rbxassetid://120984194688677", "huge": true, - "indexDesc": "Found in Snowstorm Survival!", + "indexDesc": "Found in the Color Bomb minigame!", "indexObtainable": true, - "name": "Huge Snowflake Pegasus", + "name": "Huge Graffiti Raccoon", "rarity": { "Announce": true, "Color": null, @@ -116666,25 +120969,21 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://128323283709486", + "thumbnail": "rbxassetid://120010094799102", }, - "configName": "Huge Snowflake Pegasus", + "configName": "Huge Graffiti Raccoon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b25eec17707efbf0", + "hashShort": "0e5ca0eb402fdc6d", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "animations": { - "newChristmasLights": true, - }, - "goldenThumbnail": "rbxassetid://94439570314361", - "huge": true, - "indexDesc": "Earned from rebirthing your Christmas Tree in the 2024 Christmas Event! (part 2)", + "goldenThumbnail": "rbxassetid://14977564004", + "indexDesc": "Found in the Exclusive Sad Egg!", "indexObtainable": true, - "name": "Huge Lit Octopus", + "name": "Titanic Sad Cat", "rarity": { "Announce": true, "Color": null, @@ -116697,51 +120996,131 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://100395307748648", + "thumbnail": "rbxassetid://14976666952", + "titanic": true, }, - "configName": "Huge Lit Octopus", + "configName": "Titanic Sad Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "cd0bea1dea5f254b", + "hashShort": "da02b23bfd0ddb42", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://99166225635030", - "huge": true, - "indexDesc": "Reward in the 2024 Gingerbread Clan Battle!", - "indexObtainable": true, - "name": "Huge Gingerbread Dragon", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, + "animations": { + "colorVariants": [ + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Blue!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 1, + "IsUnique": true, + "Magnitude": 1, + "Name": "Blue", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Purple!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 2, + "IsUnique": true, + "Magnitude": 1, + "Name": "Purple", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Red!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 3, + "IsUnique": true, + "Magnitude": 1, + "Name": "Red", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Orange!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 4, + "IsUnique": true, + "Magnitude": 1, + "Name": "Orange", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Yellow!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 5, + "IsUnique": true, + "Magnitude": 1, + "Name": "Yellow", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Green!", + "Disabled": { + "SpecialMesh": true, + }, + "IconColor": null, + "Id": 6, + "IsUnique": true, + "Magnitude": 1, + "Name": "Green", + "Title": "Chroma", + }, + ], }, - "thumbnail": "rbxassetid://110621195469129", + "cachedPower": [ + 31404706135031, + 34009836370345, + 35468899033026, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 224, + "goldenThumbnail": "rbxassetid://86607954856885", + "name": "Chroma Phoenix", + "staticColorVariants": true, + "thumbnail": "rbxassetid://124413442059322", }, - "configName": "Huge Gingerbread Dragon", + "configName": "Chroma Phoenix", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9020af4a90037c20", + "dateModified": "2026-06-27T16:05:38.139Z", + "hashShort": "770871070730af88", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://117549048386865", - "huge": true, - "indexDesc": "Found in the Candy Cane Pack!", - "indexObtainable": true, - "name": "Huge Candycane", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://93985652343210", + "name": "Sad Bunny", "rarity": { "Announce": true, "Color": null, @@ -116754,22 +121133,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://103105073784990", + "thumbnail": "rbxassetid://93985652343210", }, - "configName": "Huge Candycane", + "configName": "Sad Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "589e985b97229d86", + "hashShort": "4f6374e1b25ac80b", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://97795109203163", - "huge": true, - "indexDesc": "Earned from the 2024 Titanic Present Leaderboard!", - "indexObtainable": true, - "name": "Huge Naughty Cat", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://126520129709696", + "name": "Sad Doge", "rarity": { "Announce": true, "Color": null, @@ -116782,23 +121159,20 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://87910318681243", + "thumbnail": "rbxassetid://126520129709696", }, - "configName": "Huge Naughty Cat", + "configName": "Sad Doge", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b4fc4394c2c6c539", + "hashShort": "e8bde5311589c825", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://113832738330516", - "huge": true, - "indexDesc": "Earned from the 2024 Huge Train Gifts!", - "indexObtainable": true, - "name": "Huge Rudolf", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://113132775217400", + "name": "Sad Hamster", "rarity": { "Announce": true, "Color": null, @@ -116811,191 +121185,183 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://90192944578505", + "thumbnail": "rbxassetid://113132775217400", }, - "configName": "Huge Rudolf", + "configName": "Sad Hamster", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "08d53e3a64a01613", + "hashShort": "c5f3ea40555ef9ac", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { + "cachedPower": [ + 29967889514474, + 32319340401371, + 33794056673304, + ], "fly": true, - "goldenThumbnail": "rbxassetid://71374955400512", - "indexDesc": "Found in the 2024 Titanic Present!", - "indexObtainable": true, - "name": "Titanic Icy Phoenix", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://119756929621348", - "titanic": true, + "fromWorldNumber": 3, + "fromZoneNumber": 224, + "goldenThumbnail": "rbxassetid://83306433138588", + "name": "Painted Balloon", + "thumbnail": "rbxassetid://119551855189425", }, - "configName": "Titanic Icy Phoenix", + "configName": "Painted Balloon", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "687e4374c50d4c01", + "dateModified": "2026-06-27T16:05:40.176Z", + "hashShort": "d54d398f8c04b706", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 123565510341147, + 30686297824752, + 33454409681395, + 34635758999600, ], "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://96760526784371", - "name": "Holiday Hedgehog", - "thumbnail": "rbxassetid://121963676918391", + "fromZoneNumber": 224, + "goldenThumbnail": "rbxassetid://90979233867389", + "name": "Painted King Crab", + "thumbnail": "rbxassetid://119677435981116", }, - "configName": "Holiday Hedgehog", + "configName": "Painted King Crab", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "496a2288f17f941c", + "dateModified": "2026-06-27T16:05:40.161Z", + "hashShort": "ec9007ca14f747f5", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 127225144862302, + 29283691123732, + 31273470346206, + 33092335215226, ], - "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://98477972077607", - "name": "Icy Phoenix", - "thumbnail": "rbxassetid://100431865521809", + "fromZoneNumber": 224, + "goldenThumbnail": "rbxassetid://138320347235795", + "name": "Graffiti Dino", + "thumbnail": "rbxassetid://112441484012438", }, - "configName": "Icy Phoenix", + "configName": "Graffiti Dino", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f6a643998a02979f", + "dateModified": "2026-06-27T16:05:40.176Z", + "hashShort": "fdf8fc7b896d0408", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 125471658518287, + 28645105959040, + 30790347121080, + 32367650377537, ], "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://70455516857562", - "name": "Naughty Cat", - "thumbnail": "rbxassetid://102157324785668", + "fromZoneNumber": 224, + "goldenThumbnail": "rbxassetid://124803883662934", + "name": "Graffiti Raccoon", + "thumbnail": "rbxassetid://127143278779281", }, - "configName": "Naughty Cat", + "configName": "Graffiti Raccoon", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3ac6151a17cfd1dd", + "dateModified": "2026-06-27T16:05:40.174Z", + "hashShort": "f087b58067a0434b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 122546401736378, + 28006520794348, + 30302196628748, + 31635424639039, ], "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://89262237352077", - "name": "Holly Corgi", - "thumbnail": "rbxassetid://83955011312610", + "fromZoneNumber": 224, + "goldenThumbnail": "rbxassetid://112243502721414", + "name": "Color Ruins Monkey", + "thumbnail": "rbxassetid://106676692145461", }, - "configName": "Holly Corgi", + "configName": "Color Ruins Monkey", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "866a478c46794641", + "dateModified": "2026-06-27T16:05:40.159Z", + "hashShort": "32dd95f3a7380320", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 124539309965134, + 27367935629656, + 29808952731325, + 30895558792905, ], "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://113284866298559", - "name": "Festive Bear", - "thumbnail": "rbxassetid://96613492929504", + "fromZoneNumber": 224, + "goldenThumbnail": "rbxassetid://89035068634561", + "name": "Color Ruins Parrot", + "thumbnail": "rbxassetid://108510719407005", }, - "configName": "Festive Bear", + "configName": "Color Ruins Parrot", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ffad01b036efa93d", + "dateModified": "2026-06-27T16:05:40.153Z", + "hashShort": "35749824d22b3bb6", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "newChristmasLights": true, - }, "cachedPower": [ - 126365941233194, + 26729350464964, + 28915983303274, + 30147951937500, ], "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://73825402524926", - "name": "Lit Octopus", - "thumbnail": "rbxassetid://86692759940343", + "fromZoneNumber": 224, + "goldenThumbnail": "rbxassetid://71759696015605", + "name": "Shimmering Octopus", + "thumbnail": "rbxassetid://90478033974273", }, - "configName": "Lit Octopus", + "configName": "Shimmering Octopus", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "dc9f8bbaadc393cd", + "dateModified": "2026-06-27T16:05:40.168Z", + "hashShort": "5253363bcf348f49", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://138759185843502", - "huge": true, - "indexDesc": "Found in the 2024 Gargantuan Present!", - "indexObtainable": true, - "name": "Huge Jolly Dino", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://88604762906611", + "cachedPower": [ + 26111037845183, + 27860867288579, + 29509368748672, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 224, + "goldenThumbnail": "rbxassetid://95534281337989", + "name": "Shimmering Fish", + "thumbnail": "rbxassetid://121020575503156", }, - "configName": "Huge Jolly Dino", + "configName": "Shimmering Fish", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "44be387962b7578d", + "dateModified": "2026-06-27T16:05:40.158Z", + "hashShort": "0265b174274d244d", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://86569956461230", + "goldenThumbnail": "rbxassetid://115150454670307", "huge": true, - "indexDesc": "Found in The Forever Pack!", + "indexDesc": "Reward from the Catching Battle!", "indexObtainable": true, - "name": "Huge Snow Elf", + "name": "Huge Reversed Cat", "rarity": { "Announce": true, "Color": null, @@ -117008,22 +121374,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://104334449359401", + "thumbnail": "rbxassetid://86486361253800", }, - "configName": "Huge Snow Elf", + "configName": "Huge Reversed Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "aefb3b7fe9c70f5f", + "dateModified": "2026-03-14T15:52:11.503Z", + "hashShort": "2729acced7d3c300", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://71548177173976", + "fly": true, + "goldenThumbnail": "", "huge": true, - "indexDesc": "Earned from the 2024 Christmas Event's final egg! (part 3)", + "indexDesc": "Found in the Exclusive Soul Egg!", "indexObtainable": true, - "name": "Huge Nutcracker Squirrel", + "name": "Huge Soul Dragon", "rarity": { "Announce": true, "Color": null, @@ -117036,22 +121403,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://125206420660994", + "thumbnail": "rbxassetid://95241548572659", }, - "configName": "Huge Nutcracker Squirrel", + "configName": "Huge Soul Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ec536ae1c9dbca77", + "hashShort": "82d4acfddbcbbd00", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://86578118990880", + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in Santa's Cottage!", + "indexDesc": "Found in the Exclusive Soul Egg!", "indexObtainable": true, - "name": "Huge Merry Manatee", + "name": "Huge Soul Cat", "rarity": { "Announce": true, "Color": null, @@ -117064,25 +121431,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://125341685392478", + "thumbnail": "rbxassetid://114453311306931", }, - "configName": "Huge Merry Manatee", + "configName": "Huge Soul Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "952aa74b16cca9be", + "hashShort": "6596a009be07fbd2", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "newChristmasLights": true, - }, - "goldenThumbnail": "", + "goldenThumbnail": "rbxassetid://126355570573247", "huge": true, - "indexDesc": "Found in the Exclusive Snowflake Egg!", + "indexDesc": "Earned from the Elemental World's final egg and roaming pets!", "indexObtainable": true, - "name": "Huge Naughty Dominus", + "name": "Huge Electric Penguin", "rarity": { "Announce": true, "Color": null, @@ -117095,26 +121459,22 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://75328747799299", + "thumbnail": "rbxassetid://77658045662575", }, - "configName": "Huge Naughty Dominus", + "configName": "Huge Electric Penguin", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "bdbaaac33978b134", + "dateModified": "2026-04-25T17:30:41.033Z", + "hashShort": "a25f239f0a647bd1", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "newChristmasLights": true, - "newChristmasLightsMaxCount": 2, - }, - "goldenThumbnail": "", + "goldenThumbnail": "rbxassetid://97524659845309", "huge": true, - "indexDesc": "Found in the Exclusive Snowflake Egg!", + "indexDesc": "Earned from Elemental Gifts!", "indexObtainable": true, - "name": "Huge Holiday Bearserker", + "name": "Huge Water Zebra", "rarity": { "Announce": true, "Color": null, @@ -117127,23 +121487,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://79863147405643", + "thumbnail": "rbxassetid://132338879904830", }, - "configName": "Huge Holiday Bearserker", + "configName": "Huge Water Zebra", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "74b81cd43a9496d0", + "hashShort": "6a737c47d16aa63e", }, { "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://98541055289717", + "goldenThumbnail": "rbxassetid://83821898228179", "huge": true, - "indexDesc": "Reward in the 2024 Diamond Clan Battle!", + "indexDesc": "Caught from the Elemental World's roaming pets!", "indexObtainable": true, - "name": "Huge Diamond Dragon", + "name": "Huge Dark Dragon", "rarity": { "Announce": true, "Color": null, @@ -117156,22 +121516,23 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://135778952005746", + "thumbnail": "rbxassetid://74325129208178", }, - "configName": "Huge Diamond Dragon", + "configName": "Huge Dark Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5b4d6a1bdf852b9e", + "hashShort": "0bdcc403e7717d67", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://100127065313334", + "fly": true, + "goldenThumbnail": "rbxassetid://85577771684068", "huge": true, - "indexDesc": "Found in The Present Pack!", + "indexDesc": "Found in the Elemental Pack!", "indexObtainable": true, - "name": "Huge Sleigh Cat", + "name": "Huge Elemental Phoenix", "rarity": { "Announce": true, "Color": null, @@ -117184,49 +121545,40 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://121879397544213", + "thumbnail": "rbxassetid://106964408163546", }, - "configName": "Huge Sleigh Cat", + "configName": "Huge Elemental Phoenix", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7c26efc96da8ae09", + "hashShort": "ee60dd51f60f0a71", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://107101571721413", - "huge": true, - "indexDesc": "Earned from rebirthing your Christmas Tree in the 2024 Christmas Event! (part 3)", + "goldenThumbnail": "rbxassetid://134922107752408", + "indexDesc": "Comes with the Titanic Red Kitsune Fox plush!", "indexObtainable": true, - "name": "Huge Nice Cat", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://135884487799308", + "name": "Titanic Red Kitsune Fox", + "thumbnail": "rbxassetid://87922327499998", + "titanic": true, }, - "configName": "Huge Nice Cat", + "configName": "Titanic Red Kitsune Fox", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b1b8bbda30baaa63", + "hashShort": "e3d7a0cdbdfe042d", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://93207303867389", - "indexDesc": "Comes with Christmas Merch Rewards 2024", + "fly": true, + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Soul Egg!", "indexObtainable": true, - "name": "Titanic Nutcracker Squirrel", + "name": "Titanic Soul Owl", "rarity": { "Announce": true, "Color": null, @@ -117239,342 +121591,487 @@ exports[`Pet Simulator Public Live API Test Pets shape 1`] = ` "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://72074096332299", + "thumbnail": "rbxassetid://125310152380772", "titanic": true, }, - "configName": "Titanic Nutcracker Squirrel", + "configName": "Titanic Soul Owl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2f1bf26abcd94acf", + "hashShort": "a743931e550eacf0", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://91783547324897", - "indexDesc": "Found in the 2024 Gargantuan Present!", - "indexObtainable": true, - "name": "Titanic Grinch Cat", + "cachedPower": [ + 54712704711582, + 59668731080036, + 61716325997044, + ], + "fly": true, + "fromEgg": "Fire Type Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 229, + "goldenThumbnail": "rbxassetid://96683003879126", + "maxChance": 1.849976514548148e-7, + "name": "Elemental Phoenix", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://105600589075929", - "titanic": true, + "thumbnail": "rbxassetid://118999979336349", }, - "configName": "Titanic Grinch Cat", + "configName": "Elemental Phoenix", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "66a51d12d2531f17", + "dateModified": "2026-06-27T16:05:40.151Z", + "hashShort": "f3cc5fd2d31fe777", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://120654999901936", - "indexDesc": "Found in The Forever Pack!", - "indexObtainable": true, - "name": "Titanic Snow Elf", + "cachedPower": [ + 52526018018949, + 56160798929130, + 59335386777893, + ], + "fromEgg": "Fire Type Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 229, + "goldenThumbnail": "rbxassetid://139524389780843", + "maxChance": 0.000002499968262902903, + "name": "Ghost Axolotl", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://137871430705388", - "titanic": true, + "thumbnail": "rbxassetid://96644446206157", }, - "configName": "Titanic Snow Elf", + "configName": "Ghost Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "485149e3691a3134", + "dateModified": "2026-06-27T16:05:40.174Z", + "hashShort": "3d2f7ad7ce3a372f", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.4, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.6, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.3, - }, + "cachedPower": [ + 51186710019279, + 55145359228249, + 57812227226571, + ], "fly": true, - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Snowflake Egg!", - "indexObtainable": true, - "name": "Titanic Snowflake Angelus", + "fromEgg": "Fire Type Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 229, + "goldenThumbnail": "rbxassetid://72860524143382", + "maxChance": 0.000009999873051611612, + "name": "Dark Dragon", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://72623839017294", - "titanic": true, + "thumbnail": "rbxassetid://117139783052382", }, - "configName": "Titanic Snowflake Angelus", + "configName": "Dark Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2aa3a5c4496a6ee0", + "dateModified": "2026-06-27T16:05:40.168Z", + "hashShort": "9e0059d9f3d05522", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 131773876423254, + 40651881428832, + 43733183403165, + 45922762389747, ], + "fly": true, + "fromEgg": "Electric Type Egg", "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://135430500549613", - "name": "Snow Elf", - "thumbnail": "rbxassetid://133470076264270", + "fromZoneNumber": 228, + "goldenThumbnail": "rbxassetid://101777940566446", + "maxChance": 0.00999987305161161, + "name": "Fire Bat", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Epic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 3, + "_id": "Epic", + "_script": null, + }, + "thumbnail": "rbxassetid://137347951628505", }, - "configName": "Snow Elf", + "configName": "Fire Bat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "889fa4f9df2afe88", + "dateModified": "2026-06-27T16:05:40.179Z", + "hashShort": "dcceee3db5030551", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "newChristmasLights": true, - }, - "exclusiveLevel": 3, - "goldenThumbnail": "", - "name": "Naughty Dominus", + "cachedPower": [ + 38132442677685, + 41316298282048, + 43006980162182, + ], + "fromEgg": "Electric Type Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 228, + "goldenThumbnail": "rbxassetid://91009099798340", + "maxChance": 0.9899874321095494, + "name": "Psychic Seal", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://100217884622090", + "thumbnail": "rbxassetid://136877195748625", }, - "configName": "Naughty Dominus", + "configName": "Psychic Seal", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d39e27f75d02af11", + "dateModified": "2026-06-27T16:05:40.180Z", + "hashShort": "4777a3e4032f2e7f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "newChristmasLights": true, - "newChristmasLightsMaxCount": 2, - }, - "exclusiveLevel": 1, - "goldenThumbnail": "", - "name": "Holiday Bearserker", + "cachedPower": [ + 36135005714517, + 38875399029057, + 40823199798213, + ], + "fromEgg": "Water Type Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 227, + "goldenThumbnail": "rbxassetid://102601119458755", + "maxChance": 0.09891196834817013, + "name": "Electric Penguin", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://77159027487180", + "thumbnail": "rbxassetid://77616745628277", }, - "configName": "Holiday Bearserker", + "configName": "Electric Penguin", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3a754d3561a4215d", + "dateModified": "2026-06-27T16:05:40.160Z", + "hashShort": "adeeaa8d1a86df61", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 131078361359447, + 33895504602387, + 36727529080290, + 38230156634025, ], + "fly": true, + "fromEgg": "Water Type Egg", "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://105681288761506", - "name": "Jolly Dino", - "thumbnail": "rbxassetid://128817977954243", + "fromZoneNumber": 227, + "goldenThumbnail": "rbxassetid://126012090069251", + "maxChance": 0.8902077151335313, + "name": "Storm Griffin", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://93181573916731", }, - "configName": "Jolly Dino", + "configName": "Storm Griffin", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "cbfa63d3efc77da8", + "dateModified": "2026-06-27T16:05:40.171Z", + "hashShort": "0eeaece9f4d9a7dc", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 130360038501388, + 32120005079571, + 34557260292544, + 36290034916323, ], + "fromEgg": "Rock Type Egg", "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://118951615415333", - "name": "Figgy Fox", - "thumbnail": "rbxassetid://129443002761311", + "fromZoneNumber": 226, + "goldenThumbnail": "rbxassetid://113105637323371", + "maxChance": 0.09891196834817013, + "name": "Water Zebra", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://113627183108934", }, - "configName": "Figgy Fox", + "configName": "Water Zebra", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c99b76c1239bd612", + "dateModified": "2026-06-27T16:05:40.169Z", + "hashShort": "baa637d716e72b65", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "", - "name": "Festive Hydra", + "cachedPower": [ + 30129337424344, + 32648480433553, + 33983964045057, + ], + "fromEgg": "Rock Type Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 226, + "goldenThumbnail": "rbxassetid://95296298755620", + "maxChance": 0.8902077151335313, + "name": "Poison Turtle", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://123826398681433", + "thumbnail": "rbxassetid://74337210754126", }, - "configName": "Festive Hydra", + "configName": "Poison Turtle", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "fcade8ba9b4b283b", + "dateModified": "2026-06-27T16:05:40.153Z", + "hashShort": "3e0da7fa504687d8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 129617361127870, + 28543511869301, + 30713024029681, + 32251665740440, ], + "fromEgg": "Grass Type Egg", "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://120983337062550", - "name": "Merry Manatee", - "thumbnail": "rbxassetid://90011773597682", + "fromZoneNumber": 225, + "goldenThumbnail": "rbxassetid://129131469736695", + "maxChance": 0.09891196834817013, + "name": "Ice Snake", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://96349887522416", }, - "configName": "Merry Manatee", + "configName": "Ice Snake", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "12acdce5b8cda024", + "dateModified": "2026-06-27T16:05:40.173Z", + "hashShort": "893f0fe4f152cf42", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 128051917864616, + 26774133995452, + 29007251770636, + 30200635625871, ], + "fromEgg": "Grass Type Egg", "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://131646362144448", - "name": "Marzipan Piggy", - "thumbnail": "rbxassetid://85579643972466", + "fromZoneNumber": 225, + "goldenThumbnail": "rbxassetid://75858283248001", + "maxChance": 0.8902077151335313, + "name": "Rock Monkey", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://139950129050447", }, - "configName": "Marzipan Piggy", + "configName": "Rock Monkey", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "32b8c7d53975fe97", + "dateModified": "2026-06-27T16:05:40.180Z", + "hashShort": "99f056bd50472f54", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 128848619641344, + 23373015618503, + 24913675242533, + 26342748641608, ], + "fromEgg": "Grass Type Egg", "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://95581418510631", - "name": "Nutcracker Squirrel", - "thumbnail": "rbxassetid://100691822968591", + "fromZoneNumber": 225, + "goldenThumbnail": "rbxassetid://131656915924199", + "maxChance": 0.989010989010989, + "name": "Grass Bunny", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://107391057868479", }, - "configName": "Nutcracker Squirrel", + "configName": "Grass Bunny", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:40.173Z", + "hashShort": "94bbdcca2476b1be", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "", + "name": "Soul Dragon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://102748467861048", + }, + "configName": "Soul Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c6d85e058df12807", + "hashShort": "7a50cf88a049feb3", }, { - "category": "Gargantuan", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "customAnimations": true, - "idleActionAnimations": [ - [ - "CorgiJumping", - 0.5, - ], - [ - "LookAround", - 0.5, - ], - ], - "ridingJumpPower": 125, + "exclusiveLevel": 2, + "fly": true, + "goldenThumbnail": "", + "name": "Soul Bat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, }, - "gargantuan": true, - "goldenThumbnail": "rbxassetid://93644931906491", - "indexDesc": "Christmas 2024! - -Ground Slam - Pet will damage breakables in a large area!", - "name": "Gargantuan Santa Paws", + "thumbnail": "rbxassetid://81485067716844", + }, + "configName": "Soul Bat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "a4cf6e53c62ecf06", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 1, + "goldenThumbnail": "", + "name": "Soul Cat", "rarity": { "Announce": true, "Color": null, @@ -117587,22 +122084,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://85770840304413", + "thumbnail": "rbxassetid://104507642747948", }, - "configName": "Gargantuan Santa Paws", + "configName": "Soul Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6fffb9c4351961b2", + "hashShort": "6efd6b994121c1db", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://121459173538416", - "huge": true, - "indexDesc": "Hatched from 2025 New Year's Gifts!", + "goldenThumbnail": "rbxassetid://18352470225", + "indexDesc": "Comes with the Titanic Pink Kitsune Fox plush!", "indexObtainable": true, - "name": "Huge Party Crown Corgi", + "name": "Titanic Pink Kitsune Fox", "rarity": { "Announce": true, "Color": null, @@ -117615,23 +122111,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://84718989767415", + "thumbnail": "rbxassetid://81549697873082", + "titanic": true, }, - "configName": "Huge Party Crown Corgi", + "configName": "Titanic Pink Kitsune Fox", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b6e078ebd6063007", + "hashShort": "7236a773446bddef", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://105619690894439", - "huge": true, - "indexDesc": "Reward in the 2024 Blurred Clan Battle!", + "goldenThumbnail": "rbxassetid://139891587257182", + "indexDesc": "Comes with the Titanic Nightmare Corgi plush!", "indexObtainable": true, - "name": "Huge Blurred Agony", + "name": "Titanic Nightmare Corgi", "rarity": { "Announce": true, "Color": null, @@ -117644,22 +122139,25 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://136961969731573", + "thumbnail": "rbxassetid://137580301485992", + "titanic": true, }, - "configName": "Huge Blurred Agony", + "configName": "Titanic Nightmare Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b0c62d77712a3d02", + "hashShort": "2884e0a2e50d5fac", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://74502156101981", - "huge": true, - "indexDesc": "Earned from defeating the Snowman Boss!", + "fly": true, + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "goldenThumbnail": "rbxassetid://76634123469729", + "indexDesc": "Comes with the Titanic Fossil Dragon plush!", "indexObtainable": true, - "name": "Huge Holiday Hedgehog", + "name": "Titanic Fossil Dragon", "rarity": { "Announce": true, "Color": null, @@ -117672,23 +122170,24 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://104271630769332", + "thumbnail": "rbxassetid://107708637818615", + "titanic": true, }, - "configName": "Huge Holiday Hedgehog", + "configName": "Titanic Fossil Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b9eb6ec1f3749aa0", + "hashShort": "d9540398089660c3", }, { "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://123104772576622", + "goldenThumbnail": "rbxassetid://120686822122737", "huge": true, - "indexDesc": "Found in the Jolly Gift!", + "indexDesc": "Found in The Forever Pack!", "indexObtainable": true, - "name": "Huge Jolly Owl", + "name": "Huge Dominus Darkwing", "rarity": { "Announce": true, "Color": null, @@ -117701,22 +122200,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://103505479597539", + "thumbnail": "rbxassetid://100391666936804", }, - "configName": "Huge Jolly Owl", + "configName": "Huge Dominus Darkwing", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "83de3ee9d5ada683", + "hashShort": "ce888c5f6e725cc8", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://125014343135250", + "goldenThumbnail": "rbxassetid://116037431940023", "huge": true, - "indexDesc": "Found in Grinch Raid minigame!", + "indexDesc": "Earned from the 2024 Halloween Event's final egg!", "indexObtainable": true, - "name": "Huge Holly Fawn", + "name": "Huge Pumpkin Scarecrow", "rarity": { "Announce": true, "Color": null, @@ -117729,22 +122228,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://123821214219134", + "thumbnail": "rbxassetid://116673779811156", }, - "configName": "Huge Holly Fawn", + "configName": "Huge Pumpkin Scarecrow", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3378d1cc1b65f9f8", + "hashShort": "1bb16e24e60875be", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://115124610467771", + "goldenThumbnail": "rbxassetid://135050967408837", "huge": true, - "indexDesc": "Found by lockpicking the Grinch Cove doors!", + "indexDesc": "Found in the Spider Pack!", "indexObtainable": true, - "name": "Huge Angry Yeti", + "name": "Huge Ghoul Horse", "rarity": { "Announce": true, "Color": null, @@ -117757,22 +122256,30 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://110929464319537", + "thumbnail": "rbxassetid://138823579638125", }, - "configName": "Huge Angry Yeti", + "configName": "Huge Ghoul Horse", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "209b21e26bbadc8c", + "hashShort": "74688de386523d75", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://119787345139897", + "animations": { + "flyHeight": 0.025, + "flyHeightChange": 0, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://134840760464235", "huge": true, - "indexDesc": "Found in The Forever Pack!", + "indexDesc": "Found in the Pumpkin Gift!", "indexObtainable": true, - "name": "Huge Ice Snake", + "name": "Huge Little Melty", "rarity": { "Announce": true, "Color": null, @@ -117785,23 +122292,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://72721925435619", + "thumbnail": "rbxassetid://125054778559458", }, - "configName": "Huge Ice Snake", + "configName": "Huge Little Melty", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a459effb2acbe8ae", + "hashShort": "ad6de5b2bee37abd", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://92203000522372", + "goldenThumbnail": "rbxassetid://124257400649159", "huge": true, - "indexDesc": "Earned from the Grinch Raid Leaderboard!", + "indexDesc": "Found in the Candy Corn Gift!", "indexObtainable": true, - "name": "Huge Holiday Dove", + "name": "Huge Skeleton Cat", "rarity": { "Announce": true, "Color": null, @@ -117814,22 +122320,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://109237504369086", + "thumbnail": "rbxassetid://99657539993632", }, - "configName": "Huge Holiday Dove", + "configName": "Huge Skeleton Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1cc3418463af4095", + "hashShort": "c7a3f600389b17e8", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://131425646426697", + "goldenThumbnail": "rbxassetid://106915716318020", "huge": true, - "indexDesc": "Earned from the Grinch Ice Blocks!", + "indexDesc": "Found in the Exclusive Horror Egg!", "indexObtainable": true, - "name": "Huge Pinecone Porcupine", + "name": "Huge Slasher Sloth", "rarity": { "Announce": true, "Color": null, @@ -117842,22 +122348,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://128031048512623", + "thumbnail": "rbxassetid://115427285712502", }, - "configName": "Huge Pinecone Porcupine", + "configName": "Huge Slasher Sloth", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b0288a7888ba5b2a", + "hashShort": "b5b2d5cd0f047c6b", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://101637975005344", + "goldenThumbnail": "rbxassetid://108025600456665", "huge": true, - "indexDesc": "Found in The Grinch Pack!", + "indexDesc": "Found in the Exclusive Horror Egg!", "indexObtainable": true, - "name": "Huge Poinsettia Peacock", + "name": "Huge Machete Dog", "rarity": { "Announce": true, "Color": null, @@ -117870,21 +122376,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://126024044464158", + "thumbnail": "rbxassetid://108025600456665", }, - "configName": "Huge Poinsettia Peacock", + "configName": "Huge Machete Dog", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5fad8635d6dfa2e3", + "hashShort": "2ca7c5c9673d6a4e", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://98117114621609", - "indexDesc": "Hatched from 2025 New Year's Gifts!", + "goldenThumbnail": "rbxassetid://82639187833773", + "huge": true, + "indexDesc": "Reward in the 2024 Ghost Clan Battle!", "indexObtainable": true, - "name": "Titanic Party Crown Corgi", + "name": "Huge Ghost Cat", "rarity": { "Announce": true, "Color": null, @@ -117897,22 +122404,24 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://127025398818263", - "titanic": true, + "thumbnail": "rbxassetid://94290261080713", }, - "configName": "Titanic Party Crown Corgi", + "configName": "Huge Ghost Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "eff1946dc97da8c1", + "hashShort": "90b953401df841d6", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://96827375189048", - "indexDesc": "Found by lockpicking the Grinch Cove doors!", + "fly": true, + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "goldenThumbnail": "rbxassetid://117074826560672", + "indexDesc": "Found in The Forever Pack!", "indexObtainable": true, - "name": "Titanic Angry Yeti", + "name": "Titanic Dominus Darkwing", "rarity": { "Announce": true, "Color": null, @@ -117925,22 +122434,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://118155614090525", + "thumbnail": "rbxassetid://76103751008934", "titanic": true, }, - "configName": "Titanic Angry Yeti", + "configName": "Titanic Dominus Darkwing", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ca85817c9e7803e5", + "hashShort": "351243cc8d0bc9b2", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://109669207145782", - "indexDesc": "Found in The Forever Pack!", + "goldenThumbnail": "rbxassetid://113883783326229", + "indexDesc": "Found in the Exclusive Horror Egg!", "indexObtainable": true, - "name": "Titanic Ice Snake", + "name": "Titanic Ghostface Cat", "rarity": { "Announce": true, "Color": null, @@ -117953,133 +122462,212 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://136281455287593", + "thumbnail": "rbxassetid://119318487422826", "titanic": true, }, - "configName": "Titanic Ice Snake", + "configName": "Titanic Ghostface Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "fc246017602ae46e", + "hashShort": "c62cd83a5872f1a9", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 133736999624445, + 36577245969036, + 39211135157295, + 41326803990569, ], - "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://124909273776325", - "name": "Holiday Dove", - "thumbnail": "rbxassetid://105888411261196", + "fromZoneNumber": 229, + "goldenThumbnail": "rbxassetid://14968314534", + "name": "Pumpkin Cat", + "thumbnail": "rbxassetid://14968314681", }, - "configName": "Holiday Dove", + "configName": "Pumpkin Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f9067ca37baf1b92", + "dateModified": "2026-06-27T16:05:25.669Z", + "hashShort": "b19de8a051734738", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 132447987592443, + 58256779605516, + 62547251430310, + 65800728012302, ], "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://130320498377452", - "name": "Festive Walrus", - "thumbnail": "rbxassetid://86104816023541", + "fromZoneNumber": 229, + "goldenThumbnail": "rbxassetid://98383319616097", + "name": "Pumpkin Scarecrow", + "thumbnail": "rbxassetid://95055696007488", }, - "configName": "Festive Walrus", + "configName": "Pumpkin Scarecrow", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "10007e9e4642e606", + "dateModified": "2026-06-27T16:05:40.162Z", + "hashShort": "5bc3203650b5b8e1", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 133101973005141, + 52671526449685, + 56270447127026, + 59499859074736, ], "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://135132088620459", - "name": "Candycane Shake Shark", - "thumbnail": "rbxassetid://72787163358167", + "fromZoneNumber": 229, + "goldenThumbnail": "rbxassetid://83875557473860", + "name": "Hippokin", + "thumbnail": "rbxassetid://104720763662484", }, - "configName": "Candycane Shake Shark", + "configName": "Hippokin", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d7c952c75cb624b1", + "dateModified": "2026-06-27T16:05:40.157Z", + "hashShort": "13838d7bc7f0c10e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 134354135769583, + 37408547013787, + 39837296536826, + 42154344519569, ], "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://100177773434449", - "name": "Holly Fawn", - "thumbnail": "rbxassetid://102743058054013", + "fromZoneNumber": 229, + "goldenThumbnail": "rbxassetid://89646012960788", + "name": "Zombie Deer", + "thumbnail": "rbxassetid://88196342129386", }, - "configName": "Holly Fawn", + "configName": "Zombie Deer", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "775d7cb35e59c40c", + "dateModified": "2026-06-27T16:05:40.177Z", + "hashShort": "0ac8d511358db225", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 134954361929782, + 42084615390510, + 44815205351019, + 47422259252041, ], "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://98978963200422", - "name": "Pinecone Porcupine", - "thumbnail": "rbxassetid://96854053384085", + "fromZoneNumber": 229, + "goldenThumbnail": "rbxassetid://134777228917290", + "name": "Skeleton Cat", + "thumbnail": "rbxassetid://115304402616907", }, - "configName": "Pinecone Porcupine", + "configName": "Skeleton Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6a34ee31f7b33802", + "dateModified": "2026-06-27T16:05:40.188Z", + "hashShort": "042dff585fd80035", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 135538580135744, + 47937007218253, + 51625138253085, + 54045523778367, ], + "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 234, - "goldenThumbnail": "rbxassetid://113851015455349", - "name": "Poinsettia Peacock", - "thumbnail": "rbxassetid://124627794455397", + "fromZoneNumber": 229, + "goldenThumbnail": "rbxassetid://75768850823146", + "name": "Glowy the Ghost", + "thumbnail": "rbxassetid://108033940375222", }, - "configName": "Poinsettia Peacock", + "configName": "Glowy the Ghost", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9810e81acf9fe860", + "dateModified": "2026-06-27T16:05:40.187Z", + "hashShort": "b0e9453224874a51", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "flyHeight": 0.025, + "flyHeightChange": 0, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, + }, + "cachedPower": [ + 38811367526804, + 42318387433866, + 43800568435798, + ], "fly": true, - "goldenThumbnail": "rbxassetid://71415994113632", - "huge": true, - "indexDesc": "Earned from the Doodle Battle inside Doodle Gifts!", - "indexObtainable": true, - "name": "Huge Doodle Agony", + "fromWorldNumber": 3, + "fromZoneNumber": 229, + "goldenThumbnail": "rbxassetid://123607978661577", + "name": "Little Melty", + "thumbnail": "rbxassetid://121303946914438", + }, + "configName": "Little Melty", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:40.189Z", + "hashShort": "23b2bc704a46a724", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 35330294401910, + 38259753948305, + 39899732177084, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 229, + "goldenThumbnail": "rbxassetid://111312508528084", + "name": "Albino Bat", + "thumbnail": "rbxassetid://109741339541488", + }, + "configName": "Albino Bat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:40.203Z", + "hashShort": "7c400c16f4eff756", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 40681794877493, + 43755945857086, + 45956906070629, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 229, + "goldenThumbnail": "rbxassetid://112899222235132", + "name": "Broomstick Cat", + "thumbnail": "rbxassetid://88325748556058", + }, + "configName": "Broomstick Cat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:40.189Z", + "hashShort": "442c9f6c0fd337ef", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://77632213721966", + "name": "Slasher Sloth", "rarity": { "Announce": true, "Color": null, @@ -118092,23 +122680,20 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://117441180861427", + "thumbnail": "rbxassetid://134122513957953", }, - "configName": "Huge Doodle Agony", + "configName": "Slasher Sloth", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f56b2d5a9b7efa76", + "hashShort": "377fc1a7b2b8576a", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://126207788432267", - "huge": true, - "indexDesc": "Found in the Volcano Pack!", - "indexObtainable": true, - "name": "Huge Doodle Dragon", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://100328927481866", + "name": "Machete Dog", "rarity": { "Announce": true, "Color": null, @@ -118121,23 +122706,20 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://103476619059265", + "thumbnail": "rbxassetid://91856984950236", }, - "configName": "Huge Doodle Dragon", + "configName": "Machete Dog", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8c913e65c57aa351", + "hashShort": "b6bd474704364009", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://95131278929733", - "huge": true, - "indexDesc": "Found by using the Breakable Mayhem Enchant!", - "indexObtainable": true, - "name": "Huge Parrot", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://111864470739577", + "name": "Cannibal Meerkat", "rarity": { "Announce": true, "Color": null, @@ -118150,23 +122732,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://106937805162090", + "thumbnail": "rbxassetid://99633553273367", }, - "configName": "Huge Parrot", + "configName": "Cannibal Meerkat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d06191bbaf4a6c34", + "hashShort": "74b44eae59c7345d", }, { "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://93125878457744", + "goldenThumbnail": "rbxassetid://123904176007470", "huge": true, - "indexDesc": "Found in the Exclusive Hypnotic Egg!", + "indexDesc": "Earned from the 2024 Haunted Backrooms Event!", "indexObtainable": true, - "name": "Huge Hypnotic Dragon", + "name": "Huge Glowy the Ghost", "rarity": { "Announce": true, "Color": null, @@ -118179,22 +122761,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://90381015332493", + "thumbnail": "rbxassetid://80650774485901", }, - "configName": "Huge Hypnotic Dragon", + "configName": "Huge Glowy the Ghost", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e6970c59861a2f42", + "hashShort": "c54848a9f91b763d", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://134798583283192", + "fly": true, + "goldenThumbnail": "rbxassetid://138251115739919", "huge": true, - "indexDesc": "Found in the Exclusive Hypnotic Egg!", + "indexDesc": "Earned from the 2024 Halloween Event's final egg!", "indexObtainable": true, - "name": "Huge Hypnotic Cat", + "name": "Huge Abomination", "rarity": { "Announce": true, "Color": null, @@ -118207,118 +122790,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://111380702185705", + "thumbnail": "rbxassetid://70697028891589", }, - "configName": "Huge Hypnotic Cat", + "configName": "Huge Abomination", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "09b04907fc4b26ef", + "hashShort": "dd4a5e592d11ef29", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "colorVariants": [ - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Red!", - "Disabled": { - "Decal": true, - }, - "IconColor": null, - "Id": 1, - "IsUnique": true, - "Magnitude": 1, - "Name": "Red", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Blue!", - "Disabled": { - "Decal": true, - }, - "IconColor": null, - "Id": 2, - "IsUnique": true, - "Magnitude": 1, - "Name": "Blue", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Green!", - "Disabled": { - "Decal": true, - }, - "IconColor": null, - "Id": 3, - "IsUnique": true, - "Magnitude": 1, - "Name": "Green", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Yellow!", - "Disabled": { - "Decal": true, - }, - "IconColor": null, - "Id": 4, - "IsUnique": true, - "Magnitude": 1, - "Name": "Yellow", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Cyan!", - "Disabled": { - "Decal": true, - }, - "IconColor": null, - "Id": 5, - "IsUnique": true, - "Magnitude": 1, - "Name": "Cyan", - "Title": "Chroma", - }, - { - "Chance": 0.16666666666666666, - "Color": null, - "Desc": "Comes in Violet!", - "Disabled": { - "Decal": true, - }, - "IconColor": null, - "Id": 6, - "IsUnique": true, - "Magnitude": 1, - "Name": "Violet", - "Title": "Chroma", - }, - ], - }, - "cachedPower": [ - 183552858660394, - ], - "fromEgg": "Doodle Tropical Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "", + "goldenThumbnail": "rbxassetid://82777280787408", "huge": true, - "indexDesc": "Earned from the last egg in the Doodle World!", + "indexDesc": "Found in the 2024 Spider Neighborhood Event!", "indexObtainable": true, - "maxChance": 9.99987305161161e-9, - "name": "Huge Chroma Doodle Axolotl", - "preventGolden": true, + "name": "Huge Tarantula", "rarity": { "Announce": true, "Color": null, @@ -118331,24 +122818,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "staticColorVariants": true, - "thumbnail": "rbxassetid://104790531635237", + "thumbnail": "rbxassetid://124339060912566", }, - "configName": "Huge Chroma Doodle Axolotl", + "configName": "Huge Tarantula", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "86906c6aaf6fe4ef", + "hashShort": "eaf6f46583ef4410", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://101610582312145", - "indexDesc": "Found by using the Breakable Mayhem Enchant!", + "goldenThumbnail": "rbxassetid://101002357295735", + "huge": true, + "indexDesc": "Found in the 2024 Grim Reaper Neighborhood Event!", "indexObtainable": true, - "name": "Titanic Parrot", - "power": 18, + "name": "Huge Reaper Cat", "rarity": { "Announce": true, "Color": null, @@ -118361,22 +122846,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://81714067299017", - "titanic": true, + "thumbnail": "rbxassetid://136851484598871", }, - "configName": "Titanic Parrot", + "configName": "Huge Reaper Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1a48734a721e1a1d", + "hashShort": "bb90bff8d94e8a78", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://132438776498665", - "indexDesc": "Found in the Exclusive Hypnotic Egg!", + "fly": true, + "goldenThumbnail": "rbxassetid://122818031009937", + "huge": true, + "indexDesc": "Found in the 2024 Vampire Neighborhood Event!", "indexObtainable": true, - "name": "Titanic Hypnotic Monkey", + "name": "Huge Vampire Dragon", "rarity": { "Announce": true, "Color": null, @@ -118389,569 +122875,341 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://85590653495391", - "titanic": true, + "thumbnail": "rbxassetid://122834900117274", }, - "configName": "Titanic Hypnotic Monkey", + "configName": "Huge Vampire Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8f6442207352bda0", + "hashShort": "4014cb91449e8035", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 92689946233890, - ], - "fromEgg": "Doodle Flower Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 235, - "goldenThumbnail": "rbxassetid://14968212581", - "maxChance": 0.0009990009990009992, - "name": "Doodle Bunny", + "goldenThumbnail": "rbxassetid://99876397020856", + "huge": true, + "indexDesc": "Found in the Bat Pack!", + "indexObtainable": true, + "name": "Huge Phantom Wolf", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968212719", + "thumbnail": "rbxassetid://73617612474545", }, - "configName": "Doodle Bunny", + "configName": "Huge Phantom Wolf", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "be0bc15c3e9c36a3", + "hashShort": "2f7c23519c956386", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 121567824883885, - ], - "fromEgg": "Doodle Tropical Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968218838", - "maxChance": 0.9899874321095494, - "name": "Doodle Narwhal", + "goldenThumbnail": "rbxassetid://102656107458196", + "huge": true, + "indexDesc": "Found in the Ghostface Gift!", + "indexObtainable": true, + "name": "Huge Mummy Bunny", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968218908", + "thumbnail": "rbxassetid://101133530585577", }, - "configName": "Doodle Narwhal", + "configName": "Huge Mummy Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8e9c130f51fb6e6b", + "hashShort": "cbae8af38b615ab1", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 170568842697064, - ], - "fromEgg": "Doodle Tropical Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968220424", - "maxChance": 0.000002499968262902903, - "name": "Doodle Shark", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "thumbnail": "rbxassetid://14968220543", - }, - "configName": "Doodle Shark", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ffaac92086dae8b9", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 177669716370164, - ], - "fromEgg": "Doodle Tropical Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968211915", - "maxChance": 1.849976514548148e-7, - "name": "Doodle Axolotl", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, - }, - "thumbnail": "rbxassetid://14968211984", - }, - "configName": "Doodle Axolotl", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1683dd636c37937e", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 166219679670159, - ], - "fromEgg": "Doodle Tropical Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968214546", - "maxChance": 0.000009999873051611612, - "name": "Doodle Dolphin", + "goldenThumbnail": "rbxassetid://108129229977290", + "indexDesc": "Earned from the 2024 Halloween Event!", + "indexObtainable": true, + "name": "Titanic Pumpkin Cat", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "thumbnail": "rbxassetid://14968214636", - }, - "configName": "Doodle Dolphin", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "eb8f2b239c44c39f", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 85974257586617, - ], - "fromEgg": "Doodle Safari Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 236, - "goldenThumbnail": "rbxassetid://14968222124", - "maxChance": 0.8955223880597015, - "name": "Doodle Tiger", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968222226", + "thumbnail": "rbxassetid://111326774282264", + "titanic": true, }, - "configName": "Doodle Tiger", + "configName": "Titanic Pumpkin Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "fd36d997e8089346", + "hashShort": "8f9ba82ef70a6bdb", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 92317905484197, + 59588363139356, + 63552428432103, + 67308493514990, ], - "fromEgg": "Doodle Safari Egg", "fromWorldNumber": 3, - "fromZoneNumber": 236, - "goldenThumbnail": "rbxassetid://14968215255", - "maxChance": 0.09950248756218906, - "name": "Doodle Elephant", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - "thumbnail": "rbxassetid://14968215385", + "fromZoneNumber": 229, + "goldenThumbnail": "rbxassetid://83642998757908", + "name": "Evil Wolverine", + "thumbnail": "rbxassetid://113761166558023", }, - "configName": "Doodle Elephant", + "configName": "Evil Wolverine", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "becefd3a09d6433e", + "dateModified": "2026-06-27T16:05:40.191Z", + "hashShort": "39d3a1f6766f56b6", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 139263938547799, + 61044782629494, + 66094873047592, + 68835416398649, ], - "fromEgg": "Doodle Tropical Egg", "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968214321", - "maxChance": 0.00999987305161161, - "name": "Doodle Crocodile", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, - }, - "thumbnail": "rbxassetid://14968214440", + "fromZoneNumber": 229, + "goldenThumbnail": "rbxassetid://91010721002877", + "name": "Tarantula", + "thumbnail": "rbxassetid://73078316333134", }, - "configName": "Doodle Crocodile", + "configName": "Tarantula", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "54f7a341b0bbe23a", + "dateModified": "2026-06-27T16:05:40.192Z", + "hashShort": "674d0710e0c8ebff", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 99753969598875, + 66287892793990, + 70930045657077, + 74871196601188, ], - "fromEgg": "Doodle Safari Egg", + "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 236, - "goldenThumbnail": "rbxassetid://14968220188", - "maxChance": 0.004975124378109453, - "name": "Doodle Rhino", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - "thumbnail": "rbxassetid://14968220345", + "fromZoneNumber": 229, + "goldenThumbnail": "rbxassetid://131979523441145", + "name": "Vampire Dragon", + "thumbnail": "rbxassetid://114237887654774", }, - "configName": "Doodle Rhino", + "configName": "Vampire Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4c51bb0b9fce6c94", + "dateModified": "2026-06-27T16:05:40.194Z", + "hashShort": "55a0e278c02a7184", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 96752146083443, + 64789861318420, + 69793964645226, + 73167075083411, ], - "fly": true, - "fromEgg": "Doodle Fairy Egg", "fromWorldNumber": 3, - "fromZoneNumber": 237, - "goldenThumbnail": "rbxassetid://14968215488", - "maxChance": 0.8910891089108911, - "name": "Doodle Fairy", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - "thumbnail": "rbxassetid://14968215596", + "fromZoneNumber": 229, + "goldenThumbnail": "rbxassetid://78736451265295", + "name": "Reaper Cat", + "thumbnail": "rbxassetid://125242320052036", }, - "configName": "Doodle Fairy", + "configName": "Reaper Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1157e3ce6bb63cd7", + "dateModified": "2026-06-27T16:05:40.198Z", + "hashShort": "7f63dd10c21b0ba6", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 103869665542824, + 63291829842849, + 68647074691495, + 71446740152814, ], - "fly": true, - "fromEgg": "Doodle Fairy Egg", "fromWorldNumber": 3, - "fromZoneNumber": 237, - "goldenThumbnail": "rbxassetid://14968216770", - "maxChance": 0.09900990099009901, - "name": "Doodle Griffin", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - "thumbnail": "rbxassetid://14968216873", + "fromZoneNumber": 229, + "goldenThumbnail": "rbxassetid://120537522205833", + "name": "Mummy Bunny", + "thumbnail": "rbxassetid://86064284363349", }, - "configName": "Doodle Griffin", + "configName": "Mummy Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1992d0e4a94eb998", + "dateModified": "2026-06-27T16:05:40.192Z", + "hashShort": "125abe5ca32b7c97", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 110066515884791, + 67832737753172, + 72636585865452, + 76449010583034, ], "fly": true, - "fromEgg": "Doodle Fairy Egg", "fromWorldNumber": 3, - "fromZoneNumber": 237, - "goldenThumbnail": "rbxassetid://14968214722", - "maxChance": 0.009900990099009901, - "name": "Doodle Dragon", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, - }, - "thumbnail": "rbxassetid://14968214828", + "fromZoneNumber": 229, + "goldenThumbnail": "rbxassetid://74975020012890", + "name": "Abomination", + "thumbnail": "rbxassetid://88470325736458", }, - "configName": "Doodle Dragon", + "configName": "Abomination", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "491dd3d10a57bdae", + "dateModified": "2026-06-27T16:05:23.845Z", + "hashShort": "dfad132e830dc99e", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 108793534116544, - ], - "fromEgg": "Doodle Gem Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 238, - "goldenThumbnail": "rbxassetid://14968222932", - "maxChance": 0.8977556109725686, - "name": "Doodle Unicorn", + "goldenThumbnail": "rbxassetid://134101571166624", + "huge": true, + "indexDesc": "Found in the Exclusive Cartoon Egg!", + "indexObtainable": true, + "name": "Huge Cartoon Bunny", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968223059", + "thumbnail": "rbxassetid://83751288485339", }, - "configName": "Doodle Unicorn", + "configName": "Huge Cartoon Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "23a0c30e2c75b227", + "hashShort": "33d49a8495d4ca10", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 116833062247483, - ], "fly": true, - "fromEgg": "Doodle Gem Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 238, - "goldenThumbnail": "rbxassetid://14968211749", - "maxChance": 0.09975062344139651, - "name": "Doodle Agony", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - "thumbnail": "rbxassetid://14968211859", - }, - "configName": "Doodle Agony", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9bbb9079641a690c", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 128715981223789, - ], - "fromEgg": "Doodle Gem Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 238, - "goldenThumbnail": "rbxassetid://14968216999", - "maxChance": 0.0024937655860349127, - "name": "Doodle Hydra", + "goldenThumbnail": "rbxassetid://80163134896084", + "huge": true, + "indexDesc": "Found in the Exclusive Cartoon Egg!", + "indexObtainable": true, + "name": "Huge Cartoon Demon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Legendary", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 4, - "_id": "Legendary", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968217100", + "thumbnail": "rbxassetid://114799627163759", }, - "configName": "Doodle Hydra", + "configName": "Huge Cartoon Demon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "aa4fb2c1cd411542", + "hashShort": "f593c07d6ec18367", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 75899685046566, - ], - "fromEgg": "Doodle Flower Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 235, - "goldenThumbnail": "rbxassetid://14968212872", - "maxChance": 0.989010989010989, - "name": "Doodle Cat", + "goldenThumbnail": "rbxassetid://97936902453367", + "huge": true, + "indexDesc": "Found in The Forever Pack!", + "indexObtainable": true, + "name": "Huge Yee-haw Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968212948", + "thumbnail": "rbxassetid://85182651602746", }, - "configName": "Doodle Cat", + "configName": "Huge Yee-haw Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1cc5036622ec280a", + "hashShort": "e24674c8b611f6aa", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 86944208262139, - ], - "fromEgg": "Doodle Flower Egg", - "fromWorldNumber": 3, - "fromZoneNumber": 235, - "goldenThumbnail": "rbxassetid://14968213301", - "maxChance": 0.00999000999000999, - "name": "Doodle Corgi", + "goldenThumbnail": "rbxassetid://122770340220299", + "huge": true, + "indexDesc": "Tied to the Huge Panda merch in stores!", + "indexObtainable": false, + "name": "Huge Panda", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Epic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 3, - "_id": "Epic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968213833", + "thumbnail": "rbxassetid://86383655760798", }, - "configName": "Doodle Corgi", + "configName": "Huge Panda", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8d2c94d5e9f17c48", + "hashShort": "e66e29257216b818", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://112906671569372", - "name": "Hypnotic Cat", + "goldenThumbnail": "rbxassetid://74923099050236", + "huge": true, + "indexDesc": "Comes with Series 3 Fox Collector Bundle!", + "indexObtainable": true, + "name": "Huge Panther", "rarity": { "Announce": true, "Color": null, @@ -118964,21 +123222,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://90350304780770", + "thumbnail": "rbxassetid://127123894075183", }, - "configName": "Hypnotic Cat", + "configName": "Huge Panther", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a68035af75230845", + "hashShort": "18defb471ca732f5", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "fly": true, - "goldenThumbnail": "rbxassetid://74611716648687", - "name": "Hypnotic Griffin", + "goldenThumbnail": "rbxassetid://109333637335372", + "huge": true, + "indexDesc": "Comes with Series 3 Treasure Chest Ultimate Bundle!", + "indexObtainable": true, + "name": "Huge Jaguar", "rarity": { "Announce": true, "Color": null, @@ -118991,21 +123250,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://118264106080641", + "thumbnail": "rbxassetid://121900456724248", }, - "configName": "Hypnotic Griffin", + "configName": "Huge Jaguar", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "bbd41cf1679bcc66", + "hashShort": "6ac5734052a98855", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "rbxassetid://116617477074053", - "name": "Hypnotic Dragon", + "goldenThumbnail": "rbxassetid://128570959299987", + "huge": true, + "indexDesc": "Found in the Series 3 Mystery Gift!", + "indexObtainable": true, + "name": "Huge Hedgehog", "rarity": { "Announce": true, "Color": null, @@ -119018,34 +123278,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://125420855312026", + "thumbnail": "rbxassetid://76079961004041", }, - "configName": "Hypnotic Dragon", + "configName": "Huge Hedgehog", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a3f0f2a848c0663c", + "hashShort": "a53631ebfd009c72", }, { - "category": "Gargantuan", + "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "customAnimations": true, - "idleActionAnimations": [ - [ - "CorgiJumping", - 0.5, - ], - ], - "ridingJumpPower": 125, - }, - "gargantuan": true, - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Hypnotic Egg! - -Ground Slam - Pet will damage breakables in a large area!", + "goldenThumbnail": "rbxassetid://118176850997849", + "huge": true, + "indexDesc": "Found in The Forcefield Pack!", "indexObtainable": true, - "name": "Gargantuan Hypnotic Kitsune", + "name": "Huge Forcefield Cat", "rarity": { "Announce": true, "Color": null, @@ -119058,22 +123306,30 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://130525621588743", + "thumbnail": "rbxassetid://85865166902992", }, - "configName": "Gargantuan Hypnotic Kitsune", + "configName": "Huge Forcefield Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2c02928cd84fc6f1", + "hashShort": "4718c8c3531c4eaf", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://112908538882157", + "animations": { + "flyHeight": 0.025, + "flyHeightChange": 0, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://128553511769929", "huge": true, - "indexDesc": "Earned from Pet Games World's huge raffles!", + "indexDesc": "Found in the Wooden Gift and woodcutting minigame!", "indexObtainable": true, - "name": "Huge Guard Dominus", + "name": "Huge Trojan Horse", "rarity": { "Announce": true, "Color": null, @@ -119086,22 +123342,29 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://125199678702615", + "thumbnail": "rbxassetid://127674627495853", }, - "configName": "Huge Guard Dominus", + "configName": "Huge Trojan Horse", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "bd9a8dd97717ad61", + "hashShort": "cacc6f0fc1bbf01e", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://137486887432785", + "cachedPower": [ + 101858796467066, + ], + "fromEgg": "Colosseum Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://76209542172506", "huge": true, - "indexDesc": "Earned from the Pet Games inside Pet Games Gifts and leaderboard contest!", + "indexDesc": "Earned from the Olympus World's final egg!", "indexObtainable": true, - "name": "Huge Player Corgi", + "maxChance": 9.99987305161161e-9, + "name": "Huge Gorgon", "rarity": { "Announce": true, "Color": null, @@ -119114,23 +123377,30 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://120748568564871", + "thumbnail": "rbxassetid://82639968294910", }, - "configName": "Huge Player Corgi", + "configName": "Huge Gorgon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "384a9f106b53a8d4", + "hashShort": "5a794b4490814ed1", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://119803493473064", - "huge": true, - "indexDesc": "Earned from The Forever Pack!", + "animations": { + "spriteSheet": { + "Height": 5, + "Part": "Face", + "Rate": 0.1, + "Texture1": "Texture1", + "Width": 5, + }, + }, + "goldenThumbnail": "rbxassetid://137351384037490", + "indexDesc": "Found in the Exclusive Cartoon Egg!", "indexObtainable": true, - "name": "Huge Guard Dragon", + "name": "Titanic Cartoon Cat", "rarity": { "Announce": true, "Color": null, @@ -119143,22 +123413,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://106968856805193", + "thumbnail": "rbxassetid://96042514794947", + "titanic": true, }, - "configName": "Huge Guard Dragon", + "configName": "Titanic Cartoon Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "22e89809040920c7", + "hashShort": "84cbf390bdd12d2b", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://82646159865722", - "huge": true, - "indexDesc": "Earned from the final egg in the Pet Games Event!", + "goldenThumbnail": "rbxassetid://98055089478373", + "indexDesc": "Found in The Forever Pack!", "indexObtainable": true, - "name": "Huge Player Panda", + "name": "Titanic Yee-haw Cat", "rarity": { "Announce": true, "Color": null, @@ -119171,23 +123441,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://98031004094644", + "thumbnail": "rbxassetid://111695166466582", + "titanic": true, }, - "configName": "Huge Player Panda", + "configName": "Titanic Yee-haw Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4bd420a215d0944b", + "hashShort": "e7b374496537dce9", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { + "exclusiveLevel": 3, "fly": true, - "goldenThumbnail": "rbxassetid://85736363782795", - "huge": true, - "indexDesc": "Reward in the 2025 Pet Games Battle!", - "indexObtainable": true, - "name": "Huge Wyvern of Hades", + "goldenThumbnail": "rbxassetid://125987151921577", + "name": "Cartoon Demon", "rarity": { "Announce": true, "Color": null, @@ -119200,23 +123469,20 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://113089838370784", + "thumbnail": "rbxassetid://93977999024430", }, - "configName": "Huge Wyvern of Hades", + "configName": "Cartoon Demon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0a910180f6138bdb", + "hashShort": "3573de352a79d6f7", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://115548825496345", - "huge": true, - "indexDesc": "Earned from the Control Room Egg!", - "indexObtainable": true, - "name": "Huge Frontman Jellyfish", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://91533924655300", + "name": "Cartoon Corgi", "rarity": { "Announce": true, "Color": null, @@ -119229,21 +123495,20 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://104443983862799", + "thumbnail": "rbxassetid://80855491776939", }, - "configName": "Huge Frontman Jellyfish", + "configName": "Cartoon Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ff74625c60be147d", + "hashShort": "4aa5419ea6483f23", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://134748735502141", - "indexDesc": "Earned from Pet Games World's huge raffles!", - "indexObtainable": true, - "name": "Titanic Guard Dominus", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://99743156841242", + "name": "Cartoon Bunny", "rarity": { "Announce": true, "Color": null, @@ -119256,243 +123521,336 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://100676807930076", - "titanic": true, - }, - "configName": "Titanic Guard Dominus", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "544441607e0e9367", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 141663783216864, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://116537728007674", - "name": "Player Corgi", - "thumbnail": "rbxassetid://79992947459928", + "thumbnail": "rbxassetid://123996725271489", }, - "configName": "Player Corgi", + "configName": "Cartoon Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d91496eac658398f", + "hashShort": "15d6b9e3ef16c669", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 144510626614779, + 42118933082793, + 44885555810734, + 47462799731790, ], + "fromEgg": "Elysium Egg", "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://119263825261976", - "name": "Guard Dominus", - "thumbnail": "rbxassetid://124518638707303", + "fromZoneNumber": 230, + "goldenThumbnail": "rbxassetid://120972531161583", + "maxChance": 0.989010989010989, + "name": "Sacred Boar", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://112808303499187", }, - "configName": "Guard Dominus", + "configName": "Sacred Boar", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "33d2cb15cbc83d81", + "dateModified": "2026-06-27T16:05:40.193Z", + "hashShort": "6bca2346f637ddd5", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 142161683887343, + 48247858834760, + 52258273081692, + 54410237131163, ], - "fly": true, + "fromEgg": "Elysium Egg", "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://136930102181059", - "name": "Guard Dragon", - "thumbnail": "rbxassetid://112948890862176", + "fromZoneNumber": 230, + "goldenThumbnail": "rbxassetid://99586577583225", + "maxChance": 0.8955223880597015, + "name": "Sacred Deer", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://137733111989398", }, - "configName": "Guard Dragon", + "configName": "Sacred Deer", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a33879ed9b2a2cfe", + "dateModified": "2026-06-27T16:05:40.199Z", + "hashShort": "f60413825af4b8df", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 138444616825878, + 51436335216381, + 55335472472992, + 58097397093686, ], + "fromEgg": "Elysium Egg", "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://77873097420473", - "name": "Player Panda", - "thumbnail": "rbxassetid://138601406877967", + "fromZoneNumber": 230, + "goldenThumbnail": "rbxassetid://132672801337464", + "maxChance": 0.8910891089108911, + "name": "Ocean Horse", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://86428675522213", }, - "configName": "Player Panda", + "configName": "Ocean Horse", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "dca93a2c6d267210", + "dateModified": "2026-06-27T16:05:40.198Z", + "hashShort": "29fdea7af3460432", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "flyHeight": 0.001, + "flyHeightChange": 0, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, + }, "cachedPower": [ - 140636749406375, + 61079096894322, + 66164636914782, + 68875574280356, ], + "fly": true, + "fromEgg": "Lost Library Egg", "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://77222263840368", - "name": "Player Piggy", - "thumbnail": "rbxassetid://113730211503617", + "fromZoneNumber": 232, + "goldenThumbnail": "rbxassetid://92402866691353", + "maxChance": 0.9899874321095494, + "name": "Trojan Horse", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://72050462415984", }, - "configName": "Player Piggy", + "configName": "Trojan Horse", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5cd795bc5cfd967b", + "dateModified": "2026-06-27T16:05:40.200Z", + "hashShort": "5bccc7b8bb8edd56", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 139565048170975, + 55356366336702, + 60324055041287, + 62465933428767, ], + "fromEgg": "Paradise Egg", "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://112587595347366", - "name": "Guard Raccoon", - "thumbnail": "rbxassetid://108352797408458", + "fromZoneNumber": 231, + "goldenThumbnail": "rbxassetid://111916815981399", + "maxChance": 0.8977556109725686, + "name": "Apollo Raven", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://91260499963508", }, - "configName": "Guard Raccoon", + "configName": "Apollo Raven", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a141c2e115d58dde", + "dateModified": "2026-06-27T16:05:40.201Z", + "hashShort": "68a01e40b6255def", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 141155615833073, + 71428225249219, + 77398811996974, + 80632556317073, ], + "fly": true, + "fromEgg": "Nebula Egg", "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://126718327606405", - "name": "Guard Wolf", - "thumbnail": "rbxassetid://71453095596700", + "fromZoneNumber": 233, + "goldenThumbnail": "rbxassetid://86079929733979", + "maxChance": 0.00999987305161161, + "name": "Athena Owl", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Epic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 3, + "_id": "Epic", + "_script": null, + }, + "thumbnail": "rbxassetid://71120852277996", }, - "configName": "Guard Wolf", + "configName": "Athena Owl", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6f56fd80d96b2f5b", + "dateModified": "2026-06-27T16:05:40.200Z", + "hashShort": "873411f87edabb68", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 137270811892082, + 94653590026883, + 101187135793476, + 106891342933751, ], + "fromEgg": "Colosseum Egg", "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://129881970154045", - "name": "Doll Cat", - "thumbnail": "rbxassetid://123466882813661", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://95151048796770", + "maxChance": 0.000002499968262902903, + "name": "Gorgon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "thumbnail": "rbxassetid://107869225206611", }, - "configName": "Doll Cat", + "configName": "Gorgon", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2b2b98f57f70bad4", + "dateModified": "2026-06-27T16:05:40.201Z", + "hashShort": "3e277b787db4e736", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 146655043314062, + 98594070450262, ], - "fly": true, + "fromEgg": "Colosseum Egg", "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://131898196860043", - "name": "Frontman Jellyfish", - "thumbnail": "rbxassetid://94692008134127", - }, - "configName": "Frontman Jellyfish", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0f9c2f0e108a338d", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "goldenThumbnail": "rbxassetid://75571034855083", - "huge": true, - "indexDesc": "Earned from the 2025 Pet Games Event!", - "indexObtainable": true, - "name": "Huge Player Fox", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://136171113347678", + "maxChance": 1.849976514548148e-7, + "name": "Zeus Bull", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://101605254258375", + "thumbnail": "rbxassetid://126643741129826", }, - "configName": "Huge Player Fox", + "configName": "Zeus Bull", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "cb25bb60cde7c9ca", + "hashShort": "d302b49931d10999", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://131272994056412", - "huge": true, - "indexDesc": "Earned from the 2025 Pet Games Event!", - "indexObtainable": true, - "name": "Huge Guard Wolf", + "cachedPower": [ + 92240113523206, + 99358648624763, + 104148612180683, + ], + "fromEgg": "Colosseum Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://123474245616789", + "maxChance": 0.000009999873051611612, + "name": "Artemis Bear", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://120663531720305", + "thumbnail": "rbxassetid://78157353231604", }, - "configName": "Huge Guard Wolf", + "configName": "Artemis Bear", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c94720be2f9dad51", + "dateModified": "2026-06-27T16:05:40.202Z", + "hashShort": "59ee1a00a3e634af", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://114032962278654", + "fly": true, + "goldenThumbnail": "rbxassetid://125592299400707", "huge": true, - "indexDesc": "Earned from the 2025 Pet Games Event!", + "indexDesc": "Reward in the 2024 Blimp Dragon Clan Battle!", "indexObtainable": true, - "name": "Huge Guard Bunny", + "name": "Huge Blimp Dragon", "rarity": { "Announce": true, "Color": null, @@ -119505,22 +123863,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://70728047813207", + "thumbnail": "rbxassetid://113409897234634", }, - "configName": "Huge Guard Bunny", + "configName": "Huge Blimp Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2ebb376d784fcf10", + "hashShort": "b04dcc08a846afae", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://82164429493620", + "goldenThumbnail": "rbxassetid://106174951594367", "huge": true, - "indexDesc": "Earned from Pet Games World's huge raffles!", + "indexDesc": "Earned from the 2024 "Line for a Huge Pet" Eggs!", "indexObtainable": true, - "name": "Huge Doll Cat", + "name": "Huge Baby Kitten", "rarity": { "Announce": true, "Color": null, @@ -119533,22 +123891,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://104297588937430", + "thumbnail": "rbxassetid://108106366016899", }, - "configName": "Huge Doll Cat", + "configName": "Huge Baby Kitten", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "37d3240e3882f4de", + "hashShort": "7198df3d1b5956f6", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://71562430342400", + "goldenThumbnail": "rbxassetid://104430030513277", "huge": true, - "indexDesc": "Found in The Spotlight Pack!", + "indexDesc": "Earned from the 2024 "Line for a Huge Pet" Egg Room!", "indexObtainable": true, - "name": "Huge Guard Hydra", + "name": "Huge Toy Chest Mimic", "rarity": { "Announce": true, "Color": null, @@ -119561,22 +123919,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://79622017350328", + "thumbnail": "rbxassetid://111386850399193", }, - "configName": "Huge Guard Hydra", + "configName": "Huge Toy Chest Mimic", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2b8770ae82719c2d", + "hashShort": "8c10e8d4f8c03f09", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://132921278503250", + "goldenThumbnail": "rbxassetid://92926056587394", "huge": true, - "indexDesc": "Reward in the Pet Games leaderboard contest!", + "indexDesc": "Earned from the 2024 "Line for a Huge Pet" Leaderboards!", "indexObtainable": true, - "name": "Huge Player Penguin", + "name": "Huge Baby Piglet", "rarity": { "Announce": true, "Color": null, @@ -119589,22 +123947,30 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://121118923201338", + "thumbnail": "rbxassetid://115008493887428", }, - "configName": "Huge Player Penguin", + "configName": "Huge Baby Piglet", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "80829da315bf5512", + "hashShort": "997b98cf4da158d9", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "", + "animations": { + "flyHeight": 0, + "flyHeightChange": 0, + "swerve": true, + "swerveAggression": 0, + "swerveMaxAngle": 0, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://72519954771846", "huge": true, - "indexDesc": "Found in the Exclusive Googly Egg!", + "indexDesc": "Found in the Paw Print Pack!", "indexObtainable": true, - "name": "Huge Googly Corgi", + "name": "Huge Toy Duck", "rarity": { "Announce": true, "Color": null, @@ -119617,22 +123983,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://127100039471519", + "thumbnail": "rbxassetid://118862307433647", }, - "configName": "Huge Googly Corgi", + "configName": "Huge Toy Duck", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c2a826cadec42347", + "hashShort": "5462a1d0783c1980", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "", + "goldenThumbnail": "rbxassetid://102415075721818", "huge": true, - "indexDesc": "Found in the Exclusive Googly Egg!", + "indexDesc": "Found in the Adoption Gift!", "indexObtainable": true, - "name": "Huge Googly Shark", + "name": "Huge Baby Puppy", "rarity": { "Announce": true, "Color": null, @@ -119645,219 +124011,150 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://103658339806343", + "thumbnail": "rbxassetid://133001320495204", }, - "configName": "Huge Googly Shark", + "configName": "Huge Baby Puppy", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a2ce3654ccdfdd28", + "hashShort": "54bbc8114bd843bd", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { "animations": { - "flyHeight": 2.2, - "ridingCameraOffset": null, + "flyHeight": 0, + "flyHeightChange": 0, "swerve": true, - "swerveMaxAngle": 45, + "swerveAggression": 0, + "swerveMaxAngle": 0, }, + "cachedPower": [ + 95982270617357, + 102185819721790, + 108136923928681, + ], "fly": true, - "goldenThumbnail": "rbxassetid://89425189487820", - "indexDesc": "Earned from the 2025 Pet Games Event!", - "indexObtainable": true, - "name": "Titanic Frontman Jellyfish", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://91877971354703", - "titanic": true, - }, - "configName": "Titanic Frontman Jellyfish", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5645beaa3894a1e5", - }, - { - "category": "Titanic", - "collection": "Pets", - "configData": { - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Googly Egg!", - "indexObtainable": true, - "name": "Titanic Googly Blobfish", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://110994339382883", - "titanic": true, - }, - "configName": "Titanic Googly Blobfish", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "db6fc337031e4cde", - }, - { - "category": "Titanic", - "collection": "Pets", - "configData": { - "goldenThumbnail": "rbxassetid://139466436169821", - "indexDesc": "Earned from Pet Games World's huge raffles!", - "indexObtainable": true, - "name": "Titanic Doll Cat", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://93143962349458", - "titanic": true, - }, - "configName": "Titanic Doll Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9ecf5feaca1760cd", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 147463156529377, - ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://90425733592958", - "name": "Player Fox", - "thumbnail": "rbxassetid://100748278204952", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://85483094595689", + "name": "Toy Duck", + "thumbnail": "rbxassetid://76328663746051", }, - "configName": "Player Fox", + "configName": "Toy Duck", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "fba9d0997a850a2c", + "dateModified": "2026-06-27T16:05:40.203Z", + "hashShort": "3a583c854c8c6db3", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 148245610976160, + 80577708666423, + 87240980246665, + 90961183988653, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://99285561619050", - "name": "Guard Hydra", - "thumbnail": "rbxassetid://108242113920946", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://127211185486583", + "name": "Plushie Elephant", + "thumbnail": "rbxassetid://136261079191593", }, - "configName": "Guard Hydra", + "configName": "Plushie Elephant", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e0468b3448fe763f", + "dateModified": "2026-06-27T16:05:40.203Z", + "hashShort": "cb6e3aa9cf193bb9", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 146961199362313, + 75837843450751, + 80744363544728, + 85445395255502, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://82554093523959", - "name": "Player Penguin", - "thumbnail": "rbxassetid://112146088574937", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://112077972007097", + "name": "Plushie Fox", + "thumbnail": "rbxassetid://109160933141913", }, - "configName": "Player Penguin", + "configName": "Plushie Fox", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "05d7f0dfbf6a41ad", + "dateModified": "2026-06-27T16:05:40.204Z", + "hashShort": "3bb692c5f3fc153d", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 147955093919200, + 87983748065911, + 96087958272532, + 99242576652336, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://138227622666014", - "name": "Guard Bunny", - "thumbnail": "rbxassetid://79555963266888", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://108459051987591", + "name": "Baby Kitten", + "thumbnail": "rbxassetid://110730159918605", }, - "configName": "Guard Bunny", + "configName": "Baby Kitten", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ddce8c23d1f14b93", + "dateModified": "2026-06-27T16:05:40.204Z", + "hashShort": "48f7ec150554a9c5", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 147759495710361, + 104980608487735, + 112694954621615, + 118540229516201, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://83957208265289", - "name": "Recruiter Axolotl", - "thumbnail": "rbxassetid://115924107292362", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://86865944627088", + "name": "Toy Chest Mimic", + "thumbnail": "rbxassetid://136085318692498", }, - "configName": "Recruiter Axolotl", + "configName": "Toy Chest Mimic", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3cace909741dd41c", + "dateModified": "2026-06-27T16:05:40.205Z", + "hashShort": "4f6661fc59607345", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 147163210697852, + 83421627795827, + 89407017325622, + 94210239607089, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://73623201205111", - "name": "Player Gecko", - "thumbnail": "rbxassetid://91560073558553", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://99631548281081", + "name": "Baby Piglet", + "thumbnail": "rbxassetid://111064999087790", }, - "configName": "Player Gecko", + "configName": "Baby Piglet", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6f34dea92e4bed22", + "dateModified": "2026-06-27T16:05:40.209Z", + "hashShort": "a7acad2fe36399a3", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "", - "name": "Googly Cat", + "goldenThumbnail": "rbxassetid://139665951915416", + "huge": true, + "indexDesc": "Earned from the 2024 "Line for a Titanic Pet" Secret Egg Room!", + "indexObtainable": true, + "name": "Huge Principal Anteater", "rarity": { "Announce": true, "Color": null, @@ -119870,20 +124167,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://83360103208326", + "thumbnail": "rbxassetid://124723336680703", }, - "configName": "Googly Cat", + "configName": "Huge Principal Anteater", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f06799ac863425a9", + "hashShort": "457a501d67f27b21", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "", - "name": "Googly Corgi", + "goldenThumbnail": "rbxassetid://76091142779643", + "huge": true, + "indexDesc": "Found in the Paper Pack!", + "indexObtainable": true, + "name": "Huge Coach Tiger", "rarity": { "Announce": true, "Color": null, @@ -119896,20 +124195,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://121730983168479", + "thumbnail": "rbxassetid://72728231743832", }, - "configName": "Googly Corgi", + "configName": "Huge Coach Tiger", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4b3ff5a251ffc571", + "hashShort": "45da4b0db3ba1fdd", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "", - "name": "Googly Shark", + "goldenThumbnail": "rbxassetid://78698394564978", + "huge": true, + "indexDesc": "Found in the School Gift!", + "indexObtainable": true, + "name": "Huge Librarian Beaver", "rarity": { "Announce": true, "Color": null, @@ -119922,32 +124223,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://95174422189322", + "thumbnail": "rbxassetid://103600701852967", }, - "configName": "Googly Shark", + "configName": "Huge Librarian Beaver", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5037def70c53c83e", + "hashShort": "257e0a36abe71547", }, { - "category": "Gargantuan", + "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "boneFlyingAnimation": "rbxassetid://113382735394237", - "customAnimations": true, - "ridingCameraOffset": null, - "ridingJumpPower": 125, - }, - "fly": true, - "flyingTitanic": true, - "gargantuan": true, - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Googly Egg! - -Ground Slam - Pet will damage breakables in a large area!", + "goldenThumbnail": "rbxassetid://127258024115414", + "huge": true, + "indexDesc": "Earned from the 2024 "Line for a Titanic Pet" Egg Room!", "indexObtainable": true, - "name": "Gargantuan Googly Agony", + "name": "Huge Teacher Cat", "rarity": { "Announce": true, "Color": null, @@ -119960,22 +124251,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://99540557591138", + "thumbnail": "rbxassetid://108033517958051", }, - "configName": "Gargantuan Googly Agony", + "configName": "Huge Teacher Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ebbd00b5699fd2a8", + "hashShort": "db377a561ba84bde", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://118293765690599", + "goldenThumbnail": "rbxassetid://107375697404776", "huge": true, - "indexDesc": "Found in the Hype Egg every update!", + "indexDesc": "Earned from the 2024 "Line for a Titanic Pet" Eggs!", "indexObtainable": true, - "name": "Huge Party Panda", + "name": "Huge Student Corgi", "rarity": { "Announce": true, "Color": null, @@ -119988,22 +124279,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://102306587085097", + "thumbnail": "rbxassetid://129996809182527", }, - "configName": "Huge Party Panda", + "configName": "Huge Student Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e94289a41ce2819c", + "hashShort": "62f3dc11903a00e1", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://93918872693622", + "goldenThumbnail": "", "huge": true, - "indexDesc": "Reward in the 2025 Mushroom Clan Battle!", + "indexDesc": "Found in the Exclusive Chad Egg!", "indexObtainable": true, - "name": "Huge Mushroom King", + "name": "Huge Chad Bunny", "rarity": { "Announce": true, "Color": null, @@ -120016,23 +124307,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://125986697104431", + "thumbnail": "rbxassetid://106226869216523", }, - "configName": "Huge Mushroom King", + "configName": "Huge Chad Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "18756f57fd25288c", + "hashShort": "65e44559a9914a68", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://105374619873954", + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in the Cannon Tycoon's Rocketeer Pack!", + "indexDesc": "Found in the Exclusive Chad Egg!", "indexObtainable": true, - "name": "Huge Fireball Cat", + "name": "Huge Chad Elephant", "rarity": { "Announce": true, "Color": null, @@ -120045,22 +124335,24 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://106665613932679", + "thumbnail": "rbxassetid://125515994456210", }, - "configName": "Huge Fireball Cat", + "configName": "Huge Chad Elephant", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "557f39a2d5f94607", + "hashShort": "21952afc8a8c7d4a", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://114576749666110", - "huge": true, - "indexDesc": "Found in the Cannon Tycoon's boss chest!", + "fly": true, + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "goldenThumbnail": "rbxassetid://108904485259442", + "indexDesc": "Comes with the Titanic Samurai Dragon plush!", "indexObtainable": true, - "name": "Huge Stunt Cat", + "name": "Titanic Samurai Dragon", "rarity": { "Announce": true, "Color": null, @@ -120073,22 +124365,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://80484506977971", + "thumbnail": "rbxassetid://125481811562940", + "titanic": true, }, - "configName": "Huge Stunt Cat", + "configName": "Titanic Samurai Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "32f4025db210d225", + "hashShort": "bf4f8259e4ea01f1", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://124889772980701", - "huge": true, - "indexDesc": "Found in the Cannon Tycoon's final egg!", + "goldenThumbnail": "rbxassetid://128737774717641", + "indexDesc": "Comes with the Titanic Gingerbread Cat plush!", "indexObtainable": true, - "name": "Huge Stunt Corgi", + "name": "Titanic Gingerbread Cat", "rarity": { "Announce": true, "Color": null, @@ -120101,26 +124393,25 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://132747851336356", + "thumbnail": "rbxassetid://123881708128597", + "titanic": true, }, - "configName": "Huge Stunt Corgi", + "configName": "Titanic Gingerbread Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8c5b9a40dfa62103", + "hashShort": "8aae751e486b06ad", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "animations": { - "flyHeightChange": 0.15, - }, "fly": true, - "goldenThumbnail": "rbxassetid://126005955826456", - "huge": true, - "indexDesc": "Found in the Hellfire Gift Bag!", + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "goldenThumbnail": "rbxassetid://125504366767960", + "indexDesc": "Comes with Christmas Merch Rewards 2024", "indexObtainable": true, - "name": "Huge Torpedo Shepherd", + "name": "Titanic Gingerbread Dragon", "rarity": { "Announce": true, "Color": null, @@ -120133,22 +124424,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://82812436217592", + "thumbnail": "rbxassetid://110203202746890", + "titanic": true, }, - "configName": "Huge Torpedo Shepherd", + "configName": "Titanic Gingerbread Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3c43d7d5839a38ba", + "hashShort": "ee929b29b28313f4", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://111208644414427", - "huge": true, - "indexDesc": "Reward in the Cannon Tycoon's leaderboard contest!", + "goldenThumbnail": "rbxassetid://106977433199370", + "indexDesc": "Comes with the Titanic Koi Fish plush!", "indexObtainable": true, - "name": "Huge Crash Dummy Noob", + "name": "Titanic Koi Fish", "rarity": { "Announce": true, "Color": null, @@ -120161,21 +124452,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://138395333405462", + "thumbnail": "rbxassetid://86724162375646", + "titanic": true, }, - "configName": "Huge Crash Dummy Noob", + "configName": "Titanic Koi Fish", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "43b27699b74bdac7", + "hashShort": "83d30100a9088962", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://91986863296560", - "indexDesc": "Found in the Hype Egg every update!", + "goldenThumbnail": "rbxassetid://82423229958271", + "indexDesc": "Comes with the Titanic Giraffe plush!", "indexObtainable": true, - "name": "Titanic Party Panda", + "name": "Titanic Giraffe", "rarity": { "Announce": true, "Color": null, @@ -120188,22 +124480,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://74514642411800", + "thumbnail": "rbxassetid://82353035401807", "titanic": true, }, - "configName": "Titanic Party Panda", + "configName": "Titanic Giraffe", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7cc4479b0fe90a58", + "hashShort": "7f891c202871a31b", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://130862635898580", - "indexDesc": "Found in the Cannon Tycoon's boss chest!", + "goldenThumbnail": "rbxassetid://79697476627421", + "indexDesc": "Comes with the Titanic Calico Cat plush!", "indexObtainable": true, - "name": "Titanic Stunt Cat", + "name": "Titanic Calico Cat", "rarity": { "Announce": true, "Color": null, @@ -120216,251 +124508,195 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://128964854488748", + "thumbnail": "rbxassetid://89706854037994", "titanic": true, }, - "configName": "Titanic Stunt Cat", + "configName": "Titanic Calico Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3c674cbcc9b92572", + "hashShort": "8a9ef0296d7b2ad3", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 146240827766263, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968306213", - "name": "Plane Dragon", - "thumbnail": "rbxassetid://14968306296", + "goldenThumbnail": "rbxassetid://101595227838905", + "indexDesc": "Earned from the 2024 "Line for a Titanic Pet" Egg Room!", + "indexObtainable": true, + "name": "Titanic Teacher Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://104387672853610", + "titanic": true, }, - "configName": "Plane Dragon", + "configName": "Titanic Teacher Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7a8f15e8192846dd", + "hashShort": "f58261e9bcd52108", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 145390907509625, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968199768", - "name": "Crash Dummy Noob", - "thumbnail": "rbxassetid://14968199866", + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Chad Egg!", + "indexObtainable": true, + "name": "Titanic Chad Gorilla", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://101924214050321", + "titanic": true, }, - "configName": "Crash Dummy Noob", + "configName": "Titanic Chad Gorilla", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8da7a0360d1eda7b", + "hashShort": "8cfa6bf175f5dedd", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 144510626614779, + 80577708666423, + 87240980246665, + 90961183988653, ], - "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968321593", - "name": "Rocket Shark", - "thumbnail": "rbxassetid://14968321747", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://98216387032846", + "name": "Teacher Cat", + "thumbnail": "rbxassetid://86384004045055", }, - "configName": "Rocket Shark", + "configName": "Teacher Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "39c029ae3d0a17f2", + "dateModified": "2026-06-27T16:05:40.208Z", + "hashShort": "5061db638d0040bf", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 148627715451079, + 106180386870451, + 113602272632173, + 119901206532038, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968346530", - "name": "Stunt Cat", - "thumbnail": "rbxassetid://14968346741", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://120151090288379", + "name": "Librarian Beaver", + "thumbnail": "rbxassetid://92998696298472", }, - "configName": "Stunt Cat", + "configName": "Librarian Beaver", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "42729da28c2441dd", + "dateModified": "2026-06-27T16:05:40.210Z", + "hashShort": "f92e2668bcbe472e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "flyHeightChange": 0.15, - }, "cachedPower": [ - 146655043314062, + 83421627795827, + 89407017325622, + 94210239607089, ], - "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968354685", - "name": "Torpedo Shepherd", - "thumbnail": "rbxassetid://14968354807", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://140441065542741", + "name": "Student Corgi", + "thumbnail": "rbxassetid://76345973092096", }, - "configName": "Torpedo Shepherd", + "configName": "Student Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "30762fdfb9cbe859", + "dateModified": "2026-06-27T16:05:40.210Z", + "hashShort": "31bb6dca9cf8f05b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 149557835078681, + 87983748065911, + 96087958272532, + 99242576652336, ], - "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968237505", - "name": "Fireball Cat", - "thumbnail": "rbxassetid://14968237630", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://98919830084882", + "name": "Coach Tiger", + "thumbnail": "rbxassetid://87329789592231", }, - "configName": "Fireball Cat", + "configName": "Coach Tiger", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8acbedaac7e9d9fb", + "dateModified": "2026-06-27T16:05:40.210Z", + "hashShort": "7374263a83eef952", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 147463156529377, + 107980054444527, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968347124", - "name": "Stunt Corgi", - "thumbnail": "rbxassetid://14968347214", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://105973492854063", + "name": "Principal Anteater", + "thumbnail": "rbxassetid://104809873146368", }, - "configName": "Stunt Corgi", + "configName": "Principal Anteater", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d0897ecaa40e6cd7", + "hashShort": "5d0976b46b625794", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 144954697096512, + 98381827382791, + 107071126516610, + 110945360149500, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://83687861870881", - "name": "Stunt Raccoon", - "thumbnail": "rbxassetid://122189989972498", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://113777502865185", + "name": "Nurse Shark", + "thumbnail": "rbxassetid://140159415590387", }, - "configName": "Stunt Raccoon", + "configName": "Nurse Shark", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4cb493cca794f9dc", + "dateModified": "2026-06-27T16:05:40.211Z", + "hashShort": "5f1f5c305330836e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 145819531268854, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://127439243988119", - "name": "Turbo Cheetah", - "thumbnail": "rbxassetid://116697842764654", - }, - "configName": "Turbo Cheetah", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ab83e60cf2fb9d56", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://117737726684564", - "huge": true, - "indexDesc": "Found in the Cannon Tycoon's Pack!", - "indexObtainable": true, - "name": "Huge Wild Galaxy Agony", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://126232720900762", - }, - "configName": "Huge Wild Galaxy Agony", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a1f41b50c7ed23af", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://73337213578536", - "huge": true, - "indexDesc": "Found in the Cannon Tycoon's Part 2 frost boss chest while corrupt!", - "indexObtainable": true, - "name": "Huge Wild Corrupt Agony", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://83829095123136", - }, - "configName": "Huge Wild Corrupt Agony", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "34a29e8360849a42", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://89869158958989", - "huge": true, - "indexDesc": "Found in the Cannon Tycoon's Part 2 frost boss chest", - "indexObtainable": true, - "name": "Huge Wild Frost Agony", + "exclusiveLevel": 2, + "goldenThumbnail": "", + "name": "Buff Doge", "rarity": { "Announce": true, "Color": null, @@ -120473,23 +124709,20 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://80433316929327", + "thumbnail": "rbxassetid://113564767995348", }, - "configName": "Huge Wild Frost Agony", + "configName": "Buff Doge", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1247cc4dcc96df29", + "hashShort": "79c66f122ce269d1", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://86115039165426", - "huge": true, - "indexDesc": "Found in the Cannon Tycoon's final egg!", - "indexObtainable": true, - "name": "Huge Parachute Monkey", + "exclusiveLevel": 1, + "goldenThumbnail": "", + "name": "Chad Elephant", "rarity": { "Announce": true, "Color": null, @@ -120502,23 +124735,20 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://137651133282362", + "thumbnail": "rbxassetid://110231925279401", }, - "configName": "Huge Parachute Monkey", + "configName": "Chad Elephant", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "39f96e7fcbc45cf9", + "hashShort": "3462d5f19e657a76", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { + "exclusiveLevel": 3, "goldenThumbnail": "", - "huge": true, - "indexDesc": "Found in the Exclusive Matryoshka Egg!", - "indexObtainable": true, - "matryoshka": true, - "name": "Huge Matryoshka Dino", + "name": "Chad Bunny", "rarity": { "Announce": true, "Color": null, @@ -120531,23 +124761,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://130741332412242", + "thumbnail": "rbxassetid://90619861938623", }, - "configName": "Huge Matryoshka Dino", + "configName": "Chad Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4b617918045c2258", + "hashShort": "8531dcb5dc93b6a7", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "", + "goldenThumbnail": "rbxassetid://104439981305189", "huge": true, - "indexDesc": "Found in the Exclusive Matryoshka Egg!", + "indexDesc": "Earned from the 2024 Autumn Event!", "indexObtainable": true, - "matryoshka": true, - "name": "Huge Matryoshka Capybara", + "name": "Huge Scarecrow Dog", "rarity": { "Announce": true, "Color": null, @@ -120560,22 +124789,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://135978924000516", + "thumbnail": "rbxassetid://137318518159218", }, - "configName": "Huge Matryoshka Capybara", + "configName": "Huge Scarecrow Dog", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "20ea8eed2cfd7258", + "hashShort": "eae640d46d8d3d95", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://96870501648318", + "goldenThumbnail": "rbxassetid://81782238858280", "huge": true, - "indexDesc": "Found by using the Breakable Mayhem Enchant!", + "indexDesc": "Earned from the 2024 Autumn Event!", "indexObtainable": true, - "name": "Huge Bobcat", + "name": "Huge Pumpkin Spice Cat", "rarity": { "Announce": true, "Color": null, @@ -120588,23 +124817,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://117053043329448", + "thumbnail": "rbxassetid://126378743286438", }, - "configName": "Huge Bobcat", + "configName": "Huge Pumpkin Spice Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ea7745270e9d93e8", + "hashShort": "34131a0a7d1e8297", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://135359972353104", + "goldenThumbnail": "rbxassetid://118806518304982", "huge": true, - "indexDesc": "Reward in the Cannon Tycoon's leaderboard contest!", + "indexDesc": "Earned from the 2024 Autumn Event!", "indexObtainable": true, - "name": "Huge Jetpack Tiger", + "name": "Huge Corn Cat", "rarity": { "Announce": true, "Color": null, @@ -120617,51 +124845,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://124866391707961", + "thumbnail": "rbxassetid://115417271549195", }, - "configName": "Huge Jetpack Tiger", + "configName": "Huge Corn Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "50b95f55ea6fbe74", + "hashShort": "0a8ab29ad155a7ef", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://132365962948483", + "goldenThumbnail": "rbxassetid://110089451259851", "huge": true, - "indexDesc": "Found in The Forever Pack!", - "indexObtainable": true, - "name": "Huge Nyan Cat", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://111205928887511", - }, - "configName": "Huge Nyan Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7c9e8764bf9dd875", - }, - { - "category": "Titanic", - "collection": "Pets", - "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://119488969070522", - "indexDesc": "Found in the Cannon Tycoon's Part 2 boss chest!", + "indexDesc": "Earned from the 2024 Autumn Event!", "indexObtainable": true, - "name": "Titanic Wild Frost Agony", + "name": "Huge Autumn Retriever", "rarity": { "Announce": true, "Color": null, @@ -120674,23 +124873,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://116274982839546", - "titanic": true, + "thumbnail": "rbxassetid://127760564297635", }, - "configName": "Titanic Wild Frost Agony", + "configName": "Huge Autumn Retriever", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2a7551b4ab6c291b", + "hashShort": "f044a07f86d350f8", }, { "category": "Titanic", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://113375608897979", - "indexDesc": "Found in the Cannon Tycoon's Part 2 boss chest while corrupt!", + "goldenThumbnail": "rbxassetid://124806295919284", + "indexDesc": "Earned from the 2024 Autumn Event!", "indexObtainable": true, - "name": "Titanic Wild Corrupt Agony", + "name": "Titanic Pilgrim Turkey", "rarity": { "Announce": true, "Color": null, @@ -120703,221 +124900,203 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://103464099228930", + "thumbnail": "rbxassetid://126580879775166", "titanic": true, }, - "configName": "Titanic Wild Corrupt Agony", + "configName": "Titanic Pilgrim Turkey", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "138d888a9b7acf8a", + "hashShort": "0f9387fcfdfb9858", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Matryoshka Egg!", - "indexObtainable": true, - "matryoshka": true, - "name": "Titanic Matryoshka Cat", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://113135543154400", - "titanic": true, + "cachedPower": [ + 85317573882095, + 90834575001502, + 96123850620049, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://87995424272436", + "name": "Beagle", + "thumbnail": "rbxassetid://81880665027748", }, - "configName": "Titanic Matryoshka Cat", + "configName": "Beagle", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "37c377aab8dfbf73", + "dateModified": "2026-06-27T16:05:40.212Z", + "hashShort": "7169d38fc21528ca", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://105026104970425", - "indexDesc": "Found by using the Breakable Mayhem Enchant!", - "indexObtainable": true, - "name": "Titanic Bobcat", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://93912731395332", - "titanic": true, + "cachedPower": [ + 89583452576200, + 97324156186686, + 101096873523567, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://106692887773129", + "name": "Beaver", + "thumbnail": "rbxassetid://79644601164207", }, - "configName": "Titanic Bobcat", + "configName": "Beaver", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c293be1e097c890a", + "dateModified": "2026-06-27T16:05:40.213Z", + "hashShort": "185c5fbea32cacd2", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://91708546556743", - "indexDesc": "Found in The Forever Pack!", - "indexObtainable": true, - "name": "Titanic Nyan Cat", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://102693200913432", - "titanic": true, + "cachedPower": [ + 109329805125083, + 117709066827754, + 123233486316008, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://102691898381897", + "name": "Corn Cat", + "thumbnail": "rbxassetid://121260329564656", }, - "configName": "Titanic Nyan Cat", + "configName": "Corn Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e6ef4ef5dbb1c33c", + "dateModified": "2026-06-27T16:05:40.213Z", + "hashShort": "312c6ed71bb3d2fb", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 149374598212664, + 106180386870451, + 113602272632173, + 119901206532038, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968337458", - "name": "Springy Axolotl", - "thumbnail": "rbxassetid://14968337554", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://131995908667948", + "name": "Pumpkin Spice Cat", + "thumbnail": "rbxassetid://91506370579701", }, - "configName": "Springy Axolotl", + "configName": "Pumpkin Spice Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "bf52b1402824e6af", + "dateModified": "2026-06-27T16:05:40.215Z", + "hashShort": "1a489c32e099f647", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 149739719630783, + 101981162530942, + 110408891540694, + 115111134894820, ], - "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968294811", - "name": "Parachute Monkey", - "thumbnail": "rbxassetid://14968294961", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://71472444439564", + "name": "Autumn Retriever", + "thumbnail": "rbxassetid://126927862629934", }, - "configName": "Parachute Monkey", + "configName": "Autumn Retriever", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b3f14aed4b7cfff7", + "dateModified": "2026-06-27T16:05:40.214Z", + "hashShort": "b03802ffca257003", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 150277455398384, + 98381827382791, + 107071126516610, + 110945360149500, ], - "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968360181", - "name": "Wild Fire Agony", - "thumbnail": "rbxassetid://14968360279", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://105279543736657", + "name": "Scarecrow Dog", + "thumbnail": "rbxassetid://112962283822788", }, - "configName": "Wild Fire Agony", + "configName": "Scarecrow Dog", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2e4bd799cb051ca8", + "dateModified": "2026-06-27T16:05:40.216Z", + "hashShort": "dd08c2a30eb2f9d1", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 150099510618483, + 94915800943831, + 101384667675031, + 107187640756085, ], - "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968360411", - "name": "Wild Frost Agony", - "thumbnail": "rbxassetid://14968360564", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://137485011393803", + "name": "Orange Squirrel", + "thumbnail": "rbxassetid://83763838823621", }, - "configName": "Wild Frost Agony", + "configName": "Orange Squirrel", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "495993501ee44da3", + "dateModified": "2026-06-27T16:05:42.400Z", + "hashShort": "038272a6f7cea738", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 149920271683361, + 91716391923252, + 98959392667802, + 103549728245240, ], - "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968267030", - "name": "Jetpack Tiger", - "thumbnail": "rbxassetid://14968267180", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://75460104475063", + "name": "Red Fox", + "thumbnail": "rbxassetid://87937949277481", }, - "configName": "Jetpack Tiger", + "configName": "Red Fox", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1dbb050396fc205c", + "dateModified": "2026-06-27T16:05:42.412Z", + "hashShort": "a3457c7e32e3ee4c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 150454124577501, + 87450513229148, + 95178204698476, + 98621665159536, ], - "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://91942668438575", - "name": "Wild Galaxy Agony", - "thumbnail": "rbxassetid://126907949611923", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://111118515585666", + "name": "Mouse", + "thumbnail": "rbxassetid://104584169122370", }, - "configName": "Wild Galaxy Agony", + "configName": "Mouse", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "15d546b4f823cde5", + "dateModified": "2026-06-27T16:05:42.403Z", + "hashShort": "ea51766f830e13d5", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "", - "matryoshka": true, - "name": "Matryoshka Capybara", + "goldenThumbnail": "rbxassetid://14976457884", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Honey Badger", "rarity": { "Announce": true, "Color": null, @@ -120930,21 +125109,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://114701135093781", + "thumbnail": "rbxassetid://14976457989", }, - "configName": "Matryoshka Capybara", + "configName": "Huge Honey Badger", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "455c99ccb35493e9", + "hashShort": "32c63dd79272309e", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "", - "matryoshka": true, - "name": "Matryoshka Dino", + "goldenThumbnail": "rbxassetid://87051281205367", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Beaver", "rarity": { "Announce": true, "Color": null, @@ -120957,21 +125137,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://89272517128125", + "thumbnail": "rbxassetid://137999717729131", }, - "configName": "Matryoshka Dino", + "configName": "Huge Beaver", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "fcc9c9dccafe6677", + "hashShort": "762f29162183a0b2", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "", - "matryoshka": true, - "name": "Matryoshka Fox", + "goldenThumbnail": "rbxassetid://14976476543", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Llama", "rarity": { "Announce": true, "Color": null, @@ -120984,25 +125165,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://92313476700380", + "thumbnail": "rbxassetid://14976476776", }, - "configName": "Matryoshka Fox", + "configName": "Huge Llama", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b1c7ab3ddfb019dd", + "hashShort": "086ba8ce407e8628", }, { - "category": "Gargantuan", + "category": "Huge", "collection": "Pets", "configData": { - "gargantuan": true, - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Matryoshka Egg! - -Ground Slam - Pet will damage breakables in a large area!", + "goldenThumbnail": "rbxassetid://14976526672", + "huge": true, + "indexDesc": "Earned through fishing!", "indexObtainable": true, - "matryoshka": true, - "name": "Gargantuan Matryoshka Bear", + "name": "Huge Poseidon Dog", "rarity": { "Announce": true, "Color": null, @@ -121015,22 +125193,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://96710812218566", + "thumbnail": "rbxassetid://14976526838", }, - "configName": "Gargantuan Matryoshka Bear", + "configName": "Huge Poseidon Dog", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c5b58f8fbbd58346", + "hashShort": "d55dc9ac035a9361", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://85649029224909", + "goldenThumbnail": "rbxassetid://73918327296432", "huge": true, - "indexDesc": "Reward in the 2025 Holographic Clan Battle!", + "indexDesc": "Found in the Crystal Chest!", "indexObtainable": true, - "name": "Huge Holographic Monkey", + "name": "Huge Pastel Deer", "rarity": { "Announce": true, "Color": null, @@ -121043,22 +125221,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://77505723512124", + "thumbnail": "rbxassetid://117144432225186", }, - "configName": "Huge Holographic Monkey", + "configName": "Huge Pastel Deer", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "526c20ababd0b249", + "hashShort": "28040f5e002198eb", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://127420449429711", + "goldenThumbnail": "rbxassetid://90829219126989", "huge": true, - "indexDesc": "Found in the Exclusive Valentine's Present!", + "indexDesc": "Found in the Tech Chest!", "indexObtainable": true, - "name": "Huge Valentine's Dominus", + "name": "Huge Circuit Cat", "rarity": { "Announce": true, "Color": null, @@ -121071,26 +125249,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://79026289241532", + "thumbnail": "rbxassetid://107640739737429", }, - "configName": "Huge Valentines Dominus", + "configName": "Huge Circuit Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c8acda0546b76d90", + "hashShort": "4aeaa3e9b9c0748d", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://88177467277036", + "goldenThumbnail": "rbxassetid://83419827753394", "huge": true, - "indexDesc": "Found in the Exclusive Valentine's Present!", + "indexDesc": "Found in the Void Chest!", "indexObtainable": true, - "name": "Huge Valentine's Angelus", + "name": "Huge Void Alien", "rarity": { "Announce": true, "Color": null, @@ -121103,22 +125277,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://74709418271997", + "thumbnail": "rbxassetid://95087944303198", }, - "configName": "Huge Valentines Angelus", + "configName": "Huge Void Alien", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "fe82c1a552a98c7a", + "hashShort": "dcf6469588768557", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://74187995856303", + "goldenThumbnail": "rbxassetid://75234522483600", "huge": true, - "indexDesc": "Found in the Valentine's event leaderboard contest!", + "indexDesc": "Found in the Hacker Chest!", "indexObtainable": true, - "name": "Huge Love Lion", + "name": "Huge Hacked Skeleton", "rarity": { "Announce": true, "Color": null, @@ -121131,22 +125305,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://123099034281785", + "thumbnail": "rbxassetid://134082855413685", }, - "configName": "Huge Love Lion", + "configName": "Huge Hacked Skeleton", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "242b9570d2c00e4b", + "hashShort": "1c2e8aa93823aa2c", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://140234251678055", + "goldenThumbnail": "rbxassetid://79169977967868", "huge": true, - "indexDesc": "Found in the Valentine's event Forever Pack!", + "indexDesc": "Found in Digsite!", "indexObtainable": true, - "name": "Huge Rose Cat", + "name": "Huge Sand Turtle", "rarity": { "Announce": true, "Color": null, @@ -121159,23 +125333,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://103846288511073", + "thumbnail": "rbxassetid://135909325660471", }, - "configName": "Huge Rose Cat", + "configName": "Huge Sand Turtle", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ea6f8bf5f202fba5", + "hashShort": "0177ac72bbe3a265", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://82277453440240", + "evolved": true, + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in the Valentine's event eggs!", + "indexDesc": "Earned from evolving Huge Elephants!", "indexObtainable": true, - "name": "Huge Love Corgi", + "name": "Huge Evolved Elephant", "rarity": { "Announce": true, "Color": null, @@ -121188,22 +125362,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://112650153241543", + "thumbnail": "rbxassetid://94951927058710", }, - "configName": "Huge Love Corgi", + "configName": "Huge Evolved Elephant", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "687f25de4ecea547", + "hashShort": "7ff9b8c87e90e0c5", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://77123412302383", + "evolved": true, + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in the Valentine's event eggs!", + "indexDesc": "Earned from evolving Huge Kangaroos!", "indexObtainable": true, - "name": "Huge Valentine's Bear", + "name": "Huge Evolved Kangaroo", "rarity": { "Announce": true, "Color": null, @@ -121216,22 +125391,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://140051319290107", + "thumbnail": "rbxassetid://80169939922601", }, - "configName": "Huge Valentines Bear", + "configName": "Huge Evolved Kangaroo", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b0799b9d61dd2e63", + "hashShort": "a07f541e1f02c149", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://102569440945030", + "evolved": true, + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in the Love Gift Bag!", + "indexDesc": "Earned from evolving Huge Bisons!", "indexObtainable": true, - "name": "Huge Valentine's Unicorn", + "name": "Huge Evolved Bison", "rarity": { "Announce": true, "Color": null, @@ -121244,80 +125420,47 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://87559926254835", + "thumbnail": "rbxassetid://98184057731755", }, - "configName": "Huge Valentines Unicorn", + "configName": "Huge Evolved Bison", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1167d34deaaed850", + "hashShort": "04c437bdcfb34b8e", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "flyingTitanic": true, - "flyingTitanicAlwaysFly": true, - "goldenThumbnail": "rbxassetid://80355751274594", - "indexDesc": "Found in the Exclusive Valentine's Present!", - "indexObtainable": true, - "name": "Titanic M-14 PROTOTYPE", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, + "animations": { + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.3, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.7, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.3, }, - "thumbnail": "rbxassetid://99810281877777", - "titanic": true, - }, - "configName": "Titanic M-14 PROTOTYPE", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "09c00c1a829fe0cf", - }, - { - "category": "Titanic", - "collection": "Pets", - "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://120237492042364", - "indexDesc": "Found in the Valentine's event eggs!", + "goldenThumbnail": "", + "huge": true, + "indexDesc": "Found in the Exclusive Midnight Egg!", "indexObtainable": true, - "name": "Titanic Love Corgi", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://124293758484647", - "titanic": true, - }, - "configName": "Titanic Love Corgi", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "dd41e79418302593", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968275024", - "name": "Lovemelon", + "name": "Huge Midnight Cat", "rarity": { "Announce": true, "Color": null, @@ -121330,123 +125473,47 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968275107", - }, - "configName": "Lovemelon", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f70f1ecdb1697f8b", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 149374598212664, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968356962", - "name": "Valentine's Bear", - "thumbnail": "rbxassetid://14968357106", - }, - "configName": "Valentines Bear", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0556c181f102f5e6", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 150454124577501, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968274808", - "name": "Love Lion", - "thumbnail": "rbxassetid://14968274956", - }, - "configName": "Love Lion", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a2c255ea084df30b", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 149739719630783, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://18882337450", - "name": "Love Cow", - "thumbnail": "rbxassetid://18882337248", + "thumbnail": "rbxassetid://137864465151841", }, - "configName": "Love Cow", + "configName": "Huge Midnight Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "13936e7fae294b3f", + "hashShort": "816f00d0badaa5f1", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { "animations": { - "spinZ": true, - }, - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "rbxassetid://131927181078806", - "name": "Valentine's Angelus", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.3, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.7, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.3, }, - "thumbnail": "rbxassetid://76082507412985", - }, - "configName": "Valentines Angelus", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "fd0addb5731c0596", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 151148402740781, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://100856494247409", - "name": "Valentine's Unicorn", - "thumbnail": "rbxassetid://71712994105333", - }, - "configName": "Valentines Unicorn", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "47fddcf998b52690", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://132097085188024", - "name": "Valentine's Dominus", + "goldenThumbnail": "", + "huge": true, + "indexDesc": "Found in the Exclusive Midnight Egg!", + "indexObtainable": true, + "name": "Huge Midnight Zebra", "rarity": { "Announce": true, "Color": null, @@ -121459,114 +125526,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://130758694104529", - }, - "configName": "Valentines Dominus", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d256561277b75457", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 148245610976160, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://96013114640415", - "name": "Pink Poodle", - "thumbnail": "rbxassetid://139531908890965", - }, - "configName": "Pink Poodle", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "051345981f688aab", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 149003986041498, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://110397938096589", - "name": "Cupcake Hamster", - "thumbnail": "rbxassetid://102832017803256", - }, - "configName": "Cupcake Hamster", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "271ccaab24134900", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 150099510618483, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://70385382173968", - "name": "Valentine's Owl", - "thumbnail": "rbxassetid://122568617432041", - }, - "configName": "Valentines Owl", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "25f188bcf8175a9f", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 148627715451079, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://133678056932154", - "name": "Valentine's Bee", - "thumbnail": "rbxassetid://136715267522591", - }, - "configName": "Valentines Bee", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4ce6c9e80b92eef0", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 150803708381393, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://109927584502797", - "name": "Rose Cat", - "thumbnail": "rbxassetid://133173780447865", + "thumbnail": "rbxassetid://137637076572981", }, - "configName": "Rose Cat", + "configName": "Huge Midnight Zebra", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c4549284f2318151", + "hashShort": "88838e501350c738", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://105863710772900", + "goldenThumbnail": "rbxassetid://128206339449259", "huge": true, - "indexDesc": "Found in the Valentine's event eggs!", + "indexDesc": "Hatched from 2024 Anniversary Gifts!", "indexObtainable": true, - "name": "Huge Heartbreak Fairy", + "name": "Huge Party Corgi", "rarity": { "Announce": true, "Color": null, @@ -121579,22 +125554,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://129589212875010", + "thumbnail": "rbxassetid://115749071497654", }, - "configName": "Huge Heartbreak Fairy", + "configName": "Huge Party Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e4d31594ae6adf23", + "hashShort": "8c385bb10a78ae76", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://130278222124258", + "goldenThumbnail": "rbxassetid://116083930568066", "huge": true, - "indexDesc": "Found in the Valentine's event eggs!", + "indexDesc": "Earned from the 2024 Autumn Event!", "indexObtainable": true, - "name": "Huge Loveserker", + "name": "Huge Red Wolf", "rarity": { "Announce": true, "Color": null, @@ -121607,23 +125582,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://100447142740271", + "thumbnail": "rbxassetid://138120594404992", }, - "configName": "Huge Loveserker", + "configName": "Huge Red Wolf", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "64d931b92e779cb3", + "hashShort": "de3127e11ea7748e", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://70688409780639", + "goldenThumbnail": "rbxassetid://71276598654443", "huge": true, - "indexDesc": "Found in the Valentine's event eggs when Tower Rebirth Tokens are used!", + "indexDesc": "Earned from the 2024 Autumn Event!", "indexObtainable": true, - "name": "Huge Shattered Heart Agony", + "name": "Huge Dark Fox", "rarity": { "Announce": true, "Color": null, @@ -121636,22 +125610,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://129768641287127", + "thumbnail": "rbxassetid://133312153663051", }, - "configName": "Huge Shattered Heart Agony", + "configName": "Huge Dark Fox", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3fb5673dd313e252", + "hashShort": "660d781efb8c300d", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://103926492701156", + "goldenThumbnail": "rbxassetid://80724368653156", "huge": true, - "indexDesc": "Earned from Tower Tycoon's huge raffles!", + "indexDesc": "Earned from the 2024 Autumn Event!", "indexObtainable": true, - "name": "Huge Valentine's Axolotl", + "name": "Huge Autumn Chest Mimic", "rarity": { "Announce": true, "Color": null, @@ -121664,28 +125638,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://92646115385136", + "thumbnail": "rbxassetid://131920407611756", }, - "configName": "Huge Valentines Axolotl", + "configName": "Huge Autumn Chest Mimic", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "03f0ddf29ef65352", + "hashShort": "90ce9d1d33669ec8", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 1, - "flyHeightChange": 4, - "flySpeed": 0.4, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://73592474964251", + "goldenThumbnail": "rbxassetid://129218887404657", "huge": true, - "indexDesc": "Found in the Valentine's event leaderboard contest!", + "indexDesc": "Found in the Turkey Pack!", "indexObtainable": true, - "name": "Huge Raining Love Dog", + "name": "Huge Autumn Red Panda", "rarity": { "Announce": true, "Color": null, @@ -121698,22 +125666,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://73797455811877", + "thumbnail": "rbxassetid://119442470085082", }, - "configName": "Huge Raining Love Dog", + "configName": "Huge Autumn Red Panda", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d95097d6de9eca71", + "hashShort": "649eb0ffd8b48fc0", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://76058926787368", + "goldenThumbnail": "rbxassetid://126660999595095", "huge": true, - "indexDesc": "Found in the Valentine's event Forever Pack!", + "indexDesc": "Found in The Forever Pack!", "indexObtainable": true, - "name": "Huge Love Peacock", + "name": "Huge Nutcracker Cat", "rarity": { "Announce": true, "Color": null, @@ -121726,22 +125694,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://126019438810546", + "thumbnail": "rbxassetid://131785972720265", }, - "configName": "Huge Love Peacock", + "configName": "Huge Nutcracker Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ddc036fadd8502fc", + "hashShort": "f329f2d4f4f7728a", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "", - "huge": true, - "indexDesc": "Found in the Exclusive Jurassic Egg!", + "goldenThumbnail": "rbxassetid://14977527583", + "indexDesc": "Comes with the Titanic Gingerbread Corgi plush!", "indexObtainable": true, - "name": "Huge Jurassic Crocodile", + "name": "Titanic Gingerbread Corgi", "rarity": { "Announce": true, "Color": null, @@ -121754,22 +125721,47 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://116989921255882", + "thumbnail": "rbxassetid://14976625491", + "titanic": true, }, - "configName": "Huge Jurassic Crocodile", + "configName": "Titanic Gingerbread Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "da3ffbcbe8c24b7e", + "hashShort": "bd030257301f92f1", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { + "animations": { + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.3, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.7, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.3, + }, "goldenThumbnail": "", - "huge": true, - "indexDesc": "Found in the Exclusive Jurassic Egg!", + "indexDesc": "Found in the Exclusive Midnight Egg!", "indexObtainable": true, - "name": "Huge Jurassic Beaver", + "name": "Titanic Midnight Lion", "rarity": { "Announce": true, "Color": null, @@ -121782,21 +125774,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://97754526096215", + "thumbnail": "rbxassetid://87889546587335", + "titanic": true, }, - "configName": "Huge Jurassic Beaver", + "configName": "Titanic Midnight Lion", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d901a9e5bd57b83f", + "hashShort": "49c85d23f4cfce3a", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://128784734873882", - "indexDesc": "Found in the Valentine's event eggs!", + "goldenThumbnail": "rbxassetid://71457878302568", + "indexDesc": "Hatched from 2024 Anniversary Gifts!", "indexObtainable": true, - "name": "Titanic Loveserker", + "name": "Titanic Party Corgi", "rarity": { "Announce": true, "Color": null, @@ -121809,22 +125802,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://134671434987896", + "thumbnail": "rbxassetid://122915996316714", "titanic": true, }, - "configName": "Titanic Loveserker", + "configName": "Titanic Party Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "376b587ad686aab2", + "hashShort": "f303bbad5f50de9a", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://113009280752079", - "indexDesc": "Earned from Tower Tycoon's huge raffles!", + "goldenThumbnail": "rbxassetid://110677951618578", + "indexDesc": "Earned from the 2024 Autumn Event!", "indexObtainable": true, - "name": "Titanic Valentine's Axolotl", + "name": "Titanic Autumn Teddy Bear", "rarity": { "Announce": true, "Color": null, @@ -121837,22 +125830,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://123399141850216", + "thumbnail": "rbxassetid://102130006064216", "titanic": true, }, - "configName": "Titanic Valentines Axolotl", + "configName": "Titanic Autumn Teddy Bear", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "bef675756158f70d", + "hashShort": "ed594c1c427db521", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Jurassic Egg!", + "goldenThumbnail": "rbxassetid://90245003628058", + "indexDesc": "Found in The Forever Pack!", "indexObtainable": true, - "name": "Titanic Jurassic Feline", + "name": "Titanic Nutcracker Cat", "rarity": { "Announce": true, "Color": null, @@ -121865,191 +125858,296 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://129218443079434", + "thumbnail": "rbxassetid://131594588116580", "titanic": true, }, - "configName": "Titanic Jurassic Feline", + "configName": "Titanic Nutcracker Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e1d405914aa6f0e8", + "hashShort": "35cb343a03f821c8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 150454124577501, + 117428309208423, + 126265528479169, + 132580826471027, ], - "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://108341702816726", - "name": "Heartbreak Fairy", - "thumbnail": "rbxassetid://138024894421618", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://112436362260140", + "name": "Autumn Teddy Bear", + "thumbnail": "rbxassetid://91231790322872", }, - "configName": "Heartbreak Fairy", + "configName": "Autumn Teddy Bear", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "cb09cb2d7ae76de2", + "dateModified": "2026-06-27T16:05:40.212Z", + "hashShort": "c2c2a18f53f4d8f3", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 150099510618483, + 116078558527866, + 125238334984017, + 131040036228300, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://129518008885595", - "name": "Valentine's Axolotl", - "thumbnail": "rbxassetid://82287408719437", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://131517789835074", + "name": "Dark Fox", + "thumbnail": "rbxassetid://140116786913965", }, - "configName": "Valentines Axolotl", + "configName": "Dark Fox", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "309e57c0c4da8760", + "dateModified": "2026-06-27T16:05:40.217Z", + "hashShort": "11430a82ee028b7c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 149003986041498, + 118778059888980, + 127288219357480, + 134114862788494, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://86400756511805", - "name": "Valentine's Sloth", - "thumbnail": "rbxassetid://126268185920724", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://131384909217281", + "name": "Autumn Chest Mimic", + "thumbnail": "rbxassetid://111899195073305", }, - "configName": "Valentines Sloth", + "configName": "Autumn Chest Mimic", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d5432c2b0ce2d362", + "dateModified": "2026-06-27T16:05:40.220Z", + "hashShort": "70a3e222daccacf9", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 151148402740781, + 114728807847310, + 124206614475584, + 129492455465649, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://70706051226604", - "name": "Love Peacock", - "thumbnail": "rbxassetid://138181621351068", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://113536006126870", + "name": "Autumn Red Panda", + "thumbnail": "rbxassetid://85073120214204", }, - "configName": "Love Peacock", + "configName": "Autumn Red Panda", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "12d6af3c01bdf0ea", + "dateModified": "2026-06-27T16:05:42.402Z", + "hashShort": "b98c64a1e288d205", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 150803708381393, + 110679555805640, + 120450286651196, + 124808600258251, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://71675287519496", - "name": "Mr. Love Cat", - "thumbnail": "rbxassetid://111640322548502", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://88491475144056", + "name": "Skunk", + "thumbnail": "rbxassetid://116389386497040", }, - "configName": "Mr. Love Cat", + "configName": "Skunk", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c9db4be5df88a69c", + "dateModified": "2026-06-27T16:05:42.399Z", + "hashShort": "eaed51ffbdfdc057", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 151488342543396, + 112029306486197, + 122129493978296, + 126376774719718, ], - "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://72157730821813", - "name": "Shattered Heart Agony", - "thumbnail": "rbxassetid://131484910764396", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://109321012583032", + "name": "Red Wolf", + "thumbnail": "rbxassetid://118332467177367", }, - "configName": "Shattered Heart Agony", + "configName": "Red Wolf", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f7772cd3a6468b3a", + "dateModified": "2026-06-27T16:05:42.401Z", + "hashShort": "c2f717a20f525f54", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 149374598212664, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://99592890399210", - "name": "Rose Garden Cat", - "thumbnail": "rbxassetid://113685692492564", + "animations": { + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.3, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.7, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.3, + }, + "exclusiveLevel": 3, + "goldenThumbnail": "", + "name": "Midnight Zebra", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://114075426781056", }, - "configName": "Rose Garden Cat", + "configName": "Midnight Zebra", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7c04e1f1ea783dd0", + "hashShort": "e4feb7d1541ad4a9", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 151823657171005, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://93289590221840", - "name": "Loveserker", - "thumbnail": "rbxassetid://99157504737014", + "animations": { + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.3, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.7, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.3, + }, + "exclusiveLevel": 2, + "goldenThumbnail": "", + "name": "Midnight Deer", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://107410369443282", }, - "configName": "Loveserker", + "configName": "Midnight Deer", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d85a76b4c61e60f4", + "hashShort": "2bc22f3fec8d0f87", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "animations": { - "flyHeight": 1, - "flyHeightChange": 4, - "flySpeed": 0.4, + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.3, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.7, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.3, }, - "cachedPower": [ - 149739719630783, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://87654641806891", - "name": "Raining Love Dog", - "thumbnail": "rbxassetid://138339975683307", + "exclusiveLevel": 1, + "goldenThumbnail": "", + "name": "Midnight Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://96254731220566", }, - "configName": "Raining Love Dog", + "configName": "Midnight Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c2cf7d983c0e04ee", + "hashShort": "9faa2e056aa98ef9", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "", - "name": "Jurassic Beaver", + "goldenThumbnail": "rbxassetid://74244180005057", + "huge": true, + "indexDesc": "Found in the final Christmas Egg when you discover the Elf on a Shelf!", + "indexObtainable": true, + "name": "Huge Festive Elf", "rarity": { "Announce": true, "Color": null, @@ -122062,20 +126160,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://113378775323433", + "thumbnail": "rbxassetid://72695234324968", }, - "configName": "Jurassic Beaver", + "configName": "Huge Festive Elf", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b4a62436393dd95a", + "hashShort": "c5c4bf80b9db27bd", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "", - "name": "Jurassic Crocodile", + "goldenThumbnail": "rbxassetid://104732322031320", + "huge": true, + "indexDesc": "Earned from 2024 Christmas Raffles!", + "indexObtainable": true, + "name": "Huge Snowflake Dominus", "rarity": { "Announce": true, "Color": null, @@ -122088,20 +126188,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://139858822372179", + "thumbnail": "rbxassetid://83373370051521", }, - "configName": "Jurassic Crocodile", + "configName": "Huge Snowflake Dominus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "cb879a297d64f6c0", + "hashShort": "0b782220bea49f95", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "", - "name": "Jurassic Elephant", + "fly": true, + "goldenThumbnail": "rbxassetid://114771410148015", + "huge": true, + "indexDesc": "Reward in the 2024 Bee Clan Battle!", + "indexObtainable": true, + "name": "Huge Doodle Bee", "rarity": { "Announce": true, "Color": null, @@ -122114,36 +126217,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://121229772863082", + "thumbnail": "rbxassetid://84450044658879", }, - "configName": "Jurassic Elephant", + "configName": "Huge Doodle Bee", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a5879f47b869afc9", + "hashShort": "06d0a36b425802c0", }, { - "category": "Gargantuan", + "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "customAnimations": true, - "idleActionAnimations": [ - [ - "CorgiJumping", - 0.5, - ], - ], - "ridingJumpPower": 125, - }, - "fly": true, - "flyingTitanic": true, - "gargantuan": true, - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Jurassic Egg! - -Ground Slam - Pet will damage breakables in a large area!", + "goldenThumbnail": "rbxassetid://79710289346623", + "huge": true, + "indexDesc": "Found in the Snowflake Gift!", "indexObtainable": true, - "name": "Gargantuan Jurassic Dragon", + "name": "Huge North Pole Unicorn", "rarity": { "Announce": true, "Color": null, @@ -122156,22 +126245,25 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://135125751282892", + "thumbnail": "rbxassetid://118783316706055", }, - "configName": "Gargantuan Jurassic Dragon", + "configName": "Huge North Pole Unicorn", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5139e16f0a6db58c", + "hashShort": "382089d0339a12f4", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://139618643440192", + "animations": { + "newChristmasLights": true, + }, + "goldenThumbnail": "rbxassetid://108762328175092", "huge": true, - "indexDesc": "Found in the Superhero Card Pack!", + "indexDesc": "Earned from the 2024 Christmas Event's final egg!", "indexObtainable": true, - "name": "Huge Super Spider", + "name": "Huge Lit Cat", "rarity": { "Announce": true, "Color": null, @@ -122184,22 +126276,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://118018926499852", + "thumbnail": "rbxassetid://93603448962886", }, - "configName": "Huge Super Spider", + "configName": "Huge Lit Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7f2b8be2807700fb", + "hashShort": "a5e7697a81d9d66a", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://74401771304010", + "fly": true, + "goldenThumbnail": "rbxassetid://108528612949399", "huge": true, - "indexDesc": "Found in the Retro Card Pack!", + "indexDesc": "Earned from rebirthing your Christmas Tree in the 2024 Christmas Event!", "indexObtainable": true, - "name": "Huge Arcade Dog", + "name": "Huge Crackling Dragon", "rarity": { "Announce": true, "Color": null, @@ -122212,22 +126305,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://102621669325796", + "thumbnail": "rbxassetid://125990599285140", }, - "configName": "Huge Arcade Dog", + "configName": "Huge Crackling Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1f2492ac765c30ba", + "hashShort": "3d9c99f33c3d1146", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://126226836318896", + "goldenThumbnail": "", "huge": true, - "indexDesc": "Reward in the 2025 Evil Clan Battle!", + "indexDesc": "Found in the Exclusive Snow Globe Egg!", "indexObtainable": true, - "name": "Huge Evil Deer", + "name": "Huge Snow Globe Hamster", "rarity": { "Announce": true, "Color": null, @@ -122240,22 +126333,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://105420679784540", + "roll": true, + "thumbnail": "rbxassetid://83324398369784", }, - "configName": "Huge Evil Deer", + "configName": "Huge Snow Globe Hamster", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6154a55a240dc778", + "hashShort": "115690733d1856e1", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://89262001520583", + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in the Fantasy Card Pack!", + "indexDesc": "Found in the Exclusive Snow Globe Egg!", "indexObtainable": true, - "name": "Huge Blurred Axolotl", + "name": "Huge Snow Globe Corgi", "rarity": { "Announce": true, "Color": null, @@ -122268,22 +126362,24 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://89638501740571", + "roll": true, + "thumbnail": "rbxassetid://77464634142348", }, - "configName": "Huge Blurred Axolotl", + "configName": "Huge Snow Globe Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "645c5501ebdeb87e", + "hashShort": "5c7d9738209ca252", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://85278144505331", + "evolved": true, + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in the Card's event leaderboard contest!", + "indexDesc": "Earned from evolving Huge Scarecrow Dogs!", "indexObtainable": true, - "name": "Huge Pixel Tiger", + "name": "Huge Evolved Scarecrow Dog", "rarity": { "Announce": true, "Color": null, @@ -122296,22 +126392,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://91955794019105", + "thumbnail": "rbxassetid://72439149479995", }, - "configName": "Huge Pixel Tiger", + "configName": "Huge Evolved Scarecrow Dog", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "54541c6105f88cc7", + "hashShort": "8a3c629deffa4adb", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://98047118601636", + "evolved": true, + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in The Spidey Forever Pack!", + "indexDesc": "Earned from evolving Huge Red Wolf!", "indexObtainable": true, - "name": "Huge Electric Werewolf", + "name": "Huge Evolved Red Wolf", "rarity": { "Announce": true, "Color": null, @@ -122324,22 +126421,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://126966146144158", + "thumbnail": "rbxassetid://126635488798392", }, - "configName": "Huge Electric Werewolf", + "configName": "Huge Evolved Red Wolf", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a762b6011973398d", + "hashShort": "9462d45b35eb159c", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://99755477240996", + "goldenThumbnail": "rbxassetid://120946479570062", "huge": true, - "indexDesc": "Found in the Nightmare Card Pack!", + "indexDesc": "Found in the Snowflake Gift!", "indexObtainable": true, - "name": "Huge Nightmare Dog", + "name": "Huge Evil Snowman", "rarity": { "Announce": true, "Color": null, @@ -122352,21 +126449,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://78024171936128", + "thumbnail": "rbxassetid://117577340597461", }, - "configName": "Huge Nightmare Dog", + "configName": "Huge Evil Snowman", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "fac3f34d853c3d52", + "hashShort": "eed04bf85c94a279", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "", - "indexDesc": "Found in the Superhero Card Pack!", + "goldenThumbnail": "rbxassetid://118943284780733", + "indexDesc": "Earned from 2024 Christmas Raffles!", "indexObtainable": true, - "name": "Titanic Super Wolf", + "name": "Titanic Snowflake Dominus", "rarity": { "Announce": true, "Color": null, @@ -122379,23 +126476,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://114045876201670", + "thumbnail": "rbxassetid://71393734598151", "titanic": true, }, - "configName": "Titanic Super Wolf", + "configName": "Titanic Snowflake Dominus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2306890ffadbb1c2", + "hashShort": "2df637ed0d1c905d", }, { "category": "Titanic", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://71066562300372", - "indexDesc": "Found in the Fantasy Card Pack!", + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Snow Globe Egg!", "indexObtainable": true, - "name": "Titanic Cupcake Pegasus", + "name": "Titanic Snow Globe Cat", "rarity": { "Announce": true, "Color": null, @@ -122408,169 +126504,207 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://78403514636510", + "roll": true, + "thumbnail": "rbxassetid://101380058502586", "titanic": true, }, - "configName": "Titanic Cupcake Pegasus", + "configName": "Titanic Snow Globe Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ef51c56eca6b2d0c", + "hashShort": "869e6d332c45119e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 149739719630783, + 109329805125083, + 117709066827754, + 123233486316008, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968256663", - "name": "Hellhound", - "thumbnail": "rbxassetid://14968256815", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://109873105865448", + "name": "Hot Cocoa Bear", + "thumbnail": "rbxassetid://127093420481345", }, - "configName": "Hellhound", + "configName": "Hot Cocoa Bear", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "673269df7e365007", + "dateModified": "2026-06-27T16:05:42.391Z", + "hashShort": "44bed182429b905b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 151823657171005, + 112704181826475, + 122650491775450, + 127158271415449, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968300857", - "name": "Phantom Wolf", - "thumbnail": "rbxassetid://14968300948", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://119196174973395", + "name": "Nutcracker Bunny", + "thumbnail": "rbxassetid://80520975441658", }, - "configName": "Phantom Wolf", + "configName": "Nutcracker Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "63d91b6f57ae596c", + "dateModified": "2026-06-27T16:05:42.397Z", + "hashShort": "aa8bc8654868d650", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 150454124577501, + 111354431145918, + 121607345875749, + 125593552565898, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968264101", - "name": "Immortuus", - "thumbnail": "rbxassetid://14968264173", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://84354442708321", + "name": "Gingerbread Lion", + "thumbnail": "rbxassetid://74543535626372", }, - "configName": "Immortuus", + "configName": "Gingerbread Lion", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8373737b3b8a1b2b", + "dateModified": "2026-06-27T16:05:42.393Z", + "hashShort": "7c882b309f90baca", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 151488342543396, + 110004680465362, + 119081190475002, + 124021913084551, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968246007", - "name": "Ghoul Horse", - "thumbnail": "rbxassetid://15260349697", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://89276550282504", + "name": "Frost Hamster", + "thumbnail": "rbxassetid://131116745343206", }, - "configName": "Ghoul Horse", + "configName": "Frost Hamster", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a1a571c2b04e4c01", + "dateModified": "2026-06-27T16:05:42.395Z", + "hashShort": "0deac141dcb01372", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 151656570124571, + 107980054444527, + 114955704056612, + 121651394996008, ], - "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968234134", - "name": "Fairy Moth", - "thumbnail": "rbxassetid://14968234292", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://92641048182873", + "name": "Festive Seal", + "thumbnail": "rbxassetid://70377412561091", }, - "configName": "Fairy Moth", + "configName": "Festive Seal", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0a3011df1c97d380", + "dateModified": "2026-06-27T16:05:42.401Z", + "hashShort": "458bdfebfcb83640", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 150803708381393, + 119452935229258, + 127797883892900, + 134879359591624, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968277335", - "name": "Lumi Axolotl", - "thumbnail": "rbxassetid://14968277418", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://109295835293093", + "name": "Evil Snowman", + "thumbnail": "rbxassetid://107950211561615", }, - "configName": "Lumi Axolotl", + "configName": "Evil Snowman", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ae5c6dc4ef148d7f", + "dateModified": "2026-06-27T16:05:42.392Z", + "hashShort": "2d4d6333899e75a8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 152154470795050, + 114728807847310, + 124206614475584, + 129492455465649, ], - "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968359464", - "name": "Wicked Agony", - "thumbnail": "rbxassetid://14968359556", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://87042521903616", + "hidden": false, + "name": "North Pole Unicorn", + "thumbnail": "rbxassetid://110169482274334", }, - "configName": "Wicked Agony", + "configName": "North Pole Unicorn", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5d8e48372b96f11c", + "dateModified": "2026-06-27T16:05:42.400Z", + "hashShort": "81aa57a5f152aea2", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 150099510618483, + 120127810569536, + 128306431846181, + 135642181521545, ], "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968304690", - "name": "Pixel Dragon", - "thumbnail": "rbxassetid://14968304786", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://126612859605400", + "name": "Crackling Dragon", + "thumbnail": "rbxassetid://73940960891942", }, - "configName": "Pixel Dragon", + "configName": "Crackling Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "265b7814a8ecf078", + "dateModified": "2026-06-27T16:05:42.393Z", + "hashShort": "5fdfcbc8f5b819d9", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "newChristmasLights": true, + }, + "cachedPower": [ + 121477561250093, + 129320190004734, + 136847927082039, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://131614188265959", + "name": "Lit Cat", + "thumbnail": "rbxassetid://116731199298515", + }, + "configName": "Lit Cat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:42.390Z", + "hashShort": "accedb44981c3a90", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "rbxassetid://14968348354", - "name": "Super Axolotl", + "goldenThumbnail": "", + "name": "Snow Globe Hamster", "rarity": { "Announce": true, "Color": null, @@ -122583,74 +126717,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968348476", - }, - "configName": "Super Axolotl", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "fe6aee06ca3c9682", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 149003986041498, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968243984", - "name": "Gamer Shiba", - "thumbnail": "rbxassetid://14968244080", - }, - "configName": "Gamer Shiba", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8fef683a3ccd20ac", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 149374598212664, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968232686", - "name": "Error Cat", - "thumbnail": "rbxassetid://14968232784", - }, - "configName": "Error Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "67b3a6a542e65cbc", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 151989619043611, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968262654", - "name": "Hydra Cat", - "thumbnail": "rbxassetid://14968262744", + "roll": true, + "thumbnail": "rbxassetid://113670868124875", }, - "configName": "Hydra Cat", + "configName": "Snow Globe Hamster", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d03783737de57aa8", + "hashShort": "32179c717b091165", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://123359424256594", - "name": "Super Seal", + "goldenThumbnail": "", + "name": "Snow Globe Corgi", "rarity": { "Announce": true, "Color": null, @@ -122663,20 +126744,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://81821063802586", + "roll": true, + "thumbnail": "rbxassetid://86914138083669", }, - "configName": "Super Seal", + "configName": "Snow Globe Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "01fcd29562241cd4", + "hashShort": "8707c0f1b5793165", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://117134992542435", - "name": "Super Bat", + "goldenThumbnail": "", + "name": "Snow Globe Axolotl", "rarity": { "Announce": true, "Color": null, @@ -122689,66 +126771,84 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://97555256119408", + "roll": true, + "thumbnail": "rbxassetid://98106579909050", }, - "configName": "Super Bat", + "configName": "Snow Globe Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "65e6db17cf311d23", + "hashShort": "6db072dc39dfd250", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { "animations": { - "flyHeight": 0.025, - "flyHeightChange": 0, - "swerve": true, - "swerveAggression": 1, - "swerveMaxAngle": 60, + "christmasLights": true, }, - "cachedPower": [ - 151148402740781, - ], "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://105859177117836", - "name": "Retro Bulldog", - "thumbnail": "rbxassetid://84570711183748", + "goldenThumbnail": "rbxassetid://106903403671654", + "huge": true, + "indexDesc": "Found in the 2024 Titanic Present!", + "indexObtainable": true, + "name": "Huge Reindeer Agony", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://126523808307279", }, - "configName": "Retro Bulldog", + "configName": "Huge Reindeer Agony", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "fd28eccc1a3fb3b1", + "hashShort": "5a049d156620a95b", }, { - "category": "Gargantuan", + "category": "Huge", "collection": "Pets", "configData": { - "gargantuan": true, - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Matryoshka Egg! - -Ground Slam - Pet will damage breakables in a large area!", + "fly": true, + "goldenThumbnail": "rbxassetid://104632165181953", + "huge": true, + "indexDesc": "Found in the 2024 Titanic Present!", "indexObtainable": true, - "name": "Gargantuan Super Spider", - "thumbnail": "", + "name": "Huge Icy Phoenix", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://77587429055460", }, - "configName": "Gargantuan Super Spider", + "configName": "Huge Icy Phoenix", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "27058a63621b3386", + "hashShort": "51c8423bf133d3e4", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://120651629741809", + "goldenThumbnail": "rbxassetid://82029981056896", "huge": true, - "indexDesc": "Found in the Meme Card Pack!", + "indexDesc": "Earned from the 2024 Christmas Event's final egg! (part 2)", "indexObtainable": true, - "name": "Huge Hubert", + "name": "Huge Holly Corgi", "rarity": { "Announce": true, "Color": null, @@ -122761,22 +126861,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://140721677142555", + "thumbnail": "rbxassetid://70527773100023", }, - "configName": "Huge Hubert", + "configName": "Huge Holly Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5c11b4e84ef1fffe", + "hashShort": "6c037b6297332dcf", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://137193812662523", + "fly": true, + "goldenThumbnail": "rbxassetid://74842897410688", "huge": true, - "indexDesc": "Found in the Axolotl Card Pack!", + "indexDesc": "Found in Snowstorm Survival!", "indexObtainable": true, - "name": "Huge Storm Axolotl", + "name": "Huge Snowflake Pegasus", "rarity": { "Announce": true, "Color": null, @@ -122789,22 +126890,25 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://136706503808298", + "thumbnail": "rbxassetid://128323283709486", }, - "configName": "Huge Storm Axolotl", + "configName": "Huge Snowflake Pegasus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "fdb5f7c99d6b63a6", + "hashShort": "b25eec17707efbf0", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://111082345297515", + "animations": { + "newChristmasLights": true, + }, + "goldenThumbnail": "rbxassetid://94439570314361", "huge": true, - "indexDesc": "Found in the Ninja Card Pack!", + "indexDesc": "Earned from rebirthing your Christmas Tree in the 2024 Christmas Event! (part 2)", "indexObtainable": true, - "name": "Huge Ninja Capybara", + "name": "Huge Lit Octopus", "rarity": { "Announce": true, "Color": null, @@ -122817,23 +126921,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://101889999202642", + "thumbnail": "rbxassetid://100395307748648", }, - "configName": "Huge Ninja Capybara", + "configName": "Huge Lit Octopus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "952d631dd5295542", + "hashShort": "cd0bea1dea5f254b", }, { "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://126608778932303", + "goldenThumbnail": "rbxassetid://99166225635030", "huge": true, - "indexDesc": "Found in the BIG Card Pack!", + "indexDesc": "Reward in the 2024 Gingerbread Clan Battle!", "indexObtainable": true, - "name": "Huge Arcane Dominus", + "name": "Huge Gingerbread Dragon", "rarity": { "Announce": true, "Color": null, @@ -122846,22 +126950,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://84981023975118", + "thumbnail": "rbxassetid://110621195469129", }, - "configName": "Huge Arcane Dominus", + "configName": "Huge Gingerbread Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a2fa90a646f4ccee", + "hashShort": "9020af4a90037c20", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://112745262744043", + "goldenThumbnail": "rbxassetid://117549048386865", "huge": true, - "indexDesc": "Found in the Huge Machine Grim Reaper Egg!", + "indexDesc": "Found in the Candy Cane Pack!", "indexObtainable": true, - "name": "Huge Green Cobra", + "name": "Huge Candycane", "rarity": { "Announce": true, "Color": null, @@ -122874,22 +126978,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://136758354491136", + "thumbnail": "rbxassetid://103105073784990", }, - "configName": "Huge Green Cobra", + "configName": "Huge Candycane", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7ea2d53be10711f7", + "hashShort": "589e985b97229d86", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://93112671163743", + "goldenThumbnail": "rbxassetid://97795109203163", "huge": true, - "indexDesc": "Found in the Huge Machine Grim Reaper Egg!", + "indexDesc": "Earned from the 2024 Titanic Present Leaderboard!", "indexObtainable": true, - "name": "Huge Detective Terrier", + "name": "Huge Naughty Cat", "rarity": { "Announce": true, "Color": null, @@ -122902,22 +127006,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://79798078989101", + "thumbnail": "rbxassetid://87910318681243", }, - "configName": "Huge Detective Terrier", + "configName": "Huge Naughty Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8cca7cbffc319088", + "hashShort": "b4fc4394c2c6c539", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://72319847311923", + "fly": true, + "goldenThumbnail": "rbxassetid://113832738330516", "huge": true, - "indexDesc": "Found in the Huge Machine Grim Reaper Egg!", + "indexDesc": "Earned from the 2024 Huge Train Gifts!", "indexObtainable": true, - "name": "Huge Spitting Dino", + "name": "Huge Rudolf", "rarity": { "Announce": true, "Color": null, @@ -122930,22 +127035,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://75776145321145", + "thumbnail": "rbxassetid://90192944578505", }, - "configName": "Huge Spitting Dino", + "configName": "Huge Rudolf", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "30fd52d15c7d6114", + "hashShort": "08d53e3a64a01613", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://104060287777224", - "huge": true, - "indexDesc": "Found in the Huge Machine Grim Reaper Egg!", + "fly": true, + "goldenThumbnail": "rbxassetid://71374955400512", + "indexDesc": "Found in the 2024 Titanic Present!", "indexObtainable": true, - "name": "Huge Ladybug", + "name": "Titanic Icy Phoenix", "rarity": { "Announce": true, "Color": null, @@ -122958,22 +127063,147 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://99601574590476", + "thumbnail": "rbxassetid://119756929621348", + "titanic": true, }, - "configName": "Huge Ladybug", + "configName": "Titanic Icy Phoenix", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a47007b5103d9fc7", + "hashShort": "687e4374c50d4c01", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 123565510341147, + 133574031258079, + 139214705890903, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://96760526784371", + "name": "Holiday Hedgehog", + "thumbnail": "rbxassetid://121963676918391", + }, + "configName": "Holiday Hedgehog", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:42.396Z", + "hashShort": "87bb6f8b5249eb41", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 127225144862302, + 138259635730636, + 143329020905475, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://98477972077607", + "name": "Icy Phoenix", + "thumbnail": "rbxassetid://100431865521809", + }, + "configName": "Icy Phoenix", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:42.420Z", + "hashShort": "ad05c916345129a4", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 125471658518287, + 136948995734647, + 141363060911492, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://70455516857562", + "name": "Naughty Cat", + "thumbnail": "rbxassetid://102157324785668", + }, + "configName": "Naughty Cat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:42.403Z", + "hashShort": "fbaacbd5a5d4e6e5", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 122546401736378, + 131500956111240, + 138061275371402, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://89262237352077", + "name": "Holly Corgi", + "thumbnail": "rbxassetid://83955011312610", + }, + "configName": "Holly Corgi", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:42.398Z", + "hashShort": "4c3900714c88c0dc", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 124539309965134, + 135549283897648, + 140313709311825, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://113284866298559", + "name": "Festive Bear", + "thumbnail": "rbxassetid://96613492929504", + }, + "configName": "Festive Bear", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:42.404Z", + "hashShort": "9eb69cf11f2dd32f", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "newChristmasLights": true, + }, + "cachedPower": [ + 126365941233194, + 137618247916518, + 142366939184298, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://73825402524926", + "name": "Lit Octopus", + "thumbnail": "rbxassetid://86692759940343", + }, + "configName": "Lit Octopus", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:42.408Z", + "hashShort": "2900b372297146db", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://117229904066650", + "goldenThumbnail": "rbxassetid://138759185843502", "huge": true, - "indexDesc": "Found in the Huge Machine Grim Reaper Egg!", + "indexDesc": "Found in the 2024 Gargantuan Present!", "indexObtainable": true, - "name": "Huge Stacked Dominus", + "name": "Huge Jolly Dino", "rarity": { "Announce": true, "Color": null, @@ -122986,22 +127216,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://96928518190910", + "thumbnail": "rbxassetid://88604762906611", }, - "configName": "Huge Stacked Dominus", + "configName": "Huge Jolly Dino", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "cb8d637fd5defe8a", + "hashShort": "44be387962b7578d", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://126710781505925", + "goldenThumbnail": "rbxassetid://86569956461230", "huge": true, - "indexDesc": "Found in the Card event leaderboard contest!", + "indexDesc": "Found in The Forever Pack!", "indexObtainable": true, - "name": "Huge Hell Monkey", + "name": "Huge Snow Elf", "rarity": { "Announce": true, "Color": null, @@ -123014,22 +127244,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://75557706152622", + "thumbnail": "rbxassetid://104334449359401", }, - "configName": "Huge Hell Monkey", + "configName": "Huge Snow Elf", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5e666bcff2d53a22", + "hashShort": "aefb3b7fe9c70f5f", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://119769057743786", + "goldenThumbnail": "rbxassetid://71548177173976", "huge": true, - "indexDesc": "Found in The Storm Forever Pack!", + "indexDesc": "Earned from the 2024 Christmas Event's final egg! (part 3)", "indexObtainable": true, - "name": "Huge Hell Spider", + "name": "Huge Nutcracker Squirrel", "rarity": { "Announce": true, "Color": null, @@ -123042,22 +127272,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://92181296313546", + "thumbnail": "rbxassetid://125206420660994", }, - "configName": "Huge Hell Spider", + "configName": "Huge Nutcracker Squirrel", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2111b5417f59e9e9", + "hashShort": "ec536ae1c9dbca77", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://92736609812288", + "goldenThumbnail": "rbxassetid://86578118990880", "huge": true, - "indexDesc": "Found in the Pog Card Pack!", + "indexDesc": "Found in Santa's Cottage!", "indexObtainable": true, - "name": "Huge Pog Cat", + "name": "Huge Merry Manatee", "rarity": { "Announce": true, "Color": null, @@ -123070,32 +127300,25 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://123648690581827", + "thumbnail": "rbxassetid://125341685392478", }, - "configName": "Huge Pog Cat", + "configName": "Huge Merry Manatee", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c4fc99b41470299a", + "hashShort": "952aa74b16cca9be", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { "animations": { - "flipbookAnimation": [ - "rbxassetid://12442921582", - "rbxassetid://12445580091", - ], - "flipbookAnimationGold": [ - "rbxassetid://12442921397", - "rbxassetid://12445579992", - ], - "flipbookAnimationSpeed": 0.15, + "newChristmasLights": true, }, - "goldenThumbnail": "rbxassetid://107955973846092", - "indexDesc": "Found in the Meme Card Pack!", + "goldenThumbnail": "", + "huge": true, + "indexDesc": "Found in the Exclusive Snowflake Egg!", "indexObtainable": true, - "name": "Titanic Pop Cat", + "name": "Huge Naughty Dominus", "rarity": { "Announce": true, "Color": null, @@ -123108,22 +127331,26 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://107955973846092", - "titanic": true, + "thumbnail": "rbxassetid://75328747799299", }, - "configName": "Titanic Pop Cat", + "configName": "Huge Naughty Dominus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5eb6d710cb7c8f04", + "hashShort": "bdbaaac33978b134", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://119120478455736", - "indexDesc": "Found in the BIG Card Pack!", + "animations": { + "newChristmasLights": true, + "newChristmasLightsMaxCount": 2, + }, + "goldenThumbnail": "", + "huge": true, + "indexDesc": "Found in the Exclusive Snowflake Egg!", "indexObtainable": true, - "name": "Titanic Signature BIG Maskot", + "name": "Huge Holiday Bearserker", "rarity": { "Announce": true, "Color": null, @@ -123136,23 +127363,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://87601095664895", - "titanic": true, + "thumbnail": "rbxassetid://79863147405643", }, - "configName": "Titanic Signature BIG Maskot", + "configName": "Huge Holiday Bearserker", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "da0a76e191907fe8", + "hashShort": "74b81cd43a9496d0", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://96101761006080", - "indexDesc": "Found in the Huge Machine Grim Reaper Egg!", + "goldenThumbnail": "rbxassetid://98541055289717", + "huge": true, + "indexDesc": "Reward in the 2024 Diamond Clan Battle!", "indexObtainable": true, - "name": "Titanic Owl", + "name": "Huge Diamond Dragon", "rarity": { "Announce": true, "Color": null, @@ -123165,39 +127392,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://111258824225580", - "titanic": true, - }, - "configName": "Titanic Owl", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "abca33f07dde5459", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 152154470795050, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14976335407", - "name": "Fancy Axolotl", - "thumbnail": "rbxassetid://14968234743", + "thumbnail": "rbxassetid://135778952005746", }, - "configName": "Fancy Axolotl", + "configName": "Huge Diamond Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2f4094494e2ac44d", + "hashShort": "5b4d6a1bdf852b9e", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://14968257733", - "name": "Hippomelon", + "goldenThumbnail": "rbxassetid://100127065313334", + "huge": true, + "indexDesc": "Found in The Present Pack!", + "indexObtainable": true, + "name": "Huge Sleigh Cat", "rarity": { "Announce": true, "Color": null, @@ -123210,129 +127420,210 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968257890", + "thumbnail": "rbxassetid://121879397544213", }, - "configName": "Hippomelon", + "configName": "Huge Sleigh Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "fe1f23d15f4dafba", + "hashShort": "7c26efc96da8ae09", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 150277455398384, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968308171", - "name": "Pog Dragon", - "thumbnail": "rbxassetid://14968308295", + "goldenThumbnail": "rbxassetid://107101571721413", + "huge": true, + "indexDesc": "Earned from rebirthing your Christmas Tree in the 2024 Christmas Event! (part 3)", + "indexObtainable": true, + "name": "Huge Nice Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://135884487799308", }, - "configName": "Pog Dragon", + "configName": "Huge Nice Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3885248d35e2f1af", + "hashShort": "b1b8bbda30baaa63", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 152803067304937, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968183566", - "name": "Blue BIG Maskot", - "thumbnail": "rbxassetid://14968183674", + "goldenThumbnail": "rbxassetid://93207303867389", + "indexDesc": "Comes with Christmas Merch Rewards 2024", + "indexObtainable": true, + "name": "Titanic Nutcracker Squirrel", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://72074096332299", + "titanic": true, }, - "configName": "Blue BIG Maskot", + "configName": "Titanic Nutcracker Squirrel", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c442abb13f626aa9", + "hashShort": "2f1bf26abcd94acf", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 150454124577501, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968189605", - "name": "Camo Axolotl", - "thumbnail": "rbxassetid://14968189680", + "goldenThumbnail": "rbxassetid://91783547324897", + "indexDesc": "Found in the 2024 Gargantuan Present!", + "indexObtainable": true, + "name": "Titanic Grinch Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://105600589075929", + "titanic": true, }, - "configName": "Camo Axolotl", + "configName": "Titanic Grinch Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f7970d010ee34160", + "hashShort": "66a51d12d2531f17", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 151656570124571, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968286066", - "name": "Nature Axolotl", - "thumbnail": "rbxassetid://14968286158", + "goldenThumbnail": "rbxassetid://120654999901936", + "indexDesc": "Found in The Forever Pack!", + "indexObtainable": true, + "name": "Titanic Snow Elf", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://137871430705388", + "titanic": true, }, - "configName": "Nature Axolotl", + "configName": "Titanic Snow Elf", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "26dea2037008da7b", + "hashShort": "485149e3691a3134", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 150976658178515, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968193678", - "name": "Chill Axolotl", - "thumbnail": "rbxassetid://14968193849", + "animations": { + "spinZ": true, + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.4, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.6, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.3, + }, + "fly": true, + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Snowflake Egg!", + "indexObtainable": true, + "name": "Titanic Snowflake Angelus", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://72623839017294", + "titanic": true, }, - "configName": "Chill Axolotl", + "configName": "Titanic Snowflake Angelus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "98117d138490a994", + "hashShort": "2aa3a5c4496a6ee0", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 151823657171005, + 131773876423254, + 141629091220425, + 148383204140158, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14976269820", - "name": "Tech Chest Mimic", - "thumbnail": "rbxassetid://14976270021", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://135430500549613", + "name": "Snow Elf", + "thumbnail": "rbxassetid://133470076264270", }, - "configName": "Tech Chest Mimic", + "configName": "Snow Elf", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b5be95cf527b4dd2", + "dateModified": "2026-06-27T16:05:42.399Z", + "hashShort": "fb6e5e94b51f6d3f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://14968291996", - "name": "Noob", + "animations": { + "newChristmasLights": true, + }, + "exclusiveLevel": 3, + "goldenThumbnail": "", + "name": "Naughty Dominus", "rarity": { "Announce": true, "Color": null, @@ -123345,20 +127636,24 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968292162", + "thumbnail": "rbxassetid://100217884622090", }, - "configName": "Noob", + "configName": "Naughty Dominus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "bfc3659864eb11f3", + "hashShort": "d39e27f75d02af11", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://14968260558", - "name": "Hot Dooooog", + "animations": { + "newChristmasLights": true, + "newChristmasLightsMaxCount": 2, + }, + "exclusiveLevel": 1, + "goldenThumbnail": "", + "name": "Holiday Bearserker", "rarity": { "Announce": true, "Color": null, @@ -123371,191 +127666,163 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14968260657", - }, - "configName": "Hot Dooooog", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "138523330a3a935a", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 150099510618483, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968307703", - "name": "Pog Dog", - "thumbnail": "rbxassetid://14968308010", - }, - "configName": "Pog Dog", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4f3715e3f736a482", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 151989619043611, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://15565567745", - "name": "Kung Fu Monkey", - "thumbnail": "rbxassetid://15565567701", + "thumbnail": "rbxassetid://77159027487180", }, - "configName": "Kung Fu Monkey", + "configName": "Holiday Bearserker", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7300ea0fb6778563", + "hashShort": "3a754d3561a4215d", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 152318227177927, + 131078361359447, + 141116722383734, + 147614650885123, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://15565566296", - "name": "Sensei Penguin", - "thumbnail": "rbxassetid://15565566222", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://105681288761506", + "name": "Jolly Dino", + "thumbnail": "rbxassetid://128817977954243", }, - "configName": "Sensei Penguin", + "configName": "Jolly Dino", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c83e935f5042196e", + "dateModified": "2026-06-27T16:05:42.414Z", + "hashShort": "81b9137bcd2f321e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 151318958749842, + 130360038501388, + 140586482602464, + 146819291213218, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://111149532483250", - "name": "Ninja Otter", - "thumbnail": "rbxassetid://123135377300075", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://118951615415333", + "name": "Figgy Fox", + "thumbnail": "rbxassetid://129443002761311", }, - "configName": "Ninja Otter", + "configName": "Figgy Fox", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "adee7046253d250a", + "dateModified": "2026-06-27T16:05:42.411Z", + "hashShort": "1de4d5541a1fdddc", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 150629536314083, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://97725800177188", - "name": "Ninja Snake", - "thumbnail": "rbxassetid://113363632926648", + "exclusiveLevel": 2, + "goldenThumbnail": "", + "name": "Festive Hydra", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://123826398681433", }, - "configName": "Ninja Snake", + "configName": "Festive Hydra", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "28a1f9b76248be7f", + "hashShort": "fcade8ba9b4b283b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 150803708381393, + 129617361127870, + 140037120207726, + 145995247621111, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://101664366130785", - "name": "Pog Monkey", - "thumbnail": "rbxassetid://118788057604476", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://120983337062550", + "name": "Merry Manatee", + "thumbnail": "rbxassetid://90011773597682", }, - "configName": "Pog Monkey", + "configName": "Merry Manatee", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6843ad530ee2711b", + "dateModified": "2026-06-27T16:05:42.414Z", + "hashShort": "253d704d34338f1e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 151488342543396, + 128051917864616, + 138875327150262, + 144252558034914, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://140711462152393", - "name": "Pog Shark", - "thumbnail": "rbxassetid://135012798506298", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://131646362144448", + "name": "Marzipan Piggy", + "thumbnail": "rbxassetid://85579643972466", }, - "configName": "Pog Shark", + "configName": "Marzipan Piggy", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e19c13046df118bd", + "dateModified": "2026-06-27T16:05:42.418Z", + "hashShort": "d5ed1ec0afba58be", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 151148402740781, + 128848619641344, + 139467248770063, + 145140440464616, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://130974558853000", - "name": "Empyrean Lion", - "thumbnail": "rbxassetid://140472617425132", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://95581418510631", + "name": "Nutcracker Squirrel", + "thumbnail": "rbxassetid://100691822968591", }, - "configName": "Empyrean Lion", + "configName": "Nutcracker Squirrel", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b498990877edf0e2", + "dateModified": "2026-06-27T16:05:42.407Z", + "hashShort": "d56a354042e56d1f", }, { - "category": "Uncategorized", + "category": "Gargantuan", "collection": "Pets", "configData": { "animations": { - "balloon": true, + "customAnimations": true, + "idleActionAnimations": [ + [ + "CorgiJumping", + 0.5, + ], + [ + "LookAround", + 0.5, + ], + ], + "ridingJumpPower": 125, }, - "cachedPower": [ - 152480902652713, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://105820560193916", - "name": "Red Balloon Panda", - "thumbnail": "rbxassetid://115760295871613", - }, - "configName": "Red Balloon Panda", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e5bf221e5c8b5f2e", - }, - { - "category": "Gargantuan", - "collection": "Pets", - "configData": { - "fly": true, "gargantuan": true, - "goldenThumbnail": "rbxassetid://120856751449430", - "indexDesc": "Found in the Gargantuan Machine Grim Reaper Egg! + "goldenThumbnail": "rbxassetid://93644931906491", + "indexDesc": "Christmas 2024! Ground Slam - Pet will damage breakables in a large area!", - "indexObtainable": true, - "name": "Gargantuan Grim Reaper", + "name": "Gargantuan Santa Paws", "rarity": { "Announce": true, "Color": null, @@ -123568,22 +127835,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://108242446619492", + "thumbnail": "rbxassetid://85770840304413", }, - "configName": "Gargantuan Grim Reaper", + "configName": "Gargantuan Santa Paws", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1a95aaa50e4ee455", + "hashShort": "6fffb9c4351961b2", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://136927162943851", + "goldenThumbnail": "rbxassetid://121459173538416", "huge": true, - "indexDesc": "Reward in the 2025 Egyptian Clan Battle!", + "indexDesc": "Hatched from 2025 New Year's Gifts!", "indexObtainable": true, - "name": "Huge Sphinx", + "name": "Huge Party Crown Corgi", "rarity": { "Announce": true, "Color": null, @@ -123596,23 +127863,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://112960031922397", + "thumbnail": "rbxassetid://84718989767415", }, - "configName": "Huge Sphinx", + "configName": "Huge Party Crown Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8f6a9619eef82b01", + "hashShort": "b6e078ebd6063007", }, { "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://127868583646798", + "goldenThumbnail": "rbxassetid://105619690894439", "huge": true, - "indexDesc": "Found in the 2025 St. Patrick's Day event eggs!", + "indexDesc": "Reward in the 2024 Blurred Clan Battle!", "indexObtainable": true, - "name": "Huge Lucki Cat", + "name": "Huge Blurred Agony", "rarity": { "Announce": true, "Color": null, @@ -123625,22 +127892,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://90438658462311", + "thumbnail": "rbxassetid://136961969731573", }, - "configName": "Huge Lucki Cat", + "configName": "Huge Blurred Agony", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "18c842ba59891409", + "hashShort": "b0c62d77712a3d02", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://135276639961189", + "goldenThumbnail": "rbxassetid://74502156101981", "huge": true, - "indexDesc": "Found in the Leprechaun Chest at the end of Lucky Raids!", + "indexDesc": "Earned from defeating the Snowman Boss!", "indexObtainable": true, - "name": "Huge Leprechaun Dog", + "name": "Huge Holiday Hedgehog", "rarity": { "Announce": true, "Color": null, @@ -123653,22 +127920,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://82125738012621", + "thumbnail": "rbxassetid://104271630769332", }, - "configName": "Huge Leprechaun Dog", + "configName": "Huge Holiday Hedgehog", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1c6a523be31f6dc2", + "hashShort": "b9eb6ec1f3749aa0", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://85469816915665", + "fly": true, + "goldenThumbnail": "rbxassetid://123104772576622", "huge": true, - "indexDesc": "Found in the Huge Chest at the end of Lucky Raids!", + "indexDesc": "Found in the Jolly Gift!", "indexObtainable": true, - "name": "Huge Clover Peacock", + "name": "Huge Jolly Owl", "rarity": { "Announce": true, "Color": null, @@ -123681,23 +127949,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://109285154435259", + "thumbnail": "rbxassetid://103505479597539", }, - "configName": "Huge Clover Peacock", + "configName": "Huge Jolly Owl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b8792e26106e2912", + "hashShort": "83de3ee9d5ada683", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://87657752961831", + "goldenThumbnail": "rbxassetid://125014343135250", "huge": true, - "indexDesc": "Found in the Lucky Gift Bag!", + "indexDesc": "Found in Grinch Raid minigame!", "indexObtainable": true, - "name": "Huge Lucki Tiger", + "name": "Huge Holly Fawn", "rarity": { "Announce": true, "Color": null, @@ -123710,22 +127977,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://79319215201881", + "thumbnail": "rbxassetid://123821214219134", }, - "configName": "Huge Lucki Tiger", + "configName": "Huge Holly Fawn", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5e8309acc3c7017b", + "hashShort": "3378d1cc1b65f9f8", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://91293394805565", + "goldenThumbnail": "rbxassetid://115124610467771", "huge": true, - "indexDesc": "Earned from the St. Patrick's Day event leaderboard contest!", + "indexDesc": "Found by lockpicking the Grinch Cove doors!", "indexObtainable": true, - "name": "Huge Clover Lion", + "name": "Huge Angry Yeti", "rarity": { "Announce": true, "Color": null, @@ -123738,23 +128005,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://123334593122447", + "thumbnail": "rbxassetid://110929464319537", }, - "configName": "Huge Clover Lion", + "configName": "Huge Angry Yeti", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2e1764ffd7b6bf2e", + "hashShort": "209b21e26bbadc8c", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://126314554744427", + "goldenThumbnail": "rbxassetid://119787345139897", "huge": true, - "indexDesc": "Found in The Lucky Forever Pack!", + "indexDesc": "Found in The Forever Pack!", "indexObtainable": true, - "name": "Huge Lucki Monkey", + "name": "Huge Ice Snake", "rarity": { "Announce": true, "Color": null, @@ -123767,23 +128033,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://114063062613222", + "thumbnail": "rbxassetid://72721925435619", }, - "configName": "Huge Lucki Monkey", + "configName": "Huge Ice Snake", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1c40236096a7a2d8", + "hashShort": "a459effb2acbe8ae", }, { "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://71438153975957", + "goldenThumbnail": "rbxassetid://92203000522372", "huge": true, - "indexDesc": "Earned from the St. Patrick's Day event leaderboard contest!", + "indexDesc": "Earned from the Grinch Raid Leaderboard!", "indexObtainable": true, - "name": "Huge Clover Butterfly", + "name": "Huge Holiday Dove", "rarity": { "Announce": true, "Color": null, @@ -123796,28 +128062,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://111786177414558", + "thumbnail": "rbxassetid://109237504369086", }, - "configName": "Huge Clover Butterfly", + "configName": "Huge Holiday Dove", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7c9cd5a77d870d5a", + "hashShort": "1cc3418463af4095", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "dotMatrix": { - "ColorA": null, - "ColorB": null, - }, - }, - "goldenThumbnail": "", + "goldenThumbnail": "rbxassetid://131425646426697", "huge": true, - "indexDesc": "Found in the Exclusive Dot Matrix Egg!", + "indexDesc": "Earned from the Grinch Ice Blocks!", "indexObtainable": true, - "name": "Huge Dot Matrix Cat", + "name": "Huge Pinecone Porcupine", "rarity": { "Announce": true, "Color": null, @@ -123830,28 +128090,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://118273434697077", + "thumbnail": "rbxassetid://128031048512623", }, - "configName": "Huge Dot Matrix Cat", + "configName": "Huge Pinecone Porcupine", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a84e13bbc116c81b", + "hashShort": "b0288a7888ba5b2a", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "dotMatrix": { - "ColorA": null, - "ColorB": null, - }, - }, - "goldenThumbnail": "", + "goldenThumbnail": "rbxassetid://101637975005344", "huge": true, - "indexDesc": "Found in the Exclusive Dot Matrix Egg!", + "indexDesc": "Found in The Grinch Pack!", "indexObtainable": true, - "name": "Huge Dot Matrix Axolotl", + "name": "Huge Poinsettia Peacock", "rarity": { "Announce": true, "Color": null, @@ -123864,21 +128118,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://121462024507634", + "thumbnail": "rbxassetid://126024044464158", }, - "configName": "Huge Dot Matrix Axolotl", + "configName": "Huge Poinsettia Peacock", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "714695bd2508f861", + "hashShort": "5fad8635d6dfa2e3", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://95862883499557", - "indexDesc": "Found in the Titanic Chest at the end of Lucky Raids!", + "goldenThumbnail": "rbxassetid://98117114621609", + "indexDesc": "Hatched from 2025 New Year's Gifts!", "indexObtainable": true, - "name": "Titanic Leprechaun Dog", + "name": "Titanic Party Crown Corgi", "rarity": { "Announce": true, "Color": null, @@ -123891,23 +128145,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://82186253097928", + "thumbnail": "rbxassetid://127025398818263", "titanic": true, }, - "configName": "Titanic Leprechaun Dog", + "configName": "Titanic Party Crown Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e44eb0cf3b28f17d", + "hashShort": "eff1946dc97da8c1", }, { "category": "Titanic", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://127988799586401", - "indexDesc": "Earned from the St. Patrick's Day event leaderboard contest!", + "goldenThumbnail": "rbxassetid://96827375189048", + "indexDesc": "Found by lockpicking the Grinch Cove doors!", "indexObtainable": true, - "name": "Titanic Clover Butterfly", + "name": "Titanic Angry Yeti", "rarity": { "Announce": true, "Color": null, @@ -123920,28 +128173,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://131125477985744", + "thumbnail": "rbxassetid://118155614090525", "titanic": true, }, - "configName": "Titanic Clover Butterfly", + "configName": "Titanic Angry Yeti", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "201859392207ef95", + "hashShort": "ca85817c9e7803e5", }, { "category": "Titanic", "collection": "Pets", "configData": { - "animations": { - "dotMatrix": { - "ColorA": null, - "ColorB": null, - }, - }, - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Dot Matrix Egg!", + "goldenThumbnail": "rbxassetid://109669207145782", + "indexDesc": "Found in The Forever Pack!", "indexObtainable": true, - "name": "Titanic Dot Matrix Kitsune", + "name": "Titanic Ice Snake", "rarity": { "Announce": true, "Color": null, @@ -123954,213 +128201,145 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://101711904618223", + "thumbnail": "rbxassetid://136281455287593", "titanic": true, }, - "configName": "Titanic Dot Matrix Kitsune", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ce4063325df18f19", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 150454124577501, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968275883", - "name": "Lucki Cat", - "thumbnail": "rbxassetid://14968275994", - }, - "configName": "Lucki Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "03ff88dcf87d382f", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 153121074877797, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968276067", - "name": "Lucki Dominus", - "thumbnail": "rbxassetid://14968276146", - }, - "configName": "Lucki Dominus", + "configName": "Titanic Ice Snake", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "11d25ce1b96a3155", + "hashShort": "fc246017602ae46e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 152154470795050, + 133736999624445, + 143069803660678, + 150544272800538, ], "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968276672", - "name": "Lucki Wolf", - "thumbnail": "rbxassetid://14968276787", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://124909273776325", + "name": "Holiday Dove", + "thumbnail": "rbxassetid://105888411261196", }, - "configName": "Lucki Wolf", + "configName": "Holiday Dove", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c8cc35d167d28894", + "dateModified": "2026-06-27T16:05:42.403Z", + "hashShort": "eb5fe50c216e1225", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 151488342543396, + 132447987592443, + 142124722862952, + 149126651603949, ], - "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968276253", - "name": "Lucki Monkey", - "thumbnail": "rbxassetid://14968276400", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://130320498377452", + "name": "Festive Walrus", + "thumbnail": "rbxassetid://86104816023541", }, - "configName": "Lucki Monkey", + "configName": "Festive Walrus", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3279fb762a7513fe", + "dateModified": "2026-06-27T16:05:42.422Z", + "hashShort": "592ad3fa501e3966", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 151148402740781, + 133101973005141, + 142604647440517, + 149846538470297, ], - "fly": true, "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968276529", - "name": "Lucki Tiger", - "thumbnail": "rbxassetid://14968276602", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://135132088620459", + "name": "Candycane Shake Shark", + "thumbnail": "rbxassetid://72787163358167", }, - "configName": "Lucki Tiger", + "configName": "Candycane Shake Shark", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1dfc794afb566c7a", + "dateModified": "2026-06-27T16:05:42.413Z", + "hashShort": "805c974c8f981e90", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 152480902652713, + 134354135769583, + 143521404020972, + 151221673340979, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://138287122287032", - "name": "Clover Peacock", - "thumbnail": "rbxassetid://77811074784797", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://100177773434449", + "name": "Holly Fawn", + "thumbnail": "rbxassetid://102743058054013", }, - "configName": "Clover Peacock", + "configName": "Holly Fawn", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6a432bee987773ba", + "dateModified": "2026-06-27T16:05:42.415Z", + "hashShort": "672ef953db4902b2", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 151823657171005, + 134954361929782, + 143959905059081, + 151879424898143, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://126465041139844", - "name": "Clover Lion", - "thumbnail": "rbxassetid://92090569174852", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://98978963200422", + "name": "Pinecone Porcupine", + "thumbnail": "rbxassetid://96854053384085", }, - "configName": "Clover Lion", + "configName": "Pinecone Porcupine", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0399abc880a71cd0", + "dateModified": "2026-06-27T16:05:42.421Z", + "hashShort": "75657b12635ad28a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 150803708381393, + 135538580135744, + 144386012401134, + 152518585911223, ], "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://83136146082674", - "name": "Leprechaun Dog", - "thumbnail": "rbxassetid://70418015784814", + "fromZoneNumber": 234, + "goldenThumbnail": "rbxassetid://113851015455349", + "name": "Poinsettia Peacock", + "thumbnail": "rbxassetid://124627794455397", }, - "configName": "Leprechaun Dog", + "configName": "Poinsettia Peacock", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "84447dd4a7e8e68c", + "dateModified": "2026-06-27T16:05:42.415Z", + "hashShort": "845fc952d032efff", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 152803067304937, - ], "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://111375276143562", - "name": "Clover Butterfly", - "thumbnail": "rbxassetid://116380484302777", - }, - "configName": "Clover Butterfly", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3bda296519017432", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 153435031288497, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://73956829372262", - "name": "Pot of Gold Cat", - "thumbnail": "rbxassetid://74626937713423", - }, - "configName": "Pot of Gold Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4bc79d0a062c50cb", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "animations": { - "dotMatrix": { - "ColorA": null, - "ColorB": null, - }, - }, - "exclusiveLevel": 1, - "goldenThumbnail": "", - "name": "Dot Matrix Cat", + "goldenThumbnail": "rbxassetid://71415994113632", + "huge": true, + "indexDesc": "Earned from the Doodle Battle inside Doodle Gifts!", + "indexObtainable": true, + "name": "Huge Doodle Agony", "rarity": { "Announce": true, "Color": null, @@ -124173,26 +128352,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://96651992077473", + "thumbnail": "rbxassetid://117441180861427", }, - "configName": "Dot Matrix Cat", + "configName": "Huge Doodle Agony", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c6e8317bf7fc931b", + "hashShort": "f56b2d5a9b7efa76", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "dotMatrix": { - "ColorA": null, - "ColorB": null, - }, - }, - "exclusiveLevel": 2, - "goldenThumbnail": "", - "name": "Dot Matrix Snail", + "fly": true, + "goldenThumbnail": "rbxassetid://126207788432267", + "huge": true, + "indexDesc": "Found in the Volcano Pack!", + "indexObtainable": true, + "name": "Huge Doodle Dragon", "rarity": { "Announce": true, "Color": null, @@ -124205,26 +128381,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://129735105448057", + "thumbnail": "rbxassetid://103476619059265", }, - "configName": "Dot Matrix Snail", + "configName": "Huge Doodle Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "611b17b754d0bcb7", + "hashShort": "8c913e65c57aa351", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "dotMatrix": { - "ColorA": null, - "ColorB": null, - }, - }, - "exclusiveLevel": 3, - "goldenThumbnail": "", - "name": "Dot Matrix Axolotl", + "fly": true, + "goldenThumbnail": "rbxassetid://95131278929733", + "huge": true, + "indexDesc": "Found by using the Breakable Mayhem Enchant!", + "indexObtainable": true, + "name": "Huge Parrot", "rarity": { "Announce": true, "Color": null, @@ -124237,28 +128410,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://137759357538257", + "thumbnail": "rbxassetid://106937805162090", }, - "configName": "Dot Matrix Axolotl", + "configName": "Huge Parrot", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3738ffe6919be741", + "hashShort": "d06191bbaf4a6c34", }, { - "category": "Gargantuan", + "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "dotMatrix": { - "ColorA": null, - "ColorB": null, - }, - }, - "gargantuan": true, - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Dot Matrix Egg!", + "fly": true, + "goldenThumbnail": "rbxassetid://93125878457744", + "huge": true, + "indexDesc": "Found in the Exclusive Hypnotic Egg!", "indexObtainable": true, - "name": "Gargantuan Dot Matrix Pegasus", + "name": "Huge Hypnotic Dragon", "rarity": { "Announce": true, "Color": null, @@ -124271,22 +128439,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://133716042717345", + "thumbnail": "rbxassetid://90381015332493", }, - "configName": "Gargantuan Dot Matrix Pegasus", + "configName": "Huge Hypnotic Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d0f493dcbce29e05", + "hashShort": "e6970c59861a2f42", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://81492022889764", + "goldenThumbnail": "rbxassetid://134798583283192", "huge": true, - "indexDesc": "Reward in the 2025 Tie Dye Clan Battle!", + "indexDesc": "Found in the Exclusive Hypnotic Egg!", "indexObtainable": true, - "name": "Huge Tiedye Dog", + "name": "Huge Hypnotic Cat", "rarity": { "Announce": true, "Color": null, @@ -124299,23 +128467,118 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://117016363569133", + "thumbnail": "rbxassetid://111380702185705", }, - "configName": "Huge Tiedye Dog", + "configName": "Huge Hypnotic Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f6d245129bba2360", + "hashShort": "09b04907fc4b26ef", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://76543717927150", + "animations": { + "colorVariants": [ + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Red!", + "Disabled": { + "Decal": true, + }, + "IconColor": null, + "Id": 1, + "IsUnique": true, + "Magnitude": 1, + "Name": "Red", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Blue!", + "Disabled": { + "Decal": true, + }, + "IconColor": null, + "Id": 2, + "IsUnique": true, + "Magnitude": 1, + "Name": "Blue", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Green!", + "Disabled": { + "Decal": true, + }, + "IconColor": null, + "Id": 3, + "IsUnique": true, + "Magnitude": 1, + "Name": "Green", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Yellow!", + "Disabled": { + "Decal": true, + }, + "IconColor": null, + "Id": 4, + "IsUnique": true, + "Magnitude": 1, + "Name": "Yellow", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Cyan!", + "Disabled": { + "Decal": true, + }, + "IconColor": null, + "Id": 5, + "IsUnique": true, + "Magnitude": 1, + "Name": "Cyan", + "Title": "Chroma", + }, + { + "Chance": 0.16666666666666666, + "Color": null, + "Desc": "Comes in Violet!", + "Disabled": { + "Decal": true, + }, + "IconColor": null, + "Id": 6, + "IsUnique": true, + "Magnitude": 1, + "Name": "Violet", + "Title": "Chroma", + }, + ], + }, + "cachedPower": [ + 183552858660394, + ], + "fromEgg": "Doodle Tropical Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in the 2025 St. Patrick's Day event eggs!", + "indexDesc": "Earned from the last egg in the Doodle World!", "indexObtainable": true, - "name": "Huge Clover Griffin", + "maxChance": 9.99987305161161e-9, + "name": "Huge Chroma Doodle Axolotl", + "preventGolden": true, "rarity": { "Announce": true, "Color": null, @@ -124328,22 +128591,24 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://129397965885657", + "staticColorVariants": true, + "thumbnail": "rbxassetid://104790531635237", }, - "configName": "Huge Clover Griffin", + "configName": "Huge Chroma Doodle Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d2b9de15e995a1bb", + "hashShort": "86906c6aaf6fe4ef", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://72203256306429", - "huge": true, - "indexDesc": "Found in The Forever Pack!", + "fly": true, + "goldenThumbnail": "rbxassetid://101610582312145", + "indexDesc": "Found by using the Breakable Mayhem Enchant!", "indexObtainable": true, - "name": "Huge Hydra Axolotl", + "name": "Titanic Parrot", + "power": 18, "rarity": { "Announce": true, "Color": null, @@ -124356,22 +128621,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://76323621337981", + "thumbnail": "rbxassetid://81714067299017", + "titanic": true, }, - "configName": "Huge Hydra Axolotl", + "configName": "Titanic Parrot", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "22088fd0234a8eb0", + "hashShort": "1a48734a721e1a1d", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://89378799160723", - "huge": true, - "indexDesc": "Found in The Pot of Gold Forever Pack!", + "goldenThumbnail": "rbxassetid://132438776498665", + "indexDesc": "Found in the Exclusive Hypnotic Egg!", "indexObtainable": true, - "name": "Huge Pot of Gold Cat", + "name": "Titanic Hypnotic Monkey", "rarity": { "Announce": true, "Color": null, @@ -124384,499 +128649,601 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://123890112908568", + "thumbnail": "rbxassetid://85590653495391", + "titanic": true, }, - "configName": "Huge Pot of Gold Cat", + "configName": "Titanic Hypnotic Monkey", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "31a61ddf52c424bd", + "hashShort": "8f6442207352bda0", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://129229996923770", - "huge": true, - "indexDesc": "Earned by defeating the Tier 300 Lucky Raid Boss!", - "indexObtainable": true, - "name": "Huge Clover Bee", + "cachedPower": [ + 92689946233890, + 99700868419468, + 104661941872740, + ], + "fromEgg": "Doodle Flower Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 235, + "goldenThumbnail": "rbxassetid://14968212581", + "maxChance": 0.0009990009990009992, + "name": "Doodle Bunny", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://92697373462590", + "thumbnail": "rbxassetid://14968212719", }, - "configName": "Huge Clover Bee", + "configName": "Doodle Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a1be8ecd1399b122", + "dateModified": "2026-06-27T16:05:23.833Z", + "hashShort": "eb8fa749e638e60c", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://106453225511334", - "huge": true, - "indexDesc": "Earned by defeating the Tier 1,000 Lucky Raid Boss!", - "indexObtainable": true, - "name": "Huge Lucki Angelus", + "cachedPower": [ + 121567824883885, + 129504614727029, + 136950538462803, + ], + "fromEgg": "Doodle Tropical Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968218838", + "maxChance": 0.9899874321095494, + "name": "Doodle Narwhal", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://139803624702732", + "thumbnail": "rbxassetid://14968218908", }, - "configName": "Huge Lucki Angelus", + "configName": "Doodle Narwhal", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a19c0aa4426d5011", + "dateModified": "2026-06-27T16:05:23.810Z", + "hashShort": "79db82503812a62b", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://123175144561252", - "huge": true, - "indexDesc": "Found in the Leprechaun Chest at the end of Lucky Raids!", - "indexObtainable": true, - "name": "Huge Emerald Owl", + "cachedPower": [ + 170568842697064, + 181977622105390, + 191889948034197, + ], + "fromEgg": "Doodle Tropical Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968220424", + "maxChance": 0.000002499968262902903, + "name": "Doodle Shark", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://86244728271610", + "thumbnail": "rbxassetid://14968220543", }, - "configName": "Huge Emerald Owl", + "configName": "Doodle Shark", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e845d73c9ccfd1fd", + "dateModified": "2026-06-27T16:05:23.815Z", + "hashShort": "2394c90b6655d436", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://78046479704494", - "huge": true, - "indexDesc": "Earned from the St. Patrick's Day event leaderboard contest!", - "indexObtainable": true, - "name": "Huge Leprechaun Corgi", + "cachedPower": [ + 177669716370164, + ], + "fromEgg": "Doodle Tropical Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968211915", + "maxChance": 1.849976514548148e-7, + "name": "Doodle Axolotl", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://121626640440926", + "thumbnail": "rbxassetid://14968211984", }, - "configName": "Huge Leprechaun Corgi", + "configName": "Doodle Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "11e65c80bc2c44ec", + "hashShort": "1683dd636c37937e", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://111837955481533", - "huge": true, - "indexDesc": "Earned from the St. Patrick's Day event leaderboard contest!", - "indexObtainable": true, - "name": "Huge Wishing Dragon", + "cachedPower": [ + 166219679670159, + 178715749835211, + 186997139628929, + ], + "fromEgg": "Doodle Tropical Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968214546", + "maxChance": 0.000009999873051611612, + "name": "Doodle Dolphin", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://106906458368266", + "thumbnail": "rbxassetid://14968214636", }, - "configName": "Huge Wishing Dragon", + "configName": "Doodle Dolphin", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "fe875542c33697b4", + "dateModified": "2026-06-27T16:05:23.816Z", + "hashShort": "4dd7013178e84fd2", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://136231403295192", - "huge": true, - "indexDesc": "Earned by defeating the Tier 100 Lucky Raid Boss!", - "indexObtainable": true, - "name": "Huge Lucki Elephant", + "cachedPower": [ + 85974257586617, + 92176095254809, + 96895295017360, + ], + "fromEgg": "Doodle Safari Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 236, + "goldenThumbnail": "rbxassetid://14968222124", + "maxChance": 0.8955223880597015, + "name": "Doodle Tiger", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://101748445167482", + "thumbnail": "rbxassetid://14968222226", }, - "configName": "Huge Lucki Elephant", + "configName": "Doodle Tiger", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "03d298ba896bf695", + "dateModified": "2026-06-27T16:05:23.806Z", + "hashShort": "722f8bb0118fbaef", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://94667830042202", - "indexDesc": "Found in The Forever Pack!", - "indexObtainable": true, - "name": "Titanic Hydra Axolotl", + "cachedPower": [ + 92317905484197, + 99417877214299, + 104237455064987, + ], + "fromEgg": "Doodle Safari Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 236, + "goldenThumbnail": "rbxassetid://14968215255", + "maxChance": 0.09950248756218906, + "name": "Doodle Elephant", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://116530316117361", - "titanic": true, + "thumbnail": "rbxassetid://14968215385", }, - "configName": "Titanic Hydra Axolotl", + "configName": "Doodle Elephant", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b64d3f35a9c1c224", + "dateModified": "2026-06-27T16:05:23.831Z", + "hashShort": "d0f5d94b89a85a5b", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://78169662483276", - "indexDesc": "Earned by defeating the Tier 1,000 Lucky Raid Boss!", - "indexObtainable": true, - "name": "Titanic Lucki Angelus", + "cachedPower": [ + 139263938547799, + 150407011714641, + 156671930866274, + ], + "fromEgg": "Doodle Tropical Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968214321", + "maxChance": 0.00999987305161161, + "name": "Doodle Crocodile", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://140159437559092", - "titanic": true, + "thumbnail": "rbxassetid://14968214440", }, - "configName": "Titanic Lucki Angelus", + "configName": "Doodle Crocodile", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "327be519d5f26ae6", + "dateModified": "2026-06-27T16:05:23.820Z", + "hashShort": "feb69fd06caa24bf", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://93105033492234", - "indexDesc": "Earned from the St. Patrick's Day event leaderboard contest!", - "indexObtainable": true, - "name": "Titanic Wishing Dragon", + "cachedPower": [ + 99753969598875, + 108694826781202, + 112540037755583, + ], + "fromEgg": "Doodle Safari Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 236, + "goldenThumbnail": "rbxassetid://14968220188", + "maxChance": 0.004975124378109453, + "name": "Doodle Rhino", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Legendary", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 4, + "_id": "Legendary", "_script": null, }, - "thumbnail": "rbxassetid://133278674561506", - "titanic": true, + "thumbnail": "rbxassetid://14968220345", }, - "configName": "Titanic Wishing Dragon", + "configName": "Doodle Rhino", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e6f19a47c9a8d5f2", + "dateModified": "2026-06-27T16:05:23.819Z", + "hashShort": "a5eb45880278dde0", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 154260085476455, + 96752146083443, + 103758001640539, + 109040730553684, ], "fly": true, + "fromEgg": "Doodle Fairy Egg", "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968275684", - "name": "Lucki Agony", - "thumbnail": "rbxassetid://14968275778", + "fromZoneNumber": 237, + "goldenThumbnail": "rbxassetid://14968215488", + "maxChance": 0.8910891089108911, + "name": "Doodle Fairy", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://14968215596", }, - "configName": "Lucki Agony", + "configName": "Doodle Fairy", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "95a1dccc21de3626", + "dateModified": "2026-06-27T16:05:23.801Z", + "hashShort": "50f7051b2bc372d3", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 154089464011432, + 103869665542824, + 111851206443331, + 117274607248775, ], "fly": true, + "fromEgg": "Doodle Fairy Egg", "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://82899609699791", - "name": "Emerald Owl", - "thumbnail": "rbxassetid://102569224681414", + "fromZoneNumber": 237, + "goldenThumbnail": "rbxassetid://14968216770", + "maxChance": 0.09900990099009901, + "name": "Doodle Griffin", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://14968216873", }, - "configName": "Emerald Owl", + "configName": "Doodle Griffin", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "227bc9e2b43092ef", + "dateModified": "2026-06-27T16:05:23.835Z", + "hashShort": "c3d082441d3f71ba", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 153667901477279, + 110066515884791, + 119206759707041, + 124094065579003, ], + "fly": true, + "fromEgg": "Doodle Fairy Egg", "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://98612561193858", - "name": "Leprechaun Corgi", - "thumbnail": "rbxassetid://94825916121197", + "fromZoneNumber": 237, + "goldenThumbnail": "rbxassetid://14968214722", + "maxChance": 0.009900990099009901, + "name": "Doodle Dragon", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Epic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 3, + "_id": "Epic", + "_script": null, + }, + "thumbnail": "rbxassetid://14968214828", }, - "configName": "Leprechaun Corgi", + "configName": "Doodle Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "70d05c6e197a0ad8", + "dateModified": "2026-06-27T16:05:23.828Z", + "hashShort": "79032c4043331a1c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - }, "cachedPower": [ - 154765739015459, + 108793534116544, + 116616582609586, + 122605741284762, ], - "fly": true, + "fromEgg": "Doodle Gem Egg", "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://79144895549039", - "name": "Lucki Angelus", - "thumbnail": "rbxassetid://90493602438892", + "fromZoneNumber": 238, + "goldenThumbnail": "rbxassetid://14968222932", + "maxChance": 0.8977556109725686, + "name": "Doodle Unicorn", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://14968223059", }, - "configName": "Lucki Angelus", + "configName": "Doodle Unicorn", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e22b1a0bb399134f", + "dateModified": "2026-06-27T16:05:23.834Z", + "hashShort": "6b716e0479a9e3b1", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 153590522308691, + 116833062247483, + 125813087320662, + 131902164733267, ], + "fly": true, + "fromEgg": "Doodle Gem Egg", "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://124838982302199", - "name": "Lucki Elephant", - "thumbnail": "rbxassetid://125873942319354", + "fromZoneNumber": 238, + "goldenThumbnail": "rbxassetid://14968211749", + "maxChance": 0.09975062344139651, + "name": "Doodle Agony", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://14968211859", }, - "configName": "Lucki Elephant", + "configName": "Doodle Agony", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "485cf801ba2e29f4", + "dateModified": "2026-06-27T16:05:23.837Z", + "hashShort": "f85154c301fa4d00", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 153512899425785, + 128715981223789, + 139368796593652, + 144992762199999, ], + "fromEgg": "Doodle Gem Egg", "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://119112793102736", - "name": "Lucki Bunny", - "thumbnail": "rbxassetid://101962619406517", + "fromZoneNumber": 238, + "goldenThumbnail": "rbxassetid://14968216999", + "maxChance": 0.0024937655860349127, + "name": "Doodle Hydra", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Legendary", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 4, + "_id": "Legendary", + "_script": null, + }, + "thumbnail": "rbxassetid://14968217100", }, - "configName": "Lucki Bunny", + "configName": "Doodle Hydra", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a187e4cb2d28e4b6", + "dateModified": "2026-06-27T16:05:23.809Z", + "hashShort": "a8f716de6a392f96", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 153745038457149, + 75899685046566, + 80870899050214, + 85518183143234, ], + "fromEgg": "Doodle Flower Egg", "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://117314816219748", - "name": "Horseshoe Crab", - "thumbnail": "rbxassetid://80414589872638", + "fromZoneNumber": 235, + "goldenThumbnail": "rbxassetid://14968212872", + "maxChance": 0.989010989010989, + "name": "Doodle Cat", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://14968212948", }, - "configName": "Horseshoe Crab", + "configName": "Doodle Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b78496fc6b6140d5", + "dateModified": "2026-06-27T16:05:28.085Z", + "hashShort": "d6059521c0099247", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 154429663378592, + 86944208262139, + 94150713439844, + 98030803878982, ], - "fly": true, + "fromEgg": "Doodle Flower Egg", "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://73161274488659", - "name": "Wishing Dragon", - "thumbnail": "rbxassetid://123146990640983", - }, - "configName": "Wishing Dragon", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ef5d2329ad58a6ee", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 153917786060019, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://117022617688201", - "name": "Clover Griffin", - "thumbnail": "rbxassetid://83133369856634", - }, - "configName": "Clover Griffin", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7d90b6b040c6bb25", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 153481781688129, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://83653024525779", - "name": "Clover Bee", - "thumbnail": "rbxassetid://139480259905097", - }, - "configName": "Clover Bee", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4c8f5fecb1726bcb", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://91076098978665", - "name": "Kaiju Volcano", + "fromZoneNumber": 235, + "goldenThumbnail": "rbxassetid://14968213301", + "maxChance": 0.00999000999000999, + "name": "Doodle Corgi", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Epic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 3, + "_id": "Epic", "_script": null, }, - "thumbnail": "rbxassetid://101340449423952", + "thumbnail": "rbxassetid://14968213833", }, - "configName": "Kaiju Volcano", + "configName": "Doodle Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0c47bc4e4fd322a3", + "dateModified": "2026-06-27T16:05:28.096Z", + "hashShort": "8dba1fa5e1eba999", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://127540284925826", - "name": "Kaiju Sea Dragon", + "goldenThumbnail": "rbxassetid://112906671569372", + "name": "Hypnotic Cat", "rarity": { "Announce": true, "Color": null, @@ -124889,191 +129256,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://105586421223527", - }, - "configName": "Kaiju Sea Dragon", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5f88d48e608eb223", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 154932261441361, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://80900220192797", - "name": "Fragmented Golem", - "thumbnail": "rbxassetid://79467586113278", - }, - "configName": "Fragmented Golem", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ab9891b107627312", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 154765739015459, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://88966220691911", - "name": "Jungle Golem", - "thumbnail": "rbxassetid://94359397613247", - }, - "configName": "Jungle Golem", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "74739905642d9b1a", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "animations": { - "flyHeight": 0.025, - "flyHeightChange": 0, - "swerve": false, - "swerveAggression": 1, - "swerveMaxAngle": 60, - }, - "cachedPower": [ - 153745038457149, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://85826572332689", - "name": "Minecart Hamster", - "thumbnail": "rbxassetid://94241789871737", - }, - "configName": "Minecart Hamster", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0b17e6283dea0ad8", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 155425910693599, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://116419627397949", - "name": "Abyss Carbuncle", - "thumbnail": "rbxassetid://132835629822914", - }, - "configName": "Abyss Carbuncle", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "68a1b30bd239e250", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 153435031288497, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://73168468310625", - "name": "Mining Penguin", - "thumbnail": "rbxassetid://135904679485668", - }, - "configName": "Mining Penguin", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9b5dd67e69eb0dea", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 154089464011432, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://93052620010433", - "name": "Crystal Spider", - "thumbnail": "rbxassetid://98426075610969", - }, - "configName": "Crystal Spider", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0675e5f6cebf03a0", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 153121074877797, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://129006327954262", - "name": "Mining Raccoon", - "thumbnail": "rbxassetid://120972875093348", + "thumbnail": "rbxassetid://90350304780770", }, - "configName": "Mining Raccoon", + "configName": "Hypnotic Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b3bd849ae4548e27", + "hashShort": "a68035af75230845", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 154429663378592, - ], + "exclusiveLevel": 2, "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://94069014409916", - "name": "Crystal Bat", - "thumbnail": "rbxassetid://96230769745826", - }, - "configName": "Crystal Bat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "30a172ca89398519", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 155097789697603, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://100049514849518", - "name": "Abstract Dominus", - "thumbnail": "rbxassetid://78101983924468", - }, - "configName": "Abstract Dominus", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d6ac1aee48aeaa8a", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://88113076176074", - "name": "Kaiju Hydra", + "goldenThumbnail": "rbxassetid://74611716648687", + "name": "Hypnotic Griffin", "rarity": { "Announce": true, "Color": null, @@ -125086,35 +129283,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://97508264722074", + "thumbnail": "rbxassetid://118264106080641", }, - "configName": "Kaiju Hydra", + "configName": "Hypnotic Griffin", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "94f8bdc7850a6617", + "hashShort": "bbd41cf1679bcc66", }, { - "category": "Gargantuan", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "customAnimations": true, - "idleActionAnimations": [ - [ - "CorgiJumping", - 0.5, - ], - ], - "ridingJumpPower": 125, - }, + "exclusiveLevel": 3, "fly": true, - "gargantuan": true, - "goldenThumbnail": "rbxassetid://111236540845186", - "indexDesc": "Earned from the Combine-O-Matic! - -Ground Slam - Pet will damage breakables in a large area!", - "indexObtainable": true, - "name": "Gargantuan Hellish Axolotl", + "goldenThumbnail": "rbxassetid://116617477074053", + "name": "Hypnotic Dragon", "rarity": { "Announce": true, "Color": null, @@ -125127,12 +129310,12 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://74041646461593", + "thumbnail": "rbxassetid://125420855312026", }, - "configName": "Gargantuan Hellish Axolotl", + "configName": "Hypnotic Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "485a8e3e5d67a5d4", + "hashShort": "a3f0f2a848c0663c", }, { "category": "Gargantuan", @@ -125150,11 +129333,11 @@ Ground Slam - Pet will damage breakables in a large area!", }, "gargantuan": true, "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Kaiju Egg! + "indexDesc": "Found in the Exclusive Hypnotic Egg! Ground Slam - Pet will damage breakables in a large area!", "indexObtainable": true, - "name": "Gargantuan Kaiju King", + "name": "Gargantuan Hypnotic Kitsune", "rarity": { "Announce": true, "Color": null, @@ -125167,22 +129350,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://122037254674435", + "thumbnail": "rbxassetid://130525621588743", }, - "configName": "Gargantuan Kaiju King", + "configName": "Gargantuan Hypnotic Kitsune", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e3ee79192d094512", + "hashShort": "2c02928cd84fc6f1", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://139465239417636", + "goldenThumbnail": "rbxassetid://112908538882157", "huge": true, - "indexDesc": "Earned from the 2025 Mining Event!", + "indexDesc": "Earned from Pet Games World's huge raffles!", "indexObtainable": true, - "name": "Huge Mining Penguin", + "name": "Huge Guard Dominus", "rarity": { "Announce": true, "Color": null, @@ -125195,22 +129378,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://107393069000800", + "thumbnail": "rbxassetid://125199678702615", }, - "configName": "Huge Mining Penguin", + "configName": "Huge Guard Dominus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "86650d2b40f24154", + "hashShort": "bd9a8dd97717ad61", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://70592879555241", + "goldenThumbnail": "rbxassetid://137486887432785", "huge": true, - "indexDesc": "Earned from the 2025 Mining Event!", + "indexDesc": "Earned from the Pet Games inside Pet Games Gifts and leaderboard contest!", "indexObtainable": true, - "name": "Huge Crystal Spider", + "name": "Huge Player Corgi", "rarity": { "Announce": true, "Color": null, @@ -125223,22 +129406,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://78631219465603", + "thumbnail": "rbxassetid://120748568564871", }, - "configName": "Huge Crystal Spider", + "configName": "Huge Player Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "850078448a344f06", + "hashShort": "384a9f106b53a8d4", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://124123306751895", + "fly": true, + "goldenThumbnail": "rbxassetid://119803493473064", "huge": true, - "indexDesc": "Earned from the 2025 Mining Event!", + "indexDesc": "Earned from The Forever Pack!", "indexObtainable": true, - "name": "Huge Fragmented Golem", + "name": "Huge Guard Dragon", "rarity": { "Announce": true, "Color": null, @@ -125251,22 +129435,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://104056264494147", + "thumbnail": "rbxassetid://106968856805193", }, - "configName": "Huge Fragmented Golem", + "configName": "Huge Guard Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "393ff07f056cd137", + "hashShort": "22e89809040920c7", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://125398970610563", + "goldenThumbnail": "rbxassetid://82646159865722", "huge": true, - "indexDesc": "Found in the Exclusive Kaiju Egg!", + "indexDesc": "Earned from the final egg in the Pet Games Event!", "indexObtainable": true, - "name": "Huge Kaiju Sea Dragon", + "name": "Huge Player Panda", "rarity": { "Announce": true, "Color": null, @@ -125279,22 +129463,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://77556334425969", + "thumbnail": "rbxassetid://98031004094644", }, - "configName": "Huge Kaiju Sea Dragon", + "configName": "Huge Player Panda", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2fb022ef4ee7def1", + "hashShort": "4bd420a215d0944b", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://116779986656695", + "fly": true, + "goldenThumbnail": "rbxassetid://85736363782795", "huge": true, - "indexDesc": "Found in the Exclusive Kaiju Egg!", + "indexDesc": "Reward in the 2025 Pet Games Battle!", "indexObtainable": true, - "name": "Huge Kaiju Hydra", + "name": "Huge Wyvern of Hades", "rarity": { "Announce": true, "Color": null, @@ -125307,22 +129492,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://104819925091161", + "thumbnail": "rbxassetid://113089838370784", }, - "configName": "Huge Kaiju Hydra", + "configName": "Huge Wyvern of Hades", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ebfc3b37d40ba244", + "hashShort": "0a910180f6138bdb", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://104529894966052", + "fly": true, + "goldenThumbnail": "rbxassetid://115548825496345", "huge": true, - "indexDesc": "Found in The Gem Forever Pack!", + "indexDesc": "Earned from the Control Room Egg!", "indexObtainable": true, - "name": "Huge Abstract Dominus", + "name": "Huge Frontman Jellyfish", "rarity": { "Announce": true, "Color": null, @@ -125335,22 +129521,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://138676503703270", + "thumbnail": "rbxassetid://104443983862799", }, - "configName": "Huge Abstract Dominus", + "configName": "Huge Frontman Jellyfish", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d07476bc3eb84260", + "hashShort": "ff74625c60be147d", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://94818260225356", - "huge": true, - "indexDesc": "Earned from the Mining Event's final egg!", + "goldenThumbnail": "rbxassetid://134748735502141", + "indexDesc": "Earned from Pet Games World's huge raffles!", "indexObtainable": true, - "name": "Huge Mining Raccoon", + "name": "Titanic Guard Dominus", "rarity": { "Announce": true, "Color": null, @@ -125363,239 +129548,205 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://81824551142457", + "thumbnail": "rbxassetid://100676807930076", + "titanic": true, }, - "configName": "Huge Mining Raccoon", + "configName": "Titanic Guard Dominus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4bc89e14bcd0f480", + "hashShort": "544441607e0e9367", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://80517635638750", - "indexDesc": "Earned from the 2025 Mining Event!", - "indexObtainable": true, - "name": "Titanic Abyss Carbuncle", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://121024391063626", - "titanic": true, + "cachedPower": [ + 141663783216864, + 154293161930507, + 159371756118972, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://116537728007674", + "name": "Player Corgi", + "thumbnail": "rbxassetid://79992947459928", }, - "configName": "Titanic Abyss Carbuncle", + "configName": "Player Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "333cb5e7a8e87c5d", + "dateModified": "2026-06-27T16:05:42.409Z", + "hashShort": "ad6536911ee7d8a6", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "flyingTitanic": true, - "flyingTitanicAlwaysFly": true, - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Kaiju Egg!", - "indexObtainable": true, - "name": "Titanic Kaiju Moth", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://119404602163936", - "titanic": true, + "cachedPower": [ + 144510626614779, + 156428294478943, + 162574454941626, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://119263825261976", + "name": "Guard Dominus", + "thumbnail": "rbxassetid://124518638707303", }, - "configName": "Titanic Kaiju Moth", + "configName": "Guard Dominus", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "31ee6db82be51240", + "dateModified": "2026-06-27T16:05:42.412Z", + "hashShort": "fa92222d418ba374", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.025, - "flyHeightChange": 0, - "swerve": false, - "swerveAggression": 1, - "swerveMaxAngle": 60, - }, "cachedPower": [ - 155507337772884, + 142161683887343, + 154666587433366, + 159931894373261, ], "fly": true, "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://110696479826653", - "name": "Minecart Piggy", - "thumbnail": "rbxassetid://103401326689920", + "goldenThumbnail": "rbxassetid://136930102181059", + "name": "Guard Dragon", + "thumbnail": "rbxassetid://112948890862176", }, - "configName": "Minecart Piggy", + "configName": "Guard Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "db5d21b3d3b1b663", + "dateModified": "2026-06-27T16:05:42.416Z", + "hashShort": "6dfa0b063149a179", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 155910924237608, + 138444616825878, + 148768368270798, + 155750193929112, ], - "fly": true, "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://92566404806568", - "name": "Obsidian Dragon", - "thumbnail": "rbxassetid://96188993012517", + "goldenThumbnail": "rbxassetid://77873097420473", + "name": "Player Panda", + "thumbnail": "rbxassetid://138601406877967", }, - "configName": "Obsidian Dragon", + "configName": "Player Panda", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d11b8fa25507baef", + "dateModified": "2026-06-27T16:05:42.410Z", + "hashShort": "7fc9b4a00cd45f57", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 155750193929112, + 140636749406375, + 153152633431794, + 158216343082172, ], - "fly": true, "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://122114953406844", - "name": "Mining Robot", - "thumbnail": "rbxassetid://72532850179934", + "goldenThumbnail": "rbxassetid://77222263840368", + "name": "Player Piggy", + "thumbnail": "rbxassetid://113730211503617", }, - "configName": "Mining Robot", + "configName": "Player Piggy", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ec63fe5b40543f91", + "dateModified": "2026-06-27T16:05:42.409Z", + "hashShort": "ddf2b80337abbf53", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 155669478004368, + 139565048170975, + 151009230960992, + 157010679192346, ], "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://109354669585552", - "name": "Gem Mole", - "thumbnail": "rbxassetid://112063500716118", + "goldenThumbnail": "rbxassetid://112587595347366", + "name": "Guard Raccoon", + "thumbnail": "rbxassetid://108352797408458", }, - "configName": "Gem Mole", + "configName": "Guard Raccoon", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e1c6ce5459c29878", + "dateModified": "2026-06-27T16:05:42.427Z", + "hashShort": "7123976a6f82cfde", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 155588526412356, + 141155615833073, + 153912036392664, + 158800067812207, ], "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://77550893935395", - "name": "Mining Monkey", - "thumbnail": "rbxassetid://88029144941526", + "goldenThumbnail": "rbxassetid://126718327606405", + "name": "Guard Wolf", + "thumbnail": "rbxassetid://71453095596700", }, - "configName": "Mining Monkey", + "configName": "Guard Wolf", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f66bdf21773d4fff", + "dateModified": "2026-06-27T16:05:42.429Z", + "hashShort": "11915cf365f8a810", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://99383545915892", - "huge": true, - "indexDesc": "Reward in the 2025 Athena Clan Battle!", - "indexObtainable": true, - "name": "Huge Athena Owl", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://117588896362117", + "cachedPower": [ + 137270811892082, + 146420758403206, + 154429663378592, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://129881970154045", + "name": "Doll Cat", + "thumbnail": "rbxassetid://123466882813661", }, - "configName": "Huge Athena Owl", + "configName": "Doll Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "986f382a9771269a", + "dateModified": "2026-06-27T16:05:42.429Z", + "hashShort": "f42a0d178831c0af", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://76554824229150", - "huge": true, - "indexDesc": "Earned from the 2025 Mining Event!", - "indexObtainable": true, - "name": "Huge Jungle Golem", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://125686962742036", + "cachedPower": [ + 146655043314062, + 158036607003405, + 164986923728319, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://131898196860043", + "name": "Frontman Jellyfish", + "thumbnail": "rbxassetid://94692008134127", }, - "configName": "Huge Jungle Golem", + "configName": "Frontman Jellyfish", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ba1e647a016a131c", + "dateModified": "2026-06-27T16:05:42.430Z", + "hashShort": "6e809dd7a2d9dcf8", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://121635064299672", + "goldenThumbnail": "rbxassetid://75571034855083", "huge": true, - "indexDesc": "Earned from the 2025 Mining Event!", + "indexDesc": "Earned from the 2025 Pet Games Event!", "indexObtainable": true, - "name": "Huge Crystal Bat", + "name": "Huge Player Fox", "rarity": { "Announce": true, "Color": null, @@ -125608,22 +129759,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://123270270237540", + "thumbnail": "rbxassetid://101605254258375", }, - "configName": "Huge Crystal Bat", + "configName": "Huge Player Fox", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7e3b5b16341ca9f9", + "hashShort": "cb25bb60cde7c9ca", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://104634632776696", + "goldenThumbnail": "rbxassetid://131272994056412", "huge": true, - "indexDesc": "Earned from the 2025 Mining Event!", + "indexDesc": "Earned from the 2025 Pet Games Event!", "indexObtainable": true, - "name": "Huge Mining Monkey", + "name": "Huge Guard Wolf", "rarity": { "Announce": true, "Color": null, @@ -125636,30 +129787,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://103555083432476", + "thumbnail": "rbxassetid://120663531720305", }, - "configName": "Huge Mining Monkey", + "configName": "Huge Guard Wolf", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a094ccbc11981f37", + "hashShort": "c94720be2f9dad51", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.025, - "flyHeightChange": 0, - "swerve": false, - "swerveAggression": 1, - "swerveMaxAngle": 60, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://99743944531032", + "goldenThumbnail": "rbxassetid://114032962278654", "huge": true, - "indexDesc": "Found in The Rift Forever Pack!", + "indexDesc": "Earned from the 2025 Pet Games Event!", "indexObtainable": true, - "name": "Huge Minecart Piggy", + "name": "Huge Guard Bunny", "rarity": { "Announce": true, "Color": null, @@ -125672,30 +129815,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://106752259915805", + "thumbnail": "rbxassetid://70728047813207", }, - "configName": "Huge Minecart Piggy", + "configName": "Huge Guard Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d775c21debc9c39b", + "hashShort": "2ebb376d784fcf10", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.025, - "flyHeightChange": 0, - "swerve": false, - "swerveAggression": 1, - "swerveMaxAngle": 60, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://70465307594864", + "goldenThumbnail": "rbxassetid://82164429493620", "huge": true, - "indexDesc": "Earned from the Mining Event's final egg!", + "indexDesc": "Earned from Pet Games World's huge raffles!", "indexObtainable": true, - "name": "Huge Minecart Hamster", + "name": "Huge Doll Cat", "rarity": { "Announce": true, "Color": null, @@ -125708,23 +129843,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://106601892793198", + "thumbnail": "rbxassetid://104297588937430", }, - "configName": "Huge Minecart Hamster", + "configName": "Huge Doll Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "fedd1d6e581bc45c", + "hashShort": "37d3240e3882f4de", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://103479252428904", + "goldenThumbnail": "rbxassetid://71562430342400", "huge": true, - "indexDesc": "Found in the 2025 Mining Event!", + "indexDesc": "Found in The Spotlight Pack!", "indexObtainable": true, - "name": "Huge Mining Robot", + "name": "Huge Guard Hydra", "rarity": { "Announce": true, "Color": null, @@ -125737,23 +129871,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://96864197207210", + "thumbnail": "rbxassetid://79622017350328", }, - "configName": "Huge Mining Robot", + "configName": "Huge Guard Hydra", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "55e39bf37d93ce0a", + "hashShort": "2b8770ae82719c2d", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://124471870709890", + "goldenThumbnail": "rbxassetid://132921278503250", "huge": true, - "indexDesc": "Found in the Clan Gift #2!", + "indexDesc": "Reward in the Pet Games leaderboard contest!", "indexObtainable": true, - "name": "Huge Lightning Bat", + "name": "Huge Player Penguin", "rarity": { "Announce": true, "Color": null, @@ -125766,22 +129899,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://94725312781292", + "thumbnail": "rbxassetid://121118923201338", }, - "configName": "Huge Lightning Bat", + "configName": "Huge Player Penguin", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "fce43d6eefb47362", + "hashShort": "80829da315bf5512", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://78716856822876", - "indexDesc": "Earned from the 2025 Mining Event!", + "goldenThumbnail": "", + "huge": true, + "indexDesc": "Found in the Exclusive Googly Egg!", "indexObtainable": true, - "name": "Titanic Obsidian Dragon", + "name": "Huge Googly Corgi", "rarity": { "Announce": true, "Color": null, @@ -125794,22 +129927,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://98113510502520", - "titanic": true, + "thumbnail": "rbxassetid://127100039471519", }, - "configName": "Titanic Obsidian Dragon", + "configName": "Huge Googly Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "04eb2f723015d6b5", + "hashShort": "c2a826cadec42347", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://99026845569717", - "indexDesc": "Reward in 2025 April, May, & June Clan Battles!", + "goldenThumbnail": "", + "huge": true, + "indexDesc": "Found in the Exclusive Googly Egg!", "indexObtainable": true, - "name": "Titanic Mosaic Cat", + "name": "Huge Googly Shark", "rarity": { "Announce": true, "Color": null, @@ -125822,21 +129955,28 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://121979531633033", - "titanic": true, + "thumbnail": "rbxassetid://103658339806343", }, - "configName": "Titanic Mosaic Cat", + "configName": "Huge Googly Shark", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8d4c4aed00a575bc", + "hashShort": "a2ce3654ccdfdd28", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "", - "name": "Claw Beast", + "animations": { + "flyHeight": 2.2, + "ridingCameraOffset": null, + "swerve": true, + "swerveMaxAngle": 45, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://89425189487820", + "indexDesc": "Earned from the 2025 Pet Games Event!", + "indexObtainable": true, + "name": "Titanic Frontman Jellyfish", "rarity": { "Announce": true, "Color": null, @@ -125849,20 +129989,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://117127490935946", + "thumbnail": "rbxassetid://91877971354703", + "titanic": true, }, - "configName": "Claw Beast", + "configName": "Titanic Frontman Jellyfish", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8bc46f0b3cdc92b4", + "hashShort": "5645beaa3894a1e5", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "exclusiveLevel": 2, "goldenThumbnail": "", - "name": "Feral Beast", + "indexDesc": "Found in the Exclusive Googly Egg!", + "indexObtainable": true, + "name": "Titanic Googly Blobfish", "rarity": { "Announce": true, "Color": null, @@ -125875,20 +130017,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://83480256607391", + "thumbnail": "rbxassetid://110994339382883", + "titanic": true, }, - "configName": "Feral Beast", + "configName": "Titanic Googly Blobfish", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ba72d2fccbff7c5e", + "hashShort": "db6fc337031e4cde", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "", - "name": "Snuggle Beast", + "goldenThumbnail": "rbxassetid://139466436169821", + "indexDesc": "Earned from Pet Games World's huge raffles!", + "indexObtainable": true, + "name": "Titanic Doll Cat", "rarity": { "Announce": true, "Color": null, @@ -125901,209 +130045,231 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://93740180159506", + "thumbnail": "rbxassetid://93143962349458", + "titanic": true, }, - "configName": "Snuggle Beast", + "configName": "Titanic Doll Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f78819f5e3667d88", + "hashShort": "9ecf5feaca1760cd", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "jelly": true, - }, "cachedPower": [ - 156070728141488, + 147463156529377, + 158642691914892, + 165896051095550, ], "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://138042222582542", - "name": "Jelly Hydra", - "thumbnail": "rbxassetid://122936672467216", + "goldenThumbnail": "rbxassetid://90425733592958", + "name": "Player Fox", + "thumbnail": "rbxassetid://100748278204952", }, - "configName": "Jelly Hydra", + "configName": "Player Fox", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f9c31ab99988c934", + "dateModified": "2026-06-27T16:05:42.428Z", + "hashShort": "99f80241f953c27c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 156544686701073, + 148245610976160, + 159229532749979, + 166776312348180, ], "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://95296008744223", - "name": "Jelly Wizard", - "thumbnail": "rbxassetid://111174482679172", + "goldenThumbnail": "rbxassetid://99285561619050", + "name": "Guard Hydra", + "thumbnail": "rbxassetid://108242113920946", }, - "configName": "Jelly Wizard", + "configName": "Guard Hydra", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "cab6b6c55609569a", + "dateModified": "2026-06-27T16:05:42.432Z", + "hashShort": "0f535d82db51f403", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "jelly": true, - }, "cachedPower": [ - 155910924237608, + 146961199362313, + 158266224039594, + 165331349282602, ], - "fly": true, "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://82448931775848", - "name": "Jelly Butterfly", - "thumbnail": "rbxassetid://116971016735415", + "goldenThumbnail": "rbxassetid://82554093523959", + "name": "Player Penguin", + "thumbnail": "rbxassetid://112146088574937", }, - "configName": "Jelly Butterfly", + "configName": "Player Penguin", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ae560c0c98128f51", + "dateModified": "2026-06-27T16:05:42.433Z", + "hashShort": "1ffa05b049b6c7f8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "jelly": true, - }, "cachedPower": [ - 156229616258656, + 147955093919200, + 159011644957259, + 166449480659100, ], - "fly": true, "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://130792031251610", - "name": "Firegel Dragon", - "thumbnail": "rbxassetid://82548535412143", + "goldenThumbnail": "rbxassetid://138227622666014", + "name": "Guard Bunny", + "thumbnail": "rbxassetid://79555963266888", }, - "configName": "Firegel Dragon", + "configName": "Guard Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8dffc5e7014b0bae", + "dateModified": "2026-06-27T16:05:42.434Z", + "hashShort": "d1b2acd6298fed73", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 154932261441361, + 147759495710361, + 158864946300630, + 166229432674156, ], "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://127227271800504", - "name": "Ooze Axolotl", - "thumbnail": "rbxassetid://73427382084349", + "goldenThumbnail": "rbxassetid://83957208265289", + "name": "Recruiter Axolotl", + "thumbnail": "rbxassetid://115924107292362", }, - "configName": "Ooze Axolotl", + "configName": "Recruiter Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c08333d56a5ebf47", + "dateModified": "2026-06-27T16:05:42.431Z", + "hashShort": "cee9793c0d75c7e7", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 154598210405653, + 147163210697852, + 158417732541248, + 165558612035084, ], "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://84504081438266", - "name": "Spotted Elephant", - "thumbnail": "rbxassetid://119711541738088", + "goldenThumbnail": "rbxassetid://73623201205111", + "name": "Player Gecko", + "thumbnail": "rbxassetid://91560073558553", }, - "configName": "Spotted Elephant", + "configName": "Player Gecko", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ce47556ae9e90264", + "dateModified": "2026-06-27T16:05:42.433Z", + "hashShort": "3581cb19a0e789b3", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 155262335584523, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://107332679098384", - "name": "Ooze Corgi", - "thumbnail": "rbxassetid://127981604630764", + "exclusiveLevel": 2, + "goldenThumbnail": "", + "name": "Googly Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://83360103208326", }, - "configName": "Ooze Corgi", + "configName": "Googly Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a56c05f59a983428", + "hashShort": "f06799ac863425a9", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 155588526412356, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://72243117947688", - "name": "Knight Slime", - "thumbnail": "rbxassetid://130223999745973", + "exclusiveLevel": 1, + "goldenThumbnail": "", + "name": "Googly Corgi", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://121730983168479", }, - "configName": "Knight Slime", + "configName": "Googly Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8f882f329bb00a5d", + "hashShort": "4b3ff5a251ffc571", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "balloon": true, - "cachedPower": [ - 155750193929112, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://128232868135952", - "name": "Bubble Cat", - "thumbnail": "rbxassetid://105853810671525", + "exclusiveLevel": 3, + "goldenThumbnail": "", + "name": "Googly Shark", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://95174422189322", }, - "configName": "Bubble Cat", + "configName": "Googly Shark", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b137353f1e0ec235", + "hashShort": "5037def70c53c83e", }, { "category": "Gargantuan", "collection": "Pets", "configData": { "animations": { + "boneFlyingAnimation": "rbxassetid://113382735394237", "customAnimations": true, - "idleActionAnimations": [ - [ - "CorgiJumping", - 0.5, - ], - ], + "ridingCameraOffset": null, "ridingJumpPower": 125, }, + "fly": true, + "flyingTitanic": true, "gargantuan": true, "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Beast Egg! + "indexDesc": "Found in the Exclusive Googly Egg! Ground Slam - Pet will damage breakables in a large area!", "indexObtainable": true, - "name": "Gargantuan Royal Beast", + "name": "Gargantuan Googly Agony", "rarity": { "Announce": true, "Color": null, @@ -126116,22 +130282,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://120268942762821", + "thumbnail": "rbxassetid://99540557591138", }, - "configName": "Gargantuan Royal Beast", + "configName": "Gargantuan Googly Agony", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "288dec701fa5ada2", + "hashShort": "ebbd00b5699fd2a8", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "", + "goldenThumbnail": "rbxassetid://118293765690599", "huge": true, - "indexDesc": "Found in the Exclusive Beast Egg!", + "indexDesc": "Found in the Hype Egg every update!", "indexObtainable": true, - "name": "Huge Claw Beast", + "name": "Huge Party Panda", "rarity": { "Announce": true, "Color": null, @@ -126144,22 +130310,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://102986417616097", + "thumbnail": "rbxassetid://102306587085097", }, - "configName": "Huge Claw Beast", + "configName": "Huge Party Panda", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "fd645cb9bc6fd448", + "hashShort": "e94289a41ce2819c", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "", + "goldenThumbnail": "rbxassetid://93918872693622", "huge": true, - "indexDesc": "Found in the Exclusive Beast Egg!", + "indexDesc": "Reward in the 2025 Mushroom Clan Battle!", "indexObtainable": true, - "name": "Huge Snuggle Beast", + "name": "Huge Mushroom King", "rarity": { "Announce": true, "Color": null, @@ -126172,22 +130338,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://121269844135033", + "thumbnail": "rbxassetid://125986697104431", }, - "configName": "Huge Snuggle Beast", + "configName": "Huge Mushroom King", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "bc0277e19fbec747", + "hashShort": "18756f57fd25288c", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://130216899532463", + "fly": true, + "goldenThumbnail": "rbxassetid://105374619873954", "huge": true, - "indexDesc": "Found in the Slime Factory's final egg!", + "indexDesc": "Found in the Cannon Tycoon's Rocketeer Pack!", "indexObtainable": true, - "name": "Huge Ooze Corgi", + "name": "Huge Fireball Cat", "rarity": { "Announce": true, "Color": null, @@ -126200,22 +130367,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://140383295631296", + "thumbnail": "rbxassetid://106665613932679", }, - "configName": "Huge Ooze Corgi", + "configName": "Huge Fireball Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e593c21e6e4ff662", + "hashShort": "557f39a2d5f94607", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://90451883201045", + "goldenThumbnail": "rbxassetid://114576749666110", "huge": true, - "indexDesc": "Found in the Slime Factory's breakable drops!", + "indexDesc": "Found in the Cannon Tycoon's boss chest!", "indexObtainable": true, - "name": "Huge Ooze Axolotl", + "name": "Huge Stunt Cat", "rarity": { "Announce": true, "Color": null, @@ -126228,22 +130395,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://131381022373439", + "thumbnail": "rbxassetid://80484506977971", }, - "configName": "Huge Ooze Axolotl", + "configName": "Huge Stunt Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9240cc699083a6b2", + "hashShort": "32f4025db210d225", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://95111624439547", + "goldenThumbnail": "rbxassetid://124889772980701", "huge": true, - "indexDesc": "Found in the Slime Factory's HUGE Chest!", + "indexDesc": "Found in the Cannon Tycoon's final egg!", "indexObtainable": true, - "name": "Huge Knight Slime", + "name": "Huge Stunt Corgi", "rarity": { "Announce": true, "Color": null, @@ -126256,26 +130423,26 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://93884562630486", + "thumbnail": "rbxassetid://132747851336356", }, - "configName": "Huge Knight Slime", + "configName": "Huge Stunt Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "56f5e8106f8f63d0", + "hashShort": "8c5b9a40dfa62103", }, { "category": "Huge", "collection": "Pets", "configData": { "animations": { - "jelly": true, + "flyHeightChange": 0.15, }, "fly": true, - "goldenThumbnail": "rbxassetid://70970220573725", + "goldenThumbnail": "rbxassetid://126005955826456", "huge": true, - "indexDesc": "Found in the Slime Factory's FRIEND Chest!", + "indexDesc": "Found in the Hellfire Gift Bag!", "indexObtainable": true, - "name": "Huge Jelly Butterfly", + "name": "Huge Torpedo Shepherd", "rarity": { "Announce": true, "Color": null, @@ -126288,22 +130455,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://119227116644693", + "thumbnail": "rbxassetid://82812436217592", }, - "configName": "Huge Jelly Butterfly", + "configName": "Huge Torpedo Shepherd", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "038b5c85a3c0694b", + "hashShort": "3c43d7d5839a38ba", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://90321619503950", + "goldenThumbnail": "rbxassetid://111208644414427", "huge": true, - "indexDesc": "Found in the Slime Factory's HUGE Race!", + "indexDesc": "Reward in the Cannon Tycoon's leaderboard contest!", "indexObtainable": true, - "name": "Huge Jelly Wizard", + "name": "Huge Crash Dummy Noob", "rarity": { "Announce": true, "Color": null, @@ -126316,25 +130483,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://84699945958141", + "thumbnail": "rbxassetid://138395333405462", }, - "configName": "Huge Jelly Wizard", + "configName": "Huge Crash Dummy Noob", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ce27f7f6b6cf537e", + "hashShort": "43b27699b74bdac7", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "animations": { - "jelly": true, - }, - "goldenThumbnail": "rbxassetid://96256726815151", - "huge": true, - "indexDesc": "Found in the Slime Forever Pack!", + "goldenThumbnail": "rbxassetid://91986863296560", + "indexDesc": "Found in the Hype Egg every update!", "indexObtainable": true, - "name": "Huge Jelly Hydra", + "name": "Titanic Party Panda", "rarity": { "Announce": true, "Color": null, @@ -126347,21 +130510,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://109899952808122", + "thumbnail": "rbxassetid://74514642411800", + "titanic": true, }, - "configName": "Huge Jelly Hydra", + "configName": "Titanic Party Panda", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "44eefe2aa2e5a872", + "hashShort": "7cc4479b0fe90a58", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Beast Egg!", + "goldenThumbnail": "rbxassetid://130862635898580", + "indexDesc": "Found in the Cannon Tycoon's boss chest!", "indexObtainable": true, - "name": "Titanic Warrior Beast", + "name": "Titanic Stunt Cat", "rarity": { "Announce": true, "Color": null, @@ -126374,225 +130538,240 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://131949076812775", + "thumbnail": "rbxassetid://128964854488748", "titanic": true, }, - "configName": "Titanic Warrior Beast", + "configName": "Titanic Stunt Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "61c6ed2ddf36f551", + "hashShort": "3c674cbcc9b92572", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://99831388939085", - "indexDesc": "Found in the Slime Factory's TITANIC Race!", - "indexObtainable": true, - "name": "Titanic Jelly Wizard", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://125800512820483", - "titanic": true, + "cachedPower": [ + 146240827766263, + 157725945342556, + 164520931237046, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968306213", + "name": "Plane Dragon", + "thumbnail": "rbxassetid://14968306296", }, - "configName": "Titanic Jelly Wizard", + "configName": "Plane Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "156516ac8b6ec083", + "dateModified": "2026-06-27T16:05:19.917Z", + "hashShort": "d22d28add8754245", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "jelly": true, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://104637774711049", - "indexDesc": "Found in the Slime Factory's TITANIC Chest!", - "indexObtainable": true, - "name": "Titanic Firegel Dragon", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://84658799668641", - "titanic": true, + "cachedPower": [ + 145390907509625, + 157088505150078, + 163564770948329, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968199768", + "name": "Crash Dummy Noob", + "thumbnail": "rbxassetid://14968199866", }, - "configName": "Titanic Firegel Dragon", + "configName": "Crash Dummy Noob", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9b3c8c1a92a1eb8a", + "dateModified": "2026-06-27T16:05:21.648Z", + "hashShort": "f65a6729352adc10", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "jelly": true, - }, "cachedPower": [ - 156700889370947, + 144510626614779, + 156428294478943, + 162574454941626, ], + "fly": true, "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://93577423067950", - "name": "Jelly Kitsune", - "thumbnail": "rbxassetid://95456916673175", + "goldenThumbnail": "rbxassetid://14968321593", + "name": "Rocket Shark", + "thumbnail": "rbxassetid://14968321747", }, - "configName": "Jelly Kitsune", + "configName": "Rocket Shark", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b34655f3e9104c4c", + "dateModified": "2026-06-27T16:05:21.712Z", + "hashShort": "e524e37451064766", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.025, - "flyHeightChange": 0, - "swerve": true, - "swerveAggression": 0.2, - "swerveMaxAngle": 60, - }, "cachedPower": [ - 156732024579798, + 148627715451079, + 159516111106168, + 167206179882463, ], - "fly": true, "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://137298465143386", - "name": "Nightmare Sludge", - "thumbnail": "rbxassetid://110329282024800", + "goldenThumbnail": "rbxassetid://14968346530", + "name": "Stunt Cat", + "thumbnail": "rbxassetid://14968346741", }, - "configName": "Nightmare Sludge", + "configName": "Stunt Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "84f5027ae07aba58", + "dateModified": "2026-06-27T16:05:23.871Z", + "hashShort": "849bb23096ee5afc", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "balloon": true, + "animations": { + "flyHeightChange": 0.15, + }, "cachedPower": [ - 156638513865296, + 146655043314062, + 158036607003405, + 164986923728319, ], "fly": true, "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://108093352634848", - "name": "Bubble Hydra", - "thumbnail": "rbxassetid://92688926133206", + "goldenThumbnail": "rbxassetid://14968354685", + "name": "Torpedo Shepherd", + "thumbnail": "rbxassetid://14968354807", }, - "configName": "Bubble Hydra", + "configName": "Torpedo Shepherd", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "bc0b8e0fdfe68ed3", + "dateModified": "2026-06-27T16:05:25.668Z", + "hashShort": "0e89653559ae1953", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 156669719159043, + 149557835078681, + 160213700826870, + 168252564463516, ], + "fly": true, "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://116522145853565", - "name": "Sticky Lamb", - "thumbnail": "rbxassetid://99020386453912", + "goldenThumbnail": "rbxassetid://14968237505", + "name": "Fireball Cat", + "thumbnail": "rbxassetid://14968237630", }, - "configName": "Sticky Lamb", + "configName": "Fireball Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9a7cedd2f9b7e249", + "dateModified": "2026-06-27T16:05:28.071Z", + "hashShort": "005b5ab8119a6462", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 156825220971977, + 147463156529377, + 158642691914892, + 165896051095550, ], "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://106627063281390", - "name": "Slimezilla", - "thumbnail": "rbxassetid://86551676231352", + "goldenThumbnail": "rbxassetid://14968347124", + "name": "Stunt Corgi", + "thumbnail": "rbxassetid://14968347214", }, - "configName": "Slimezilla", + "configName": "Stunt Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "93c3e8810a54b8c7", + "dateModified": "2026-06-27T16:05:28.110Z", + "hashShort": "fe95321a9f49e67a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 156607273410647, + 144954697096512, + 156761347340243, + 163074034233576, ], "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://124191676341752", - "name": "Rave Slime", - "thumbnail": "rbxassetid://112924855201550", + "goldenThumbnail": "rbxassetid://83687861870881", + "name": "Stunt Raccoon", + "thumbnail": "rbxassetid://122189989972498", }, - "configName": "Rave Slime", + "configName": "Stunt Raccoon", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "39cf38a885565380", + "dateModified": "2026-06-27T16:05:42.442Z", + "hashShort": "20bd400a109294e3", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 156575997715770, + 145819531268854, + 157409972969500, + 164046972677461, ], "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://119512109897214", - "name": "Ooze Cat", - "thumbnail": "rbxassetid://137538826815611", + "goldenThumbnail": "rbxassetid://127439243988119", + "name": "Turbo Cheetah", + "thumbnail": "rbxassetid://116697842764654", }, - "configName": "Ooze Cat", + "configName": "Turbo Cheetah", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4c740a1386b92e69", + "dateModified": "2026-06-27T16:05:42.438Z", + "hashShort": "464373ba31a76276", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "jelly": true, + "fly": true, + "goldenThumbnail": "rbxassetid://117737726684564", + "huge": true, + "indexDesc": "Found in the Cannon Tycoon's Pack!", + "indexObtainable": true, + "name": "Huge Wild Galaxy Agony", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, }, - "goldenThumbnail": "rbxassetid://88632451233362", + "thumbnail": "rbxassetid://126232720900762", + }, + "configName": "Huge Wild Galaxy Agony", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "a1f41b50c7ed23af", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://73337213578536", "huge": true, - "indexDesc": "Found in the Slime Factory's HUGE Chest!", + "indexDesc": "Found in the Cannon Tycoon's Part 2 frost boss chest while corrupt!", "indexObtainable": true, - "name": "Huge Jelly Kitsune", + "name": "Huge Wild Corrupt Agony", "rarity": { "Announce": true, "Color": null, @@ -126605,22 +130784,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://98444936936302", + "thumbnail": "rbxassetid://83829095123136", }, - "configName": "Huge Jelly Kitsune", + "configName": "Huge Wild Corrupt Agony", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d678cd0476d398d0", + "hashShort": "34a29e8360849a42", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://99135670116151", + "fly": true, + "goldenThumbnail": "rbxassetid://89869158958989", "huge": true, - "indexDesc": "Found in the Slime Factory's FRIEND Chest!", + "indexDesc": "Found in the Cannon Tycoon's Part 2 frost boss chest", "indexObtainable": true, - "name": "Huge Slimezilla", + "name": "Huge Wild Frost Agony", "rarity": { "Announce": true, "Color": null, @@ -126633,22 +130813,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://133814850196289", + "thumbnail": "rbxassetid://80433316929327", }, - "configName": "Huge Slimezilla", + "configName": "Huge Wild Frost Agony", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f0f301f1b606e9fd", + "hashShort": "1247cc4dcc96df29", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://71208606325883", + "fly": true, + "goldenThumbnail": "rbxassetid://86115039165426", "huge": true, - "indexDesc": "Found in the Slime Factory's breakable drops!", + "indexDesc": "Found in the Cannon Tycoon's final egg!", "indexObtainable": true, - "name": "Huge Sticky Lamb", + "name": "Huge Parachute Monkey", "rarity": { "Announce": true, "Color": null, @@ -126661,22 +130842,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://135749996470461", + "thumbnail": "rbxassetid://137651133282362", }, - "configName": "Huge Sticky Lamb", + "configName": "Huge Parachute Monkey", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b69ee81cde88f33e", + "hashShort": "39f96e7fcbc45cf9", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://81127935620682", + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in the Slime Factory's final egg!", + "indexDesc": "Found in the Exclusive Matryoshka Egg!", "indexObtainable": true, - "name": "Huge Rave Slime", + "matryoshka": true, + "name": "Huge Matryoshka Dino", "rarity": { "Announce": true, "Color": null, @@ -126689,22 +130871,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://118307691118910", + "thumbnail": "rbxassetid://130741332412242", }, - "configName": "Huge Rave Slime", + "configName": "Huge Matryoshka Dino", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f2669905dc17fdef", + "hashShort": "4b617918045c2258", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://128255522206108", + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in the Slime Factory's Slime Machine!", + "indexDesc": "Found in the Exclusive Matryoshka Egg!", "indexObtainable": true, - "name": "Huge Ooze Cat", + "matryoshka": true, + "name": "Huge Matryoshka Capybara", "rarity": { "Announce": true, "Color": null, @@ -126717,22 +130900,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://94416745584783", + "thumbnail": "rbxassetid://135978924000516", }, - "configName": "Huge Ooze Cat", + "configName": "Huge Matryoshka Capybara", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c6785fdb6a2fdc82", + "hashShort": "20ea8eed2cfd7258", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://114337541185433", + "goldenThumbnail": "rbxassetid://96870501648318", "huge": true, - "indexDesc": "Found in the Slime Factory's Slime Gift!", + "indexDesc": "Found by using the Breakable Mayhem Enchant!", "indexObtainable": true, - "name": "Huge Spotted Elephant", + "name": "Huge Bobcat", "rarity": { "Announce": true, "Color": null, @@ -126745,24 +130928,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://109762155802208", + "thumbnail": "rbxassetid://117053043329448", }, - "configName": "Huge Spotted Elephant", + "configName": "Huge Bobcat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "22707ff6de7848c6", + "hashShort": "ea7745270e9d93e8", }, { "category": "Huge", "collection": "Pets", "configData": { - "balloon": true, "fly": true, - "goldenThumbnail": "rbxassetid://76778149322242", + "goldenThumbnail": "rbxassetid://135359972353104", "huge": true, - "indexDesc": "Found in the Slime Forever Pack!", + "indexDesc": "Reward in the Cannon Tycoon's leaderboard contest!", "indexObtainable": true, - "name": "Huge Bubble Hydra", + "name": "Huge Jetpack Tiger", "rarity": { "Announce": true, "Color": null, @@ -126775,30 +130957,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://88580020696117", + "thumbnail": "rbxassetid://124866391707961", }, - "configName": "Huge Bubble Hydra", + "configName": "Huge Jetpack Tiger", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "aca52312bb84e1bc", + "hashShort": "50b95f55ea6fbe74", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.025, - "flyHeightChange": 0, - "swerve": true, - "swerveAggression": 0.2, - "swerveMaxAngle": 60, - }, "fly": true, - "goldenThumbnail": "rbxassetid://75241948308837", + "goldenThumbnail": "rbxassetid://132365962948483", "huge": true, - "indexDesc": "Found in the Slime Factory's HUGE Race!", + "indexDesc": "Found in The Forever Pack!", "indexObtainable": true, - "name": "Huge Nightmare Sludge", + "name": "Huge Nyan Cat", "rarity": { "Announce": true, "Color": null, @@ -126811,29 +130986,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://100374100910394", + "thumbnail": "rbxassetid://111205928887511", }, - "configName": "Huge Nightmare Sludge", + "configName": "Huge Nyan Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "95d73f244182f5c1", + "hashShort": "7c9e8764bf9dd875", }, { "category": "Titanic", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.025, - "flyHeightChange": 0, - "swerve": true, - "swerveAggression": 0.2, - "swerveMaxAngle": 60, - }, "fly": true, - "goldenThumbnail": "rbxassetid://101911165516512", - "indexDesc": "Found in the Slime Factory's TITANIC Race!", + "goldenThumbnail": "rbxassetid://119488969070522", + "indexDesc": "Found in the Cannon Tycoon's Part 2 boss chest!", "indexObtainable": true, - "name": "Titanic Nightmare Sludge", + "name": "Titanic Wild Frost Agony", "rarity": { "Announce": true, "Color": null, @@ -126846,25 +131014,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://92769377018385", + "thumbnail": "rbxassetid://116274982839546", "titanic": true, }, - "configName": "Titanic Nightmare Sludge", + "configName": "Titanic Wild Frost Agony", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "df870038d2e71f2f", + "hashShort": "2a7551b4ab6c291b", }, { "category": "Titanic", "collection": "Pets", "configData": { - "animations": { - "jelly": true, - }, - "goldenThumbnail": "rbxassetid://110507934929501", - "indexDesc": "Found in the Slime Factory's TITANIC Chest!", + "fly": true, + "goldenThumbnail": "rbxassetid://113375608897979", + "indexDesc": "Found in the Cannon Tycoon's Part 2 boss chest while corrupt!", "indexObtainable": true, - "name": "Titanic Jelly Kitsune", + "name": "Titanic Wild Corrupt Agony", "rarity": { "Announce": true, "Color": null, @@ -126877,22 +131043,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://80481264507529", + "thumbnail": "rbxassetid://103464099228930", "titanic": true, }, - "configName": "Titanic Jelly Kitsune", + "configName": "Titanic Wild Corrupt Agony", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "59bc0e656d7ba168", + "hashShort": "138d888a9b7acf8a", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://107720130870416", - "indexDesc": "Found in the Slime Factory's Slime Machine!", + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Matryoshka Egg!", "indexObtainable": true, - "name": "Titanic Ooze Cat", + "matryoshka": true, + "name": "Titanic Matryoshka Cat", "rarity": { "Announce": true, "Color": null, @@ -126905,170 +131072,204 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://114761957372566", + "thumbnail": "rbxassetid://113135543154400", "titanic": true, }, - "configName": "Titanic Ooze Cat", + "configName": "Titanic Matryoshka Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "72814a040c9fd9c3", + "hashShort": "37c377aab8dfbf73", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 155097789697603, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968225483", - "name": "Easter Cat", - "thumbnail": "rbxassetid://14968225646", + "goldenThumbnail": "rbxassetid://105026104970425", + "indexDesc": "Found by using the Breakable Mayhem Enchant!", + "indexObtainable": true, + "name": "Titanic Bobcat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://93912731395332", + "titanic": true, }, - "configName": "Easter Cat", + "configName": "Titanic Bobcat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "773f5c3870c13d5a", + "hashShort": "c293be1e097c890a", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 156700889370947, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968350892", - "name": "The Easter Bunny", - "thumbnail": "rbxassetid://14968350999", + "fly": true, + "goldenThumbnail": "rbxassetid://91708546556743", + "indexDesc": "Found in The Forever Pack!", + "indexObtainable": true, + "name": "Titanic Nyan Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://102693200913432", + "titanic": true, }, - "configName": "The Easter Bunny", + "configName": "Titanic Nyan Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "dfb1314dded7744e", + "hashShort": "e6ef4ef5dbb1c33c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 155425910693599, + 149374598212664, + 160076273177357, + 168046422989247, ], "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968226274", - "name": "Easter Lamb", - "thumbnail": "rbxassetid://14968226361", + "goldenThumbnail": "rbxassetid://14968337458", + "name": "Springy Axolotl", + "thumbnail": "rbxassetid://14968337554", }, - "configName": "Easter Lamb", + "configName": "Springy Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "27ff088d7f2f189b", + "dateModified": "2026-06-27T16:05:19.916Z", + "hashShort": "a015c940b2df9cb6", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 155262335584523, + 149739719630783, + 160350114240947, + 168457184584631, ], + "fly": true, "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968226022", - "name": "Easter Fox", - "thumbnail": "rbxassetid://14968226173", + "goldenThumbnail": "rbxassetid://14968294811", + "name": "Parachute Monkey", + "thumbnail": "rbxassetid://14968294961", }, - "configName": "Easter Fox", + "configName": "Parachute Monkey", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e66b1fcdb34102b4", + "dateModified": "2026-06-27T16:05:21.717Z", + "hashShort": "7a578b567ea0866d", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 156387599025515, + 150277455398384, + 160753416066647, + 169062137323182, ], "fly": true, "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968224586", - "name": "Easter Agony", - "thumbnail": "rbxassetid://14968224861", + "goldenThumbnail": "rbxassetid://14968360181", + "name": "Wild Fire Agony", + "thumbnail": "rbxassetid://14968360279", }, - "configName": "Easter Agony", + "configName": "Wild Fire Agony", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6a5226338a195904", + "dateModified": "2026-06-27T16:05:23.817Z", + "hashShort": "4f0c266dcf472b0e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 157010679192346, + 150099510618483, + 160619957481721, + 168861949445793, ], + "fly": true, "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968225772", - "name": "Easter Dominus", - "thumbnail": "rbxassetid://14968225893", + "goldenThumbnail": "rbxassetid://14968360411", + "name": "Wild Frost Agony", + "thumbnail": "rbxassetid://14968360564", }, - "configName": "Easter Dominus", + "configName": "Wild Frost Agony", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c516c277b50363ed", + "dateModified": "2026-06-27T16:05:23.812Z", + "hashShort": "ee52f524644634f6", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 155750193929112, + 149920271683361, + 160485528280380, + 168660305643781, ], + "fly": true, "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968179563", - "name": "Basket Bunny", - "thumbnail": "rbxassetid://14968179716", + "goldenThumbnail": "rbxassetid://14968267030", + "name": "Jetpack Tiger", + "thumbnail": "rbxassetid://14968267180", }, - "configName": "Basket Bunny", + "configName": "Jetpack Tiger", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "dbeeeaa66b633d2f", + "dateModified": "2026-06-27T16:05:25.641Z", + "hashShort": "492bfac16bc3a3b8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - }, "cachedPower": [ - 157317045851747, + 150454124577501, + 160885917950984, + 169260890149688, ], "fly": true, "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968224942", - "name": "Easter Angelus", - "thumbnail": "rbxassetid://14968225010", + "goldenThumbnail": "rbxassetid://91942668438575", + "name": "Wild Galaxy Agony", + "thumbnail": "rbxassetid://126907949611923", }, - "configName": "Easter Angelus", + "configName": "Wild Galaxy Agony", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7c2df9c5195e61d3", + "dateModified": "2026-06-27T16:05:42.443Z", + "hashShort": "39fd790be851d355", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, + "exclusiveLevel": 1, "goldenThumbnail": "", - "name": "Patchwork Teddy Bear", + "matryoshka": true, + "name": "Matryoshka Capybara", "rarity": { "Announce": true, "Color": null, @@ -127081,20 +131282,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://91381328451312", + "thumbnail": "rbxassetid://114701135093781", }, - "configName": "Patchwork Teddy Bear", + "configName": "Matryoshka Capybara", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b2c5fa8a934da1fe", + "hashShort": "455c99ccb35493e9", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, + "exclusiveLevel": 3, "goldenThumbnail": "", - "name": "Patchwork Bunny", + "matryoshka": true, + "name": "Matryoshka Dino", "rarity": { "Announce": true, "Color": null, @@ -127107,12 +131309,12 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://105394205558336", + "thumbnail": "rbxassetid://89272517128125", }, - "configName": "Patchwork Bunny", + "configName": "Matryoshka Dino", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ef4b024278561e48", + "hashShort": "fcc9c9dccafe6677", }, { "category": "Uncategorized", @@ -127120,7 +131322,8 @@ Ground Slam - Pet will damage breakables in a large area!", "configData": { "exclusiveLevel": 2, "goldenThumbnail": "", - "name": "Patchwork Yeti", + "matryoshka": true, + "name": "Matryoshka Fox", "rarity": { "Announce": true, "Color": null, @@ -127133,73 +131336,25 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://83243218585764", - }, - "configName": "Patchwork Yeti", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "61f66f77ebf3a938", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 156070728141488, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://102445070854989", - "name": "Diamond Bunny", - "thumbnail": "rbxassetid://135890567619584", - }, - "configName": "Diamond Bunny", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a39eb995d343c5a9", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 156070728141488, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://85379066039300", - "name": "Marshmallow Kitsune", - "thumbnail": "rbxassetid://112006495503643", + "thumbnail": "rbxassetid://92313476700380", }, - "configName": "Marshmallow Kitsune", + "configName": "Matryoshka Fox", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a61ee532b7c8a097", + "hashShort": "b1c7ab3ddfb019dd", }, { "category": "Gargantuan", "collection": "Pets", "configData": { - "animations": { - "customAnimations": true, - "idleActionAnimations": [ - [ - "CorgiJumping", - 0.5, - ], - ], - "ridingJumpPower": 125, - }, - "fly": true, - "flyingTitanic": true, - "flyingTitanicAlwaysFly": true, "gargantuan": true, - "goldenThumbnail": "rbxassetid://95582989925706", - "indexDesc": "Earned from the Exclusive Raffle! + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Matryoshka Egg! Ground Slam - Pet will damage breakables in a large area!", "indexObtainable": true, - "name": "Gargantuan Starfall Dragon", + "matryoshka": true, + "name": "Gargantuan Matryoshka Bear", "rarity": { "Announce": true, "Color": null, @@ -127212,27 +131367,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://106256354379795", + "thumbnail": "rbxassetid://96710812218566", }, - "configName": "Gargantuan Starfall Dragon", + "configName": "Gargantuan Matryoshka Bear", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "921026eba093e9e1", + "hashShort": "c5b58f8fbbd58346", }, { - "category": "Gargantuan", + "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "flyingTitanic": true, - "flyingTitanicAlwaysFly": true, - "gargantuan": true, - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Patchwork Egg! - -Ground Slam - Pet will damage breakables in a large area!", + "goldenThumbnail": "rbxassetid://85649029224909", + "huge": true, + "indexDesc": "Reward in the 2025 Holographic Clan Battle!", "indexObtainable": true, - "name": "Gargantuan Patchwork Agony", + "name": "Huge Holographic Monkey", "rarity": { "Announce": true, "Color": null, @@ -127245,22 +131395,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://90326669323204", + "thumbnail": "rbxassetid://77505723512124", }, - "configName": "Gargantuan Patchwork Agony", + "configName": "Huge Holographic Monkey", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "636711d0ca9815be", + "hashShort": "526c20ababd0b249", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://129117189793278", + "goldenThumbnail": "rbxassetid://127420449429711", "huge": true, - "indexDesc": "Found in the MVP Chest!", + "indexDesc": "Found in the Exclusive Valentine's Present!", "indexObtainable": true, - "name": "Huge Exquisite Elephant", + "name": "Huge Valentine's Dominus", "rarity": { "Announce": true, "Color": null, @@ -127273,22 +131423,26 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://72880983476482", + "thumbnail": "rbxassetid://79026289241532", }, - "configName": "Huge Exquisite Elephant", + "configName": "Huge Valentines Dominus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e23a5da76d99b5f9", + "hashShort": "c8acda0546b76d90", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://127977221119246", + "animations": { + "spinZ": true, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://88177467277036", "huge": true, - "indexDesc": "Earned from logging in during our 2025 Easter Event!", + "indexDesc": "Found in the Exclusive Valentine's Present!", "indexObtainable": true, - "name": "Huge Easter Lamb", + "name": "Huge Valentine's Angelus", "rarity": { "Announce": true, "Color": null, @@ -127301,22 +131455,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://122710351430317", + "thumbnail": "rbxassetid://74709418271997", }, - "configName": "Huge Easter Lamb", + "configName": "Huge Valentines Angelus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "780df3593064dce4", + "hashShort": "fe82c1a552a98c7a", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://98964255956115", + "goldenThumbnail": "rbxassetid://74187995856303", "huge": true, - "indexDesc": "Earned from 2025 Easter Diamond Egg!", + "indexDesc": "Found in the Valentine's event leaderboard contest!", "indexObtainable": true, - "name": "Huge Diamond Bunny", + "name": "Huge Love Lion", "rarity": { "Announce": true, "Color": null, @@ -127329,22 +131483,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://100376851450682", + "thumbnail": "rbxassetid://123099034281785", }, - "configName": "Huge Diamond Bunny", + "configName": "Huge Love Lion", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6885f31fc2431817", + "hashShort": "242b9570d2c00e4b", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "", + "goldenThumbnail": "rbxassetid://140234251678055", "huge": true, - "indexDesc": "Found in the Exclusive Patchwork Egg!", + "indexDesc": "Found in the Valentine's event Forever Pack!", "indexObtainable": true, - "name": "Huge Patchwork Teddy Bear", + "name": "Huge Rose Cat", "rarity": { "Announce": true, "Color": null, @@ -127357,22 +131511,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://101792961428557", + "thumbnail": "rbxassetid://103846288511073", }, - "configName": "Huge Patchwork Teddy Bear", + "configName": "Huge Rose Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6d3e87919698bfb6", + "hashShort": "ea6f8bf5f202fba5", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "", + "fly": true, + "goldenThumbnail": "rbxassetid://82277453440240", "huge": true, - "indexDesc": "Found in the Exclusive Patchwork Egg!", + "indexDesc": "Found in the Valentine's event eggs!", "indexObtainable": true, - "name": "Huge Patchwork Bunny", + "name": "Huge Love Corgi", "rarity": { "Announce": true, "Color": null, @@ -127385,26 +131540,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://120785546705705", + "thumbnail": "rbxassetid://112650153241543", }, - "configName": "Huge Patchwork Bunny", + "configName": "Huge Love Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b2a06bc205b819a3", + "hashShort": "687f25de4ecea547", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://76331145902175", + "goldenThumbnail": "rbxassetid://77123412302383", "huge": true, - "indexDesc": "Earned by subscribing during the FREE Huge Event!", + "indexDesc": "Found in the Valentine's event eggs!", "indexObtainable": true, - "name": "Huge Easter Angelus", + "name": "Huge Valentine's Bear", "rarity": { "Announce": true, "Color": null, @@ -127417,22 +131568,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://102295861032789", + "thumbnail": "rbxassetid://140051319290107", }, - "configName": "Huge Easter Angelus", + "configName": "Huge Valentines Bear", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a56e4519cd94eca6", + "hashShort": "b0799b9d61dd2e63", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://120687274126844", + "goldenThumbnail": "rbxassetid://102569440945030", "huge": true, - "indexDesc": "Found in the 2025 Easter Event Egg Hunt!", + "indexDesc": "Found in the Love Gift Bag!", "indexObtainable": true, - "name": "Huge Basket Bunny", + "name": "Huge Valentine's Unicorn", "rarity": { "Announce": true, "Color": null, @@ -127445,22 +131596,24 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://75145545226238", + "thumbnail": "rbxassetid://87559926254835", }, - "configName": "Huge Basket Bunny", + "configName": "Huge Valentines Unicorn", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4ca27d0fbe6257fe", + "hashShort": "1167d34deaaed850", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://105545350458143", - "huge": true, - "indexDesc": "Dropped by the Easter Bunny in the 2025 Easter Event!", + "fly": true, + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "goldenThumbnail": "rbxassetid://80355751274594", + "indexDesc": "Found in the Exclusive Valentine's Present!", "indexObtainable": true, - "name": "Huge Chocolate Bunny", + "name": "Titanic M-14 PROTOTYPE", "rarity": { "Announce": true, "Color": null, @@ -127473,23 +131626,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://79481017800505", + "thumbnail": "rbxassetid://99810281877777", + "titanic": true, }, - "configName": "Huge Chocolate Bunny", + "configName": "Titanic M-14 PROTOTYPE", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c21f537148cd9930", + "hashShort": "09c00c1a829fe0cf", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://71511929489942", - "huge": true, - "indexDesc": "Found in the 2025 Easter Event Secret Room!", + "goldenThumbnail": "rbxassetid://120237492042364", + "indexDesc": "Found in the Valentine's event eggs!", "indexObtainable": true, - "name": "Huge Spring Griffin", + "name": "Titanic Love Corgi", "rarity": { "Announce": true, "Color": null, @@ -127502,22 +131655,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://138950017862417", + "thumbnail": "rbxassetid://124293758484647", + "titanic": true, }, - "configName": "Huge Spring Griffin", + "configName": "Titanic Love Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "09eacca7bdb93071", + "hashShort": "dd41e79418302593", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://71254647124343", - "huge": true, - "indexDesc": "Found in the 2025 Easter Event final egg!", - "indexObtainable": true, - "name": "Huge Marshmallow Kitsune", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968275024", + "name": "Lovemelon", "rarity": { "Announce": true, "Color": null, @@ -127530,22 +131682,85 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://95357265380757", + "thumbnail": "rbxassetid://14968275107", }, - "configName": "Huge Marshmallow Kitsune", + "configName": "Lovemelon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1a48fb45d85b901b", + "hashShort": "f70f1ecdb1697f8b", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://96462371681467", - "huge": true, - "indexDesc": "Reward in the 2025 Pixel Chick Clan Battle!", - "indexObtainable": true, - "name": "Huge Pixel Chick", + "cachedPower": [ + 149374598212664, + 160076273177357, + 168046422989247, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968356962", + "name": "Valentine's Bear", + "thumbnail": "rbxassetid://14968357106", + }, + "configName": "Valentines Bear", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:23.818Z", + "hashShort": "6d75fbe36018121a", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 150454124577501, + 160885917950984, + 169260890149688, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968274808", + "name": "Love Lion", + "thumbnail": "rbxassetid://14968274956", + }, + "configName": "Love Lion", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:23.826Z", + "hashShort": "0dac48d1a983d692", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 149739719630783, + 160350114240947, + 168457184584631, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://18882337450", + "name": "Love Cow", + "thumbnail": "rbxassetid://18882337248", + }, + "configName": "Love Cow", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:40.155Z", + "hashShort": "116291e8102181e9", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "spinZ": true, + }, + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "rbxassetid://131927181078806", + "name": "Valentine's Angelus", "rarity": { "Announce": true, "Color": null, @@ -127558,23 +131773,38 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://109348174675332", + "thumbnail": "rbxassetid://76082507412985", }, - "configName": "Huge Pixel Chick", + "configName": "Valentines Angelus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d78b8dd3753b096b", + "hashShort": "fd0addb5731c0596", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://88753970992583", - "huge": true, - "indexDesc": "Found in the Easter Forever Pack!", - "indexObtainable": true, - "name": "Huge Easter Agony", + "cachedPower": [ + 151148402740781, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://100856494247409", + "name": "Valentine's Unicorn", + "thumbnail": "rbxassetid://71712994105333", + }, + "configName": "Valentines Unicorn", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "47fddcf998b52690", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://132097085188024", + "name": "Valentine's Dominus", "rarity": { "Announce": true, "Color": null, @@ -127587,23 +131817,124 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://117110951312046", + "thumbnail": "rbxassetid://130758694104529", }, - "configName": "Huge Easter Agony", + "configName": "Valentines Dominus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8b55a4cb930c0a16", + "hashShort": "d256561277b75457", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 148245610976160, + 159229532749979, + 166776312348180, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://96013114640415", + "name": "Pink Poodle", + "thumbnail": "rbxassetid://139531908890965", + }, + "configName": "Pink Poodle", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:42.446Z", + "hashShort": "b4248e905a6f92ec", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 149003986041498, + 159798314048982, + 167629484296685, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://110397938096589", + "name": "Cupcake Hamster", + "thumbnail": "rbxassetid://102832017803256", + }, + "configName": "Cupcake Hamster", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:42.447Z", + "hashShort": "cd63f18e14d1d40e", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 150099510618483, + 160619957481721, + 168861949445793, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://70385382173968", + "name": "Valentine's Owl", + "thumbnail": "rbxassetid://122568617432041", + }, + "configName": "Valentines Owl", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:42.449Z", + "hashShort": "8ee7b2706df51c2e", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 148627715451079, + 159516111106168, + 167206179882463, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://133678056932154", + "name": "Valentine's Bee", + "thumbnail": "rbxassetid://136715267522591", + }, + "configName": "Valentines Bee", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:42.446Z", + "hashShort": "2ca7872a4b6b2d73", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 150803708381393, + 161148105803904, + 169654171929068, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://109927584502797", + "name": "Rose Cat", + "thumbnail": "rbxassetid://133173780447865", + }, + "configName": "Rose Cat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:42.448Z", + "hashShort": "ba8e87fb472afc35", }, { "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://139189131118389", + "goldenThumbnail": "rbxassetid://105863710772900", "huge": true, - "indexDesc": "Found in the Forever Pack!", + "indexDesc": "Found in the Valentine's event eggs!", "indexObtainable": true, - "name": "Huge Sea Dragon", + "name": "Huge Heartbreak Fairy", "rarity": { "Announce": true, "Color": null, @@ -127616,21 +131947,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://109192796689135", + "thumbnail": "rbxassetid://129589212875010", }, - "configName": "Huge Sea Dragon", + "configName": "Huge Heartbreak Fairy", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ddc6e18c154e92cb", + "hashShort": "e4d31594ae6adf23", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://114443706250410", - "indexDesc": "Earned from 2025 Easter Diamond Egg!", + "goldenThumbnail": "rbxassetid://130278222124258", + "huge": true, + "indexDesc": "Found in the Valentine's event eggs!", "indexObtainable": true, - "name": "Titanic Diamond Bunny", + "name": "Huge Loveserker", "rarity": { "Announce": true, "Color": null, @@ -127643,25 +131975,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://118509963937429", - "titanic": true, + "thumbnail": "rbxassetid://100447142740271", }, - "configName": "Titanic Diamond Bunny", + "configName": "Huge Loveserker", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "db90719a1d9fbfcd", + "hashShort": "64d931b92e779cb3", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "flyingTitanic": true, - "flyingTitanicAlwaysFly": true, - "goldenThumbnail": "rbxassetid://78230641053757", - "indexDesc": "Earned from the Exclusive Raffle!", + "goldenThumbnail": "rbxassetid://70688409780639", + "huge": true, + "indexDesc": "Found in the Valentine's event eggs when Tower Rebirth Tokens are used!", "indexObtainable": true, - "name": "Titanic Starfall Dragon", + "name": "Huge Shattered Heart Agony", "rarity": { "Announce": true, "Color": null, @@ -127674,22 +132004,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://70374143407469", - "titanic": true, + "thumbnail": "rbxassetid://129768641287127", }, - "configName": "Titanic Starfall Dragon", + "configName": "Huge Shattered Heart Agony", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d6814eec96922c70", + "hashShort": "3fb5673dd313e252", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Patchwork Egg!", + "goldenThumbnail": "rbxassetid://103926492701156", + "huge": true, + "indexDesc": "Earned from Tower Tycoon's huge raffles!", "indexObtainable": true, - "name": "Titanic Patchwork Capybara", + "name": "Huge Valentine's Axolotl", "rarity": { "Announce": true, "Color": null, @@ -127702,23 +132032,28 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://94494477823308", - "titanic": true, + "thumbnail": "rbxassetid://92646115385136", }, - "configName": "Titanic Patchwork Capybara", + "configName": "Huge Valentines Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "be6e538edf38554c", + "hashShort": "03f0ddf29ef65352", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { + "animations": { + "flyHeight": 1, + "flyHeightChange": 4, + "flySpeed": 0.4, + }, "fly": true, - "goldenThumbnail": "rbxassetid://95768190801144", - "indexDesc": "Found in the Forever Pack!", + "goldenThumbnail": "rbxassetid://73592474964251", + "huge": true, + "indexDesc": "Found in the Valentine's event leaderboard contest!", "indexObtainable": true, - "name": "Titanic Sea Dragon", + "name": "Huge Raining Love Dog", "rarity": { "Announce": true, "Color": null, @@ -127731,22 +132066,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://97419954429083", - "titanic": true, + "thumbnail": "rbxassetid://73797455811877", }, - "configName": "Titanic Sea Dragon", + "configName": "Huge Raining Love Dog", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4f15f6e255cbde5b", + "hashShort": "d95097d6de9eca71", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://90594118894458", - "indexDesc": "Found in the MVP Chest!", + "goldenThumbnail": "rbxassetid://76058926787368", + "huge": true, + "indexDesc": "Found in the Valentine's event Forever Pack!", "indexObtainable": true, - "name": "Titanic Exquisite Elephant", + "name": "Huge Love Peacock", "rarity": { "Announce": true, "Color": null, @@ -127759,22 +132094,77 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://97422903795997", - "titanic": true, + "thumbnail": "rbxassetid://126019438810546", }, - "configName": "Titanic Exquisite Elephant", + "configName": "Huge Love Peacock", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2869ac24315d6cbc", + "hashShort": "ddc036fadd8502fc", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "", + "huge": true, + "indexDesc": "Found in the Exclusive Jurassic Egg!", + "indexObtainable": true, + "name": "Huge Jurassic Crocodile", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://116989921255882", + }, + "configName": "Huge Jurassic Crocodile", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "da3ffbcbe8c24b7e", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "", + "huge": true, + "indexDesc": "Found in the Exclusive Jurassic Egg!", + "indexObtainable": true, + "name": "Huge Jurassic Beaver", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://97754526096215", + }, + "configName": "Huge Jurassic Beaver", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "d901a9e5bd57b83f", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://107802361645994", - "indexDesc": "Found in the 2025 Easter Event final egg!", + "goldenThumbnail": "rbxassetid://128784734873882", + "indexDesc": "Found in the Valentine's event eggs!", "indexObtainable": true, - "name": "Titanic Easter Cat", + "name": "Titanic Loveserker", "rarity": { "Announce": true, "Color": null, @@ -127787,22 +132177,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://122516564229104", + "thumbnail": "rbxassetid://134671434987896", "titanic": true, }, - "configName": "Titanic Easter Cat", + "configName": "Titanic Loveserker", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f57c93201a8661a3", + "hashShort": "376b587ad686aab2", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://113674085310632", - "indexDesc": "Earned from 2025 Easter Diamond Egg!", + "goldenThumbnail": "rbxassetid://113009280752079", + "indexDesc": "Earned from Tower Tycoon's huge raffles!", "indexObtainable": true, - "name": "Titanic Luxe Axolotl", + "name": "Titanic Valentine's Axolotl", "rarity": { "Announce": true, "Color": null, @@ -127815,249 +132205,235 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://75796665600934", + "thumbnail": "rbxassetid://123399141850216", "titanic": true, }, - "configName": "Titanic Luxe Axolotl", + "configName": "Titanic Valentines Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9914b6472122c866", + "hashShort": "bef675756158f70d", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 157544619500675, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968337193", - "name": "Spring Griffin", - "thumbnail": "rbxassetid://14968337328", + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Jurassic Egg!", + "indexObtainable": true, + "name": "Titanic Jurassic Feline", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://129218443079434", + "titanic": true, }, - "configName": "Spring Griffin", + "configName": "Titanic Jurassic Feline", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8118313b7d67793c", + "hashShort": "e1d405914aa6f0e8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 157919806559577, + 150454124577501, + 160885917950984, + 169260890149688, ], "fly": true, "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968278302", - "name": "Marshmallow Agony", - "thumbnail": "rbxassetid://14968278365", + "goldenThumbnail": "rbxassetid://108341702816726", + "name": "Heartbreak Fairy", + "thumbnail": "rbxassetid://138024894421618", }, - "configName": "Marshmallow Agony", + "configName": "Heartbreak Fairy", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e2629bd80eb355a1", + "dateModified": "2026-06-27T16:05:42.450Z", + "hashShort": "a6456bbbb10d07ce", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 157770340426349, + 150099510618483, + 160619957481721, + 168861949445793, ], "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968294237", - "name": "Painted Cat", - "thumbnail": "rbxassetid://14968294340", + "goldenThumbnail": "rbxassetid://129518008885595", + "name": "Valentine's Axolotl", + "thumbnail": "rbxassetid://82287408719437", }, - "configName": "Painted Cat", + "configName": "Valentines Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "44599814c31f0016", + "dateModified": "2026-06-27T16:05:42.450Z", + "hashShort": "03a685b5df7bfba1", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 157620064174623, + 149003986041498, + 159798314048982, + 167629484296685, ], "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968225200", - "name": "Easter Axolotl", - "thumbnail": "rbxassetid://14968225352", + "goldenThumbnail": "rbxassetid://86400756511805", + "name": "Valentine's Sloth", + "thumbnail": "rbxassetid://126268185920724", }, - "configName": "Easter Axolotl", + "configName": "Valentines Sloth", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f4c51c8713e73ee3", + "dateModified": "2026-06-27T16:05:42.451Z", + "hashShort": "c5e1b8fc314ad2e4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 157468968974702, + 151148402740781, + 161406626573444, + 170041953083378, ], "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968226812", - "name": "Egg Chick", - "thumbnail": "rbxassetid://14968227020", + "goldenThumbnail": "rbxassetid://70706051226604", + "name": "Love Peacock", + "thumbnail": "rbxassetid://138181621351068", }, - "configName": "Egg Chick", + "configName": "Love Peacock", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d2f75b04b45b081f", + "dateModified": "2026-06-27T16:05:42.451Z", + "hashShort": "0ee8c19a287f36f4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 157845174211503, + 150803708381393, + 161148105803904, + 169654171929068, ], "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968226541", - "name": "Easter Yeti", - "thumbnail": "rbxassetid://14968226666", + "goldenThumbnail": "rbxassetid://71675287519496", + "name": "Mr. Love Cat", + "thumbnail": "rbxassetid://111640322548502", }, - "configName": "Easter Yeti", + "configName": "Mr. Love Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b75a271d45751f42", + "dateModified": "2026-06-27T16:05:42.452Z", + "hashShort": "ca8588ae04bd6539", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 157695304113789, + 151488342543396, + 161661581425406, + 170424385361320, ], "fly": true, "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://14968336998", - "name": "Spring Bee", - "thumbnail": "rbxassetid://14968337103", + "goldenThumbnail": "rbxassetid://72157730821813", + "name": "Shattered Heart Agony", + "thumbnail": "rbxassetid://131484910764396", }, - "configName": "Spring Bee", + "configName": "Shattered Heart Agony", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f7a8dc694c1a3a52", + "dateModified": "2026-06-27T16:05:42.452Z", + "hashShort": "9dfdb6c94cd83864", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "", - "name": "Anime Lemur", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://104895576504873", + "cachedPower": [ + 149374598212664, + 160076273177357, + 168046422989247, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://99592890399210", + "name": "Rose Garden Cat", + "thumbnail": "rbxassetid://113685692492564", }, - "configName": "Anime Lemur", + "configName": "Rose Garden Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "101cbe9278ae3ca8", + "dateModified": "2026-06-27T16:05:42.453Z", + "hashShort": "188c99c77fc55f83", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 158068471261965, + 151823657171005, ], "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://104087551758948", - "name": "Easter Golem", - "thumbnail": "rbxassetid://99977466156916", + "goldenThumbnail": "rbxassetid://93289590221840", + "name": "Loveserker", + "thumbnail": "rbxassetid://99157504737014", }, - "configName": "Easter Golem", + "configName": "Loveserker", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3904e533b0eb39e0", + "hashShort": "d85a76b4c61e60f4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "", - "name": "Anime Tanuki", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, + "animations": { + "flyHeight": 1, + "flyHeightChange": 4, + "flySpeed": 0.4, }, - "thumbnail": "rbxassetid://103490549389633", + "cachedPower": [ + 149739719630783, + 160350114240947, + 168457184584631, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://87654641806891", + "name": "Raining Love Dog", + "thumbnail": "rbxassetid://138339975683307", }, - "configName": "Anime Tanuki", + "configName": "Raining Love Dog", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7acd6bc7bba00cc8", + "dateModified": "2026-06-27T16:05:42.455Z", + "hashShort": "a68acb698f0ee66a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, + "exclusiveLevel": 3, "goldenThumbnail": "", - "name": "Anime Wolf", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://77232609895314", - }, - "configName": "Anime Wolf", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8609f679c14ed300", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "evolved": true, - "goldenThumbnail": "rbxassetid://94559677908793", - "huge": true, - "indexDesc": "Earned from evolving Mining Monkey!", - "indexObtainable": true, - "name": "Huge Evolved Mining Monkey", + "name": "Jurassic Beaver", "rarity": { "Announce": true, "Color": null, @@ -128070,23 +132446,20 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://108431740887325", + "thumbnail": "rbxassetid://113378775323433", }, - "configName": "Huge Evolved Mining Monkey", + "configName": "Jurassic Beaver", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "46a1a405d0dcef02", + "hashShort": "b4a62436393dd95a", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "evolved": true, - "goldenThumbnail": "rbxassetid://124070441464054", - "huge": true, - "indexDesc": "Earned from evolving Mining Penguin!", - "indexObtainable": true, - "name": "Huge Evolved Mining Penguin", + "exclusiveLevel": 1, + "goldenThumbnail": "", + "name": "Jurassic Crocodile", "rarity": { "Announce": true, "Color": null, @@ -128099,23 +132472,20 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://124239395763286", + "thumbnail": "rbxassetid://139858822372179", }, - "configName": "Huge Evolved Mining Penguin", + "configName": "Jurassic Crocodile", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d31db89630884105", + "hashShort": "cb879a297d64f6c0", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "evolved": true, - "goldenThumbnail": "rbxassetid://130018269910271", - "huge": true, - "indexDesc": "Earned from evolving Easter Lamb!", - "indexObtainable": true, - "name": "Huge Evolved Easter Lamb", + "exclusiveLevel": 2, + "goldenThumbnail": "", + "name": "Jurassic Elephant", "rarity": { "Announce": true, "Color": null, @@ -128128,82 +132498,36 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://114656946868089", + "thumbnail": "rbxassetid://121229772863082", }, - "configName": "Huge Evolved Easter Lamb", + "configName": "Jurassic Elephant", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7035b8cf6dae0ce8", + "hashShort": "a5879f47b869afc9", }, { - "category": "Huge", + "category": "Gargantuan", "collection": "Pets", "configData": { - "evolved": true, - "goldenThumbnail": "rbxassetid://103400435707229", - "huge": true, - "indexDesc": "Earned from evolving Player Fox!", - "indexObtainable": true, - "name": "Huge Evolved Player Fox", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, + "animations": { + "customAnimations": true, + "idleActionAnimations": [ + [ + "CorgiJumping", + 0.5, + ], + ], + "ridingJumpPower": 125, }, - "thumbnail": "rbxassetid://88581357457195", - }, - "configName": "Huge Evolved Player Fox", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "901db30a7c65ccf0", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "evolved": true, "fly": true, - "goldenThumbnail": "rbxassetid://105189524995526", - "huge": true, - "indexDesc": "Earned from evolving Icy Phoenix!", - "indexObtainable": true, - "name": "Huge Evolved Icy Phoenix", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://137094796065163", - }, - "configName": "Huge Evolved Icy Phoenix", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "07525d92d7cbe863", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "evolved": true, - "goldenThumbnail": "rbxassetid://95761799997049", - "huge": true, - "indexDesc": "Earned from evolving Basket Bunny!", + "flyingTitanic": true, + "gargantuan": true, + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Jurassic Egg! + +Ground Slam - Pet will damage breakables in a large area!", "indexObtainable": true, - "name": "Huge Evolved Basket Bunny", + "name": "Gargantuan Jurassic Dragon", "rarity": { "Announce": true, "Color": null, @@ -128216,23 +132540,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://117009470735471", + "thumbnail": "rbxassetid://135125751282892", }, - "configName": "Huge Evolved Basket Bunny", + "configName": "Gargantuan Jurassic Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a551bd126a628cff", + "hashShort": "5139e16f0a6db58c", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://110510562355783", + "goldenThumbnail": "rbxassetid://139618643440192", "huge": true, - "indexDesc": "Found in the 2025 Easter Event final egg!", + "indexDesc": "Found in the Superhero Card Pack!", "indexObtainable": true, - "name": "Huge Spring Bee", + "name": "Huge Super Spider", "rarity": { "Announce": true, "Color": null, @@ -128245,22 +132568,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://137687744712532", + "thumbnail": "rbxassetid://118018926499852", }, - "configName": "Huge Spring Bee", + "configName": "Huge Super Spider", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "671de9dec5882e72", + "hashShort": "7f2b8be2807700fb", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://94613199340621", + "goldenThumbnail": "rbxassetid://74401771304010", "huge": true, - "indexDesc": "Found in the Easter Forever Pack!", + "indexDesc": "Found in the Retro Card Pack!", "indexObtainable": true, - "name": "Huge Egg Chick", + "name": "Huge Arcade Dog", "rarity": { "Announce": true, "Color": null, @@ -128273,22 +132596,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://135817707784435", + "thumbnail": "rbxassetid://102621669325796", }, - "configName": "Huge Egg Chick", + "configName": "Huge Arcade Dog", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "111e921039118bb5", + "hashShort": "1f2492ac765c30ba", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://100095216974500", + "goldenThumbnail": "rbxassetid://126226836318896", "huge": true, - "indexDesc": "Found in the 2025 Easter Event Egg Hunt!", + "indexDesc": "Reward in the 2025 Evil Clan Battle!", "indexObtainable": true, - "name": "Huge Easter Fox", + "name": "Huge Evil Deer", "rarity": { "Announce": true, "Color": null, @@ -128301,22 +132624,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://127847534239530", + "thumbnail": "rbxassetid://105420679784540", }, - "configName": "Huge Easter Fox", + "configName": "Huge Evil Deer", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "59171c84d7dbafc4", + "hashShort": "6154a55a240dc778", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://137865799558462", + "goldenThumbnail": "rbxassetid://89262001520583", "huge": true, - "indexDesc": "Found in the Easter Event's HUGE Race!", + "indexDesc": "Found in the Fantasy Card Pack!", "indexObtainable": true, - "name": "Huge Easter Golem", + "name": "Huge Blurred Axolotl", "rarity": { "Announce": true, "Color": null, @@ -128329,22 +132652,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://98455133654568", + "thumbnail": "rbxassetid://89638501740571", }, - "configName": "Huge Easter Golem", + "configName": "Huge Blurred Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a2bea95f64501f7a", + "hashShort": "645c5501ebdeb87e", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://108670906018530", + "goldenThumbnail": "rbxassetid://85278144505331", "huge": true, - "indexDesc": "Found in the Titanic Easter Gift!", + "indexDesc": "Found in the Card's event leaderboard contest!", "indexObtainable": true, - "name": "Huge Easter Axolotl", + "name": "Huge Pixel Tiger", "rarity": { "Announce": true, "Color": null, @@ -128357,22 +132680,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://140227031996665", + "thumbnail": "rbxassetid://91955794019105", }, - "configName": "Huge Easter Axolotl", + "configName": "Huge Pixel Tiger", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "99497bf9fde0afe0", + "hashShort": "54541c6105f88cc7", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://75526648357324", + "goldenThumbnail": "rbxassetid://98047118601636", "huge": true, - "indexDesc": "Found in the Huge Easter Gift!", + "indexDesc": "Found in The Spidey Forever Pack!", "indexObtainable": true, - "name": "Huge Pastel Sock Bunny", + "name": "Huge Electric Werewolf", "rarity": { "Announce": true, "Color": null, @@ -128385,22 +132708,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://85028487593165", + "thumbnail": "rbxassetid://126966146144158", }, - "configName": "Huge Pastel Sock Bunny", + "configName": "Huge Electric Werewolf", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "39ceb90044dc309a", + "hashShort": "a762b6011973398d", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://121129926084163", + "goldenThumbnail": "rbxassetid://99755477240996", "huge": true, - "indexDesc": "Earned from the Easter Event points Leaderboard!", + "indexDesc": "Found in the Nightmare Card Pack!", "indexObtainable": true, - "name": "Huge Pastel Sock Bear", + "name": "Huge Nightmare Dog", "rarity": { "Announce": true, "Color": null, @@ -128413,22 +132736,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://84261728017151", + "thumbnail": "rbxassetid://78024171936128", }, - "configName": "Huge Pastel Sock Bear", + "configName": "Huge Nightmare Dog", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "05c1a5f5d0e417ce", + "hashShort": "fac3f34d853c3d52", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { "goldenThumbnail": "", - "huge": true, - "indexDesc": "Found in the Anime Card Pack!", + "indexDesc": "Found in the Superhero Card Pack!", "indexObtainable": true, - "name": "Huge Anime Scorpion", + "name": "Titanic Super Wolf", "rarity": { "Announce": true, "Color": null, @@ -128441,21 +132763,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://81320739190462", + "thumbnail": "rbxassetid://114045876201670", + "titanic": true, }, - "configName": "Huge Anime Scorpion", + "configName": "Titanic Super Wolf", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d2d7ed81eecd27d4", + "hashShort": "2306890ffadbb1c2", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://101309326536270", - "indexDesc": "Found in the Titanic Easter Gift!", + "fly": true, + "goldenThumbnail": "rbxassetid://71066562300372", + "indexDesc": "Found in the Fantasy Card Pack!", "indexObtainable": true, - "name": "Titanic Easter Axolotl", + "name": "Titanic Cupcake Pegasus", "rarity": { "Announce": true, "Color": null, @@ -128468,253 +132792,275 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://76996694412887", + "thumbnail": "rbxassetid://78403514636510", "titanic": true, }, - "configName": "Titanic Easter Axolotl", + "configName": "Titanic Cupcake Pegasus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c48d70833a901775", + "hashShort": "ef51c56eca6b2d0c", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://91884233489948", - "indexDesc": "Found in the Easter Event's TITANIC Race!", - "indexObtainable": true, - "name": "Titanic Easter Golem", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://109664286681118", - "titanic": true, + "cachedPower": [ + 149739719630783, + 160350114240947, + 168457184584631, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968256663", + "name": "Hellhound", + "thumbnail": "rbxassetid://14968256815", }, - "configName": "Titanic Easter Golem", + "configName": "Hellhound", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6900b89697b94a13", + "dateModified": "2026-06-27T16:05:18.068Z", + "hashShort": "4e8fc9e1ac6379b6", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "", - "indexDesc": "Found in the Anime Card Pack!", - "indexObtainable": true, - "name": "Titanic Anime Cat", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://139657034071879", - "titanic": true, + "cachedPower": [ + 151823657171005, + 161913067396113, + 170801614317381, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968300857", + "name": "Phantom Wolf", + "thumbnail": "rbxassetid://14968300948", }, - "configName": "Titanic Anime Cat", + "configName": "Phantom Wolf", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1521e29d3aa147b7", + "dateModified": "2026-06-27T16:05:18.099Z", + "hashShort": "52f4ed2a4562a6d0", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 156387599025515, + 150454124577501, + 160885917950984, + 169260890149688, ], "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://80469396002443", - "name": "Captain Octopus", - "thumbnail": "rbxassetid://110536424146159", - "tradable": false, + "goldenThumbnail": "rbxassetid://14968264101", + "name": "Immortuus", + "thumbnail": "rbxassetid://14968264173", }, - "configName": "Captain Octopus", + "configName": "Immortuus", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "017d912039dd8dbe", + "dateModified": "2026-06-27T16:05:19.911Z", + "hashShort": "8e48ad8a501264af", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 157620064174623, + 151488342543396, + 161661581425406, + 170424385361320, ], "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://103618861726707", - "name": "Leafy Seahorse", - "thumbnail": "rbxassetid://72223860700547", - "tradable": false, + "goldenThumbnail": "rbxassetid://14968246007", + "name": "Ghoul Horse", + "thumbnail": "rbxassetid://15260349697", }, - "configName": "Leafy Seahorse", + "configName": "Ghoul Horse", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5958696dda9b2d82", + "dateModified": "2026-06-27T16:05:19.903Z", + "hashShort": "6f67f8261fb45f33", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 155425910693599, + 151656570124571, + 161787752111287, + 170613641390142, ], + "fly": true, "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://140690540984237", - "name": "Pirate Dog", - "thumbnail": "rbxassetid://89232158046808", - "tradable": false, + "goldenThumbnail": "rbxassetid://14968234134", + "name": "Fairy Moth", + "thumbnail": "rbxassetid://14968234292", }, - "configName": "Pirate Dog", + "configName": "Fairy Moth", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ff26f665e8d14103", + "dateModified": "2026-06-27T16:05:19.956Z", + "hashShort": "9961891e60f42a10", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 157317045851747, + 150803708381393, + 161148105803904, + 169654171929068, ], "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://91828218354553", - "name": "Skeleton Shark", - "thumbnail": "rbxassetid://99963264496950", - "tradable": false, + "goldenThumbnail": "rbxassetid://14968277335", + "name": "Lumi Axolotl", + "thumbnail": "rbxassetid://14968277418", }, - "configName": "Skeleton Shark", + "configName": "Lumi Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b4be9da889b99ca7", + "dateModified": "2026-06-27T16:05:21.611Z", + "hashShort": "5bedb6a79b54d139", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 158068471261965, + 152154470795050, + 162161177614146, + 171173779644431, ], + "fly": true, "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://120042958743620", - "name": "Mystical Whale", - "thumbnail": "rbxassetid://91010953570749", - "tradable": false, + "goldenThumbnail": "rbxassetid://14968359464", + "name": "Wicked Agony", + "thumbnail": "rbxassetid://14968359556", }, - "configName": "Mystical Whale", + "configName": "Wicked Agony", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "bb237af1b468cccd", + "dateModified": "2026-06-27T16:05:21.611Z", + "hashShort": "0c365c778c885f72", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 158363430432800, + 150099510618483, + 160619957481721, + 168861949445793, ], + "fly": true, "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://112643327149183", - "name": "Anglerfish", - "thumbnail": "rbxassetid://120367608002307", - "tradable": false, + "goldenThumbnail": "rbxassetid://14968304690", + "name": "Pixel Dragon", + "thumbnail": "rbxassetid://14968304786", }, - "configName": "Anglerfish", + "configName": "Pixel Dragon", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:21.607Z", + "hashShort": "5f1468a6bd865cb3", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "rbxassetid://14968348354", + "name": "Super Axolotl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://14968348476", + }, + "configName": "Super Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c43f654a178fe16d", + "hashShort": "fe6aee06ca3c9682", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 158509741593270, + 149003986041498, + 159798314048982, + 167629484296685, ], "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://112620274687259", - "name": "Krakling Kraken", - "thumbnail": "rbxassetid://73809184044845", - "tradable": false, + "goldenThumbnail": "rbxassetid://14968243984", + "name": "Gamer Shiba", + "thumbnail": "rbxassetid://14968244080", }, - "configName": "Krakling Kraken", + "configName": "Gamer Shiba", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "27ce6080780cd700", + "dateModified": "2026-06-27T16:05:25.667Z", + "hashShort": "381d51fb1b7a3b8b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "balloon": true, - "flyHeightChange": 0, - }, "cachedPower": [ - 157919806559577, + 149374598212664, + 160076273177357, + 168046422989247, ], - "fly": true, "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://127115511909270", - "name": "Seamine Pufferfish", - "thumbnail": "rbxassetid://70501158681864", - "tradable": false, + "goldenThumbnail": "rbxassetid://14968232686", + "name": "Error Cat", + "thumbnail": "rbxassetid://14968232784", }, - "configName": "Seamine Pufferfish", + "configName": "Error Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6c6cefaa0e157013", + "dateModified": "2026-06-27T16:05:28.087Z", + "hashShort": "eb065919a21f2d82", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 158216343082172, + 85317573882095, + 90834575001502, + 96123850620049, ], "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://109682985178649", - "name": "Rogue Squid", - "thumbnail": "rbxassetid://135170255144622", - "tradable": false, + "goldenThumbnail": "rbxassetid://79327353541731", + "indexObtainable": true, + "name": "Hydra Cat", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://97636946858115", }, - "configName": "Rogue Squid", + "configName": "Hydra Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e9a6dd9fe6e11294", + "dateModified": "2026-06-27T16:05:28.063Z", + "hashShort": "49f1166bc0efd41a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "", - "name": "Aura Dominus", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://123359424256594", + "name": "Super Seal", "rarity": { "Announce": true, "Color": null, @@ -128727,20 +133073,20 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://88554800830077", + "thumbnail": "rbxassetid://81821063802586", }, - "configName": "Aura Dominus", + "configName": "Super Seal", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "66171ccc6872327a", + "hashShort": "01fcd29562241cd4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "exclusiveLevel": 2, - "goldenThumbnail": "", - "name": "Aura Bull", + "goldenThumbnail": "rbxassetid://117134992542435", + "name": "Super Bat", "rarity": { "Announce": true, "Color": null, @@ -128753,20 +133099,68 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://74227148964030", + "thumbnail": "rbxassetid://97555256119408", }, - "configName": "Aura Bull", + "configName": "Super Bat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "320c5e1538846afd", + "hashShort": "65e6db17cf311d23", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://111271764588056", - "name": "Aura Fox", + "animations": { + "flyHeight": 0.025, + "flyHeightChange": 0, + "swerve": true, + "swerveAggression": 1, + "swerveMaxAngle": 60, + }, + "cachedPower": [ + 151148402740781, + 161406626573444, + 170041953083378, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://105859177117836", + "name": "Retro Bulldog", + "thumbnail": "rbxassetid://84570711183748", + }, + "configName": "Retro Bulldog", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:42.456Z", + "hashShort": "4c99fb867018c16c", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "gargantuan": true, + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Matryoshka Egg! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Super Spider", + "thumbnail": "", + }, + "configName": "Gargantuan Super Spider", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "27058a63621b3386", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://120651629741809", + "huge": true, + "indexDesc": "Found in the Meme Card Pack!", + "indexObtainable": true, + "name": "Huge Hubert", "rarity": { "Announce": true, "Color": null, @@ -128779,24 +133173,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://97763976708119", + "thumbnail": "rbxassetid://140721677142555", }, - "configName": "Aura Fox", + "configName": "Huge Hubert", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c467479083552585", + "hashShort": "5c11b4e84ef1fffe", }, { - "category": "Gargantuan", + "category": "Huge", "collection": "Pets", "configData": { - "gargantuan": true, - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Aura Egg! - -Ground Slam - Pet will damage breakables in a large area!", + "goldenThumbnail": "rbxassetid://137193812662523", + "huge": true, + "indexDesc": "Found in the Axolotl Card Pack!", "indexObtainable": true, - "name": "Gargantuan Aura Cat", + "name": "Huge Storm Axolotl", "rarity": { "Announce": true, "Color": null, @@ -128809,22 +133201,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://137518632763038", + "thumbnail": "rbxassetid://136706503808298", }, - "configName": "Gargantuan Aura Cat", + "configName": "Huge Storm Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e4ec2cd0aab840b2", + "hashShort": "fdb5f7c99d6b63a6", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://72422909388772", + "goldenThumbnail": "rbxassetid://111082345297515", "huge": true, - "indexDesc": "Found in the Exclusive Aura Egg!", + "indexDesc": "Found in the Ninja Card Pack!", "indexObtainable": true, - "name": "Huge Aura Fox", + "name": "Huge Ninja Capybara", "rarity": { "Announce": true, "Color": null, @@ -128837,22 +133229,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://102863074844102", + "thumbnail": "rbxassetid://101889999202642", }, - "configName": "Huge Aura Fox", + "configName": "Huge Ninja Capybara", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e34d68468d912460", + "hashShort": "952d631dd5295542", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "", + "fly": true, + "goldenThumbnail": "rbxassetid://126608778932303", "huge": true, - "indexDesc": "Found in the Exclusive Aura Egg!", + "indexDesc": "Found in the BIG Card Pack!", "indexObtainable": true, - "name": "Huge Aura Dominus", + "name": "Huge Arcane Dominus", "rarity": { "Announce": true, "Color": null, @@ -128865,22 +133258,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://96765579469696", + "thumbnail": "rbxassetid://84981023975118", }, - "configName": "Huge Aura Dominus", + "configName": "Huge Arcane Dominus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f539ebb3adb778d0", + "hashShort": "a2fa90a646f4ccee", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://124596079068216", + "goldenThumbnail": "rbxassetid://112745262744043", "huge": true, - "indexDesc": "Found in the Fishing World's eggs!", + "indexDesc": "Found in the Huge Machine Grim Reaper Egg!", "indexObtainable": true, - "name": "Huge Pirate Dog", + "name": "Huge Green Cobra", "rarity": { "Announce": true, "Color": null, @@ -128893,22 +133286,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://128373074804496", + "thumbnail": "rbxassetid://136758354491136", }, - "configName": "Huge Pirate Dog", + "configName": "Huge Green Cobra", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "fa81ce12f50676f7", + "hashShort": "7ea2d53be10711f7", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://77756016749095", + "goldenThumbnail": "rbxassetid://93112671163743", "huge": true, - "indexDesc": "Found in the Fishing World's fishing contest!", + "indexDesc": "Found in the Huge Machine Grim Reaper Egg!", "indexObtainable": true, - "name": "Huge Rogue Squid", + "name": "Huge Detective Terrier", "rarity": { "Announce": true, "Color": null, @@ -128921,22 +133314,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://82176106497018", + "thumbnail": "rbxassetid://79798078989101", }, - "configName": "Huge Rogue Squid", + "configName": "Huge Detective Terrier", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c9ba9332feca7dc0", + "hashShort": "8cca7cbffc319088", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://87272836526346", + "goldenThumbnail": "rbxassetid://72319847311923", "huge": true, - "indexDesc": "Found in the Fishing World's waters!", + "indexDesc": "Found in the Huge Machine Grim Reaper Egg!", "indexObtainable": true, - "name": "Huge Anglerfish", + "name": "Huge Spitting Dino", "rarity": { "Announce": true, "Color": null, @@ -128949,22 +133342,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://102757425603718", + "thumbnail": "rbxassetid://75776145321145", }, - "configName": "Huge Anglerfish", + "configName": "Huge Spitting Dino", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "cda8bd4d1db7466a", + "hashShort": "30fd52d15c7d6114", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://110337853132269", + "goldenThumbnail": "rbxassetid://104060287777224", "huge": true, - "indexDesc": "Found in the Fishing World's Forever Pack!", + "indexDesc": "Found in the Huge Machine Grim Reaper Egg!", "indexObtainable": true, - "name": "Huge Mystical Whale", + "name": "Huge Ladybug", "rarity": { "Announce": true, "Color": null, @@ -128977,22 +133370,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://128951201901873", + "thumbnail": "rbxassetid://99601574590476", }, - "configName": "Huge Mystical Whale", + "configName": "Huge Ladybug", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0985729c53dcca1c", + "hashShort": "a47007b5103d9fc7", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://111640531354567", + "goldenThumbnail": "rbxassetid://117229904066650", "huge": true, - "indexDesc": "Reward in the 2025 Poison Turtle Clan Battle!", + "indexDesc": "Found in the Huge Machine Grim Reaper Egg!", "indexObtainable": true, - "name": "Huge Poison Turtle", + "name": "Huge Stacked Dominus", "rarity": { "Announce": true, "Color": null, @@ -129005,21 +133398,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://90099723016359", + "thumbnail": "rbxassetid://96928518190910", }, - "configName": "Huge Poison Turtle", + "configName": "Huge Stacked Dominus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5e01bbe2b3b6dbc5", + "hashShort": "cb8d637fd5defe8a", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Aura Egg!", + "goldenThumbnail": "rbxassetid://126710781505925", + "huge": true, + "indexDesc": "Found in the Card event leaderboard contest!", "indexObtainable": true, - "name": "Titanic Aura Kitsune", + "name": "Huge Hell Monkey", "rarity": { "Announce": true, "Color": null, @@ -129032,22 +133426,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://80758347451953", - "titanic": true, + "thumbnail": "rbxassetid://75557706152622", }, - "configName": "Titanic Aura Kitsune", + "configName": "Huge Hell Monkey", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c9c82b10a704958c", + "hashShort": "5e666bcff2d53a22", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://93804750715596", - "indexDesc": "Found in the Fishing World's waters!", + "goldenThumbnail": "rbxassetid://119769057743786", + "huge": true, + "indexDesc": "Found in The Storm Forever Pack!", "indexObtainable": true, - "name": "Titanic Leafy Seahorse", + "name": "Huge Hell Spider", "rarity": { "Announce": true, "Color": null, @@ -129060,22 +133454,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://116393400860813", - "titanic": true, + "thumbnail": "rbxassetid://92181296313546", }, - "configName": "Titanic Leafy Seahorse", + "configName": "Huge Hell Spider", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "893325372cfa49ad", + "hashShort": "2111b5417f59e9e9", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://138640663156184", - "indexDesc": "Found in the Fishing World's fishing contest!", + "goldenThumbnail": "rbxassetid://92736609812288", + "huge": true, + "indexDesc": "Found in the Pog Card Pack!", "indexObtainable": true, - "name": "Titanic Captain Octopus", + "name": "Huge Pog Cat", "rarity": { "Announce": true, "Color": null, @@ -129088,25 +133482,32 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://108839170452682", - "titanic": true, + "thumbnail": "rbxassetid://123648690581827", }, - "configName": "Titanic Captain Octopus", + "configName": "Huge Pog Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9799826ef6261ad1", + "hashShort": "c4fc99b41470299a", }, { "category": "Titanic", "collection": "Pets", "configData": { - "fly": true, - "flyingTitanic": true, - "flyingTitanicAlwaysFly": true, - "goldenThumbnail": "rbxassetid://103990206239519", - "indexDesc": "Earned from the Exclusive Raffle!", + "animations": { + "flipbookAnimation": [ + "rbxassetid://12442921582", + "rbxassetid://12445580091", + ], + "flipbookAnimationGold": [ + "rbxassetid://12442921397", + "rbxassetid://12445579992", + ], + "flipbookAnimationSpeed": 0.15, + }, + "goldenThumbnail": "rbxassetid://107955973846092", + "indexDesc": "Found in the Meme Card Pack!", "indexObtainable": true, - "name": "Titanic Super Corgi", + "name": "Titanic Pop Cat", "rarity": { "Announce": true, "Color": null, @@ -129119,22 +133520,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://83701890267359", + "thumbnail": "rbxassetid://107955973846092", "titanic": true, }, - "configName": "Titanic Super Corgi", + "configName": "Titanic Pop Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e93a688d450992c1", + "hashShort": "5eb6d710cb7c8f04", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://116828499922168", - "indexDesc": "Found in the Fishing World's Kraken Whirlpool!", + "goldenThumbnail": "rbxassetid://119120478455736", + "indexDesc": "Found in the BIG Card Pack!", "indexObtainable": true, - "name": "Titanic Kraken", + "name": "Titanic Signature BIG Maskot", "rarity": { "Announce": true, "Color": null, @@ -129147,624 +133548,452 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://82337742221537", + "thumbnail": "rbxassetid://87601095664895", "titanic": true, }, - "configName": "Titanic Kraken", + "configName": "Titanic Signature BIG Maskot", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2f624e1a06e0d205", + "hashShort": "da0a76e191907fe8", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://96101761006080", + "indexDesc": "Found in the Huge Machine Grim Reaper Egg!", + "indexObtainable": true, + "name": "Titanic Owl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://111258824225580", + "titanic": true, + }, + "configName": "Titanic Owl", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "abca33f07dde5459", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 159087385415162, + 152154470795050, + 162161177614146, + 171173779644431, ], "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://131540788963222", - "name": "Beluga Whale", - "thumbnail": "rbxassetid://120324460450907", - "tradable": false, + "goldenThumbnail": "rbxassetid://14976335407", + "name": "Fancy Axolotl", + "thumbnail": "rbxassetid://14968234743", }, - "configName": "Beluga Whale", + "configName": "Fancy Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4a0f61ce660042b9", + "dateModified": "2026-06-27T16:05:18.057Z", + "hashShort": "4da4c7f6ad8e2cca", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 176255859188799, - ], - "fromEgg": "Flora Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 241, - "goldenThumbnail": "rbxassetid://94639094871467", - "maxChance": 0.9, - "name": "Lilypad Cat", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://14968257733", + "name": "Hippomelon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://109955837344460", + "thumbnail": "rbxassetid://14968257890", }, - "configName": "Lilypad Cat", + "configName": "Hippomelon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8544078465ae4d42", + "hashShort": "fe1f23d15f4dafba", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 250965116028753, + 150277455398384, + 160753416066647, + 169062137323182, ], "fly": true, - "fromEgg": "Fairy Mushroom Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 244, - "goldenThumbnail": "rbxassetid://107563939076552", - "maxChance": 0.8991008991008992, - "name": "Beegle Dog", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - "thumbnail": "rbxassetid://138527802808775", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968308171", + "name": "Pog Dragon", + "thumbnail": "rbxassetid://14968308295", }, - "configName": "Beegle Dog", + "configName": "Pog Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6ec744a55f7563f1", + "dateModified": "2026-06-27T16:05:18.125Z", + "hashShort": "e1899505e699ac8f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 158068471261965, + 152803067304937, + 162647624996562, + 171903450718054, ], "fromWorldNumber": 3, "fromZoneNumber": 239, - "goldenThumbnail": "rbxassetid://119891913126303", - "name": "Snow Crab", - "thumbnail": "rbxassetid://121468674139017", - "tradable": false, + "goldenThumbnail": "rbxassetid://14968183566", + "name": "Blue BIG Maskot", + "thumbnail": "rbxassetid://14968183674", }, - "configName": "Snow Crab", + "configName": "Blue BIG Maskot", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "56dbd73f403ab810", + "dateModified": "2026-06-27T16:05:19.896Z", + "hashShort": "72ad09e2330ee073", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 198287841587399, + 150454124577501, + 160885917950984, + 169260890149688, ], - "fromEgg": "Firefly Forest Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 242, - "goldenThumbnail": "rbxassetid://73050377978984", - "maxChance": 0.8991008991008992, - "name": "Wisp Deer", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - "thumbnail": "rbxassetid://72875254567380", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968189605", + "name": "Camo Axolotl", + "thumbnail": "rbxassetid://14968189680", }, - "configName": "Wisp Deer", + "configName": "Camo Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b77a76c9c02227eb", + "dateModified": "2026-06-27T16:05:21.606Z", + "hashShort": "64827bfc8f0bc9d4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 428563738681216, + 151656570124571, + 161787752111287, + 170613641390142, ], - "fly": true, - "fromEgg": "Rune Graveyard Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 248, - "goldenThumbnail": "rbxassetid://130533071415265", - "maxChance": 0.09090811462314466, - "name": "Angel Dragon", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - "thumbnail": "rbxassetid://111443335088107", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968286066", + "name": "Nature Axolotl", + "thumbnail": "rbxassetid://14968286158", }, - "configName": "Angel Dragon", + "configName": "Nature Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ba80b3d624608913", + "dateModified": "2026-06-27T16:05:21.617Z", + "hashShort": "7a96dd622e56ffbd", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 223073821785824, + 150976658178515, + 161277818151745, + 169848740450829, ], - "fly": true, - "fromEgg": "Honeycomb Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 243, - "goldenThumbnail": "rbxassetid://94671604790188", - "maxChance": 0.08991008991008992, - "name": "Pixie Bee", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - "thumbnail": "rbxassetid://126592920920754", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968193678", + "name": "Chill Axolotl", + "thumbnail": "rbxassetid://14968193849", }, - "configName": "Pixie Bee", + "configName": "Chill Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1caed4516d1d271a", + "dateModified": "2026-06-27T16:05:21.618Z", + "hashShort": "2fd2f2db4465ff9c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 300994011254846, + 151823657171005, + 161913067396113, + 170801614317381, ], - "fromEgg": "Fantasy Meadow Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 245, - "goldenThumbnail": "rbxassetid://102915908313416", - "maxChance": 0.08991008991008992, - "name": "Mushroom Corgi", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - "thumbnail": "rbxassetid://120928082456336", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14976269820", + "name": "Tech Chest Mimic", + "thumbnail": "rbxassetid://14976270021", }, - "configName": "Mushroom Corgi", + "configName": "Tech Chest Mimic", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c7abbe354b0e1418", + "dateModified": "2026-06-27T16:05:21.661Z", + "hashShort": "0e28d2831e056b9c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.025, - "flyHeightChange": 0, - "swerve": true, - "swerveAggression": 0.2, - "swerveMaxAngle": 60, - }, - "cachedPower": [ - 282335755532347, - ], - "fly": true, - "fromEgg": "Fantasy Meadow Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 245, - "goldenThumbnail": "rbxassetid://135461834715789", - "maxChance": 0.8991008991008992, - "name": "Mushroom Snail", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968291996", + "name": "Noob", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://129494623383025", + "thumbnail": "rbxassetid://14968292162", }, - "configName": "Mushroom Snail", + "configName": "Noob", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "853422ce39dfecf5", + "hashShort": "bfc3659864eb11f3", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 338618262661702, - ], - "fly": true, - "fromEgg": "Radiant Runestones Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 246, - "goldenThumbnail": "rbxassetid://135234988919777", - "maxChance": 0.08991008991008992, - "name": "Flying Piggy", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://14968260558", + "name": "Hot Dooooog", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://133181699042910", + "thumbnail": "rbxassetid://14968260657", }, - "configName": "Flying Piggy", + "configName": "Hot Dooooog", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "598a711bac4ba49c", + "hashShort": "138523330a3a935a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 317627724973891, + 150099510618483, + 160619957481721, + 168861949445793, ], - "fromEgg": "Radiant Runestones Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 246, - "goldenThumbnail": "rbxassetid://130301158487486", - "maxChance": 0.8991008991008992, - "name": "Mossy Lamb", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - "thumbnail": "rbxassetid://88362418790125", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968307703", + "name": "Pog Dog", + "thumbnail": "rbxassetid://14968308010", }, - "configName": "Mossy Lamb", + "configName": "Pog Dog", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6c99ed92965dfdac", + "dateModified": "2026-06-27T16:05:28.106Z", + "hashShort": "90f0d94e1562dc1d", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 401997589420080, + 151989619043611, ], - "fly": true, - "fromEgg": "Rune Graveyard Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 248, - "goldenThumbnail": "rbxassetid://87198689985064", - "maxChance": 0.9090811462314466, - "name": "Glade Griffin", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - "thumbnail": "rbxassetid://140156706592555", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://15565567745", + "name": "Kung Fu Monkey", + "thumbnail": "rbxassetid://15565567701", }, - "configName": "Glade Griffin", + "configName": "Kung Fu Monkey", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d3ed64463b4b32d1", + "hashShort": "7300ea0fb6778563", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 267550232226530, + 152318227177927, ], - "fromEgg": "Fairy Mushroom Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 244, - "goldenThumbnail": "rbxassetid://102695750394965", - "maxChance": 0.08991008991008992, - "name": "Honey Golem", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - "thumbnail": "rbxassetid://119417956317628", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://15565566296", + "name": "Sensei Penguin", + "thumbnail": "rbxassetid://15565566222", }, - "configName": "Honey Golem", + "configName": "Sensei Penguin", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5438591e124db279", + "hashShort": "c83e935f5042196e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 564949890458245, + 151318958749842, + 161534543580241, + 170233828593573, ], - "fly": true, - "fromEgg": "Halo Spires Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 249, - "goldenThumbnail": "rbxassetid://132445427668851", - "maxChance": 7.492427029380054e-7, - "name": "Empyrean Owl", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, - }, - "thumbnail": "rbxassetid://109702265808031", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://111149532483250", + "name": "Ninja Otter", + "thumbnail": "rbxassetid://123135377300075", }, - "configName": "Empyrean Owl", + "configName": "Ninja Otter", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0c70a1a936cc81fb", + "dateModified": "2026-06-27T16:05:42.457Z", + "hashShort": "2b46f83bf3028ccb", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 539779533414711, + 150629536314083, + 161017476753421, + 169458228353343, ], - "fromEgg": "Halo Spires Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 249, - "goldenThumbnail": "rbxassetid://79988543098810", - "maxChance": 0.000009989902705840073, - "name": "Empyrean Corgi", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "thumbnail": "rbxassetid://133804075558939", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://97725800177188", + "name": "Ninja Snake", + "thumbnail": "rbxassetid://113363632926648", }, - "configName": "Empyrean Corgi", + "configName": "Ninja Snake", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1db1b9f940a60539", + "dateModified": "2026-06-27T16:05:42.458Z", + "hashShort": "cf35ec6ea39655ac", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 380945545494415, + 150803708381393, + 161148105803904, + 169654171929068, ], - "fromEgg": "Fogbound Forest Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 247, - "goldenThumbnail": "rbxassetid://121377816869007", - "maxChance": 0.08991008991008992, - "name": "Relic Deer", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - "thumbnail": "rbxassetid://140707456274261", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://101664366130785", + "name": "Pog Monkey", + "thumbnail": "rbxassetid://118788057604476", }, - "configName": "Relic Deer", + "configName": "Pog Monkey", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "088eb3383fdae97f", + "dateModified": "2026-06-27T16:05:42.457Z", + "hashShort": "ce58b7c59d37d82b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 357331190595627, + 151488342543396, ], - "fromEgg": "Fogbound Forest Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 247, - "goldenThumbnail": "rbxassetid://92735912126275", - "maxChance": 0.8991008991008992, - "name": "Relic Cat", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - "thumbnail": "rbxassetid://70577077433208", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://140711462152393", + "name": "Pog Shark", + "thumbnail": "rbxassetid://135012798506298", }, - "configName": "Relic Cat", + "configName": "Pog Shark", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f1065b2ef3eb5e15", + "hashShort": "e19c13046df118bd", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 147858233878416, + 151148402740781, + 161406626573444, + 170041953083378, ], - "fromEgg": "Fantasy Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 240, - "goldenThumbnail": "rbxassetid://135925441698270", - "maxChance": 0.9, - "name": "Enchanted Dog", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - "thumbnail": "rbxassetid://105590374967253", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://130974558853000", + "name": "Empyrean Lion", + "thumbnail": "rbxassetid://140472617425132", }, - "configName": "Enchanted Dog", + "configName": "Empyrean Lion", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "06c7731cb7ee22e0", + "dateModified": "2026-06-27T16:05:42.461Z", + "hashShort": "5585e23710c7fb91", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "balloon": true, + }, "cachedPower": [ - 137669378467222, + 152480902652713, + 162406001507393, + 171541015484302, ], - "fromEgg": "Fantasy Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 240, - "goldenThumbnail": "rbxassetid://112085652733167", - "maxChance": 0.9, - "name": "Enchanted Bunny", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - "thumbnail": "rbxassetid://118375250498424", + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://105820560193916", + "name": "Red Balloon Panda", + "thumbnail": "rbxassetid://115760295871613", }, - "configName": "Enchanted Bunny", + "configName": "Red Balloon Panda", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "05d00e98d7e45da5", + "dateModified": "2026-06-27T16:05:42.462Z", + "hashShort": "3a1a6bd243e3d801", }, { "category": "Gargantuan", "collection": "Pets", "configData": { "fly": true, - "flyingTitanic": true, - "flyingTitanicAlwaysFly": true, "gargantuan": true, - "goldenThumbnail": "rbxassetid://87460092930842", - "indexDesc": "Found in the Forever Pack & Time Trials Contest! + "goldenThumbnail": "rbxassetid://120856751449430", + "indexDesc": "Found in the Gargantuan Machine Grim Reaper Egg! Ground Slam - Pet will damage breakables in a large area!", "indexObtainable": true, - "name": "Gargantuan Nyan Cat", + "name": "Gargantuan Grim Reaper", "rarity": { "Announce": true, "Color": null, @@ -129777,22 +134006,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://102598468729073", + "thumbnail": "rbxassetid://108242446619492", }, - "configName": "Gargantuan Nyan Cat", + "configName": "Gargantuan Grim Reaper", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a98b52cb0285a715", + "dateModified": "2026-05-02T17:30:29.716Z", + "hashShort": "46cb2eed2c62d54b", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://117463338514390", + "goldenThumbnail": "rbxassetid://136927162943851", "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", + "indexDesc": "Reward in the 2025 Egyptian Clan Battle!", "indexObtainable": true, - "name": "Huge Walrus", + "name": "Huge Sphinx", "rarity": { "Announce": true, "Color": null, @@ -129805,22 +134034,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://102190929472921", + "thumbnail": "rbxassetid://112960031922397", }, - "configName": "Huge Walrus", + "configName": "Huge Sphinx", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f64c125ccb1b2c1a", + "hashShort": "8f6a9619eef82b01", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://130999498345596", + "fly": true, + "goldenThumbnail": "rbxassetid://127868583646798", "huge": true, - "indexDesc": "Found in the Fishing Event!", + "indexDesc": "Found in the 2025 St. Patrick's Day event eggs!", "indexObtainable": true, - "name": "Huge Skeleton Shark", + "name": "Huge Lucki Cat", "rarity": { "Announce": true, "Color": null, @@ -129833,22 +134063,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://87082066811704", + "thumbnail": "rbxassetid://90438658462311", }, - "configName": "Huge Skeleton Shark", + "configName": "Huge Lucki Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "014f55ecfd04feb3", + "hashShort": "18c842ba59891409", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://133628846033411", + "goldenThumbnail": "rbxassetid://135276639961189", "huge": true, - "indexDesc": "Found from fishing near Blizzard Bay!", + "indexDesc": "Found in the Leprechaun Chest at the end of Lucky Raids!", "indexObtainable": true, - "name": "Huge Snow Crab", + "name": "Huge Leprechaun Dog", "rarity": { "Announce": true, "Color": null, @@ -129861,22 +134091,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://115554189574949", + "thumbnail": "rbxassetid://82125738012621", }, - "configName": "Huge Snow Crab", + "configName": "Huge Leprechaun Dog", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5ba982a492c40d5e", + "hashShort": "1c6a523be31f6dc2", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://103833486876057", + "goldenThumbnail": "rbxassetid://85469816915665", "huge": true, - "indexDesc": "Found in the Forever Pack!", + "indexDesc": "Found in the Huge Chest at the end of Lucky Raids!", "indexObtainable": true, - "name": "Huge Honey Golem", + "name": "Huge Clover Peacock", "rarity": { "Announce": true, "Color": null, @@ -129889,22 +134119,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://137790687877183", + "thumbnail": "rbxassetid://109285154435259", }, - "configName": "Huge Honey Golem", + "configName": "Huge Clover Peacock", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6e45b9f35e6f2a56", + "hashShort": "b8792e26106e2912", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://134011087876937", + "fly": true, + "goldenThumbnail": "rbxassetid://87657752961831", "huge": true, - "indexDesc": "Awarded to the top 5,000 players in the Fishing Contest!", + "indexDesc": "Found in the Lucky Gift Bag!", "indexObtainable": true, - "name": "Huge Stingray", + "name": "Huge Lucki Tiger", "rarity": { "Announce": true, "Color": null, @@ -129917,26 +134148,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://74045348274896", + "thumbnail": "rbxassetid://79319215201881", }, - "configName": "Huge Stingray", + "configName": "Huge Lucki Tiger", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2a7a92e598f02410", + "hashShort": "5e8309acc3c7017b", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://83484250625893", + "goldenThumbnail": "rbxassetid://91293394805565", "huge": true, - "indexDesc": "Found in the Forever Pack!", + "indexDesc": "Earned from the St. Patrick's Day event leaderboard contest!", "indexObtainable": true, - "name": "Huge Wicked Angelus", + "name": "Huge Clover Lion", "rarity": { "Announce": true, "Color": null, @@ -129949,22 +134176,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://87751794177322", + "thumbnail": "rbxassetid://123334593122447", }, - "configName": "Huge Wicked Angelus", + "configName": "Huge Clover Lion", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2e5829ef8e2590f7", + "hashShort": "2e1764ffd7b6bf2e", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://137919211957323", + "fly": true, + "goldenThumbnail": "rbxassetid://126314554744427", "huge": true, - "indexDesc": "Obtained from the Time Trials Contest!", + "indexDesc": "Found in The Lucky Forever Pack!", "indexObtainable": true, - "name": "Huge Relic Deer", + "name": "Huge Lucki Monkey", "rarity": { "Announce": true, "Color": null, @@ -129977,23 +134205,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://113333249087302", + "thumbnail": "rbxassetid://114063062613222", }, - "configName": "Huge Relic Deer", + "configName": "Huge Lucki Monkey", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9fe3c85cbe939269", + "hashShort": "1c40236096a7a2d8", }, { "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://100506993092180", + "goldenThumbnail": "rbxassetid://71438153975957", "huge": true, - "indexDesc": "Found in the Fantasy Chest!", + "indexDesc": "Earned from the St. Patrick's Day event leaderboard contest!", "indexObtainable": true, - "name": "Huge Glade Griffin", + "name": "Huge Clover Butterfly", "rarity": { "Announce": true, "Color": null, @@ -130006,23 +134234,28 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://89142183208055", + "thumbnail": "rbxassetid://111786177414558", }, - "configName": "Huge Glade Griffin", + "configName": "Huge Clover Butterfly", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "888caf8be5fcf160", + "hashShort": "7c9cd5a77d870d5a", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://102318491837918", + "animations": { + "dotMatrix": { + "ColorA": null, + "ColorB": null, + }, + }, + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in the Fantasy Spinny Wheel!", + "indexDesc": "Found in the Exclusive Dot Matrix Egg!", "indexObtainable": true, - "name": "Huge Pixie Bee", + "name": "Huge Dot Matrix Cat", "rarity": { "Announce": true, "Color": null, @@ -130035,22 +134268,28 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://87836274620619", + "thumbnail": "rbxassetid://118273434697077", }, - "configName": "Huge Pixie Bee", + "configName": "Huge Dot Matrix Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "659afee516af5879", + "hashShort": "a84e13bbc116c81b", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://115670428864339", + "animations": { + "dotMatrix": { + "ColorA": null, + "ColorB": null, + }, + }, + "goldenThumbnail": "", "huge": true, - "indexDesc": "Can be dropped in the Time Trials!", + "indexDesc": "Found in the Exclusive Dot Matrix Egg!", "indexObtainable": true, - "name": "Huge Wisp Deer", + "name": "Huge Dot Matrix Axolotl", "rarity": { "Announce": true, "Color": null, @@ -130063,22 +134302,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://119889276435598", + "thumbnail": "rbxassetid://121462024507634", }, - "configName": "Huge Wisp Deer", + "configName": "Huge Dot Matrix Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c92b975701c69711", + "hashShort": "714695bd2508f861", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://113434395519180", - "huge": true, - "indexDesc": "Found in the Time Trials gift bag!", + "goldenThumbnail": "rbxassetid://95862883499557", + "indexDesc": "Found in the Titanic Chest at the end of Lucky Raids!", "indexObtainable": true, - "name": "Huge Royal Peacock", + "name": "Titanic Leprechaun Dog", "rarity": { "Announce": true, "Color": null, @@ -130091,22 +134329,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://87911299372812", + "thumbnail": "rbxassetid://82186253097928", + "titanic": true, }, - "configName": "Huge Royal Peacock", + "configName": "Titanic Leprechaun Dog", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e709f46f58b84db9", + "hashShort": "e44eb0cf3b28f17d", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://109531042756169", - "huge": true, - "indexDesc": "Found in the final zone of Fantasy World!", + "fly": true, + "goldenThumbnail": "rbxassetid://127988799586401", + "indexDesc": "Earned from the St. Patrick's Day event leaderboard contest!", "indexObtainable": true, - "name": "Huge Enchanted Dog", + "name": "Titanic Clover Butterfly", "rarity": { "Announce": true, "Color": null, @@ -130119,23 +134358,28 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://98036079803445", + "thumbnail": "rbxassetid://131125477985744", + "titanic": true, }, - "configName": "Huge Enchanted Dog", + "configName": "Titanic Clover Butterfly", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ea8b6aff124affed", + "hashShort": "201859392207ef95", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://104638878654173", - "huge": true, - "indexDesc": "Created from Fantasy Fragments!", + "animations": { + "dotMatrix": { + "ColorA": null, + "ColorB": null, + }, + }, + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Dot Matrix Egg!", "indexObtainable": true, - "name": "Huge Angel Dragon", + "name": "Titanic Dot Matrix Kitsune", "rarity": { "Announce": true, "Color": null, @@ -130148,21 +134392,233 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://118966983027329", + "thumbnail": "rbxassetid://101711904618223", + "titanic": true, }, - "configName": "Huge Angel Dragon", + "configName": "Titanic Dot Matrix Kitsune", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0daeee8d5452919f", + "hashShort": "ce4063325df18f19", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://70593512457251", - "indexDesc": "Found in the Exclusive Raffle!", - "indexObtainable": true, - "name": "Titanic Keyboard Cat", + "cachedPower": [ + 150454124577501, + 160885917950984, + 169260890149688, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968275883", + "name": "Lucki Cat", + "thumbnail": "rbxassetid://14968275994", + }, + "configName": "Lucki Cat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:21.659Z", + "hashShort": "938db579a165040c", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 153121074877797, + 162886130676207, + 172261209237522, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968276067", + "name": "Lucki Dominus", + "thumbnail": "rbxassetid://14968276146", + }, + "configName": "Lucki Dominus", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:23.814Z", + "hashShort": "c10ecd435eb8af57", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 152154470795050, + 162161177614146, + 171173779644431, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968276672", + "name": "Lucki Wolf", + "thumbnail": "rbxassetid://14968276787", + }, + "configName": "Lucki Wolf", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:25.655Z", + "hashShort": "09f189e0ed7fb3de", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 151488342543396, + 161661581425406, + 170424385361320, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968276253", + "name": "Lucki Monkey", + "thumbnail": "rbxassetid://14968276400", + }, + "configName": "Lucki Monkey", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:25.660Z", + "hashShort": "497a8d440785b797", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 151148402740781, + 161406626573444, + 170041953083378, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968276529", + "name": "Lucki Tiger", + "thumbnail": "rbxassetid://14968276602", + }, + "configName": "Lucki Tiger", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:25.660Z", + "hashShort": "84ac86442d442294", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 152480902652713, + 162406001507393, + 171541015484302, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://138287122287032", + "name": "Clover Peacock", + "thumbnail": "rbxassetid://77811074784797", + }, + "configName": "Clover Peacock", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:42.462Z", + "hashShort": "c2323bdad5b6f884", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 151823657171005, + 161913067396113, + 170801614317381, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://126465041139844", + "name": "Clover Lion", + "thumbnail": "rbxassetid://92090569174852", + }, + "configName": "Clover Lion", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:42.463Z", + "hashShort": "98062381f6d67505", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 150803708381393, + 161148105803904, + 169654171929068, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://83136146082674", + "name": "Leprechaun Dog", + "thumbnail": "rbxassetid://70418015784814", + }, + "configName": "Leprechaun Dog", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.862Z", + "hashShort": "8dc06780982445ba", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 152803067304937, + 162647624996562, + 171903450718054, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://111375276143562", + "name": "Clover Butterfly", + "thumbnail": "rbxassetid://116380484302777", + }, + "configName": "Clover Butterfly", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.854Z", + "hashShort": "ed8da82f912cc94f", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 153435031288497, + 163121597984232, + 172614410199559, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://73956829372262", + "name": "Pot of Gold Cat", + "thumbnail": "rbxassetid://74626937713423", + }, + "configName": "Pot of Gold Cat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.856Z", + "hashShort": "5f6bcc4e8e4c3b6f", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "dotMatrix": { + "ColorA": null, + "ColorB": null, + }, + }, + "exclusiveLevel": 1, + "goldenThumbnail": "", + "name": "Dot Matrix Cat", "rarity": { "Announce": true, "Color": null, @@ -130175,22 +134631,26 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://138627945084194", - "titanic": true, + "thumbnail": "rbxassetid://96651992077473", }, - "configName": "Titanic Keyboard Cat", + "configName": "Dot Matrix Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e6b9e64da26f1ca9", + "hashShort": "c6e8317bf7fc931b", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://77541315697271", - "indexDesc": "Awarded to the top 5 players in the Fishing Contest!", - "indexObtainable": true, - "name": "Titanic Narwhal", + "animations": { + "dotMatrix": { + "ColorA": null, + "ColorB": null, + }, + }, + "exclusiveLevel": 2, + "goldenThumbnail": "", + "name": "Dot Matrix Snail", "rarity": { "Announce": true, "Color": null, @@ -130203,22 +134663,26 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://100083536961839", - "titanic": true, + "thumbnail": "rbxassetid://129735105448057", }, - "configName": "Titanic Narwhal", + "configName": "Dot Matrix Snail", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "26dd2ccdc4079aca", + "hashShort": "611b17b754d0bcb7", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://102663880483207", - "indexDesc": "Found in the Forever Pack!", - "indexObtainable": true, - "name": "Titanic Chest Mimic", + "animations": { + "dotMatrix": { + "ColorA": null, + "ColorB": null, + }, + }, + "exclusiveLevel": 3, + "goldenThumbnail": "", + "name": "Dot Matrix Axolotl", "rarity": { "Announce": true, "Color": null, @@ -130231,23 +134695,30 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://121868378193136", - "titanic": true, + "thumbnail": "rbxassetid://137759357538257", }, - "configName": "Titanic Chest Mimic", + "configName": "Dot Matrix Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "fa4677994838f945", + "hashShort": "3738ffe6919be741", }, { - "category": "Titanic", + "category": "Gargantuan", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://102601522992708", - "indexDesc": "Obtained from the Time Trials Contest!", + "animations": { + "dotMatrix": { + "ColorA": null, + "ColorB": null, + }, + }, + "gargantuan": true, + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Dot Matrix Egg! + +Ground Slam - Pet will damage breakables in a large area!", "indexObtainable": true, - "name": "Titanic Empyrean Owl", + "name": "Gargantuan Dot Matrix Pegasus", "rarity": { "Announce": true, "Color": null, @@ -130260,29 +134731,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://104879205036593", - "titanic": true, + "thumbnail": "rbxassetid://133716042717345", }, - "configName": "Titanic Empyrean Owl", + "configName": "Gargantuan Dot Matrix Pegasus", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "321c697b46bf6452", + "dateModified": "2026-04-18T15:56:00.480Z", + "hashShort": "6f4d5ceda5f2c6b2", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.025, - "flyHeightChange": 0, - "swerve": true, - "swerveAggression": 0.2, - "swerveMaxAngle": 60, - }, - "exclusiveLevel": 3, - "fly": true, - "goldenThumbnail": "", - "name": "Wave Spirit", + "goldenThumbnail": "rbxassetid://81492022889764", + "huge": true, + "indexDesc": "Reward in the 2025 Tie Dye Clan Battle!", + "indexObtainable": true, + "name": "Huge Tiedye Dog", "rarity": { "Announce": true, "Color": null, @@ -130295,21 +134759,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://109804753791527", + "thumbnail": "rbxassetid://117016363569133", }, - "configName": "Wave Spirit", + "configName": "Huge Tiedye Dog", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3c634406026fd64b", + "hashShort": "f6d245129bba2360", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, "fly": true, - "goldenThumbnail": "", - "name": "Light Spirit", + "goldenThumbnail": "rbxassetid://76543717927150", + "huge": true, + "indexDesc": "Found in the 2025 St. Patrick's Day event eggs!", + "indexObtainable": true, + "name": "Huge Clover Griffin", "rarity": { "Announce": true, "Color": null, @@ -130322,21 +134788,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://81179704876613", + "thumbnail": "rbxassetid://129397965885657", }, - "configName": "Light Spirit", + "configName": "Huge Clover Griffin", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4b47799fa33f9323", + "hashShort": "d2b9de15e995a1bb", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "fly": true, - "goldenThumbnail": "", - "name": "Blossom Spirit", + "goldenThumbnail": "rbxassetid://72203256306429", + "huge": true, + "indexDesc": "Found in The Forever Pack!", + "indexObtainable": true, + "name": "Huge Hydra Axolotl", "rarity": { "Announce": true, "Color": null, @@ -130349,30 +134816,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://101941306391852", + "thumbnail": "rbxassetid://76323621337981", }, - "configName": "Blossom Spirit", + "configName": "Huge Hydra Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f6ce180d298a8981", + "hashShort": "22088fd0234a8eb0", }, { - "category": "Gargantuan", + "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.025, - "flyHeightChange": 0, - "swerve": true, - "swerveAggression": 0.2, - "swerveMaxAngle": 60, - }, - "fly": true, - "gargantuan": true, - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Spirit Egg!", + "goldenThumbnail": "rbxassetid://89378799160723", + "huge": true, + "indexDesc": "Found in The Pot of Gold Forever Pack!", "indexObtainable": true, - "name": "Gargantuan Magma Spirit", + "name": "Huge Pot of Gold Cat", "rarity": { "Announce": true, "Color": null, @@ -130385,30 +134844,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://132074129972033", + "thumbnail": "rbxassetid://123890112908568", }, - "configName": "Gargantuan Magma Spirit", + "configName": "Huge Pot of Gold Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b1848a10fb2a9f0c", + "hashShort": "31a61ddf52c424bd", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.025, - "flyHeightChange": 0, - "swerve": true, - "swerveAggression": 0.2, - "swerveMaxAngle": 60, - }, "fly": true, - "goldenThumbnail": "", + "goldenThumbnail": "rbxassetid://129229996923770", "huge": true, - "indexDesc": "Found in the Exclusive Spirit Egg!", + "indexDesc": "Earned by defeating the Tier 300 Lucky Raid Boss!", "indexObtainable": true, - "name": "Huge Wave Spirit", + "name": "Huge Clover Bee", "rarity": { "Announce": true, "Color": null, @@ -130421,23 +134873,26 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://101464830006395", + "thumbnail": "rbxassetid://92697373462590", }, - "configName": "Huge Wave Spirit", + "configName": "Huge Clover Bee", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6701423bec5382f3", + "hashShort": "a1be8ecd1399b122", }, { "category": "Huge", "collection": "Pets", "configData": { + "animations": { + "spinZ": true, + }, "fly": true, - "goldenThumbnail": "", + "goldenThumbnail": "rbxassetid://106453225511334", "huge": true, - "indexDesc": "Found in the Exclusive Spirit Egg!", + "indexDesc": "Earned by defeating the Tier 1,000 Lucky Raid Boss!", "indexObtainable": true, - "name": "Huge Blossom Spirit", + "name": "Huge Lucki Angelus", "rarity": { "Announce": true, "Color": null, @@ -130450,22 +134905,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://91486613555331", + "thumbnail": "rbxassetid://139803624702732", }, - "configName": "Huge Blossom Spirit", + "configName": "Huge Lucki Angelus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "bf767a5f558f4612", + "hashShort": "a19c0aa4426d5011", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://72634674450547", + "fly": true, + "goldenThumbnail": "rbxassetid://123175144561252", "huge": true, - "indexDesc": "Earned from the 2025 Farming Event!", + "indexDesc": "Found in the Leprechaun Chest at the end of Lucky Raids!", "indexObtainable": true, - "name": "Huge Pixel Yeti", + "name": "Huge Emerald Owl", "rarity": { "Announce": true, "Color": null, @@ -130478,23 +134934,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://131996280038414", + "thumbnail": "rbxassetid://86244728271610", }, - "configName": "Huge Pixel Yeti", + "configName": "Huge Emerald Owl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "bfca7b9b733b629b", + "hashShort": "e845d73c9ccfd1fd", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://78525431525423", + "goldenThumbnail": "rbxassetid://78046479704494", "huge": true, - "indexDesc": "Earned from the 2025 Farming Event!", + "indexDesc": "Earned from the St. Patrick's Day event leaderboard contest!", "indexObtainable": true, - "name": "Huge Pixel Agony", + "name": "Huge Leprechaun Corgi", "rarity": { "Announce": true, "Color": null, @@ -130507,22 +134962,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://85105390467566", + "thumbnail": "rbxassetid://121626640440926", }, - "configName": "Huge Pixel Agony", + "configName": "Huge Leprechaun Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7681b4333d3a62d3", + "hashShort": "11e65c80bc2c44ec", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://78972074974432", + "fly": true, + "goldenThumbnail": "rbxassetid://111837955481533", "huge": true, - "indexDesc": "Found in the Farming Forever Pack!", + "indexDesc": "Earned from the St. Patrick's Day event leaderboard contest!", "indexObtainable": true, - "name": "Huge Pixel Monkey", + "name": "Huge Wishing Dragon", "rarity": { "Announce": true, "Color": null, @@ -130535,22 +134991,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://80158581180196", + "thumbnail": "rbxassetid://106906458368266", }, - "configName": "Huge Pixel Monkey", + "configName": "Huge Wishing Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9aff10bda85b6f21", + "hashShort": "fe875542c33697b4", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://120501020943866", + "goldenThumbnail": "rbxassetid://136231403295192", "huge": true, - "indexDesc": "Earned from the 2025 Farming Event!", + "indexDesc": "Earned by defeating the Tier 100 Lucky Raid Boss!", "indexObtainable": true, - "name": "Huge Pixel Goblin", + "name": "Huge Lucki Elephant", "rarity": { "Announce": true, "Color": null, @@ -130563,26 +135019,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://122435473843216", + "thumbnail": "rbxassetid://101748445167482", }, - "configName": "Huge Pixel Goblin", + "configName": "Huge Lucki Elephant", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3a3fca7d9733a774", + "hashShort": "03d298ba896bf695", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "animations": { - "balloon": true, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://106561094516429", - "huge": true, - "indexDesc": "Reward in the 2025 Balloon Corgi Clan Battle!", + "goldenThumbnail": "rbxassetid://94667830042202", + "indexDesc": "Found in The Forever Pack!", "indexObtainable": true, - "name": "Huge Balloon Corgi", + "name": "Titanic Hydra Axolotl", "rarity": { "Announce": true, "Color": null, @@ -130595,21 +135046,26 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://135934944336063", + "thumbnail": "rbxassetid://116530316117361", + "titanic": true, }, - "configName": "Huge Balloon Corgi", + "configName": "Titanic Hydra Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "eb541ed2893a936a", + "hashShort": "b64d3f35a9c1c224", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Spirit Egg!", + "animations": { + "spinZ": true, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://78169662483276", + "indexDesc": "Earned by defeating the Tier 1,000 Lucky Raid Boss!", "indexObtainable": true, - "name": "Titanic Wood Spirit", + "name": "Titanic Lucki Angelus", "rarity": { "Announce": true, "Color": null, @@ -130622,26 +135078,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://125083583849659", + "thumbnail": "rbxassetid://140159437559092", "titanic": true, }, - "configName": "Titanic Wood Spirit", + "configName": "Titanic Lucki Angelus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7f9ef013c695e6b5", + "hashShort": "327be519d5f26ae6", }, { "category": "Titanic", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - }, "fly": true, - "goldenThumbnail": "rbxassetid://125960282340087", - "indexDesc": "Earned from the 2025 Farming Event!", + "goldenThumbnail": "rbxassetid://93105033492234", + "indexDesc": "Earned from the St. Patrick's Day event leaderboard contest!", "indexObtainable": true, - "name": "Titanic Pixel Angelus", + "name": "Titanic Wishing Dragon", "rarity": { "Announce": true, "Color": null, @@ -130654,345 +135107,500 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://103752775543007", + "thumbnail": "rbxassetid://133278674561506", "titanic": true, }, - "configName": "Titanic Pixel Angelus", + "configName": "Titanic Wishing Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b988271b40ef427b", + "hashShort": "e6f19a47c9a8d5f2", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://16250877669", - "name": "Diamond Dog", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://16250877568", + "cachedPower": [ + 154260085476455, + 164384197399334, + 173542596161012, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968275684", + "name": "Lucki Agony", + "thumbnail": "rbxassetid://14968275778", }, - "configName": "Diamond Dog", + "configName": "Lucki Agony", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b2a83373a3cd02c3", + "dateModified": "2026-06-27T16:05:25.682Z", + "hashShort": "17c27bd9a8a6f020", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 481324867738792, + 154089464011432, + 164042954469286, + 173350647012861, ], "fly": true, - "fromEgg": "Twilight Grove Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 250, - "goldenThumbnail": "rbxassetid://83509357674494", - "maxChance": 0.9, - "name": "Sprout Pegasus", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - "thumbnail": "rbxassetid://98017431135809", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://82899609699791", + "name": "Emerald Owl", + "thumbnail": "rbxassetid://102569224681414", }, - "configName": "Sprout Pegasus", + "configName": "Emerald Owl", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "89c6b0c75c189158", + "dateModified": "2026-06-27T16:05:43.867Z", + "hashShort": "62c059c925d5a3a7", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 447056667259778, + 153667901477279, ], - "fromEgg": "Twilight Grove Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 250, - "goldenThumbnail": "rbxassetid://118781707548312", - "maxChance": 0.9, - "name": "Glimmercap Turtle", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://98612561193858", + "name": "Leprechaun Corgi", + "thumbnail": "rbxassetid://94825916121197", + }, + "configName": "Leprechaun Corgi", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "70d05c6e197a0ad8", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "spinZ": true, }, - "thumbnail": "rbxassetid://114375628222082", + "cachedPower": [ + 154765739015459, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://79144895549039", + "name": "Lucki Angelus", + "thumbnail": "rbxassetid://90493602438892", }, - "configName": "Glimmercap Turtle", + "configName": "Lucki Angelus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "edbebfb1e9baf5cd", + "hashShort": "e22b1a0bb399134f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 643922408248327, + 153590522308691, ], - "fromEgg": "Starroot Oak Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 252, - "goldenThumbnail": "rbxassetid://125853396305075", - "maxChance": 0.08991008991008992, - "name": "Starry Eye Bunny", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - "thumbnail": "rbxassetid://79112231149984", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://124838982302199", + "name": "Lucki Elephant", + "thumbnail": "rbxassetid://125873942319354", }, - "configName": "Starry Eye Bunny", + "configName": "Lucki Elephant", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "162970fa8caa32a7", + "hashShort": "485cf801ba2e29f4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 572359357405787, + 153512899425785, ], - "fromEgg": "Moonlight Ridge Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 251, - "goldenThumbnail": "rbxassetid://70889812465887", - "maxChance": 0.8991008991008992, - "name": "Rootkin Fox", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - "thumbnail": "rbxassetid://121289968511149", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://119112793102736", + "name": "Lucki Bunny", + "thumbnail": "rbxassetid://101962619406517", }, - "configName": "Rootkin Fox", + "configName": "Lucki Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "fa112f7269a4a988", + "hashShort": "a187e4cb2d28e4b6", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 508763873249588, + 153745038457149, ], - "fromEgg": "Twilight Grove Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 250, - "goldenThumbnail": "rbxassetid://74578624494513", - "maxChance": 0.8991008991008992, - "name": "Meteor Mole", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - "thumbnail": "rbxassetid://119822151998946", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://117314816219748", + "name": "Horseshoe Crab", + "thumbnail": "rbxassetid://80414589872638", }, - "configName": "Meteor Mole", + "configName": "Horseshoe Crab", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "93c399500e566c17", + "hashShort": "b78496fc6b6140d5", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 972700236424001, + 154429663378592, + 164723353203607, + 173733371300916, ], "fly": true, - "fromEgg": "Crescent Moon Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 254, - "goldenThumbnail": "rbxassetid://124938966942585", - "maxChance": 0.000009989907695750369, - "name": "Telescope Owl", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://73161274488659", + "name": "Wishing Dragon", + "thumbnail": "rbxassetid://123146990640983", + }, + "configName": "Wishing Dragon", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.862Z", + "hashShort": "59e2a051c0356435", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 153917786060019, + 163699598566460, + 173157509317521, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://117022617688201", + "name": "Clover Griffin", + "thumbnail": "rbxassetid://83133369856634", + }, + "configName": "Clover Griffin", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.873Z", + "hashShort": "879c88dc6853349c", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 153481781688129, + 163156660783956, + 172667004399146, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://83653024525779", + "name": "Clover Bee", + "thumbnail": "rbxassetid://139480259905097", + }, + "configName": "Clover Bee", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.869Z", + "hashShort": "608cdaba2ec64125", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://91076098978665", + "name": "Kaiju Volcano", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://98284750058098", + "thumbnail": "rbxassetid://101340449423952", }, - "configName": "Telescope Owl", + "configName": "Kaiju Volcano", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "18cff85c0996771d", + "hashShort": "0c47bc4e4fd322a3", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 772285772869481, - ], - "fromEgg": "Aether Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 253, - "goldenThumbnail": "rbxassetid://139279715483574", - "maxChance": 0.09090816003132836, - "name": "Wisp Wolf", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://127540284925826", + "name": "Kaiju Sea Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://92321682149350", + "thumbnail": "rbxassetid://105586421223527", }, - "configName": "Wisp Wolf", + "configName": "Kaiju Sea Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2d41365d3931c043", + "hashShort": "5f88d48e608eb223", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 686476242550650, + 154932261441361, + 165728549329146, + 174298794121532, ], - "fly": true, - "fromEgg": "Starroot Oak Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 252, - "goldenThumbnail": "rbxassetid://105569614209982", - "maxChance": 0.9090816003132836, - "name": "Scroll Dragon", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://80900220192797", + "name": "Fragmented Golem", + "thumbnail": "rbxassetid://79467586113278", + }, + "configName": "Fragmented Golem", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.869Z", + "hashShort": "59d3e9b86b5d6c70", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 154765739015459, + 165395504477342, + 174111456392392, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://88966220691911", + "name": "Jungle Golem", + "thumbnail": "rbxassetid://94359397613247", + }, + "configName": "Jungle Golem", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.872Z", + "hashShort": "b65e42b11b7d05e6", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "flyHeight": 0.025, + "flyHeightChange": 0, + "swerve": false, + "swerveAggression": 1, + "swerveMaxAngle": 60, }, - "thumbnail": "rbxassetid://100018564516934", + "cachedPower": [ + 153745038457149, + 163354103360721, + 172963168264292, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://85826572332689", + "name": "Minecart Hamster", + "thumbnail": "rbxassetid://94241789871737", }, - "configName": "Scroll Dragon", + "configName": "Minecart Hamster", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "45a3f6e3270f48ed", + "dateModified": "2026-06-27T16:05:43.855Z", + "hashShort": "aa594b67d988a6ee", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1035349022339360, + 155425910693599, + 166715847833621, + 174854149530299, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://116419627397949", + "name": "Abyss Carbuncle", + "thumbnail": "rbxassetid://132835629822914", + }, + "configName": "Abyss Carbuncle", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.859Z", + "hashShort": "3cffe143f676d7b4", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 153435031288497, + 163121597984232, + 172614410199559, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://73168468310625", + "name": "Mining Penguin", + "thumbnail": "rbxassetid://135904679485668", + }, + "configName": "Mining Penguin", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.868Z", + "hashShort": "994713172aacab75", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 154089464011432, + 164042954469286, + 173350647012861, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://93052620010433", + "name": "Crystal Spider", + "thumbnail": "rbxassetid://98426075610969", + }, + "configName": "Crystal Spider", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.855Z", + "hashShort": "142caa64cfbb0feb", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 153121074877797, + 162886130676207, + 172261209237522, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://129006327954262", + "name": "Mining Raccoon", + "thumbnail": "rbxassetid://120972875093348", + }, + "configName": "Mining Raccoon", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.870Z", + "hashShort": "449c084c0e44a06f", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 154429663378592, + 164723353203607, + 173733371300916, ], "fly": true, - "fromEgg": "Crescent Moon Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 254, - "goldenThumbnail": "rbxassetid://115106268978557", - "maxChance": 2.497476923937592e-7, - "name": "Starlight Pony", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://94069014409916", + "name": "Crystal Bat", + "thumbnail": "rbxassetid://96230769745826", + }, + "configName": "Crystal Bat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.856Z", + "hashShort": "95348f229a532690", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 155097789697603, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://100049514849518", + "name": "Abstract Dominus", + "thumbnail": "rbxassetid://78101983924468", + }, + "configName": "Abstract Dominus", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "d6ac1aee48aeaa8a", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://88113076176074", + "name": "Kaiju Hydra", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://122718577025010", + "thumbnail": "rbxassetid://97508264722074", }, - "configName": "Starlight Pony", + "configName": "Kaiju Hydra", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "98f73aecaf810c05", + "hashShort": "94f8bdc7850a6617", }, { "category": "Gargantuan", "collection": "Pets", "configData": { + "animations": { + "customAnimations": true, + "idleActionAnimations": [ + [ + "CorgiJumping", + 0.5, + ], + ], + "ridingJumpPower": 125, + }, "fly": true, - "flyingTitanic": true, "gargantuan": true, - "goldenThumbnail": "rbxassetid://87724546309932", - "indexDesc": "Found in the Combine-O-Matic! + "goldenThumbnail": "rbxassetid://111236540845186", + "indexDesc": "Earned from the Combine-O-Matic! Ground Slam - Pet will damage breakables in a large area!", "indexObtainable": true, - "name": "Gargantuan Dark Dragon", + "name": "Gargantuan Hellish Axolotl", "rarity": { "Announce": true, "Color": null, @@ -131005,25 +135613,34 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://100327262559787", + "thumbnail": "rbxassetid://74041646461593", }, - "configName": "Gargantuan Dark Dragon", + "configName": "Gargantuan Hellish Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "bebaed3f8020ee2f", + "hashShort": "485a8e3e5d67a5d4", }, { "category": "Gargantuan", "collection": "Pets", "configData": { - "fly": true, + "animations": { + "customAnimations": true, + "idleActionAnimations": [ + [ + "CorgiJumping", + 0.5, + ], + ], + "ridingJumpPower": 125, + }, "gargantuan": true, - "goldenThumbnail": "rbxassetid://82214551800846", - "indexDesc": "Found in the Exclusive Raffle! + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Kaiju Egg! Ground Slam - Pet will damage breakables in a large area!", "indexObtainable": true, - "name": "Gargantuan Exquisite Parrot", + "name": "Gargantuan Kaiju King", "rarity": { "Announce": true, "Color": null, @@ -131036,22 +135653,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://112010823795135", + "thumbnail": "rbxassetid://122037254674435", }, - "configName": "Gargantuan Exquisite Parrot", + "configName": "Gargantuan Kaiju King", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "82402e276f621a69", + "hashShort": "e3ee79192d094512", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://16250896828", + "goldenThumbnail": "rbxassetid://139465239417636", "huge": true, - "indexDesc": "Chance to get from purchasing high-end Diamond packs!", + "indexDesc": "Earned from the 2025 Mining Event!", "indexObtainable": true, - "name": "Huge Diamond Dog", + "name": "Huge Mining Penguin", "rarity": { "Announce": true, "Color": null, @@ -131064,22 +135681,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://16250896717", + "thumbnail": "rbxassetid://107393069000800", }, - "configName": "Huge Diamond Dog", + "configName": "Huge Mining Penguin", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "fb9615e18ca1be54", + "hashShort": "86650d2b40f24154", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://140328101597636", + "goldenThumbnail": "rbxassetid://70592879555241", "huge": true, - "indexDesc": "Found in the Time Trials Chests!", + "indexDesc": "Earned from the 2025 Mining Event!", "indexObtainable": true, - "name": "Huge Starry Eye Bunny", + "name": "Huge Crystal Spider", "rarity": { "Announce": true, "Color": null, @@ -131092,23 +135709,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://85579743157375", + "thumbnail": "rbxassetid://78631219465603", }, - "configName": "Huge Starry Eye Bunny", + "configName": "Huge Crystal Spider", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a4b251e4498784b2", + "hashShort": "850078448a344f06", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://105870206158937", + "goldenThumbnail": "rbxassetid://124123306751895", "huge": true, - "indexDesc": "Found in the Farming World's weight contest!", + "indexDesc": "Earned from the 2025 Mining Event!", "indexObtainable": true, - "name": "Huge Pixel Griffin", + "name": "Huge Fragmented Golem", "rarity": { "Announce": true, "Color": null, @@ -131121,22 +135737,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://95210896396972", + "thumbnail": "rbxassetid://104056264494147", }, - "configName": "Huge Pixel Griffin", + "configName": "Huge Fragmented Golem", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2f3b482b0bb108c9", + "hashShort": "393ff07f056cd137", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://76452507134272", + "goldenThumbnail": "rbxassetid://125398970610563", "huge": true, - "indexDesc": "Found by hatching eggs in the Farming World!", + "indexDesc": "Found in the Exclusive Kaiju Egg!", "indexObtainable": true, - "name": "Huge Pixel Otter", + "name": "Huge Kaiju Sea Dragon", "rarity": { "Announce": true, "Color": null, @@ -131149,23 +135765,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://98175499956412", + "thumbnail": "rbxassetid://77556334425969", }, - "configName": "Huge Pixel Otter", + "configName": "Huge Kaiju Sea Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "47937c639d0faef0", + "hashShort": "2fb022ef4ee7def1", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://95594527175303", + "goldenThumbnail": "rbxassetid://116779986656695", "huge": true, - "indexDesc": "Earned from the 2025 Farming Event!", + "indexDesc": "Found in the Exclusive Kaiju Egg!", "indexObtainable": true, - "name": "Huge Pixel Shadow Griffin", + "name": "Huge Kaiju Hydra", "rarity": { "Announce": true, "Color": null, @@ -131178,23 +135793,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://138870297063423", + "thumbnail": "rbxassetid://104819925091161", }, - "configName": "Huge Pixel Shadow Griffin", + "configName": "Huge Kaiju Hydra", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "15e014fd9edb46cc", + "hashShort": "ebfc3b37d40ba244", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://113681719880388", + "goldenThumbnail": "rbxassetid://104529894966052", "huge": true, - "indexDesc": "Found in the Farming Exclusive M-2 PROTOTYPE Egg!", + "indexDesc": "Found in The Gem Forever Pack!", "indexObtainable": true, - "name": "Huge Pixel M-2 PROTOTYPE", + "name": "Huge Abstract Dominus", "rarity": { "Announce": true, "Color": null, @@ -131207,23 +135821,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://114437689272259", + "thumbnail": "rbxassetid://138676503703270", }, - "configName": "Huge Pixel M-2 PROTOTYPE", + "configName": "Huge Abstract Dominus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b360d7218ceef6a3", + "hashShort": "d07476bc3eb84260", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://86691040324457", + "goldenThumbnail": "rbxassetid://94818260225356", "huge": true, - "indexDesc": "Found in the Time Trials Chests!", + "indexDesc": "Earned from the Mining Event's final egg!", "indexObtainable": true, - "name": "Huge Telescope Owl", + "name": "Huge Mining Raccoon", "rarity": { "Announce": true, "Color": null, @@ -131236,22 +135849,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://81492004583287", + "thumbnail": "rbxassetid://81824551142457", }, - "configName": "Huge Telescope Owl", + "configName": "Huge Mining Raccoon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a71ec835bb2bbf01", + "hashShort": "4bc89e14bcd0f480", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://102060419488885", - "huge": true, - "indexDesc": "Earned from the 2025 Farming Event!", + "goldenThumbnail": "rbxassetid://80517635638750", + "indexDesc": "Earned from the 2025 Mining Event!", "indexObtainable": true, - "name": "Huge Pixel Capybara", + "name": "Titanic Abyss Carbuncle", "rarity": { "Announce": true, "Color": null, @@ -131264,23 +135876,25 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://120551262539366", + "thumbnail": "rbxassetid://121024391063626", + "titanic": true, }, - "configName": "Huge Pixel Capybara", + "configName": "Titanic Abyss Carbuncle", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "badf4c297855dfed", + "hashShort": "333cb5e7a8e87c5d", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://127334098152762", - "huge": true, - "indexDesc": "Earned from the 2025 Farming Event!", + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Kaiju Egg!", "indexObtainable": true, - "name": "Huge Pixel Bee", + "name": "Titanic Kaiju Moth", "rarity": { "Announce": true, "Color": null, @@ -131293,22 +135907,132 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://123894797425389", + "thumbnail": "rbxassetid://119404602163936", + "titanic": true, }, - "configName": "Huge Pixel Bee", + "configName": "Titanic Kaiju Moth", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1e1cb3533f481d17", + "hashShort": "31ee6db82be51240", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "flyHeight": 0.025, + "flyHeightChange": 0, + "swerve": false, + "swerveAggression": 1, + "swerveMaxAngle": 60, + }, + "cachedPower": [ + 155507337772884, + 166878701992190, + 174945754994494, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://110696479826653", + "name": "Minecart Piggy", + "thumbnail": "rbxassetid://103401326689920", + }, + "configName": "Minecart Piggy", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:18.114Z", + "hashShort": "8233c2d176b2d613", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 155910924237608, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://92566404806568", + "name": "Obsidian Dragon", + "thumbnail": "rbxassetid://96188993012517", + }, + "configName": "Obsidian Dragon", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "d11b8fa25507baef", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 155750193929112, + 167364414304648, + 175218968170251, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://122114953406844", + "name": "Mining Robot", + "thumbnail": "rbxassetid://72532850179934", + }, + "configName": "Mining Robot", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.877Z", + "hashShort": "79686f4750e609c1", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 155669478004368, + 167202982455158, + 175128162754914, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://109354669585552", + "name": "Gem Mole", + "thumbnail": "rbxassetid://112063500716118", + }, + "configName": "Gem Mole", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:28.070Z", + "hashShort": "f303679a2be661be", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 155588526412356, + 167041079271134, + 175037092213900, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://77550893935395", + "name": "Mining Monkey", + "thumbnail": "rbxassetid://88029144941526", + }, + "configName": "Mining Monkey", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:21.604Z", + "hashShort": "2283d8251d8b9d25", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://130492854781431", + "fly": true, + "goldenThumbnail": "rbxassetid://99383545915892", "huge": true, - "indexDesc": "Found in the Farming Forever Pack!", + "indexDesc": "Reward in the 2025 Athena Clan Battle!", "indexObtainable": true, - "name": "Huge Pixel Sad Cat", + "name": "Huge Athena Owl", "rarity": { "Announce": true, "Color": null, @@ -131321,22 +136045,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://132317712200378", + "thumbnail": "rbxassetid://117588896362117", }, - "configName": "Huge Pixel Sad Cat", + "configName": "Huge Athena Owl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ccce17a4eda242e5", + "hashShort": "986f382a9771269a", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://86841677202843", + "goldenThumbnail": "rbxassetid://76554824229150", "huge": true, - "indexDesc": "Found in the final zone of Fantasy World!", + "indexDesc": "Earned from the 2025 Mining Event!", "indexObtainable": true, - "name": "Huge Rootkin Fox", + "name": "Huge Jungle Golem", "rarity": { "Announce": true, "Color": null, @@ -131349,22 +136073,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://76545663190754", + "thumbnail": "rbxassetid://125686962742036", }, - "configName": "Huge Rootkin Fox", + "configName": "Huge Jungle Golem", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ed8a42e25bca7085", + "hashShort": "ba1e647a016a131c", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://122536694424506", - "indexDesc": "Found in the Time Trials Chests!", + "goldenThumbnail": "rbxassetid://121635064299672", + "huge": true, + "indexDesc": "Earned from the 2025 Mining Event!", "indexObtainable": true, - "name": "Titanic Starlight Pony", + "name": "Huge Crystal Bat", "rarity": { "Announce": true, "Color": null, @@ -131377,23 +136102,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://130735528136584", - "titanic": true, + "thumbnail": "rbxassetid://123270270237540", }, - "configName": "Titanic Starlight Pony", + "configName": "Huge Crystal Bat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a7ed61aca587dd8e", + "hashShort": "7e3b5b16341ca9f9", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://90478147806605", - "indexDesc": "Earned from the 2025 Farming Event!", + "goldenThumbnail": "rbxassetid://104634632776696", + "huge": true, + "indexDesc": "Earned from the 2025 Mining Event!", "indexObtainable": true, - "name": "Titanic Pixel Agony", + "name": "Huge Mining Monkey", "rarity": { "Announce": true, "Color": null, @@ -131406,22 +136130,30 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://79227180725829", - "titanic": true, + "thumbnail": "rbxassetid://103555083432476", }, - "configName": "Titanic Pixel Agony", + "configName": "Huge Mining Monkey", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2fa94e8fcbde9570", + "hashShort": "a094ccbc11981f37", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://109955211622378", - "indexDesc": "Found in the Farming World's weight contest!", + "animations": { + "flyHeight": 0.025, + "flyHeightChange": 0, + "swerve": false, + "swerveAggression": 1, + "swerveMaxAngle": 60, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://99743944531032", + "huge": true, + "indexDesc": "Found in The Rift Forever Pack!", "indexObtainable": true, - "name": "Titanic Pixel Dominus Astra", + "name": "Huge Minecart Piggy", "rarity": { "Announce": true, "Color": null, @@ -131434,22 +136166,30 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://129315342087717", - "titanic": true, + "thumbnail": "rbxassetid://106752259915805", }, - "configName": "Titanic Pixel Dominus Astra", + "configName": "Huge Minecart Piggy", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "71197eac32f34aa2", + "hashShort": "d775c21debc9c39b", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://103486073608583", - "indexDesc": "Found by hatching eggs in the Farming World!", + "animations": { + "flyHeight": 0.025, + "flyHeightChange": 0, + "swerve": false, + "swerveAggression": 1, + "swerveMaxAngle": 60, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://70465307594864", + "huge": true, + "indexDesc": "Earned from the Mining Event's final egg!", "indexObtainable": true, - "name": "Titanic Pixel Monkey", + "name": "Huge Minecart Hamster", "rarity": { "Announce": true, "Color": null, @@ -131462,22 +136202,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://109746451259530", - "titanic": true, + "thumbnail": "rbxassetid://106601892793198", }, - "configName": "Titanic Pixel Monkey", + "configName": "Huge Minecart Hamster", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "cd83ed561d4da168", + "hashShort": "fedd1d6e581bc45c", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://120419472182294", - "indexDesc": "Chance to get from purchasing high-end Diamond packs!", + "fly": true, + "goldenThumbnail": "rbxassetid://103479252428904", + "huge": true, + "indexDesc": "Found in the 2025 Mining Event!", "indexObtainable": true, - "name": "Titanic Diamond Dog", + "name": "Huge Mining Robot", "rarity": { "Announce": true, "Color": null, @@ -131490,22 +136231,51 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://95245493036006", - "titanic": true, + "thumbnail": "rbxassetid://96864197207210", }, - "configName": "Titanic Diamond Dog", + "configName": "Huge Mining Robot", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "21fcbfa88aacb0d1", + "hashShort": "55e39bf37d93ce0a", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://124471870709890", + "huge": true, + "indexDesc": "Found in the Clan Gift #2!", + "indexObtainable": true, + "name": "Huge Lightning Bat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://94725312781292", + }, + "configName": "Huge Lightning Bat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "fce43d6eefb47362", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://120267988715843", - "indexDesc": "Found in the Exclusive Raffle!", + "fly": true, + "goldenThumbnail": "rbxassetid://78716856822876", + "indexDesc": "Earned from the 2025 Mining Event!", "indexObtainable": true, - "name": "Titanic Exquisite Cat", + "name": "Titanic Obsidian Dragon", "rarity": { "Announce": true, "Color": null, @@ -131518,23 +136288,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://71126391222560", + "thumbnail": "rbxassetid://98113510502520", "titanic": true, }, - "configName": "Titanic Exquisite Cat", + "configName": "Titanic Obsidian Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c3fb6878c1398139", + "hashShort": "04eb2f723015d6b5", }, { "category": "Titanic", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://75313078930604", - "indexDesc": "Found in the Farming Exclusive Titanic M-2 PROTOTYPE Egg!", + "goldenThumbnail": "rbxassetid://99026845569717", + "indexDesc": "Reward in 2025 April, May, & June Clan Battles!", "indexObtainable": true, - "name": "Titanic Pixel M-2 PROTOTYPE", + "name": "Titanic Mosaic Cat", "rarity": { "Announce": true, "Color": null, @@ -131547,253 +136316,306 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://78274935877224", + "thumbnail": "rbxassetid://121979531633033", "titanic": true, }, - "configName": "Titanic Pixel M-2 PROTOTYPE", + "configName": "Titanic Mosaic Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a57d10b96593cbf7", + "hashShort": "8d4c4aed00a575bc", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 555426189236975, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 252, - "goldenThumbnail": "rbxassetid://100089931068990", - "name": "Electric Bunny Ball", - "thumbnail": "rbxassetid://88753213320794", - "yeetPower": 450, + "exclusiveLevel": 3, + "goldenThumbnail": "", + "name": "Claw Beast", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://117127490935946", }, - "configName": "Electric Bunny Ball", + "configName": "Claw Beast", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a4c282b08ae5b481", + "hashShort": "8bc46f0b3cdc92b4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 561666932936267, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 252, - "goldenThumbnail": "rbxassetid://73714618335491", - "name": "Hippomelon Ball", - "thumbnail": "rbxassetid://106362093464550", - "yeetPower": 300000, + "exclusiveLevel": 2, + "goldenThumbnail": "", + "name": "Feral Beast", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://83480256607391", }, - "configName": "Hippomelon Ball", + "configName": "Feral Beast", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ed93f9a30035276e", + "hashShort": "ba72d2fccbff7c5e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 524222470740516, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 252, - "goldenThumbnail": "rbxassetid://101981104610427", - "name": "UV Kitsune Ball", - "thumbnail": "rbxassetid://125855245596038", - "yeetPower": 50, + "exclusiveLevel": 1, + "goldenThumbnail": "", + "name": "Snuggle Beast", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://93740180159506", }, - "configName": "UV Kitsune Ball", + "configName": "Snuggle Beast", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2b5047703bca53de", + "hashShort": "f78819f5e3667d88", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "jelly": true, + }, "cachedPower": [ - 499259495943348, + 156070728141488, + 168005482729399, + 175579569159174, ], - "fromWorldNumber": 4, - "fromZoneNumber": 252, - "goldenThumbnail": "rbxassetid://83883274965469", - "name": "Basketball Corgi", - "thumbnail": "rbxassetid://109035083604183", - "yeetPower": 12, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://138042222582542", + "name": "Jelly Hydra", + "thumbnail": "rbxassetid://122936672467216", }, - "configName": "Basketball Corgi", + "configName": "Jelly Hydra", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6c33be375bd7af12", + "dateModified": "2026-06-27T16:05:21.616Z", + "hashShort": "dfd9b37ab97c3bb8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 549185445537684, + 156544686701073, + 168953399848568, + 176112772538707, ], - "fromWorldNumber": 4, - "fromZoneNumber": 252, - "goldenThumbnail": "rbxassetid://123460115247306", - "name": "Blurred Bear Ball", - "thumbnail": "rbxassetid://112435188208455", - "yeetPower": 5000, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://95296008744223", + "name": "Jelly Wizard", + "thumbnail": "rbxassetid://111174482679172", }, - "configName": "Blurred Bear Ball", + "configName": "Jelly Wizard", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c1be21c83049d6ad", + "dateModified": "2026-06-27T16:05:21.625Z", + "hashShort": "57326fb155e76237", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "jelly": true, + }, "cachedPower": [ - 530463214439808, + 155910924237608, + 167685874921639, + 175399789767309, ], - "fromWorldNumber": 4, - "fromZoneNumber": 252, - "goldenThumbnail": "rbxassetid://91941747932069", - "name": "Meebo The Alien Ball", - "thumbnail": "rbxassetid://77564665928670", - "yeetPower": 1800, + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://82448931775848", + "name": "Jelly Butterfly", + "thumbnail": "rbxassetid://116971016735415", }, - "configName": "Meebo The Alien Ball", + "configName": "Jelly Butterfly", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8b26e32011d7480a", + "dateModified": "2026-06-27T16:05:21.627Z", + "hashShort": "065ed31f3d157aa6", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "jelly": true, + }, "cachedPower": [ - 536703958139099, + 156229616258656, + 168323258963735, + 175758318290988, ], - "fromWorldNumber": 4, - "fromZoneNumber": 252, - "goldenThumbnail": "rbxassetid://123395760220218", - "name": "Comet Cyclops Ball", - "thumbnail": "rbxassetid://119443690290433", - "yeetPower": 24000, + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://130792031251610", + "name": "Firegel Dragon", + "thumbnail": "rbxassetid://82548535412143", }, - "configName": "Comet Cyclops Ball", + "configName": "Firegel Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "84fb1f834508c03d", + "dateModified": "2026-06-27T16:05:21.629Z", + "hashShort": "ee9d3a207709128a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 511740983341931, + 154932261441361, + 165728549329146, + 174298794121532, ], - "fly": true, - "fromWorldNumber": 4, - "fromZoneNumber": 252, - "goldenThumbnail": "rbxassetid://95355661856168", - "name": "Kawaii Dragon Ball", - "thumbnail": "rbxassetid://106721596264899", - "yeetPower": 20, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://127227271800504", + "name": "Ooze Axolotl", + "thumbnail": "rbxassetid://73427382084349", }, - "configName": "Kawaii Dragon Ball", + "configName": "Ooze Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a26e696cf5f82fd7", + "dateModified": "2026-06-27T16:05:21.616Z", + "hashShort": "12c97abfe308d8c3", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 505500239642640, + 154598210405653, + 165060447257730, + 173922986706360, ], - "fromWorldNumber": 4, - "fromZoneNumber": 252, - "goldenThumbnail": "rbxassetid://123220498289638", - "name": "Strawberry Cow Ball", - "thumbnail": "rbxassetid://92202394698044", - "yeetPower": 16, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://84504081438266", + "name": "Spotted Elephant", + "thumbnail": "rbxassetid://119711541738088", }, - "configName": "Strawberry Cow Ball", + "configName": "Spotted Elephant", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7835b34228392723", + "dateModified": "2026-06-27T16:05:25.620Z", + "hashShort": "b099a59a978a883c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 517981727041225, + 155262335584523, + 166388697615468, + 174670127532588, ], - "fromWorldNumber": 4, - "fromZoneNumber": 252, - "goldenThumbnail": "rbxassetid://93235225327123", - "name": "Storm Axolotl Ball", - "thumbnail": "rbxassetid://93329920424768", - "yeetPower": 150, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://107332679098384", + "name": "Ooze Corgi", + "thumbnail": "rbxassetid://127981604630764", }, - "configName": "Storm Axolotl Ball", + "configName": "Ooze Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "fcf75b7c45ab8f76", + "dateModified": "2026-06-27T16:05:25.629Z", + "hashShort": "a9681f9584799742", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "customAnimations": true, - }, "cachedPower": [ - 493712168210645, + 155588526412356, + 167041079271134, + 175037092213900, ], - "fromWorldNumber": 4, - "fromZoneNumber": 252, - "goldenThumbnail": "rbxassetid://90461260609365", - "name": "Basketball Cat", - "thumbnail": "rbxassetid://110050529640840", - "yeetPower": 10, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://72243117947688", + "name": "Knight Slime", + "thumbnail": "rbxassetid://130223999745973", }, - "configName": "Basketball Cat", + "configName": "Knight Slime", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "99c63617fda6eb8f", + "dateModified": "2026-06-27T16:05:25.620Z", + "hashShort": "cc93f6231dfa8eba", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "balloon": true, "cachedPower": [ - 542944701838391, + 155750193929112, + 167364414304648, + 175218968170251, ], - "fromWorldNumber": 4, - "fromZoneNumber": 252, - "goldenThumbnail": "rbxassetid://94742205746597", - "name": "Glitched Cat Ball", - "thumbnail": "rbxassetid://107843438483464", - "yeetPower": 80000, + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://128232868135952", + "name": "Bubble Cat", + "thumbnail": "rbxassetid://105853810671525", }, - "configName": "Glitched Cat Ball", + "configName": "Bubble Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8ff6c3261f76d91f", + "dateModified": "2026-06-27T16:05:25.632Z", + "hashShort": "81061408f7994ce5", }, { - "category": "Uncategorized", + "category": "Gargantuan", "collection": "Pets", "configData": { - "exclusiveLevel": 3, + "animations": { + "customAnimations": true, + "idleActionAnimations": [ + [ + "CorgiJumping", + 0.5, + ], + ], + "ridingJumpPower": 125, + }, + "gargantuan": true, "goldenThumbnail": "", - "name": "Yin-Yang Bunny", + "indexDesc": "Found in the Exclusive Beast Egg! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Royal Beast", "rarity": { "Announce": true, "Color": null, @@ -131806,21 +136628,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://92814709755524", + "thumbnail": "rbxassetid://120268942762821", }, - "configName": "Yin-Yang Bunny", + "configName": "Gargantuan Royal Beast", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b2512809773291b0", + "hashShort": "288dec701fa5ada2", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "fly": true, "goldenThumbnail": "", - "name": "Yin-Yang Dragon", + "huge": true, + "indexDesc": "Found in the Exclusive Beast Egg!", + "indexObtainable": true, + "name": "Huge Claw Beast", "rarity": { "Announce": true, "Color": null, @@ -131833,21 +136656,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://75219124827136", + "thumbnail": "rbxassetid://102986417616097", }, - "configName": "Yin-Yang Dragon", + "configName": "Huge Claw Beast", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "834b54cac323d3e8", + "hashShort": "fd645cb9bc6fd448", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "fly": true, "goldenThumbnail": "", - "name": "Yin-Yang Griffin", + "huge": true, + "indexDesc": "Found in the Exclusive Beast Egg!", + "indexObtainable": true, + "name": "Huge Snuggle Beast", "rarity": { "Announce": true, "Color": null, @@ -131860,24 +136684,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://89062746959891", + "thumbnail": "rbxassetid://121269844135033", }, - "configName": "Yin-Yang Griffin", + "configName": "Huge Snuggle Beast", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "93a51c7db82cd90c", + "hashShort": "bc0277e19fbec747", }, { - "category": "Gargantuan", + "category": "Huge", "collection": "Pets", "configData": { - "gargantuan": true, - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Yin-Yang Egg! - -Ground Slam - Pet will damage breakables in a large area!", + "goldenThumbnail": "rbxassetid://130216899532463", + "huge": true, + "indexDesc": "Found in the Slime Factory's final egg!", "indexObtainable": true, - "name": "Gargantuan Yin-Yang Kitsune", + "name": "Huge Ooze Corgi", "rarity": { "Announce": true, "Color": null, @@ -131890,22 +136712,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://90918977215657", + "thumbnail": "rbxassetid://140383295631296", }, - "configName": "Gargantuan Yin-Yang Kitsune", + "configName": "Huge Ooze Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7ef5955a25a6dbf6", + "hashShort": "e593c21e6e4ff662", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://81389984562273", + "goldenThumbnail": "rbxassetid://90451883201045", "huge": true, - "indexDesc": "Found by earning points in the Infinite Basketball Mode!", + "indexDesc": "Found in the Slime Factory's breakable drops!", "indexObtainable": true, - "name": "Huge Basketball Corgi", + "name": "Huge Ooze Axolotl", "rarity": { "Announce": true, "Color": null, @@ -131918,22 +136740,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://88019287527866", + "thumbnail": "rbxassetid://131381022373439", }, - "configName": "Huge Basketball Corgi", + "configName": "Huge Ooze Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "cf63b982cb7fd1b0", + "hashShort": "9240cc699083a6b2", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://77737436698372", + "goldenThumbnail": "rbxassetid://95111624439547", "huge": true, - "indexDesc": "Found in the Basketball Forever Pack!", + "indexDesc": "Found in the Slime Factory's HUGE Chest!", "indexObtainable": true, - "name": "Huge Storm Axolotl Ball", + "name": "Huge Knight Slime", "rarity": { "Announce": true, "Color": null, @@ -131946,22 +136768,26 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://123709369335154", + "thumbnail": "rbxassetid://93884562630486", }, - "configName": "Huge Storm Axolotl Ball", + "configName": "Huge Knight Slime", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2f1efc771c5aebb3", + "hashShort": "56f5e8106f8f63d0", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://79897170213295", + "animations": { + "jelly": true, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://70970220573725", "huge": true, - "indexDesc": "Found in the Basketball Egg!", + "indexDesc": "Found in the Slime Factory's FRIEND Chest!", "indexObtainable": true, - "name": "Huge Electric Bunny Ball", + "name": "Huge Jelly Butterfly", "rarity": { "Announce": true, "Color": null, @@ -131974,22 +136800,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://102519001047451", + "thumbnail": "rbxassetid://119227116644693", }, - "configName": "Huge Electric Bunny Ball", + "configName": "Huge Jelly Butterfly", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "12029760cb520b03", + "hashShort": "038b5c85a3c0694b", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://87376825839988", + "goldenThumbnail": "rbxassetid://90321619503950", "huge": true, - "indexDesc": "Reward in the 2025 Basketball Clan Battle!", + "indexDesc": "Found in the Slime Factory's HUGE Race!", "indexObtainable": true, - "name": "Huge Junkyard Hound", + "name": "Huge Jelly Wizard", "rarity": { "Announce": true, "Color": null, @@ -132002,23 +136828,25 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://82197525577335", + "thumbnail": "rbxassetid://84699945958141", }, - "configName": "Huge Junkyard Hound", + "configName": "Huge Jelly Wizard", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "23f8d0ba84b2a251", + "hashShort": "ce27f7f6b6cf537e", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "", + "animations": { + "jelly": true, + }, + "goldenThumbnail": "rbxassetid://96256726815151", "huge": true, - "indexDesc": "Found in the Exclusive Yin-Yang Egg!", + "indexDesc": "Found in the Slime Forever Pack!", "indexObtainable": true, - "name": "Huge Yin-Yang Dragon", + "name": "Huge Jelly Hydra", "rarity": { "Announce": true, "Color": null, @@ -132031,22 +136859,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://139547008385454", + "thumbnail": "rbxassetid://109899952808122", }, - "configName": "Huge Yin-Yang Dragon", + "configName": "Huge Jelly Hydra", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b8b983698d0fa1d9", + "hashShort": "44eefe2aa2e5a872", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { "goldenThumbnail": "", - "huge": true, - "indexDesc": "Found in the Exclusive Yin-Yang Egg!", + "indexDesc": "Found in the Exclusive Beast Egg!", "indexObtainable": true, - "name": "Huge Yin-Yang Bunny", + "name": "Titanic Warrior Beast", "rarity": { "Announce": true, "Color": null, @@ -132059,22 +136886,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://75417612099373", + "thumbnail": "rbxassetid://131949076812775", + "titanic": true, }, - "configName": "Huge Yin-Yang Bunny", + "configName": "Titanic Warrior Beast", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b15707771de6f2bb", + "hashShort": "61c6ed2ddf36f551", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://132783287609358", - "huge": true, - "indexDesc": "Found in the Basketball World's furthest throw contest!", + "goldenThumbnail": "rbxassetid://99831388939085", + "indexDesc": "Found in the Slime Factory's TITANIC Race!", "indexObtainable": true, - "name": "Huge UV Kitsune Ball", + "name": "Titanic Jelly Wizard", "rarity": { "Announce": true, "Color": null, @@ -132087,23 +136914,26 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://133144353929951", + "thumbnail": "rbxassetid://125800512820483", + "titanic": true, }, - "configName": "Huge UV Kitsune Ball", + "configName": "Titanic Jelly Wizard", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "db3452f23a71f937", + "hashShort": "156516ac8b6ec083", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { + "animations": { + "jelly": true, + }, "fly": true, - "goldenThumbnail": "rbxassetid://81692833934753", - "huge": true, - "indexDesc": "Found in the Basketball World's furthest throw contest!", + "goldenThumbnail": "rbxassetid://104637774711049", + "indexDesc": "Found in the Slime Factory's TITANIC Chest!", "indexObtainable": true, - "name": "Huge Kawaii Dragon Ball", + "name": "Titanic Firegel Dragon", "rarity": { "Announce": true, "Color": null, @@ -132116,21 +136946,173 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://108289198978887", + "thumbnail": "rbxassetid://84658799668641", + "titanic": true, }, - "configName": "Huge Kawaii Dragon Ball", + "configName": "Titanic Firegel Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c983c8d570079fc2", + "hashShort": "9b3c8c1a92a1eb8a", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://116557533191116", - "indexDesc": "Found by earning points in the Infinite Basketball Mode!", + "animations": { + "jelly": true, + }, + "cachedPower": [ + 156700889370947, + 169265805188317, + 176288500542316, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://93577423067950", + "name": "Jelly Kitsune", + "thumbnail": "rbxassetid://95456916673175", + }, + "configName": "Jelly Kitsune", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:19.945Z", + "hashShort": "c5aa5f0fe1ea13ff", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "flyHeight": 0.025, + "flyHeightChange": 0, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, + }, + "cachedPower": [ + 156732024579798, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://137298465143386", + "name": "Nightmare Sludge", + "thumbnail": "rbxassetid://110329282024800", + }, + "configName": "Nightmare Sludge", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "84f5027ae07aba58", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "balloon": true, + "cachedPower": [ + 156638513865296, + 169141054177015, + 176218328098458, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://108093352634848", + "name": "Bubble Hydra", + "thumbnail": "rbxassetid://92688926133206", + }, + "configName": "Bubble Hydra", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:25.625Z", + "hashShort": "dd0fa00c7e81b93a", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 156669719159043, + 169203464764510, + 176253434053924, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://116522145853565", + "name": "Sticky Lamb", + "thumbnail": "rbxassetid://99020386453912", + }, + "configName": "Sticky Lamb", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:25.619Z", + "hashShort": "2793be7bbc6621c2", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 156825220971977, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://106627063281390", + "name": "Slimezilla", + "thumbnail": "rbxassetid://86551676231352", + }, + "configName": "Slimezilla", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "93c3e8810a54b8c7", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 156607273410647, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://124191676341752", + "name": "Rave Slime", + "thumbnail": "rbxassetid://112924855201550", + }, + "configName": "Rave Slime", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "39cf38a885565380", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 156575997715770, + 169016021877963, + 176147997430241, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://119512109897214", + "name": "Ooze Cat", + "thumbnail": "rbxassetid://137538826815611", + }, + "configName": "Ooze Cat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:25.627Z", + "hashShort": "eb585767add75d7d", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "animations": { + "jelly": true, + }, + "goldenThumbnail": "rbxassetid://88632451233362", + "huge": true, + "indexDesc": "Found in the Slime Factory's HUGE Chest!", "indexObtainable": true, - "name": "Titanic Basketball Cat", + "name": "Huge Jelly Kitsune", "rarity": { "Announce": true, "Color": null, @@ -132143,22 +137125,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://88337098275915", - "titanic": true, + "thumbnail": "rbxassetid://98444936936302", }, - "configName": "Titanic Basketball Cat", + "configName": "Huge Jelly Kitsune", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9116150aa983b69e", + "hashShort": "d678cd0476d398d0", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://86193291227020", - "indexDesc": "Found in the Basketball Egg!", + "goldenThumbnail": "rbxassetid://99135670116151", + "huge": true, + "indexDesc": "Found in the Slime Factory's FRIEND Chest!", "indexObtainable": true, - "name": "Titanic Comet Cyclops Ball", + "name": "Huge Slimezilla", "rarity": { "Announce": true, "Color": null, @@ -132171,23 +137153,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://83088944433726", - "titanic": true, + "thumbnail": "rbxassetid://133814850196289", }, - "configName": "Titanic Comet Cyclops Ball", + "configName": "Huge Slimezilla", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "16d7b1b685f77b48", + "hashShort": "f0f301f1b606e9fd", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Yin-Yang Egg!", + "goldenThumbnail": "rbxassetid://71208606325883", + "huge": true, + "indexDesc": "Found in the Slime Factory's breakable drops!", "indexObtainable": true, - "name": "Titanic Yin-Yang Grim Reaper", + "name": "Huge Sticky Lamb", "rarity": { "Announce": true, "Color": null, @@ -132200,22 +137181,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://136807974742699", - "titanic": true, + "thumbnail": "rbxassetid://135749996470461", }, - "configName": "Titanic Yin-Yang Grim Reaper", + "configName": "Huge Sticky Lamb", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a3b2d4f049b1ddb2", + "hashShort": "b69ee81cde88f33e", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://97063292261555", - "indexDesc": "Found in the Basketball World's furthest throw contest!", + "goldenThumbnail": "rbxassetid://81127935620682", + "huge": true, + "indexDesc": "Found in the Slime Factory's final egg!", "indexObtainable": true, - "name": "Titanic Glitched Cat Ball", + "name": "Huge Rave Slime", "rarity": { "Announce": true, "Color": null, @@ -132228,85 +137209,80 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://106995873715009", - "titanic": true, + "thumbnail": "rbxassetid://118307691118910", }, - "configName": "Titanic Glitched Cat Ball", + "configName": "Huge Rave Slime", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "eb2985f5ad29c734", + "hashShort": "f2669905dc17fdef", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 916809019516450, - ], - "fromEgg": "Whispering Hills Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 255, - "goldenThumbnail": "rbxassetid://81055873156873", - "maxChance": 0.8991008991008992, - "name": "Starry Tail Anteater", + "goldenThumbnail": "rbxassetid://128255522206108", + "huge": true, + "indexDesc": "Found in the Slime Factory's Slime Machine!", + "indexObtainable": true, + "name": "Huge Ooze Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://132417011227967", + "thumbnail": "rbxassetid://94416745584783", }, - "configName": "Starry Tail Anteater", + "configName": "Huge Ooze Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4aae25444052834c", + "hashShort": "c6785fdb6a2fdc82", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 1237052479442549, - ], - "fromEgg": "Totem Trail Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 257, - "goldenThumbnail": "rbxassetid://94179136970254", - "maxChance": 0.9090816003132836, - "name": "Happy Cyclops", + "goldenThumbnail": "rbxassetid://114337541185433", + "huge": true, + "indexDesc": "Found in the Slime Factory's Slime Gift!", + "indexObtainable": true, + "name": "Huge Spotted Elephant", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://80854351808859", + "thumbnail": "rbxassetid://109762155802208", }, - "configName": "Happy Cyclops", + "configName": "Huge Spotted Elephant", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a708edb59a71e1f5", + "hashShort": "22707ff6de7848c6", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "", - "name": "Ghostly Bunny", + "balloon": true, + "fly": true, + "goldenThumbnail": "rbxassetid://76778149322242", + "huge": true, + "indexDesc": "Found in the Slime Forever Pack!", + "indexObtainable": true, + "name": "Huge Bubble Hydra", "rarity": { "Announce": true, "Color": null, @@ -132319,20 +137295,30 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://114747127893314", + "thumbnail": "rbxassetid://88580020696117", }, - "configName": "Ghostly Bunny", + "configName": "Huge Bubble Hydra", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "81e7f645fc9d3960", + "hashShort": "aca52312bb84e1bc", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "", - "name": "Ghostly Fox", + "animations": { + "flyHeight": 0.025, + "flyHeightChange": 0, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://75241948308837", + "huge": true, + "indexDesc": "Found in the Slime Factory's HUGE Race!", + "indexObtainable": true, + "name": "Huge Nightmare Sludge", "rarity": { "Announce": true, "Color": null, @@ -132345,20 +137331,29 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://125047542679172", + "thumbnail": "rbxassetid://100374100910394", }, - "configName": "Ghostly Fox", + "configName": "Huge Nightmare Sludge", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2a3acda06d94f418", + "hashShort": "95d73f244182f5c1", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "", - "name": "Ghostly Cat", + "animations": { + "flyHeight": 0.025, + "flyHeightChange": 0, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://101911165516512", + "indexDesc": "Found in the Slime Factory's TITANIC Race!", + "indexObtainable": true, + "name": "Titanic Nightmare Sludge", "rarity": { "Announce": true, "Color": null, @@ -132371,423 +137366,469 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://112804128652434", + "thumbnail": "rbxassetid://92769377018385", + "titanic": true, }, - "configName": "Ghostly Cat", + "configName": "Titanic Nightmare Sludge", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9b0d55a2e4201116", + "hashShort": "df870038d2e71f2f", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 575708606259673, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 252, - "goldenThumbnail": "rbxassetid://99235033184940", - "name": "Junkyard Hound Ball", - "thumbnail": "rbxassetid://82356812731968", - "yeetPower": 155, + "animations": { + "jelly": true, + }, + "goldenThumbnail": "rbxassetid://110507934929501", + "indexDesc": "Found in the Slime Factory's TITANIC Chest!", + "indexObtainable": true, + "name": "Titanic Jelly Kitsune", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://80481264507529", + "titanic": true, }, - "configName": "Junkyard Hound Ball", + "configName": "Titanic Jelly Kitsune", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "512b7895d3cf15b0", + "hashShort": "59bc0e656d7ba168", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 1752837410296657, - ], - "fromEgg": "Highcliff Sanctuary Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 259, - "goldenThumbnail": "rbxassetid://104752876344014", - "maxChance": 0.000009989907695750369, - "name": "Glimmer Goat", + "goldenThumbnail": "rbxassetid://107720130870416", + "indexDesc": "Found in the Slime Factory's Slime Machine!", + "indexObtainable": true, + "name": "Titanic Ooze Cat", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://120750866013404", + "thumbnail": "rbxassetid://114761957372566", + "titanic": true, }, - "configName": "Glimmer Goat", + "configName": "Titanic Ooze Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6e745a81facd1e41", + "hashShort": "72814a040c9fd9c3", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 610812789568190, + 155097789697603, + 166059605841630, + 174485013409804, ], - "fromWorldNumber": 4, - "fromZoneNumber": 252, - "goldenThumbnail": "rbxassetid://129063664346200", - "name": "Holographic Axolotl Ball", - "thumbnail": "rbxassetid://124267383251291", - "yeetPower": 105000, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968225483", + "name": "Easter Cat", + "thumbnail": "rbxassetid://14968225646", }, - "configName": "Holographic Axolotl Ball", + "configName": "Easter Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ad81682bb67ffc9a", + "dateModified": "2026-06-27T16:05:43.884Z", + "hashShort": "52d136f9df6f3a84", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 582729442921378, + 156700889370947, + 169265805188317, + 176288500542316, ], - "fromWorldNumber": 4, - "fromZoneNumber": 252, - "goldenThumbnail": "rbxassetid://94295220873172", - "name": "Astronaut Cat Ball", - "thumbnail": "rbxassetid://102076703098200", - "yeetPower": 470, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968350892", + "name": "The Easter Bunny", + "thumbnail": "rbxassetid://14968350999", }, - "configName": "Astronaut Cat Ball", + "configName": "The Easter Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "3a2b5c59f64bdbe7", + "dateModified": "2026-06-27T16:05:43.885Z", + "hashShort": "a746bb226fe8e7f7", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - }, "cachedPower": [ - 624854462891597, + 155425910693599, + 166715847833621, + 174854149530299, ], - "fly": true, - "fromWorldNumber": 4, - "fromZoneNumber": 252, - "goldenThumbnail": "rbxassetid://80190911575674", - "name": "Black Hole Angelus Ball", - "thumbnail": "rbxassetid://97111467444087", - "yeetPower": 945000, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968226274", + "name": "Easter Lamb", + "thumbnail": "rbxassetid://14968226361", }, - "configName": "Black Hole Angelus Ball", + "configName": "Easter Lamb", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "64583fbdd40fcf8f", + "dateModified": "2026-06-27T16:05:43.873Z", + "hashShort": "b7f38daa08b2127a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 568687769597970, + 155262335584523, + 166388697615468, + 174670127532588, ], - "fromWorldNumber": 4, - "fromZoneNumber": 252, - "goldenThumbnail": "rbxassetid://80878819748871", - "name": "Robot Ball", - "thumbnail": "rbxassetid://137985517217586", - "yeetPower": 65, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968226022", + "name": "Easter Fox", + "thumbnail": "rbxassetid://14968226173", }, - "configName": "Robot Ball", + "configName": "Easter Fox", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d326faa709737496", + "dateModified": "2026-06-27T16:05:43.877Z", + "hashShort": "7bc3d7dcbca0ecbf", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 617833626229894, + 156387599025515, + 168639224497452, + 175936048903704, ], - "fromWorldNumber": 4, - "fromZoneNumber": 252, - "goldenThumbnail": "rbxassetid://89120067520814", - "name": "Fragmented Dominus Ball", - "thumbnail": "rbxassetid://140173345738940", - "yeetPower": 350000, + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968224586", + "name": "Easter Agony", + "thumbnail": "rbxassetid://14968224861", }, - "configName": "Fragmented Dominus Ball", + "configName": "Easter Agony", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8ab4e7c9f4bbc5f4", + "dateModified": "2026-06-27T16:05:43.871Z", + "hashShort": "963b36870a20c6ed", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 596771116244784, + 157010679192346, + 169885384831116, + 176637014091390, ], - "fromWorldNumber": 4, - "fromZoneNumber": 252, - "goldenThumbnail": "rbxassetid://110298826652568", - "name": "Glitched Unicorn Ball", - "thumbnail": "rbxassetid://113901555086837", - "yeetPower": 5650, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968225772", + "name": "Easter Dominus", + "thumbnail": "rbxassetid://14968225893", }, - "configName": "Glitched Unicorn Ball", + "configName": "Easter Dominus", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a37e02984783ec53", + "dateModified": "2026-06-27T16:05:43.878Z", + "hashShort": "50563dd29fa38cf1", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 603791952906487, + 155750193929112, + 167364414304648, + 175218968170251, ], - "fly": true, - "fromWorldNumber": 4, - "fromZoneNumber": 252, - "goldenThumbnail": "rbxassetid://92045704830079", - "name": "Atomic Monkey Ball", - "thumbnail": "rbxassetid://129882012587386", - "yeetPower": 32000, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968179563", + "name": "Basket Bunny", + "thumbnail": "rbxassetid://14968179716", }, - "configName": "Atomic Monkey Ball", + "configName": "Basket Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "28e505240d44b2bd", + "dateModified": "2026-06-27T16:05:43.876Z", + "hashShort": "20331fef3809ba18", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "spinZ": true, + }, "cachedPower": [ - 589750279583081, + 157317045851747, + 170498118149918, + 176981676583216, ], - "fromWorldNumber": 4, - "fromZoneNumber": 252, - "goldenThumbnail": "rbxassetid://79738131583847", - "name": "Brain Ball", - "thumbnail": "rbxassetid://120725409968901", - "yeetPower": 1385, + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968224942", + "name": "Easter Angelus", + "thumbnail": "rbxassetid://14968225010", }, - "configName": "Brain Ball", + "configName": "Easter Angelus", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2f59ed3d697a8817", + "dateModified": "2026-06-27T16:05:43.874Z", + "hashShort": "5d262bf2b1fb0114", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 1865732556766263, - ], - "fly": true, - "fromEgg": "Highcliff Sanctuary Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 259, - "goldenThumbnail": "rbxassetid://113596837143606", - "maxChance": 2.497476923937592e-7, - "name": "Ancestor Eagle", + "exclusiveLevel": 3, + "goldenThumbnail": "", + "name": "Patchwork Teddy Bear", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://94889153466060", + "thumbnail": "rbxassetid://91381328451312", }, - "configName": "Ancestor Eagle", + "configName": "Patchwork Teddy Bear", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6081bca26b1a241d", + "hashShort": "b2c5fa8a934da1fe", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 1031410146956006, - ], - "fromEgg": "Runestone Bluff Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 256, - "goldenThumbnail": "rbxassetid://74978214524594", - "maxChance": 0.8991008991008992, - "name": "Totem Cub", + "exclusiveLevel": 1, + "goldenThumbnail": "", + "name": "Patchwork Bunny", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://129266443861525", + "thumbnail": "rbxassetid://105394205558336", }, - "configName": "Totem Cub", + "configName": "Patchwork Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ad3339bb9ea1c082", + "hashShort": "ef4b024278561e48", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 1391684039372868, - ], - "fromEgg": "Wyrmwatch Ridge Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 258, - "goldenThumbnail": "rbxassetid://136236683767883", - "maxChance": 0.09090816003132836, - "name": "Runebound Bobcat", + "exclusiveLevel": 2, + "goldenThumbnail": "", + "name": "Patchwork Yeti", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://85282294929293", + "thumbnail": "rbxassetid://83243218585764", }, - "configName": "Runebound Bobcat", + "configName": "Patchwork Yeti", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e6d8b50f65f56321", + "hashShort": "61f66f77ebf3a938", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1160369088276839, + 156070728141488, + 168005482729399, + 175579569159174, ], - "fromEgg": "Totem Trail Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 257, - "goldenThumbnail": "rbxassetid://133978189367057", - "maxChance": 0.08991008991008992, - "name": "Sprout Wyrmling", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://102445070854989", + "name": "Diamond Bunny", + "thumbnail": "rbxassetid://135890567619584", + }, + "configName": "Diamond Bunny", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.893Z", + "hashShort": "bcfa0f15323d3d33", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 156070728141488, + 168005482729399, + 175579569159174, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://85379066039300", + "name": "Marshmallow Kitsune", + "thumbnail": "rbxassetid://112006495503643", + }, + "configName": "Marshmallow Kitsune", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.894Z", + "hashShort": "b4daf5ab3e7e763f", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "animations": { + "customAnimations": true, + "idleActionAnimations": [ + [ + "CorgiJumping", + 0.5, + ], + ], + "ridingJumpPower": 125, + }, + "fly": true, + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "gargantuan": true, + "goldenThumbnail": "rbxassetid://95582989925706", + "indexDesc": "Earned from the Exclusive Raffle! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Starfall Dragon", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://97674775229660", + "thumbnail": "rbxassetid://106256354379795", }, - "configName": "Sprout Wyrmling", + "configName": "Gargantuan Starfall Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "494214243033c645", + "hashShort": "921026eba093e9e1", }, { - "category": "Uncategorized", + "category": "Gargantuan", "collection": "Pets", "configData": { - "cachedPower": [ - 867363040622190, - ], - "fromEgg": "Whispering Hills Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 255, - "goldenThumbnail": "rbxassetid://123295269589485", - "maxChance": 0.9, - "name": "Glow Worm", + "fly": true, + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "gargantuan": true, + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Patchwork Egg! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Patchwork Agony", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://88329168839090", + "thumbnail": "rbxassetid://90326669323204", }, - "configName": "Glow Worm", + "configName": "Gargantuan Patchwork Agony", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b16367ce681bb968", + "hashShort": "636711d0ca9815be", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 805610630646442, - ], - "fromEgg": "Whispering Hills Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 255, - "goldenThumbnail": "rbxassetid://109964783669648", - "maxChance": 0.9, - "name": "Boulder Boar", + "goldenThumbnail": "rbxassetid://129117189793278", + "huge": true, + "indexDesc": "Found in the MVP Chest!", + "indexObtainable": true, + "name": "Huge Exquisite Elephant", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://115138644167113", + "thumbnail": "rbxassetid://72880983476482", }, - "configName": "Boulder Boar", + "configName": "Huge Exquisite Elephant", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "31da468a01ce7d22", + "hashShort": "e23a5da76d99b5f9", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://100695925221991", + "goldenThumbnail": "rbxassetid://127977221119246", "huge": true, - "indexDesc": "Found by earning points in the Infinite Basketball Mode in Leagues Bronze-Platinum!", + "indexDesc": "Earned from logging in during our 2025 Easter Event!", "indexObtainable": true, - "name": "Huge Robot Ball", + "name": "Huge Easter Lamb", "rarity": { "Announce": true, "Color": null, @@ -132800,22 +137841,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://114904071316728", + "thumbnail": "rbxassetid://122710351430317", }, - "configName": "Huge Robot Ball", + "configName": "Huge Easter Lamb", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "39dafc08b1275e82", + "hashShort": "780df3593064dce4", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://74614212639471", + "goldenThumbnail": "rbxassetid://98964255956115", "huge": true, - "indexDesc": "Found by earning points in the Infinite Basketball Mode in Leagues Emerald-Master!", + "indexDesc": "Earned from 2025 Easter Diamond Egg!", "indexObtainable": true, - "name": "Huge Glitched Unicorn Ball", + "name": "Huge Diamond Bunny", "rarity": { "Announce": true, "Color": null, @@ -132828,22 +137869,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://129837188566308", + "thumbnail": "rbxassetid://100376851450682", }, - "configName": "Huge Glitched Unicorn Ball", + "configName": "Huge Diamond Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ce6f8269845d6624", + "hashShort": "6885f31fc2431817", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://108318521072327", + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in the Cosmic Basketball Egg!", + "indexDesc": "Found in the Exclusive Patchwork Egg!", "indexObtainable": true, - "name": "Huge Fragmented Dominus Ball", + "name": "Huge Patchwork Teddy Bear", "rarity": { "Announce": true, "Color": null, @@ -132856,22 +137897,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://100875909675761", + "thumbnail": "rbxassetid://101792961428557", }, - "configName": "Huge Fragmented Dominus Ball", + "configName": "Huge Patchwork Teddy Bear", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "fe0dff6417ca64fb", + "hashShort": "6d3e87919698bfb6", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://108758768179939", + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in the Basketball World's furthest throw contest!", + "indexDesc": "Found in the Exclusive Patchwork Egg!", "indexObtainable": true, - "name": "Huge Blurred Bear Ball", + "name": "Huge Patchwork Bunny", "rarity": { "Announce": true, "Color": null, @@ -132884,22 +137925,26 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://133058816387774", + "thumbnail": "rbxassetid://120785546705705", }, - "configName": "Huge Blurred Bear Ball", + "configName": "Huge Patchwork Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2ae8fe706a8b3b9f", + "hashShort": "b2a06bc205b819a3", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://89321641684953", + "animations": { + "spinZ": true, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://76331145902175", "huge": true, - "indexDesc": "Found in the Hoop Forever Pack!", + "indexDesc": "Earned by subscribing during the FREE Huge Event!", "indexObtainable": true, - "name": "Huge Meebo The Alien Ball", + "name": "Huge Easter Angelus", "rarity": { "Announce": true, "Color": null, @@ -132912,23 +137957,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://105987856358688", + "thumbnail": "rbxassetid://102295861032789", }, - "configName": "Huge Meebo The Alien Ball", + "configName": "Huge Easter Angelus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a42777ce40d1065c", + "hashShort": "a56e4519cd94eca6", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://128627830801703", + "goldenThumbnail": "rbxassetid://120687274126844", "huge": true, - "indexDesc": "Found by earning points in the Infinite Basketball Mode in Leagues Diamond-Master!", + "indexDesc": "Found in the 2025 Easter Event Egg Hunt!", "indexObtainable": true, - "name": "Huge Atomic Monkey Ball", + "name": "Huge Basket Bunny", "rarity": { "Announce": true, "Color": null, @@ -132941,22 +137985,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://131025673327487", + "thumbnail": "rbxassetid://75145545226238", }, - "configName": "Huge Atomic Monkey Ball", + "configName": "Huge Basket Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1c92d4d2117db381", + "hashShort": "4ca27d0fbe6257fe", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://132407649475365", + "goldenThumbnail": "rbxassetid://105545350458143", "huge": true, - "indexDesc": "Found in the final zone of Fantasy World!", + "indexDesc": "Dropped by the Easter Bunny in the 2025 Easter Event!", "indexObtainable": true, - "name": "Huge Runebound Bobcat", + "name": "Huge Chocolate Bunny", "rarity": { "Announce": true, "Color": null, @@ -132969,23 +138013,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://75929351206941", + "thumbnail": "rbxassetid://79481017800505", }, - "configName": "Huge Runebound Bobcat", + "configName": "Huge Chocolate Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c2924a34672d64bd", + "hashShort": "c21f537148cd9930", }, { "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "", + "goldenThumbnail": "rbxassetid://71511929489942", "huge": true, - "indexDesc": "Found in the Ghostly Card Pack!", + "indexDesc": "Found in the 2025 Easter Event Secret Room!", "indexObtainable": true, - "name": "Huge Ghostly Dragon", + "name": "Huge Spring Griffin", "rarity": { "Announce": true, "Color": null, @@ -132998,22 +138042,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://93813808986344", + "thumbnail": "rbxassetid://138950017862417", }, - "configName": "Huge Ghostly Dragon", + "configName": "Huge Spring Griffin", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "244bce093049a5ae", + "hashShort": "09eacca7bdb93071", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://102704278535022", + "goldenThumbnail": "rbxassetid://71254647124343", "huge": true, - "indexDesc": "Found in the Cosmic Basketball Egg!", + "indexDesc": "Found in the 2025 Easter Event final egg!", "indexObtainable": true, - "name": "Huge LeGoat Ball", + "name": "Huge Marshmallow Kitsune", "rarity": { "Announce": true, "Color": null, @@ -133026,21 +138070,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://85572580085074", + "thumbnail": "rbxassetid://95357265380757", }, - "configName": "Huge LeGoat Ball", + "configName": "Huge Marshmallow Kitsune", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "60b7d4dd6d5ed9f0", + "hashShort": "1a48fb45d85b901b", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://126336101849034", - "indexDesc": "Found by earning points in the Infinite Basketball Mode in Leagues Bronze-Diamond!", + "goldenThumbnail": "rbxassetid://96462371681467", + "huge": true, + "indexDesc": "Reward in the 2025 Pixel Chick Clan Battle!", "indexObtainable": true, - "name": "Titanic Brain Ball", + "name": "Huge Pixel Chick", "rarity": { "Announce": true, "Color": null, @@ -133053,22 +138098,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://85082755103963", - "titanic": true, + "thumbnail": "rbxassetid://109348174675332", }, - "configName": "Titanic Brain Ball", + "configName": "Huge Pixel Chick", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "cd316c8bfbf817d8", + "hashShort": "d78b8dd3753b096b", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://92316347772802", - "indexDesc": "Found by earning points in the Infinite Basketball Mode in League Master!", + "fly": true, + "goldenThumbnail": "rbxassetid://88753970992583", + "huge": true, + "indexDesc": "Found in the Easter Forever Pack!", "indexObtainable": true, - "name": "Titanic Holographic Axolotl Ball", + "name": "Huge Easter Agony", "rarity": { "Announce": true, "Color": null, @@ -133081,31 +138127,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://113783111337082", - "titanic": true, + "thumbnail": "rbxassetid://117110951312046", }, - "configName": "Titanic Holographic Axolotl Ball", + "configName": "Huge Easter Agony", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c73e75fc34473b57", + "hashShort": "8b55a4cb930c0a16", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 2.2, - "ridingCameraOffset": null, - "ridingGravity": 65.3346, - "spinZ": true, - "swerve": true, - "swerveMaxAngle": 45, - }, "fly": true, - "goldenThumbnail": "rbxassetid://138247937692273", - "indexDesc": "Found in the Cosmic Basketball Egg!", + "goldenThumbnail": "rbxassetid://139189131118389", + "huge": true, + "indexDesc": "Found in the Forever Pack!", "indexObtainable": true, - "name": "Titanic Black Hole Angelus Ball", + "name": "Huge Sea Dragon", "rarity": { "Announce": true, "Color": null, @@ -133118,22 +138156,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://113303682260217", - "titanic": true, + "thumbnail": "rbxassetid://109192796689135", }, - "configName": "Titanic Black Hole Angelus Ball", + "configName": "Huge Sea Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "35db92bc29c965df", + "hashShort": "ddc6e18c154e92cb", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://112592829971613", - "indexDesc": "Found in the Basketball World's furthest throw contest!", + "goldenThumbnail": "rbxassetid://114443706250410", + "indexDesc": "Earned from 2025 Easter Diamond Egg!", "indexObtainable": true, - "name": "Titanic Storm Axolotl Ball", + "name": "Titanic Diamond Bunny", "rarity": { "Announce": true, "Color": null, @@ -133146,22 +138183,25 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://140349148341918", + "thumbnail": "rbxassetid://118509963937429", "titanic": true, }, - "configName": "Titanic Storm Axolotl Ball", + "configName": "Titanic Diamond Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "de81af6af02d490a", + "hashShort": "db90719a1d9fbfcd", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "", - "indexDesc": "Found in the Ghostly Card Pack!", + "fly": true, + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "goldenThumbnail": "rbxassetid://78230641053757", + "indexDesc": "Earned from the Exclusive Raffle!", "indexObtainable": true, - "name": "Titanic Ghostly Wolf", + "name": "Titanic Starfall Dragon", "rarity": { "Announce": true, "Color": null, @@ -133174,21 +138214,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://122682792759281", + "thumbnail": "rbxassetid://70374143407469", "titanic": true, }, - "configName": "Titanic Ghostly Wolf", + "configName": "Titanic Starfall Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "51fc34e924b153fa", + "hashShort": "d6814eec96922c70", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "exclusiveLevel": 2, "goldenThumbnail": "", - "name": "Totem Bear", + "indexDesc": "Found in the Exclusive Patchwork Egg!", + "indexObtainable": true, + "name": "Titanic Patchwork Capybara", "rarity": { "Announce": true, "Color": null, @@ -133201,20 +138242,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://119340679619960", + "thumbnail": "rbxassetid://94494477823308", + "titanic": true, }, - "configName": "Totem Bear", + "configName": "Titanic Patchwork Capybara", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5ec577a78aabcc0c", + "hashShort": "be6e538edf38554c", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "", - "name": "Totem Cat", + "fly": true, + "goldenThumbnail": "rbxassetid://95768190801144", + "indexDesc": "Found in the Forever Pack!", + "indexObtainable": true, + "name": "Titanic Sea Dragon", "rarity": { "Announce": true, "Color": null, @@ -133227,20 +138271,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://112385173013500", + "thumbnail": "rbxassetid://97419954429083", + "titanic": true, }, - "configName": "Totem Cat", + "configName": "Titanic Sea Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9074e836f3103393", + "hashShort": "4f15f6e255cbde5b", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "", - "name": "Totem Wolf", + "goldenThumbnail": "rbxassetid://90594118894458", + "indexDesc": "Found in the MVP Chest!", + "indexObtainable": true, + "name": "Titanic Exquisite Elephant", "rarity": { "Announce": true, "Color": null, @@ -133253,24 +138299,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://87735422405164", + "thumbnail": "rbxassetid://97422903795997", + "titanic": true, }, - "configName": "Totem Wolf", + "configName": "Titanic Exquisite Elephant", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5aba48581e93f436", + "hashShort": "2869ac24315d6cbc", }, { - "category": "Gargantuan", + "category": "Titanic", "collection": "Pets", "configData": { - "gargantuan": true, - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Totem Egg! - -Ground Slam - Pet will damage breakables in a large area!", + "goldenThumbnail": "rbxassetid://107802361645994", + "indexDesc": "Found in the 2025 Easter Event final egg!", "indexObtainable": true, - "name": "Gargantuan Totem Monkey", + "name": "Titanic Easter Cat", "rarity": { "Announce": true, "Color": null, @@ -133283,22 +138327,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://119822736449264", + "thumbnail": "rbxassetid://122516564229104", + "titanic": true, }, - "configName": "Gargantuan Totem Monkey", + "configName": "Titanic Easter Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "64eba152ed795658", + "hashShort": "f57c93201a8661a3", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "", - "huge": true, - "indexDesc": "Found in the Exclusive Totem Egg!", + "goldenThumbnail": "rbxassetid://113674085310632", + "indexDesc": "Earned from 2025 Easter Diamond Egg!", "indexObtainable": true, - "name": "Huge Totem Wolf", + "name": "Titanic Luxe Axolotl", "rarity": { "Announce": true, "Color": null, @@ -133311,22 +138355,164 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://130997023659211", + "thumbnail": "rbxassetid://75796665600934", + "titanic": true, }, - "configName": "Huge Totem Wolf", + "configName": "Titanic Luxe Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8304b6adf0114a81", + "hashShort": "9914b6472122c866", }, { - "category": "Huge", + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 157544619500675, + 170953265447774, + 177237696938260, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968337193", + "name": "Spring Griffin", + "thumbnail": "rbxassetid://14968337328", + }, + "configName": "Spring Griffin", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.861Z", + "hashShort": "54fdad61a40f0a0c", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 157919806559577, + 171703639565576, + 177659782379524, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968278302", + "name": "Marshmallow Agony", + "thumbnail": "rbxassetid://14968278365", + }, + "configName": "Marshmallow Agony", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.871Z", + "hashShort": "bf5753c51e08a665", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 157770340426349, + 171404707299121, + 177491632979643, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968294237", + "name": "Painted Cat", + "thumbnail": "rbxassetid://14968294340", + }, + "configName": "Painted Cat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.867Z", + "hashShort": "e3558a17125babdc", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 157620064174623, + 171104154795669, + 177322572196451, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968225200", + "name": "Easter Axolotl", + "thumbnail": "rbxassetid://14968225352", + }, + "configName": "Easter Axolotl", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.866Z", + "hashShort": "1fad5fe3906eb0cd", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 157468968974702, + 170801964395828, + 177152590096540, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968226812", + "name": "Egg Chick", + "thumbnail": "rbxassetid://14968227020", + }, + "configName": "Egg Chick", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.883Z", + "hashShort": "b909fda849a74bb3", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 157845174211503, + 171554374869429, + 177575820987941, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968226541", + "name": "Easter Yeti", + "thumbnail": "rbxassetid://14968226666", + }, + "configName": "Easter Yeti", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.885Z", + "hashShort": "23766a92bf83b87d", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 157695304113789, + 171254634674001, + 177407217128013, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://14968336998", + "name": "Spring Bee", + "thumbnail": "rbxassetid://14968337103", + }, + "configName": "Spring Bee", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.890Z", + "hashShort": "67bf88a31c44edf2", + }, + { + "category": "Uncategorized", "collection": "Pets", "configData": { + "exclusiveLevel": 1, "goldenThumbnail": "", - "huge": true, - "indexDesc": "Found in the Exclusive Totem Egg!", - "indexObtainable": true, - "name": "Huge Totem Cat", + "name": "Anime Lemur", "rarity": { "Announce": true, "Color": null, @@ -133339,22 +138525,38 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://94635272523111", + "thumbnail": "rbxassetid://104895576504873", }, - "configName": "Huge Totem Cat", + "configName": "Anime Lemur", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "109e8390e9415512", + "hashShort": "101cbe9278ae3ca8", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://139883402781336", - "huge": true, - "indexDesc": "Reward in the 2025 Nightmare Cyclops Clan Battle!", - "indexObtainable": true, - "name": "Huge Nightmare Cyclops", + "cachedPower": [ + 158068471261965, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://104087551758948", + "name": "Easter Golem", + "thumbnail": "rbxassetid://99977466156916", + }, + "configName": "Easter Golem", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "3904e533b0eb39e0", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 3, + "goldenThumbnail": "", + "name": "Anime Tanuki", "rarity": { "Announce": true, "Color": null, @@ -133367,22 +138569,20 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://98277417659107", + "thumbnail": "rbxassetid://103490549389633", }, - "configName": "Huge Nightmare Cyclops", + "configName": "Anime Tanuki", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4b65c33ef5829111", + "hashShort": "7acd6bc7bba00cc8", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://102899091466775", - "huge": true, - "indexDesc": "Found in the Tower Defense Forever Pack!", - "indexObtainable": true, - "name": "Huge Flamethrower Spider", + "exclusiveLevel": 2, + "goldenThumbnail": "", + "name": "Anime Wolf", "rarity": { "Announce": true, "Color": null, @@ -133395,26 +138595,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://73032919339096", + "thumbnail": "rbxassetid://77232609895314", }, - "configName": "Huge Flamethrower Spider", + "configName": "Anime Wolf", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "aa0f66c338b906b9", + "hashShort": "8609f679c14ed300", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://132975828140043", + "evolved": true, + "goldenThumbnail": "rbxassetid://94559677908793", "huge": true, - "indexDesc": "Found in Tower Defense Gift Bag!", + "indexDesc": "Earned from evolving Mining Monkey!", "indexObtainable": true, - "name": "Huge Arcade Angelus", + "name": "Huge Evolved Mining Monkey", "rarity": { "Announce": true, "Color": null, @@ -133427,22 +138624,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://119811643774598", + "thumbnail": "rbxassetid://108431740887325", }, - "configName": "Huge Arcade Angelus", + "configName": "Huge Evolved Mining Monkey", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c01bc7441341e764", + "hashShort": "46a1a405d0dcef02", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://92731738674259", + "evolved": true, + "goldenThumbnail": "rbxassetid://124070441464054", "huge": true, - "indexDesc": "Found from completing Tower Defense maps!", + "indexDesc": "Earned from evolving Mining Penguin!", "indexObtainable": true, - "name": "Huge Safari Monkey", + "name": "Huge Evolved Mining Penguin", "rarity": { "Announce": true, "Color": null, @@ -133455,22 +138653,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://131070721986590", + "thumbnail": "rbxassetid://124239395763286", }, - "configName": "Huge Safari Monkey", + "configName": "Huge Evolved Mining Penguin", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a78509c0043eaa38", + "hashShort": "d31db89630884105", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://79021582171284", + "evolved": true, + "goldenThumbnail": "rbxassetid://130018269910271", "huge": true, - "indexDesc": "Found in Tower Defense Infinite Mode!", + "indexDesc": "Earned from evolving Easter Lamb!", "indexObtainable": true, - "name": "Huge Ninja Dalmatian", + "name": "Huge Evolved Easter Lamb", "rarity": { "Announce": true, "Color": null, @@ -133483,22 +138682,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://108653580991375", + "thumbnail": "rbxassetid://114656946868089", }, - "configName": "Huge Ninja Dalmatian", + "configName": "Huge Evolved Easter Lamb", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2432b45b706c57e4", + "hashShort": "7035b8cf6dae0ce8", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://122725550519213", + "evolved": true, + "goldenThumbnail": "rbxassetid://103400435707229", "huge": true, - "indexDesc": "Found in the Tower Defense Dark Unit Egg!", + "indexDesc": "Earned from evolving Player Fox!", "indexObtainable": true, - "name": "Huge Zeus Bear", + "name": "Huge Evolved Player Fox", "rarity": { "Announce": true, "Color": null, @@ -133511,23 +138711,24 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "tdadd": "Zeus Bear", - "thumbnail": "rbxassetid://112711947085113", + "thumbnail": "rbxassetid://88581357457195", }, - "configName": "Huge Zeus Bear", + "configName": "Huge Evolved Player Fox", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8ee759086c1e822d", + "hashShort": "901db30a7c65ccf0", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { + "evolved": true, "fly": true, - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Totem Egg!", + "goldenThumbnail": "rbxassetid://105189524995526", + "huge": true, + "indexDesc": "Earned from evolving Icy Phoenix!", "indexObtainable": true, - "name": "Titanic Totem Owl", + "name": "Huge Evolved Icy Phoenix", "rarity": { "Announce": true, "Color": null, @@ -133540,22 +138741,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://113883294151672", - "titanic": true, + "thumbnail": "rbxassetid://137094796065163", }, - "configName": "Titanic Totem Owl", + "configName": "Huge Evolved Icy Phoenix", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "577cf3a40c8cb44a", + "hashShort": "07525d92d7cbe863", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://107811785092987", - "indexDesc": "Found in Tower Defense Infinite Mode!", + "evolved": true, + "goldenThumbnail": "rbxassetid://95761799997049", + "huge": true, + "indexDesc": "Earned from evolving Basket Bunny!", "indexObtainable": true, - "name": "Titanic Nuclear Dominus", + "name": "Huge Evolved Basket Bunny", "rarity": { "Announce": true, "Color": null, @@ -133568,23 +138770,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://89079914653580", - "titanic": true, + "thumbnail": "rbxassetid://117009470735471", }, - "configName": "Titanic Nuclear Dominus", + "configName": "Huge Evolved Basket Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "82c23ab618eaccfc", + "hashShort": "a551bd126a628cff", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://120316301549371", - "indexDesc": "Found in the Tower Defense Dark Unit Egg!", + "goldenThumbnail": "rbxassetid://110510562355783", + "huge": true, + "indexDesc": "Found in the 2025 Easter Event final egg!", "indexObtainable": true, - "name": "Titanic Mechanical Griffin", + "name": "Huge Spring Bee", "rarity": { "Announce": true, "Color": null, @@ -133597,184 +138799,162 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "tdadd": "Mechanical Griffin", - "thumbnail": "rbxassetid://139823159544156", - "titanic": true, + "thumbnail": "rbxassetid://137687744712532", }, - "configName": "Titanic Mechanical Griffin", + "configName": "Huge Spring Bee", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "08a096317190da1f", + "hashShort": "671de9dec5882e72", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 1563016363088980, - ], - "fly": true, - "fromEgg": "Ember Cliffs Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 260, - "goldenThumbnail": "rbxassetid://74286907452092", - "maxChance": 0.9, - "name": "Charred Dragon", + "goldenThumbnail": "rbxassetid://94613199340621", + "huge": true, + "indexDesc": "Found in the Easter Forever Pack!", + "indexObtainable": true, + "name": "Huge Egg Chick", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://80510696469372", + "thumbnail": "rbxassetid://135817707784435", }, - "configName": "Charred Dragon", + "configName": "Huge Egg Chick", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7eced8c3930ce8da", + "hashShort": "111e921039118bb5", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 1858634575427405, - ], - "fromEgg": "Charred Canyon Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 261, - "goldenThumbnail": "rbxassetid://119297831252538", - "maxChance": 0.8991008991008992, - "name": "Molten Werelynx", + "goldenThumbnail": "rbxassetid://100095216974500", + "huge": true, + "indexDesc": "Found in the 2025 Easter Event Egg Hunt!", + "indexObtainable": true, + "name": "Huge Easter Fox", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://122475725555641", + "thumbnail": "rbxassetid://127847534239530", }, - "configName": "Molten Werelynx", + "configName": "Huge Easter Fox", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "bfef724aa1d7fa3c", + "hashShort": "59171c84d7dbafc4", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 2091022775075044, - ], - "fromEgg": "Ember Chasm Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 262, - "goldenThumbnail": "rbxassetid://76869105374711", - "maxChance": 0.08991008991008992, - "name": "Molten Gecko", + "goldenThumbnail": "rbxassetid://137865799558462", + "huge": true, + "indexDesc": "Found in the Easter Event's HUGE Race!", + "indexObtainable": true, + "name": "Huge Easter Golem", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://78077369100692", + "thumbnail": "rbxassetid://98455133654568", }, - "configName": "Molten Gecko", + "configName": "Huge Easter Golem", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "957dcbca451eba71", + "hashShort": "a2bea95f64501f7a", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 1451736515168517, - ], - "fly": true, - "fromEgg": "Ember Cliffs Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 260, - "goldenThumbnail": "rbxassetid://100274528211173", - "maxChance": 0.9, - "name": "Charred Bat", + "goldenThumbnail": "rbxassetid://108670906018530", + "huge": true, + "indexDesc": "Found in the Titanic Easter Gift!", + "indexObtainable": true, + "name": "Huge Easter Axolotl", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://119063303269865", + "thumbnail": "rbxassetid://140227031996665", }, - "configName": "Charred Bat", + "configName": "Huge Easter Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "91a0398c393da2f6", + "hashShort": "99497bf9fde0afe0", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 1652119622602138, - ], - "fromEgg": "Ember Cliffs Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 260, - "goldenThumbnail": "rbxassetid://121637522313436", - "maxChance": 0.8991008991008992, - "name": "Molten Wisp", + "goldenThumbnail": "rbxassetid://75526648357324", + "huge": true, + "indexDesc": "Found in the Huge Easter Gift!", + "indexObtainable": true, + "name": "Huge Pastel Sock Bunny", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://128000347783561", + "thumbnail": "rbxassetid://85028487593165", }, - "configName": "Molten Wisp", + "configName": "Huge Pastel Sock Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "df39c6e985efa0ed", + "hashShort": "39ceb90044dc309a", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://87362466795849", - "name": "Dino Corgi", + "goldenThumbnail": "rbxassetid://121129926084163", + "huge": true, + "indexDesc": "Earned from the Easter Event points Leaderboard!", + "indexObtainable": true, + "name": "Huge Pastel Sock Bear", "rarity": { "Announce": true, "Color": null, @@ -133787,22 +138967,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "tdadd": "Dino Corgi", - "thumbnail": "rbxassetid://85682111496463", + "thumbnail": "rbxassetid://84261728017151", }, - "configName": "Dino Corgi", + "configName": "Huge Pastel Sock Bear", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "91b52c2c28777dbf", + "hashShort": "05c1a5f5d0e417ce", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "fly": true, - "goldenThumbnail": "rbxassetid://87116974154439", - "name": "Pinata Dragon", + "goldenThumbnail": "", + "huge": true, + "indexDesc": "Found in the Anime Card Pack!", + "indexObtainable": true, + "name": "Huge Anime Scorpion", "rarity": { "Announce": true, "Color": null, @@ -133815,119 +138995,320 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "tdadd": "Pinata Dragon", - "thumbnail": "rbxassetid://111566780355436", + "thumbnail": "rbxassetid://81320739190462", }, - "configName": "Pinata Dragon", + "configName": "Huge Anime Scorpion", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ee8fb2273114d4c1", + "hashShort": "d2d7ed81eecd27d4", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 3158669929217752, - ], - "fromEgg": "Obsidian Spire Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 264, - "goldenThumbnail": "rbxassetid://74423300371148", - "maxChance": 0.000009989907695750369, - "name": "Firefossil Wolf", + "goldenThumbnail": "rbxassetid://101309326536270", + "indexDesc": "Found in the Titanic Easter Gift!", + "indexObtainable": true, + "name": "Titanic Easter Axolotl", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://105213780078257", + "thumbnail": "rbxassetid://76996694412887", + "titanic": true, }, - "configName": "Firefossil Wolf", + "configName": "Titanic Easter Axolotl", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "7479188b5867ae55", + "hashShort": "c48d70833a901775", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 2507859827909194, - ], - "fly": true, - "fromEgg": "Molten Nest Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 263, - "goldenThumbnail": "rbxassetid://126832192285097", - "maxChance": 0.09090816003132836, - "name": "Obsidian Griffin", + "goldenThumbnail": "rbxassetid://91884233489948", + "indexDesc": "Found in the Easter Event's TITANIC Race!", + "indexObtainable": true, + "name": "Titanic Easter Golem", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://90863360337680", + "thumbnail": "rbxassetid://109664286681118", + "titanic": true, }, - "configName": "Obsidian Griffin", + "configName": "Titanic Easter Golem", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "6900b89697b94a13", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "", + "indexDesc": "Found in the Anime Card Pack!", + "indexObtainable": true, + "name": "Titanic Anime Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://139657034071879", + "titanic": true, + }, + "configName": "Titanic Anime Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d38bb64794defd70", + "hashShort": "1521e29d3aa147b7", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2229208735919284, + 156387599025515, + 168639224497452, + 175936048903704, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://80469396002443", + "name": "Captain Octopus", + "thumbnail": "rbxassetid://110536424146159", + "tradable": false, + }, + "configName": "Captain Octopus", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.906Z", + "hashShort": "cecde77d618ea162", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 157620064174623, + 171104154795669, + 177322572196451, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://103618861726707", + "name": "Leafy Seahorse", + "thumbnail": "rbxassetid://72223860700547", + "tradable": false, + }, + "configName": "Leafy Seahorse", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.899Z", + "hashShort": "06d44e342b8762bb", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 155425910693599, + 166715847833621, + 174854149530299, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://140690540984237", + "name": "Pirate Dog", + "thumbnail": "rbxassetid://89232158046808", + "tradable": false, + }, + "configName": "Pirate Dog", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.908Z", + "hashShort": "4c3133f8aa300baf", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 157317045851747, + 170498118149918, + 176981676583216, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://91828218354553", + "name": "Skeleton Shark", + "thumbnail": "rbxassetid://99963264496950", + "tradable": false, + }, + "configName": "Skeleton Shark", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.907Z", + "hashShort": "14abb8b18bc44cf6", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 158068471261965, + 172000968970354, + 177827030169711, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://120042958743620", + "name": "Mystical Whale", + "thumbnail": "rbxassetid://91010953570749", + "tradable": false, + }, + "configName": "Mystical Whale", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.905Z", + "hashShort": "a995bf482662ca0f", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 158363430432800, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://112643327149183", + "name": "Anglerfish", + "thumbnail": "rbxassetid://120367608002307", + "tradable": false, + }, + "configName": "Anglerfish", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "c43f654a178fe16d", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 158509741593270, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://112620274687259", + "name": "Krakling Kraken", + "thumbnail": "rbxassetid://73809184044845", + "tradable": false, + }, + "configName": "Krakling Kraken", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "27ce6080780cd700", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "balloon": true, + "flyHeightChange": 0, + }, + "cachedPower": [ + 157919806559577, + 171703639565576, + 177659782379524, ], "fly": true, - "fromEgg": "Ember Chasm Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 262, - "goldenThumbnail": "rbxassetid://90827079598748", - "maxChance": 0.9090816003132836, - "name": "Ember Vulture", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://127115511909270", + "name": "Seamine Pufferfish", + "thumbnail": "rbxassetid://70501158681864", + "tradable": false, + }, + "configName": "Seamine Pufferfish", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.907Z", + "hashShort": "fa1076c2df6b02c8", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 158216343082172, + 172296712610768, + 177993385967444, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://109682985178649", + "name": "Rogue Squid", + "thumbnail": "rbxassetid://135170255144622", + "tradable": false, + }, + "configName": "Rogue Squid", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.909Z", + "hashShort": "8e3dd30994290e10", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 3, + "goldenThumbnail": "", + "name": "Aura Dominus", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://128631433384190", + "thumbnail": "rbxassetid://88554800830077", }, - "configName": "Ember Vulture", + "configName": "Aura Dominus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9f6b62c0b39a4f09", + "hashShort": "66171ccc6872327a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://92443422690070", - "name": "Poseidon Axolotl", + "exclusiveLevel": 2, + "goldenThumbnail": "", + "name": "Aura Bull", "rarity": { "Announce": true, "Color": null, @@ -133940,56 +139321,50 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "tdadd": "Poseidon Axolotl", - "thumbnail": "rbxassetid://81457537134265", + "thumbnail": "rbxassetid://74227148964030", }, - "configName": "Poseidon Axolotl", + "configName": "Aura Bull", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "320b751c5630a410", + "hashShort": "320c5e1538846afd", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 3362110648940767, - ], - "fromEgg": "Obsidian Spire Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 264, - "goldenThumbnail": "rbxassetid://85103255519117", - "maxChance": 2.497476923937592e-7, - "name": "Fire Kitsune", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://111271764588056", + "name": "Aura Fox", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://116329114411131", + "thumbnail": "rbxassetid://97763976708119", }, - "configName": "Fire Kitsune", + "configName": "Aura Fox", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "74e6de6a4712d930", + "hashShort": "c467479083552585", }, { - "category": "Huge", + "category": "Gargantuan", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://73016915935946", - "huge": true, - "indexDesc": "Found from completing Tower Defense maps!", + "gargantuan": true, + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Aura Egg! + +Ground Slam - Pet will damage breakables in a large area!", "indexObtainable": true, - "name": "Huge Frostbyte Griffin", + "name": "Gargantuan Aura Cat", "rarity": { "Announce": true, "Color": null, @@ -134002,22 +139377,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://133555995966095", + "thumbnail": "rbxassetid://137518632763038", }, - "configName": "Huge Frostbyte Griffin", + "configName": "Gargantuan Aura Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6741af914f13d4c0", + "hashShort": "e4ec2cd0aab840b2", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://81115915677228", + "goldenThumbnail": "rbxassetid://72422909388772", "huge": true, - "indexDesc": "Found with the Poseidon Axolotl Tower!", + "indexDesc": "Found in the Exclusive Aura Egg!", "indexObtainable": true, - "name": "Huge Poseidon Axolotl", + "name": "Huge Aura Fox", "rarity": { "Announce": true, "Color": null, @@ -134030,24 +139405,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "tdadd": "Poseidon Axolotl", - "thumbnail": "rbxassetid://86210025446242", + "thumbnail": "rbxassetid://102863074844102", }, - "configName": "Huge Poseidon Axolotl", + "configName": "Huge Aura Fox", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ae880c19ea90dadb", + "hashShort": "e34d68468d912460", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://78315628281378", + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in Tower Defense Infinite Mode!", + "indexDesc": "Found in the Exclusive Aura Egg!", "indexObtainable": true, - "name": "Huge Blurred Owl", + "name": "Huge Aura Dominus", "rarity": { "Announce": true, "Color": null, @@ -134060,23 +139433,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://108865799258120", + "thumbnail": "rbxassetid://96765579469696", }, - "configName": "Huge Blurred Owl", + "configName": "Huge Aura Dominus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8225468d294bae10", + "hashShort": "f539ebb3adb778d0", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://121888752674812", + "goldenThumbnail": "rbxassetid://124596079068216", "huge": true, - "indexDesc": "Found in Tower Defense AFK Mode!", + "indexDesc": "Found in the Fishing World's eggs!", "indexObtainable": true, - "name": "Huge Jetpack Cat", + "name": "Huge Pirate Dog", "rarity": { "Announce": true, "Color": null, @@ -134089,23 +139461,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://112353118554284", + "thumbnail": "rbxassetid://128373074804496", }, - "configName": "Huge Jetpack Cat", + "configName": "Huge Pirate Dog", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8a84eac0c9c5f979", + "hashShort": "fa81ce12f50676f7", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://103573375063274", + "goldenThumbnail": "rbxassetid://77756016749095", "huge": true, - "indexDesc": "Found in the Tower Defense World's most infinity waves contest!", + "indexDesc": "Found in the Fishing World's fishing contest!", "indexObtainable": true, - "name": "Huge Shadow Pegasus", + "name": "Huge Rogue Squid", "rarity": { "Announce": true, "Color": null, @@ -134118,23 +139489,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://131804456105000", + "thumbnail": "rbxassetid://82176106497018", }, - "configName": "Huge Shadow Pegasus", + "configName": "Huge Rogue Squid", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f23b534bf2d5fa0c", + "hashShort": "c9ba9332feca7dc0", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://127294712784463", + "goldenThumbnail": "rbxassetid://87272836526346", "huge": true, - "indexDesc": "Found in the Tower Defense Magma Unit Egg!", + "indexDesc": "Found in the Fishing World's waters!", "indexObtainable": true, - "name": "Huge Arcade Meebo in a Spaceship", + "name": "Huge Anglerfish", "rarity": { "Announce": true, "Color": null, @@ -134147,23 +139517,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "tdadd": "Arcade Meebo in a Spaceship", - "thumbnail": "rbxassetid://72018720220470", + "thumbnail": "rbxassetid://102757425603718", }, - "configName": "Huge Arcade Meebo in a Spaceship", + "configName": "Huge Anglerfish", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "197ab2806016c321", + "hashShort": "cda8bd4d1db7466a", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://79910812197115", + "goldenThumbnail": "rbxassetid://110337853132269", "huge": true, - "indexDesc": "Found in the Tower Defense Forever Pack!", + "indexDesc": "Found in the Fishing World's Forever Pack!", "indexObtainable": true, - "name": "Huge Rich Corgi", + "name": "Huge Mystical Whale", "rarity": { "Announce": true, "Color": null, @@ -134176,23 +139545,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://124517901804987", + "thumbnail": "rbxassetid://128951201901873", }, - "configName": "Huge Rich Corgi", + "configName": "Huge Mystical Whale", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "59f5c922c5c000d0", + "hashShort": "0985729c53dcca1c", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://126497020374873", + "goldenThumbnail": "rbxassetid://111640531354567", "huge": true, - "indexDesc": "Found in the final zone of Fantasy World!", + "indexDesc": "Reward in the 2025 Poison Turtle Clan Battle!", "indexObtainable": true, - "name": "Huge Obsidian Griffin", + "name": "Huge Poison Turtle", "rarity": { "Announce": true, "Color": null, @@ -134205,21 +139573,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://105493952601280", + "thumbnail": "rbxassetid://90099723016359", }, - "configName": "Huge Obsidian Griffin", + "configName": "Huge Poison Turtle", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f4fe3ae7ca6782bf", + "hashShort": "5e01bbe2b3b6dbc5", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://72307224721426", - "indexDesc": "Found with the Poseidon Axolotl Tower!", + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Aura Egg!", "indexObtainable": true, - "name": "Titanic Poseidon Axolotl", + "name": "Titanic Aura Kitsune", "rarity": { "Announce": true, "Color": null, @@ -134232,24 +139600,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "tdadd": "Poseidon Axolotl", - "thumbnail": "rbxassetid://80369065406332", + "thumbnail": "rbxassetid://80758347451953", "titanic": true, }, - "configName": "Titanic Poseidon Axolotl", + "configName": "Titanic Aura Kitsune", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "dfc13afaaf5de2c3", + "hashShort": "c9c82b10a704958c", }, { "category": "Titanic", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://116823990397840", - "indexDesc": "Found in Tower Defense Infinite Mode!", + "goldenThumbnail": "rbxassetid://93804750715596", + "indexDesc": "Found in the Fishing World's waters!", "indexObtainable": true, - "name": "Titanic Disco Ball Agony", + "name": "Titanic Leafy Seahorse", "rarity": { "Announce": true, "Color": null, @@ -134262,22 +139628,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://79337032741269", + "thumbnail": "rbxassetid://116393400860813", "titanic": true, }, - "configName": "Titanic Disco Ball Agony", + "configName": "Titanic Leafy Seahorse", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d74a145ea3260b30", + "hashShort": "893325372cfa49ad", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://74224315493205", - "indexDesc": "Found in the Tower Defense World's most infinity waves contest!", + "goldenThumbnail": "rbxassetid://138640663156184", + "indexDesc": "Found in the Fishing World's fishing contest!", "indexObtainable": true, - "name": "Titanic DJ Shark", + "name": "Titanic Captain Octopus", "rarity": { "Announce": true, "Color": null, @@ -134290,28 +139656,25 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://111270922153333", + "thumbnail": "rbxassetid://108839170452682", "titanic": true, }, - "configName": "Titanic DJ Shark", + "configName": "Titanic Captain Octopus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "13aec8fef0bbe4f9", + "hashShort": "9799826ef6261ad1", }, { "category": "Titanic", "collection": "Pets", "configData": { - "animations": { - "swerve": true, - "swerveAggression": 1, - "swerveMaxAngle": 60, - }, "fly": true, - "goldenThumbnail": "rbxassetid://73016321559724", - "indexDesc": "Found in the Tower Defense Magma Unit Egg!", + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "goldenThumbnail": "rbxassetid://103990206239519", + "indexDesc": "Earned from the Exclusive Raffle!", "indexObtainable": true, - "name": "Titanic Helicopter Corgi", + "name": "Titanic Super Corgi", "rarity": { "Announce": true, "Color": null, @@ -134324,547 +139687,688 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "tdadd": "Helicopter Corgi", - "thumbnail": "rbxassetid://139030108461655", + "thumbnail": "rbxassetid://83701890267359", "titanic": true, }, - "configName": "Titanic Helicopter Corgi", + "configName": "Titanic Super Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "862f3e015c6c0e6c", + "hashShort": "e93a688d450992c1", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "animations": { - "ballBounceHeight": 2, + "goldenThumbnail": "rbxassetid://116828499922168", + "indexDesc": "Found in the Fishing World's Kraken Whirlpool!", + "indexObtainable": true, + "name": "Titanic Kraken", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, }, - "cachedPower": [ - 1181359550001449, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 263, - "goldenThumbnail": "rbxassetid://81731958382235", - "gymPower": 50, - "name": "Baseball Dolphin", - "thumbnail": "rbxassetid://72207420281851", + "thumbnail": "rbxassetid://82337742221537", + "titanic": true, }, - "configName": "Baseball Dolphin", + "configName": "Titanic Kraken", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e62df57cf354b367", + "hashShort": "2f624e1a06e0d205", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "ballBounceHeight": 2, - }, "cachedPower": [ - 1138659807230311, + 159087385415162, ], - "fromWorldNumber": 4, - "fromZoneNumber": 263, - "goldenThumbnail": "rbxassetid://86168317979967", - "gymPower": 10, - "name": "Football Tiger", - "thumbnail": "rbxassetid://107564789202189", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://131540788963222", + "name": "Beluga Whale", + "thumbnail": "rbxassetid://120324460450907", + "tradable": false, }, - "configName": "Football Tiger", + "configName": "Beluga Whale", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "23d1e7f6f511a036", + "hashShort": "4a0f61ce660042b9", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "ballBounceHeight": 2, - }, "cachedPower": [ - 1167126302411067, + 176255859188799, + 190358748129824, + 198287841587399, ], + "fromEgg": "Flora Egg", "fromWorldNumber": 4, - "fromZoneNumber": 263, - "goldenThumbnail": "rbxassetid://135374060583481", - "gymPower": 24, - "name": "Basketball Monkey", - "thumbnail": "rbxassetid://103339445260972", + "fromZoneNumber": 241, + "goldenThumbnail": "rbxassetid://94639094871467", + "maxChance": 0.9, + "name": "Lilypad Cat", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://109955837344460", }, - "configName": "Basketball Monkey", + "configName": "Lilypad Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "4d67dddc3c9279e5", + "dateModified": "2026-06-27T16:05:43.911Z", + "hashShort": "109531a059944fbe", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "ballBounceHeight": 2, - }, "cachedPower": [ - 1259642411748535, + 250965116028753, + 271052272466437, + 282335755532347, ], + "fly": true, + "fromEgg": "Fairy Mushroom Egg", "fromWorldNumber": 4, - "fromZoneNumber": 263, - "goldenThumbnail": "rbxassetid://85412700909383", - "gymPower": 400, - "name": "Soccer Terrier", - "thumbnail": "rbxassetid://129012272907751", - }, - "configName": "Soccer Terrier", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c71e9ebca1e7e12d", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://75320514835896", - "name": "Super Coral Axolotl", + "fromZoneNumber": 244, + "goldenThumbnail": "rbxassetid://107563939076552", + "maxChance": 0.8991008991008992, + "name": "Beegle Dog", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://140554111932845", + "thumbnail": "rbxassetid://138527802808775", }, - "configName": "Super Coral Axolotl", + "configName": "Beegle Dog", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "993f26f8db0a8f0f", + "dateModified": "2026-06-27T16:05:43.912Z", + "hashShort": "a8f4caba763273f3", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1486151203479796, + 158068471261965, + 172000968970354, + 177827030169711, ], - "fromWorldNumber": 4, - "fromZoneNumber": 263, - "goldenThumbnail": "rbxassetid://116176992909192", - "gymPower": 12000, - "name": "Gym Shark", - "thumbnail": "rbxassetid://84637954572721", + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://119891913126303", + "name": "Snow Crab", + "thumbnail": "rbxassetid://121468674139017", + "tradable": false, }, - "configName": "Gym Shark", + "configName": "Snow Crab", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "af6ee64a73a20f40", + "dateModified": "2026-06-27T16:05:43.911Z", + "hashShort": "54388fdfe174ebd6", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1441116318525863, + 198287841587399, + 214153591646052, + 223073821785824, ], + "fromEgg": "Firefly Forest Egg", "fromWorldNumber": 4, - "fromZoneNumber": 263, - "goldenThumbnail": "rbxassetid://94086244569223", - "gymPower": 6000, - "name": "Gym Scorpion", - "thumbnail": "rbxassetid://98763638093495", + "fromZoneNumber": 242, + "goldenThumbnail": "rbxassetid://73050377978984", + "maxChance": 0.8991008991008992, + "name": "Wisp Deer", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://72875254567380", }, - "configName": "Gym Scorpion", + "configName": "Wisp Deer", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2748a41e32150992", + "dateModified": "2026-06-27T16:05:43.914Z", + "hashShort": "ba98699cf214ddc0", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1321023291982041, + 428563738681216, + 460105997328509, + 482134206016368, ], + "fly": true, + "fromEgg": "Rune Graveyard Egg", "fromWorldNumber": 4, - "fromZoneNumber": 263, - "goldenThumbnail": "rbxassetid://71958398875736", - "gymPower": 1200, - "name": "Gym Anteater", - "thumbnail": "rbxassetid://118917112706434", + "fromZoneNumber": 248, + "goldenThumbnail": "rbxassetid://130533071415265", + "maxChance": 0.09090811462314466, + "name": "Angel Dragon", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://111443335088107", }, - "configName": "Gym Anteater", + "configName": "Angel Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "2f3b707faf8faaef", + "dateModified": "2026-06-27T16:05:43.915Z", + "hashShort": "dd90105c43f6a627", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1152893054820693, + 223073821785824, + 240922790601809, + 250958049509052, ], + "fly": true, + "fromEgg": "Honeycomb Egg", "fromWorldNumber": 4, - "fromZoneNumber": 263, - "goldenThumbnail": "rbxassetid://138734965116841", - "gymPower": 12, - "name": "Boxing Elephant", - "thumbnail": "rbxassetid://108992431452825", + "fromZoneNumber": 243, + "goldenThumbnail": "rbxassetid://94671604790188", + "maxChance": 0.08991008991008992, + "name": "Pixie Bee", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://126592920920754", }, - "configName": "Boxing Elephant", + "configName": "Pixie Bee", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1b8f50b4eac45a98", + "dateModified": "2026-06-27T16:05:43.916Z", + "hashShort": "b381d6aeb792d776", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://99707279098428", - "name": "Super Coral Hydra", + "cachedPower": [ + 300994011254846, + 323147147643617, + 338618262661702, + ], + "fromEgg": "Fantasy Meadow Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 245, + "goldenThumbnail": "rbxassetid://102915908313416", + "maxChance": 0.08991008991008992, + "name": "Mushroom Corgi", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://97376504237920", + "thumbnail": "rbxassetid://120928082456336", }, - "configName": "Super Coral Hydra", + "configName": "Mushroom Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d6aa84e7dc0d2b79", + "dateModified": "2026-06-27T16:05:43.917Z", + "hashShort": "d6b4d25c2398a770", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "flyHeight": 0.025, + "flyHeightChange": 0, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, + }, "cachedPower": [ - 1823912840634295, + 282335755532347, + 304933806524742, + 317627724973891, ], "fly": true, + "fromEgg": "Fantasy Meadow Egg", "fromWorldNumber": 4, - "fromZoneNumber": 263, - "goldenThumbnail": "rbxassetid://138149942266123", - "gymPower": 325000, - "name": "Gym Dragon", - "thumbnail": "rbxassetid://74516876725093", + "fromZoneNumber": 245, + "goldenThumbnail": "rbxassetid://135461834715789", + "maxChance": 0.8991008991008992, + "name": "Mushroom Snail", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://129494623383025", }, - "configName": "Gym Dragon", + "configName": "Mushroom Snail", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c03b6e59d70a88e7", + "dateModified": "2026-06-27T16:05:43.915Z", + "hashShort": "4f9767a6850025a0", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1621255858341595, + 338618262661702, + 363540541099069, + 380945545494415, ], + "fly": true, + "fromEgg": "Radiant Runestones Egg", "fromWorldNumber": 4, - "fromZoneNumber": 263, - "goldenThumbnail": "rbxassetid://90291336864398", - "gymPower": 90000, - "name": "Gym Corgi", - "thumbnail": "rbxassetid://134435000500135", + "fromZoneNumber": 246, + "goldenThumbnail": "rbxassetid://135234988919777", + "maxChance": 0.08991008991008992, + "name": "Flying Piggy", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://133181699042910", }, - "configName": "Gym Corgi", + "configName": "Flying Piggy", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6ff44a7dd66bbb7a", + "dateModified": "2026-06-27T16:05:43.920Z", + "hashShort": "3a27a239fc3e1c27", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1531186088433729, + 317627724973891, + 343050532340334, + 357331190595627, ], + "fromEgg": "Radiant Runestones Egg", "fromWorldNumber": 4, - "fromZoneNumber": 263, - "goldenThumbnail": "rbxassetid://121386458623667", - "gymPower": 26000, - "name": "Gym Piggy", - "thumbnail": "rbxassetid://124438921009534", + "fromZoneNumber": 246, + "goldenThumbnail": "rbxassetid://130301158487486", + "maxChance": 0.8991008991008992, + "name": "Mossy Lamb", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://88362418790125", }, - "configName": "Gym Piggy", + "configName": "Mossy Lamb", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "49b23f0c44eeab99", + "dateModified": "2026-06-27T16:05:43.916Z", + "hashShort": "ec1fe5a3513d5464", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://82996328251304", - "name": "Super Coral Whale", + "cachedPower": [ + 401997589420080, + 434173329993236, + 452247288097590, + ], + "fly": true, + "fromEgg": "Rune Graveyard Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 248, + "goldenThumbnail": "rbxassetid://87198689985064", + "maxChance": 0.9090811462314466, + "name": "Glade Griffin", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://87561045256160", + "thumbnail": "rbxassetid://140156706592555", }, - "configName": "Super Coral Whale", + "configName": "Glade Griffin", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a81e327c4f4e48b1", + "dateModified": "2026-06-27T16:05:43.918Z", + "hashShort": "efaf4b78dc03a8bf", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1216942668977397, + 267550232226530, + 287241909016548, + 300994011254846, ], + "fromEgg": "Fairy Mushroom Egg", "fromWorldNumber": 4, - "fromZoneNumber": 263, - "goldenThumbnail": "rbxassetid://127307696580759", - "gymPower": 150, - "name": "Gym Panda", - "thumbnail": "rbxassetid://132197616099021", - }, - "configName": "Gym Panda", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c78dc0d6dda4d2d7", - }, - { - "category": "Gargantuan", - "collection": "Pets", - "configData": { - "gargantuan": true, - "goldenThumbnail": "rbxassetid://113705996399329", - "indexDesc": "Found in the Exclusive Super Coral Egg! - -Ground Slam - Pet will damage breakables in a large area!", - "indexObtainable": true, - "name": "Gargantuan Super Coral Kraken", + "fromZoneNumber": 244, + "goldenThumbnail": "rbxassetid://102695750394965", + "maxChance": 0.08991008991008992, + "name": "Honey Golem", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://71123467327540", + "thumbnail": "rbxassetid://119417956317628", }, - "configName": "Gargantuan Super Coral Kraken", + "configName": "Honey Golem", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6ded0befce1f4774", + "dateModified": "2026-06-27T16:05:43.922Z", + "hashShort": "dc4b6867a6722576", }, { - "category": "Gargantuan", + "category": "Uncategorized", "collection": "Pets", "configData": { + "cachedPower": [ + 564949890458245, + 603337031288739, + 635568626765525, + ], "fly": true, - "flyingTitanic": true, - "flyingTitanicAlwaysFly": true, - "gargantuan": true, - "goldenThumbnail": "rbxassetid://75800581972625", - "indexDesc": "Earned from the Exclusive Raffle! - -Ground Slam - Pet will damage breakables in a large area!", - "indexObtainable": true, - "name": "Gargantuan Forest Wyvern", + "fromEgg": "Halo Spires Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 249, + "goldenThumbnail": "rbxassetid://132445427668851", + "maxChance": 7.492427029380054e-7, + "name": "Empyrean Owl", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://120552464852825", + "thumbnail": "rbxassetid://109702265808031", }, - "configName": "Gargantuan Forest Wyvern", + "configName": "Empyrean Owl", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9e9e526849bb31c0", + "dateModified": "2026-06-27T16:05:43.918Z", + "hashShort": "944965aa24b60431", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://78523422473052", - "huge": true, - "indexDesc": "Comes with BIG Games Merchandise!", - "indexObtainable": true, - "name": "Huge Demon", + "cachedPower": [ + 539779533414711, + 580355566603616, + 607251975091549, + ], + "fromEgg": "Halo Spires Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 249, + "goldenThumbnail": "rbxassetid://79988543098810", + "maxChance": 0.000009989902705840073, + "name": "Empyrean Corgi", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://92733626673208", + "thumbnail": "rbxassetid://133804075558939", }, - "configName": "Huge Demon", + "configName": "Empyrean Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8831e33df1210572", + "dateModified": "2026-06-27T16:05:43.917Z", + "hashShort": "12601af293b1381f", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://103038544571340", - "huge": true, - "indexDesc": "Comes with BIG Games Merchandise!", - "indexObtainable": true, - "name": "Huge Holographic Corgi", + "cachedPower": [ + 380945545494415, + 408983108736453, + 428563738681216, + ], + "fromEgg": "Fogbound Forest Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 247, + "goldenThumbnail": "rbxassetid://121377816869007", + "maxChance": 0.08991008991008992, + "name": "Relic Deer", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://117552656030475", + "thumbnail": "rbxassetid://140707456274261", }, - "configName": "Huge Holographic Corgi", + "configName": "Relic Deer", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "30e06989cff8215e", + "dateModified": "2026-06-27T16:05:43.921Z", + "hashShort": "c00d2996617e3e2e", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://78910265485614", - "huge": true, - "indexDesc": "Comes with BIG Games Merchandise!", - "indexObtainable": true, - "name": "Huge Runic Wolf", + "cachedPower": [ + 357331190595627, + 385931848882876, + 401997589420080, + ], + "fromEgg": "Fogbound Forest Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 247, + "goldenThumbnail": "rbxassetid://92735912126275", + "maxChance": 0.8991008991008992, + "name": "Relic Cat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://90992015930571", + "thumbnail": "rbxassetid://70577077433208", }, - "configName": "Huge Runic Wolf", + "configName": "Relic Cat", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "87ae4b42c8db2dc1", + "dateModified": "2026-06-27T16:05:43.919Z", + "hashShort": "1704ac70ab0cb5e6", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://93637291980034", - "huge": true, - "indexDesc": "Found in the Exclusive Super Coral Egg!", - "indexObtainable": true, - "name": "Huge Super Coral Axolotl", + "cachedPower": [ + 147858233878416, + 158938999926671, + 166340513113218, + ], + "fromEgg": "Fantasy Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 240, + "goldenThumbnail": "rbxassetid://135925441698270", + "maxChance": 0.9, + "name": "Enchanted Dog", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://123726574453022", + "thumbnail": "rbxassetid://105590374967253", }, - "configName": "Huge Super Coral Axolotl", + "configName": "Enchanted Dog", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e7921e21bfdf5081", + "dateModified": "2026-06-27T16:05:43.921Z", + "hashShort": "8e83021e302538fe", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://81491047641575", - "huge": true, - "indexDesc": "Found in the Exclusive Super Coral Egg!", - "indexObtainable": true, - "name": "Huge Super Coral Hydra", + "cachedPower": [ + 137669378467222, + 147217891553487, + 154878050775625, + ], + "fromEgg": "Fantasy Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 240, + "goldenThumbnail": "rbxassetid://112085652733167", + "maxChance": 0.9, + "name": "Enchanted Bunny", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://70870472183962", + "thumbnail": "rbxassetid://118375250498424", }, - "configName": "Huge Super Coral Hydra", + "configName": "Enchanted Bunny", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ffa13ef65fac3512", + "dateModified": "2026-06-27T16:05:43.920Z", + "hashShort": "d8e35045749cc39c", }, { - "category": "Huge", + "category": "Gargantuan", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://123239116359351", - "huge": true, - "indexDesc": "Reward in the 2025 Scuba Dog Clan Battle!", + "fly": true, + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "gargantuan": true, + "goldenThumbnail": "rbxassetid://87460092930842", + "indexDesc": "Found in the Forever Pack & Time Trials Contest! + +Ground Slam - Pet will damage breakables in a large area!", "indexObtainable": true, - "name": "Huge Scuba Dog", + "name": "Gargantuan Nyan Cat", "rarity": { "Announce": true, "Color": null, @@ -134877,22 +140381,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://139017924153372", + "thumbnail": "rbxassetid://102598468729073", }, - "configName": "Huge Scuba Dog", + "configName": "Gargantuan Nyan Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "587748b7f6b29f02", + "hashShort": "a98b52cb0285a715", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://113018325609387", + "goldenThumbnail": "rbxassetid://117463338514390", "huge": true, - "indexDesc": "Found in the Gym World's leaderboard contest!", + "indexDesc": "Found occasionally in Active Huge Pets!", "indexObtainable": true, - "name": "Huge Gym Anteater", + "name": "Huge Walrus", "rarity": { "Announce": true, "Color": null, @@ -134905,22 +140409,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://113847537674540", + "thumbnail": "rbxassetid://102190929472921", }, - "configName": "Huge Gym Anteater", + "configName": "Huge Walrus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0b9c7cce1daa3ec0", + "hashShort": "f64c125ccb1b2c1a", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://101452549247299", + "goldenThumbnail": "rbxassetid://130999498345596", "huge": true, - "indexDesc": "Found in the Gym Egg!", + "indexDesc": "Found in the Fishing Event!", "indexObtainable": true, - "name": "Huge Gym Corgi", + "name": "Huge Skeleton Shark", "rarity": { "Announce": true, "Color": null, @@ -134933,22 +140437,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://100837906576069", + "thumbnail": "rbxassetid://87082066811704", }, - "configName": "Huge Gym Corgi", + "configName": "Huge Skeleton Shark", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8506d335879cf63e", + "hashShort": "014f55ecfd04feb3", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://113996590585228", + "goldenThumbnail": "rbxassetid://133628846033411", "huge": true, - "indexDesc": "Found in the Gym World's final egg!", + "indexDesc": "Found from fishing near Blizzard Bay!", "indexObtainable": true, - "name": "Huge Gym Panda", + "name": "Huge Snow Crab", "rarity": { "Announce": true, "Color": null, @@ -134961,22 +140465,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://139794409376900", + "thumbnail": "rbxassetid://115554189574949", }, - "configName": "Huge Gym Panda", + "configName": "Huge Snow Crab", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ec59037c16476349", + "hashShort": "5ba982a492c40d5e", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://131616918905715", + "goldenThumbnail": "rbxassetid://103833486876057", "huge": true, - "indexDesc": "Found in the Muscle Forever Pack!", + "indexDesc": "Found in the Forever Pack!", "indexObtainable": true, - "name": "Huge Boxing Elephant", + "name": "Huge Honey Golem", "rarity": { "Announce": true, "Color": null, @@ -134989,22 +140493,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://110943916892100", + "thumbnail": "rbxassetid://137790687877183", }, - "configName": "Huge Boxing Elephant", + "configName": "Huge Honey Golem", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "df2faf72fca625ec", + "hashShort": "6e45b9f35e6f2a56", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://116157203279546", + "goldenThumbnail": "rbxassetid://134011087876937", "huge": true, - "indexDesc": "Found by earning points in the Muscle Race!", + "indexDesc": "Awarded to the top 5,000 players in the Fishing Contest!", "indexObtainable": true, - "name": "Huge Gym Shark", + "name": "Huge Stingray", "rarity": { "Announce": true, "Color": null, @@ -135017,21 +140521,26 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://96513161978756", + "thumbnail": "rbxassetid://74045348274896", }, - "configName": "Huge Gym Shark", + "configName": "Huge Stingray", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0b2aa1bf6fea74fd", + "hashShort": "2a7a92e598f02410", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://87191346178159", - "indexDesc": "Found in the Exclusive Super Coral Egg!", + "animations": { + "spinZ": true, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://83484250625893", + "huge": true, + "indexDesc": "Found in the Forever Pack!", "indexObtainable": true, - "name": "Titanic Super Coral Stingray", + "name": "Huge Wicked Angelus", "rarity": { "Announce": true, "Color": null, @@ -135044,22 +140553,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://78134385272600", - "titanic": true, + "thumbnail": "rbxassetid://87751794177322", }, - "configName": "Titanic Super Coral Stingray", + "configName": "Huge Wicked Angelus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "32e05ec2427a951a", + "hashShort": "2e5829ef8e2590f7", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://108453275500302", - "indexDesc": "Found by earning points in the Muscle Race!", + "goldenThumbnail": "rbxassetid://137919211957323", + "huge": true, + "indexDesc": "Obtained from the Time Trials Contest!", "indexObtainable": true, - "name": "Titanic Gym Piggy", + "name": "Huge Relic Deer", "rarity": { "Announce": true, "Color": null, @@ -135072,23 +140581,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://83418426138856", - "titanic": true, + "thumbnail": "rbxassetid://113333249087302", }, - "configName": "Titanic Gym Piggy", + "configName": "Huge Relic Deer", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e8e24c38106e7493", + "hashShort": "9fe3c85cbe939269", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://119437333352376", - "indexDesc": "Found in the Gym Egg!", + "goldenThumbnail": "rbxassetid://100506993092180", + "huge": true, + "indexDesc": "Found in the Fantasy Chest!", "indexObtainable": true, - "name": "Titanic Gym Dragon", + "name": "Huge Glade Griffin", "rarity": { "Announce": true, "Color": null, @@ -135101,26 +140610,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://91679016973225", - "titanic": true, + "thumbnail": "rbxassetid://89142183208055", }, - "configName": "Titanic Gym Dragon", + "configName": "Huge Glade Griffin", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "cab7a376fe2e0017", + "hashShort": "888caf8be5fcf160", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - }, "fly": true, - "goldenThumbnail": "rbxassetid://96430258543918", - "indexDesc": "Reward in 2025 July (and more!) Clan Battles!", + "goldenThumbnail": "rbxassetid://102318491837918", + "huge": true, + "indexDesc": "Found in the Fantasy Spinny Wheel!", "indexObtainable": true, - "name": "Titanic Sun Angelus", + "name": "Huge Pixie Bee", "rarity": { "Announce": true, "Color": null, @@ -135133,22 +140639,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://128663320518794", - "titanic": true, + "thumbnail": "rbxassetid://87836274620619", }, - "configName": "Titanic Sun Angelus", + "configName": "Huge Pixie Bee", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8953fba3c174876c", + "hashShort": "659afee516af5879", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://76733027839169", - "indexDesc": "Found in the Exclusive Raffle Titanic!", + "goldenThumbnail": "rbxassetid://115670428864339", + "huge": true, + "indexDesc": "Can be dropped in the Time Trials!", "indexObtainable": true, - "name": "Titanic Ghost Axolotl", + "name": "Huge Wisp Deer", "rarity": { "Announce": true, "Color": null, @@ -135161,22 +140667,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://81649535142902", - "titanic": true, + "thumbnail": "rbxassetid://119889276435598", }, - "configName": "Titanic Ghost Axolotl", + "configName": "Huge Wisp Deer", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a2a65c0126345f74", + "hashShort": "c92b975701c69711", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://122790144357783", - "indexDesc": "Found in the Gym World's leaderboard contest!", + "goldenThumbnail": "rbxassetid://113434395519180", + "huge": true, + "indexDesc": "Found in the Time Trials gift bag!", "indexObtainable": true, - "name": "Titanic Gym Shark", + "name": "Huge Royal Peacock", "rarity": { "Announce": true, "Color": null, @@ -135189,497 +140695,290 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://116575608018506", - "titanic": true, + "thumbnail": "rbxassetid://87911299372812", }, - "configName": "Titanic Gym Shark", + "configName": "Huge Royal Peacock", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "d2bbfc8e47002a86", + "hashShort": "e709f46f58b84db9", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 3349319856091701, - ], - "fromEgg": "Glimmer Grottos Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 266, - "goldenThumbnail": "rbxassetid://135804643877845", - "maxChance": 0.8991008991008992, - "name": "Sentry Drake", + "goldenThumbnail": "rbxassetid://109531042756169", + "huge": true, + "indexDesc": "Found in the final zone of Fantasy World!", + "indexObtainable": true, + "name": "Huge Enchanted Dog", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://135911584087282", - }, - "configName": "Sentry Drake", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "5eb3cc0f3af0606e", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 1280992283134100, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 263, - "goldenThumbnail": "rbxassetid://71672812215477", - "gymPower": 470, - "name": "Coach Hippo", - "thumbnail": "rbxassetid://129940258877476", - }, - "configName": "Coach Hippo", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "189da7cfcad785f1", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 1576220973387662, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 263, - "goldenThumbnail": "rbxassetid://122007616243785", - "gymPower": 35000, - "name": "Gym Beaver", - "thumbnail": "rbxassetid://86817400984960", + "thumbnail": "rbxassetid://98036079803445", }, - "configName": "Gym Beaver", + "configName": "Huge Enchanted Dog", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "52539d5efd5685a0", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 2051901945713582, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 263, - "goldenThumbnail": "rbxassetid://129580176948485", - "gymPower": 1000000, - "name": "Buff Tiger", - "thumbnail": "rbxassetid://72335289713786", - }, - "configName": "Buff Tiger", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-19T17:28:35.757Z", - "hashShort": "26829d303ead25a9", + "hashShort": "ea8b6aff124affed", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 5692025783572877, - ], - "fromEgg": "Archivists Tower Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 269, - "goldenThumbnail": "rbxassetid://88819869101530", - "maxChance": 0.000009989907096960871, - "name": "Wise Cat", + "fly": true, + "goldenThumbnail": "rbxassetid://104638878654173", + "huge": true, + "indexDesc": "Created from Fantasy Fragments!", + "indexObtainable": true, + "name": "Huge Angel Dragon", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exotic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 6, - "_id": "Exotic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://77880969522182", + "thumbnail": "rbxassetid://118966983027329", }, - "configName": "Wise Cat", + "configName": "Huge Angel Dragon", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-19T17:28:35.716Z", - "hashShort": "c48710370b8365df", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "0daeee8d5452919f", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 2816606238526647, - ], - "fromEgg": "Crystalfall Hollow Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 265, - "goldenThumbnail": "rbxassetid://134823104989203", - "maxChance": 0.9, - "name": "Scribe Squirrel", + "goldenThumbnail": "rbxassetid://70593512457251", + "indexDesc": "Found in the Exclusive Raffle!", + "indexObtainable": true, + "name": "Titanic Keyboard Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://88575611828438", + "thumbnail": "rbxassetid://138627945084194", + "titanic": true, }, - "configName": "Scribe Squirrel", + "configName": "Titanic Keyboard Cat", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "8f6ce6e22b24cce6", + "hashShort": "e6b9e64da26f1ca9", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 2977173205414845, - ], - "fromEgg": "Crystalfall Hollow Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 265, - "goldenThumbnail": "rbxassetid://85313871809976", - "maxChance": 0.8991008991008992, - "name": "Crystal Jackalope", + "goldenThumbnail": "rbxassetid://77541315697271", + "indexDesc": "Awarded to the top 5 players in the Fishing Contest!", + "indexObtainable": true, + "name": "Titanic Narwhal", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://90583905050316", + "thumbnail": "rbxassetid://100083536961839", + "titanic": true, }, - "configName": "Crystal Jackalope", + "configName": "Titanic Narwhal", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f27b50a9e4cffc98", + "hashShort": "26dd2ccdc4079aca", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 3768090937664986, - ], - "fly": true, - "fromEgg": "Mirror Tome Path Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 267, - "goldenThumbnail": "rbxassetid://73013785513275", - "maxChance": 0.08991008991008992, - "name": "Tome Owl", + "goldenThumbnail": "rbxassetid://102663880483207", + "indexDesc": "Found in the Forever Pack!", + "indexObtainable": true, + "name": "Titanic Chest Mimic", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://120386645221149", + "thumbnail": "rbxassetid://121868378193136", + "titanic": true, }, - "configName": "Tome Owl", + "configName": "Titanic Chest Mimic", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e82d391e03b00e35", + "hashShort": "fa4677994838f945", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 6058632564649102, - ], "fly": true, - "fromEgg": "Archivists Tower Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 269, - "goldenThumbnail": "rbxassetid://136359690439003", - "maxChance": 2.497476774240218e-7, - "name": "Quartz Fox", + "goldenThumbnail": "rbxassetid://102601522992708", + "indexDesc": "Obtained from the Time Trials Contest!", + "indexObtainable": true, + "name": "Titanic Empyrean Owl", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Divine", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 7, - "_id": "Divine", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://76401093181479", + "thumbnail": "rbxassetid://104879205036593", + "titanic": true, }, - "configName": "Quartz Fox", + "configName": "Titanic Empyrean Owl", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-19T17:28:35.720Z", - "hashShort": "90abd85e268a52c0", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "321c697b46bf6452", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 2616076339239067, - ], - "fromEgg": "Crystalfall Hollow Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 265, - "goldenThumbnail": "rbxassetid://72264061876113", - "maxChance": 0.9, - "name": "Archivist Ferret", + "animations": { + "flyHeight": 0.025, + "flyHeightChange": 0, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, + }, + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "", + "name": "Wave Spirit", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://88353637072555", - }, - "configName": "Archivist Ferret", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a956a0b3be469f76", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "animations": { - "ballBounceHeight": 2, - }, - "cachedPower": [ - 1238292540362962, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 263, - "goldenThumbnail": "rbxassetid://122063989496264", - "gymPower": 155, - "name": "Tennis Squirrel", - "thumbnail": "rbxassetid://123282088983028", - }, - "configName": "Tennis Squirrel", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ebd77a96dc32f913", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 1722584349487945, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 263, - "goldenThumbnail": "rbxassetid://105118452964176", - "gymPower": 110000, - "name": "Gym Cat", - "thumbnail": "rbxassetid://120405155624686", - }, - "configName": "Gym Cat", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "aaa0105b36c31f2e", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 1937907393173938, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 263, - "goldenThumbnail": "rbxassetid://82170510319724", - "gymPower": 380000, - "name": "Gym Unicorn", - "thumbnail": "rbxassetid://138011318423105", - }, - "configName": "Gym Unicorn", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "c83fde2b9b8c2caf", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 1361054300829981, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 263, - "goldenThumbnail": "rbxassetid://95952045760067", - "gymPower": 1385, - "name": "Gym Axolotl", - "thumbnail": "rbxassetid://99344559505838", - }, - "configName": "Gym Axolotl", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9505bbd7c5134a59", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 1401085309677922, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 263, - "goldenThumbnail": "rbxassetid://91865393457953", - "gymPower": 5650, - "name": "Gym Cow", - "thumbnail": "rbxassetid://137331952998011", - }, - "configName": "Gym Cow", - "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "1b7c104d1260b91d", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "animations": { - "ballBounceHeight": 2, - }, - "cachedPower": [ - 1195592797591823, - ], - "fly": true, - "fromWorldNumber": 4, - "fromZoneNumber": 263, - "goldenThumbnail": "rbxassetid://97584212495769", - "gymPower": 65, - "name": "Golf Griffin", - "thumbnail": "rbxassetid://134009055645578", + "thumbnail": "rbxassetid://109804753791527", }, - "configName": "Golf Griffin", + "configName": "Wave Spirit", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "f5496539984ec0e4", + "hashShort": "3c634406026fd64b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 4519244841864319, - ], + "exclusiveLevel": 2, "fly": true, - "fromEgg": "Scribes Terrace Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 268, - "goldenThumbnail": "rbxassetid://84094738208282", - "maxChance": 0.09090815458234391, - "name": "Grimoire Agony", + "goldenThumbnail": "", + "name": "Light Spirit", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Rare", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 2, - "_id": "Rare", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://111852235269668", + "thumbnail": "rbxassetid://81179704876613", }, - "configName": "Grimoire Agony", + "configName": "Light Spirit", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-19T17:28:35.767Z", - "hashShort": "fb186acfa79e30a3", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "4b47799fa33f9323", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 4017106526101617, - ], - "fromEgg": "Mirror Tome Path Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 267, - "goldenThumbnail": "rbxassetid://115299914522919", - "maxChance": 0.9090815458234391, - "name": "Inkwell Wisp", + "exclusiveLevel": 1, + "fly": true, + "goldenThumbnail": "", + "name": "Blossom Spirit", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://98522101527568", + "thumbnail": "rbxassetid://101941306391852", }, - "configName": "Inkwell Wisp", + "configName": "Blossom Spirit", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-19T17:28:35.754Z", - "hashShort": "9479d449f4ba2bb7", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "f6ce180d298a8981", }, { - "category": "Huge", + "category": "Gargantuan", "collection": "Pets", "configData": { "animations": { - "flyHeight": 0.3, - "flyHeightChange": 0.25, + "flyHeight": 0.025, + "flyHeightChange": 0, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, }, "fly": true, - "goldenThumbnail": "rbxassetid://119580349897134", - "huge": true, - "indexDesc": "Comes with the exclusive Pet Rugs merch!", + "gargantuan": true, + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Spirit Egg! + +Ground Slam - Pet will damage breakables in a large area!", "indexObtainable": true, - "name": "Huge Hoverboard Dog", + "name": "Gargantuan Magma Spirit", "rarity": { "Announce": true, "Color": null, @@ -135692,22 +140991,30 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://117980545661053", + "thumbnail": "rbxassetid://132074129972033", }, - "configName": "Huge Hoverboard Dog", + "configName": "Gargantuan Magma Spirit", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9685175cd522fd8c", + "dateModified": "2026-04-18T15:56:00.489Z", + "hashShort": "204c31bd3f3707a1", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://112709727690161", + "animations": { + "flyHeight": 0.025, + "flyHeightChange": 0, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, + }, + "fly": true, + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in the Buff Gym Egg!", + "indexDesc": "Found in the Exclusive Spirit Egg!", "indexObtainable": true, - "name": "Huge Gym Cow", + "name": "Huge Wave Spirit", "rarity": { "Announce": true, "Color": null, @@ -135720,22 +141027,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://110341807315948", + "thumbnail": "rbxassetid://101464830006395", }, - "configName": "Huge Gym Cow", + "configName": "Huge Wave Spirit", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "a91e7d599d402eab", + "hashShort": "6701423bec5382f3", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://130300354898662", + "fly": true, + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in the Bench a Gargantuan minigame in Gym World!", + "indexDesc": "Found in the Exclusive Spirit Egg!", "indexObtainable": true, - "name": "Huge Gym Scorpion", + "name": "Huge Blossom Spirit", "rarity": { "Announce": true, "Color": null, @@ -135748,22 +141056,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://82303153411870", + "thumbnail": "rbxassetid://91486613555331", }, - "configName": "Huge Gym Scorpion", + "configName": "Huge Blossom Spirit", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "053a00453992de6d", + "hashShort": "bf767a5f558f4612", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://106181154839005", + "goldenThumbnail": "rbxassetid://72634674450547", "huge": true, - "indexDesc": "Found in the Gym World's final egg!", + "indexDesc": "Earned from the 2025 Farming Event!", "indexObtainable": true, - "name": "Huge Coach Hippo", + "name": "Huge Pixel Yeti", "rarity": { "Announce": true, "Color": null, @@ -135776,29 +141084,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://99854649833028", + "thumbnail": "rbxassetid://131996280038414", }, - "configName": "Huge Coach Hippo", + "configName": "Huge Pixel Yeti", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "593284905e0e0960", + "hashShort": "bfca7b9b733b629b", }, { "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 6171095310605698, - ], - "fromEgg": "Archivists Tower Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 269, - "goldenThumbnail": "rbxassetid://117631010986768", + "fly": true, + "goldenThumbnail": "rbxassetid://78525431525423", "huge": true, - "indexDesc": "Found in the final zone of Fantasy World!", + "indexDesc": "Earned from the 2025 Farming Event!", "indexObtainable": true, - "maxChance": 5.993944258176522e-8, - "name": "Huge Scribe Squirrel", + "name": "Huge Pixel Agony", "rarity": { "Announce": true, "Color": null, @@ -135811,22 +141113,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://98604773500066", + "thumbnail": "rbxassetid://85105390467566", }, - "configName": "Huge Scribe Squirrel", + "configName": "Huge Pixel Agony", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-19T17:28:40.164Z", - "hashShort": "25b2704cfa8a7822", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "7681b4333d3a62d3", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://123144287418594", + "goldenThumbnail": "rbxassetid://78972074974432", "huge": true, - "indexDesc": "Found in the Gym World's leaderboard contest!", + "indexDesc": "Found in the Farming Forever Pack!", "indexObtainable": true, - "name": "Huge Gym Beaver", + "name": "Huge Pixel Monkey", "rarity": { "Announce": true, "Color": null, @@ -135839,25 +141141,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://139877425237704", + "thumbnail": "rbxassetid://80158581180196", }, - "configName": "Huge Gym Beaver", + "configName": "Huge Pixel Monkey", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "ab6ffef63bd2ca8d", + "hashShort": "9aff10bda85b6f21", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "ballBounceHeight": 2, - }, - "goldenThumbnail": "rbxassetid://122004337324700", + "goldenThumbnail": "rbxassetid://120501020943866", "huge": true, - "indexDesc": "Found by earning points in the Muscle Race!", + "indexDesc": "Earned from the 2025 Farming Event!", "indexObtainable": true, - "name": "Huge Tennis Squirrel", + "name": "Huge Pixel Goblin", "rarity": { "Announce": true, "Color": null, @@ -135870,25 +141169,26 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://86863060232027", + "thumbnail": "rbxassetid://122435473843216", }, - "configName": "Huge Tennis Squirrel", + "configName": "Huge Pixel Goblin", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "e22c1568ac2e2a11", + "hashShort": "3a3fca7d9733a774", }, { "category": "Huge", "collection": "Pets", "configData": { "animations": { - "ballBounceHeight": 2, + "balloon": true, }, - "goldenThumbnail": "rbxassetid://130330133725567", + "fly": true, + "goldenThumbnail": "rbxassetid://106561094516429", "huge": true, - "indexDesc": "Found in the Strong Forever Pack!", + "indexDesc": "Reward in the 2025 Balloon Corgi Clan Battle!", "indexObtainable": true, - "name": "Huge Soccer Terrier", + "name": "Huge Balloon Corgi", "rarity": { "Announce": true, "Color": null, @@ -135901,21 +141201,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://78064428614816", + "thumbnail": "rbxassetid://135934944336063", }, - "configName": "Huge Soccer Terrier", + "configName": "Huge Balloon Corgi", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "0e89b0f68d0f61e5", + "hashShort": "eb541ed2893a936a", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://88745959671661", - "indexDesc": "Found by earning points in the Muscle Race!", + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Spirit Egg!", "indexObtainable": true, - "name": "Titanic Gym Axolotl", + "name": "Titanic Wood Spirit", "rarity": { "Announce": true, "Color": null, @@ -135928,22 +141228,26 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://105883777354766", + "thumbnail": "rbxassetid://125083583849659", "titanic": true, }, - "configName": "Titanic Gym Axolotl", + "configName": "Titanic Wood Spirit", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "011f2b918ae8cfa7", + "hashShort": "7f9ef013c695e6b5", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://106909971749618", - "indexDesc": "Found in the Gym World's leaderboard contest!", + "animations": { + "spinZ": true, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://125960282340087", + "indexDesc": "Earned from the 2025 Farming Event!", "indexObtainable": true, - "name": "Titanic Gym Unicorn", + "name": "Titanic Pixel Angelus", "rarity": { "Announce": true, "Color": null, @@ -135956,22 +141260,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://86624734020676", + "thumbnail": "rbxassetid://103752775543007", "titanic": true, }, - "configName": "Titanic Gym Unicorn", + "configName": "Titanic Pixel Angelus", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "9ce3f7f7d8dcddc0", + "hashShort": "b988271b40ef427b", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://106070694578742", - "indexDesc": "Found in the Buff Gym Egg!", - "indexObtainable": true, - "name": "Titanic Gym Cat", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://16250877669", + "name": "Diamond Dog", "rarity": { "Announce": true, "Color": null, @@ -135984,390 +141287,334 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://116586359126755", - "titanic": true, + "thumbnail": "rbxassetid://16250877568", }, - "configName": "Titanic Gym Cat", + "configName": "Diamond Dog", "dateCreated": "2025-07-05T23:23:54.256Z", "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "b0a1c143c2d645b9", + "hashShort": "b2a83373a3cd02c3", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://118928670088780", - "indexDesc": "Found in the Bench a Gargantuan minigame in Gym World!", - "indexObtainable": true, - "name": "Titanic Buff Tiger", + "cachedPower": [ + 481324867738792, + 517012243286390, + 541490476206141, + ], + "fly": true, + "fromEgg": "Twilight Grove Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 250, + "goldenThumbnail": "rbxassetid://83509357674494", + "maxChance": 0.9, + "name": "Sprout Pegasus", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://71901668649846", - "titanic": true, + "thumbnail": "rbxassetid://98017431135809", }, - "configName": "Titanic Buff Tiger", + "configName": "Sprout Pegasus", "dateCreated": "2025-07-05T23:23:54.256Z", - "dateModified": "2025-07-05T23:23:54.256Z", - "hashShort": "6701c656330143b3", + "dateModified": "2026-06-27T16:05:43.925Z", + "hashShort": "e09fc663fb5feab0", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "blockPartyPower": 80, "cachedPower": [ - 1823912840634295, + 447056667259778, + 478063754566765, + 502938750667250, ], + "fromEgg": "Twilight Grove Egg", "fromWorldNumber": 4, - "fromZoneNumber": 269, - "goldenThumbnail": "rbxassetid://72772713717950", - "name": "Coconut Crab", - "thumbnail": "rbxassetid://77370905786923", + "fromZoneNumber": 250, + "goldenThumbnail": "rbxassetid://118781707548312", + "maxChance": 0.9, + "name": "Glimmercap Turtle", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://114375628222082", }, - "configName": "Coconut Crab", - "dateCreated": "2025-07-12T16:08:29.473Z", - "dateModified": "2025-07-12T16:08:29.473Z", - "hashShort": "7bc071570d1854b9", + "configName": "Glimmercap Turtle", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.927Z", + "hashShort": "9247cb87077876cc", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "blockPartyPower": 22, "cachedPower": [ - 1441116318525863, + 643922408248327, + 695461723165434, + 724412709279368, ], + "fromEgg": "Starroot Oak Egg", "fromWorldNumber": 4, - "fromZoneNumber": 269, - "goldenThumbnail": "rbxassetid://111213643471636", - "name": "Chill Sloth", - "thumbnail": "rbxassetid://132264232554881", - }, - "configName": "Chill Sloth", - "dateCreated": "2025-07-12T16:08:29.474Z", - "dateModified": "2025-07-12T16:08:29.474Z", - "hashShort": "3968e8dd123eadc5", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.3, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.7, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.6, - }, - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://140682051377673", - "name": "Treasure Unicorn", + "fromZoneNumber": 252, + "goldenThumbnail": "rbxassetid://125853396305075", + "maxChance": 0.08991008991008992, + "name": "Starry Eye Bunny", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://111756994790534", + "thumbnail": "rbxassetid://79112231149984", }, - "configName": "Treasure Unicorn", - "dateCreated": "2025-07-12T16:08:29.476Z", - "dateModified": "2025-07-12T16:08:29.476Z", - "hashShort": "0ef5825af5146cf0", + "configName": "Starry Eye Bunny", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.927Z", + "hashShort": "b8a92fe6a74f45cd", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.09, - "flyHeightChange": 0.025, - "swerve": true, - "swerveAggression": 0.2, - "swerveMaxAngle": 60, - }, - "blockPartyPower": 400, "cachedPower": [ - 2308389688927779, + 572359357405787, + 618155965183823, + 643904277081510, ], - "fly": true, + "fromEgg": "Moonlight Ridge Egg", "fromWorldNumber": 4, - "fromZoneNumber": 269, - "goldenThumbnail": "rbxassetid://135339748813830", - "name": "Floatie Penguin", - "thumbnail": "rbxassetid://95232062111456", + "fromZoneNumber": 251, + "goldenThumbnail": "rbxassetid://70889812465887", + "maxChance": 0.8991008991008992, + "name": "Rootkin Fox", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://121289968511149", }, - "configName": "Floatie Penguin", - "dateCreated": "2025-07-12T16:08:29.477Z", - "dateModified": "2025-07-12T16:08:29.477Z", - "hashShort": "8510b92593dd1bea", + "configName": "Rootkin Fox", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.926Z", + "hashShort": "528724900e9617c8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "blockPartyPower": 35, "cachedPower": [ - 1531186088433729, + 508763873249588, + 549471969052287, + 572359357405787, ], + "fromEgg": "Twilight Grove Egg", "fromWorldNumber": 4, - "fromZoneNumber": 269, - "goldenThumbnail": "rbxassetid://72039343238103", - "name": "Chill Polar Bear", - "thumbnail": "rbxassetid://87185898894267", + "fromZoneNumber": 250, + "goldenThumbnail": "rbxassetid://74578624494513", + "maxChance": 0.8991008991008992, + "name": "Meteor Mole", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://119822151998946", }, - "configName": "Chill Polar Bear", - "dateCreated": "2025-07-12T16:08:29.480Z", - "dateModified": "2025-07-12T16:08:29.480Z", - "hashShort": "d92bff91d444ee27", + "configName": "Meteor Mole", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.929Z", + "hashShort": "dc10bfeac217a0a4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - }, - "blockPartyPower": 6000, "cachedPower": [ - 3697593932874795, + 972700236424001, + 1045819568215307, + 1094287765977001, ], "fly": true, + "fromEgg": "Crescent Moon Egg", "fromWorldNumber": 4, - "fromZoneNumber": 269, - "goldenThumbnail": "rbxassetid://79400833153819", - "name": "Splash Angelus", - "thumbnail": "rbxassetid://133534634718842", - }, - "configName": "Splash Angelus", - "dateCreated": "2025-07-12T16:08:29.481Z", - "dateModified": "2025-07-12T16:08:29.481Z", - "hashShort": "d8b8862ae08a0956", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "blockPartyPower": 13, - "cachedPower": [ - 1361054300829981, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 269, - "goldenThumbnail": "rbxassetid://137232337874462", - "name": "Chill Bunny", - "thumbnail": "rbxassetid://120966534344912", - }, - "configName": "Chill Bunny", - "dateCreated": "2025-07-12T16:08:29.483Z", - "dateModified": "2025-07-12T16:08:29.483Z", - "hashShort": "2ec25f9df4b89b49", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "blockPartyPower": 1000, - "cachedPower": [ - 2921555700049221, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 269, - "goldenThumbnail": "rbxassetid://94462648048394", - "name": "Lifeguard Shark", - "thumbnail": "rbxassetid://94562681110740", + "fromZoneNumber": 254, + "goldenThumbnail": "rbxassetid://124938966942585", + "maxChance": 0.000009989907695750369, + "name": "Telescope Owl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "thumbnail": "rbxassetid://98284750058098", }, - "configName": "Lifeguard Shark", - "dateCreated": "2025-07-12T16:08:29.487Z", - "dateModified": "2025-07-12T16:08:29.487Z", - "hashShort": "7ebfdff675421414", + "configName": "Telescope Owl", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.798Z", + "hashShort": "8652b5c8ec2629a4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "blockPartyPower": 600, "cachedPower": [ - 2596938400043752, + 772285772869481, + 829125947151219, + 868821494478169, ], + "fromEgg": "Aether Egg", "fromWorldNumber": 4, - "fromZoneNumber": 269, - "goldenThumbnail": "rbxassetid://101732053613534", - "name": "Sandcastle Kraken", - "thumbnail": "rbxassetid://102486523498502", - }, - "configName": "Sandcastle Kraken", - "dateCreated": "2025-07-12T16:08:29.489Z", - "dateModified": "2025-07-12T16:08:29.489Z", - "hashShort": "7b09ad1ecace7a68", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.3, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.7, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.6, - }, - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://72604014110959", - "name": "Treasure Scorpion", + "fromZoneNumber": 253, + "goldenThumbnail": "rbxassetid://139279715483574", + "maxChance": 0.09090816003132836, + "name": "Wisp Wolf", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://97014459360682", + "thumbnail": "rbxassetid://92321682149350", }, - "configName": "Treasure Scorpion", - "dateCreated": "2025-07-12T16:08:29.490Z", - "dateModified": "2025-07-12T16:08:29.490Z", - "hashShort": "a2350531a8defff5", + "configName": "Wisp Wolf", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.794Z", + "hashShort": "144803174e4daa32", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "blockPartyPower": 8, "cachedPower": [ - 1280992283134100, + 686476242550650, + 737000841912194, + 772285772869481, ], + "fly": true, + "fromEgg": "Starroot Oak Egg", "fromWorldNumber": 4, - "fromZoneNumber": 269, - "goldenThumbnail": "rbxassetid://96917001107482", - "name": "Chill Cat", - "thumbnail": "rbxassetid://127032189794099", + "fromZoneNumber": 252, + "goldenThumbnail": "rbxassetid://105569614209982", + "maxChance": 0.9090816003132836, + "name": "Scroll Dragon", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://100018564516934", }, - "configName": "Chill Cat", - "dateCreated": "2025-07-12T16:08:29.489Z", - "dateModified": "2025-07-12T16:08:29.489Z", - "hashShort": "f97100374a8f05d3", + "configName": "Scroll Dragon", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.792Z", + "hashShort": "99603af0ed586330", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.09, - "flyHeightChange": 0.025, - "swerve": true, - "swerveAggression": 0.2, - "swerveMaxAngle": 60, - }, - "blockPartyPower": 160, "cachedPower": [ - 2051901945713582, + 1035349022339360, ], "fly": true, + "fromEgg": "Crescent Moon Egg", "fromWorldNumber": 4, - "fromZoneNumber": 269, - "goldenThumbnail": "rbxassetid://103363616287811", - "name": "Floatie Cat", - "thumbnail": "rbxassetid://99873228307491", + "fromZoneNumber": 254, + "goldenThumbnail": "rbxassetid://115106268978557", + "maxChance": 2.497476923937592e-7, + "name": "Starlight Pony", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + "thumbnail": "rbxassetid://122718577025010", }, - "configName": "Floatie Cat", - "dateCreated": "2025-07-12T16:08:29.494Z", - "dateModified": "2025-07-12T16:08:29.494Z", - "hashShort": "f3dbd438d38e7dd9", + "configName": "Starlight Pony", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "98f73aecaf810c05", }, { "category": "Gargantuan", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.3, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.7, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.4, - }, "fly": true, + "flyingTitanic": true, "gargantuan": true, - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Treasure Egg!", + "goldenThumbnail": "rbxassetid://87724546309932", + "indexDesc": "Found in the Combine-O-Matic! + +Ground Slam - Pet will damage breakables in a large area!", "indexObtainable": true, - "name": "Gargantuan Treasure Angelus", + "name": "Gargantuan Dark Dragon", "rarity": { "Announce": true, "Color": null, @@ -136380,84 +141627,53 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://100287069484548", - }, - "configName": "Gargantuan Treasure Angelus", - "dateCreated": "2025-07-12T16:08:29.497Z", - "dateModified": "2025-07-12T16:08:29.497Z", - "hashShort": "07c7e3e6d5c6ead8", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "blockPartyPower": 55, - "cachedPower": [ - 1621255858341595, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 269, - "goldenThumbnail": "rbxassetid://92782576236822", - "name": "Coconut Corgi", - "thumbnail": "rbxassetid://136387997555104", + "thumbnail": "rbxassetid://100327262559787", }, - "configName": "Coconut Corgi", - "dateCreated": "2025-07-12T16:08:29.483Z", - "dateModified": "2025-07-12T16:08:29.483Z", - "hashShort": "6d37ee50bc0da229", + "configName": "Gargantuan Dark Dragon", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "bebaed3f8020ee2f", }, { - "category": "Uncategorized", + "category": "Gargantuan", "collection": "Pets", "configData": { - "blockPartyPower": 2500, - "cachedPower": [ - 3286750162555373, - ], "fly": true, - "fromWorldNumber": 4, - "fromZoneNumber": 269, - "goldenThumbnail": "rbxassetid://94362543857259", - "name": "Sun Griffin", - "thumbnail": "rbxassetid://134664153603203", + "gargantuan": true, + "goldenThumbnail": "rbxassetid://82214551800846", + "indexDesc": "Found in the Exclusive Raffle! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Exquisite Parrot", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://112010823795135", }, - "configName": "Sun Griffin", - "dateCreated": "2025-07-12T16:08:29.484Z", - "dateModified": "2025-07-12T16:08:29.484Z", - "hashShort": "95ef97abbcd5fb2d", + "configName": "Gargantuan Exquisite Parrot", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "82402e276f621a69", }, { - "category": "Uncategorized", + "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.3, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.7, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.6, - }, - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://136273566234955", - "name": "Treasure Golem", + "goldenThumbnail": "rbxassetid://16250896828", + "huge": true, + "indexDesc": "Chance to get from purchasing high-end Diamond packs!", + "indexObtainable": true, + "name": "Huge Diamond Dog", "rarity": { "Announce": true, "Color": null, @@ -136470,30 +141686,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://112287712934093", + "thumbnail": "rbxassetid://16250896717", }, - "configName": "Treasure Golem", - "dateCreated": "2025-07-12T16:08:29.506Z", - "dateModified": "2025-07-12T16:08:29.506Z", - "hashShort": "70edae0d4005e534", + "configName": "Huge Diamond Dog", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "fb9615e18ca1be54", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.09, - "flyHeightChange": 0.025, - "swerve": true, - "swerveAggression": 0.2, - "swerveMaxAngle": 60, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://99940439405389", + "goldenThumbnail": "rbxassetid://140328101597636", "huge": true, - "indexDesc": "Found in random Summer Block Party tiles!", + "indexDesc": "Found in the Time Trials Chests!", "indexObtainable": true, - "name": "Huge Floatie Cat", + "name": "Huge Starry Eye Bunny", "rarity": { "Announce": true, "Color": null, @@ -136506,28 +141714,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://122328085750214", + "thumbnail": "rbxassetid://85579743157375", }, - "configName": "Huge Floatie Cat", - "dateCreated": "2025-07-12T16:08:33.265Z", - "dateModified": "2025-07-12T16:08:33.265Z", - "hashShort": "c31d85718bc9c17e", + "configName": "Huge Starry Eye Bunny", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "a4b251e4498784b2", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - }, - "dlk": "PDL_HSA", - "dls": 1752336000, "fly": true, - "goldenThumbnail": "rbxassetid://115294786186558", + "goldenThumbnail": "rbxassetid://105870206158937", "huge": true, - "indexDesc": "???", + "indexDesc": "Found in the Farming World's weight contest!", "indexObtainable": true, - "name": "Huge Splash Angelus", + "name": "Huge Pixel Griffin", "rarity": { "Announce": true, "Color": null, @@ -136540,23 +141743,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "secretExclusive": true, - "thumbnail": "rbxassetid://70796008015802", + "thumbnail": "rbxassetid://95210896396972", }, - "configName": "Huge Splash Angelus", - "dateCreated": "2025-07-12T16:08:33.266Z", - "dateModified": "2025-07-12T16:08:33.266Z", - "hashShort": "985e44e21fb67259", + "configName": "Huge Pixel Griffin", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "2f3b482b0bb108c9", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://115922168751576", + "goldenThumbnail": "rbxassetid://76452507134272", "huge": true, - "indexDesc": "Found in random Summer Block Party tiles!", + "indexDesc": "Found by hatching eggs in the Farming World!", "indexObtainable": true, - "name": "Huge Chill Bunny", + "name": "Huge Pixel Otter", "rarity": { "Announce": true, "Color": null, @@ -136569,22 +141771,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://87108901678067", + "thumbnail": "rbxassetid://98175499956412", }, - "configName": "Huge Chill Bunny", - "dateCreated": "2025-07-12T16:08:33.267Z", - "dateModified": "2025-07-12T16:08:33.267Z", - "hashShort": "db5c77d8afd48b39", + "configName": "Huge Pixel Otter", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "47937c639d0faef0", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://125347697447552", + "fly": true, + "goldenThumbnail": "rbxassetid://95594527175303", "huge": true, - "indexDesc": "Found in the Tropical Gift!", + "indexDesc": "Earned from the 2025 Farming Event!", "indexObtainable": true, - "name": "Huge Chill Cat", + "name": "Huge Pixel Shadow Griffin", "rarity": { "Announce": true, "Color": null, @@ -136597,23 +141800,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://79287315277949", + "thumbnail": "rbxassetid://138870297063423", }, - "configName": "Huge Chill Cat", - "dateCreated": "2025-07-12T16:08:33.269Z", - "dateModified": "2025-07-12T16:08:33.269Z", - "hashShort": "22939c5f64f93f2f", + "configName": "Huge Pixel Shadow Griffin", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "15e014fd9edb46cc", }, { "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://77836164525992", + "goldenThumbnail": "rbxassetid://113681719880388", "huge": true, - "indexDesc": "Reward in the 2025 Sunny Clan Battle!", + "indexDesc": "Found in the Farming Exclusive M-2 PROTOTYPE Egg!", "indexObtainable": true, - "name": "Huge Sun Griffin", + "name": "Huge Pixel M-2 PROTOTYPE", "rarity": { "Announce": true, "Color": null, @@ -136626,48 +141829,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://122831150159277", + "thumbnail": "rbxassetid://114437689272259", }, - "configName": "Huge Sun Griffin", - "dateCreated": "2025-07-12T16:08:33.272Z", - "dateModified": "2025-07-12T16:08:33.272Z", - "hashShort": "32264094647debce", + "configName": "Huge Pixel M-2 PROTOTYPE", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "b360d7218ceef6a3", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.3, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.7, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.6, - }, - "goldenThumbnail": "rbxassetid://116828056100775", - "hidden": false, + "fly": true, + "goldenThumbnail": "rbxassetid://86691040324457", "huge": true, - "indexDesc": "Found in the Exclusive Treasure Egg!", + "indexDesc": "Found in the Time Trials Chests!", "indexObtainable": true, - "name": "Huge Treasure Scorpion", + "name": "Huge Telescope Owl", "rarity": { "Announce": true, "Color": null, @@ -136680,48 +141858,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://124383446911252", + "thumbnail": "rbxassetid://81492004583287", }, - "configName": "Huge Treasure Scorpion", - "dateCreated": "2025-07-12T16:08:33.274Z", - "dateModified": "2025-07-12T16:08:33.274Z", - "hashShort": "66fa649c87c48076", + "configName": "Huge Telescope Owl", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "a71ec835bb2bbf01", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.3, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.7, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.6, - }, - "goldenThumbnail": "rbxassetid://91107447602689", - "hidden": false, + "goldenThumbnail": "rbxassetid://102060419488885", "huge": true, - "indexDesc": "Found in the Exclusive Treasure Egg!", + "indexDesc": "Earned from the 2025 Farming Event!", "indexObtainable": true, - "name": "Huge Treasure Golem", + "name": "Huge Pixel Capybara", "rarity": { "Announce": true, "Color": null, @@ -136734,24 +141886,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://77267608223080", + "thumbnail": "rbxassetid://120551262539366", }, - "configName": "Huge Treasure Golem", - "dateCreated": "2025-07-12T16:08:33.273Z", - "dateModified": "2025-07-12T16:08:33.273Z", - "hashShort": "fedf5d4a7c9587d5", + "configName": "Huge Pixel Capybara", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "badf4c297855dfed", }, { "category": "Huge", "collection": "Pets", "configData": { - "fromWorldNumber": 4, - "fromZoneNumber": 269, - "goldenThumbnail": "rbxassetid://115469981292664", + "fly": true, + "goldenThumbnail": "rbxassetid://127334098152762", "huge": true, - "indexDesc": "Found in the Summer Block Party eggs!", + "indexDesc": "Earned from the 2025 Farming Event!", "indexObtainable": true, - "name": "Huge Chill Polar Bear", + "name": "Huge Pixel Bee", "rarity": { "Announce": true, "Color": null, @@ -136764,22 +141915,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://124471089861865", + "thumbnail": "rbxassetid://123894797425389", }, - "configName": "Huge Chill Polar Bear", - "dateCreated": "2025-07-12T16:08:33.277Z", - "dateModified": "2025-07-19T17:28:40.222Z", - "hashShort": "a31d34f5c272bff3", + "configName": "Huge Pixel Bee", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "1e1cb3533f481d17", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://140071454318367", + "goldenThumbnail": "rbxassetid://130492854781431", "huge": true, - "indexDesc": "Found in the Summer Block Party's leaderboard contest!", + "indexDesc": "Found in the Farming Forever Pack!", "indexObtainable": true, - "name": "Huge Coconut Corgi", + "name": "Huge Pixel Sad Cat", "rarity": { "Announce": true, "Color": null, @@ -136792,22 +141943,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://92543943369771", + "thumbnail": "rbxassetid://132317712200378", }, - "configName": "Huge Coconut Corgi", - "dateCreated": "2025-07-12T16:08:33.277Z", - "dateModified": "2025-07-12T16:08:33.277Z", - "hashShort": "ef1b747f80e581b7", + "configName": "Huge Pixel Sad Cat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "ccce17a4eda242e5", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://107660397375668", + "goldenThumbnail": "rbxassetid://86841677202843", "huge": true, - "indexDesc": "Found in the Block Party Forever Pack!", + "indexDesc": "Found in the final zone of Fantasy World!", "indexObtainable": true, - "name": "Huge Chill Sloth", + "name": "Huge Rootkin Fox", "rarity": { "Announce": true, "Color": null, @@ -136820,30 +141971,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://120533708082734", + "thumbnail": "rbxassetid://76545663190754", }, - "configName": "Huge Chill Sloth", - "dateCreated": "2025-07-12T16:08:33.280Z", - "dateModified": "2025-07-12T16:08:33.280Z", - "hashShort": "6a4a7a46e900e3d2", + "configName": "Huge Rootkin Fox", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "ed8a42e25bca7085", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.09, - "flyHeightChange": 0.025, - "swerve": true, - "swerveAggression": 0.2, - "swerveMaxAngle": 60, - }, "fly": true, - "goldenThumbnail": "rbxassetid://139531311815022", - "huge": true, - "indexDesc": "Found in the Huge Chance tile in the Summer Block Party!", + "goldenThumbnail": "rbxassetid://122536694424506", + "indexDesc": "Found in the Time Trials Chests!", "indexObtainable": true, - "name": "Huge Floatie Penguin", + "name": "Titanic Starlight Pony", "rarity": { "Announce": true, "Color": null, @@ -136856,22 +141999,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://90846690350439", + "thumbnail": "rbxassetid://130735528136584", + "titanic": true, }, - "configName": "Huge Floatie Penguin", - "dateCreated": "2025-07-12T16:08:33.322Z", - "dateModified": "2025-07-12T16:08:33.322Z", - "hashShort": "241a7b68df83441f", + "configName": "Titanic Starlight Pony", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "a7ed61aca587dd8e", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://100746585076036", - "huge": true, - "indexDesc": "Found in random Summer Block Party tiles!", + "fly": true, + "goldenThumbnail": "rbxassetid://90478147806605", + "indexDesc": "Earned from the 2025 Farming Event!", "indexObtainable": true, - "name": "Huge Lifeguard Shark", + "name": "Titanic Pixel Agony", "rarity": { "Announce": true, "Color": null, @@ -136884,21 +142028,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://75963541478121", + "thumbnail": "rbxassetid://79227180725829", + "titanic": true, }, - "configName": "Huge Lifeguard Shark", - "dateCreated": "2025-07-12T16:08:33.322Z", - "dateModified": "2025-07-12T16:08:33.322Z", - "hashShort": "ec81381e8bfccb62", + "configName": "Titanic Pixel Agony", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "2fa94e8fcbde9570", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://139570415281325", - "indexDesc": "Found in the Summer Block Party's leaderboard contest!", + "goldenThumbnail": "rbxassetid://109955211622378", + "indexDesc": "Found in the Farming World's weight contest!", "indexObtainable": true, - "name": "Titanic Sandcastle Kraken", + "name": "Titanic Pixel Dominus Astra", "rarity": { "Announce": true, "Color": null, @@ -136911,23 +142056,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://90627425215733", + "thumbnail": "rbxassetid://129315342087717", "titanic": true, }, - "configName": "Titanic Sandcastle Kraken", - "dateCreated": "2025-07-12T16:08:34.436Z", - "dateModified": "2025-07-12T16:08:34.436Z", - "hashShort": "33523eda8511a6cf", + "configName": "Titanic Pixel Dominus Astra", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "71197eac32f34aa2", }, { "category": "Titanic", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://89082239594127", - "indexDesc": "Found in the Titanic Chance tile in the Summer Block Party!", + "goldenThumbnail": "rbxassetid://103486073608583", + "indexDesc": "Found by hatching eggs in the Farming World!", "indexObtainable": true, - "name": "Titanic Sun Griffin", + "name": "Titanic Pixel Monkey", "rarity": { "Announce": true, "Color": null, @@ -136940,47 +142084,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://131108865732967", + "thumbnail": "rbxassetid://109746451259530", "titanic": true, }, - "configName": "Titanic Sun Griffin", - "dateCreated": "2025-07-12T16:08:34.437Z", - "dateModified": "2025-07-12T16:08:34.437Z", - "hashShort": "53b68e9bd48ae1b4", + "configName": "Titanic Pixel Monkey", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "cd83ed561d4da168", }, { "category": "Titanic", "collection": "Pets", "configData": { - "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.3, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.7, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.6, - }, - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Treasure Egg!", + "goldenThumbnail": "rbxassetid://120419472182294", + "indexDesc": "Chance to get from purchasing high-end Diamond packs!", "indexObtainable": true, - "name": "Titanic Treasure Mimic", + "name": "Titanic Diamond Dog", "rarity": { "Announce": true, "Color": null, @@ -136993,494 +142112,359 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://101381725674777", + "thumbnail": "rbxassetid://95245493036006", "titanic": true, }, - "configName": "Titanic Treasure Mimic", - "dateCreated": "2025-07-12T16:08:34.439Z", - "dateModified": "2025-07-12T16:08:34.439Z", - "hashShort": "dd1a2db637914c28", + "configName": "Titanic Diamond Dog", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "21fcbfa88aacb0d1", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 7238956398308544, - ], - "fly": true, - "fromEgg": "Faerie Hex Glade Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 272, - "goldenThumbnail": "rbxassetid://138318132787321", - "isFromLastZone": true, - "maxChance": 0.9090815458234391, - "name": "Petal Pixie", + "goldenThumbnail": "rbxassetid://120267988715843", + "indexDesc": "Found in the Exclusive Raffle!", + "indexObtainable": true, + "name": "Titanic Exquisite Cat", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://128196215824394", + "thumbnail": "rbxassetid://71126391222560", + "titanic": true, }, - "configName": "Petal Pixie", - "dateCreated": "2025-07-19T17:28:35.725Z", - "dateModified": "2025-07-19T17:28:35.725Z", - "hashShort": "8fd713941157a7dd", + "configName": "Titanic Exquisite Cat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "c3fb6878c1398139", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 6035583135447962, - ], "fly": true, - "fromEgg": "Lotus Fenlight Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 271, - "goldenThumbnail": "rbxassetid://138167380666366", - "maxChance": 0.8991008991008992, - "name": "Fairy Grasshopper", + "goldenThumbnail": "rbxassetid://75313078930604", + "indexDesc": "Found in the Farming Exclusive Titanic M-2 PROTOTYPE Egg!", + "indexObtainable": true, + "name": "Titanic Pixel M-2 PROTOTYPE", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://72238988090228", + "thumbnail": "rbxassetid://78274935877224", + "titanic": true, }, - "configName": "Fairy Grasshopper", - "dateCreated": "2025-07-19T17:28:35.730Z", - "dateModified": "2025-07-19T17:28:35.730Z", - "hashShort": "996648b244584dc4", + "configName": "Titanic Pixel M-2 PROTOTYPE", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "a57d10b96593cbf7", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "blockPartyPower": 85, "cachedPower": [ - 3368918916619253, + 555426189236975, + 592090558470315, + 624854462891597, ], "fromWorldNumber": 4, - "fromZoneNumber": 269, - "goldenThumbnail": "rbxassetid://86214716539413", - "name": "Chill Turtle", - "thumbnail": "rbxassetid://115621990195060", + "fromZoneNumber": 252, + "goldenThumbnail": "rbxassetid://100089931068990", + "name": "Electric Bunny Ball", + "thumbnail": "rbxassetid://88753213320794", + "yeetPower": 450, }, - "configName": "Chill Turtle", - "dateCreated": "2025-07-19T17:28:35.732Z", - "dateModified": "2025-07-19T17:28:35.732Z", - "hashShort": "a030d43b383d3eaa", + "configName": "Electric Bunny Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.813Z", + "hashShort": "b41134cbbe8de702", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 10257215286077722, + 561666932936267, ], - "fromEgg": "Toadstool Throne Egg", "fromWorldNumber": 4, - "fromZoneNumber": 274, - "goldenThumbnail": "rbxassetid://85825659212531", - "isFromLastZone": true, - "maxChance": 0.000009989907096960871, - "name": "Rose Pooka", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "thumbnail": "rbxassetid://96530013494063", + "fromZoneNumber": 252, + "goldenThumbnail": "rbxassetid://73714618335491", + "name": "Hippomelon Ball", + "thumbnail": "rbxassetid://106362093464550", + "yeetPower": 300000, }, - "configName": "Rose Pooka", - "dateCreated": "2025-07-19T17:28:35.724Z", - "dateModified": "2025-07-19T17:28:35.724Z", - "hashShort": "8285b1984b8283a5", + "configName": "Hippomelon Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "ed93f9a30035276e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "blockPartyPower": 950, "cachedPower": [ - 3533256424747035, + 524222470740516, + 568687769597970, + 589750279583081, ], "fromWorldNumber": 4, - "fromZoneNumber": 269, - "goldenThumbnail": "rbxassetid://118432440087488", - "name": "Flamingo Hippo", - "thumbnail": "rbxassetid://134061005250439", + "fromZoneNumber": 252, + "goldenThumbnail": "rbxassetid://101981104610427", + "name": "UV Kitsune Ball", + "thumbnail": "rbxassetid://125855245596038", + "yeetPower": 50, }, - "configName": "Flamingo Hippo", - "dateCreated": "2025-07-19T17:28:35.723Z", - "dateModified": "2025-07-19T17:28:35.723Z", - "hashShort": "34fa31aaf72486d3", + "configName": "UV Kitsune Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.794Z", + "hashShort": "5d823d60b5cf0643", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 5364962787064855, + 499259495943348, + 530463214439808, + 561666932936267, ], - "fromEgg": "Mystmire Bloom Egg", "fromWorldNumber": 4, - "fromZoneNumber": 270, - "goldenThumbnail": "rbxassetid://86806680401517", - "maxChance": 0.8991008991008992, - "name": "Mushroom Frog", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - "thumbnail": "rbxassetid://139293750245730", + "fromZoneNumber": 252, + "goldenThumbnail": "rbxassetid://83883274965469", + "name": "Basketball Corgi", + "thumbnail": "rbxassetid://109035083604183", + "yeetPower": 12, }, - "configName": "Mushroom Frog", - "dateCreated": "2025-07-19T17:28:35.724Z", - "dateModified": "2025-07-19T17:28:35.724Z", - "hashShort": "380e467443581e22", + "configName": "Basketball Corgi", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.795Z", + "hashShort": "4a5270e462e025a6", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 6790222222234491, + 549185445537684, + 587410000695846, + 617833626229894, ], - "fly": true, - "fromEgg": "Faerie Hex Glade Egg", "fromWorldNumber": 4, - "fromZoneNumber": 272, - "goldenThumbnail": "rbxassetid://80803171462203", - "maxChance": 0.08991008991008992, - "name": "Mushroom Dragon", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - "thumbnail": "rbxassetid://135550532822969", + "fromZoneNumber": 252, + "goldenThumbnail": "rbxassetid://123460115247306", + "name": "Blurred Bear Ball", + "thumbnail": "rbxassetid://112435188208455", + "yeetPower": 5000, }, - "configName": "Mushroom Dragon", - "dateCreated": "2025-07-19T17:28:35.731Z", - "dateModified": "2025-07-19T17:28:35.731Z", - "hashShort": "53fcbbbb959db258", + "configName": "Blurred Bear Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.784Z", + "hashShort": "7132d0bfe80bf6a2", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 8143825948097112, + 530463214439808, + 573368327372439, + 596771116244784, ], - "fromEgg": "Bloomcourt Terrace Egg", "fromWorldNumber": 4, - "fromZoneNumber": 273, - "goldenThumbnail": "rbxassetid://91326312236384", - "isFromLastZone": true, - "maxChance": 0.09090815458234391, - "name": "Blooming Axolotl", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - "thumbnail": "rbxassetid://102463345366008", + "fromZoneNumber": 252, + "goldenThumbnail": "rbxassetid://91941747932069", + "name": "Meebo The Alien Ball", + "thumbnail": "rbxassetid://77564665928670", + "yeetPower": 1800, }, - "configName": "Blooming Axolotl", - "dateCreated": "2025-07-19T17:28:35.765Z", - "dateModified": "2025-07-19T17:28:35.765Z", - "hashShort": "8e6cd39a85e6f86f", + "configName": "Meebo The Alien Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.788Z", + "hashShort": "9511d9686b90b993", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 10917852609557030, + 536703958139099, + 578048885146907, + 603791952906487, ], - "fly": true, - "fromEgg": "Toadstool Throne Egg", "fromWorldNumber": 4, - "fromZoneNumber": 274, - "goldenThumbnail": "rbxassetid://107957480070696", - "isFromLastZone": true, - "maxChance": 2.497476774240218e-7, - "name": "Palace Pooka", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, - }, - "thumbnail": "rbxassetid://100698520955348", + "fromZoneNumber": 252, + "goldenThumbnail": "rbxassetid://123395760220218", + "name": "Comet Cyclops Ball", + "thumbnail": "rbxassetid://119443690290433", + "yeetPower": 24000, }, - "configName": "Palace Pooka", - "dateCreated": "2025-07-19T17:28:35.769Z", - "dateModified": "2025-07-19T17:28:35.769Z", - "hashShort": "08bfa7cccd7b8853", + "configName": "Comet Cyclops Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.798Z", + "hashShort": "d6a846eb6755ff8c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 5075615899010008, + 511740983341931, + 555426189236974, + 575708606259673, ], - "fromEgg": "Mystmire Bloom Egg", + "fly": true, "fromWorldNumber": 4, - "fromZoneNumber": 270, - "goldenThumbnail": "rbxassetid://140535365835168", - "maxChance": 0.9, - "name": "Fiddlefern Cat", - "rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - "thumbnail": "rbxassetid://93820018809301", + "fromZoneNumber": 252, + "goldenThumbnail": "rbxassetid://95355661856168", + "name": "Kawaii Dragon Ball", + "thumbnail": "rbxassetid://106721596264899", + "yeetPower": 20, }, - "configName": "Fiddlefern Cat", - "dateCreated": "2025-07-19T17:28:35.766Z", - "dateModified": "2025-07-19T17:28:35.766Z", - "hashShort": "3aa0ac7a820e724b", + "configName": "Kawaii Dragon Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.787Z", + "hashShort": "3bcfe163368344f2", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "blockPartyPower": 1600, "cachedPower": [ - 3574340801778964, + 505500239642640, + 542944701838391, + 568687769597970, ], "fromWorldNumber": 4, - "fromZoneNumber": 269, - "goldenThumbnail": "rbxassetid://76947113195812", - "name": "Pineapple Dog", - "thumbnail": "rbxassetid://127130117157086", + "fromZoneNumber": 252, + "goldenThumbnail": "rbxassetid://123220498289638", + "name": "Strawberry Cow Ball", + "thumbnail": "rbxassetid://92202394698044", + "yeetPower": 16, }, - "configName": "Pineapple Dog", - "dateCreated": "2025-07-19T17:28:35.766Z", - "dateModified": "2025-07-19T17:28:35.766Z", - "hashShort": "df7fa1b6d787357b", + "configName": "Strawberry Cow Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.781Z", + "hashShort": "ac00e979b792bc58", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "blockPartyPower": 250, "cachedPower": [ - 3451087670683132, + 517981727041225, + 564007211823501, + 582729442921378, ], "fromWorldNumber": 4, - "fromZoneNumber": 269, - "goldenThumbnail": "rbxassetid://135050447590795", - "name": "Coconut Flamingo", - "thumbnail": "rbxassetid://70534092975573", + "fromZoneNumber": 252, + "goldenThumbnail": "rbxassetid://93235225327123", + "name": "Storm Axolotl Ball", + "thumbnail": "rbxassetid://93329920424768", + "yeetPower": 150, }, - "configName": "Coconut Flamingo", - "dateCreated": "2025-07-19T17:28:35.768Z", - "dateModified": "2025-07-19T17:28:35.768Z", - "hashShort": "06f6c00921dab825", + "configName": "Storm Axolotl Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.786Z", + "hashShort": "cf930fa7ab7c44e7", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "blockPartyPower": 9300, + "animations": { + "customAnimations": true, + }, "cachedPower": [ - 3656509555842843, + 493712168210645, + 526302718640280, + 555426189236975, ], "fromWorldNumber": 4, - "fromZoneNumber": 269, - "goldenThumbnail": "rbxassetid://85325694148047", - "name": "Watermelon Golem", - "thumbnail": "rbxassetid://98975858132119", + "fromZoneNumber": 252, + "goldenThumbnail": "rbxassetid://90461260609365", + "name": "Basketball Cat", + "thumbnail": "rbxassetid://110050529640840", + "yeetPower": 10, }, - "configName": "Watermelon Golem", - "dateCreated": "2025-07-19T17:28:35.772Z", - "dateModified": "2025-07-19T17:28:35.772Z", - "hashShort": "2219dce3c4c13b32", + "configName": "Basketball Cat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.782Z", + "hashShort": "5731b240ae3c1f39", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "ballBounceHeight": 2, - }, - "blockPartyPower": 4000, - "cachedPower": [ - 3615425178810915, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 269, - "goldenThumbnail": "rbxassetid://121527157121606", - "name": "Beach Ball Capybara", - "thumbnail": "rbxassetid://90059247137512", - }, - "configName": "Beach Ball Capybara", - "dateCreated": "2025-07-19T17:28:35.773Z", - "dateModified": "2025-07-19T17:28:35.773Z", - "hashShort": "47c2bf0b301be959", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "blockPartyPower": 700, - "cachedPower": [ - 3492172047715084, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 269, - "goldenThumbnail": "rbxassetid://126158814876528", - "name": "Flamingo Cat", - "thumbnail": "rbxassetid://112029661344052", - }, - "configName": "Flamingo Cat", - "dateCreated": "2025-07-19T17:28:35.772Z", - "dateModified": "2025-07-19T17:28:35.772Z", - "hashShort": "96f3a531bf8a9af3", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "blockPartyPower": 125, "cachedPower": [ - 3410003293651204, + 542944701838391, + 582729442921376, + 610812789568190, ], "fromWorldNumber": 4, - "fromZoneNumber": 269, - "goldenThumbnail": "rbxassetid://126005092766866", - "name": "Chill Parrot", - "thumbnail": "rbxassetid://108045534156948", + "fromZoneNumber": 252, + "goldenThumbnail": "rbxassetid://94742205746597", + "name": "Glitched Cat Ball", + "thumbnail": "rbxassetid://107843438483464", + "yeetPower": 80000, }, - "configName": "Chill Parrot", - "dateCreated": "2025-07-19T17:28:35.775Z", - "dateModified": "2025-07-19T17:28:35.775Z", - "hashShort": "ffd443e1b46a3b74", + "configName": "Glitched Cat Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.785Z", + "hashShort": "48fc2c18f8add225", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 4714254509146962, - ], - "fly": true, - "fromEgg": "Mystmire Bloom Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 270, - "goldenThumbnail": "rbxassetid://118425484068666", - "maxChance": 0.9, - "name": "Poofy Pixie", + "exclusiveLevel": 3, + "goldenThumbnail": "", + "name": "Yin-Yang Bunny", "rarity": { - "Announce": false, + "Announce": true, "Color": null, - "DisplayName": "Basic", + "DisplayName": "Exclusive", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 1, - "_id": "Basic", + "RarityNumber": 999, + "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://83199193819549", + "thumbnail": "rbxassetid://92814709755524", }, - "configName": "Poofy Pixie", - "dateCreated": "2025-07-19T17:28:35.777Z", - "dateModified": "2025-07-19T17:28:35.777Z", - "hashShort": "fce3a96f730abb01", + "configName": "Yin-Yang Bunny", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "b2512809773291b0", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "blockPartyPower": 55, - "cachedPower": [ - 3327834539587325, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 269, - "goldenThumbnail": "rbxassetid://74770405440304", - "name": "Chill Ducky", - "thumbnail": "rbxassetid://125062663255002", - }, - "configName": "Chill Ducky", - "dateCreated": "2025-07-19T17:28:35.776Z", - "dateModified": "2025-07-19T17:28:35.776Z", - "hashShort": "7dd8439380d18f9b", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "goldenThumbnail": "rbxassetid://122521532572438", - "huge": true, - "indexDesc": "Found in the Summer Block Party's leaderboard contest!", - "indexObtainable": true, - "name": "Huge Coconut Flamingo", + "exclusiveLevel": 1, + "fly": true, + "goldenThumbnail": "", + "name": "Yin-Yang Dragon", "rarity": { "Announce": true, "Color": null, @@ -137493,22 +142477,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://124659391100423", + "thumbnail": "rbxassetid://75219124827136", }, - "configName": "Huge Coconut Flamingo", - "dateCreated": "2025-07-19T17:28:40.163Z", - "dateModified": "2025-07-19T17:28:40.163Z", - "hashShort": "d14b0986a2e21286", + "configName": "Yin-Yang Dragon", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "834b54cac323d3e8", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://123729066611034", - "huge": true, - "indexDesc": "Found in the Summer Block Party Raffle!", - "indexObtainable": true, - "name": "Huge Sandcastle Kraken", + "exclusiveLevel": 2, + "fly": true, + "goldenThumbnail": "", + "name": "Yin-Yang Griffin", "rarity": { "Announce": true, "Color": null, @@ -137521,30 +142504,24 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://123729066611034", + "thumbnail": "rbxassetid://89062746959891", }, - "configName": "Huge Sandcastle Kraken", - "dateCreated": "2025-07-19T17:28:40.199Z", - "dateModified": "2025-07-19T17:28:40.199Z", - "hashShort": "bbb258f89869ceb3", + "configName": "Yin-Yang Griffin", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "93a51c7db82cd90c", }, { - "category": "Huge", + "category": "Gargantuan", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.09, - "flyHeightChange": 0.025, - "swerve": true, - "swerveAggression": 0.2, - "swerveMaxAngle": 60, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://134895528303880", - "huge": true, - "indexDesc": "Found in the Summer Forever Pack!", + "gargantuan": true, + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Yin-Yang Egg! + +Ground Slam - Pet will damage breakables in a large area!", "indexObtainable": true, - "name": "Huge Surfboard Axolotl", + "name": "Gargantuan Yin-Yang Kitsune", "rarity": { "Announce": true, "Color": null, @@ -137557,22 +142534,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://134895528303880", + "thumbnail": "rbxassetid://90918977215657", }, - "configName": "Huge Surfboard Axolotl", - "dateCreated": "2025-07-19T17:28:40.207Z", - "dateModified": "2025-07-19T17:28:40.207Z", - "hashShort": "0bdc1d230729766d", + "configName": "Gargantuan Yin-Yang Kitsune", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "7ef5955a25a6dbf6", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://136335226017553", + "goldenThumbnail": "rbxassetid://81389984562273", "huge": true, - "indexDesc": "Found in random Summer Block Party tiles!", + "indexDesc": "Found by earning points in the Infinite Basketball Mode!", "indexObtainable": true, - "name": "Huge Chill Ducky", + "name": "Huge Basketball Corgi", "rarity": { "Announce": true, "Color": null, @@ -137585,22 +142562,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://91155059443761", + "thumbnail": "rbxassetid://88019287527866", }, - "configName": "Huge Chill Ducky", - "dateCreated": "2025-07-19T17:28:40.209Z", - "dateModified": "2025-07-19T17:28:40.209Z", - "hashShort": "76a88d74dc7492a5", + "configName": "Huge Basketball Corgi", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "cf63b982cb7fd1b0", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://122847395308810", + "goldenThumbnail": "rbxassetid://77737436698372", "huge": true, - "indexDesc": "Found in the Huge Chance tile in the Summer Block Party!", + "indexDesc": "Found in the Basketball Forever Pack!", "indexObtainable": true, - "name": "Huge Flamingo Hippo", + "name": "Huge Storm Axolotl Ball", "rarity": { "Announce": true, "Color": null, @@ -137613,23 +142590,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://70985697718907", + "thumbnail": "rbxassetid://123709369335154", }, - "configName": "Huge Flamingo Hippo", - "dateCreated": "2025-07-19T17:28:40.213Z", - "dateModified": "2025-07-19T17:28:40.213Z", - "hashShort": "aae21e5fc32427f2", + "configName": "Huge Storm Axolotl Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "2f1efc771c5aebb3", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://81516359535274", + "goldenThumbnail": "rbxassetid://79897170213295", "huge": true, - "indexDesc": "Found in the final zone of Fantasy World!", + "indexDesc": "Found in the Basketball Egg!", "indexObtainable": true, - "name": "Huge Mushroom Dragon", + "name": "Huge Electric Bunny Ball", "rarity": { "Announce": true, "Color": null, @@ -137642,23 +142618,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://98526628952494", + "thumbnail": "rbxassetid://102519001047451", }, - "configName": "Huge Mushroom Dragon", - "dateCreated": "2025-07-19T17:28:40.211Z", - "dateModified": "2025-10-18T17:03:10.965Z", - "hashShort": "fb397ddb8511925e", + "configName": "Huge Electric Bunny Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "12029760cb520b03", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://121731461985617", + "goldenThumbnail": "rbxassetid://87376825839988", "huge": true, - "indexDesc": "Found in the Summer Block Party eggs!", + "indexDesc": "Reward in the 2025 Basketball Clan Battle!", "indexObtainable": true, - "name": "Huge Chill Parrot", + "name": "Huge Junkyard Hound", "rarity": { "Announce": true, "Color": null, @@ -137671,22 +142646,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://104805390421143", + "thumbnail": "rbxassetid://82197525577335", }, - "configName": "Huge Chill Parrot", - "dateCreated": "2025-07-19T17:28:40.214Z", - "dateModified": "2025-07-19T17:28:40.214Z", - "hashShort": "ef4ec451afaaf2db", + "configName": "Huge Junkyard Hound", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "23f8d0ba84b2a251", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://113084697908720", + "fly": true, + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in random Summer Block Party tiles!", + "indexDesc": "Found in the Exclusive Yin-Yang Egg!", "indexObtainable": true, - "name": "Huge Chill Turtle", + "name": "Huge Yin-Yang Dragon", "rarity": { "Announce": true, "Color": null, @@ -137699,22 +142675,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://131025895273996", + "thumbnail": "rbxassetid://139547008385454", }, - "configName": "Huge Chill Turtle", - "dateCreated": "2025-07-19T17:28:40.214Z", - "dateModified": "2025-07-19T17:28:40.214Z", - "hashShort": "c0c3bed36770ddf1", + "configName": "Huge Yin-Yang Dragon", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "b8b983698d0fa1d9", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://136210526681229", + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in the MVP Chest!", + "indexDesc": "Found in the Exclusive Yin-Yang Egg!", "indexObtainable": true, - "name": "Huge Old Wizard Cat", + "name": "Huge Yin-Yang Bunny", "rarity": { "Announce": true, "Color": null, @@ -137727,22 +142703,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://80977445482365", + "thumbnail": "rbxassetid://75417612099373", }, - "configName": "Huge Old Wizard Cat", - "dateCreated": "2025-07-19T17:28:40.214Z", - "dateModified": "2025-07-19T17:28:40.214Z", - "hashShort": "e2acc3daa9519573", + "configName": "Huge Yin-Yang Bunny", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "b15707771de6f2bb", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://117969505874066", + "goldenThumbnail": "rbxassetid://132783287609358", "huge": true, - "indexDesc": "Found in the Sun Angelus Gift!", + "indexDesc": "Found in the Basketball World's furthest throw contest!", "indexObtainable": true, - "name": "Huge Watermelon Golem", + "name": "Huge UV Kitsune Ball", "rarity": { "Announce": true, "Color": null, @@ -137755,22 +142731,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://79014602144468", + "thumbnail": "rbxassetid://133144353929951", }, - "configName": "Huge Watermelon Golem", - "dateCreated": "2025-07-19T17:28:40.223Z", - "dateModified": "2025-07-19T17:28:40.223Z", - "hashShort": "49df1d63c88febbd", + "configName": "Huge UV Kitsune Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "db3452f23a71f937", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://78023785057666", + "fly": true, + "goldenThumbnail": "rbxassetid://81692833934753", "huge": true, - "indexDesc": "Found in random Summer Block Party tiles!", + "indexDesc": "Found in the Basketball World's furthest throw contest!", "indexObtainable": true, - "name": "Huge Flamingo Cat", + "name": "Huge Kawaii Dragon Ball", "rarity": { "Announce": true, "Color": null, @@ -137783,25 +142760,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://110362471835771", + "thumbnail": "rbxassetid://108289198978887", }, - "configName": "Huge Flamingo Cat", - "dateCreated": "2025-07-19T17:28:40.223Z", - "dateModified": "2025-07-19T17:28:40.223Z", - "hashShort": "e7bd71c245edb89c", + "configName": "Huge Kawaii Dragon Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "c983c8d570079fc2", }, { "category": "Titanic", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://98439848544752", - "indexDesc": "Earned from purchasing a Merch Rug!", + "goldenThumbnail": "rbxassetid://116557533191116", + "indexDesc": "Found by earning points in the Infinite Basketball Mode!", "indexObtainable": true, - "name": "Titanic Wicked Angelus", + "name": "Titanic Basketball Cat", "rarity": { "Announce": true, "Color": null, @@ -137814,25 +142787,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://139550015983813", + "thumbnail": "rbxassetid://88337098275915", "titanic": true, }, - "configName": "Titanic Wicked Angelus", - "dateCreated": "2025-07-19T17:28:41.482Z", - "dateModified": "2025-10-18T17:03:13.191Z", - "hashShort": "ea8776d9954d6c72", + "configName": "Titanic Basketball Cat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "9116150aa983b69e", }, { "category": "Titanic", "collection": "Pets", "configData": { - "animations": { - "ballBounceHeight": 2, - }, - "goldenThumbnail": "rbxassetid://72187450337304", - "indexDesc": "Found in the Summer Block Party's leaderboard contest!", + "goldenThumbnail": "rbxassetid://86193291227020", + "indexDesc": "Found in the Basketball Egg!", "indexObtainable": true, - "name": "Titanic Beach Ball Capybara", + "name": "Titanic Comet Cyclops Ball", "rarity": { "Announce": true, "Color": null, @@ -137845,22 +142815,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://75537750566110", + "thumbnail": "rbxassetid://83088944433726", "titanic": true, }, - "configName": "Titanic Beach Ball Capybara", - "dateCreated": "2025-07-19T17:28:41.491Z", - "dateModified": "2025-07-19T17:28:41.491Z", - "hashShort": "c17bce7ea7e6d8d9", + "configName": "Titanic Comet Cyclops Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "16d7b1b685f77b48", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://74621284591094", - "indexDesc": "Found in the MVP Chest!", + "fly": true, + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Yin-Yang Egg!", "indexObtainable": true, - "name": "Titanic Old Wizard Cat", + "name": "Titanic Yin-Yang Grim Reaper", "rarity": { "Announce": true, "Color": null, @@ -137873,22 +142844,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://85718953892638", + "thumbnail": "rbxassetid://136807974742699", "titanic": true, }, - "configName": "Titanic Old Wizard Cat", - "dateCreated": "2025-07-19T17:28:41.501Z", - "dateModified": "2025-07-19T17:28:41.501Z", - "hashShort": "f545a6b5a5de098d", + "configName": "Titanic Yin-Yang Grim Reaper", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "a3b2d4f049b1ddb2", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://77063523458586", - "indexDesc": "Earned from purchasing a Merch Plush!", + "goldenThumbnail": "rbxassetid://97063292261555", + "indexDesc": "Found in the Basketball World's furthest throw contest!", "indexObtainable": true, - "name": "Titanic Inferno Dominus", + "name": "Titanic Glitched Cat Ball", "rarity": { "Announce": true, "Color": null, @@ -137901,78 +142872,89 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://133194662787359", + "thumbnail": "rbxassetid://106995873715009", "titanic": true, }, - "configName": "Titanic Inferno Dominus", - "dateCreated": "2025-07-19T17:28:41.500Z", - "dateModified": "2025-07-19T17:28:41.500Z", - "hashShort": "4d5397b872cbe098", + "configName": "Titanic Glitched Cat Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "eb2985f5ad29c734", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://135627755072290", - "indexDesc": "Earned from purchasing a Merch Plush!", - "indexObtainable": true, - "name": "Titanic Ancient Dragon", + "cachedPower": [ + 916809019516450, + 990166329973410, + 1031410146956006, + ], + "fromEgg": "Whispering Hills Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 255, + "goldenThumbnail": "rbxassetid://81055873156873", + "maxChance": 0.8991008991008992, + "name": "Starry Tail Anteater", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://83209252945464", - "titanic": true, + "thumbnail": "rbxassetid://132417011227967", }, - "configName": "Titanic Ancient Dragon", - "dateCreated": "2025-07-19T17:28:41.500Z", - "dateModified": "2025-07-19T17:28:41.500Z", - "hashShort": "a30be6ff8ae76f75", + "configName": "Starry Tail Anteater", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.927Z", + "hashShort": "9c94ed668506e905", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://111720551893954", - "indexDesc": "Found in the Titanic Chance tile in the Summer Block Party!", - "indexObtainable": true, - "name": "Titanic Pineapple Dog", + "cachedPower": [ + 1237052479442549, + 1328099448061315, + 1391684039372868, + ], + "fromEgg": "Totem Trail Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 257, + "goldenThumbnail": "rbxassetid://94179136970254", + "maxChance": 0.9090816003132836, + "name": "Happy Cyclops", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://99869089555079", - "titanic": true, + "thumbnail": "rbxassetid://80854351808859", }, - "configName": "Titanic Pineapple Dog", - "dateCreated": "2025-07-19T17:28:41.494Z", - "dateModified": "2025-07-19T17:28:41.494Z", - "hashShort": "72d1a438830bff96", + "configName": "Happy Cyclops", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:43.928Z", + "hashShort": "1bd58824b97408f2", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://112336382327321", - "indexDesc": "Earned from purchasing a Merch Pillow!", - "indexObtainable": true, - "name": "Titanic Gamer Shiba", + "exclusiveLevel": 3, + "goldenThumbnail": "", + "name": "Ghostly Bunny", "rarity": { "Announce": true, "Color": null, @@ -137985,22 +142967,20 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://119206417994536", - "titanic": true, + "thumbnail": "rbxassetid://114747127893314", }, - "configName": "Titanic Gamer Shiba", - "dateCreated": "2025-07-19T17:28:41.499Z", - "dateModified": "2025-10-18T17:03:12.060Z", - "hashShort": "7b8272a65b37370e", + "configName": "Ghostly Bunny", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "81e7f645fc9d3960", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://111724387406882", - "indexDesc": "Earned from purchasing a Merch Plush!", - "indexObtainable": true, - "name": "Titanic Electric Werewolf", + "exclusiveLevel": 1, + "goldenThumbnail": "", + "name": "Ghostly Fox", "rarity": { "Announce": true, "Color": null, @@ -138013,23 +142993,20 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://76655518621406", - "titanic": true, + "thumbnail": "rbxassetid://125047542679172", }, - "configName": "Titanic Electric Werewolf", - "dateCreated": "2025-07-19T17:28:41.519Z", - "dateModified": "2025-10-18T17:03:13.181Z", - "hashShort": "c41160609f76be6f", + "configName": "Ghostly Fox", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "2a3acda06d94f418", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://131502445694733", - "indexDesc": "Earned from purchasing a Merch Pillow!", - "indexObtainable": true, - "name": "Titanic Wild Fire Agony", + "exclusiveLevel": 2, + "goldenThumbnail": "", + "name": "Ghostly Cat", "rarity": { "Announce": true, "Color": null, @@ -138042,440 +143019,451 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://80761300754593", - "titanic": true, + "thumbnail": "rbxassetid://112804128652434", }, - "configName": "Titanic Wild Fire Agony", - "dateCreated": "2025-07-19T17:28:41.524Z", - "dateModified": "2025-10-18T17:03:13.137Z", - "hashShort": "6b57eaa3fe3edad9", + "configName": "Ghostly Cat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "9b0d55a2e4201116", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.09, - "flyHeightChange": 0.025, - "swerve": true, - "swerveAggression": 0.2, - "swerveMaxAngle": 60, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://94523830121587", - "indexDesc": "Found in the Summer Block Party Raffle!", - "indexObtainable": true, - "name": "Titanic Surfboard Corgi", + "cachedPower": [ + 575708606259673, + 624854462891595, + 647672182042132, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 252, + "goldenThumbnail": "rbxassetid://99235033184940", + "name": "Junkyard Hound Ball", + "thumbnail": "rbxassetid://82356812731968", + "yeetPower": 155, + }, + "configName": "Junkyard Hound Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.792Z", + "hashShort": "644028d1b546df11", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1752837410296657, + 1884600820420705, + 1971942086583739, + ], + "fromEgg": "Highcliff Sanctuary Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 259, + "goldenThumbnail": "rbxassetid://104752876344014", + "maxChance": 0.000009989907695750369, + "name": "Glimmer Goat", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://94523830121587", - "titanic": true, + "thumbnail": "rbxassetid://120750866013404", }, - "configName": "Titanic Surfboard Corgi", - "dateCreated": "2025-07-19T17:28:41.525Z", - "dateModified": "2025-07-19T17:28:41.525Z", - "hashShort": "aef96ad2e8b0cab1", + "configName": "Glimmer Goat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.797Z", + "hashShort": "fac62e053f06784e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 4679767321294662, + 610812789568190, + 655570623286548, + 687164388264213, ], - "fly": true, "fromWorldNumber": 4, - "fromZoneNumber": 273, - "goldenThumbnail": "rbxassetid://84864571507407", - "name": "Specter Owl", - "thumbnail": "rbxassetid://140495115812137", + "fromZoneNumber": 252, + "goldenThumbnail": "rbxassetid://129063664346200", + "name": "Holographic Axolotl Ball", + "thumbnail": "rbxassetid://124267383251291", + "yeetPower": 105000, }, - "configName": "Specter Owl", - "dateCreated": "2025-10-18T17:03:06.671Z", - "dateModified": "2025-10-18T17:03:06.671Z", - "hashShort": "89e0d60ad994c7dc", + "configName": "Holographic Axolotl Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.799Z", + "hashShort": "90988ff16adc2b7b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2308389688927779, + 582729442921378, + 634508113301439, + 655570623286550, ], "fromWorldNumber": 4, - "fromZoneNumber": 273, - "goldenThumbnail": "rbxassetid://75343034216978", - "name": "Mummy Cow", - "thumbnail": "rbxassetid://132515709651119", + "fromZoneNumber": 252, + "goldenThumbnail": "rbxassetid://94295220873172", + "name": "Astronaut Cat Ball", + "thumbnail": "rbxassetid://102076703098200", + "yeetPower": 470, }, - "configName": "Mummy Cow", - "dateCreated": "2025-10-18T17:03:06.681Z", - "dateModified": "2025-10-18T17:03:06.681Z", - "hashShort": "408739b88b72662e", + "configName": "Astronaut Cat Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.780Z", + "hashShort": "87234cbea1c4df18", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "spinZ": true, + }, "cachedPower": [ - 6663184330515252, + 624854462891597, ], "fly": true, "fromWorldNumber": 4, - "fromZoneNumber": 273, - "goldenThumbnail": "rbxassetid://72456409595663", - "name": "Vampire Agony", - "thumbnail": "rbxassetid://97486636114363", + "fromZoneNumber": 252, + "goldenThumbnail": "rbxassetid://80190911575674", + "name": "Black Hole Angelus Ball", + "thumbnail": "rbxassetid://97111467444087", + "yeetPower": 945000, }, - "configName": "Vampire Agony", - "dateCreated": "2025-10-18T17:03:06.682Z", - "dateModified": "2025-10-18T17:03:06.682Z", - "hashShort": "d9e1b2bc270d8586", + "configName": "Black Hole Angelus Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "64583fbdd40fcf8f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 4159793174484144, + 568687769597970, + 610812789568190, + 639773740797716, ], "fromWorldNumber": 4, - "fromZoneNumber": 273, - "goldenThumbnail": "rbxassetid://115300948225494", - "name": "Skelemelon", - "thumbnail": "rbxassetid://125430916778937", + "fromZoneNumber": 252, + "goldenThumbnail": "rbxassetid://80878819748871", + "name": "Robot Ball", + "thumbnail": "rbxassetid://137985517217586", + "yeetPower": 65, }, - "configName": "Skelemelon", - "dateCreated": "2025-10-18T17:03:06.680Z", - "dateModified": "2025-10-18T17:03:06.680Z", - "hashShort": "a195bef7d123486e", + "configName": "Robot Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.793Z", + "hashShort": "893e3992d629822e", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2051901945713582, + 617833626229894, + 660836250782827, + 695062829508631, ], "fromWorldNumber": 4, - "fromZoneNumber": 273, - "goldenThumbnail": "rbxassetid://75279824626836", - "name": "Witch Wolf", - "thumbnail": "rbxassetid://120004293159160", + "fromZoneNumber": 252, + "goldenThumbnail": "rbxassetid://89120067520814", + "name": "Fragmented Dominus Ball", + "thumbnail": "rbxassetid://140173345738940", + "yeetPower": 350000, }, - "configName": "Witch Wolf", - "dateCreated": "2025-10-18T17:03:06.683Z", - "dateModified": "2025-10-18T17:03:06.683Z", - "hashShort": "ae3e91ba4baab54b", + "configName": "Fragmented Dominus Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.795Z", + "hashShort": "d15ba0382c09b5bb", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://90371331175267", - "name": "Tralala Brainrot", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://81032569820450", + "cachedPower": [ + 596771116244784, + 645039368293993, + 671367505775382, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 252, + "goldenThumbnail": "rbxassetid://110298826652568", + "name": "Glitched Unicorn Ball", + "thumbnail": "rbxassetid://113901555086837", + "yeetPower": 5650, }, - "configName": "Tralala Brainrot", - "dateCreated": "2025-10-18T17:03:06.686Z", - "dateModified": "2025-10-18T17:03:06.686Z", - "hashShort": "af2f617110691277", + "configName": "Glitched Unicorn Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.783Z", + "hashShort": "c58bf630dbbc1a5c", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1441116318525863, + 603791952906487, + 650304995790271, + 679265947019797, ], + "fly": true, "fromWorldNumber": 4, - "fromZoneNumber": 273, - "goldenThumbnail": "rbxassetid://103624934135807", - "name": "Skeleton Snake", - "thumbnail": "rbxassetid://114838772997497", + "fromZoneNumber": 252, + "goldenThumbnail": "rbxassetid://92045704830079", + "name": "Atomic Monkey Ball", + "thumbnail": "rbxassetid://129882012587386", + "yeetPower": 32000, }, - "configName": "Skeleton Snake", - "dateCreated": "2025-10-18T17:03:06.685Z", - "dateModified": "2025-10-18T17:03:06.685Z", - "hashShort": "2536191ab2b89416", + "configName": "Atomic Monkey Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.804Z", + "hashShort": "cf5c7d917eb9c187", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://119082057661558", - "name": "Cappuccina Brainrot", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://98325018409521", + "cachedPower": [ + 589750279583081, + 639773740797716, + 663469064530966, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 252, + "goldenThumbnail": "rbxassetid://79738131583847", + "name": "Brain Ball", + "thumbnail": "rbxassetid://120725409968901", + "yeetPower": 1385, }, - "configName": "Cappuccina Brainrot", - "dateCreated": "2025-10-18T17:03:06.687Z", - "dateModified": "2025-10-18T17:03:06.687Z", - "hashShort": "1dade9b4f53e640b", + "configName": "Brain Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.801Z", + "hashShort": "dd72aeb6a22430eb", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 1, - "goldenThumbnail": "rbxassetid://96279965167652", - "name": "Candycorn Unicorn", + "cachedPower": [ + 1865732556766263, + ], + "fly": true, + "fromEgg": "Highcliff Sanctuary Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 259, + "goldenThumbnail": "rbxassetid://113596837143606", + "maxChance": 2.497476923937592e-7, + "name": "Ancestor Eagle", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://97910874277835", + "thumbnail": "rbxassetid://94889153466060", }, - "configName": "Candycorn Unicorn", - "dateCreated": "2025-10-18T17:03:06.677Z", - "dateModified": "2025-10-18T17:03:06.677Z", - "hashShort": "848b54c18b68a903", + "configName": "Ancestor Eagle", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "6081bca26b1a241d", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 5264738236456495, + 1031410146956006, + 1113937121220086, + 1160336415325507, ], - "fly": true, + "fromEgg": "Runestone Bluff Egg", "fromWorldNumber": 4, - "fromZoneNumber": 273, - "goldenThumbnail": "rbxassetid://94338371519943", - "name": "Hacked Reaper", - "thumbnail": "rbxassetid://122526192238040", - }, - "configName": "Hacked Reaper", - "dateCreated": "2025-10-18T17:03:06.679Z", - "dateModified": "2025-10-18T17:03:06.679Z", - "hashShort": "60c313ddfcf2ee7f", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://126633519448010", - "name": "Patapim Brainrot", + "fromZoneNumber": 256, + "goldenThumbnail": "rbxassetid://74978214524594", + "maxChance": 0.8991008991008992, + "name": "Totem Cub", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://85861441354288", - }, - "configName": "Patapim Brainrot", - "dateCreated": "2025-10-18T17:03:06.686Z", - "dateModified": "2025-10-18T17:03:06.686Z", - "hashShort": "85d2c7fae17082b7", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 2921555700049221, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 273, - "goldenThumbnail": "rbxassetid://103245975910971", - "name": "Devil Tasmanian", - "thumbnail": "rbxassetid://127675792864967", - }, - "configName": "Devil Tasmanian", - "dateCreated": "2025-10-18T17:03:06.678Z", - "dateModified": "2025-10-18T17:03:06.678Z", - "hashShort": "c1749903c2e336d3", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 1280992283134100, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 273, - "goldenThumbnail": "rbxassetid://112608617244238", - "name": "Pumpkin Dog", - "thumbnail": "rbxassetid://116085135946843", - }, - "configName": "Pumpkin Dog", - "dateCreated": "2025-10-18T17:03:06.685Z", - "dateModified": "2025-10-18T17:03:06.685Z", - "hashShort": "d389cf2a72263427", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 3697593932874795, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 273, - "goldenThumbnail": "rbxassetid://91845561002219", - "name": "Evil Kitsune", - "thumbnail": "rbxassetid://98588572241063", - }, - "configName": "Evil Kitsune", - "dateCreated": "2025-10-18T17:03:06.683Z", - "dateModified": "2025-10-18T17:03:06.683Z", - "hashShort": "c1e2f19846968b1b", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 1621255858341595, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 273, - "goldenThumbnail": "rbxassetid://101972959017552", - "name": "Zombie Pig", - "thumbnail": "rbxassetid://103502659992163", + "thumbnail": "rbxassetid://129266443861525", }, - "configName": "Zombie Pig", - "dateCreated": "2025-10-18T17:03:06.684Z", - "dateModified": "2025-10-18T17:03:06.684Z", - "hashShort": "51f0a4e787fae5d5", + "configName": "Totem Cub", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.796Z", + "hashShort": "681c818594c2d63a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1823912840634295, + 1391684039372868, + 1494111879068980, + 1565644544294476, ], - "fly": true, + "fromEgg": "Wyrmwatch Ridge Egg", "fromWorldNumber": 4, - "fromZoneNumber": 273, - "goldenThumbnail": "rbxassetid://137821016765987", - "name": "Evil Raven", - "thumbnail": "rbxassetid://85471736127836", + "fromZoneNumber": 258, + "goldenThumbnail": "rbxassetid://136236683767883", + "maxChance": 0.09090816003132836, + "name": "Runebound Bobcat", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://85282294929293", }, - "configName": "Evil Raven", - "dateCreated": "2025-10-18T17:03:06.678Z", - "dateModified": "2025-10-18T17:03:06.678Z", - "hashShort": "643724f415b06526", + "configName": "Runebound Bobcat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.782Z", + "hashShort": "e91128c1812627b7", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2596938400043752, + 1160369088276839, + 1253244607275261, + 1305415224311444, ], + "fromEgg": "Totem Trail Egg", "fromWorldNumber": 4, - "fromZoneNumber": 273, - "goldenThumbnail": "rbxassetid://127693332170106", - "name": "Frankenpup Dog", - "thumbnail": "rbxassetid://98722260194254", + "fromZoneNumber": 257, + "goldenThumbnail": "rbxassetid://133978189367057", + "maxChance": 0.08991008991008992, + "name": "Sprout Wyrmling", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://97674775229660", }, - "configName": "Frankenpup Dog", - "dateCreated": "2025-10-18T17:03:06.674Z", - "dateModified": "2025-10-18T17:03:06.674Z", - "hashShort": "07520761281512b5", + "configName": "Sprout Wyrmling", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.800Z", + "hashShort": "34e394350ff53f89", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 5922830516013557, + 867363040622190, + 931672850153139, + 975783420699963, ], + "fromEgg": "Whispering Hills Egg", "fromWorldNumber": 4, - "fromZoneNumber": 273, - "goldenThumbnail": "rbxassetid://109526324489809", - "name": "Spectral Deer", - "thumbnail": "rbxassetid://137728356304350", + "fromZoneNumber": 255, + "goldenThumbnail": "rbxassetid://123295269589485", + "maxChance": 0.9, + "name": "Glow Worm", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://88329168839090", }, - "configName": "Spectral Deer", - "dateCreated": "2025-10-18T17:03:06.670Z", - "dateModified": "2025-10-18T17:03:06.670Z", - "hashShort": "37c62927aa3c5f43", + "configName": "Glow Worm", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.809Z", + "hashShort": "acdd20b52867879f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 3286750162555373, + 805610630646442, + 861486408795561, + 906311959477251, ], + "fromEgg": "Whispering Hills Egg", "fromWorldNumber": 4, - "fromZoneNumber": 273, - "goldenThumbnail": "rbxassetid://74387684823317", - "name": "Shark Cat", - "thumbnail": "rbxassetid://100101752973990", + "fromZoneNumber": 255, + "goldenThumbnail": "rbxassetid://109964783669648", + "maxChance": 0.9, + "name": "Boulder Boar", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://115138644167113", }, - "configName": "Shark Cat", - "dateCreated": "2025-10-18T17:03:06.676Z", - "dateModified": "2025-10-18T17:03:06.676Z", - "hashShort": "f7c3191c58e346dd", + "configName": "Boulder Boar", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.801Z", + "hashShort": "7fed172993dc7ee8", }, { - "category": "Gargantuan", + "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "gargantuan": true, - "goldenThumbnail": "rbxassetid://88793084642438", - "indexDesc": "ADMIN ABUSE!!! - -Ground Slam - Pet will damage breakables in a large area!", + "goldenThumbnail": "rbxassetid://100695925221991", + "huge": true, + "indexDesc": "Found by earning points in the Infinite Basketball Mode in Leagues Bronze-Platinum!", "indexObtainable": true, - "name": "Gargantuan Super Cat", + "name": "Huge Robot Ball", "rarity": { "Announce": true, "Color": null, @@ -138488,24 +143476,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://128024931288917", + "thumbnail": "rbxassetid://114904071316728", }, - "configName": "Gargantuan Super Cat", - "dateCreated": "2025-10-18T17:03:07.160Z", - "dateModified": "2025-10-18T17:03:07.160Z", - "hashShort": "b78ee6350759f0ad", + "configName": "Huge Robot Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "39dafc08b1275e82", }, { - "category": "Gargantuan", + "category": "Huge", "collection": "Pets", "configData": { - "gargantuan": true, - "goldenThumbnail": "rbxassetid://71312806947825", - "indexDesc": "Found in the Autumn & Spider Forever Pack! - -Ground Slam - Pet will damage breakables in a large area!", + "goldenThumbnail": "rbxassetid://74614212639471", + "huge": true, + "indexDesc": "Found by earning points in the Infinite Basketball Mode in Leagues Emerald-Master!", "indexObtainable": true, - "name": "Gargantuan Doge", + "name": "Huge Glitched Unicorn Ball", "rarity": { "Announce": true, "Color": null, @@ -138518,24 +143504,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://91301167582038", + "thumbnail": "rbxassetid://129837188566308", }, - "configName": "Gargantuan Doge", - "dateCreated": "2025-10-18T17:03:07.165Z", - "dateModified": "2025-11-22T17:14:46.769Z", - "hashShort": "d49949871433ff2c", + "configName": "Huge Glitched Unicorn Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "ce6f8269845d6624", }, { - "category": "Gargantuan", + "category": "Huge", "collection": "Pets", "configData": { - "gargantuan": true, - "goldenThumbnail": "rbxassetid://99073989820587", - "indexDesc": "Found in the Exclusive Brainrot Egg! - -Ground Slam - Pet will damage breakables in a large area!", + "goldenThumbnail": "rbxassetid://108318521072327", + "huge": true, + "indexDesc": "Found in the Cosmic Basketball Egg!", "indexObtainable": true, - "name": "Gargantuan Cappuccino Brainrot", + "name": "Huge Fragmented Dominus Ball", "rarity": { "Announce": true, "Color": null, @@ -138548,24 +143532,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://126301320280051", + "thumbnail": "rbxassetid://100875909675761", }, - "configName": "Gargantuan Cappuccino Brainrot", - "dateCreated": "2025-10-18T17:03:07.164Z", - "dateModified": "2025-10-18T17:03:07.164Z", - "hashShort": "cfc04cc299bbb67a", + "configName": "Huge Fragmented Dominus Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "fe0dff6417ca64fb", }, { - "category": "Gargantuan", + "category": "Huge", "collection": "Pets", "configData": { - "gargantuan": true, - "goldenThumbnail": "rbxassetid://117525933923587", - "indexDesc": "Found in the Exclusive Raffle! - -Ground Slam - Pet will damage breakables in a large area!", + "goldenThumbnail": "rbxassetid://108758768179939", + "huge": true, + "indexDesc": "Found in the Basketball World's furthest throw contest!", "indexObtainable": true, - "name": "Gargantuan Skelemelon", + "name": "Huge Blurred Bear Ball", "rarity": { "Announce": true, "Color": null, @@ -138578,22 +143560,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://116658660548384", + "thumbnail": "rbxassetid://133058816387774", }, - "configName": "Gargantuan Skelemelon", - "dateCreated": "2025-10-18T17:03:07.163Z", - "dateModified": "2025-10-18T17:03:07.163Z", - "hashShort": "be6f884818be5103", + "configName": "Huge Blurred Bear Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "2ae8fe706a8b3b9f", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://135194392389352", + "goldenThumbnail": "rbxassetid://89321641684953", "huge": true, - "indexDesc": "Hatched from eggs in the 2025 Halloween Event!", + "indexDesc": "Found in the Hoop Forever Pack!", "indexObtainable": true, - "name": "Huge Spectral Deer", + "name": "Huge Meebo The Alien Ball", "rarity": { "Announce": true, "Color": null, @@ -138606,22 +143588,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://72961994800686", + "thumbnail": "rbxassetid://105987856358688", }, - "configName": "Huge Spectral Deer", - "dateCreated": "2025-10-18T17:03:10.963Z", - "dateModified": "2025-10-18T17:03:10.963Z", - "hashShort": "7cb34a7da5ee22d6", + "configName": "Huge Meebo The Alien Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "a42777ce40d1065c", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://97991105596161", + "fly": true, + "goldenThumbnail": "rbxassetid://128627830801703", "huge": true, - "indexDesc": "Found in the 2025 Halloween Gift Bag!", + "indexDesc": "Found by earning points in the Infinite Basketball Mode in Leagues Diamond-Master!", "indexObtainable": true, - "name": "Huge Skelemelon", + "name": "Huge Atomic Monkey Ball", "rarity": { "Announce": true, "Color": null, @@ -138634,22 +143617,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://139632770230401", + "thumbnail": "rbxassetid://131025673327487", }, - "configName": "Huge Skelemelon", - "dateCreated": "2025-10-18T17:03:10.985Z", - "dateModified": "2025-10-18T17:03:10.985Z", - "hashShort": "02dcbf89139644f2", + "configName": "Huge Atomic Monkey Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "1c92d4d2117db381", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://93881586877382", + "goldenThumbnail": "rbxassetid://132407649475365", "huge": true, - "indexDesc": "Crafted in the 2025 Halloween Event!", + "indexDesc": "Found in the final zone of Fantasy World!", "indexObtainable": true, - "name": "Huge Evil Kitsune", + "name": "Huge Runebound Bobcat", "rarity": { "Announce": true, "Color": null, @@ -138662,22 +143645,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://122958548174928", + "thumbnail": "rbxassetid://75929351206941", }, - "configName": "Huge Evil Kitsune", - "dateCreated": "2025-10-18T17:03:10.984Z", - "dateModified": "2025-10-18T17:03:10.984Z", - "hashShort": "9d54ad86c5c4d2e7", + "configName": "Huge Runebound Bobcat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "c2924a34672d64bd", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://137822161703577", + "fly": true, + "goldenThumbnail": "", "huge": true, - "indexDesc": "ADMIN ABUSE!!!", + "indexDesc": "Found in the Ghostly Card Pack!", "indexObtainable": true, - "name": "Huge Blue Lucky Block", + "name": "Huge Ghostly Dragon", "rarity": { "Announce": true, "Color": null, @@ -138690,22 +143674,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://116957138915362", + "thumbnail": "rbxassetid://93813808986344", }, - "configName": "Huge Blue Lucky Block", - "dateCreated": "2025-10-18T17:03:10.989Z", - "dateModified": "2025-10-18T17:03:10.989Z", - "hashShort": "cc6f86e0963ac0d9", + "configName": "Huge Ghostly Dragon", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "244bce093049a5ae", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://114934170812099", + "goldenThumbnail": "rbxassetid://102704278535022", "huge": true, - "indexDesc": "Found in the Spider Forever Pack!", + "indexDesc": "Found in the Cosmic Basketball Egg!", "indexObtainable": true, - "name": "Huge Witch Wolf", + "name": "Huge LeGoat Ball", "rarity": { "Announce": true, "Color": null, @@ -138718,22 +143702,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://133897914197133", + "thumbnail": "rbxassetid://85572580085074", }, - "configName": "Huge Witch Wolf", - "dateCreated": "2025-10-18T17:03:10.992Z", - "dateModified": "2025-10-18T17:03:10.992Z", - "hashShort": "dde3510bef4682c3", + "configName": "Huge LeGoat Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "60b7d4dd6d5ed9f0", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://89205438144186", - "huge": true, - "indexDesc": "Reward in the 2025 Halloween Clan Battle!", + "goldenThumbnail": "rbxassetid://126336101849034", + "indexDesc": "Found by earning points in the Infinite Basketball Mode in Leagues Bronze-Diamond!", "indexObtainable": true, - "name": "Huge Mummy Cow", + "name": "Titanic Brain Ball", "rarity": { "Announce": true, "Color": null, @@ -138746,22 +143729,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://98874916712415", + "thumbnail": "rbxassetid://85082755103963", + "titanic": true, }, - "configName": "Huge Mummy Cow", - "dateCreated": "2025-10-18T17:03:10.991Z", - "dateModified": "2025-10-18T17:03:10.991Z", - "hashShort": "1bad07b183ec482f", + "configName": "Titanic Brain Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "cd316c8bfbf817d8", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://128479249080758", - "huge": true, - "indexDesc": "Found in the Spider Forever Pack!", + "goldenThumbnail": "rbxassetid://92316347772802", + "indexDesc": "Found by earning points in the Infinite Basketball Mode in League Master!", "indexObtainable": true, - "name": "Huge Pumpkin Dog", + "name": "Titanic Holographic Axolotl Ball", "rarity": { "Announce": true, "Color": null, @@ -138774,22 +143757,31 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://71270630021360", + "thumbnail": "rbxassetid://113783111337082", + "titanic": true, }, - "configName": "Huge Pumpkin Dog", - "dateCreated": "2025-10-18T17:03:10.992Z", - "dateModified": "2025-10-18T17:03:10.992Z", - "hashShort": "f55517f95fd1cfbd", + "configName": "Titanic Holographic Axolotl Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "c73e75fc34473b57", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://115141491208564", - "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", + "animations": { + "flyHeight": 2.2, + "ridingCameraOffset": null, + "ridingGravity": 65.3346, + "spinZ": true, + "swerve": true, + "swerveMaxAngle": 45, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://138247937692273", + "indexDesc": "Found in the Cosmic Basketball Egg!", "indexObtainable": true, - "name": "Huge Rhino", + "name": "Titanic Black Hole Angelus Ball", "rarity": { "Announce": true, "Color": null, @@ -138802,23 +143794,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://70742339660994", + "thumbnail": "rbxassetid://113303682260217", + "titanic": true, }, - "configName": "Huge Rhino", - "dateCreated": "2025-10-18T17:03:11.014Z", - "dateModified": "2025-10-18T17:03:11.014Z", - "hashShort": "4f9e0ebdd51fe511", + "configName": "Titanic Black Hole Angelus Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "35db92bc29c965df", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://81508691740799", - "huge": true, - "indexDesc": "Hatched from eggs in the 2025 Halloween Event!", + "goldenThumbnail": "rbxassetid://112592829971613", + "indexDesc": "Found in the Basketball World's furthest throw contest!", "indexObtainable": true, - "name": "Huge Hacked Reaper", + "name": "Titanic Storm Axolotl Ball", "rarity": { "Announce": true, "Color": null, @@ -138831,22 +143822,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://119356588704518", + "thumbnail": "rbxassetid://140349148341918", + "titanic": true, }, - "configName": "Huge Hacked Reaper", - "dateCreated": "2025-10-18T17:03:11.020Z", - "dateModified": "2025-10-18T17:03:11.020Z", - "hashShort": "ff1b33e50b8f8381", + "configName": "Titanic Storm Axolotl Ball", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "de81af6af02d490a", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://99431869546243", - "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", + "goldenThumbnail": "", + "indexDesc": "Found in the Ghostly Card Pack!", "indexObtainable": true, - "name": "Huge Horse", + "name": "Titanic Ghostly Wolf", "rarity": { "Announce": true, "Color": null, @@ -138859,23 +143850,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://112696303683971", + "thumbnail": "rbxassetid://122682792759281", + "titanic": true, }, - "configName": "Huge Horse", - "dateCreated": "2025-10-18T17:03:11.016Z", - "dateModified": "2025-10-18T17:03:11.016Z", - "hashShort": "f4222791e4336254", + "configName": "Titanic Ghostly Wolf", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "51fc34e924b153fa", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://114312726359328", - "huge": true, - "indexDesc": "Found in the MVP Chest!", - "indexObtainable": true, - "name": "Huge Cupcake Pegasus", + "exclusiveLevel": 2, + "goldenThumbnail": "", + "name": "Totem Bear", "rarity": { "Announce": true, "Color": null, @@ -138888,22 +143877,20 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://136860707312051", + "thumbnail": "rbxassetid://119340679619960", }, - "configName": "Huge Cupcake Pegasus", - "dateCreated": "2025-10-18T17:03:11.020Z", - "dateModified": "2025-10-18T17:03:11.020Z", - "hashShort": "00a4b7ca60b30d4f", + "configName": "Totem Bear", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "5ec577a78aabcc0c", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://89633724161239", - "huge": true, - "indexDesc": "Found in the Exclusive Brainrot Egg!", - "indexObtainable": true, - "name": "Huge Tralala Brainrot", + "exclusiveLevel": 3, + "goldenThumbnail": "", + "name": "Totem Cat", "rarity": { "Announce": true, "Color": null, @@ -138916,22 +143903,20 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://130205496743645", + "thumbnail": "rbxassetid://112385173013500", }, - "configName": "Huge Tralala Brainrot", - "dateCreated": "2025-10-18T17:03:11.025Z", - "dateModified": "2025-10-18T17:03:11.025Z", - "hashShort": "96e308da624dba4c", + "configName": "Totem Cat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "9074e836f3103393", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://125227154888340", - "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", - "indexObtainable": true, - "name": "Huge Moray Eel", + "exclusiveLevel": 1, + "goldenThumbnail": "", + "name": "Totem Wolf", "rarity": { "Announce": true, "Color": null, @@ -138944,22 +143929,24 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://103239594752603", + "thumbnail": "rbxassetid://87735422405164", }, - "configName": "Huge Moray Eel", - "dateCreated": "2025-10-18T17:03:11.022Z", - "dateModified": "2025-10-18T17:03:11.022Z", - "hashShort": "555b4a8dd651e967", + "configName": "Totem Wolf", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "5aba48581e93f436", }, { - "category": "Huge", + "category": "Gargantuan", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://108643216825404", - "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", + "gargantuan": true, + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Totem Egg! + +Ground Slam - Pet will damage breakables in a large area!", "indexObtainable": true, - "name": "Huge Gorilla", + "name": "Gargantuan Totem Monkey", "rarity": { "Announce": true, "Color": null, @@ -138972,22 +143959,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://107479430028155", + "thumbnail": "rbxassetid://119822736449264", }, - "configName": "Huge Gorilla", - "dateCreated": "2025-10-18T17:03:11.029Z", - "dateModified": "2025-10-18T17:03:11.029Z", - "hashShort": "222cd5b77875b3cb", + "configName": "Gargantuan Totem Monkey", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "64eba152ed795658", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://110879826577944", + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", + "indexDesc": "Found in the Exclusive Totem Egg!", "indexObtainable": true, - "name": "Huge Sloth", + "name": "Huge Totem Wolf", "rarity": { "Announce": true, "Color": null, @@ -139000,22 +143987,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://77873746102691", + "thumbnail": "rbxassetid://130997023659211", }, - "configName": "Huge Sloth", - "dateCreated": "2025-10-18T17:03:11.030Z", - "dateModified": "2025-10-18T17:03:11.030Z", - "hashShort": "032eac57ac769238", + "configName": "Huge Totem Wolf", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "8304b6adf0114a81", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://75105494133652", + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", + "indexDesc": "Found in the Exclusive Totem Egg!", "indexObtainable": true, - "name": "Huge Gazelle", + "name": "Huge Totem Cat", "rarity": { "Announce": true, "Color": null, @@ -139028,22 +144015,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://137006734767024", + "thumbnail": "rbxassetid://94635272523111", }, - "configName": "Huge Gazelle", - "dateCreated": "2025-10-18T17:03:11.024Z", - "dateModified": "2025-10-18T17:03:11.024Z", - "hashShort": "9ea9adc4b026db63", + "configName": "Huge Totem Cat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "109e8390e9415512", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://71519139099378", + "goldenThumbnail": "rbxassetid://139883402781336", "huge": true, - "indexDesc": "Found in the Exclusive Brainrot Egg!", + "indexDesc": "Reward in the 2025 Nightmare Cyclops Clan Battle!", "indexObtainable": true, - "name": "Huge Cappuccina Brainrot", + "name": "Huge Nightmare Cyclops", "rarity": { "Announce": true, "Color": null, @@ -139056,22 +144043,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://110814000442591", + "thumbnail": "rbxassetid://98277417659107", }, - "configName": "Huge Cappuccina Brainrot", - "dateCreated": "2025-10-18T17:03:11.025Z", - "dateModified": "2025-10-18T17:03:11.025Z", - "hashShort": "f879bc2dcaf6ec77", + "configName": "Huge Nightmare Cyclops", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "4b65c33ef5829111", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://120398808827403", + "goldenThumbnail": "rbxassetid://102899091466775", "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", + "indexDesc": "Found in the Tower Defense Forever Pack!", "indexObtainable": true, - "name": "Huge African Wild Dog", + "name": "Huge Flamethrower Spider", "rarity": { "Announce": true, "Color": null, @@ -139084,22 +144071,26 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://137866343628136", + "thumbnail": "rbxassetid://73032919339096", }, - "configName": "Huge African Wild Dog", - "dateCreated": "2025-10-18T17:03:11.029Z", - "dateModified": "2025-10-18T17:03:11.029Z", - "hashShort": "c8122b8b5b260613", + "configName": "Huge Flamethrower Spider", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "aa0f66c338b906b9", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://111077752188262", + "animations": { + "spinZ": true, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://132975828140043", "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", + "indexDesc": "Found in Tower Defense Gift Bag!", "indexObtainable": true, - "name": "Huge Lemur", + "name": "Huge Arcade Angelus", "rarity": { "Announce": true, "Color": null, @@ -139112,30 +144103,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://106102265443812", + "thumbnail": "rbxassetid://119811643774598", }, - "configName": "Huge Lemur", - "dateCreated": "2025-10-18T17:03:11.033Z", - "dateModified": "2025-10-18T17:03:11.033Z", - "hashShort": "a764f04747c62243", + "configName": "Huge Arcade Angelus", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "c01bc7441341e764", }, { "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 11120514129515254, - ], - "fromEgg": "Toadstool Throne Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 274, - "goldenThumbnail": "rbxassetid://122739157919164", + "goldenThumbnail": "rbxassetid://92731738674259", "huge": true, - "indexDesc": "Found in the final zone of Fantasy World!", + "indexDesc": "Found from completing Tower Defense maps!", "indexObtainable": true, - "isFromLastZone": true, - "maxChance": 5.993944258176522e-8, - "name": "Huge Fiddlefern Cat", + "name": "Huge Safari Monkey", "rarity": { "Announce": true, "Color": null, @@ -139148,23 +144131,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://106766832972765", + "thumbnail": "rbxassetid://131070721986590", }, - "configName": "Huge Fiddlefern Cat", - "dateCreated": "2025-10-18T17:03:11.032Z", - "dateModified": "2025-10-18T17:03:11.032Z", - "hashShort": "88048c00d431bb8c", + "configName": "Huge Safari Monkey", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "a78509c0043eaa38", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://96016484180237", + "goldenThumbnail": "rbxassetid://79021582171284", "huge": true, - "indexDesc": "Hatched from eggs in the 2025 Halloween Event!", + "indexDesc": "Found in Tower Defense Infinite Mode!", "indexObtainable": true, - "name": "Huge Vampire Agony", + "name": "Huge Ninja Dalmatian", "rarity": { "Announce": true, "Color": null, @@ -139177,22 +144159,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://130091557043756", + "thumbnail": "rbxassetid://108653580991375", }, - "configName": "Huge Vampire Agony", - "dateCreated": "2025-10-18T17:03:11.223Z", - "dateModified": "2025-10-18T17:03:11.223Z", - "hashShort": "4c229912a00ce716", + "configName": "Huge Ninja Dalmatian", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "2432b45b706c57e4", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://114734774230750", + "goldenThumbnail": "rbxassetid://122725550519213", "huge": true, - "indexDesc": "Found in the 2025 Halloween Gift Bag!", + "indexDesc": "Found in the Tower Defense Dark Unit Egg!", "indexObtainable": true, - "name": "Huge Devil Tasmanian", + "name": "Huge Zeus Bear", "rarity": { "Announce": true, "Color": null, @@ -139205,22 +144187,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://128236274006069", + "tdadd": "Zeus Bear", + "thumbnail": "rbxassetid://112711947085113", }, - "configName": "Huge Devil Tasmanian", - "dateCreated": "2025-10-18T17:03:11.222Z", - "dateModified": "2025-10-18T17:03:11.222Z", - "hashShort": "221e199783b2e812", + "configName": "Huge Zeus Bear", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "8ee759086c1e822d", }, { "category": "Titanic", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://103082828650776", - "indexDesc": "Hatched from eggs in the 2025 Halloween Event!", + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Totem Egg!", "indexObtainable": true, - "name": "Titanic Vampire Agony", + "name": "Titanic Totem Owl", "rarity": { "Announce": true, "Color": null, @@ -139233,22 +144216,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://120127746226502", + "thumbnail": "rbxassetid://113883294151672", "titanic": true, }, - "configName": "Titanic Vampire Agony", - "dateCreated": "2025-10-18T17:03:13.135Z", - "dateModified": "2025-10-18T17:03:13.135Z", - "hashShort": "2b700a322043d1b4", + "configName": "Titanic Totem Owl", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "577cf3a40c8cb44a", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://126172210172307", - "indexDesc": "Reward in the 2025 Halloween Clan Battle!", + "goldenThumbnail": "rbxassetid://107811785092987", + "indexDesc": "Found in Tower Defense Infinite Mode!", "indexObtainable": true, - "name": "Titanic Spectral Deer", + "name": "Titanic Nuclear Dominus", "rarity": { "Announce": true, "Color": null, @@ -139261,22 +144244,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://131625375967545", + "thumbnail": "rbxassetid://89079914653580", "titanic": true, }, - "configName": "Titanic Spectral Deer", - "dateCreated": "2025-10-18T17:03:13.137Z", - "dateModified": "2025-10-18T17:03:13.137Z", - "hashShort": "9cf2d62d4d911cc7", + "configName": "Titanic Nuclear Dominus", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "82c23ab618eaccfc", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://73118473332688", - "indexDesc": "Found in the Spider Forever Pack!", + "fly": true, + "goldenThumbnail": "rbxassetid://120316301549371", + "indexDesc": "Found in the Tower Defense Dark Unit Egg!", "indexObtainable": true, - "name": "Titanic Blobenstein", + "name": "Titanic Mechanical Griffin", "rarity": { "Announce": true, "Color": null, @@ -139289,172 +144273,194 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://133816643880772", + "tdadd": "Mechanical Griffin", + "thumbnail": "rbxassetid://139823159544156", "titanic": true, }, - "configName": "Titanic Blobenstein", - "dateCreated": "2025-10-18T17:03:13.138Z", - "dateModified": "2025-10-18T17:03:13.138Z", - "hashShort": "366893006466f2c3", + "configName": "Titanic Mechanical Griffin", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "08a096317190da1f", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { + "cachedPower": [ + 1563016363088980, + 1678904728048483, + 1758393408475102, + ], "fly": true, - "flyingTitanic": true, - "goldenThumbnail": "rbxassetid://129798068509648", - "indexDesc": "Found in the Exclusive Raffle!", - "indexObtainable": true, - "name": "Titanic Guilded Raven", + "fromEgg": "Ember Cliffs Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 260, + "goldenThumbnail": "rbxassetid://74286907452092", + "maxChance": 0.9, + "name": "Charred Dragon", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://133529343440925", - "titanic": true, + "thumbnail": "rbxassetid://80510696469372", }, - "configName": "Titanic Guilded Raven", - "dateCreated": "2025-10-18T17:03:13.141Z", - "dateModified": "2025-10-18T17:03:13.141Z", - "hashShort": "505358a12006fbeb", + "configName": "Charred Dragon", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.815Z", + "hashShort": "9d52b2560075ddc5", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "ridingCameraOffset": null, - "swerve": true, - "swerveAggression": 1, - "swerveMaxAngle": 60, - }, - "fly": true, - "flyingTitanic": true, - "goldenThumbnail": "rbxassetid://139538895638672", - "indexDesc": "Found in the Exclusive Brainrot Egg!", - "indexObtainable": true, - "name": "Titanic Crocodilo Brainrot", + "cachedPower": [ + 1858634575427405, + 2007350862760159, + 2090963897355831, + ], + "fromEgg": "Charred Canyon Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 261, + "goldenThumbnail": "rbxassetid://119297831252538", + "maxChance": 0.8991008991008992, + "name": "Molten Werelynx", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://134789752916568", - "titanic": true, + "thumbnail": "rbxassetid://122475725555641", }, - "configName": "Titanic Crocodilo Brainrot", - "dateCreated": "2025-10-18T17:03:13.141Z", - "dateModified": "2025-10-18T17:03:13.141Z", - "hashShort": "2277094d55b3bec1", + "configName": "Molten Werelynx", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.816Z", + "hashShort": "c586df6c133381a4", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://132700505710761", - "indexDesc": "Found in the MVP Chest!", - "indexObtainable": true, - "name": "Titanic Quokka", + "cachedPower": [ + 2091022775075044, + 2258387476043605, + 2352400621959425, + ], + "fromEgg": "Ember Chasm Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 262, + "goldenThumbnail": "rbxassetid://76869105374711", + "maxChance": 0.08991008991008992, + "name": "Molten Gecko", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://118478723717753", - "titanic": true, + "thumbnail": "rbxassetid://78077369100692", }, - "configName": "Titanic Quokka", - "dateCreated": "2025-10-18T17:03:13.144Z", - "dateModified": "2025-10-18T17:03:13.144Z", - "hashShort": "4862b899da160bef", + "configName": "Molten Gecko", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.817Z", + "hashShort": "c31b7f4506814804", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { + "cachedPower": [ + 1451736515168517, + 1552426481719037, + 1633203579564581, + ], "fly": true, - "goldenThumbnail": "rbxassetid://125943538738470", - "indexDesc": "Crafted in the 2025 Halloween Event!", - "indexObtainable": true, - "name": "Titanic Specter Owl", + "fromEgg": "Ember Cliffs Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 260, + "goldenThumbnail": "rbxassetid://100274528211173", + "maxChance": 0.9, + "name": "Charred Bat", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://75229651213956", - "titanic": true, + "thumbnail": "rbxassetid://119063303269865", }, - "configName": "Titanic Specter Owl", - "dateCreated": "2025-10-18T17:03:13.149Z", - "dateModified": "2025-10-18T17:03:13.149Z", - "hashShort": "e9e994fd9e2808ab", + "configName": "Charred Bat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.819Z", + "hashShort": "11465383d91bdd73", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://111827016010488", - "indexDesc": "ADMIN ABUSE!!!", - "indexObtainable": true, - "name": "Titanic Noob", + "cachedPower": [ + 1652119622602138, + 1784311878009030, + 1858634575427405, + ], + "fromEgg": "Ember Cliffs Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 260, + "goldenThumbnail": "rbxassetid://121637522313436", + "maxChance": 0.8991008991008992, + "name": "Molten Wisp", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://101954252153126", - "titanic": true, + "thumbnail": "rbxassetid://128000347783561", }, - "configName": "Titanic Noob", - "dateCreated": "2025-10-18T17:03:13.150Z", - "dateModified": "2025-10-18T17:03:13.150Z", - "hashShort": "0d3271b6868782c0", + "configName": "Molten Wisp", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.819Z", + "hashShort": "c79dc44ade91b007", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 3, - "goldenThumbnail": "rbxassetid://102431699666469", - "name": "Leafstorm Wolf", + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://87362466795849", + "name": "Dino Corgi", "rarity": { "Announce": true, "Color": null, @@ -139467,144 +144473,153 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://85521429598620", - }, - "configName": "Leafstorm Wolf", - "dateCreated": "2025-11-22T17:14:46.292Z", - "dateModified": "2025-11-22T17:14:46.292Z", - "hashShort": "18aa9e28a8aef291", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 7079633351172455, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 275, - "goldenThumbnail": "rbxassetid://80948711786302", - "name": "Maple Owl", - "thumbnail": "rbxassetid://112955091368176", + "tdadd": "Dino Corgi", + "thumbnail": "rbxassetid://85682111496463", }, - "configName": "Maple Owl", - "dateCreated": "2025-11-22T17:14:46.293Z", - "dateModified": "2025-11-22T17:14:46.293Z", - "hashShort": "b2b35a09915d0388", + "configName": "Dino Corgi", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "91b52c2c28777dbf", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 7496082371829658, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 275, - "goldenThumbnail": "rbxassetid://105110399557856", - "name": "Leafy Deer", - "thumbnail": "rbxassetid://126470494165777", + "exclusiveLevel": 2, + "fly": true, + "goldenThumbnail": "rbxassetid://87116974154439", + "name": "Pinata Dragon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "tdadd": "Pinata Dragon", + "thumbnail": "rbxassetid://111566780355436", }, - "configName": "Leafy Deer", - "dateCreated": "2025-11-22T17:14:46.297Z", - "dateModified": "2025-11-22T17:14:46.297Z", - "hashShort": "7101a5ae661f3c0e", + "configName": "Pinata Dragon", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "ee8fb2273114d4c1", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 6107918969638981, + 3158669929217752, + 3396111872711860, + 3553503670369970, ], + "fromEgg": "Obsidian Spire Egg", "fromWorldNumber": 4, - "fromZoneNumber": 275, - "goldenThumbnail": "rbxassetid://84496160822498", - "name": "Persimmony Cricket", - "thumbnail": "rbxassetid://119442296386528", - }, - "configName": "Persimmony Cricket", - "dateCreated": "2025-11-22T17:14:46.302Z", - "dateModified": "2025-11-22T17:14:46.302Z", - "hashShort": "e6b80d8cee448e95", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://137869919756045", - "name": "Molten Pumpkin Cat", + "fromZoneNumber": 264, + "goldenThumbnail": "rbxassetid://74423300371148", + "maxChance": 0.000009989907695750369, + "name": "Firefossil Wolf", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Exotic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 6, + "_id": "Exotic", "_script": null, }, - "thumbnail": "rbxassetid://127286916260501", + "thumbnail": "rbxassetid://105213780078257", }, - "configName": "Molten Pumpkin Cat", - "dateCreated": "2025-11-22T17:14:46.301Z", - "dateModified": "2025-11-22T17:14:46.301Z", - "hashShort": "4b7ec4c2e20d335b", + "configName": "Firefossil Wolf", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.822Z", + "hashShort": "a4a1290238d531de", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 6293007423264404, + 2507859827909194, + 2692438120945562, + 2821342306397844, ], + "fly": true, + "fromEgg": "Molten Nest Egg", "fromWorldNumber": 4, - "fromZoneNumber": 275, - "goldenThumbnail": "rbxassetid://118060661068822", - "name": "Strawhat Tanuki", - "thumbnail": "rbxassetid://95229081010047", + "fromZoneNumber": 263, + "goldenThumbnail": "rbxassetid://126832192285097", + "maxChance": 0.09090816003132836, + "name": "Obsidian Griffin", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://90863360337680", }, - "configName": "Strawhat Tanuki", - "dateCreated": "2025-11-22T17:14:46.300Z", - "dateModified": "2025-11-22T17:14:46.300Z", - "hashShort": "ff05108b52977ae6", + "configName": "Obsidian Griffin", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.827Z", + "hashShort": "81f0b4790d301ccc", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 6663184330515252, + 2229208735919284, + 2393278329729388, + 2507859827909194, ], + "fly": true, + "fromEgg": "Ember Chasm Egg", "fromWorldNumber": 4, - "fromZoneNumber": 275, - "goldenThumbnail": "rbxassetid://110326913870357", - "name": "Cinnamon Bunny", - "thumbnail": "rbxassetid://95560881977168", + "fromZoneNumber": 262, + "goldenThumbnail": "rbxassetid://90827079598748", + "maxChance": 0.9090816003132836, + "name": "Ember Vulture", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://128631433384190", }, - "configName": "Cinnamon Bunny", - "dateCreated": "2025-11-22T17:14:46.758Z", - "dateModified": "2025-11-22T17:14:46.758Z", - "hashShort": "3b3b94dc33ca9ff3", + "configName": "Ember Vulture", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.829Z", + "hashShort": "9c98f8a446d1ec38", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.025, - "flyHeightChange": 0, - "swerve": true, - "swerveAggression": 0.2, - "swerveMaxAngle": 60, - }, - "exclusiveLevel": 1, - "fly": true, - "goldenThumbnail": "rbxassetid://123338202092795", - "name": "Honey Bear", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://92443422690070", + "name": "Poseidon Axolotl", "rarity": { "Announce": true, "Color": null, @@ -139617,70 +144632,56 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://129705830561176", + "tdadd": "Poseidon Axolotl", + "thumbnail": "rbxassetid://81457537134265", }, - "configName": "Honey Bear", - "dateCreated": "2025-11-22T17:14:46.761Z", - "dateModified": "2025-11-22T17:14:46.761Z", - "hashShort": "4cc2b28bf339204c", + "configName": "Poseidon Axolotl", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "320b751c5630a410", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 5593784376235026, + 3362110648940767, ], + "fromEgg": "Obsidian Spire Egg", "fromWorldNumber": 4, - "fromZoneNumber": 275, - "goldenThumbnail": "rbxassetid://112394355023679", - "name": "Chesnut Chipmunk", - "thumbnail": "rbxassetid://108744690705529", - }, - "configName": "Chesnut Chipmunk", - "dateCreated": "2025-11-22T17:14:46.757Z", - "dateModified": "2025-11-22T17:14:46.757Z", - "hashShort": "29c939e74d03f1e5", - }, - { - "category": "Gargantuan", - "collection": "Pets", - "configData": { - "gargantuan": true, - "goldenThumbnail": "rbxassetid://103358083445978", - "indexDesc": "Crafted in the 2025 Halloween Event!", - "indexObtainable": true, - "name": "Gargantuan Frankenpup Dog", + "fromZoneNumber": 264, + "goldenThumbnail": "rbxassetid://85103255519117", + "maxChance": 2.497476923937592e-7, + "name": "Fire Kitsune", "rarity": { "Announce": true, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Divine", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 7, + "_id": "Divine", "_script": null, }, - "thumbnail": "rbxassetid://73716913913195", + "thumbnail": "rbxassetid://116329114411131", }, - "configName": "Gargantuan Frankenpup Dog", - "dateCreated": "2025-11-22T17:14:46.768Z", - "dateModified": "2025-11-22T17:14:46.768Z", - "hashShort": "ab086505d3b17655", + "configName": "Fire Kitsune", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "74e6de6a4712d930", }, { - "category": "Gargantuan", + "category": "Huge", "collection": "Pets", "configData": { - "gargantuan": true, - "goldenThumbnail": "rbxassetid://106441871357793", - "indexDesc": "Found in the Exclusive Harvest Egg! - -Ground Slam - Pet will damage breakables in a large area!", + "fly": true, + "goldenThumbnail": "rbxassetid://73016915935946", + "huge": true, + "indexDesc": "Found from completing Tower Defense maps!", "indexObtainable": true, - "name": "Gargantuan Evil Scarecrow Pumpkin", + "name": "Huge Frostbyte Griffin", "rarity": { "Announce": true, "Color": null, @@ -139693,22 +144694,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://114300365192444", + "thumbnail": "rbxassetid://133555995966095", }, - "configName": "Gargantuan Evil Scarecrow Pumpkin", - "dateCreated": "2025-11-22T17:14:46.778Z", - "dateModified": "2025-11-22T17:14:46.778Z", - "hashShort": "d57ec91c00312aef", + "configName": "Huge Frostbyte Griffin", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "6741af914f13d4c0", }, { - "category": "Gargantuan", + "category": "Huge", "collection": "Pets", "configData": { - "gargantuan": true, - "goldenThumbnail": "rbxassetid://98047308462200", - "indexDesc": "Found in the Autumn World's Diamond Egg!", + "goldenThumbnail": "rbxassetid://81115915677228", + "huge": true, + "indexDesc": "Found with the Poseidon Axolotl Tower!", "indexObtainable": true, - "name": "Gargantuan Leafy Deer", + "name": "Huge Poseidon Axolotl", "rarity": { "Announce": true, "Color": null, @@ -139721,28 +144722,24 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://93500762936904", + "tdadd": "Poseidon Axolotl", + "thumbnail": "rbxassetid://86210025446242", }, - "configName": "Gargantuan Leafy Deer", - "dateCreated": "2025-11-22T17:14:46.775Z", - "dateModified": "2025-11-22T17:14:46.775Z", - "hashShort": "31c969a0d7479145", + "configName": "Huge Poseidon Axolotl", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "ae880c19ea90dadb", }, { - "category": "Gargantuan", + "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "balloon": true, - }, "fly": true, - "gargantuan": true, - "goldenThumbnail": "rbxassetid://119190493678984", - "indexDesc": "ADMIN ABUSE!!! - -Ground Slam - Pet will damage breakables in a large area!", + "goldenThumbnail": "rbxassetid://78315628281378", + "huge": true, + "indexDesc": "Found in Tower Defense Infinite Mode!", "indexObtainable": true, - "name": "Gargantuan Black Balloon Cat", + "name": "Huge Blurred Owl", "rarity": { "Announce": true, "Color": null, @@ -139755,26 +144752,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://70419388027416", + "thumbnail": "rbxassetid://108865799258120", }, - "configName": "Gargantuan Black Balloon Cat", - "dateCreated": "2025-11-22T17:14:46.777Z", - "dateModified": "2025-11-22T17:14:46.777Z", - "hashShort": "d9326804ad9afcf6", + "configName": "Huge Blurred Owl", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "8225468d294bae10", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "balloon": true, - }, "fly": true, - "goldenThumbnail": "rbxassetid://14976361490", + "goldenThumbnail": "rbxassetid://121888752674812", "huge": true, - "indexDesc": "Found in the ADMIN ABUSE!", + "indexDesc": "Found in Tower Defense AFK Mode!", "indexObtainable": true, - "name": "Huge Beans Balloon Cat", + "name": "Huge Jetpack Cat", "rarity": { "Announce": true, "Color": null, @@ -139787,30 +144781,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://14976361583", + "thumbnail": "rbxassetid://112353118554284", }, - "configName": "Huge Beans Balloon Cat", - "dateCreated": "2025-11-22T17:14:47.294Z", - "dateModified": "2025-11-22T17:14:47.294Z", - "hashShort": "f71ae88c8e83f337", + "configName": "Huge Jetpack Cat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "8a84eac0c9c5f979", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.025, - "flyHeightChange": 0, - "swerve": true, - "swerveAggression": 0.2, - "swerveMaxAngle": 60, - }, "fly": true, - "goldenThumbnail": "rbxassetid://105728903847484", + "goldenThumbnail": "rbxassetid://103573375063274", "huge": true, - "indexDesc": "Found in the Exclusive Harvest Egg!", + "indexDesc": "Found in the Tower Defense World's most infinity waves contest!", "indexObtainable": true, - "name": "Huge Honey Bear", + "name": "Huge Shadow Pegasus", "rarity": { "Announce": true, "Color": null, @@ -139823,22 +144810,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://83794143197410", + "thumbnail": "rbxassetid://131804456105000", }, - "configName": "Huge Honey Bear", - "dateCreated": "2025-11-22T17:14:50.773Z", - "dateModified": "2025-11-22T17:14:50.773Z", - "hashShort": "718ffc6ba546c8e0", + "configName": "Huge Shadow Pegasus", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "f23b534bf2d5fa0c", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://93904249280197", + "fly": true, + "goldenThumbnail": "rbxassetid://127294712784463", "huge": true, - "indexDesc": "Crafted in the 2025 Halloween Event!", + "indexDesc": "Found in the Tower Defense Magma Unit Egg!", "indexObtainable": true, - "name": "Huge Skeleton Snake", + "name": "Huge Arcade Meebo in a Spaceship", "rarity": { "Announce": true, "Color": null, @@ -139851,23 +144839,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://101412265452600", + "tdadd": "Arcade Meebo in a Spaceship", + "thumbnail": "rbxassetid://72018720220470", }, - "configName": "Huge Skeleton Snake", - "dateCreated": "2025-11-22T17:14:50.771Z", - "dateModified": "2025-11-22T17:14:50.771Z", - "hashShort": "12aa196409b2196a", + "configName": "Huge Arcade Meebo in a Spaceship", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "197ab2806016c321", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://93139377266025", + "goldenThumbnail": "rbxassetid://79910812197115", "huge": true, - "indexDesc": "Hatched from eggs in the 2025 Halloween Event!", + "indexDesc": "Found in the Tower Defense Forever Pack!", "indexObtainable": true, - "name": "Huge Specter Owl", + "name": "Huge Rich Corgi", "rarity": { "Announce": true, "Color": null, @@ -139880,22 +144868,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://96339575163664", + "thumbnail": "rbxassetid://124517901804987", }, - "configName": "Huge Specter Owl", - "dateCreated": "2025-11-22T17:14:50.776Z", - "dateModified": "2025-11-22T17:14:50.776Z", - "hashShort": "00d131f8d3ba7fcf", + "configName": "Huge Rich Corgi", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "59f5c922c5c000d0", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://75513927696217", + "fly": true, + "goldenThumbnail": "rbxassetid://126497020374873", "huge": true, - "indexDesc": "Found in the Exclusive Harvest Egg!", + "indexDesc": "Found in the final zone of Fantasy World!", "indexObtainable": true, - "name": "Huge Leafstorm Wolf", + "name": "Huge Obsidian Griffin", "rarity": { "Announce": true, "Color": null, @@ -139908,23 +144897,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://139340972718086", + "thumbnail": "rbxassetid://105493952601280", }, - "configName": "Huge Leafstorm Wolf", - "dateCreated": "2025-11-22T17:14:50.775Z", - "dateModified": "2025-11-22T17:14:50.775Z", - "hashShort": "78b3db1eadc7978c", + "configName": "Huge Obsidian Griffin", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "f4fe3ae7ca6782bf", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://134505026155000", - "huge": true, - "indexDesc": "Crafted in the 2025 Halloween Event!", + "goldenThumbnail": "rbxassetid://72307224721426", + "indexDesc": "Found with the Poseidon Axolotl Tower!", "indexObtainable": true, - "name": "Huge Evil Raven", + "name": "Titanic Poseidon Axolotl", "rarity": { "Announce": true, "Color": null, @@ -139937,22 +144924,24 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://125919373287917", + "tdadd": "Poseidon Axolotl", + "thumbnail": "rbxassetid://80369065406332", + "titanic": true, }, - "configName": "Huge Evil Raven", - "dateCreated": "2025-11-22T17:14:50.772Z", - "dateModified": "2025-11-22T17:14:50.772Z", - "hashShort": "19bb497f042a28d4", + "configName": "Titanic Poseidon Axolotl", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "dfc13afaaf5de2c3", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://113023993933225", - "huge": true, - "indexDesc": "Found in the Autumn Forever Pack!", + "fly": true, + "goldenThumbnail": "rbxassetid://116823990397840", + "indexDesc": "Found in Tower Defense Infinite Mode!", "indexObtainable": true, - "name": "Huge Chesnut Chipmunk", + "name": "Titanic Disco Ball Agony", "rarity": { "Announce": true, "Color": null, @@ -139965,22 +144954,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://134539491208069", + "thumbnail": "rbxassetid://79337032741269", + "titanic": true, }, - "configName": "Huge Chesnut Chipmunk", - "dateCreated": "2025-11-22T17:14:50.780Z", - "dateModified": "2025-11-22T17:14:50.780Z", - "hashShort": "4403c1bc84b512e0", + "configName": "Titanic Disco Ball Agony", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "d74a145ea3260b30", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://130035719911659", - "huge": true, - "indexDesc": "Hatched from eggs in the 2025 Halloween Event!", + "goldenThumbnail": "rbxassetid://74224315493205", + "indexDesc": "Found in the Tower Defense World's most infinity waves contest!", "indexObtainable": true, - "name": "Huge Shark Cat", + "name": "Titanic DJ Shark", "rarity": { "Announce": true, "Color": null, @@ -139993,22 +144982,28 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://96757523363685", + "thumbnail": "rbxassetid://111270922153333", + "titanic": true, }, - "configName": "Huge Shark Cat", - "dateCreated": "2025-11-22T17:14:50.778Z", - "dateModified": "2025-11-22T17:14:50.778Z", - "hashShort": "10e126a04aebf351", + "configName": "Titanic DJ Shark", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "13aec8fef0bbe4f9", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://106654404124515", - "huge": true, - "indexDesc": "Crafted in the 2025 Halloween Event!", + "animations": { + "swerve": true, + "swerveAggression": 1, + "swerveMaxAngle": 60, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://73016321559724", + "indexDesc": "Found in the Tower Defense Magma Unit Egg!", "indexObtainable": true, - "name": "Huge Frankenpup Dog", + "name": "Titanic Helicopter Corgi", "rarity": { "Announce": true, "Color": null, @@ -140021,22 +145016,118 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://89649094845422", + "tdadd": "Helicopter Corgi", + "thumbnail": "rbxassetid://139030108461655", + "titanic": true, }, - "configName": "Huge Frankenpup Dog", - "dateCreated": "2025-11-22T17:14:50.778Z", - "dateModified": "2025-11-22T17:14:50.778Z", - "hashShort": "abb6250129a425fb", + "configName": "Titanic Helicopter Corgi", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "862f3e015c6c0e6c", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://137327835746474", - "huge": true, - "indexDesc": "Found in the Autumn World's Diamond Egg!", - "indexObtainable": true, - "name": "Huge Cinnamon Bunny", + "animations": { + "ballBounceHeight": 2, + }, + "cachedPower": [ + 1181359550001449, + 1286329750980496, + 1329029493751631, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 263, + "goldenThumbnail": "rbxassetid://81731958382235", + "gymPower": 50, + "name": "Baseball Dolphin", + "thumbnail": "rbxassetid://72207420281851", + }, + "configName": "Baseball Dolphin", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.836Z", + "hashShort": "7512d2f2bd80d51f", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "ballBounceHeight": 2, + }, + "cachedPower": [ + 1138659807230311, + 1209826045182206, + 1280992283134100, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 263, + "goldenThumbnail": "rbxassetid://86168317979967", + "gymPower": 10, + "name": "Football Tiger", + "thumbnail": "rbxassetid://107564789202189", + }, + "configName": "Football Tiger", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.843Z", + "hashShort": "970f7d98957ba378", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "ballBounceHeight": 2, + }, + "cachedPower": [ + 1167126302411067, + 1266759035543718, + 1313017090212451, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 263, + "goldenThumbnail": "rbxassetid://135374060583481", + "gymPower": 24, + "name": "Basketball Monkey", + "thumbnail": "rbxassetid://103339445260972", + }, + "configName": "Basketball Monkey", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.842Z", + "hashShort": "bb2a505fe3a7ae25", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "ballBounceHeight": 2, + }, + "cachedPower": [ + 1259642411748535, + 1345041897290811, + 1417097713217102, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 263, + "goldenThumbnail": "rbxassetid://85412700909383", + "gymPower": 400, + "name": "Soccer Terrier", + "thumbnail": "rbxassetid://129012272907751", + }, + "configName": "Soccer Terrier", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.844Z", + "hashShort": "9e32991bd1812c5c", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://75320514835896", + "name": "Super Coral Axolotl", "rarity": { "Announce": true, "Color": null, @@ -140049,23 +145140,243 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://84468265134743", + "thumbnail": "rbxassetid://140554111932845", }, - "configName": "Huge Cinnamon Bunny", - "dateCreated": "2025-11-22T17:14:50.783Z", - "dateModified": "2025-11-22T17:14:50.783Z", - "hashShort": "a4342248ffa4d698", + "configName": "Super Coral Axolotl", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "993f26f8db0a8f0f", }, { - "category": "Huge", + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1486151203479796, + 1621255858341595, + 1671920103914770, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 263, + "goldenThumbnail": "rbxassetid://116176992909192", + "gymPower": 12000, + "name": "Gym Shark", + "thumbnail": "rbxassetid://84637954572721", + }, + "configName": "Gym Shark", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.845Z", + "hashShort": "a25fd7eff6cd4d8d", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1441116318525863, + 1531186088433729, + 1621255858341595, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 263, + "goldenThumbnail": "rbxassetid://94086244569223", + "gymPower": 6000, + "name": "Gym Scorpion", + "thumbnail": "rbxassetid://98763638093495", + }, + "configName": "Gym Scorpion", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.844Z", + "hashShort": "426eaf6a3c9e19e2", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1321023291982041, + 1441116318525863, + 1486151203479796, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 263, + "goldenThumbnail": "rbxassetid://71958398875736", + "gymPower": 1200, + "name": "Gym Anteater", + "thumbnail": "rbxassetid://118917112706434", + }, + "configName": "Gym Anteater", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.846Z", + "hashShort": "10ad7921235f2ae1", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1152893054820693, + 1238292540362970, + 1297004686673280, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 263, + "goldenThumbnail": "rbxassetid://138734965116841", + "gymPower": 12, + "name": "Boxing Elephant", + "thumbnail": "rbxassetid://108992431452825", + }, + "configName": "Boxing Elephant", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.847Z", + "hashShort": "62fe680321cb9f65", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://99707279098428", + "name": "Super Coral Hydra", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://97376504237920", + }, + "configName": "Super Coral Hydra", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "d6aa84e7dc0d2b79", + }, + { + "category": "Uncategorized", "collection": "Pets", "configData": { + "cachedPower": [ + 1823912840634295, + ], "fly": true, - "goldenThumbnail": "rbxassetid://128021677305268", - "huge": true, - "indexDesc": "Found in the Autumn World's Diamond Egg!", + "fromWorldNumber": 4, + "fromZoneNumber": 263, + "goldenThumbnail": "rbxassetid://138149942266123", + "gymPower": 325000, + "name": "Gym Dragon", + "thumbnail": "rbxassetid://74516876725093", + }, + "configName": "Gym Dragon", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "c03b6e59d70a88e7", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1621255858341595, + 1722584349487945, + 1823912840634295, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 263, + "goldenThumbnail": "rbxassetid://90291336864398", + "gymPower": 90000, + "name": "Gym Corgi", + "thumbnail": "rbxassetid://134435000500135", + }, + "configName": "Gym Corgi", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.848Z", + "hashShort": "20384a20d164017b", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1531186088433729, + 1655032022057049, + 1722584349487945, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 263, + "goldenThumbnail": "rbxassetid://121386458623667", + "gymPower": 26000, + "name": "Gym Piggy", + "thumbnail": "rbxassetid://124438921009534", + }, + "configName": "Gym Piggy", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.849Z", + "hashShort": "b72b3229758c50d7", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://82996328251304", + "name": "Super Coral Whale", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://87561045256160", + }, + "configName": "Super Coral Whale", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "a81e327c4f4e48b1", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1216942668977397, + 1313017090212451, + 1369060502599571, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 263, + "goldenThumbnail": "rbxassetid://127307696580759", + "gymPower": 150, + "name": "Gym Panda", + "thumbnail": "rbxassetid://132197616099021", + }, + "configName": "Gym Panda", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.854Z", + "hashShort": "8a8d2fef4ff2b10c", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "gargantuan": true, + "goldenThumbnail": "rbxassetid://113705996399329", + "indexDesc": "Found in the Exclusive Super Coral Egg! + +Ground Slam - Pet will damage breakables in a large area!", "indexObtainable": true, - "name": "Huge Maple Owl", + "name": "Gargantuan Super Coral Kraken", "rarity": { "Announce": true, "Color": null, @@ -140078,22 +145389,27 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://79022104643180", + "thumbnail": "rbxassetid://71123467327540", }, - "configName": "Huge Maple Owl", - "dateCreated": "2025-11-22T17:14:50.787Z", - "dateModified": "2025-11-22T17:14:50.787Z", - "hashShort": "9fda32f6745eb32e", + "configName": "Gargantuan Super Coral Kraken", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "6ded0befce1f4774", }, { - "category": "Huge", + "category": "Gargantuan", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://95098312170086", - "huge": true, - "indexDesc": "Found in the Spider Forever Pack!", + "fly": true, + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "gargantuan": true, + "goldenThumbnail": "rbxassetid://75800581972625", + "indexDesc": "Earned from the Exclusive Raffle! + +Ground Slam - Pet will damage breakables in a large area!", "indexObtainable": true, - "name": "Huge Zombie Pig", + "name": "Gargantuan Forest Wyvern", "rarity": { "Announce": true, "Color": null, @@ -140106,22 +145422,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://112915612904336", + "thumbnail": "rbxassetid://120552464852825", }, - "configName": "Huge Zombie Pig", - "dateCreated": "2025-11-22T17:14:50.831Z", - "dateModified": "2025-11-22T17:14:50.831Z", - "hashShort": "b1c8520f3630907b", + "configName": "Gargantuan Forest Wyvern", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "9e9e526849bb31c0", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://113935272235755", + "fly": true, + "goldenThumbnail": "rbxassetid://78523422473052", "huge": true, - "indexDesc": "Found in the Autumn Forever Pack!", + "indexDesc": "Comes with BIG Games Merchandise!", "indexObtainable": true, - "name": "Huge Leafy Deer", + "name": "Huge Demon", "rarity": { "Announce": true, "Color": null, @@ -140134,21 +145451,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://74179288771824", + "thumbnail": "rbxassetid://92733626673208", }, - "configName": "Huge Leafy Deer", - "dateCreated": "2025-11-22T17:14:50.831Z", - "dateModified": "2025-11-22T17:14:50.831Z", - "hashShort": "4ffd244a7bf1e335", + "configName": "Huge Demon", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "8831e33df1210572", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://72507372362292", - "indexDesc": "Crafted in the 2025 Halloween Event!", + "goldenThumbnail": "rbxassetid://103038544571340", + "huge": true, + "indexDesc": "Comes with BIG Games Merchandise!", "indexObtainable": true, - "name": "Titanic Pumpkin Dog", + "name": "Huge Holographic Corgi", "rarity": { "Announce": true, "Color": null, @@ -140161,22 +145479,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://92147535439252", - "titanic": true, + "thumbnail": "rbxassetid://117552656030475", }, - "configName": "Titanic Pumpkin Dog", - "dateCreated": "2025-11-22T17:15:11.736Z", - "dateModified": "2025-11-22T17:15:11.736Z", - "hashShort": "19587bbcd374f532", + "configName": "Huge Holographic Corgi", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "30e06989cff8215e", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://76378167409241", - "indexDesc": "ADMIN ABUSE!!!", + "goldenThumbnail": "rbxassetid://78910265485614", + "huge": true, + "indexDesc": "Comes with BIG Games Merchandise!", "indexObtainable": true, - "name": "Titanic Pink Lucky Block", + "name": "Huge Runic Wolf", "rarity": { "Announce": true, "Color": null, @@ -140189,22 +145507,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://106313575575295", - "titanic": true, + "thumbnail": "rbxassetid://90992015930571", }, - "configName": "Titanic Pink Lucky Block", - "dateCreated": "2025-11-22T17:15:11.746Z", - "dateModified": "2025-11-22T17:15:11.746Z", - "hashShort": "86fffc7b22012db5", + "configName": "Huge Runic Wolf", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "87ae4b42c8db2dc1", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://72213123444471", - "indexDesc": "Crafted in the 2025 Halloween Event!", + "goldenThumbnail": "rbxassetid://93637291980034", + "huge": true, + "indexDesc": "Found in the Exclusive Super Coral Egg!", "indexObtainable": true, - "name": "Titanic Witch Wolf", + "name": "Huge Super Coral Axolotl", "rarity": { "Announce": true, "Color": null, @@ -140217,22 +145535,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://74523750699706", - "titanic": true, + "thumbnail": "rbxassetid://123726574453022", }, - "configName": "Titanic Witch Wolf", - "dateCreated": "2025-11-22T17:15:11.747Z", - "dateModified": "2025-11-22T17:15:11.747Z", - "hashShort": "c4b9f39c0dc211ae", + "configName": "Huge Super Coral Axolotl", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "e7921e21bfdf5081", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://126378481677950", - "indexDesc": "Found in the Autumn Forever Pack!", + "goldenThumbnail": "rbxassetid://81491047641575", + "huge": true, + "indexDesc": "Found in the Exclusive Super Coral Egg!", "indexObtainable": true, - "name": "Titanic Dark Fox", + "name": "Huge Super Coral Hydra", "rarity": { "Announce": true, "Color": null, @@ -140245,22 +145563,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://110119044336998", - "titanic": true, + "thumbnail": "rbxassetid://70870472183962", }, - "configName": "Titanic Dark Fox", - "dateCreated": "2025-11-22T17:15:11.748Z", - "dateModified": "2025-11-22T17:15:11.748Z", - "hashShort": "8ac1e67378f48936", + "configName": "Huge Super Coral Hydra", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "ffa13ef65fac3512", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://125915859659804", - "indexDesc": "Found in the Autumn World's Diamond Egg!", + "goldenThumbnail": "rbxassetid://123239116359351", + "huge": true, + "indexDesc": "Reward in the 2025 Scuba Dog Clan Battle!", "indexObtainable": true, - "name": "Titanic Chesnut Chipmunk", + "name": "Huge Scuba Dog", "rarity": { "Announce": true, "Color": null, @@ -140273,23 +145591,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://106520142192819", - "titanic": true, + "thumbnail": "rbxassetid://139017924153372", }, - "configName": "Titanic Chesnut Chipmunk", - "dateCreated": "2025-11-22T17:15:11.764Z", - "dateModified": "2025-11-22T17:15:11.764Z", - "hashShort": "b5a16b19d37bba28", + "configName": "Huge Scuba Dog", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "587748b7f6b29f02", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://130413320148130", - "indexDesc": "Found in the Exclusive Harvest Egg!", + "goldenThumbnail": "rbxassetid://113018325609387", + "huge": true, + "indexDesc": "Found in the Gym World's leaderboard contest!", "indexObtainable": true, - "name": "Titanic Spirit Mushroom", + "name": "Huge Gym Anteater", "rarity": { "Announce": true, "Color": null, @@ -140302,22 +145619,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://86911408081625", - "titanic": true, + "thumbnail": "rbxassetid://113847537674540", }, - "configName": "Titanic Spirit Mushroom", - "dateCreated": "2025-11-22T17:15:11.765Z", - "dateModified": "2025-11-22T17:15:11.765Z", - "hashShort": "3049e63e56e6f503", + "configName": "Huge Gym Anteater", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "0b9c7cce1daa3ec0", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://98590916686945", - "indexDesc": "Crafted in the 2025 Halloween Event!", + "goldenThumbnail": "rbxassetid://101452549247299", + "huge": true, + "indexDesc": "Found in the Gym Egg!", "indexObtainable": true, - "name": "Titanic Devil Tasmanian", + "name": "Huge Gym Corgi", "rarity": { "Announce": true, "Color": null, @@ -140330,23 +145647,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://90163785900987", - "titanic": true, + "thumbnail": "rbxassetid://100837906576069", }, - "configName": "Titanic Devil Tasmanian", - "dateCreated": "2025-11-22T17:15:11.728Z", - "dateModified": "2025-11-22T17:15:11.728Z", - "hashShort": "04be52eb46eceefe", + "configName": "Huge Gym Corgi", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "8506d335879cf63e", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://133578370770842", + "goldenThumbnail": "rbxassetid://113996590585228", "huge": true, - "indexDesc": "Reward in the 2025 Forged Clan Battle!", + "indexDesc": "Found in the Gym World's final egg!", "indexObtainable": true, - "name": "Huge Forged Cyclops", + "name": "Huge Gym Panda", "rarity": { "Announce": true, "Color": null, @@ -140359,23 +145675,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://108970973027495", + "thumbnail": "rbxassetid://139794409376900", }, - "configName": "Huge Forged Cyclops", - "dateCreated": "2025-12-07T23:02:06.788Z", - "dateModified": "2025-12-07T23:02:06.788Z", - "hashShort": "9a29b6f143fee53f", + "configName": "Huge Gym Panda", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "ec59037c16476349", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://133995403273961", + "goldenThumbnail": "rbxassetid://131616918905715", "huge": true, - "indexDesc": "Reward in the 2025 Forged Clan Battle!", + "indexDesc": "Found in the Muscle Forever Pack!", "indexObtainable": true, - "name": "Huge Forged Robot", + "name": "Huge Boxing Elephant", "rarity": { "Announce": true, "Color": null, @@ -140388,22 +145703,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://136825338355926", + "thumbnail": "rbxassetid://110943916892100", }, - "configName": "Huge Forged Robot", - "dateCreated": "2025-12-07T23:02:06.835Z", - "dateModified": "2025-12-07T23:02:06.835Z", - "hashShort": "7747f5bfb6eba751", + "configName": "Huge Boxing Elephant", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "df2faf72fca625ec", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://86944132678039", + "goldenThumbnail": "rbxassetid://116157203279546", "huge": true, - "indexDesc": "Found in the Autumn World's Diamond Egg!", + "indexDesc": "Found by earning points in the Muscle Race!", "indexObtainable": true, - "name": "Huge Strawhat Tanuki", + "name": "Huge Gym Shark", "rarity": { "Announce": true, "Color": null, @@ -140416,21 +145731,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://71139826265802", + "thumbnail": "rbxassetid://96513161978756", }, - "configName": "Huge Strawhat Tanuki", - "dateCreated": "2025-12-07T23:02:06.840Z", - "dateModified": "2025-12-07T23:02:06.840Z", - "hashShort": "4c0d7215f64c813c", + "configName": "Huge Gym Shark", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "0b2aa1bf6fea74fd", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://123393485577044", - "indexDesc": "Found in the Autumn World's Diamond Egg!", + "goldenThumbnail": "rbxassetid://87191346178159", + "indexDesc": "Found in the Exclusive Super Coral Egg!", "indexObtainable": true, - "name": "Titanic Persimmony Cricket", + "name": "Titanic Super Coral Stingray", "rarity": { "Announce": true, "Color": null, @@ -140443,66 +145758,83 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://107901135144472", + "thumbnail": "rbxassetid://78134385272600", "titanic": true, }, - "configName": "Titanic Persimmony Cricket", - "dateCreated": "2025-12-07T23:02:07.809Z", - "dateModified": "2025-12-07T23:02:07.809Z", - "hashShort": "275053e50d29b4e9", + "configName": "Titanic Super Coral Stingray", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "32e05ec2427a951a", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 5147744053424135, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 275, - "goldenThumbnail": "rbxassetid://110790431542720", - "name": "Merry Mule", - "thumbnail": "rbxassetid://122221060963604", + "goldenThumbnail": "rbxassetid://108453275500302", + "indexDesc": "Found by earning points in the Muscle Race!", + "indexObtainable": true, + "name": "Titanic Gym Piggy", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://83418426138856", + "titanic": true, }, - "configName": "Merry Mule", - "dateCreated": "2025-12-20T17:55:01.226Z", - "dateModified": "2025-12-20T17:55:01.226Z", - "hashShort": "576d1e1a26be796e", + "configName": "Titanic Gym Piggy", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "e8e24c38106e7493", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 4419780247889403, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 275, - "goldenThumbnail": "rbxassetid://114303369864863", - "name": "Hot Cocoa Cow", - "thumbnail": "rbxassetid://98202905068472", + "fly": true, + "goldenThumbnail": "rbxassetid://119437333352376", + "indexDesc": "Found in the Gym Egg!", + "indexObtainable": true, + "name": "Titanic Gym Dragon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://91679016973225", + "titanic": true, }, - "configName": "Hot Cocoa Cow", - "dateCreated": "2025-12-20T17:55:01.222Z", - "dateModified": "2025-12-20T17:55:01.222Z", - "hashShort": "a7d04bc7da3cdbc4", + "configName": "Titanic Gym Dragon", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "cab7a376fe2e0017", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { "animations": { - "flyHeight": 0.025, - "flyHeightChange": 0, - "newChristmasLights": true, - "swerve": true, - "swerveAggression": 0, - "swerveMaxAngle": 60, + "spinZ": true, }, - "exclusiveLevel": 3, "fly": true, - "goldenThumbnail": "", - "name": "Sleigh Axolotl", + "goldenThumbnail": "rbxassetid://96430258543918", + "indexDesc": "Reward in 2025 July (and more!) Clan Battles!", + "indexObtainable": true, + "name": "Titanic Sun Angelus", "rarity": { "Announce": true, "Color": null, @@ -140515,352 +145847,585 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://72830984503031", + "thumbnail": "rbxassetid://128663320518794", + "titanic": true, }, - "configName": "Sleigh Axolotl", - "dateCreated": "2025-12-20T17:55:01.225Z", - "dateModified": "2025-12-20T17:55:01.225Z", - "hashShort": "1e46b4e57aefbc51", + "configName": "Titanic Sun Angelus", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "8953fba3c174876c", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 6070901278913888, - ], - "fly": true, - "fromWorldNumber": 4, - "fromZoneNumber": 275, - "goldenThumbnail": "rbxassetid://101542516893847", - "name": "Snowflake Dragon", - "thumbnail": "rbxassetid://94445512414151", + "goldenThumbnail": "rbxassetid://76733027839169", + "indexDesc": "Found in the Exclusive Raffle Titanic!", + "indexObtainable": true, + "name": "Titanic Ghost Axolotl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://81649535142902", + "titanic": true, }, - "configName": "Snowflake Dragon", - "dateCreated": "2025-12-20T17:55:01.228Z", - "dateModified": "2025-12-20T17:55:01.228Z", - "hashShort": "409c179056356922", + "configName": "Titanic Ghost Axolotl", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "a2a65c0126345f74", }, { - "category": "Uncategorized", + "category": "Titanic", "collection": "Pets", "configData": { - "cachedPower": [ - 4679767321294662, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 275, - "goldenThumbnail": "rbxassetid://83607996162332", - "name": "Holly Capybara", - "thumbnail": "rbxassetid://82042197331507", + "goldenThumbnail": "rbxassetid://122790144357783", + "indexDesc": "Found in the Gym World's leaderboard contest!", + "indexObtainable": true, + "name": "Titanic Gym Shark", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://116575608018506", + "titanic": true, }, - "configName": "Holly Capybara", - "dateCreated": "2025-12-20T17:55:01.230Z", - "dateModified": "2025-12-20T17:55:01.230Z", - "hashShort": "d7ac3b62a0b9bc49", + "configName": "Titanic Gym Shark", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "d2bbfc8e47002a86", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 4159793174484144, + 3349319856091701, + 3617311434787739, + 3767984838103163, ], + "fromEgg": "Glimmer Grottos Egg", "fromWorldNumber": 4, - "fromZoneNumber": 275, - "goldenThumbnail": "rbxassetid://123271119994122", - "name": "Pajamas Shark", - "thumbnail": "rbxassetid://105615626984785", + "fromZoneNumber": 266, + "goldenThumbnail": "rbxassetid://135804643877845", + "maxChance": 0.8991008991008992, + "name": "Sentry Drake", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://135911584087282", }, - "configName": "Pajamas Shark", - "dateCreated": "2025-12-20T17:55:01.232Z", - "dateModified": "2025-12-20T17:55:01.232Z", - "hashShort": "bf50698278d6ca0c", + "configName": "Sentry Drake", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:28.160Z", + "hashShort": "c05fb416b3a0ad74", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 6441078186164735, + 1280992283134100, + 1361054300829981, + 1441116318525863, ], "fromWorldNumber": 4, - "fromZoneNumber": 275, - "goldenThumbnail": "rbxassetid://85020350721710", - "name": "Hippomint", - "thumbnail": "rbxassetid://122611499107000", + "fromZoneNumber": 263, + "goldenThumbnail": "rbxassetid://71672812215477", + "gymPower": 470, + "name": "Coach Hippo", + "thumbnail": "rbxassetid://129940258877476", }, - "configName": "Hippomint", - "dateCreated": "2025-12-20T17:55:01.235Z", - "dateModified": "2025-12-20T17:55:01.235Z", - "hashShort": "8e820cf1f9819dea", + "configName": "Coach Hippo", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.837Z", + "hashShort": "18192ee5a0375156", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 7496082371829658, + 1576220973387662, + 1688808185772491, + 1773248595061120, ], "fromWorldNumber": 4, - "fromZoneNumber": 275, - "goldenThumbnail": "rbxassetid://89795934768103", - "name": "Elf Golem", - "thumbnail": "rbxassetid://88802798169372", + "fromZoneNumber": 263, + "goldenThumbnail": "rbxassetid://122007616243785", + "gymPower": 35000, + "name": "Gym Beaver", + "thumbnail": "rbxassetid://86817400984960", }, - "configName": "Elf Golem", - "dateCreated": "2025-12-20T17:55:01.240Z", - "dateModified": "2025-12-20T17:55:01.240Z", - "hashShort": "f7353d806c5b0326", + "configName": "Gym Beaver", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.846Z", + "hashShort": "7934c7e084313796", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - }, "cachedPower": [ - 7162923155303915, + 2051901945713582, ], - "fly": true, "fromWorldNumber": 4, - "fromZoneNumber": 275, - "goldenThumbnail": "rbxassetid://110335079976301", - "name": "Gingerbread Angelus", - "thumbnail": "rbxassetid://106821295967312", + "fromZoneNumber": 263, + "goldenThumbnail": "rbxassetid://129580176948485", + "gymPower": 1000000, + "name": "Buff Tiger", + "thumbnail": "rbxassetid://72335289713786", }, - "configName": "Gingerbread Angelus", - "dateCreated": "2025-12-20T17:55:01.243Z", - "dateModified": "2025-12-20T17:55:01.243Z", - "hashShort": "f54eb2f0a958738a", + "configName": "Buff Tiger", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-19T17:28:35.757Z", + "hashShort": "26829d303ead25a9", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "newChristmasLights": true, - "newChristmasLightsMaxCount": 3, - }, "cachedPower": [ - 5659593604190747, + 5692025783572877, + 6119903873933895, + 6403529006519487, ], + "fromEgg": "Archivists Tower Egg", "fromWorldNumber": 4, - "fromZoneNumber": 275, - "goldenThumbnail": "rbxassetid://140004284716967", - "name": "Evergreen Unicorn", - "thumbnail": "rbxassetid://121505020973211", + "fromZoneNumber": 269, + "goldenThumbnail": "rbxassetid://88819869101530", + "maxChance": 0.000009989907096960871, + "name": "Wise Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "thumbnail": "rbxassetid://77880969522182", }, - "configName": "Evergreen Unicorn", - "dateCreated": "2025-12-20T17:55:01.242Z", - "dateModified": "2025-12-20T17:55:01.242Z", - "hashShort": "b13e4160254074cb", + "configName": "Wise Cat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.854Z", + "hashShort": "0797d3857feba4fa", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "newChristmasLights": true, - }, "cachedPower": [ - 4913755687359382, + 2816606238526647, + 3025440835160367, + 3168682018342478, ], + "fromEgg": "Crystalfall Hollow Egg", "fromWorldNumber": 4, - "fromZoneNumber": 275, - "goldenThumbnail": "rbxassetid://140120193907115", - "name": "Lit Loris", - "thumbnail": "rbxassetid://132018736947960", + "fromZoneNumber": 265, + "goldenThumbnail": "rbxassetid://134823104989203", + "maxChance": 0.9, + "name": "Scribe Squirrel", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://88575611828438", }, - "configName": "Lit Loris", - "dateCreated": "2025-12-20T17:55:01.243Z", - "dateModified": "2025-12-20T17:55:01.243Z", - "hashShort": "e9df629caae90369", + "configName": "Scribe Squirrel", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.852Z", + "hashShort": "f8779bf99b0e9e68", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 5396356692367900, + 2977173205414845, + 3215387942033546, + 3349319856091701, ], + "fromEgg": "Crystalfall Hollow Egg", "fromWorldNumber": 4, - "fromZoneNumber": 275, - "goldenThumbnail": "rbxassetid://94355882980732", - "name": "Krampus", - "thumbnail": "rbxassetid://112506366069957", - }, - "configName": "Krampus", - "dateCreated": "2025-12-20T17:55:01.249Z", - "dateModified": "2025-12-20T17:55:01.249Z", - "hashShort": "e2f325ace839afdd", - }, - { + "fromZoneNumber": 265, + "goldenThumbnail": "rbxassetid://85313871809976", + "maxChance": 0.8991008991008992, + "name": "Crystal Jackalope", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://90583905050316", + }, + "configName": "Crystal Jackalope", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.853Z", + "hashShort": "83209157874060fa", + }, + { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 6663184330515252, + 3768090937664986, + 4069687563259853, + 4239102304873110, ], "fly": true, + "fromEgg": "Mirror Tome Path Egg", "fromWorldNumber": 4, - "fromZoneNumber": 275, - "goldenThumbnail": "rbxassetid://115814039481523", - "name": "Holiday Owl", - "thumbnail": "rbxassetid://112489051233386", + "fromZoneNumber": 267, + "goldenThumbnail": "rbxassetid://73013785513275", + "maxChance": 0.08991008991008992, + "name": "Tome Owl", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://120386645221149", }, - "configName": "Holiday Owl", - "dateCreated": "2025-12-20T17:55:01.244Z", - "dateModified": "2025-12-20T17:55:01.244Z", - "hashShort": "8beb86550930dd66", + "configName": "Tome Owl", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.851Z", + "hashShort": "935195dfb1436bb7", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "newChristmasLights": true, - "newChristmasLightsMaxCount": 2, - }, "cachedPower": [ - 5857021288057836, + 6058632564649102, ], + "fly": true, + "fromEgg": "Archivists Tower Egg", "fromWorldNumber": 4, - "fromZoneNumber": 275, - "goldenThumbnail": "rbxassetid://120072935329701", - "name": "Deerserker", - "thumbnail": "rbxassetid://122833058868009", + "fromZoneNumber": 269, + "goldenThumbnail": "rbxassetid://136359690439003", + "maxChance": 2.497476774240218e-7, + "name": "Quartz Fox", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + "thumbnail": "rbxassetid://76401093181479", }, - "configName": "Deerserker", - "dateCreated": "2025-12-20T17:55:01.246Z", - "dateModified": "2025-12-20T17:55:01.246Z", - "hashShort": "ba672423694e26bc", + "configName": "Quartz Fox", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-19T17:28:35.720Z", + "hashShort": "90abd85e268a52c0", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "", - "name": "Snowflake Lattice Tiger", + "cachedPower": [ + 2616076339239067, + 2797522928437116, + 2943085881643950, + ], + "fromEgg": "Crystalfall Hollow Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 265, + "goldenThumbnail": "rbxassetid://72264061876113", + "maxChance": 0.9, + "name": "Archivist Ferret", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Basic", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 1, + "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://129205407698376", + "thumbnail": "rbxassetid://88353637072555", }, - "configName": "Snowflake Lattice Tiger", - "dateCreated": "2025-12-20T17:55:01.249Z", - "dateModified": "2025-12-20T17:55:01.249Z", - "hashShort": "a890ac7709ec8ac2", + "configName": "Archivist Ferret", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.861Z", + "hashShort": "89f8a3c507c5e22a", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "ballBounceHeight": 2, + }, "cachedPower": [ - 3697593932874795, + 1238292540362962, + 1329029493751631, + 1393079107908332, ], "fromWorldNumber": 4, - "fromZoneNumber": 275, - "goldenThumbnail": "rbxassetid://122906621669981", - "name": "Festive Bunny", - "thumbnail": "rbxassetid://92219957566768", + "fromZoneNumber": 263, + "goldenThumbnail": "rbxassetid://122063989496264", + "gymPower": 155, + "name": "Tennis Squirrel", + "thumbnail": "rbxassetid://123282088983028", }, - "configName": "Festive Bunny", - "dateCreated": "2025-12-20T17:55:01.245Z", - "dateModified": "2025-12-20T17:55:01.245Z", - "hashShort": "ec8f97ebc2f53180", + "configName": "Tennis Squirrel", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:46.855Z", + "hashShort": "6af178d8765e1c56", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 6913053742909583, + 1722584349487945, + 1861911024814180, + 1937907393173938, ], "fromWorldNumber": 4, - "fromZoneNumber": 275, - "goldenThumbnail": "rbxassetid://75131329618029", - "name": "Candycane Kitsune", - "thumbnail": "rbxassetid://79961132196773", + "fromZoneNumber": 263, + "goldenThumbnail": "rbxassetid://105118452964176", + "gymPower": 110000, + "name": "Gym Cat", + "thumbnail": "rbxassetid://120405155624686", }, - "configName": "Candycane Kitsune", - "dateCreated": "2025-12-20T17:55:01.247Z", - "dateModified": "2025-12-20T17:55:01.247Z", - "hashShort": "40f353b9941d9e9a", + "configName": "Gym Cat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:48.612Z", + "hashShort": "cede0a829614cd79", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1937907393173938, + 2094649902915953, + 2180145817320680, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 263, + "goldenThumbnail": "rbxassetid://82170510319724", + "gymPower": 380000, + "name": "Gym Unicorn", + "thumbnail": "rbxassetid://138011318423105", + }, + "configName": "Gym Unicorn", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:48.620Z", + "hashShort": "c3e82e1089d3a7a2", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1361054300829981, + 1471139575161821, + 1531186088433729, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 263, + "goldenThumbnail": "rbxassetid://95952045760067", + "gymPower": 1385, + "name": "Gym Axolotl", + "thumbnail": "rbxassetid://99344559505838", + }, + "configName": "Gym Axolotl", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:48.619Z", + "hashShort": "99a01caf125ac5e1", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1401085309677922, + 1501162831797770, + 1576220973387662, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 263, + "goldenThumbnail": "rbxassetid://91865393457953", + "gymPower": 5650, + "name": "Gym Cow", + "thumbnail": "rbxassetid://137331952998011", + }, + "configName": "Gym Cow", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:48.607Z", + "hashShort": "231bec9856d72230", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "animations": { - "vertexColorAnim": [ - { - "Time": 0, - "Value": null, - }, - { - "Time": 0.3, - "Value": null, - }, - { - "Time": 0.5, - "Value": null, - }, - { - "Time": 0.7, - "Value": null, - }, - { - "Time": 1, - "Value": null, - }, - ], - "vertexColorAnimSpeed": 0.3, + "ballBounceHeight": 2, }, - "exclusiveLevel": 1, - "goldenThumbnail": "", - "name": "Ice Cube Penguin", + "cachedPower": [ + 1195592797591823, + 1297004686673271, + 1345041897290801, + ], + "fly": true, + "fromWorldNumber": 4, + "fromZoneNumber": 263, + "goldenThumbnail": "rbxassetid://97584212495769", + "gymPower": 65, + "name": "Golf Griffin", + "thumbnail": "rbxassetid://134009055645578", + }, + "configName": "Golf Griffin", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:48.620Z", + "hashShort": "b304834bb7fa5889", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 4519244841864319, + 4851860919302810, + 5084150447097359, + ], + "fly": true, + "fromEgg": "Scribes Terrace Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 268, + "goldenThumbnail": "rbxassetid://84094738208282", + "maxChance": 0.09090815458234391, + "name": "Grimoire Agony", "rarity": { - "Announce": true, + "Announce": false, "Color": null, - "DisplayName": "Exclusive", + "DisplayName": "Rare", "Gradient": null, "ItemSlot": null, "Lootbag": null, "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", + "RarityNumber": 2, + "_id": "Rare", "_script": null, }, - "thumbnail": "rbxassetid://129445222369569", + "thumbnail": "rbxassetid://111852235269668", }, - "configName": "Ice Cube Penguin", - "dateCreated": "2025-12-20T17:55:01.254Z", - "dateModified": "2025-12-20T17:55:01.254Z", - "hashShort": "215342833a6b6903", + "configName": "Grimoire Agony", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:48.616Z", + "hashShort": "32a9781527c3b8a2", }, { - "category": "Gargantuan", + "category": "Uncategorized", "collection": "Pets", "configData": { - "gargantuan": true, - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Ice Cube Egg! - -Ground Slam - Pet will damage breakables in a large area!", + "cachedPower": [ + 4017106526101617, + 4312765261602498, + 4519244841864319, + ], + "fromEgg": "Mirror Tome Path Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 267, + "goldenThumbnail": "rbxassetid://115299914522919", + "maxChance": 0.9090815458234391, + "name": "Inkwell Wisp", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://98522101527568", + }, + "configName": "Inkwell Wisp", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2026-06-27T16:05:48.611Z", + "hashShort": "1359ca2ffff314f7", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "animations": { + "flyHeight": 0.3, + "flyHeightChange": 0.25, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://119580349897134", + "huge": true, + "indexDesc": "Comes with the exclusive Pet Rugs merch!", "indexObtainable": true, - "name": "Gargantuan Cookie Cut Cat", + "name": "Huge Hoverboard Dog", "rarity": { "Announce": true, "Color": null, @@ -140873,25 +146438,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://124818572217039", + "thumbnail": "rbxassetid://117980545661053", }, - "configName": "Gargantuan Cookie Cut Cat", - "dateCreated": "2025-12-20T17:55:01.258Z", - "dateModified": "2025-12-20T17:55:01.258Z", - "hashShort": "de7e396f9a7e18df", + "configName": "Huge Hoverboard Dog", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "9685175cd522fd8c", }, { - "category": "Gargantuan", + "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "gargantuan": true, - "goldenThumbnail": "rbxassetid://87282916116246", - "indexDesc": "ADMIN ABUSE!!! - -Ground Slam - Pet will damage breakables in a large area!", + "goldenThumbnail": "rbxassetid://112709727690161", + "huge": true, + "indexDesc": "Found in the Buff Gym Egg!", "indexObtainable": true, - "name": "Gargantuan Blurred Agony", + "name": "Huge Gym Cow", "rarity": { "Announce": true, "Color": null, @@ -140904,22 +146466,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://72042454012987", + "thumbnail": "rbxassetid://110341807315948", }, - "configName": "Gargantuan Blurred Agony", - "dateCreated": "2025-12-20T17:55:01.263Z", - "dateModified": "2025-12-20T17:55:01.263Z", - "hashShort": "d576512e50127df7", + "configName": "Huge Gym Cow", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "a91e7d599d402eab", }, { - "category": "Gargantuan", + "category": "Huge", "collection": "Pets", "configData": { - "gargantuan": true, - "goldenThumbnail": "rbxassetid://91310761162733", - "indexDesc": "Found in the 2025 Gargantuan Present!", + "goldenThumbnail": "rbxassetid://130300354898662", + "huge": true, + "indexDesc": "Found in the Bench a Gargantuan minigame in Gym World!", "indexObtainable": true, - "name": "Gargantuan Elf Golem", + "name": "Huge Gym Scorpion", "rarity": { "Announce": true, "Color": null, @@ -140932,24 +146494,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://83433844494349", + "thumbnail": "rbxassetid://82303153411870", }, - "configName": "Gargantuan Elf Golem", - "dateCreated": "2025-12-20T17:55:01.279Z", - "dateModified": "2025-12-20T17:55:01.279Z", - "hashShort": "9a5c6c3a621e727e", + "configName": "Huge Gym Scorpion", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "053a00453992de6d", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "christmasLights": true, - }, - "goldenThumbnail": "rbxassetid://83453573625211", - "indexDesc": "Found in The Forever Pack!", + "goldenThumbnail": "rbxassetid://106181154839005", + "huge": true, + "indexDesc": "Found in the Gym World's final egg!", "indexObtainable": true, - "name": "Titanic Reindeer Cat", + "name": "Huge Coach Hippo", "rarity": { "Announce": true, "Color": null, @@ -140962,22 +146522,29 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://119319411340325", - "titanic": true, + "thumbnail": "rbxassetid://99854649833028", }, - "configName": "Titanic Reindeer Cat", - "dateCreated": "2025-12-20T17:55:02.825Z", - "dateModified": "2025-12-20T17:55:02.825Z", - "hashShort": "37d03d7b3bce4b39", + "configName": "Huge Coach Hippo", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "593284905e0e0960", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://79890056962254", - "indexDesc": "Earned from 2025 Christmas Raffles!", + "cachedPower": [ + 6171095310605698, + ], + "fromEgg": "Archivists Tower Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 269, + "goldenThumbnail": "rbxassetid://117631010986768", + "huge": true, + "indexDesc": "Found in the final zone of Fantasy World!", "indexObtainable": true, - "name": "Titanic Hippomint", + "maxChance": 5.993944258176522e-8, + "name": "Huge Scribe Squirrel", "rarity": { "Announce": true, "Color": null, @@ -140990,22 +146557,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://118720066911760", - "titanic": true, + "thumbnail": "rbxassetid://98604773500066", }, - "configName": "Titanic Hippomint", - "dateCreated": "2025-12-20T17:55:02.824Z", - "dateModified": "2025-12-20T17:55:02.824Z", - "hashShort": "f93604288e5447f8", + "configName": "Huge Scribe Squirrel", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-19T17:28:40.164Z", + "hashShort": "25b2704cfa8a7822", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Ice Cube Egg!", + "goldenThumbnail": "rbxassetid://123144287418594", + "huge": true, + "indexDesc": "Found in the Gym World's leaderboard contest!", "indexObtainable": true, - "name": "Titanic Snow Globe Snowman", + "name": "Huge Gym Beaver", "rarity": { "Announce": true, "Color": null, @@ -141018,24 +146585,25 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "roll": true, - "thumbnail": "rbxassetid://78333791441483", - "titanic": true, + "thumbnail": "rbxassetid://139877425237704", }, - "configName": "Titanic Snow Globe Snowman", - "dateCreated": "2025-12-20T17:55:02.826Z", - "dateModified": "2025-12-20T17:55:02.826Z", - "hashShort": "72ba1054a346d4da", + "configName": "Huge Gym Beaver", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "ab6ffef63bd2ca8d", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://131946586533017", - "indexDesc": "Found by lockpicking the 2025 Grinch Cove doors!", + "animations": { + "ballBounceHeight": 2, + }, + "goldenThumbnail": "rbxassetid://122004337324700", + "huge": true, + "indexDesc": "Found by earning points in the Muscle Race!", "indexObtainable": true, - "name": "Titanic Holiday Owl", + "name": "Huge Tennis Squirrel", "rarity": { "Announce": true, "Color": null, @@ -141048,26 +146616,25 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://116557921050130", - "titanic": true, + "thumbnail": "rbxassetid://86863060232027", }, - "configName": "Titanic Holiday Owl", - "dateCreated": "2025-12-20T17:55:02.827Z", - "dateModified": "2025-12-20T17:55:02.827Z", - "hashShort": "d433159464903069", + "configName": "Huge Tennis Squirrel", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "e22c1568ac2e2a11", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { "animations": { - "spinZ": true, + "ballBounceHeight": 2, }, - "fly": true, - "goldenThumbnail": "rbxassetid://105679018203772", - "indexDesc": "Found in the 2025 Gargantuan Present!", + "goldenThumbnail": "rbxassetid://130330133725567", + "huge": true, + "indexDesc": "Found in the Strong Forever Pack!", "indexObtainable": true, - "name": "Titanic Gingerbread Angelus", + "name": "Huge Soccer Terrier", "rarity": { "Announce": true, "Color": null, @@ -141080,22 +146647,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://135459719245097", - "titanic": true, + "thumbnail": "rbxassetid://78064428614816", }, - "configName": "Titanic Gingerbread Angelus", - "dateCreated": "2025-12-20T17:55:02.824Z", - "dateModified": "2025-12-20T17:55:02.824Z", - "hashShort": "2a58080fd735eca7", + "configName": "Huge Soccer Terrier", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "0e89b0f68d0f61e5", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://116515172749638", - "indexDesc": "ADMIN ABUSE!!!", + "goldenThumbnail": "rbxassetid://88745959671661", + "indexDesc": "Found by earning points in the Muscle Race!", "indexObtainable": true, - "name": "Titanic Night Terror Dog", + "name": "Titanic Gym Axolotl", "rarity": { "Announce": true, "Color": null, @@ -141108,22 +146674,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://112505092769187", + "thumbnail": "rbxassetid://105883777354766", "titanic": true, }, - "configName": "Titanic Night Terror Dog", - "dateCreated": "2025-12-20T17:55:02.827Z", - "dateModified": "2025-12-20T17:55:02.827Z", - "hashShort": "002bd1721fd6f901", + "configName": "Titanic Gym Axolotl", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "011f2b918ae8cfa7", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://90391750255707", - "indexDesc": "Found in the 2025 Silver Clan Battle!", + "goldenThumbnail": "rbxassetid://106909971749618", + "indexDesc": "Found in the Gym World's leaderboard contest!", "indexObtainable": true, - "name": "Titanic Silver Stag", + "name": "Titanic Gym Unicorn", "rarity": { "Announce": true, "Color": null, @@ -141136,27 +146702,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://139456404804245", + "thumbnail": "rbxassetid://86624734020676", "titanic": true, }, - "configName": "Titanic Silver Stag", - "dateCreated": "2025-12-20T17:55:02.828Z", - "dateModified": "2025-12-20T17:55:02.828Z", - "hashShort": "77e5275f9ff9f1ca", + "configName": "Titanic Gym Unicorn", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "9ce3f7f7d8dcddc0", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "animations": { - "newChristmasLights": true, - "newChristmasLightsMaxCount": 2, - }, - "goldenThumbnail": "rbxassetid://79879906596709", - "huge": true, - "indexDesc": "Found in the 2025 Gargantuan Present!", + "goldenThumbnail": "rbxassetid://106070694578742", + "indexDesc": "Found in the Buff Gym Egg!", "indexObtainable": true, - "name": "Huge Deerserker", + "name": "Titanic Gym Cat", "rarity": { "Announce": true, "Color": null, @@ -141169,23 +146730,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://74968067485946", + "thumbnail": "rbxassetid://116586359126755", + "titanic": true, }, - "configName": "Huge Deerserker", - "dateCreated": "2025-12-20T17:55:08.604Z", - "dateModified": "2025-12-20T17:55:08.604Z", - "hashShort": "13db981055d44c38", + "configName": "Titanic Gym Cat", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "b0a1c143c2d645b9", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://106735755239087", - "huge": true, - "indexDesc": "Found by lockpicking the 2025 Grinch Cove doors!", + "goldenThumbnail": "rbxassetid://118928670088780", + "indexDesc": "Found in the Bench a Gargantuan minigame in Gym World!", "indexObtainable": true, - "name": "Huge Holiday Owl", + "name": "Titanic Buff Tiger", "rarity": { "Announce": true, "Color": null, @@ -141198,22 +146758,88 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://84549305486932", + "thumbnail": "rbxassetid://71901668649846", + "titanic": true, }, - "configName": "Huge Holiday Owl", - "dateCreated": "2025-12-20T17:55:08.612Z", - "dateModified": "2025-12-20T17:55:08.612Z", - "hashShort": "4d49085d2b639d50", + "configName": "Titanic Buff Tiger", + "dateCreated": "2025-07-05T23:23:54.256Z", + "dateModified": "2025-07-05T23:23:54.256Z", + "hashShort": "6701c656330143b3", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://70627909958216", - "huge": true, - "indexDesc": "Found in Santa's Cottage!", - "indexObtainable": true, - "name": "Huge Candycane Kitsune", + "blockPartyPower": 80, + "cachedPower": [ + 1823912840634295, + 1937907393173938, + 2051901945713582, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 269, + "goldenThumbnail": "rbxassetid://72772713717950", + "name": "Coconut Crab", + "thumbnail": "rbxassetid://77370905786923", + }, + "configName": "Coconut Crab", + "dateCreated": "2025-07-12T16:08:29.473Z", + "dateModified": "2026-06-27T16:05:48.639Z", + "hashShort": "5d41550354deb02e", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "blockPartyPower": 22, + "cachedPower": [ + 1441116318525863, + 1531186088433729, + 1621255858341595, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 269, + "goldenThumbnail": "rbxassetid://111213643471636", + "name": "Chill Sloth", + "thumbnail": "rbxassetid://132264232554881", + }, + "configName": "Chill Sloth", + "dateCreated": "2025-07-12T16:08:29.474Z", + "dateModified": "2026-06-27T16:05:48.609Z", + "hashShort": "3ccc2e10954f3f04", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.3, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.7, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.6, + }, + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://140682051377673", + "name": "Treasure Unicorn", "rarity": { "Announce": true, "Color": null, @@ -141226,26 +146852,183 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://74407552054754", + "thumbnail": "rbxassetid://111756994790534", }, - "configName": "Huge Candycane Kitsune", - "dateCreated": "2025-12-20T17:55:08.621Z", - "dateModified": "2025-12-20T17:55:08.621Z", - "hashShort": "8dd56bfe329ce02c", + "configName": "Treasure Unicorn", + "dateCreated": "2025-07-12T16:08:29.476Z", + "dateModified": "2025-07-12T16:08:29.476Z", + "hashShort": "0ef5825af5146cf0", }, { - "category": "Huge", + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "flyHeight": 0.09, + "flyHeightChange": 0.025, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, + }, + "blockPartyPower": 400, + "cachedPower": [ + 2308389688927779, + 2452664044485765, + 2596938400043752, + ], + "fly": true, + "fromWorldNumber": 4, + "fromZoneNumber": 269, + "goldenThumbnail": "rbxassetid://135339748813830", + "name": "Floatie Penguin", + "thumbnail": "rbxassetid://95232062111456", + }, + "configName": "Floatie Penguin", + "dateCreated": "2025-07-12T16:08:29.477Z", + "dateModified": "2026-06-27T16:05:48.607Z", + "hashShort": "ae8069339e26c314", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "blockPartyPower": 35, + "cachedPower": [ + 1531186088433729, + 1655032022057049, + 1722584349487945, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 269, + "goldenThumbnail": "rbxassetid://72039343238103", + "name": "Chill Polar Bear", + "thumbnail": "rbxassetid://87185898894267", + }, + "configName": "Chill Polar Bear", + "dateCreated": "2025-07-12T16:08:29.480Z", + "dateModified": "2026-06-27T16:05:48.622Z", + "hashShort": "c77a7a649cd548e3", + }, + { + "category": "Uncategorized", "collection": "Pets", "configData": { "animations": { "spinZ": true, }, + "blockPartyPower": 6000, + "cachedPower": [ + 3697593932874795, + 3928693553679469, + 4159793174484144, + ], "fly": true, - "goldenThumbnail": "rbxassetid://126457354721866", - "huge": true, - "indexDesc": "Found in The Forever Pack!", - "indexObtainable": true, - "name": "Huge Gingerbread Angelus", + "fromWorldNumber": 4, + "fromZoneNumber": 269, + "goldenThumbnail": "rbxassetid://79400833153819", + "name": "Splash Angelus", + "thumbnail": "rbxassetid://133534634718842", + }, + "configName": "Splash Angelus", + "dateCreated": "2025-07-12T16:08:29.481Z", + "dateModified": "2026-06-27T16:05:48.635Z", + "hashShort": "7e9433dfa8590de4", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "blockPartyPower": 13, + "cachedPower": [ + 1361054300829981, + 1471139575161821, + 1531186088433729, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 269, + "goldenThumbnail": "rbxassetid://137232337874462", + "name": "Chill Bunny", + "thumbnail": "rbxassetid://120966534344912", + }, + "configName": "Chill Bunny", + "dateCreated": "2025-07-12T16:08:29.483Z", + "dateModified": "2026-06-27T16:05:48.614Z", + "hashShort": "0a36833b5ea82cde", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "blockPartyPower": 1000, + "cachedPower": [ + 2921555700049221, + 3104152931302297, + 3286750162555373, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 269, + "goldenThumbnail": "rbxassetid://94462648048394", + "name": "Lifeguard Shark", + "thumbnail": "rbxassetid://94562681110740", + }, + "configName": "Lifeguard Shark", + "dateCreated": "2025-07-12T16:08:29.487Z", + "dateModified": "2026-06-27T16:05:48.618Z", + "hashShort": "f0943b8b505cb6d4", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "blockPartyPower": 600, + "cachedPower": [ + 2596938400043752, + 2759247050046486, + 2921555700049221, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 269, + "goldenThumbnail": "rbxassetid://101732053613534", + "name": "Sandcastle Kraken", + "thumbnail": "rbxassetid://102486523498502", + }, + "configName": "Sandcastle Kraken", + "dateCreated": "2025-07-12T16:08:29.489Z", + "dateModified": "2026-06-27T16:05:48.619Z", + "hashShort": "0620c69475e7466a", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.3, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.7, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.6, + }, + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://72604014110959", + "name": "Treasure Scorpion", "rarity": { "Announce": true, "Color": null, @@ -141258,22 +147041,101 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://137630213066675", + "thumbnail": "rbxassetid://97014459360682", }, - "configName": "Huge Gingerbread Angelus", - "dateCreated": "2025-12-20T17:55:08.622Z", - "dateModified": "2025-12-20T17:55:08.622Z", - "hashShort": "59f04852e1c92fd7", + "configName": "Treasure Scorpion", + "dateCreated": "2025-07-12T16:08:29.490Z", + "dateModified": "2025-07-12T16:08:29.490Z", + "hashShort": "a2350531a8defff5", }, { - "category": "Huge", + "category": "Uncategorized", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://119911087877217", - "huge": true, - "indexDesc": "Earned from the 2025 Christmas Leaderboard!", + "blockPartyPower": 8, + "cachedPower": [ + 1280992283134100, + 1361054300829981, + 1441116318525863, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 269, + "goldenThumbnail": "rbxassetid://96917001107482", + "name": "Chill Cat", + "thumbnail": "rbxassetid://127032189794099", + }, + "configName": "Chill Cat", + "dateCreated": "2025-07-12T16:08:29.489Z", + "dateModified": "2026-06-27T16:05:48.609Z", + "hashShort": "e1754ffbea9a2375", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "flyHeight": 0.09, + "flyHeightChange": 0.025, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, + }, + "blockPartyPower": 160, + "cachedPower": [ + 2051901945713582, + 2180145817320680, + 2308389688927779, + ], + "fly": true, + "fromWorldNumber": 4, + "fromZoneNumber": 269, + "goldenThumbnail": "rbxassetid://103363616287811", + "name": "Floatie Cat", + "thumbnail": "rbxassetid://99873228307491", + }, + "configName": "Floatie Cat", + "dateCreated": "2025-07-12T16:08:29.494Z", + "dateModified": "2026-06-27T16:05:48.623Z", + "hashShort": "446c77400dadd9ba", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "animations": { + "spinZ": true, + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.3, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.7, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.4, + }, + "fly": true, + "gargantuan": true, + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Treasure Egg! + +Ground Slam - Pet will damage breakables in a large area!", "indexObtainable": true, - "name": "Huge Elf Golem", + "name": "Gargantuan Treasure Angelus", "rarity": { "Announce": true, "Color": null, @@ -141286,26 +147148,88 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://119266692715617", + "thumbnail": "rbxassetid://100287069484548", }, - "configName": "Huge Elf Golem", - "dateCreated": "2025-12-20T17:55:08.625Z", - "dateModified": "2025-12-20T17:55:08.625Z", - "hashShort": "318f289b76d8108f", + "configName": "Gargantuan Treasure Angelus", + "dateCreated": "2025-07-12T16:08:29.497Z", + "dateModified": "2026-04-18T15:56:00.496Z", + "hashShort": "9ba6d026fb80675d", }, { - "category": "Huge", + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "blockPartyPower": 55, + "cachedPower": [ + 1621255858341595, + 1722584349487945, + 1823912840634295, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 269, + "goldenThumbnail": "rbxassetid://92782576236822", + "name": "Coconut Corgi", + "thumbnail": "rbxassetid://136387997555104", + }, + "configName": "Coconut Corgi", + "dateCreated": "2025-07-12T16:08:29.483Z", + "dateModified": "2026-06-27T16:05:48.624Z", + "hashShort": "8c34e2b0d7a74c47", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "blockPartyPower": 2500, + "cachedPower": [ + 3286750162555373, + 3492172047715084, + 3697593932874795, + ], + "fly": true, + "fromWorldNumber": 4, + "fromZoneNumber": 269, + "goldenThumbnail": "rbxassetid://94362543857259", + "name": "Sun Griffin", + "thumbnail": "rbxassetid://134664153603203", + }, + "configName": "Sun Griffin", + "dateCreated": "2025-07-12T16:08:29.484Z", + "dateModified": "2026-06-27T16:05:48.610Z", + "hashShort": "049953cc503fa36a", + }, + { + "category": "Uncategorized", "collection": "Pets", "configData": { "animations": { - "newChristmasLights": true, - "newChristmasLightsMaxCount": 3, + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.3, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.7, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.6, }, - "goldenThumbnail": "rbxassetid://107591936673180", - "huge": true, - "indexDesc": "Found in the 2025 Gargantuan Present!", - "indexObtainable": true, - "name": "Huge Evergreen Unicorn", + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://136273566234955", + "name": "Treasure Golem", "rarity": { "Announce": true, "Color": null, @@ -141318,23 +147242,30 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://102257239631594", + "thumbnail": "rbxassetid://112287712934093", }, - "configName": "Huge Evergreen Unicorn", - "dateCreated": "2025-12-20T17:55:08.626Z", - "dateModified": "2025-12-20T17:55:08.626Z", - "hashShort": "3e555bed444d0399", + "configName": "Treasure Golem", + "dateCreated": "2025-07-12T16:08:29.506Z", + "dateModified": "2025-07-12T16:08:29.506Z", + "hashShort": "70edae0d4005e534", }, { "category": "Huge", "collection": "Pets", "configData": { + "animations": { + "flyHeight": 0.09, + "flyHeightChange": 0.025, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, + }, "fly": true, - "goldenThumbnail": "rbxassetid://94004105235581", + "goldenThumbnail": "rbxassetid://99940439405389", "huge": true, - "indexDesc": "Earned from the Grinch Ice Blocks!", + "indexDesc": "Found in random Summer Block Party tiles!", "indexObtainable": true, - "name": "Huge Snowflake Dragon", + "name": "Huge Floatie Cat", "rarity": { "Announce": true, "Color": null, @@ -141347,22 +147278,28 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://113631496802759", + "thumbnail": "rbxassetid://122328085750214", }, - "configName": "Huge Snowflake Dragon", - "dateCreated": "2025-12-20T17:55:08.627Z", - "dateModified": "2025-12-20T17:55:08.627Z", - "hashShort": "3d92b90d016f3269", + "configName": "Huge Floatie Cat", + "dateCreated": "2025-07-12T16:08:33.265Z", + "dateModified": "2025-07-12T16:08:33.265Z", + "hashShort": "c31d85718bc9c17e", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://109561295762897", + "animations": { + "spinZ": true, + }, + "dlk": "PDL_HSA", + "dls": 1752336000, + "fly": true, + "goldenThumbnail": "rbxassetid://115294786186558", "huge": true, - "indexDesc": "Found in The Forever Pack!", + "indexDesc": "???", "indexObtainable": true, - "name": "Huge Hippomint", + "name": "Huge Splash Angelus", "rarity": { "Announce": true, "Color": null, @@ -141375,22 +147312,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://105962472084546", + "secretExclusive": true, + "thumbnail": "rbxassetid://70796008015802", }, - "configName": "Huge Hippomint", - "dateCreated": "2025-12-20T17:55:08.629Z", - "dateModified": "2025-12-20T17:55:08.629Z", - "hashShort": "cbc9b3e15f87fbf0", + "configName": "Huge Splash Angelus", + "dateCreated": "2025-07-12T16:08:33.266Z", + "dateModified": "2025-07-12T16:08:33.266Z", + "hashShort": "985e44e21fb67259", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://71778021543437", + "goldenThumbnail": "rbxassetid://115922168751576", "huge": true, - "indexDesc": "Found in 2025 Grinch Raid minigame!", + "indexDesc": "Found in random Summer Block Party tiles!", "indexObtainable": true, - "name": "Huge Krampus", + "name": "Huge Chill Bunny", "rarity": { "Announce": true, "Color": null, @@ -141403,22 +147341,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://127076260732138", + "thumbnail": "rbxassetid://87108901678067", }, - "configName": "Huge Krampus", - "dateCreated": "2025-12-20T17:55:08.823Z", - "dateModified": "2025-12-20T17:55:08.823Z", - "hashShort": "fd612197b7a4aa12", + "configName": "Huge Chill Bunny", + "dateCreated": "2025-07-12T16:08:33.267Z", + "dateModified": "2025-07-12T16:08:33.267Z", + "hashShort": "db5c77d8afd48b39", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://87334053811385", + "goldenThumbnail": "rbxassetid://125347697447552", "huge": true, - "indexDesc": "Reward in the 2025 Silver Clan Battle!", + "indexDesc": "Found in the Tropical Gift!", "indexObtainable": true, - "name": "Huge Silver Bison", + "name": "Huge Chill Cat", "rarity": { "Announce": true, "Color": null, @@ -141431,22 +147369,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://84066657205534", + "thumbnail": "rbxassetid://79287315277949", }, - "configName": "Huge Silver Bison", - "dateCreated": "2025-12-20T17:55:08.829Z", - "dateModified": "2025-12-20T17:55:08.829Z", - "hashShort": "536af1ea98b3af40", + "configName": "Huge Chill Cat", + "dateCreated": "2025-07-12T16:08:33.269Z", + "dateModified": "2025-07-12T16:08:33.269Z", + "hashShort": "22939c5f64f93f2f", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://83204409551267", + "fly": true, + "goldenThumbnail": "rbxassetid://77836164525992", "huge": true, - "indexDesc": "Earned from the 2025 Huge Train Gifts!", + "indexDesc": "Reward in the 2025 Sunny Clan Battle!", "indexObtainable": true, - "name": "Huge Holly Capybara", + "name": "Huge Sun Griffin", "rarity": { "Announce": true, "Color": null, @@ -141459,22 +147398,48 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://113623794189618", + "thumbnail": "rbxassetid://122831150159277", }, - "configName": "Huge Holly Capybara", - "dateCreated": "2025-12-20T17:55:09.905Z", - "dateModified": "2025-12-20T17:55:09.905Z", - "hashShort": "c10b5408fa2f6730", + "configName": "Huge Sun Griffin", + "dateCreated": "2025-07-12T16:08:33.272Z", + "dateModified": "2025-07-12T16:08:33.272Z", + "hashShort": "32264094647debce", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://71876126512341", + "animations": { + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.3, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.7, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.6, + }, + "goldenThumbnail": "rbxassetid://116828056100775", + "hidden": false, "huge": true, - "indexDesc": "ADMIN ABUSE!!!", + "indexDesc": "Found in the Exclusive Treasure Egg!", "indexObtainable": true, - "name": "Huge Sacred Deer", + "name": "Huge Treasure Scorpion", "rarity": { "Announce": true, "Color": null, @@ -141487,22 +147452,48 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://100676817290108", + "thumbnail": "rbxassetid://124383446911252", }, - "configName": "Huge Sacred Deer", - "dateCreated": "2025-12-20T17:55:09.906Z", - "dateModified": "2025-12-20T17:55:09.906Z", - "hashShort": "29fd72ef8734784c", + "configName": "Huge Treasure Scorpion", + "dateCreated": "2025-07-12T16:08:33.274Z", + "dateModified": "2025-07-12T16:08:33.274Z", + "hashShort": "66fa649c87c48076", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://122257451279360", + "animations": { + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.3, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.7, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.6, + }, + "goldenThumbnail": "rbxassetid://91107447602689", + "hidden": false, "huge": true, - "indexDesc": "Earned from the 2025 Christmas Event's final egg!", + "indexDesc": "Found in the Exclusive Treasure Egg!", "indexObtainable": true, - "name": "Huge Merry Mule", + "name": "Huge Treasure Golem", "rarity": { "Announce": true, "Color": null, @@ -141515,22 +147506,24 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://123118912547385", + "thumbnail": "rbxassetid://77267608223080", }, - "configName": "Huge Merry Mule", - "dateCreated": "2025-12-20T17:55:09.907Z", - "dateModified": "2025-12-20T17:55:09.907Z", - "hashShort": "b7f11c37a0e423ff", + "configName": "Huge Treasure Golem", + "dateCreated": "2025-07-12T16:08:33.273Z", + "dateModified": "2025-07-12T16:08:33.273Z", + "hashShort": "fedf5d4a7c9587d5", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://98385834649720", + "fromWorldNumber": 4, + "fromZoneNumber": 269, + "goldenThumbnail": "rbxassetid://115469981292664", "huge": true, - "indexDesc": "Earned from defeating the 2025 Snowman Boss!", + "indexDesc": "Found in the Summer Block Party eggs!", "indexObtainable": true, - "name": "Huge Frostbyte Snowman", + "name": "Huge Chill Polar Bear", "rarity": { "Announce": true, "Color": null, @@ -141543,22 +147536,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://97928657452308", + "thumbnail": "rbxassetid://124471089861865", }, - "configName": "Huge Frostbyte Snowman", - "dateCreated": "2025-12-20T17:55:09.908Z", - "dateModified": "2025-12-20T17:55:09.908Z", - "hashShort": "1f078695c0891c72", + "configName": "Huge Chill Polar Bear", + "dateCreated": "2025-07-12T16:08:33.277Z", + "dateModified": "2025-07-19T17:28:40.222Z", + "hashShort": "a31d34f5c272bff3", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://88762866405452", + "goldenThumbnail": "rbxassetid://140071454318367", "huge": true, - "indexDesc": "Found in the 2025 Holiday statue puzzle!", + "indexDesc": "Found in the Summer Block Party's leaderboard contest!", "indexObtainable": true, - "name": "Huge Festive Walrus", + "name": "Huge Coconut Corgi", "rarity": { "Announce": true, "Color": null, @@ -141571,22 +147564,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://130656165679355", + "thumbnail": "rbxassetid://92543943369771", }, - "configName": "Huge Festive Walrus", - "dateCreated": "2025-12-20T17:55:09.920Z", - "dateModified": "2025-12-20T17:55:09.920Z", - "hashShort": "725c3718cc2e0f6a", + "configName": "Huge Coconut Corgi", + "dateCreated": "2025-07-12T16:08:33.277Z", + "dateModified": "2025-07-12T16:08:33.277Z", + "hashShort": "ef1b747f80e581b7", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://112409305444259", + "goldenThumbnail": "rbxassetid://107660397375668", "huge": true, - "indexDesc": "Earned from the 2025 Advent Calendar!", + "indexDesc": "Found in the Block Party Forever Pack!", "indexObtainable": true, - "name": "Huge Festive Bunny", + "name": "Huge Chill Sloth", "rarity": { "Announce": true, "Color": null, @@ -141599,25 +147592,30 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://123556636544814", + "thumbnail": "rbxassetid://120533708082734", }, - "configName": "Huge Festive Bunny", - "dateCreated": "2025-12-20T17:55:09.910Z", - "dateModified": "2025-12-20T17:55:09.910Z", - "hashShort": "67d7cc407cd017fc", + "configName": "Huge Chill Sloth", + "dateCreated": "2025-07-12T16:08:33.280Z", + "dateModified": "2025-07-12T16:08:33.280Z", + "hashShort": "6a4a7a46e900e3d2", }, { "category": "Huge", "collection": "Pets", "configData": { "animations": { - "newChristmasLights": true, + "flyHeight": 0.09, + "flyHeightChange": 0.025, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, }, - "goldenThumbnail": "rbxassetid://105594109002512", + "fly": true, + "goldenThumbnail": "rbxassetid://139531311815022", "huge": true, - "indexDesc": "Earned from rebirthing your Christmas Tree in the 2025 Christmas Event!", + "indexDesc": "Found in the Huge Chance tile in the Summer Block Party!", "indexObtainable": true, - "name": "Huge Lit Loris", + "name": "Huge Floatie Penguin", "rarity": { "Announce": true, "Color": null, @@ -141630,25 +147628,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://132382180739478", + "thumbnail": "rbxassetid://90846690350439", }, - "configName": "Huge Lit Loris", - "dateCreated": "2025-12-20T17:55:09.911Z", - "dateModified": "2025-12-20T17:55:09.911Z", - "hashShort": "a0c1e80b6f70b2d0", + "configName": "Huge Floatie Penguin", + "dateCreated": "2025-07-12T16:08:33.322Z", + "dateModified": "2025-07-12T16:08:33.322Z", + "hashShort": "241a7b68df83441f", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "christmasLights": true, - }, - "goldenThumbnail": "rbxassetid://91417588684587", + "goldenThumbnail": "rbxassetid://100746585076036", "huge": true, - "indexDesc": "Earned from 2025 Christmas Raffles!", + "indexDesc": "Found in random Summer Block Party tiles!", "indexObtainable": true, - "name": "Huge Reindeer Cat", + "name": "Huge Lifeguard Shark", "rarity": { "Announce": true, "Color": null, @@ -141661,22 +147656,21 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://130929080368183", + "thumbnail": "rbxassetid://75963541478121", }, - "configName": "Huge Reindeer Cat", - "dateCreated": "2025-12-20T17:55:09.912Z", - "dateModified": "2025-12-20T17:55:09.912Z", - "hashShort": "c8594a8509f63564", + "configName": "Huge Lifeguard Shark", + "dateCreated": "2025-07-12T16:08:33.322Z", + "dateModified": "2025-07-12T16:08:33.322Z", + "hashShort": "ec81381e8bfccb62", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://129676692343548", - "huge": true, - "indexDesc": "Found in the final Christmas Egg when you discover the Elf on a Shelf!", + "goldenThumbnail": "rbxassetid://139570415281325", + "indexDesc": "Found in the Summer Block Party's leaderboard contest!", "indexObtainable": true, - "name": "Huge Pajamas Shark", + "name": "Titanic Sandcastle Kraken", "rarity": { "Announce": true, "Color": null, @@ -141689,22 +147683,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://101224115872445", + "thumbnail": "rbxassetid://90627425215733", + "titanic": true, }, - "configName": "Huge Pajamas Shark", - "dateCreated": "2025-12-20T17:55:09.913Z", - "dateModified": "2025-12-20T17:55:09.913Z", - "hashShort": "e4c44a545d057800", + "configName": "Titanic Sandcastle Kraken", + "dateCreated": "2025-07-12T16:08:34.436Z", + "dateModified": "2025-07-12T16:08:34.436Z", + "hashShort": "33523eda8511a6cf", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://72013262865146", - "huge": true, - "indexDesc": "Dropped from the 2025 Santa Paws Sleigh!", + "fly": true, + "goldenThumbnail": "rbxassetid://89082239594127", + "indexDesc": "Found in the Titanic Chance tile in the Summer Block Party!", "indexObtainable": true, - "name": "Huge Hot Cocoa Cow", + "name": "Titanic Sun Griffin", "rarity": { "Announce": true, "Color": null, @@ -141717,15 +147712,16 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://94419678057049", + "thumbnail": "rbxassetid://131108865732967", + "titanic": true, }, - "configName": "Huge Hot Cocoa Cow", - "dateCreated": "2025-12-20T17:55:09.909Z", - "dateModified": "2025-12-20T17:55:09.909Z", - "hashShort": "483cf160c69e8f34", + "configName": "Titanic Sun Griffin", + "dateCreated": "2025-07-12T16:08:34.437Z", + "dateModified": "2025-07-12T16:08:34.437Z", + "hashShort": "53b68e9bd48ae1b4", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { "animations": { @@ -141750,1703 +147746,34398 @@ Ground Slam - Pet will damage breakables in a large area!", "Time": 1, "Value": null, }, - ], - "vertexColorAnimSpeed": 0.3, - }, - "goldenThumbnail": "rbxassetid://136798360960954", - "huge": true, - "indexDesc": "Found in the Exclusive Ice Cube Egg!", - "indexObtainable": true, - "name": "Huge Ice Cube Penguin", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://70749719164578", - }, - "configName": "Huge Ice Cube Penguin", - "dateCreated": "2025-12-20T17:55:09.921Z", - "dateModified": "2025-12-20T17:55:09.921Z", - "hashShort": "3fed0d950ae842bd", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "goldenThumbnail": "rbxassetid://83453644056863", - "huge": true, - "indexDesc": "Found in the Candycane Gift!", - "indexObtainable": true, - "name": "Huge Candycane Unicorn", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://96812489225423", - }, - "configName": "Huge Candycane Unicorn", - "dateCreated": "2025-12-20T17:55:09.923Z", - "dateModified": "2025-12-20T17:55:09.923Z", - "hashShort": "2e14a4fa02ced9c5", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "animations": { - "flyHeight": 0.025, - "flyHeightChange": 0, - "newChristmasLights": true, - "swerve": true, - "swerveAggression": 0, - "swerveMaxAngle": 60, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://117925621767232", - "huge": true, - "indexDesc": "Found in the Exclusive Ice Cube Egg!", - "indexObtainable": true, - "name": "Huge Sleigh Axolotl", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://77508464202964", - }, - "configName": "Huge Sleigh Axolotl", - "dateCreated": "2025-12-20T17:55:09.922Z", - "dateModified": "2025-12-20T17:55:09.922Z", - "hashShort": "a585c07e6549b5dc", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "goldenThumbnail": "rbxassetid://81556427591677", - "huge": true, - "indexDesc": "Found in the Santa Gift!", - "indexObtainable": true, - "name": "Huge Present Dragon", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://78320766313104", - }, - "configName": "Huge Present Dragon", - "dateCreated": "2025-12-20T17:55:09.912Z", - "dateModified": "2025-12-20T17:55:09.912Z", - "hashShort": "43b0243410dc9ba4", - }, - ], - "status": "ok", -} -`; - -exports[`Pet Simulator Public Live API Test Potions shape 1`] = ` -{ - "data": [ - { - "category": "Potions", - "collection": "Potions", - "configData": { - "BaseTier": 1, - "MaxTier": 11, - "PrimaryColor": "#FF473A", - "SecondaryColor": "#FF2929", - "Tiers": [ + ], + "vertexColorAnimSpeed": 0.6, + }, + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Treasure Egg!", + "indexObtainable": true, + "name": "Titanic Treasure Mimic", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://101381725674777", + "titanic": true, + }, + "configName": "Titanic Treasure Mimic", + "dateCreated": "2025-07-12T16:08:34.439Z", + "dateModified": "2025-07-12T16:08:34.439Z", + "hashShort": "dd1a2db637914c28", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 7238956398308544, + 7771743039928159, + 8143825948097112, + ], + "fly": true, + "fromEgg": "Faerie Hex Glade Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 272, + "goldenThumbnail": "rbxassetid://138318132787321", + "maxChance": 0.9090815458234391, + "name": "Petal Pixie", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://128196215824394", + }, + "configName": "Petal Pixie", + "dateCreated": "2025-07-19T17:28:35.725Z", + "dateModified": "2026-06-27T16:05:48.624Z", + "hashShort": "95c1b28c1634e198", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 6035583135447962, + 6518512662133216, + 6790031027378958, + ], + "fly": true, + "fromEgg": "Lotus Fenlight Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 271, + "goldenThumbnail": "rbxassetid://138167380666366", + "maxChance": 0.8991008991008992, + "name": "Fairy Grasshopper", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://72238988090228", + }, + "configName": "Fairy Grasshopper", + "dateCreated": "2025-07-19T17:28:35.730Z", + "dateModified": "2026-06-27T16:05:48.637Z", + "hashShort": "e0b9f10e8ec9c8b8", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "blockPartyPower": 85, + "cachedPower": [ + 3368918916619253, + 3656509555842843, + 3790033781196659, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 269, + "goldenThumbnail": "rbxassetid://86214716539413", + "name": "Chill Turtle", + "thumbnail": "rbxassetid://115621990195060", + }, + "configName": "Chill Turtle", + "dateCreated": "2025-07-19T17:28:35.732Z", + "dateModified": "2026-06-27T16:05:48.621Z", + "hashShort": "dc89d8fd1697201c", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 10257215286077722, + 11028265498410720, + 11539367196837438, + ], + "fromEgg": "Toadstool Throne Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 274, + "goldenThumbnail": "rbxassetid://85825659212531", + "maxChance": 0.000009989907096960871, + "name": "Rose Pooka", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "thumbnail": "rbxassetid://96530013494063", + }, + "configName": "Rose Pooka", + "dateCreated": "2025-07-19T17:28:35.724Z", + "dateModified": "2026-06-27T16:05:48.634Z", + "hashShort": "9189b330641e8911", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "blockPartyPower": 950, + "cachedPower": [ + 3533256424747035, + 3805440422583650, + 3974913477840415, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 269, + "goldenThumbnail": "rbxassetid://118432440087488", + "name": "Flamingo Hippo", + "thumbnail": "rbxassetid://134061005250439", + }, + "configName": "Flamingo Hippo", + "dateCreated": "2025-07-19T17:28:35.723Z", + "dateModified": "2026-06-27T16:05:48.633Z", + "hashShort": "247ad1c3200bb6ce", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 5364962787064855, + 5794233477451747, + 6035583135447962, + ], + "fromEgg": "Mystmire Bloom Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 270, + "goldenThumbnail": "rbxassetid://86806680401517", + "maxChance": 0.8991008991008992, + "name": "Mushroom Frog", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://139293750245730", + }, + "configName": "Mushroom Frog", + "dateCreated": "2025-07-19T17:28:35.724Z", + "dateModified": "2026-06-27T16:05:48.621Z", + "hashShort": "8036b3a9bd1ff50d", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 6790222222234491, + 7333709134610933, + 7639000000013802, + ], + "fly": true, + "fromEgg": "Faerie Hex Glade Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 272, + "goldenThumbnail": "rbxassetid://80803171462203", + "maxChance": 0.08991008991008992, + "name": "Mushroom Dragon", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://135550532822969", + }, + "configName": "Mushroom Dragon", + "dateCreated": "2025-07-19T17:28:35.731Z", + "dateModified": "2026-06-27T16:05:48.624Z", + "hashShort": "216fe1fc6bb56578", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 8143825948097112, + 8743210919919178, + 9161804191609250, + ], + "fromEgg": "Bloomcourt Terrace Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 273, + "goldenThumbnail": "rbxassetid://91326312236384", + "maxChance": 0.09090815458234391, + "name": "Blooming Axolotl", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://102463345366008", + }, + "configName": "Blooming Axolotl", + "dateCreated": "2025-07-19T17:28:35.765Z", + "dateModified": "2026-06-27T16:05:48.632Z", + "hashShort": "8aa5fa69d75fee03", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 10917852609557030, + 11829643117556774, + 12282584185751660, + ], + "fly": true, + "fromEgg": "Toadstool Throne Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 274, + "goldenThumbnail": "rbxassetid://107957480070696", + "maxChance": 2.497476774240218e-7, + "name": "Palace Pooka", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + "thumbnail": "rbxassetid://100698520955348", + }, + "configName": "Palace Pooka", + "dateCreated": "2025-07-19T17:28:35.769Z", + "dateModified": "2026-06-27T16:05:48.612Z", + "hashShort": "623371f7b0435833", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 5075615899010008, + 5451942623150161, + 5710067886386260, + ], + "fromEgg": "Mystmire Bloom Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 270, + "goldenThumbnail": "rbxassetid://140535365835168", + "maxChance": 0.9, + "name": "Fiddlefern Cat", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://93820018809301", + }, + "configName": "Fiddlefern Cat", + "dateCreated": "2025-07-19T17:28:35.766Z", + "dateModified": "2026-06-27T16:05:48.610Z", + "hashShort": "d1e7b4211156ab4b", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "blockPartyPower": 1600, + "cachedPower": [ + 3574340801778964, + 3836253705357605, + 4021133402001334, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 269, + "goldenThumbnail": "rbxassetid://76947113195812", + "name": "Pineapple Dog", + "thumbnail": "rbxassetid://127130117157086", + }, + "configName": "Pineapple Dog", + "dateCreated": "2025-07-19T17:28:35.766Z", + "dateModified": "2026-06-27T16:05:48.638Z", + "hashShort": "0512fd5309c2d97a", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "blockPartyPower": 250, + "cachedPower": [ + 3451087670683132, + 3743813857035714, + 3882473629518524, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 269, + "goldenThumbnail": "rbxassetid://135050447590795", + "name": "Coconut Flamingo", + "thumbnail": "rbxassetid://70534092975573", + }, + "configName": "Coconut Flamingo", + "dateCreated": "2025-07-19T17:28:35.768Z", + "dateModified": "2026-06-27T16:05:48.636Z", + "hashShort": "19e227ca9306cc0d", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "blockPartyPower": 9300, + "cachedPower": [ + 3656509555842843, + 3897880270905515, + 4113573250323199, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 269, + "goldenThumbnail": "rbxassetid://85325694148047", + "name": "Watermelon Golem", + "thumbnail": "rbxassetid://98975858132119", + }, + "configName": "Watermelon Golem", + "dateCreated": "2025-07-19T17:28:35.772Z", + "dateModified": "2026-06-27T16:05:48.636Z", + "hashShort": "b294be95ca95e837", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "ballBounceHeight": 2, + }, + "blockPartyPower": 4000, + "cachedPower": [ + 3615425178810915, + 3867066988131560, + 4067353326162280, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 269, + "goldenThumbnail": "rbxassetid://121527157121606", + "name": "Beach Ball Capybara", + "thumbnail": "rbxassetid://90059247137512", + }, + "configName": "Beach Ball Capybara", + "dateCreated": "2025-07-19T17:28:35.773Z", + "dateModified": "2026-06-27T16:05:48.638Z", + "hashShort": "a9015017c9c54022", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "blockPartyPower": 700, + "cachedPower": [ + 3492172047715084, + 3774627139809695, + 3928693553679469, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 269, + "goldenThumbnail": "rbxassetid://126158814876528", + "name": "Flamingo Cat", + "thumbnail": "rbxassetid://112029661344052", + }, + "configName": "Flamingo Cat", + "dateCreated": "2025-07-19T17:28:35.772Z", + "dateModified": "2026-06-27T16:05:48.634Z", + "hashShort": "b3ffcedf376c15b8", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "blockPartyPower": 125, + "cachedPower": [ + 3410003293651204, + 3713000574261785, + 3836253705357605, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 269, + "goldenThumbnail": "rbxassetid://126005092766866", + "name": "Chill Parrot", + "thumbnail": "rbxassetid://108045534156948", + }, + "configName": "Chill Parrot", + "dateCreated": "2025-07-19T17:28:35.775Z", + "dateModified": "2026-06-27T16:05:48.629Z", + "hashShort": "1c2ecf9bd415dcd7", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 4714254509146962, + 5041227154580178, + 5303536322790332, + ], + "fly": true, + "fromEgg": "Mystmire Bloom Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 270, + "goldenThumbnail": "rbxassetid://118425484068666", + "maxChance": 0.9, + "name": "Poofy Pixie", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://83199193819549", + }, + "configName": "Poofy Pixie", + "dateCreated": "2025-07-19T17:28:35.777Z", + "dateModified": "2026-06-27T16:05:48.631Z", + "hashShort": "d3b66a2dffc47402", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "blockPartyPower": 55, + "cachedPower": [ + 3327834539587325, + 3574340801778987, + 3743813857035740, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 269, + "goldenThumbnail": "rbxassetid://74770405440304", + "name": "Chill Ducky", + "thumbnail": "rbxassetid://125062663255002", + }, + "configName": "Chill Ducky", + "dateCreated": "2025-07-19T17:28:35.776Z", + "dateModified": "2026-06-27T16:05:48.634Z", + "hashShort": "8fff6181ad7d7338", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://122521532572438", + "huge": true, + "indexDesc": "Found in the Summer Block Party's leaderboard contest!", + "indexObtainable": true, + "name": "Huge Coconut Flamingo", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://124659391100423", + }, + "configName": "Huge Coconut Flamingo", + "dateCreated": "2025-07-19T17:28:40.163Z", + "dateModified": "2025-07-19T17:28:40.163Z", + "hashShort": "d14b0986a2e21286", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://123729066611034", + "huge": true, + "indexDesc": "Found in the Summer Block Party Raffle!", + "indexObtainable": true, + "name": "Huge Sandcastle Kraken", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://123729066611034", + }, + "configName": "Huge Sandcastle Kraken", + "dateCreated": "2025-07-19T17:28:40.199Z", + "dateModified": "2025-07-19T17:28:40.199Z", + "hashShort": "bbb258f89869ceb3", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "animations": { + "flyHeight": 0.09, + "flyHeightChange": 0.025, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://127235385982541", + "huge": true, + "indexDesc": "Found in the Summer Forever Pack!", + "indexObtainable": true, + "name": "Huge Surfboard Axolotl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://134895528303880", + }, + "configName": "Huge Surfboard Axolotl", + "dateCreated": "2025-07-19T17:28:40.207Z", + "dateModified": "2026-04-18T15:56:10.473Z", + "hashShort": "df937d7d6fedcac4", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://136335226017553", + "huge": true, + "indexDesc": "Found in random Summer Block Party tiles!", + "indexObtainable": true, + "name": "Huge Chill Ducky", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://91155059443761", + }, + "configName": "Huge Chill Ducky", + "dateCreated": "2025-07-19T17:28:40.209Z", + "dateModified": "2025-07-19T17:28:40.209Z", + "hashShort": "76a88d74dc7492a5", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://122847395308810", + "huge": true, + "indexDesc": "Found in the Huge Chance tile in the Summer Block Party!", + "indexObtainable": true, + "name": "Huge Flamingo Hippo", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://70985697718907", + }, + "configName": "Huge Flamingo Hippo", + "dateCreated": "2025-07-19T17:28:40.213Z", + "dateModified": "2025-07-19T17:28:40.213Z", + "hashShort": "aae21e5fc32427f2", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://81516359535274", + "huge": true, + "indexDesc": "Found in the final zone of Fantasy World!", + "indexObtainable": true, + "name": "Huge Mushroom Dragon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://98526628952494", + }, + "configName": "Huge Mushroom Dragon", + "dateCreated": "2025-07-19T17:28:40.211Z", + "dateModified": "2025-10-18T17:03:10.965Z", + "hashShort": "fb397ddb8511925e", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://121731461985617", + "huge": true, + "indexDesc": "Found in the Summer Block Party eggs!", + "indexObtainable": true, + "name": "Huge Chill Parrot", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://104805390421143", + }, + "configName": "Huge Chill Parrot", + "dateCreated": "2025-07-19T17:28:40.214Z", + "dateModified": "2025-07-19T17:28:40.214Z", + "hashShort": "ef4ec451afaaf2db", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://113084697908720", + "huge": true, + "indexDesc": "Found in random Summer Block Party tiles!", + "indexObtainable": true, + "name": "Huge Chill Turtle", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://131025895273996", + }, + "configName": "Huge Chill Turtle", + "dateCreated": "2025-07-19T17:28:40.214Z", + "dateModified": "2025-07-19T17:28:40.214Z", + "hashShort": "c0c3bed36770ddf1", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://136210526681229", + "huge": true, + "indexDesc": "Found in the MVP Chest!", + "indexObtainable": true, + "name": "Huge Old Wizard Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://80977445482365", + }, + "configName": "Huge Old Wizard Cat", + "dateCreated": "2025-07-19T17:28:40.214Z", + "dateModified": "2025-07-19T17:28:40.214Z", + "hashShort": "e2acc3daa9519573", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://117969505874066", + "huge": true, + "indexDesc": "Found in the Sun Angelus Gift!", + "indexObtainable": true, + "name": "Huge Watermelon Golem", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://79014602144468", + }, + "configName": "Huge Watermelon Golem", + "dateCreated": "2025-07-19T17:28:40.223Z", + "dateModified": "2025-07-19T17:28:40.223Z", + "hashShort": "49df1d63c88febbd", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://78023785057666", + "huge": true, + "indexDesc": "Found in random Summer Block Party tiles!", + "indexObtainable": true, + "name": "Huge Flamingo Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://110362471835771", + }, + "configName": "Huge Flamingo Cat", + "dateCreated": "2025-07-19T17:28:40.223Z", + "dateModified": "2025-07-19T17:28:40.223Z", + "hashShort": "e7bd71c245edb89c", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "animations": { + "spinZ": true, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://98439848544752", + "indexDesc": "Earned from purchasing a Merch Rug!", + "indexObtainable": true, + "name": "Titanic Wicked Angelus", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://139550015983813", + "titanic": true, + }, + "configName": "Titanic Wicked Angelus", + "dateCreated": "2025-07-19T17:28:41.482Z", + "dateModified": "2025-10-18T17:03:13.191Z", + "hashShort": "ea8776d9954d6c72", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "animations": { + "ballBounceHeight": 2, + }, + "goldenThumbnail": "rbxassetid://72187450337304", + "indexDesc": "Found in the Summer Block Party's leaderboard contest!", + "indexObtainable": true, + "name": "Titanic Beach Ball Capybara", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://75537750566110", + "titanic": true, + }, + "configName": "Titanic Beach Ball Capybara", + "dateCreated": "2025-07-19T17:28:41.491Z", + "dateModified": "2025-07-19T17:28:41.491Z", + "hashShort": "c17bce7ea7e6d8d9", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://74621284591094", + "indexDesc": "Found in the MVP Chest!", + "indexObtainable": true, + "name": "Titanic Old Wizard Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://85718953892638", + "titanic": true, + }, + "configName": "Titanic Old Wizard Cat", + "dateCreated": "2025-07-19T17:28:41.501Z", + "dateModified": "2025-07-19T17:28:41.501Z", + "hashShort": "f545a6b5a5de098d", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://77063523458586", + "indexDesc": "Earned from purchasing a Merch Plush!", + "indexObtainable": true, + "name": "Titanic Inferno Dominus", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://133194662787359", + "titanic": true, + }, + "configName": "Titanic Inferno Dominus", + "dateCreated": "2025-07-19T17:28:41.500Z", + "dateModified": "2025-07-19T17:28:41.500Z", + "hashShort": "4d5397b872cbe098", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://135627755072290", + "indexDesc": "Earned from purchasing a Merch Plush!", + "indexObtainable": true, + "name": "Titanic Ancient Dragon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://83209252945464", + "titanic": true, + }, + "configName": "Titanic Ancient Dragon", + "dateCreated": "2025-07-19T17:28:41.500Z", + "dateModified": "2025-07-19T17:28:41.500Z", + "hashShort": "a30be6ff8ae76f75", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://111720551893954", + "indexDesc": "Found in the Titanic Chance tile in the Summer Block Party!", + "indexObtainable": true, + "name": "Titanic Pineapple Dog", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://99869089555079", + "titanic": true, + }, + "configName": "Titanic Pineapple Dog", + "dateCreated": "2025-07-19T17:28:41.494Z", + "dateModified": "2025-07-19T17:28:41.494Z", + "hashShort": "72d1a438830bff96", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://112336382327321", + "indexDesc": "Earned from purchasing a Merch Pillow!", + "indexObtainable": true, + "name": "Titanic Gamer Shiba", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://119206417994536", + "titanic": true, + }, + "configName": "Titanic Gamer Shiba", + "dateCreated": "2025-07-19T17:28:41.499Z", + "dateModified": "2025-10-18T17:03:12.060Z", + "hashShort": "7b8272a65b37370e", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://111724387406882", + "indexDesc": "Earned from purchasing a Merch Plush!", + "indexObtainable": true, + "name": "Titanic Electric Werewolf", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://76655518621406", + "titanic": true, + }, + "configName": "Titanic Electric Werewolf", + "dateCreated": "2025-07-19T17:28:41.519Z", + "dateModified": "2025-10-18T17:03:13.181Z", + "hashShort": "c41160609f76be6f", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://131502445694733", + "indexDesc": "Earned from purchasing a Merch Pillow!", + "indexObtainable": true, + "name": "Titanic Wild Fire Agony", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://80761300754593", + "titanic": true, + }, + "configName": "Titanic Wild Fire Agony", + "dateCreated": "2025-07-19T17:28:41.524Z", + "dateModified": "2025-10-18T17:03:13.137Z", + "hashShort": "6b57eaa3fe3edad9", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "animations": { + "flyHeight": 0.09, + "flyHeightChange": 0.025, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://96037879289153", + "indexDesc": "Found in the Summer Block Party Raffle!", + "indexObtainable": true, + "name": "Titanic Surfboard Corgi", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://94523830121587", + "titanic": true, + }, + "configName": "Titanic Surfboard Corgi", + "dateCreated": "2025-07-19T17:28:41.525Z", + "dateModified": "2026-04-25T17:30:35.320Z", + "hashShort": "f50ac277003ced3e", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 4679767321294662, + ], + "fly": true, + "fromWorldNumber": 4, + "fromZoneNumber": 273, + "goldenThumbnail": "rbxassetid://84864571507407", + "name": "Specter Owl", + "thumbnail": "rbxassetid://140495115812137", + }, + "configName": "Specter Owl", + "dateCreated": "2025-10-18T17:03:06.671Z", + "dateModified": "2025-10-18T17:03:06.671Z", + "hashShort": "89e0d60ad994c7dc", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 2308389688927779, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 273, + "goldenThumbnail": "rbxassetid://75343034216978", + "name": "Mummy Cow", + "thumbnail": "rbxassetid://132515709651119", + }, + "configName": "Mummy Cow", + "dateCreated": "2025-10-18T17:03:06.681Z", + "dateModified": "2025-10-18T17:03:06.681Z", + "hashShort": "408739b88b72662e", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 6663184330515252, + ], + "fly": true, + "fromWorldNumber": 4, + "fromZoneNumber": 273, + "goldenThumbnail": "rbxassetid://72456409595663", + "name": "Vampire Agony", + "thumbnail": "rbxassetid://97486636114363", + }, + "configName": "Vampire Agony", + "dateCreated": "2025-10-18T17:03:06.682Z", + "dateModified": "2025-10-18T17:03:06.682Z", + "hashShort": "d9e1b2bc270d8586", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 4159793174484144, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 273, + "goldenThumbnail": "rbxassetid://115300948225494", + "name": "Skelemelon", + "thumbnail": "rbxassetid://125430916778937", + }, + "configName": "Skelemelon", + "dateCreated": "2025-10-18T17:03:06.680Z", + "dateModified": "2025-10-18T17:03:06.680Z", + "hashShort": "a195bef7d123486e", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 2051901945713582, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 273, + "goldenThumbnail": "rbxassetid://75279824626836", + "name": "Witch Wolf", + "thumbnail": "rbxassetid://120004293159160", + }, + "configName": "Witch Wolf", + "dateCreated": "2025-10-18T17:03:06.683Z", + "dateModified": "2025-10-18T17:03:06.683Z", + "hashShort": "ae3e91ba4baab54b", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://90371331175267", + "name": "Tralala Brainrot", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://81032569820450", + }, + "configName": "Tralala Brainrot", + "dateCreated": "2025-10-18T17:03:06.686Z", + "dateModified": "2025-10-18T17:03:06.686Z", + "hashShort": "af2f617110691277", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1441116318525863, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 273, + "goldenThumbnail": "rbxassetid://103624934135807", + "name": "Skeleton Snake", + "thumbnail": "rbxassetid://114838772997497", + }, + "configName": "Skeleton Snake", + "dateCreated": "2025-10-18T17:03:06.685Z", + "dateModified": "2025-10-18T17:03:06.685Z", + "hashShort": "2536191ab2b89416", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://119082057661558", + "name": "Cappuccina Brainrot", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://98325018409521", + }, + "configName": "Cappuccina Brainrot", + "dateCreated": "2025-10-18T17:03:06.687Z", + "dateModified": "2025-10-18T17:03:06.687Z", + "hashShort": "1dade9b4f53e640b", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://96279965167652", + "name": "Candycorn Unicorn", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://97910874277835", + }, + "configName": "Candycorn Unicorn", + "dateCreated": "2025-10-18T17:03:06.677Z", + "dateModified": "2025-10-18T17:03:06.677Z", + "hashShort": "848b54c18b68a903", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 5264738236456495, + ], + "fly": true, + "fromWorldNumber": 4, + "fromZoneNumber": 273, + "goldenThumbnail": "rbxassetid://94338371519943", + "name": "Hacked Reaper", + "thumbnail": "rbxassetid://122526192238040", + }, + "configName": "Hacked Reaper", + "dateCreated": "2025-10-18T17:03:06.679Z", + "dateModified": "2025-10-18T17:03:06.679Z", + "hashShort": "60c313ddfcf2ee7f", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://126633519448010", + "name": "Patapim Brainrot", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://85861441354288", + }, + "configName": "Patapim Brainrot", + "dateCreated": "2025-10-18T17:03:06.686Z", + "dateModified": "2025-10-18T17:03:06.686Z", + "hashShort": "85d2c7fae17082b7", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 2921555700049221, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 273, + "goldenThumbnail": "rbxassetid://103245975910971", + "name": "Devil Tasmanian", + "thumbnail": "rbxassetid://127675792864967", + }, + "configName": "Devil Tasmanian", + "dateCreated": "2025-10-18T17:03:06.678Z", + "dateModified": "2025-10-18T17:03:06.678Z", + "hashShort": "c1749903c2e336d3", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1280992283134100, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 273, + "goldenThumbnail": "rbxassetid://112608617244238", + "name": "Pumpkin Dog", + "thumbnail": "rbxassetid://116085135946843", + }, + "configName": "Pumpkin Dog", + "dateCreated": "2025-10-18T17:03:06.685Z", + "dateModified": "2025-10-18T17:03:06.685Z", + "hashShort": "d389cf2a72263427", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 3697593932874795, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 273, + "goldenThumbnail": "rbxassetid://91845561002219", + "name": "Evil Kitsune", + "thumbnail": "rbxassetid://98588572241063", + }, + "configName": "Evil Kitsune", + "dateCreated": "2025-10-18T17:03:06.683Z", + "dateModified": "2025-10-18T17:03:06.683Z", + "hashShort": "c1e2f19846968b1b", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1621255858341595, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 273, + "goldenThumbnail": "rbxassetid://101972959017552", + "name": "Zombie Pig", + "thumbnail": "rbxassetid://103502659992163", + }, + "configName": "Zombie Pig", + "dateCreated": "2025-10-18T17:03:06.684Z", + "dateModified": "2025-10-18T17:03:06.684Z", + "hashShort": "51f0a4e787fae5d5", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1823912840634295, + ], + "fly": true, + "fromWorldNumber": 4, + "fromZoneNumber": 273, + "goldenThumbnail": "rbxassetid://137821016765987", + "name": "Evil Raven", + "thumbnail": "rbxassetid://85471736127836", + }, + "configName": "Evil Raven", + "dateCreated": "2025-10-18T17:03:06.678Z", + "dateModified": "2025-10-18T17:03:06.678Z", + "hashShort": "643724f415b06526", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 2596938400043752, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 273, + "goldenThumbnail": "rbxassetid://127693332170106", + "name": "Frankenpup Dog", + "thumbnail": "rbxassetid://98722260194254", + }, + "configName": "Frankenpup Dog", + "dateCreated": "2025-10-18T17:03:06.674Z", + "dateModified": "2025-10-18T17:03:06.674Z", + "hashShort": "07520761281512b5", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 5922830516013557, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 273, + "goldenThumbnail": "rbxassetid://109526324489809", + "name": "Spectral Deer", + "thumbnail": "rbxassetid://137728356304350", + }, + "configName": "Spectral Deer", + "dateCreated": "2025-10-18T17:03:06.670Z", + "dateModified": "2025-10-18T17:03:06.670Z", + "hashShort": "37c62927aa3c5f43", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 3286750162555373, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 273, + "goldenThumbnail": "rbxassetid://74387684823317", + "name": "Shark Cat", + "thumbnail": "rbxassetid://100101752973990", + }, + "configName": "Shark Cat", + "dateCreated": "2025-10-18T17:03:06.676Z", + "dateModified": "2025-10-18T17:03:06.676Z", + "hashShort": "f7c3191c58e346dd", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "fly": true, + "gargantuan": true, + "goldenThumbnail": "rbxassetid://88793084642438", + "indexDesc": "ADMIN ABUSE!!! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Super Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://128024931288917", + }, + "configName": "Gargantuan Super Cat", + "dateCreated": "2025-10-18T17:03:07.160Z", + "dateModified": "2025-10-18T17:03:07.160Z", + "hashShort": "b78ee6350759f0ad", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "gargantuan": true, + "goldenThumbnail": "rbxassetid://71312806947825", + "indexDesc": "Found in the Autumn & Spider Forever Pack! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Doge", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://91301167582038", + }, + "configName": "Gargantuan Doge", + "dateCreated": "2025-10-18T17:03:07.165Z", + "dateModified": "2025-11-22T17:14:46.769Z", + "hashShort": "d49949871433ff2c", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "gargantuan": true, + "goldenThumbnail": "rbxassetid://99073989820587", + "indexDesc": "Found in the Exclusive Brainrot Egg! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Cappuccino Brainrot", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://126301320280051", + }, + "configName": "Gargantuan Cappuccino Brainrot", + "dateCreated": "2025-10-18T17:03:07.164Z", + "dateModified": "2025-10-18T17:03:07.164Z", + "hashShort": "cfc04cc299bbb67a", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "gargantuan": true, + "goldenThumbnail": "rbxassetid://117525933923587", + "indexDesc": "Found in the Exclusive Raffle! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Skelemelon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://116658660548384", + }, + "configName": "Gargantuan Skelemelon", + "dateCreated": "2025-10-18T17:03:07.163Z", + "dateModified": "2025-10-18T17:03:07.163Z", + "hashShort": "be6f884818be5103", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://135194392389352", + "huge": true, + "indexDesc": "Hatched from eggs in the 2025 Halloween Event!", + "indexObtainable": true, + "name": "Huge Spectral Deer", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://72961994800686", + }, + "configName": "Huge Spectral Deer", + "dateCreated": "2025-10-18T17:03:10.963Z", + "dateModified": "2025-10-18T17:03:10.963Z", + "hashShort": "7cb34a7da5ee22d6", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://97991105596161", + "huge": true, + "indexDesc": "Found in the 2025 Halloween Gift Bag!", + "indexObtainable": true, + "name": "Huge Skelemelon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://139632770230401", + }, + "configName": "Huge Skelemelon", + "dateCreated": "2025-10-18T17:03:10.985Z", + "dateModified": "2025-10-18T17:03:10.985Z", + "hashShort": "02dcbf89139644f2", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://93881586877382", + "huge": true, + "indexDesc": "Crafted in the 2025 Halloween Event!", + "indexObtainable": true, + "name": "Huge Evil Kitsune", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://122958548174928", + }, + "configName": "Huge Evil Kitsune", + "dateCreated": "2025-10-18T17:03:10.984Z", + "dateModified": "2025-10-18T17:03:10.984Z", + "hashShort": "9d54ad86c5c4d2e7", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://137822161703577", + "huge": true, + "indexDesc": "ADMIN ABUSE!!!", + "indexObtainable": true, + "name": "Huge Blue Lucky Block", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://116957138915362", + }, + "configName": "Huge Blue Lucky Block", + "dateCreated": "2025-10-18T17:03:10.989Z", + "dateModified": "2025-10-18T17:03:10.989Z", + "hashShort": "cc6f86e0963ac0d9", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://114934170812099", + "huge": true, + "indexDesc": "Found in the Spider Forever Pack!", + "indexObtainable": true, + "name": "Huge Witch Wolf", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://133897914197133", + }, + "configName": "Huge Witch Wolf", + "dateCreated": "2025-10-18T17:03:10.992Z", + "dateModified": "2025-10-18T17:03:10.992Z", + "hashShort": "dde3510bef4682c3", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://89205438144186", + "huge": true, + "indexDesc": "Reward in the 2025 Halloween Clan Battle!", + "indexObtainable": true, + "name": "Huge Mummy Cow", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://98874916712415", + }, + "configName": "Huge Mummy Cow", + "dateCreated": "2025-10-18T17:03:10.991Z", + "dateModified": "2025-10-18T17:03:10.991Z", + "hashShort": "1bad07b183ec482f", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://128479249080758", + "huge": true, + "indexDesc": "Found in the Spider Forever Pack!", + "indexObtainable": true, + "name": "Huge Pumpkin Dog", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://71270630021360", + }, + "configName": "Huge Pumpkin Dog", + "dateCreated": "2025-10-18T17:03:10.992Z", + "dateModified": "2025-10-18T17:03:10.992Z", + "hashShort": "f55517f95fd1cfbd", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://115141491208564", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Rhino", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://70742339660994", + }, + "configName": "Huge Rhino", + "dateCreated": "2025-10-18T17:03:11.014Z", + "dateModified": "2025-10-18T17:03:11.014Z", + "hashShort": "4f9e0ebdd51fe511", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://81508691740799", + "huge": true, + "indexDesc": "Hatched from eggs in the 2025 Halloween Event!", + "indexObtainable": true, + "name": "Huge Hacked Reaper", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://119356588704518", + }, + "configName": "Huge Hacked Reaper", + "dateCreated": "2025-10-18T17:03:11.020Z", + "dateModified": "2025-10-18T17:03:11.020Z", + "hashShort": "ff1b33e50b8f8381", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://99431869546243", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Horse", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://112696303683971", + }, + "configName": "Huge Horse", + "dateCreated": "2025-10-18T17:03:11.016Z", + "dateModified": "2025-10-18T17:03:11.016Z", + "hashShort": "f4222791e4336254", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://114312726359328", + "huge": true, + "indexDesc": "Found in the MVP Chest!", + "indexObtainable": true, + "name": "Huge Cupcake Pegasus", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://136860707312051", + }, + "configName": "Huge Cupcake Pegasus", + "dateCreated": "2025-10-18T17:03:11.020Z", + "dateModified": "2025-10-18T17:03:11.020Z", + "hashShort": "00a4b7ca60b30d4f", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://89633724161239", + "huge": true, + "indexDesc": "Found in the Exclusive Brainrot Egg!", + "indexObtainable": true, + "name": "Huge Tralala Brainrot", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://130205496743645", + }, + "configName": "Huge Tralala Brainrot", + "dateCreated": "2025-10-18T17:03:11.025Z", + "dateModified": "2025-10-18T17:03:11.025Z", + "hashShort": "96e308da624dba4c", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://125227154888340", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Moray Eel", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://103239594752603", + }, + "configName": "Huge Moray Eel", + "dateCreated": "2025-10-18T17:03:11.022Z", + "dateModified": "2025-10-18T17:03:11.022Z", + "hashShort": "555b4a8dd651e967", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://108643216825404", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Gorilla", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://107479430028155", + }, + "configName": "Huge Gorilla", + "dateCreated": "2025-10-18T17:03:11.029Z", + "dateModified": "2025-10-18T17:03:11.029Z", + "hashShort": "222cd5b77875b3cb", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://110879826577944", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Sloth", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://77873746102691", + }, + "configName": "Huge Sloth", + "dateCreated": "2025-10-18T17:03:11.030Z", + "dateModified": "2025-10-18T17:03:11.030Z", + "hashShort": "032eac57ac769238", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://75105494133652", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Gazelle", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://137006734767024", + }, + "configName": "Huge Gazelle", + "dateCreated": "2025-10-18T17:03:11.024Z", + "dateModified": "2025-10-18T17:03:11.024Z", + "hashShort": "9ea9adc4b026db63", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://71519139099378", + "huge": true, + "indexDesc": "Found in the Exclusive Brainrot Egg!", + "indexObtainable": true, + "name": "Huge Cappuccina Brainrot", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://110814000442591", + }, + "configName": "Huge Cappuccina Brainrot", + "dateCreated": "2025-10-18T17:03:11.025Z", + "dateModified": "2025-10-18T17:03:11.025Z", + "hashShort": "f879bc2dcaf6ec77", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://120398808827403", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge African Wild Dog", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://137866343628136", + }, + "configName": "Huge African Wild Dog", + "dateCreated": "2025-10-18T17:03:11.029Z", + "dateModified": "2025-10-18T17:03:11.029Z", + "hashShort": "c8122b8b5b260613", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://111077752188262", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Lemur", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://106102265443812", + }, + "configName": "Huge Lemur", + "dateCreated": "2025-10-18T17:03:11.033Z", + "dateModified": "2025-10-18T17:03:11.033Z", + "hashShort": "a764f04747c62243", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "cachedPower": [ + 11120514129515254, + ], + "fromEgg": "Toadstool Throne Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 274, + "goldenThumbnail": "rbxassetid://122739157919164", + "huge": true, + "indexDesc": "Found in the final zone of Fantasy World!", + "indexObtainable": true, + "maxChance": 5.993944258176522e-8, + "name": "Huge Fiddlefern Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://106766832972765", + }, + "configName": "Huge Fiddlefern Cat", + "dateCreated": "2025-10-18T17:03:11.032Z", + "dateModified": "2026-05-02T17:30:48.952Z", + "hashShort": "2e17411b5c503b98", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://96016484180237", + "huge": true, + "indexDesc": "Hatched from eggs in the 2025 Halloween Event!", + "indexObtainable": true, + "name": "Huge Vampire Agony", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://130091557043756", + }, + "configName": "Huge Vampire Agony", + "dateCreated": "2025-10-18T17:03:11.223Z", + "dateModified": "2025-10-18T17:03:11.223Z", + "hashShort": "4c229912a00ce716", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://114734774230750", + "huge": true, + "indexDesc": "Found in the 2025 Halloween Gift Bag!", + "indexObtainable": true, + "name": "Huge Devil Tasmanian", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://128236274006069", + }, + "configName": "Huge Devil Tasmanian", + "dateCreated": "2025-10-18T17:03:11.222Z", + "dateModified": "2025-10-18T17:03:11.222Z", + "hashShort": "221e199783b2e812", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://103082828650776", + "indexDesc": "Hatched from eggs in the 2025 Halloween Event!", + "indexObtainable": true, + "name": "Titanic Vampire Agony", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://120127746226502", + "titanic": true, + }, + "configName": "Titanic Vampire Agony", + "dateCreated": "2025-10-18T17:03:13.135Z", + "dateModified": "2025-10-18T17:03:13.135Z", + "hashShort": "2b700a322043d1b4", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://126172210172307", + "indexDesc": "Reward in the 2025 Halloween Clan Battle!", + "indexObtainable": true, + "name": "Titanic Spectral Deer", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://131625375967545", + "titanic": true, + }, + "configName": "Titanic Spectral Deer", + "dateCreated": "2025-10-18T17:03:13.137Z", + "dateModified": "2025-10-18T17:03:13.137Z", + "hashShort": "9cf2d62d4d911cc7", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://73118473332688", + "indexDesc": "Found in the Spider Forever Pack!", + "indexObtainable": true, + "name": "Titanic Blobenstein", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://133816643880772", + "titanic": true, + }, + "configName": "Titanic Blobenstein", + "dateCreated": "2025-10-18T17:03:13.138Z", + "dateModified": "2025-10-18T17:03:13.138Z", + "hashShort": "366893006466f2c3", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fly": true, + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "goldenThumbnail": "rbxassetid://129798068509648", + "indexDesc": "Found in the Exclusive Raffle!", + "indexObtainable": true, + "name": "Titanic Guilded Raven", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://133529343440925", + "titanic": true, + }, + "configName": "Titanic Guilded Raven", + "dateCreated": "2025-10-18T17:03:13.141Z", + "dateModified": "2026-06-27T16:05:01.897Z", + "hashShort": "66be5e9ce2f820ad", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "animations": { + "ridingCameraOffset": null, + "swerve": true, + "swerveAggression": 1, + "swerveMaxAngle": 60, + }, + "fly": true, + "flyingTitanic": true, + "goldenThumbnail": "rbxassetid://139538895638672", + "indexDesc": "Found in the Exclusive Brainrot Egg!", + "indexObtainable": true, + "name": "Titanic Crocodilo Brainrot", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://134789752916568", + "titanic": true, + }, + "configName": "Titanic Crocodilo Brainrot", + "dateCreated": "2025-10-18T17:03:13.141Z", + "dateModified": "2025-10-18T17:03:13.141Z", + "hashShort": "2277094d55b3bec1", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://132700505710761", + "indexDesc": "Found in the MVP Chest!", + "indexObtainable": true, + "name": "Titanic Quokka", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://118478723717753", + "titanic": true, + }, + "configName": "Titanic Quokka", + "dateCreated": "2025-10-18T17:03:13.144Z", + "dateModified": "2025-10-18T17:03:13.144Z", + "hashShort": "4862b899da160bef", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://125943538738470", + "indexDesc": "Crafted in the 2025 Halloween Event!", + "indexObtainable": true, + "name": "Titanic Specter Owl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://75229651213956", + "titanic": true, + }, + "configName": "Titanic Specter Owl", + "dateCreated": "2025-10-18T17:03:13.149Z", + "dateModified": "2025-10-18T17:03:13.149Z", + "hashShort": "e9e994fd9e2808ab", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://111827016010488", + "indexDesc": "ADMIN ABUSE!!!", + "indexObtainable": true, + "name": "Titanic Noob", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://101954252153126", + "titanic": true, + }, + "configName": "Titanic Noob", + "dateCreated": "2025-10-18T17:03:13.150Z", + "dateModified": "2025-10-18T17:03:13.150Z", + "hashShort": "0d3271b6868782c0", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://102431699666469", + "name": "Leafstorm Wolf", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://85521429598620", + }, + "configName": "Leafstorm Wolf", + "dateCreated": "2025-11-22T17:14:46.292Z", + "dateModified": "2025-11-22T17:14:46.292Z", + "hashShort": "18aa9e28a8aef291", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 7079633351172455, + 7652250754576127, + 7964587520069012, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 275, + "goldenThumbnail": "rbxassetid://80948711786302", + "name": "Maple Owl", + "thumbnail": "rbxassetid://112955091368176", + }, + "configName": "Maple Owl", + "dateCreated": "2025-11-22T17:14:46.293Z", + "dateModified": "2026-06-27T16:05:48.729Z", + "hashShort": "7c071b78745d374b", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 7496082371829658, + 7964587520069012, + 8433092668308365, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 275, + "goldenThumbnail": "rbxassetid://105110399557856", + "name": "Leafy Deer", + "thumbnail": "rbxassetid://126470494165777", + }, + "configName": "Leafy Deer", + "dateCreated": "2025-11-22T17:14:46.297Z", + "dateModified": "2026-06-27T16:05:48.737Z", + "hashShort": "4417054de43530bf", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 6107918969638981, + 6663184330515252, + 6871408840843854, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 275, + "goldenThumbnail": "rbxassetid://84496160822498", + "name": "Persimmony Cricket", + "thumbnail": "rbxassetid://119442296386528", + }, + "configName": "Persimmony Cricket", + "dateCreated": "2025-11-22T17:14:46.302Z", + "dateModified": "2026-06-27T16:05:48.730Z", + "hashShort": "ceb32e02717a8fea", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://137869919756045", + "name": "Molten Pumpkin Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://127286916260501", + }, + "configName": "Molten Pumpkin Cat", + "dateCreated": "2025-11-22T17:14:46.301Z", + "dateModified": "2025-11-22T17:14:46.301Z", + "hashShort": "4b7ec4c2e20d335b", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 6293007423264404, + 6802000670734335, + 7079633351172455, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 275, + "goldenThumbnail": "rbxassetid://118060661068822", + "name": "Strawhat Tanuki", + "thumbnail": "rbxassetid://95229081010047", + }, + "configName": "Strawhat Tanuki", + "dateCreated": "2025-11-22T17:14:46.300Z", + "dateModified": "2026-06-27T16:05:48.732Z", + "hashShort": "9ad16561cdf4d4b1", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 6663184330515252, + 7079633351172455, + 7496082371829658, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 275, + "goldenThumbnail": "rbxassetid://110326913870357", + "name": "Cinnamon Bunny", + "thumbnail": "rbxassetid://95560881977168", + }, + "configName": "Cinnamon Bunny", + "dateCreated": "2025-11-22T17:14:46.758Z", + "dateModified": "2026-06-27T16:05:48.738Z", + "hashShort": "7e1ab7435d86af83", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "flyHeight": 0.025, + "flyHeightChange": 0, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, + }, + "exclusiveLevel": 1, + "fly": true, + "goldenThumbnail": "rbxassetid://123338202092795", + "name": "Honey Bear", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://129705830561176", + }, + "configName": "Honey Bear", + "dateCreated": "2025-11-22T17:14:46.761Z", + "dateModified": "2025-11-22T17:14:46.761Z", + "hashShort": "4cc2b28bf339204c", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 5593784376235026, + 6046222818430520, + 6293007423264404, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 275, + "goldenThumbnail": "rbxassetid://112394355023679", + "name": "Chesnut Chipmunk", + "thumbnail": "rbxassetid://108744690705529", + }, + "configName": "Chesnut Chipmunk", + "dateCreated": "2025-11-22T17:14:46.757Z", + "dateModified": "2026-06-27T16:05:48.739Z", + "hashShort": "09056bee843c260b", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "gargantuan": true, + "goldenThumbnail": "rbxassetid://103358083445978", + "indexDesc": "Crafted in the 2025 Halloween Event! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Frankenpup Dog", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://73716913913195", + }, + "configName": "Gargantuan Frankenpup Dog", + "dateCreated": "2025-11-22T17:14:46.768Z", + "dateModified": "2026-04-18T15:56:01.669Z", + "hashShort": "a44f02595778b027", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "gargantuan": true, + "goldenThumbnail": "rbxassetid://106441871357793", + "indexDesc": "Found in the Exclusive Harvest Egg! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Evil Scarecrow Pumpkin", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://114300365192444", + }, + "configName": "Gargantuan Evil Scarecrow Pumpkin", + "dateCreated": "2025-11-22T17:14:46.778Z", + "dateModified": "2025-11-22T17:14:46.778Z", + "hashShort": "d57ec91c00312aef", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "gargantuan": true, + "goldenThumbnail": "rbxassetid://98047308462200", + "indexDesc": "Found in the Autumn World's Diamond Egg! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Leafy Deer", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://93500762936904", + }, + "configName": "Gargantuan Leafy Deer", + "dateCreated": "2025-11-22T17:14:46.775Z", + "dateModified": "2026-04-18T15:56:01.666Z", + "hashShort": "60ebf56f23f6eeba", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "animations": { + "balloon": true, + }, + "fly": true, + "gargantuan": true, + "goldenThumbnail": "rbxassetid://119190493678984", + "indexDesc": "ADMIN ABUSE!!! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Black Balloon Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://70419388027416", + }, + "configName": "Gargantuan Black Balloon Cat", + "dateCreated": "2025-11-22T17:14:46.777Z", + "dateModified": "2025-11-22T17:14:46.777Z", + "hashShort": "d9326804ad9afcf6", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "animations": { + "balloon": true, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://14976361490", + "huge": true, + "indexDesc": "Found in the ADMIN ABUSE!", + "indexObtainable": true, + "name": "Huge Beans Balloon Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://14976361583", + }, + "configName": "Huge Beans Balloon Cat", + "dateCreated": "2025-11-22T17:14:47.294Z", + "dateModified": "2025-11-22T17:14:47.294Z", + "hashShort": "f71ae88c8e83f337", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "animations": { + "flyHeight": 0.025, + "flyHeightChange": 0, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://105728903847484", + "huge": true, + "indexDesc": "Found in the Exclusive Harvest Egg!", + "indexObtainable": true, + "name": "Huge Honey Bear", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://83794143197410", + }, + "configName": "Huge Honey Bear", + "dateCreated": "2025-11-22T17:14:50.773Z", + "dateModified": "2025-11-22T17:14:50.773Z", + "hashShort": "718ffc6ba546c8e0", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://93904249280197", + "huge": true, + "indexDesc": "Crafted in the 2025 Halloween Event!", + "indexObtainable": true, + "name": "Huge Skeleton Snake", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://101412265452600", + }, + "configName": "Huge Skeleton Snake", + "dateCreated": "2025-11-22T17:14:50.771Z", + "dateModified": "2025-11-22T17:14:50.771Z", + "hashShort": "12aa196409b2196a", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://93139377266025", + "huge": true, + "indexDesc": "Hatched from eggs in the 2025 Halloween Event!", + "indexObtainable": true, + "name": "Huge Specter Owl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://96339575163664", + }, + "configName": "Huge Specter Owl", + "dateCreated": "2025-11-22T17:14:50.776Z", + "dateModified": "2025-11-22T17:14:50.776Z", + "hashShort": "00d131f8d3ba7fcf", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://75513927696217", + "huge": true, + "indexDesc": "Found in the Exclusive Harvest Egg!", + "indexObtainable": true, + "name": "Huge Leafstorm Wolf", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://139340972718086", + }, + "configName": "Huge Leafstorm Wolf", + "dateCreated": "2025-11-22T17:14:50.775Z", + "dateModified": "2025-11-22T17:14:50.775Z", + "hashShort": "78b3db1eadc7978c", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://134505026155000", + "huge": true, + "indexDesc": "Crafted in the 2025 Halloween Event!", + "indexObtainable": true, + "name": "Huge Evil Raven", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://125919373287917", + }, + "configName": "Huge Evil Raven", + "dateCreated": "2025-11-22T17:14:50.772Z", + "dateModified": "2025-11-22T17:14:50.772Z", + "hashShort": "19bb497f042a28d4", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://113023993933225", + "huge": true, + "indexDesc": "Found in the Autumn Forever Pack!", + "indexObtainable": true, + "name": "Huge Chesnut Chipmunk", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://134539491208069", + }, + "configName": "Huge Chesnut Chipmunk", + "dateCreated": "2025-11-22T17:14:50.780Z", + "dateModified": "2025-11-22T17:14:50.780Z", + "hashShort": "4403c1bc84b512e0", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://130035719911659", + "huge": true, + "indexDesc": "Hatched from eggs in the 2025 Halloween Event!", + "indexObtainable": true, + "name": "Huge Shark Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://96757523363685", + }, + "configName": "Huge Shark Cat", + "dateCreated": "2025-11-22T17:14:50.778Z", + "dateModified": "2025-11-22T17:14:50.778Z", + "hashShort": "10e126a04aebf351", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://106654404124515", + "huge": true, + "indexDesc": "Crafted in the 2025 Halloween Event!", + "indexObtainable": true, + "name": "Huge Frankenpup Dog", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://89649094845422", + }, + "configName": "Huge Frankenpup Dog", + "dateCreated": "2025-11-22T17:14:50.778Z", + "dateModified": "2025-11-22T17:14:50.778Z", + "hashShort": "abb6250129a425fb", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://137327835746474", + "huge": true, + "indexDesc": "Found in the Autumn World's Diamond Egg!", + "indexObtainable": true, + "name": "Huge Cinnamon Bunny", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://84468265134743", + }, + "configName": "Huge Cinnamon Bunny", + "dateCreated": "2025-11-22T17:14:50.783Z", + "dateModified": "2025-11-22T17:14:50.783Z", + "hashShort": "a4342248ffa4d698", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://128021677305268", + "huge": true, + "indexDesc": "Found in the Autumn World's Diamond Egg!", + "indexObtainable": true, + "name": "Huge Maple Owl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://79022104643180", + }, + "configName": "Huge Maple Owl", + "dateCreated": "2025-11-22T17:14:50.787Z", + "dateModified": "2025-11-22T17:14:50.787Z", + "hashShort": "9fda32f6745eb32e", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://95098312170086", + "huge": true, + "indexDesc": "Found in the Spider Forever Pack!", + "indexObtainable": true, + "name": "Huge Zombie Pig", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://112915612904336", + }, + "configName": "Huge Zombie Pig", + "dateCreated": "2025-11-22T17:14:50.831Z", + "dateModified": "2025-11-22T17:14:50.831Z", + "hashShort": "b1c8520f3630907b", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://113935272235755", + "huge": true, + "indexDesc": "Found in the Autumn Forever Pack!", + "indexObtainable": true, + "name": "Huge Leafy Deer", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://74179288771824", + }, + "configName": "Huge Leafy Deer", + "dateCreated": "2025-11-22T17:14:50.831Z", + "dateModified": "2025-11-22T17:14:50.831Z", + "hashShort": "4ffd244a7bf1e335", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://72507372362292", + "indexDesc": "Crafted in the 2025 Halloween Event!", + "indexObtainable": true, + "name": "Titanic Pumpkin Dog", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://92147535439252", + "titanic": true, + }, + "configName": "Titanic Pumpkin Dog", + "dateCreated": "2025-11-22T17:15:11.736Z", + "dateModified": "2025-11-22T17:15:11.736Z", + "hashShort": "19587bbcd374f532", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://76378167409241", + "indexDesc": "ADMIN ABUSE!!!", + "indexObtainable": true, + "name": "Titanic Pink Lucky Block", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://106313575575295", + "titanic": true, + }, + "configName": "Titanic Pink Lucky Block", + "dateCreated": "2025-11-22T17:15:11.746Z", + "dateModified": "2025-11-22T17:15:11.746Z", + "hashShort": "86fffc7b22012db5", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://72213123444471", + "indexDesc": "Crafted in the 2025 Halloween Event!", + "indexObtainable": true, + "name": "Titanic Witch Wolf", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://74523750699706", + "titanic": true, + }, + "configName": "Titanic Witch Wolf", + "dateCreated": "2025-11-22T17:15:11.747Z", + "dateModified": "2025-11-22T17:15:11.747Z", + "hashShort": "c4b9f39c0dc211ae", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://126378481677950", + "indexDesc": "Found in the Autumn Forever Pack!", + "indexObtainable": true, + "name": "Titanic Dark Fox", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://110119044336998", + "titanic": true, + }, + "configName": "Titanic Dark Fox", + "dateCreated": "2025-11-22T17:15:11.748Z", + "dateModified": "2025-11-22T17:15:11.748Z", + "hashShort": "8ac1e67378f48936", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://125915859659804", + "indexDesc": "Found in the Autumn World's Diamond Egg!", + "indexObtainable": true, + "name": "Titanic Chesnut Chipmunk", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://106520142192819", + "titanic": true, + }, + "configName": "Titanic Chesnut Chipmunk", + "dateCreated": "2025-11-22T17:15:11.764Z", + "dateModified": "2025-11-22T17:15:11.764Z", + "hashShort": "b5a16b19d37bba28", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://130413320148130", + "indexDesc": "Found in the Exclusive Harvest Egg!", + "indexObtainable": true, + "name": "Titanic Spirit Mushroom", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://86911408081625", + "titanic": true, + }, + "configName": "Titanic Spirit Mushroom", + "dateCreated": "2025-11-22T17:15:11.765Z", + "dateModified": "2025-11-22T17:15:11.765Z", + "hashShort": "3049e63e56e6f503", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://98590916686945", + "indexDesc": "Crafted in the 2025 Halloween Event!", + "indexObtainable": true, + "name": "Titanic Devil Tasmanian", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://90163785900987", + "titanic": true, + }, + "configName": "Titanic Devil Tasmanian", + "dateCreated": "2025-11-22T17:15:11.728Z", + "dateModified": "2025-11-22T17:15:11.728Z", + "hashShort": "04be52eb46eceefe", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://133578370770842", + "huge": true, + "indexDesc": "Reward in the 2025 Forged Clan Battle!", + "indexObtainable": true, + "name": "Huge Forged Cyclops", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://108970973027495", + }, + "configName": "Huge Forged Cyclops", + "dateCreated": "2025-12-07T23:02:06.788Z", + "dateModified": "2025-12-07T23:02:06.788Z", + "hashShort": "9a29b6f143fee53f", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://133995403273961", + "huge": true, + "indexDesc": "Reward in the 2025 Forged Clan Battle!", + "indexObtainable": true, + "name": "Huge Forged Robot", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://136825338355926", + }, + "configName": "Huge Forged Robot", + "dateCreated": "2025-12-07T23:02:06.835Z", + "dateModified": "2025-12-07T23:02:06.835Z", + "hashShort": "7747f5bfb6eba751", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://86944132678039", + "huge": true, + "indexDesc": "Found in the Autumn World's Diamond Egg!", + "indexObtainable": true, + "name": "Huge Strawhat Tanuki", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://71139826265802", + }, + "configName": "Huge Strawhat Tanuki", + "dateCreated": "2025-12-07T23:02:06.840Z", + "dateModified": "2025-12-07T23:02:06.840Z", + "hashShort": "4c0d7215f64c813c", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://123393485577044", + "indexDesc": "Found in the Autumn World's Diamond Egg!", + "indexObtainable": true, + "name": "Titanic Persimmony Cricket", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://107901135144472", + "titanic": true, + }, + "configName": "Titanic Persimmony Cricket", + "dateCreated": "2025-12-07T23:02:07.809Z", + "dateModified": "2025-12-07T23:02:07.809Z", + "hashShort": "275053e50d29b4e9", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 5147744053424135, + 5506038738960756, + 5791212060102152, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 275, + "goldenThumbnail": "rbxassetid://110790431542720", + "name": "Merry Mule", + "thumbnail": "rbxassetid://122221060963604", + }, + "configName": "Merry Mule", + "dateCreated": "2025-12-20T17:55:01.226Z", + "dateModified": "2026-06-27T16:05:48.769Z", + "hashShort": "2549d1393a3411a5", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 4419780247889403, + 4777262473821645, + 4972252778875578, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 275, + "goldenThumbnail": "rbxassetid://114303369864863", + "name": "Hot Cocoa Cow", + "thumbnail": "rbxassetid://98202905068472", + }, + "configName": "Hot Cocoa Cow", + "dateCreated": "2025-12-20T17:55:01.222Z", + "dateModified": "2026-06-27T16:05:48.779Z", + "hashShort": "a16c18ce7512a536", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "flyHeight": 0.025, + "flyHeightChange": 0, + "newChristmasLights": true, + "swerve": true, + "swerveAggression": 0, + "swerveMaxAngle": 60, + }, + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "", + "name": "Sleigh Axolotl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://72830984503031", + }, + "configName": "Sleigh Axolotl", + "dateCreated": "2025-12-20T17:55:01.225Z", + "dateModified": "2025-12-20T17:55:01.225Z", + "hashShort": "1e46b4e57aefbc51", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 6070901278913888, + 6589148949065066, + 6829763938778124, + ], + "fly": true, + "fromWorldNumber": 4, + "fromZoneNumber": 275, + "goldenThumbnail": "rbxassetid://101542516893847", + "name": "Snowflake Dragon", + "thumbnail": "rbxassetid://94445512414151", + }, + "configName": "Snowflake Dragon", + "dateCreated": "2025-12-20T17:55:01.228Z", + "dateModified": "2026-06-27T16:05:48.778Z", + "hashShort": "e354932e1c57c03f", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 4679767321294662, + 4972252778875578, + 5264738236456495, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 275, + "goldenThumbnail": "rbxassetid://83607996162332", + "name": "Holly Capybara", + "thumbnail": "rbxassetid://82042197331507", + }, + "configName": "Holly Capybara", + "dateCreated": "2025-12-20T17:55:01.230Z", + "dateModified": "2026-06-27T16:05:48.780Z", + "hashShort": "7e3a32b648bcb85f", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 4159793174484144, + 4419780247889403, + 4679767321294662, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 275, + "goldenThumbnail": "rbxassetid://123271119994122", + "name": "Pajamas Shark", + "thumbnail": "rbxassetid://105615626984785", + }, + "configName": "Pajamas Shark", + "dateCreated": "2025-12-20T17:55:01.232Z", + "dateModified": "2026-06-27T16:05:48.769Z", + "hashShort": "eab8532f0e2f7de8", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 6441078186164735, + 6913053742909583, + 7246212959435327, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 275, + "goldenThumbnail": "rbxassetid://85020350721710", + "name": "Hippomint", + "thumbnail": "rbxassetid://122611499107000", + }, + "configName": "Hippomint", + "dateCreated": "2025-12-20T17:55:01.235Z", + "dateModified": "2026-06-27T16:05:48.777Z", + "hashShort": "87135a306c99c8b6", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 7496082371829658, + 7964587520069012, + 8433092668308365, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 275, + "goldenThumbnail": "rbxassetid://89795934768103", + "name": "Elf Golem", + "thumbnail": "rbxassetid://88802798169372", + }, + "configName": "Elf Golem", + "dateCreated": "2025-12-20T17:55:01.240Z", + "dateModified": "2026-06-27T16:05:48.785Z", + "hashShort": "1da4321d7718a09f", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "spinZ": true, + }, + "cachedPower": [ + 7162923155303915, + 7714718107674704, + 8058288549716904, + ], + "fly": true, + "fromWorldNumber": 4, + "fromZoneNumber": 275, + "goldenThumbnail": "rbxassetid://110335079976301", + "name": "Gingerbread Angelus", + "thumbnail": "rbxassetid://106821295967312", + }, + "configName": "Gingerbread Angelus", + "dateCreated": "2025-12-20T17:55:01.243Z", + "dateModified": "2026-06-27T16:05:48.782Z", + "hashShort": "bdc8b9860a30ee04", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "newChristmasLights": true, + "newChristmasLightsMaxCount": 3, + }, + "cachedPower": [ + 5659593604190747, + 6095579739397297, + 6367042804714591, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 275, + "goldenThumbnail": "rbxassetid://140004284716967", + "name": "Evergreen Unicorn", + "thumbnail": "rbxassetid://121505020973211", + }, + "configName": "Evergreen Unicorn", + "dateCreated": "2025-12-20T17:55:01.242Z", + "dateModified": "2026-06-27T16:05:48.789Z", + "hashShort": "46e424b212dbe51e", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "newChristmasLights": true, + }, + "cachedPower": [ + 4913755687359382, + 5330547464412179, + 5527975148279305, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 275, + "goldenThumbnail": "rbxassetid://140120193907115", + "name": "Lit Loris", + "thumbnail": "rbxassetid://132018736947960", + }, + "configName": "Lit Loris", + "dateCreated": "2025-12-20T17:55:01.243Z", + "dateModified": "2026-06-27T16:05:48.791Z", + "hashShort": "fe4eb37cc996bfe3", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 5396356692367900, + 5857021288057836, + 6070901278913888, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 275, + "goldenThumbnail": "rbxassetid://94355882980732", + "name": "Krampus", + "thumbnail": "rbxassetid://112506366069957", + }, + "configName": "Krampus", + "dateCreated": "2025-12-20T17:55:01.249Z", + "dateModified": "2026-06-27T16:05:48.768Z", + "hashShort": "e99375decdb18915", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 6663184330515252, + 7079633351172455, + 7496082371829658, + ], + "fly": true, + "fromWorldNumber": 4, + "fromZoneNumber": 275, + "goldenThumbnail": "rbxassetid://115814039481523", + "name": "Holiday Owl", + "thumbnail": "rbxassetid://112489051233386", + }, + "configName": "Holiday Owl", + "dateCreated": "2025-12-20T17:55:01.244Z", + "dateModified": "2026-06-27T16:05:48.787Z", + "hashShort": "6aefd82452e2b447", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "newChristmasLights": true, + "newChristmasLightsMaxCount": 2, + }, + "cachedPower": [ + 5857021288057836, + 6243650502297628, + 6589148949065066, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 275, + "goldenThumbnail": "rbxassetid://120072935329701", + "name": "Deerserker", + "thumbnail": "rbxassetid://122833058868009", + }, + "configName": "Deerserker", + "dateCreated": "2025-12-20T17:55:01.246Z", + "dateModified": "2026-06-27T16:05:48.809Z", + "hashShort": "19ae5ffec0cdd47c", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 2, + "goldenThumbnail": "", + "name": "Snowflake Lattice Tiger", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://129205407698376", + }, + "configName": "Snowflake Lattice Tiger", + "dateCreated": "2025-12-20T17:55:01.249Z", + "dateModified": "2025-12-20T17:55:01.249Z", + "hashShort": "a890ac7709ec8ac2", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 3697593932874795, + 3928693553679469, + 4159793174484144, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 275, + "goldenThumbnail": "rbxassetid://122906621669981", + "name": "Festive Bunny", + "thumbnail": "rbxassetid://92219957566768", + }, + "configName": "Festive Bunny", + "dateCreated": "2025-12-20T17:55:01.245Z", + "dateModified": "2026-06-27T16:05:48.783Z", + "hashShort": "98bf510da561e2b2", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 6913053742909583, + 7527316048378973, + 7777185460773281, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 275, + "goldenThumbnail": "rbxassetid://75131329618029", + "name": "Candycane Kitsune", + "thumbnail": "rbxassetid://79961132196773", + }, + "configName": "Candycane Kitsune", + "dateCreated": "2025-12-20T17:55:01.247Z", + "dateModified": "2026-06-27T16:05:48.767Z", + "hashShort": "f53fc4c45f08794b", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.3, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.7, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.3, + }, + "exclusiveLevel": 1, + "goldenThumbnail": "", + "name": "Ice Cube Penguin", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://129445222369569", + }, + "configName": "Ice Cube Penguin", + "dateCreated": "2025-12-20T17:55:01.254Z", + "dateModified": "2025-12-20T17:55:01.254Z", + "hashShort": "215342833a6b6903", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "gargantuan": true, + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Ice Cube Egg! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Cookie Cut Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://124818572217039", + }, + "configName": "Gargantuan Cookie Cut Cat", + "dateCreated": "2025-12-20T17:55:01.258Z", + "dateModified": "2025-12-20T17:55:01.258Z", + "hashShort": "de7e396f9a7e18df", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "fly": true, + "gargantuan": true, + "goldenThumbnail": "rbxassetid://87282916116246", + "indexDesc": "ADMIN ABUSE!!! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Blurred Agony", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://72042454012987", + }, + "configName": "Gargantuan Blurred Agony", + "dateCreated": "2025-12-20T17:55:01.263Z", + "dateModified": "2025-12-20T17:55:01.263Z", + "hashShort": "d576512e50127df7", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "gargantuan": true, + "goldenThumbnail": "rbxassetid://91310761162733", + "indexDesc": "Found in the 2025 Gargantuan Present! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Elf Golem", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://83433844494349", + }, + "configName": "Gargantuan Elf Golem", + "dateCreated": "2025-12-20T17:55:01.279Z", + "dateModified": "2026-04-18T15:56:01.668Z", + "hashShort": "14a7fba229341e89", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "animations": { + "christmasLights": true, + }, + "goldenThumbnail": "rbxassetid://83453573625211", + "indexDesc": "Found in The Forever Pack!", + "indexObtainable": true, + "name": "Titanic Reindeer Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://119319411340325", + "titanic": true, + }, + "configName": "Titanic Reindeer Cat", + "dateCreated": "2025-12-20T17:55:02.825Z", + "dateModified": "2025-12-20T17:55:02.825Z", + "hashShort": "37d03d7b3bce4b39", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://79890056962254", + "indexDesc": "Earned from 2025 Christmas Raffles!", + "indexObtainable": true, + "name": "Titanic Hippomint", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://118720066911760", + "titanic": true, + }, + "configName": "Titanic Hippomint", + "dateCreated": "2025-12-20T17:55:02.824Z", + "dateModified": "2025-12-20T17:55:02.824Z", + "hashShort": "f93604288e5447f8", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Ice Cube Egg!", + "indexObtainable": true, + "name": "Titanic Snow Globe Snowman", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "roll": true, + "thumbnail": "rbxassetid://78333791441483", + "titanic": true, + }, + "configName": "Titanic Snow Globe Snowman", + "dateCreated": "2025-12-20T17:55:02.826Z", + "dateModified": "2025-12-20T17:55:02.826Z", + "hashShort": "72ba1054a346d4da", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://131946586533017", + "indexDesc": "Found by lockpicking the 2025 Grinch Cove doors!", + "indexObtainable": true, + "name": "Titanic Holiday Owl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://116557921050130", + "titanic": true, + }, + "configName": "Titanic Holiday Owl", + "dateCreated": "2025-12-20T17:55:02.827Z", + "dateModified": "2025-12-20T17:55:02.827Z", + "hashShort": "d433159464903069", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "animations": { + "spinZ": true, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://105679018203772", + "indexDesc": "Found in the 2025 Gargantuan Present!", + "indexObtainable": true, + "name": "Titanic Gingerbread Angelus", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://135459719245097", + "titanic": true, + }, + "configName": "Titanic Gingerbread Angelus", + "dateCreated": "2025-12-20T17:55:02.824Z", + "dateModified": "2025-12-20T17:55:02.824Z", + "hashShort": "2a58080fd735eca7", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://116515172749638", + "indexDesc": "ADMIN ABUSE!!!", + "indexObtainable": true, + "name": "Titanic Night Terror Dog", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://112505092769187", + "titanic": true, + }, + "configName": "Titanic Night Terror Dog", + "dateCreated": "2025-12-20T17:55:02.827Z", + "dateModified": "2025-12-20T17:55:02.827Z", + "hashShort": "002bd1721fd6f901", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://90391750255707", + "indexDesc": "Found in the 2025 Silver Clan Battle!", + "indexObtainable": true, + "name": "Titanic Silver Stag", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://139456404804245", + "titanic": true, + }, + "configName": "Titanic Silver Stag", + "dateCreated": "2025-12-20T17:55:02.828Z", + "dateModified": "2025-12-20T17:55:02.828Z", + "hashShort": "77e5275f9ff9f1ca", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "animations": { + "newChristmasLights": true, + "newChristmasLightsMaxCount": 2, + }, + "goldenThumbnail": "rbxassetid://79879906596709", + "huge": true, + "indexDesc": "Found in the 2025 Gargantuan Present!", + "indexObtainable": true, + "name": "Huge Deerserker", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://74968067485946", + }, + "configName": "Huge Deerserker", + "dateCreated": "2025-12-20T17:55:08.604Z", + "dateModified": "2025-12-20T17:55:08.604Z", + "hashShort": "13db981055d44c38", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://106735755239087", + "huge": true, + "indexDesc": "Found by lockpicking the 2025 Grinch Cove doors!", + "indexObtainable": true, + "name": "Huge Holiday Owl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://84549305486932", + }, + "configName": "Huge Holiday Owl", + "dateCreated": "2025-12-20T17:55:08.612Z", + "dateModified": "2025-12-20T17:55:08.612Z", + "hashShort": "4d49085d2b639d50", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://70627909958216", + "huge": true, + "indexDesc": "Found in Santa's Cottage!", + "indexObtainable": true, + "name": "Huge Candycane Kitsune", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://74407552054754", + }, + "configName": "Huge Candycane Kitsune", + "dateCreated": "2025-12-20T17:55:08.621Z", + "dateModified": "2025-12-20T17:55:08.621Z", + "hashShort": "8dd56bfe329ce02c", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "animations": { + "spinZ": true, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://126457354721866", + "huge": true, + "indexDesc": "Found in The Forever Pack!", + "indexObtainable": true, + "name": "Huge Gingerbread Angelus", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://137630213066675", + }, + "configName": "Huge Gingerbread Angelus", + "dateCreated": "2025-12-20T17:55:08.622Z", + "dateModified": "2025-12-20T17:55:08.622Z", + "hashShort": "59f04852e1c92fd7", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://119911087877217", + "huge": true, + "indexDesc": "Earned from the 2025 Christmas Leaderboard!", + "indexObtainable": true, + "name": "Huge Elf Golem", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://119266692715617", + }, + "configName": "Huge Elf Golem", + "dateCreated": "2025-12-20T17:55:08.625Z", + "dateModified": "2025-12-20T17:55:08.625Z", + "hashShort": "318f289b76d8108f", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "animations": { + "newChristmasLights": true, + "newChristmasLightsMaxCount": 3, + }, + "goldenThumbnail": "rbxassetid://107591936673180", + "huge": true, + "indexDesc": "Found in the 2025 Gargantuan Present!", + "indexObtainable": true, + "name": "Huge Evergreen Unicorn", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://102257239631594", + }, + "configName": "Huge Evergreen Unicorn", + "dateCreated": "2025-12-20T17:55:08.626Z", + "dateModified": "2025-12-20T17:55:08.626Z", + "hashShort": "3e555bed444d0399", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://94004105235581", + "huge": true, + "indexDesc": "Earned from the Grinch Ice Blocks!", + "indexObtainable": true, + "name": "Huge Snowflake Dragon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://113631496802759", + }, + "configName": "Huge Snowflake Dragon", + "dateCreated": "2025-12-20T17:55:08.627Z", + "dateModified": "2025-12-20T17:55:08.627Z", + "hashShort": "3d92b90d016f3269", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://109561295762897", + "huge": true, + "indexDesc": "Found in The Forever Pack!", + "indexObtainable": true, + "name": "Huge Hippomint", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://105962472084546", + }, + "configName": "Huge Hippomint", + "dateCreated": "2025-12-20T17:55:08.629Z", + "dateModified": "2025-12-20T17:55:08.629Z", + "hashShort": "cbc9b3e15f87fbf0", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://71778021543437", + "huge": true, + "indexDesc": "Found in 2025 Grinch Raid minigame!", + "indexObtainable": true, + "name": "Huge Krampus", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://127076260732138", + }, + "configName": "Huge Krampus", + "dateCreated": "2025-12-20T17:55:08.823Z", + "dateModified": "2025-12-20T17:55:08.823Z", + "hashShort": "fd612197b7a4aa12", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://87334053811385", + "huge": true, + "indexDesc": "Reward in the 2025 Silver Clan Battle!", + "indexObtainable": true, + "name": "Huge Silver Bison", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://84066657205534", + }, + "configName": "Huge Silver Bison", + "dateCreated": "2025-12-20T17:55:08.829Z", + "dateModified": "2025-12-20T17:55:08.829Z", + "hashShort": "536af1ea98b3af40", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://83204409551267", + "huge": true, + "indexDesc": "Earned from the 2025 Huge Train Gifts!", + "indexObtainable": true, + "name": "Huge Holly Capybara", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://113623794189618", + }, + "configName": "Huge Holly Capybara", + "dateCreated": "2025-12-20T17:55:09.905Z", + "dateModified": "2025-12-20T17:55:09.905Z", + "hashShort": "c10b5408fa2f6730", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://71876126512341", + "huge": true, + "indexDesc": "ADMIN ABUSE!!!", + "indexObtainable": true, + "name": "Huge Sacred Deer", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://100676817290108", + }, + "configName": "Huge Sacred Deer", + "dateCreated": "2025-12-20T17:55:09.906Z", + "dateModified": "2025-12-20T17:55:09.906Z", + "hashShort": "29fd72ef8734784c", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://122257451279360", + "huge": true, + "indexDesc": "Earned from the 2025 Christmas Event's final egg!", + "indexObtainable": true, + "name": "Huge Merry Mule", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://123118912547385", + }, + "configName": "Huge Merry Mule", + "dateCreated": "2025-12-20T17:55:09.907Z", + "dateModified": "2025-12-20T17:55:09.907Z", + "hashShort": "b7f11c37a0e423ff", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://98385834649720", + "huge": true, + "indexDesc": "Earned from defeating the 2025 Snowman Boss!", + "indexObtainable": true, + "name": "Huge Frostbyte Snowman", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://97928657452308", + }, + "configName": "Huge Frostbyte Snowman", + "dateCreated": "2025-12-20T17:55:09.908Z", + "dateModified": "2025-12-20T17:55:09.908Z", + "hashShort": "1f078695c0891c72", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://88762866405452", + "huge": true, + "indexDesc": "Found in the 2025 Holiday statue puzzle!", + "indexObtainable": true, + "name": "Huge Festive Walrus", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://130656165679355", + }, + "configName": "Huge Festive Walrus", + "dateCreated": "2025-12-20T17:55:09.920Z", + "dateModified": "2025-12-20T17:55:09.920Z", + "hashShort": "725c3718cc2e0f6a", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://112409305444259", + "huge": true, + "indexDesc": "Earned from the 2025 Advent Calendar!", + "indexObtainable": true, + "name": "Huge Festive Bunny", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://123556636544814", + }, + "configName": "Huge Festive Bunny", + "dateCreated": "2025-12-20T17:55:09.910Z", + "dateModified": "2025-12-20T17:55:09.910Z", + "hashShort": "67d7cc407cd017fc", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "animations": { + "newChristmasLights": true, + }, + "goldenThumbnail": "rbxassetid://105594109002512", + "huge": true, + "indexDesc": "Earned from rebirthing your Christmas Tree in the 2025 Christmas Event!", + "indexObtainable": true, + "name": "Huge Lit Loris", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://132382180739478", + }, + "configName": "Huge Lit Loris", + "dateCreated": "2025-12-20T17:55:09.911Z", + "dateModified": "2025-12-20T17:55:09.911Z", + "hashShort": "a0c1e80b6f70b2d0", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "animations": { + "christmasLights": true, + }, + "goldenThumbnail": "rbxassetid://91417588684587", + "huge": true, + "indexDesc": "Earned from 2025 Christmas Raffles!", + "indexObtainable": true, + "name": "Huge Reindeer Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://130929080368183", + }, + "configName": "Huge Reindeer Cat", + "dateCreated": "2025-12-20T17:55:09.912Z", + "dateModified": "2025-12-20T17:55:09.912Z", + "hashShort": "c8594a8509f63564", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://129676692343548", + "huge": true, + "indexDesc": "Found in the final Christmas Egg when you discover the Elf on a Shelf!", + "indexObtainable": true, + "name": "Huge Pajamas Shark", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://101224115872445", + }, + "configName": "Huge Pajamas Shark", + "dateCreated": "2025-12-20T17:55:09.913Z", + "dateModified": "2025-12-20T17:55:09.913Z", + "hashShort": "e4c44a545d057800", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://72013262865146", + "huge": true, + "indexDesc": "Dropped from the 2025 Santa Paws Sleigh!", + "indexObtainable": true, + "name": "Huge Hot Cocoa Cow", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://94419678057049", + }, + "configName": "Huge Hot Cocoa Cow", + "dateCreated": "2025-12-20T17:55:09.909Z", + "dateModified": "2025-12-20T17:55:09.909Z", + "hashShort": "483cf160c69e8f34", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "animations": { + "vertexColorAnim": [ + { + "Time": 0, + "Value": null, + }, + { + "Time": 0.3, + "Value": null, + }, + { + "Time": 0.5, + "Value": null, + }, + { + "Time": 0.7, + "Value": null, + }, + { + "Time": 1, + "Value": null, + }, + ], + "vertexColorAnimSpeed": 0.3, + }, + "goldenThumbnail": "rbxassetid://136798360960954", + "huge": true, + "indexDesc": "Found in the Exclusive Ice Cube Egg!", + "indexObtainable": true, + "name": "Huge Ice Cube Penguin", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://70749719164578", + }, + "configName": "Huge Ice Cube Penguin", + "dateCreated": "2025-12-20T17:55:09.921Z", + "dateModified": "2025-12-20T17:55:09.921Z", + "hashShort": "3fed0d950ae842bd", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://83453644056863", + "huge": true, + "indexDesc": "Found in the Candycane Gift!", + "indexObtainable": true, + "name": "Huge Candycane Unicorn", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://96812489225423", + }, + "configName": "Huge Candycane Unicorn", + "dateCreated": "2025-12-20T17:55:09.923Z", + "dateModified": "2025-12-20T17:55:09.923Z", + "hashShort": "2e14a4fa02ced9c5", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "animations": { + "flyHeight": 0.025, + "flyHeightChange": 0, + "newChristmasLights": true, + "swerve": true, + "swerveAggression": 0, + "swerveMaxAngle": 60, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://117925621767232", + "huge": true, + "indexDesc": "Found in the Exclusive Ice Cube Egg!", + "indexObtainable": true, + "name": "Huge Sleigh Axolotl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://77508464202964", + }, + "configName": "Huge Sleigh Axolotl", + "dateCreated": "2025-12-20T17:55:09.922Z", + "dateModified": "2025-12-20T17:55:09.922Z", + "hashShort": "a585c07e6549b5dc", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://81556427591677", + "huge": true, + "indexDesc": "Found in the Santa Gift!", + "indexObtainable": true, + "name": "Huge Present Dragon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://78320766313104", + }, + "configName": "Huge Present Dragon", + "dateCreated": "2025-12-20T17:55:09.912Z", + "dateModified": "2025-12-20T17:55:09.912Z", + "hashShort": "43b0243410dc9ba4", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://14976368012", + "huge": true, + "indexDesc": "Found in the ADMIN ABUSE!", + "indexObtainable": true, + "name": "Huge Bluebird", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://14976368196", + }, + "configName": "Huge Bluebird", + "dateCreated": "2026-03-14T15:52:10.531Z", + "dateModified": "2026-03-14T15:52:10.531Z", + "hashShort": "961e06891a07c889", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://91830778554418", + "huge": true, + "indexDesc": "Earned from the St. Patricks Leaderboard Contest!", + "indexObtainable": true, + "name": "Huge Leprechaun Kitsune", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://100650487607408", + }, + "configName": "Huge Leprechaun Kitsune", + "dateCreated": "2026-03-14T15:52:13.761Z", + "dateModified": "2026-03-14T15:52:13.761Z", + "hashShort": "e2d6b461c7af9b54", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://115899054713183", + "huge": true, + "indexDesc": "Found in St. Patrick's Forever Pack!", + "indexObtainable": true, + "name": "Huge Horseshoe Capybara", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://79249687154942", + }, + "configName": "Huge Horseshoe Capybara", + "dateCreated": "2026-03-14T15:52:13.763Z", + "dateModified": "2026-03-14T15:52:13.763Z", + "hashShort": "0fe5c639ecaf9f06", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://122555437442630", + "huge": true, + "indexDesc": "Found in St. Patrick's Forever Pack!", + "indexObtainable": true, + "name": "Huge Lucki Dominus", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://78303914095670", + }, + "configName": "Huge Lucki Dominus", + "dateCreated": "2026-03-14T15:52:13.763Z", + "dateModified": "2026-03-14T15:52:13.763Z", + "hashShort": "2417ec3331d7d4af", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://112767647108472", + "huge": true, + "indexDesc": "Found in the 2025 Gargantuan Present!", + "indexObtainable": true, + "name": "Huge Gingerbread Lion", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://113905049892073", + }, + "configName": "Huge Gingerbread Lion", + "dateCreated": "2026-03-14T15:52:13.765Z", + "dateModified": "2026-03-14T15:52:13.765Z", + "hashShort": "ad57c1bb75576b0c", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://77489390510641", + "huge": true, + "indexDesc": "Dropped from the 2025 Polar Express!", + "indexObtainable": true, + "name": "Huge Hot Cocoa Bear", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://103081269967606", + }, + "configName": "Huge Hot Cocoa Bear", + "dateCreated": "2026-03-14T15:52:13.763Z", + "dateModified": "2026-03-14T15:52:13.763Z", + "hashShort": "9cd419cb64741c4c", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://73031810204265", + "huge": true, + "indexDesc": "Found in St. Patrick's Horseshoe Gifts!", + "indexObtainable": true, + "name": "Huge Clover Penguin", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://70700548399137", + }, + "configName": "Huge Clover Penguin", + "dateCreated": "2026-03-14T15:52:13.770Z", + "dateModified": "2026-03-14T15:52:13.770Z", + "hashShort": "bdbd4cd26b3cb4b2", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://79183827299631", + "huge": true, + "indexDesc": "Earned from the St. Patricks Max Level Raid Race!", + "indexObtainable": true, + "name": "Huge Lucki Chest Mimic", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://76209866418616", + }, + "configName": "Huge Lucki Chest Mimic", + "dateCreated": "2026-03-14T15:52:13.768Z", + "dateModified": "2026-03-14T15:52:13.768Z", + "hashShort": "756dc461a56c60f9", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "animations": { + "replacementPool": [ + [ + 1, + 0.5, + ], + [ + 2, + 0.2, + ], + [ + 3, + 0.15, + ], + [ + 4, + 0.1, + ], + [ + 5, + 0.05, + ], + ], + "replacements": [ + { + "desc": "Comes with a Clover inside! (50%)", + "dst": null, + "isUnique": true, + "title": "Glass", + }, + { + "desc": "Comes with a Heart inside! (20%)", + "dst": null, + "isUnique": true, + "title": "Glass", + }, + { + "desc": "Comes with a Rainbow inside! (15%)", + "dst": null, + "isUnique": true, + "title": "Glass", + }, + { + "desc": "Comes with a Question inside! (10%)", + "dst": null, + "isUnique": true, + "title": "Glass", + }, + { + "desc": "Comes with a Crown inside! (5%)", + "dst": null, + "isUnique": true, + "title": "Glass", + }, + ], + }, + "goldenThumbnail": "", + "huge": true, + "indexDesc": "Found in the Exclusive Glass Egg!", + "indexObtainable": true, + "name": "Huge Glass Crocodile", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://85063221597865", + }, + "configName": "Huge Glass Crocodile", + "dateCreated": "2026-03-14T15:52:13.768Z", + "dateModified": "2026-03-14T15:52:13.768Z", + "hashShort": "f61cbd5173034bc6", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://74004574253824", + "huge": true, + "indexDesc": "Hatched from 2025 New Year's Gifts!", + "indexObtainable": true, + "name": "Huge Party Crown Hippomelon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://105303258618878", + }, + "configName": "Huge Party Crown Hippomelon", + "dateCreated": "2026-03-14T15:52:13.769Z", + "dateModified": "2026-03-14T15:52:13.769Z", + "hashShort": "f4123905f748a596", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://131383171037485", + "huge": true, + "indexDesc": "Defeat the Tier 3 Lucky Raid Boss!", + "indexObtainable": true, + "name": "Huge Clover Phoenix", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://121888921741628", + }, + "configName": "Huge Clover Phoenix", + "dateCreated": "2026-03-14T15:52:13.777Z", + "dateModified": "2026-03-14T15:52:13.777Z", + "hashShort": "09ac94dc1b74bb25", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://81519258004613", + "huge": true, + "indexDesc": "Found in all the St. Patrick's event eggs!", + "indexObtainable": true, + "name": "Huge Lucki Lamb", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://95284321977172", + }, + "configName": "Huge Lucki Lamb", + "dateCreated": "2026-03-14T15:52:13.767Z", + "dateModified": "2026-03-14T15:52:13.767Z", + "hashShort": "011fae0af10eff55", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://131325955190587", + "huge": true, + "indexDesc": "Obtained from the 2025 Christmas Crafting Machine!", + "indexObtainable": true, + "name": "Huge Festive Bear", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://71088229378334", + }, + "configName": "Huge Festive Bear", + "dateCreated": "2026-03-14T15:52:13.766Z", + "dateModified": "2026-03-14T15:52:13.766Z", + "hashShort": "b672cf7eea33d1d0", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://89990811689959", + "huge": true, + "indexDesc": "Defeat the Tier 2 Lucky Raid Boss!", + "indexObtainable": true, + "name": "Huge Clover Deer", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://79851172093222", + }, + "configName": "Huge Clover Deer", + "dateCreated": "2026-03-14T15:52:13.770Z", + "dateModified": "2026-03-14T15:52:13.770Z", + "hashShort": "57ec269a07382772", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://134747649972906", + "huge": true, + "indexDesc": "Earned from 2025 Christmas Raffles!", + "indexObtainable": true, + "name": "Huge Festive Seal", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://121873386766313", + }, + "configName": "Huge Festive Seal", + "dateCreated": "2026-03-14T15:52:13.767Z", + "dateModified": "2026-03-14T15:52:13.767Z", + "hashShort": "454b8eed7d4cfb17", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://117449670532782", + "huge": true, + "indexDesc": "Obtained from the 2025 Christmas Crafting Machine!", + "indexObtainable": true, + "name": "Huge Candycane Shake Shark", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://131205167107422", + }, + "configName": "Huge Candycane Shake Shark", + "dateCreated": "2026-03-14T15:52:13.767Z", + "dateModified": "2026-03-14T15:52:13.767Z", + "hashShort": "05e8bdcab7f2028b", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://139752499195542", + "huge": true, + "indexDesc": "Found in the 2025 Gargantuan Present!", + "indexObtainable": true, + "name": "Huge Nutcracker Bunny", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://134436276835311", + }, + "configName": "Huge Nutcracker Bunny", + "dateCreated": "2026-03-14T15:52:13.770Z", + "dateModified": "2026-03-14T15:52:13.770Z", + "hashShort": "7ecbe534e2d74204", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://92306271933313", + "huge": true, + "indexDesc": "Reward in the 2026 Clover Clan Battle!", + "indexObtainable": true, + "name": "Huge Clover Owl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://138442898804320", + }, + "configName": "Huge Clover Owl", + "dateCreated": "2026-03-14T15:52:13.769Z", + "dateModified": "2026-03-14T15:52:13.769Z", + "hashShort": "365955f32fe5f7b2", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://118954271328196", + "huge": true, + "indexDesc": "Defeat the Tier 1 Lucky Raid Boss!", + "indexObtainable": true, + "name": "Huge Lucki Horse", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://116756676652534", + }, + "configName": "Huge Lucki Horse", + "dateCreated": "2026-03-14T15:52:13.773Z", + "dateModified": "2026-03-14T15:52:13.773Z", + "hashShort": "1fe29020b7a47922", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "animations": { + "replacementPool": [ + [ + 1, + 0.5, + ], + [ + 2, + 0.2, + ], + [ + 3, + 0.15, + ], + [ + 4, + 0.1, + ], + [ + 5, + 0.05, + ], + ], + "replacements": [ + { + "desc": "Comes with a Clover inside! (50%)", + "dst": null, + "isUnique": true, + "title": "Glass", + }, + { + "desc": "Comes with a Heart inside! (20%)", + "dst": null, + "isUnique": true, + "title": "Glass", + }, + { + "desc": "Comes with a Rainbow inside! (15%)", + "dst": null, + "isUnique": true, + "title": "Glass", + }, + { + "desc": "Comes with a Question inside! (10%)", + "dst": null, + "isUnique": true, + "title": "Glass", + }, + { + "desc": "Comes with a Crown inside! (5%)", + "dst": null, + "isUnique": true, + "title": "Glass", + }, + ], + }, + "goldenThumbnail": "", + "huge": true, + "indexDesc": "Found in the Exclusive Glass Egg!", + "indexObtainable": true, + "name": "Huge Glass Dominus", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://72368340879061", + }, + "configName": "Huge Glass Dominus", + "dateCreated": "2026-03-14T15:52:13.774Z", + "dateModified": "2026-03-14T15:52:13.774Z", + "hashShort": "3b64298badc9cb0d", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://75476895392087", + "huge": true, + "indexDesc": "Found in the Leprechaun Chest at the end of Lucky Raids!", + "indexObtainable": true, + "name": "Huge Pot of Gold Corgi", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://106744072159762", + }, + "configName": "Huge Pot of Gold Corgi", + "dateCreated": "2026-03-14T15:52:13.791Z", + "dateModified": "2026-03-14T15:52:13.791Z", + "hashShort": "ccb549b358503043", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 499259495943348, + 530463214439808, + 561666932936267, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 274, + "goldenThumbnail": "rbxassetid://76067977241113", + "name": "Pot of Gold Corgi", + "thumbnail": "rbxassetid://102052453611546", + }, + "configName": "Pot of Gold Corgi", + "dateCreated": "2026-03-14T15:52:18.434Z", + "dateModified": "2026-06-27T16:05:40.167Z", + "hashShort": "160e8c8563919d6d", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 3, + "goldenThumbnail": "", + "name": "Glass Dominus", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://139016294644183", + }, + "configName": "Glass Dominus", + "dateCreated": "2026-03-14T15:52:20.288Z", + "dateModified": "2026-03-14T15:52:20.288Z", + "hashShort": "85d8cd07fea6543f", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 267818433125640, + 287443059690880, + 301295737266345, + ], + "fly": true, + "fromWorldNumber": 4, + "fromZoneNumber": 274, + "goldenThumbnail": "rbxassetid://90667791737338", + "name": "Lucki Lamb", + "thumbnail": "rbxassetid://95074539652751", + }, + "configName": "Lucki Lamb", + "dateCreated": "2026-03-14T15:52:20.295Z", + "dateModified": "2026-06-27T16:05:48.804Z", + "hashShort": "bd9c8c76db6fb175", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 246269823563807, + ], + "fly": true, + "fromWorldNumber": 4, + "fromZoneNumber": 274, + "goldenThumbnail": "rbxassetid://91572708696586", + "name": "Lucki Snake", + "thumbnail": "rbxassetid://96935563884493", + }, + "configName": "Lucki Snake", + "dateCreated": "2026-03-14T15:52:20.296Z", + "dateModified": "2026-03-14T15:52:20.296Z", + "hashShort": "3db6a979cba3f58b", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 542944701838391, + 582729442921376, + 610812789568190, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 274, + "goldenThumbnail": "rbxassetid://140017668173104", + "name": "Leprechaun Kitsune", + "thumbnail": "rbxassetid://135594101632985", + }, + "configName": "Leprechaun Kitsune", + "dateCreated": "2026-03-14T15:52:20.294Z", + "dateModified": "2026-06-27T16:05:48.795Z", + "hashShort": "aab95be3863cc9b0", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 454880874081717, + 493712168210643, + 511740983341931, + ], + "fly": true, + "fromWorldNumber": 4, + "fromZoneNumber": 274, + "goldenThumbnail": "rbxassetid://118913985738850", + "name": "Clover Owl", + "thumbnail": "rbxassetid://134803481516009", + }, + "configName": "Clover Owl", + "dateCreated": "2026-03-14T15:52:20.298Z", + "dateModified": "2026-06-27T16:05:48.806Z", + "hashShort": "39a283c46cd1cd07", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 631875299553300, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 274, + "goldenThumbnail": "rbxassetid://130672346712543", + "name": "Lucki Golem", + "thumbnail": "rbxassetid://121870156885729", + }, + "configName": "Lucki Golem", + "dateCreated": "2026-03-14T15:52:20.296Z", + "dateModified": "2026-03-14T15:52:20.296Z", + "hashShort": "ad167a9611f9e894", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 294369398478613, + 318178688061442, + 331165573288440, + ], + "fly": true, + "fromWorldNumber": 4, + "fromZoneNumber": 274, + "goldenThumbnail": "rbxassetid://100307139612491", + "name": "Lucki Horse", + "thumbnail": "rbxassetid://131130473131065", + }, + "configName": "Lucki Horse", + "dateCreated": "2026-03-14T15:52:20.297Z", + "dateModified": "2026-06-27T16:05:48.808Z", + "hashShort": "7f844ce08e31adab", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 2, + "goldenThumbnail": "", + "name": "Glass Kraken", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://106435290275347", + }, + "configName": "Glass Kraken", + "dateCreated": "2026-03-14T15:52:20.300Z", + "dateModified": "2026-03-14T15:52:20.300Z", + "hashShort": "29d0a291afc328d7", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 319477376584141, + 346749835560836, + 359412048657159, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 274, + "goldenThumbnail": "rbxassetid://111480134941694", + "name": "Clover Penguin", + "thumbnail": "rbxassetid://134818788820876", + }, + "configName": "Clover Penguin", + "dateCreated": "2026-03-14T15:52:20.300Z", + "dateModified": "2026-06-27T16:05:48.798Z", + "hashShort": "c6d30d269642f85d", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 419131428693181, + 453031764837482, + 471522857279829, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 274, + "goldenThumbnail": "rbxassetid://117752985961762", + "name": "Clover Deer", + "thumbnail": "rbxassetid://131935811250502", + }, + "configName": "Clover Deer", + "dateCreated": "2026-03-14T15:52:20.297Z", + "dateModified": "2026-06-27T16:05:48.805Z", + "hashShort": "2b7316b45b4db3bf", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 596771116244784, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 274, + "goldenThumbnail": "rbxassetid://139151460125355", + "name": "Lucki Chest Mimic", + "thumbnail": "rbxassetid://88750251330546", + }, + "configName": "Lucki Chest Mimic", + "dateCreated": "2026-03-14T15:52:20.303Z", + "dateModified": "2026-03-14T15:52:20.303Z", + "hashShort": "2864832f0f296355", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 350645901128936, + 372561269949495, + 394476638770053, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 274, + "goldenThumbnail": "rbxassetid://103107029545692", + "name": "Horseshoe Capybara", + "thumbnail": "rbxassetid://89633804095403", + }, + "configName": "Horseshoe Capybara", + "dateCreated": "2026-03-14T15:52:20.298Z", + "dateModified": "2026-06-27T16:05:48.809Z", + "hashShort": "f3fa6c0e412ca1b0", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 1, + "goldenThumbnail": "", + "name": "Glass Crocodile", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://127362746898839", + }, + "configName": "Glass Crocodile", + "dateCreated": "2026-03-14T15:52:20.311Z", + "dateModified": "2026-03-14T15:52:20.311Z", + "hashShort": "8ed9d7e85af5fbcc", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 381327417477717, + 409269512723929, + 428993344662432, + ], + "fly": true, + "fromWorldNumber": 4, + "fromZoneNumber": 274, + "goldenThumbnail": "rbxassetid://87253693430562", + "name": "Clover Phoenix", + "thumbnail": "rbxassetid://124973053353816", + }, + "configName": "Clover Phoenix", + "dateCreated": "2026-03-14T15:52:20.332Z", + "dateModified": "2026-06-27T16:05:48.796Z", + "hashShort": "82fec2633e0c12f0", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "fly": true, + "gargantuan": true, + "goldenThumbnail": "rbxassetid://95408733353029", + "indexDesc": "Obtained from the 2025 Christmas Crafting Machine! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Snowflake Dragon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://118532711191840", + }, + "configName": "Gargantuan Snowflake Dragon", + "dateCreated": "2026-03-14T15:52:20.724Z", + "dateModified": "2026-03-14T15:52:20.724Z", + "hashShort": "8e9d1a33a9ed016d", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "gargantuan": true, + "goldenThumbnail": "rbxassetid://85895597884340", + "indexDesc": "Found in the 2025 Gargantuan Present! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Krampus", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://128217268096438", + }, + "configName": "Gargantuan Krampus", + "dateCreated": "2026-03-14T15:52:20.726Z", + "dateModified": "2026-03-14T15:52:20.726Z", + "hashShort": "5cc679aeb9daa6cf", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "gargantuan": true, + "goldenThumbnail": "rbxassetid://117493429826204", + "indexDesc": "Found in the Exclusive Raffle! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Floppa", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://100320985111822", + }, + "configName": "Gargantuan Floppa", + "dateCreated": "2026-03-14T15:52:20.727Z", + "dateModified": "2026-03-14T15:52:20.727Z", + "hashShort": "0d9bea6b62be197f", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "fly": true, + "gargantuan": true, + "goldenThumbnail": "rbxassetid://111481780081191", + "indexDesc": "Found in St. Patrick's Forever Pack! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Lucki Chest Mimic", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://96210965239108", + }, + "configName": "Gargantuan Lucki Chest Mimic", + "dateCreated": "2026-03-14T15:52:20.736Z", + "dateModified": "2026-03-14T15:52:20.736Z", + "hashShort": "7b36e252d2c20f94", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "animations": { + "spinZ": true, + }, + "fly": true, + "gargantuan": true, + "goldenThumbnail": "rbxassetid://94994954601456", + "indexDesc": "Obtained from the 2025 Christmas Crafting Machine! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Gingerbread Angelus", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://88769910454037", + }, + "configName": "Gargantuan Gingerbread Angelus", + "dateCreated": "2026-03-14T15:52:20.738Z", + "dateModified": "2026-03-14T15:52:20.738Z", + "hashShort": "0cbb19573c79b1cc", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "animations": { + "spinZ": true, + }, + "fly": true, + "gargantuan": true, + "goldenThumbnail": "rbxassetid://101558080609315", + "indexDesc": "Earned from the St. Patricks Max Level Raid Race! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Lucki Angelus", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://126822762417464", + }, + "configName": "Gargantuan Lucki Angelus", + "dateCreated": "2026-03-14T15:52:20.735Z", + "dateModified": "2026-03-14T15:52:20.735Z", + "hashShort": "cd164046bf74937f", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "animations": { + "replacementPool": [ + [ + 1, + 0.5, + ], + [ + 2, + 0.2, + ], + [ + 3, + 0.15, + ], + [ + 4, + 0.1, + ], + [ + 5, + 0.04, + ], + [ + 6, + 0.01, + ], + ], + "replacements": [ + { + "desc": "Comes with a Clover inside! (50%)", + "dst": null, + "isUnique": true, + "title": "Glass", + }, + { + "desc": "Comes with a Heart inside! (20%)", + "dst": null, + "isUnique": true, + "title": "Glass", + }, + { + "desc": "Comes with a Rainbow inside! (15%)", + "dst": null, + "isUnique": true, + "title": "Glass", + }, + { + "desc": "Comes with a Question inside! (10%)", + "dst": null, + "isUnique": true, + "title": "Glass", + }, + { + "desc": "Comes with a Crown inside! (5%)", + "dst": null, + "isUnique": true, + "title": "Glass", + }, + { + "desc": "Comes with Preston inside! (1%)", + "dst": null, + "isUnique": true, + "title": "Glass", + }, + ], + }, + "gargantuan": true, + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Glass Egg! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Glass Squid", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://114884121622306", + }, + "configName": "Gargantuan Glass Squid", + "dateCreated": "2026-03-14T15:52:20.735Z", + "dateModified": "2026-03-14T15:52:20.735Z", + "hashShort": "4c26e121596598fa", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "gargantuan": true, + "goldenThumbnail": "rbxassetid://134186140309858", + "indexDesc": "ADMIN ABUSE!!! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Nightfall Tiger", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://106417356158790", + }, + "configName": "Gargantuan Nightfall Tiger", + "dateCreated": "2026-03-14T15:52:20.764Z", + "dateModified": "2026-05-16T16:40:14.863Z", + "hashShort": "8eddb256a4db3d11", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "animations": { + "replacementPool": [ + [ + 1, + 0.5, + ], + [ + 2, + 0.2, + ], + [ + 3, + 0.15, + ], + [ + 4, + 0.1, + ], + [ + 5, + 0.04, + ], + [ + 6, + 0.01, + ], + ], + "replacements": [ + { + "desc": "Comes with a Clover inside! (50%)", + "dst": null, + "isUnique": true, + "title": "Glass", + }, + { + "desc": "Comes with a Heart inside! (20%)", + "dst": null, + "isUnique": true, + "title": "Glass", + }, + { + "desc": "Comes with a Rainbow inside! (15%)", + "dst": null, + "isUnique": true, + "title": "Glass", + }, + { + "desc": "Comes with a Question inside! (10%)", + "dst": null, + "isUnique": true, + "title": "Glass", + }, + { + "desc": "Comes with a Crown inside! (5%)", + "dst": null, + "isUnique": true, + "title": "Glass", + }, + { + "desc": "Comes with Preston inside! (1%)", + "dst": null, + "isUnique": true, + "title": "Glass", + }, + ], + }, + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Glass Egg!", + "indexObtainable": true, + "name": "Titanic Glass Blobfish", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://95794427114818", + "titanic": true, + }, + "configName": "Titanic Glass Blobfish", + "dateCreated": "2026-03-14T15:52:21.245Z", + "dateModified": "2026-03-14T15:52:21.245Z", + "hashShort": "552e12bb4ab25e6a", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://137740432375415", + "indexDesc": "Hatched from 2025 New Year's Gifts!", + "indexObtainable": true, + "name": "Titanic Party Crown Hippomelon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://119580032207661", + "titanic": true, + }, + "configName": "Titanic Party Crown Hippomelon", + "dateCreated": "2026-03-14T15:52:21.249Z", + "dateModified": "2026-03-14T15:52:21.249Z", + "hashShort": "92586ac6688b70eb", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://97685473522303", + "indexDesc": "Obtained from the 2025 Christmas Crafting Machine!", + "indexObtainable": true, + "name": "Titanic Candycane Kitsune", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://100308163043577", + "titanic": true, + }, + "configName": "Titanic Candycane Kitsune", + "dateCreated": "2026-03-14T15:52:21.259Z", + "dateModified": "2026-03-14T15:52:21.259Z", + "hashShort": "3b60fb66e3d1787f", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://83450554390938", + "indexDesc": "Earned from the St. Patricks Max Level Raid Race!", + "indexObtainable": true, + "name": "Titanic Lucki Golem", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://136718232635599", + "titanic": true, + }, + "configName": "Titanic Lucki Golem", + "dateCreated": "2026-03-14T15:52:21.261Z", + "dateModified": "2026-03-14T15:52:21.261Z", + "hashShort": "7a51831c8331fd58", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://89340109780276", + "indexDesc": "Found in St. Patrick's Forever Pack!", + "indexObtainable": true, + "name": "Titanic Leprechaun Kitsune", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://119959214731762", + "titanic": true, + }, + "configName": "Titanic Leprechaun Kitsune", + "dateCreated": "2026-03-14T15:52:21.260Z", + "dateModified": "2026-03-14T15:52:21.260Z", + "hashShort": "3c82da07d0ae5cfa", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://110889424511180", + "indexDesc": "Found in the ADMIN ABUSE! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Titanic Tiedye Corgi", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://116762893028421", + "titanic": true, + }, + "configName": "Titanic Tiedye Corgi", + "dateCreated": "2026-03-14T15:52:21.262Z", + "dateModified": "2026-03-14T15:52:21.262Z", + "hashShort": "9cc7fad88817dbf6", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://109461812601037", + "indexDesc": "Found in the 2025 Gargantuan Present!", + "indexObtainable": true, + "name": "Titanic North Pole Unicorn", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://127223502497366", + "titanic": true, + }, + "configName": "Titanic North Pole Unicorn", + "dateCreated": "2026-03-14T15:52:21.264Z", + "dateModified": "2026-03-14T15:52:21.264Z", + "hashShort": "b7167104a99ea19c", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://82078892883300", + "indexDesc": "Found in the Lucky Raid Titanic Chest!", + "indexObtainable": true, + "name": "Titanic Lucki Chest Mimic", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://96487317914550", + "titanic": true, + }, + "configName": "Titanic Lucki Chest Mimic", + "dateCreated": "2026-03-14T15:52:21.253Z", + "dateModified": "2026-03-14T15:52:21.253Z", + "hashShort": "14cc0308eab95c0e", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://135040433036196", + "indexDesc": "Obtained from the 2025 Christmas Crafting Machine!", + "indexObtainable": true, + "name": "Titanic Crackling Dragon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://83961459866368", + "titanic": true, + }, + "configName": "Titanic Crackling Dragon", + "dateCreated": "2026-03-14T15:52:21.254Z", + "dateModified": "2026-03-14T15:52:21.254Z", + "hashShort": "a5d7db3b114f52da", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://101551897286774", + "indexDesc": "Defeat the Tier 3 Lucky Raid Boss!", + "indexObtainable": true, + "name": "Titanic Horseshoe Capybara", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://123799433533609", + "titanic": true, + }, + "configName": "Titanic Horseshoe Capybara", + "dateCreated": "2026-03-14T15:52:21.259Z", + "dateModified": "2026-03-14T15:52:21.259Z", + "hashShort": "aab54eadbf609e8f", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://79549009714125", + "indexDesc": "Found in the Exclusive Raffle!", + "indexObtainable": true, + "name": "Titanic Prickly Panda", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://110590155279741", + "titanic": true, + }, + "configName": "Titanic Prickly Panda", + "dateCreated": "2026-03-14T15:52:21.272Z", + "dateModified": "2026-03-14T15:52:21.272Z", + "hashShort": "72e55b510336f66a", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://125781407330049", + "indexDesc": "Found in the Exclusive Raffle!", + "indexObtainable": true, + "name": "Titanic Inferno Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://128197933261486", + "titanic": true, + }, + "configName": "Titanic Inferno Cat", + "dateCreated": "2026-03-14T15:52:21.276Z", + "dateModified": "2026-03-14T15:52:21.276Z", + "hashShort": "7e735c317e1718af", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://111167183355889", + "indexDesc": "Reward in the 2026 Clover Clan Battle!", + "indexObtainable": true, + "name": "Titanic Clover Owl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://94606595966896", + "titanic": true, + }, + "configName": "Titanic Clover Owl", + "dateCreated": "2026-03-14T15:52:21.280Z", + "dateModified": "2026-03-14T15:52:21.280Z", + "hashShort": "f014d4d6a3ab971f", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 1, + "goldenThumbnail": "", + "name": "Special Ops Ram", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://79687653187131", + }, + "configName": "Special Ops Ram", + "dateCreated": "2026-04-18T15:56:00.447Z", + "dateModified": "2026-04-18T15:56:00.447Z", + "hashShort": "fbd56bc6578bb66c", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 6663184330515252, + 7112231028227439, + 7521757662808789, + ], + "fromWorldNumber": 1, + "fromZoneNumber": 3, + "goldenThumbnail": "rbxassetid://90221121772857", + "indexDesc": "Found in the Spring Egg!", + "indexObtainable": true, + "name": "Leafy Yeti", + "thumbnail": "rbxassetid://104726318250862", + }, + "configName": "Leafy Yeti", + "dateCreated": "2026-04-18T15:56:00.451Z", + "dateModified": "2026-06-27T16:05:50.586Z", + "hashShort": "71d810e754801a62", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 7964587520069012, + 8631834747776297, + 9015008781092216, + ], + "fly": true, + "fromWorldNumber": 1, + "fromZoneNumber": 3, + "goldenThumbnail": "rbxassetid://119740826668982", + "indexDesc": "Found in the Spring Egg!", + "indexObtainable": true, + "name": "Dawn Phoenix", + "thumbnail": "rbxassetid://118437932562812", + }, + "configName": "Dawn Phoenix", + "dateCreated": "2026-04-18T15:56:00.459Z", + "dateModified": "2026-06-27T16:05:50.594Z", + "hashShort": "57a07072d68aece2", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 3, + "goldenThumbnail": "", + "name": "Special Ops Dog", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://75737849905989", + }, + "configName": "Special Ops Dog", + "dateCreated": "2026-04-18T15:56:00.461Z", + "dateModified": "2026-04-18T15:56:00.461Z", + "hashShort": "7b32dcd6e6e0acb9", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 6293007423264404, + 6820544419923204, + 7123747813483297, + ], + "fly": true, + "fromWorldNumber": 1, + "fromZoneNumber": 3, + "goldenThumbnail": "rbxassetid://117189963419336", + "indexDesc": "Found in the Spring Egg!", + "indexObtainable": true, + "name": "Withered Agony", + "thumbnail": "rbxassetid://72590246399518", + }, + "configName": "Withered Agony", + "dateCreated": "2026-04-18T15:56:00.469Z", + "dateModified": "2026-06-27T16:05:50.598Z", + "hashShort": "ddfda394bdcf123a", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 5725402832146431, + 6166608450462880, + 6488201722113482, + ], + "fromWorldNumber": 1, + "fromZoneNumber": 3, + "goldenThumbnail": "rbxassetid://88183227948348", + "indexDesc": "Found in the Spring Egg!", + "indexObtainable": true, + "name": "Spring Onion", + "thumbnail": "rbxassetid://125925377750690", + }, + "configName": "Spring Onion", + "dateCreated": "2026-04-18T15:56:00.469Z", + "dateModified": "2026-06-27T16:05:50.580Z", + "hashShort": "81c4fcf7a9b6443a", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 2, + "goldenThumbnail": "", + "name": "Special Ops Skunk", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://124091159691468", + }, + "configName": "Special Ops Skunk", + "dateCreated": "2026-04-18T15:56:00.468Z", + "dateModified": "2026-04-18T15:56:00.468Z", + "hashShort": "290f41b7928ce14f", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 7079633351172455, + 7672926332329082, + 8013776607838418, + ], + "fly": true, + "fromWorldNumber": 1, + "fromZoneNumber": 3, + "goldenThumbnail": "rbxassetid://106589855003122", + "indexDesc": "Found in the Spring Egg!", + "indexObtainable": true, + "name": "Butterfly Pony", + "thumbnail": "rbxassetid://101475192892477", + }, + "configName": "Butterfly Pony", + "dateCreated": "2026-04-18T15:56:00.472Z", + "dateModified": "2026-06-27T16:05:50.597Z", + "hashShort": "31d00e2fd18ac89c", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 156070728141488, + 168005482729399, + 175579569159174, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://95713295937662", + "name": "Diamond Chick", + "thumbnail": "rbxassetid://132776773685646", + }, + "configName": "Diamond Chick", + "dateCreated": "2026-04-18T15:56:00.471Z", + "dateModified": "2026-06-27T16:05:50.610Z", + "hashShort": "767ea39a3e31506c", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 4575772491932564, + 4913712581690142, + 5188681418553064, + ], + "fromWorldNumber": 1, + "fromZoneNumber": 3, + "goldenThumbnail": "rbxassetid://76719401332915", + "indexDesc": "Found in the Spring Egg!", + "indexObtainable": true, + "name": "Egg Dog", + "thumbnail": "rbxassetid://139322574484871", + }, + "configName": "Egg Dog", + "dateCreated": "2026-04-18T15:56:00.474Z", + "dateModified": "2026-06-27T16:05:50.577Z", + "hashShort": "e68a9d9322348e7f", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 4738264412810859, + 5112753917657417, + 5352474436341670, + ], + "fromWorldNumber": 1, + "fromZoneNumber": 3, + "goldenThumbnail": "rbxassetid://88162255502758", + "indexDesc": "Found in the Spring Egg!", + "indexObtainable": true, + "name": "Bunny Cat", + "thumbnail": "rbxassetid://120026045850297", + }, + "configName": "Bunny Cat", + "dateCreated": "2026-04-18T15:56:00.477Z", + "dateModified": "2026-06-27T16:05:50.581Z", + "hashShort": "eae8b83cfdd2fb4e", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 5206241144940298, + 5573865744321412, + 5906059287657853, + ], + "fromWorldNumber": 1, + "fromZoneNumber": 3, + "goldenThumbnail": "rbxassetid://85191558974338", + "indexDesc": "Found in the Spring Egg!", + "indexObtainable": true, + "name": "Tree Frog", + "thumbnail": "rbxassetid://72641367639937", + }, + "configName": "Tree Frog", + "dateCreated": "2026-04-18T15:56:00.479Z", + "dateModified": "2026-06-27T16:05:50.581Z", + "hashShort": "94aef81e3a5341f0", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 4419780247889403, + 4790641852287787, + 5004075324449497, + ], + "fromWorldNumber": 1, + "fromZoneNumber": 3, + "goldenThumbnail": "rbxassetid://72043808337089", + "indexDesc": "Found in the Spring Egg!", + "indexObtainable": true, + "name": "Bandana Shiba", + "thumbnail": "rbxassetid://76830439509343", + }, + "configName": "Bandana Shiba", + "dateCreated": "2026-04-18T15:56:00.481Z", + "dateModified": "2026-06-27T16:05:50.609Z", + "hashShort": "079ae72ae0e910a2", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 5462165920323621, + 5959100884592821, + 6176940373308372, + ], + "fromWorldNumber": 1, + "fromZoneNumber": 3, + "goldenThumbnail": "rbxassetid://121137611934988", + "indexDesc": "Found in the Spring Egg!", + "indexObtainable": true, + "name": "Spring Dino", + "thumbnail": "rbxassetid://85047033125361", + }, + "configName": "Spring Dino", + "dateCreated": "2026-04-18T15:56:00.483Z", + "dateModified": "2026-06-27T16:05:50.579Z", + "hashShort": "ec16f81c55786960", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 4972252778875578, + 5389337460549339, + 5629266861999761, + ], + "fromWorldNumber": 1, + "fromZoneNumber": 3, + "goldenThumbnail": "rbxassetid://95056702043431", + "indexDesc": "Found in the Spring Egg!", + "indexObtainable": true, + "name": "Sunflower Calf", + "thumbnail": "rbxassetid://84206016699205", + }, + "configName": "Sunflower Calf", + "dateCreated": "2026-04-18T15:56:00.483Z", + "dateModified": "2026-06-27T16:05:50.586Z", + "hashShort": "6efb8b65ebc5cab7", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 5996865897463743, + 6470309887765808, + 6773723883518225, + ], + "fly": true, + "fromWorldNumber": 1, + "fromZoneNumber": 3, + "goldenThumbnail": "rbxassetid://86520755987281", + "indexDesc": "Found in the Spring Egg!", + "indexObtainable": true, + "name": "Spring Dragon", + "thumbnail": "rbxassetid://136394586951129", + }, + "configName": "Spring Dragon", + "dateCreated": "2026-04-18T15:56:00.485Z", + "dateModified": "2026-06-27T16:05:50.610Z", + "hashShort": "bb0339353eb4800c", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "fly": true, + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "gargantuan": true, + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Special Ops Egg! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Special Ops Moth", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://91565856235548", + }, + "configName": "Gargantuan Special Ops Moth", + "dateCreated": "2026-04-18T15:56:01.668Z", + "dateModified": "2026-04-18T15:56:01.668Z", + "hashShort": "7044d7ffca5d69f0", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "gargantuan": true, + "goldenThumbnail": "rbxassetid://104339692700572", + "indexDesc": "Found in the MVP Chest! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Fluffy Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://122984499289928", + }, + "configName": "Gargantuan Fluffy Cat", + "dateCreated": "2026-04-18T15:56:01.682Z", + "dateModified": "2026-04-25T17:30:33.021Z", + "hashShort": "0099ed1ee10cc182", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "gargantuan": true, + "goldenThumbnail": "rbxassetid://134062672285411", + "indexDesc": "Found in the 2026 Spring Forever Pack! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Wise Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://83925987845910", + }, + "configName": "Gargantuan Wise Cat", + "dateCreated": "2026-04-18T15:56:01.694Z", + "dateModified": "2026-04-18T15:56:01.694Z", + "hashShort": "015348122f5cd670", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "gargantuan": true, + "goldenThumbnail": "rbxassetid://109074408644001", + "indexDesc": "Earned from the St. Patricks Max Level Raid Race! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Leprechaun Fox", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://82088505811077", + }, + "configName": "Gargantuan Leprechaun Fox", + "dateCreated": "2026-04-18T15:56:01.697Z", + "dateModified": "2026-04-18T15:56:01.697Z", + "hashShort": "486a3f07a274646b", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "fly": true, + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "gargantuan": true, + "goldenThumbnail": "rbxassetid://135118826613264", + "indexDesc": "Found in the 2026 Spring Event eggs! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Dawn Phoenix", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://77286983181517", + }, + "configName": "Gargantuan Dawn Phoenix", + "dateCreated": "2026-04-18T15:56:01.706Z", + "dateModified": "2026-04-18T15:56:01.706Z", + "hashShort": "129128f57312ee97", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://128826234885790", + "huge": true, + "indexDesc": "Defeat the Tier 1 Lucky Raid Boss!", + "indexObtainable": true, + "name": "Huge Irish Badger", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://132795639308777", + }, + "configName": "Huge Irish Badger", + "dateCreated": "2026-04-18T15:56:11.608Z", + "dateModified": "2026-04-18T15:56:11.608Z", + "hashShort": "963be313ec84fda0", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://70592535064037", + "huge": true, + "indexDesc": "Defeat the Tier 2 Lucky Raid Boss!", + "indexObtainable": true, + "name": "Huge Leprechaun Fox", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://126832578733355", + }, + "configName": "Huge Leprechaun Fox", + "dateCreated": "2026-04-18T15:56:11.611Z", + "dateModified": "2026-04-18T15:56:11.611Z", + "hashShort": "10bc0133bf5392f0", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://123298360746463", + "huge": true, + "indexDesc": "Found in St. Patrick's Forever Pack!", + "indexObtainable": true, + "name": "Huge Lucki Golem", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://82253634531547", + }, + "configName": "Huge Lucki Golem", + "dateCreated": "2026-04-18T15:56:11.614Z", + "dateModified": "2026-04-18T15:56:11.614Z", + "hashShort": "db3488ee3946b955", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://98993044284564", + "huge": true, + "indexDesc": "Found in the 2026 Spring Event eggs!", + "indexObtainable": true, + "name": "Huge Butterfly Pony", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://130427218526414", + }, + "configName": "Huge Butterfly Pony", + "dateCreated": "2026-04-18T15:56:11.615Z", + "dateModified": "2026-04-18T15:56:11.615Z", + "hashShort": "37225dec469195ce", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://112463411821648", + "huge": true, + "indexDesc": "Found in the 2026 Spring Gift Bag!", + "indexObtainable": true, + "name": "Huge Spring Onion", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://75532551020815", + }, + "configName": "Huge Spring Onion", + "dateCreated": "2026-04-18T15:56:11.617Z", + "dateModified": "2026-04-18T15:56:11.617Z", + "hashShort": "af92f84d4adfed70", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://99636149303030", + "huge": true, + "indexDesc": "Found in the Forever Pack!", + "indexObtainable": true, + "name": "Huge Lucki Wolf", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://98519377335101", + }, + "configName": "Huge Lucki Wolf", + "dateCreated": "2026-04-18T15:56:11.625Z", + "dateModified": "2026-04-18T15:56:11.625Z", + "hashShort": "a99cd807658d117a", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "", + "huge": true, + "indexDesc": "Found in the Exclusive Special Ops Egg!", + "indexObtainable": true, + "name": "Huge Special Ops Ram", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://73165145533261", + }, + "configName": "Huge Special Ops Ram", + "dateCreated": "2026-04-18T15:56:11.635Z", + "dateModified": "2026-04-18T15:56:11.635Z", + "hashShort": "0a1abac6f8c02997", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://74153832412485", + "huge": true, + "indexDesc": "Found in the 2026 Spring Forever Pack!", + "indexObtainable": true, + "name": "Huge Empyrean Owl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://93292794652878", + }, + "configName": "Huge Empyrean Owl", + "dateCreated": "2026-04-18T15:56:11.643Z", + "dateModified": "2026-04-18T15:56:11.643Z", + "hashShort": "477e83b5f5f8a015", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://97847219199119", + "huge": true, + "indexDesc": "Found in the Sunstone Heights Spring Raffle!", + "indexObtainable": true, + "name": "Huge Sunflower Calf", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://89310738281949", + }, + "configName": "Huge Sunflower Calf", + "dateCreated": "2026-04-18T15:56:11.644Z", + "dateModified": "2026-04-18T15:56:11.644Z", + "hashShort": "5d45cb04d5565f4a", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://140409217154748", + "huge": true, + "indexDesc": "Earned from the 2026 Spring Event leaderboard contest!", + "indexObtainable": true, + "name": "Huge Withered Agony", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://127219457030426", + }, + "configName": "Huge Withered Agony", + "dateCreated": "2026-04-18T15:56:11.648Z", + "dateModified": "2026-04-18T15:56:11.648Z", + "hashShort": "c003175ff111ac05", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://97609733055229", + "huge": true, + "indexDesc": "Found in the 2026 Spring Event eggs!", + "indexObtainable": true, + "name": "Huge Leafy Yeti", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://123501144563206", + }, + "configName": "Huge Leafy Yeti", + "dateCreated": "2026-04-18T15:56:11.648Z", + "dateModified": "2026-04-18T15:56:11.648Z", + "hashShort": "0041fa2775203e1e", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "", + "huge": true, + "indexDesc": "Found in the Exclusive Special Ops Egg!", + "indexObtainable": true, + "name": "Huge Special Ops Dog", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://88026158372953", + }, + "configName": "Huge Special Ops Dog", + "dateCreated": "2026-04-18T15:56:11.652Z", + "dateModified": "2026-04-18T15:56:11.652Z", + "hashShort": "2b4c1fc31fd9b459", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://105827678926314", + "huge": true, + "indexDesc": "Found in all the St. Patrick's event eggs!", + "indexObtainable": true, + "name": "Huge Mucki", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://126924768939379", + }, + "configName": "Huge Mucki", + "dateCreated": "2026-04-18T15:56:11.654Z", + "dateModified": "2026-04-18T15:56:11.654Z", + "hashShort": "066987aab9c1049f", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://84423381570605", + "huge": true, + "indexDesc": "Found in the Dewdrop Falls Spring Raffle!", + "indexObtainable": true, + "name": "Huge Spring Dino", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://99022978600130", + }, + "configName": "Huge Spring Dino", + "dateCreated": "2026-04-18T15:56:11.652Z", + "dateModified": "2026-04-18T15:56:11.652Z", + "hashShort": "5a13eb14549c9952", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://136241392429650", + "huge": true, + "indexDesc": "Found in the 2026 Spring Event Egg Hunt!", + "indexObtainable": true, + "name": "Huge Bunny Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://96756728639986", + }, + "configName": "Huge Bunny Cat", + "dateCreated": "2026-04-18T15:56:11.653Z", + "dateModified": "2026-04-18T15:56:11.653Z", + "hashShort": "58fa956507627cfc", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://84037694645199", + "huge": true, + "indexDesc": "Defeat the Tier 3 Lucky Raid Boss!", + "indexObtainable": true, + "name": "Huge Lucki Hydra", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://107790361850744", + }, + "configName": "Huge Lucki Hydra", + "dateCreated": "2026-04-18T15:56:11.654Z", + "dateModified": "2026-04-18T15:56:11.654Z", + "hashShort": "f5880419c35dcd70", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://83311539723890", + "huge": true, + "indexDesc": "Found in the MVP Chest!", + "indexObtainable": true, + "name": "Huge Galaxy Fox", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://78675251181083", + }, + "configName": "Huge Galaxy Fox", + "dateCreated": "2026-04-18T15:56:11.658Z", + "dateModified": "2026-04-18T15:56:11.658Z", + "hashShort": "428658d8f3d36577", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://100779002873726", + "huge": true, + "indexDesc": "Earned from 2026 Easter Diamond Egg!", + "indexObtainable": true, + "name": "Huge Diamond Chick", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://79413984807049", + }, + "configName": "Huge Diamond Chick", + "dateCreated": "2026-04-18T15:56:11.660Z", + "dateModified": "2026-04-18T15:56:11.660Z", + "hashShort": "d56373e2445d2ce1", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://71481570796831", + "huge": true, + "indexDesc": "Found in the 2026 Spring Forever Pack!", + "indexObtainable": true, + "name": "Huge Quartz Fox", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://129331981737475", + }, + "configName": "Huge Quartz Fox", + "dateCreated": "2026-04-18T15:56:11.667Z", + "dateModified": "2026-04-18T15:56:11.667Z", + "hashShort": "e38552ce2d8fe827", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://83687807362870", + "huge": true, + "indexDesc": "Reward in the 2026 Abstract Clan Battle!", + "indexObtainable": true, + "name": "Huge Abstract Agony", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://121388356688777", + }, + "configName": "Huge Abstract Agony", + "dateCreated": "2026-04-18T15:56:11.660Z", + "dateModified": "2026-04-18T15:56:11.660Z", + "hashShort": "d42b05139455652e", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://137179904470113", + "huge": true, + "indexDesc": "Earned by subscribing during the FREE Huge Event!", + "indexObtainable": true, + "name": "Huge Keyboard Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://135774541851149", + }, + "configName": "Huge Keyboard Cat", + "dateCreated": "2026-04-18T15:56:11.662Z", + "dateModified": "2026-04-18T15:56:11.662Z", + "hashShort": "f3646b2ad93d4b89", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://132149135213260", + "huge": true, + "indexDesc": "Earned from the St. Patricks Max Level Raid Race!", + "indexObtainable": true, + "name": "Huge Royal Pooka", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://80049481266814", + }, + "configName": "Huge Royal Pooka", + "dateCreated": "2026-04-18T15:56:11.665Z", + "dateModified": "2026-04-18T15:56:11.665Z", + "hashShort": "e95beb4fe8cf2977", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://79644871121521", + "huge": true, + "indexDesc": "Earned from logging in during our 2026 Easter Event!", + "indexObtainable": true, + "name": "Huge Bandana Shiba", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://122819794900124", + }, + "configName": "Huge Bandana Shiba", + "dateCreated": "2026-04-18T15:56:11.662Z", + "dateModified": "2026-04-18T15:56:11.662Z", + "hashShort": "05831bec971c9ad1", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "animations": { + "flyHeight": 0.025, + "flyHeightChange": 0, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://125007807818724", + "huge": true, + "indexDesc": "Found in the Tulip Hollow Spring Raffle!", + "indexObtainable": true, + "name": "Huge Mushroom Snail", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://106278894381097", + }, + "configName": "Huge Mushroom Snail", + "dateCreated": "2026-04-18T15:56:11.666Z", + "dateModified": "2026-04-18T15:56:11.666Z", + "hashShort": "3c671a714910bdd7", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://121845830784573", + "huge": true, + "indexDesc": "Found in the 2026 Spring Event eggs!", + "indexObtainable": true, + "name": "Huge Dawn Phoenix", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://104154597023155", + }, + "configName": "Huge Dawn Phoenix", + "dateCreated": "2026-04-18T15:56:11.668Z", + "dateModified": "2026-04-18T15:56:11.668Z", + "hashShort": "83500025ae0ee7f3", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://82841800843675", + "huge": true, + "indexDesc": "Found in the Blossom Vale Spring Raffle!", + "indexObtainable": true, + "name": "Huge Spring Dragon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://83560994028636", + }, + "configName": "Huge Spring Dragon", + "dateCreated": "2026-04-18T15:56:11.667Z", + "dateModified": "2026-04-18T15:56:11.667Z", + "hashShort": "ca55b3f319807a02", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://133831612419094", + "indexDesc": "Defeat the Tier 3 Lucky Raid Boss!", + "indexObtainable": true, + "name": "Titanic Irish Wolfhound", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://125815340060379", + "titanic": true, + }, + "configName": "Titanic Irish Wolfhound", + "dateCreated": "2026-04-18T15:56:15.058Z", + "dateModified": "2026-04-18T15:56:15.058Z", + "hashShort": "fd917553287a6c35", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://86751569405695", + "indexDesc": "Earned from 2026 Easter Diamond Egg!", + "indexObtainable": true, + "name": "Titanic Diamond Chick", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://136894452978816", + "titanic": true, + }, + "configName": "Titanic Diamond Chick", + "dateCreated": "2026-04-18T15:56:15.060Z", + "dateModified": "2026-04-18T15:56:15.060Z", + "hashShort": "7aa5c3525974b43e", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://76167786226079", + "indexDesc": "Earned from the St. Patricks Max Level Raid Race!", + "indexObtainable": true, + "name": "Titanic Irish Badger", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://94461290807119", + "titanic": true, + }, + "configName": "Titanic Irish Badger", + "dateCreated": "2026-04-18T15:56:15.060Z", + "dateModified": "2026-04-18T15:56:15.060Z", + "hashShort": "c45b46448d113263", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://119706241969183", + "indexDesc": "Found in the MVP Chest!", + "indexObtainable": true, + "name": "Titanic Red Dragon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://102919400453870", + "titanic": true, + }, + "configName": "Titanic Red Dragon", + "dateCreated": "2026-04-18T15:56:15.067Z", + "dateModified": "2026-04-18T15:56:15.067Z", + "hashShort": "1afc5b3b27148bdc", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://100289372833701", + "indexDesc": "Found in the 2026 Spring Forever Pack!", + "indexObtainable": true, + "name": "Titanic Scribe Squirrel", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://119222051257563", + "titanic": true, + }, + "configName": "Titanic Scribe Squirrel", + "dateCreated": "2026-04-18T15:56:15.071Z", + "dateModified": "2026-04-18T15:56:15.071Z", + "hashShort": "4d108ae9e9589df4", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://99932670465150", + "indexDesc": "Found in the 2026 Angel Clan Battle!", + "indexObtainable": true, + "name": "Titanic Abstract Dominus", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://111308527700884", + "titanic": true, + }, + "configName": "Titanic Abstract Dominus", + "dateCreated": "2026-04-18T15:56:15.080Z", + "dateModified": "2026-05-09T17:51:44.913Z", + "hashShort": "4a804d8f9596f556", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Special Ops Egg!", + "indexObtainable": true, + "name": "Titanic Special Ops Goat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://113002170903758", + "titanic": true, + }, + "configName": "Titanic Special Ops Goat", + "dateCreated": "2026-04-18T15:56:15.097Z", + "dateModified": "2026-04-18T15:56:15.097Z", + "hashShort": "8e018925d8de7017", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://76222374754436", + "indexDesc": "Found in the 2026 Spring Event eggs!", + "indexObtainable": true, + "name": "Titanic Withered Agony", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://131171482429329", + "titanic": true, + }, + "configName": "Titanic Withered Agony", + "dateCreated": "2026-04-18T15:56:15.098Z", + "dateModified": "2026-04-18T15:56:15.098Z", + "hashShort": "7078088ad0dfd27e", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://115467519861573", + "indexDesc": "Found in the Lucky Raid Titanic Chest!", + "indexObtainable": true, + "name": "Titanic Mucki", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://90224746206001", + "titanic": true, + }, + "configName": "Titanic Mucki", + "dateCreated": "2026-04-18T15:56:15.101Z", + "dateModified": "2026-04-18T15:56:15.101Z", + "hashShort": "7f89238c8f398683", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://124078766776775", + "indexDesc": "Earned from 2026 Easter Diamond Egg!", + "indexObtainable": true, + "name": "Titanic Diamond Monkey", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://77972912232748", + "titanic": true, + }, + "configName": "Titanic Diamond Monkey", + "dateCreated": "2026-04-18T15:56:15.110Z", + "dateModified": "2026-04-18T15:56:15.110Z", + "hashShort": "4c512e1a03003bfd", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "gargantuan": true, + "goldenThumbnail": "rbxassetid://99981888242102", + "indexDesc": "Found in the 2026 Spring Event eggs! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Bloom Dominus", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://113165518550651", + }, + "configName": "Gargantuan Bloom Dominus", + "dateCreated": "2026-04-25T17:30:33.038Z", + "dateModified": "2026-04-25T17:30:33.038Z", + "hashShort": "6f28d5777aca253b", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://93912102714147", + "indexDesc": "Found in the 2026 Spring Boss Chest!", + "indexObtainable": true, + "name": "Titanic Butterfly Pony", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://71576208236179", + "titanic": true, + }, + "configName": "Titanic Butterfly Pony", + "dateCreated": "2026-04-25T17:30:36.484Z", + "dateModified": "2026-04-25T17:30:36.484Z", + "hashShort": "01c212d4467f8d98", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://92486944125645", + "indexDesc": "Found in the Hype Egg every update!", + "indexObtainable": true, + "name": "Titanic Party Tiger", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://82287378572114", + "titanic": true, + }, + "configName": "Titanic Party Tiger", + "dateCreated": "2026-04-25T17:30:36.516Z", + "dateModified": "2026-04-25T17:30:36.516Z", + "hashShort": "33824871fedc8c50", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://125332376939544", + "indexDesc": "Found in the 2026 Spring Event eggs!", + "indexObtainable": true, + "name": "Titanic Garden Goblin", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://88678695683652", + "titanic": true, + }, + "configName": "Titanic Garden Goblin", + "dateCreated": "2026-04-25T17:30:36.517Z", + "dateModified": "2026-04-25T17:30:36.517Z", + "hashShort": "53d6f4fccd1a0765", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://71706545725616", + "indexDesc": "Found in the 2026 Starry Clan Battle!", + "indexObtainable": true, + "name": "Titanic Starry Owl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://90300371601451", + "titanic": true, + }, + "configName": "Titanic Starry Owl", + "dateCreated": "2026-04-25T17:30:36.517Z", + "dateModified": "2026-05-09T17:51:44.895Z", + "hashShort": "2c98f939396e5172", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://127140359044297", + "huge": true, + "indexDesc": "Gifted to top 250 spenders on PS99!", + "indexObtainable": false, + "name": "Huge Crowned Dog", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://116949971917880", + }, + "configName": "Huge Crowned Dog", + "dateCreated": "2026-04-25T17:30:45.311Z", + "dateModified": "2026-04-25T17:30:45.311Z", + "hashShort": "44e08f4245df2f23", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://114575580713274", + "huge": true, + "indexDesc": "Found in the 2026 Spring Event Boss Chest!", + "indexObtainable": true, + "name": "Huge Lamb Wolf", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://72351620062304", + }, + "configName": "Huge Lamb Wolf", + "dateCreated": "2026-04-25T17:30:45.317Z", + "dateModified": "2026-04-25T17:30:45.317Z", + "hashShort": "653e0454afd0de52", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://114173154769429", + "huge": true, + "indexDesc": "Gifted to top 10 spenders on PS99!", + "indexObtainable": false, + "name": "Huge Crowned Dragon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://126611400704407", + }, + "configName": "Huge Crowned Dragon", + "dateCreated": "2026-04-25T17:30:45.322Z", + "dateModified": "2026-04-25T17:30:45.322Z", + "hashShort": "1ea8cadc493f32b2", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://99004105114050", + "huge": true, + "indexDesc": "Found in the 2026 Spring Event eggs!", + "indexObtainable": true, + "name": "Huge Bloom Dominus", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://86640323792392", + }, + "configName": "Huge Bloom Dominus", + "dateCreated": "2026-04-25T17:30:45.323Z", + "dateModified": "2026-04-25T17:30:45.323Z", + "hashShort": "897152e0d69e2ece", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://130561048709733", + "huge": true, + "indexDesc": "Reward in the 2026 Starry Clan Battle!", + "indexObtainable": true, + "name": "Huge Starry Owl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://75830065128767", + }, + "configName": "Huge Starry Owl", + "dateCreated": "2026-04-25T17:30:45.327Z", + "dateModified": "2026-04-25T17:30:45.327Z", + "hashShort": "2b6d0f5a6ef37426", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://85135127862857", + "huge": true, + "indexDesc": "Gifted to top 50 spenders on PS99!", + "indexObtainable": false, + "name": "Huge Crowned Penguin", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://85416907805755", + }, + "configName": "Huge Crowned Penguin", + "dateCreated": "2026-04-25T17:30:45.326Z", + "dateModified": "2026-04-25T17:30:45.326Z", + "hashShort": "5ad6eb935d779628", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://82666068658014", + "huge": true, + "indexDesc": "Found in the 2026 Spring Event Raffle!", + "indexObtainable": true, + "name": "Huge Spring Kitten", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://129393017030092", + }, + "configName": "Huge Spring Kitten", + "dateCreated": "2026-04-25T17:30:45.327Z", + "dateModified": "2026-04-25T17:30:45.327Z", + "hashShort": "d66a56ccbf696d23", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://114744023707521", + "huge": true, + "indexDesc": "Found in the 2026 Spring Event eggs!", + "indexObtainable": true, + "name": "Huge Egg Piggy", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://124169087472138", + }, + "configName": "Huge Egg Piggy", + "dateCreated": "2026-04-25T17:30:45.328Z", + "dateModified": "2026-04-25T17:30:45.328Z", + "hashShort": "33a3ed4332634b5e", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://85254963479251", + "huge": true, + "indexDesc": "Found in the Hype Egg every update!", + "indexObtainable": true, + "name": "Huge Party Squirrel", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://108200825731940", + }, + "configName": "Huge Party Squirrel", + "dateCreated": "2026-04-25T17:30:45.330Z", + "dateModified": "2026-04-25T17:30:45.330Z", + "hashShort": "80352701ddbc857a", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://121311255368378", + "huge": true, + "indexDesc": "Found in the 2026 Spring Event eggs!", + "indexObtainable": true, + "name": "Huge Spring Elephant", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://137542174121503", + }, + "configName": "Huge Spring Elephant", + "dateCreated": "2026-04-25T17:30:45.332Z", + "dateModified": "2026-04-25T17:30:45.332Z", + "hashShort": "ec3bf89a5f1c05ee", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://128462838490372", + "huge": true, + "indexDesc": "Earned from the 2026 Spring Event leaderboard contest #2!", + "indexObtainable": true, + "name": "Huge Garden Goblin", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://97942779030547", + }, + "configName": "Huge Garden Goblin", + "dateCreated": "2026-04-25T17:30:45.333Z", + "dateModified": "2026-04-25T17:30:45.333Z", + "hashShort": "edc0899063b35d97", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://122355970169144", + "huge": true, + "indexDesc": "Found in the 2026 Spring Event eggs!", + "indexObtainable": true, + "name": "Huge Tree Frog", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://109144627334415", + }, + "configName": "Huge Tree Frog", + "dateCreated": "2026-04-25T17:30:45.331Z", + "dateModified": "2026-04-25T17:30:45.331Z", + "hashShort": "bdc4fc9b185cb13a", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://107973676145486", + "huge": true, + "indexDesc": "Found in the Crystal Chest!", + "indexObtainable": true, + "name": "Huge Vibrant Whale", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://87407901102081", + }, + "configName": "Huge Vibrant Whale", + "dateCreated": "2026-04-25T17:30:45.345Z", + "dateModified": "2026-04-25T17:30:45.345Z", + "hashShort": "4119b9caac09d3a3", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "evolved": true, + "fly": true, + "goldenThumbnail": "", + "huge": true, + "indexDesc": "Earned from evolving Pixel Griffin!", + "indexObtainable": true, + "name": "Huge Evolved Pixel Griffin", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://121188358881521", + }, + "configName": "Huge Evolved Pixel Griffin", + "dateCreated": "2026-04-25T17:30:45.342Z", + "dateModified": "2026-04-25T17:30:45.342Z", + "hashShort": "d9887ebb40793aeb", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "evolved": true, + "goldenThumbnail": "", + "huge": true, + "indexDesc": "Earned from evolving Rogue Squid!", + "indexObtainable": true, + "name": "Huge Evolved Rogue Squid", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://88584631141101", + }, + "configName": "Huge Evolved Rogue Squid", + "dateCreated": "2026-04-25T17:30:45.344Z", + "dateModified": "2026-04-25T17:30:45.344Z", + "hashShort": "7a9bf2e772827254", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://137988911544915", + "huge": true, + "indexDesc": "Earned from the Prison Chest!", + "indexObtainable": true, + "name": "Huge Prison Cow", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://79315838011992", + }, + "configName": "Huge Prison Cow", + "dateCreated": "2026-04-25T17:30:45.348Z", + "dateModified": "2026-04-25T17:30:45.348Z", + "hashShort": "9d7e68554a42b528", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://124652850414651", + "huge": true, + "indexDesc": "Earned from the limited-time Huge Spinny Wheel!", + "indexObtainable": true, + "name": "Huge Brain", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://88763930700070", + }, + "configName": "Huge Brain", + "dateCreated": "2026-04-25T17:30:45.346Z", + "dateModified": "2026-04-25T17:30:45.346Z", + "hashShort": "28c6acc4645e5aa4", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://134339476960484", + "huge": true, + "indexDesc": "Earned from the Void Spinny Wheel!", + "indexObtainable": true, + "name": "Huge Wireframe Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://129889522181856", + }, + "configName": "Huge Wireframe Cat", + "dateCreated": "2026-04-25T17:30:45.348Z", + "dateModified": "2026-04-25T17:30:45.348Z", + "hashShort": "054b6da7778d5529", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "evolved": true, + "goldenThumbnail": "", + "huge": true, + "indexDesc": "Earned from evolving Frankenpup Dog!", + "indexObtainable": true, + "name": "Huge Evolved Frankenpup Dog", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://85621910541891", + }, + "configName": "Huge Evolved Frankenpup Dog", + "dateCreated": "2026-04-25T17:30:45.343Z", + "dateModified": "2026-04-25T17:30:45.343Z", + "hashShort": "22925bc4baf8acd8", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "cachedPower": [ + 56524395715979, + ], + "fromEgg": "Fire Type Egg", + "fromWorldNumber": 3, + "fromZoneNumber": 229, + "goldenThumbnail": "rbxassetid://133712568317834", + "huge": true, + "indexDesc": "Earned from the Elemental World's final egg and roaming pets!", + "indexObtainable": true, + "maxChance": 9.99987305161161e-9, + "name": "Huge Ghost Axolotl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://78816523921536", + }, + "configName": "Huge Ghost Axolotl", + "dateCreated": "2026-04-25T17:30:45.350Z", + "dateModified": "2026-04-25T17:30:45.350Z", + "hashShort": "e9f1915e828b0bf1", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://82462222789866", + "huge": true, + "indexDesc": "Found in the Tech Chest!", + "indexObtainable": true, + "name": "Huge Robot", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://110205883813636", + }, + "configName": "Huge Robot", + "dateCreated": "2026-04-25T17:30:45.347Z", + "dateModified": "2026-04-25T17:30:45.347Z", + "hashShort": "7bdb1a2743633d3d", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://124851404464993", + "huge": true, + "indexDesc": "Earned from the Spinny Wheel!", + "indexObtainable": true, + "name": "Huge Carnival Panda", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://92219735800314", + }, + "configName": "Huge Carnival Panda", + "dateCreated": "2026-04-25T17:30:45.345Z", + "dateModified": "2026-04-25T17:30:45.345Z", + "hashShort": "f26c8fa491304e14", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "evolved": true, + "goldenThumbnail": "", + "huge": true, + "indexDesc": "Earned from evolving Starry Eye Bunny!", + "indexObtainable": true, + "name": "Huge Evolved Starry Eye Bunny", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://76225100606605", + }, + "configName": "Huge Evolved Starry Eye Bunny", + "dateCreated": "2026-04-25T17:30:45.343Z", + "dateModified": "2026-04-25T17:30:45.343Z", + "hashShort": "a62e212a70a4de10", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://122179610682291", + "huge": true, + "indexDesc": "Earned from the Tech Spinny Wheel!", + "indexObtainable": true, + "name": "Huge Fragmented Pterodactyl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://89915786412548", + }, + "configName": "Huge Fragmented Pterodactyl", + "dateCreated": "2026-04-25T17:30:45.346Z", + "dateModified": "2026-04-25T17:30:45.346Z", + "hashShort": "677f2f6c0c8e6b1d", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://115643631962302", + "huge": true, + "indexDesc": "Earned from Millionaire World's huge raffles!", + "indexObtainable": true, + "name": "Huge Luxe Axolotl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://96174972080942", + }, + "configName": "Huge Luxe Axolotl", + "dateCreated": "2026-04-25T17:30:45.349Z", + "dateModified": "2026-04-25T17:30:45.349Z", + "hashShort": "b9e0c38ab448d68d", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://81773821775135", + "huge": true, + "indexDesc": "Found in the Void Chest!", + "indexObtainable": true, + "name": "Huge Quantum Griffin", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://103033034897992", + }, + "configName": "Huge Quantum Griffin", + "dateCreated": "2026-04-25T17:30:45.347Z", + "dateModified": "2026-04-25T17:30:45.347Z", + "hashShort": "4744f16582153715", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "evolved": true, + "goldenThumbnail": "", + "huge": true, + "indexDesc": "Earned from evolving Stingray!", + "indexObtainable": true, + "name": "Huge Evolved Stingray", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://132084946919332", + }, + "configName": "Huge Evolved Stingray", + "dateCreated": "2026-04-25T17:30:45.502Z", + "dateModified": "2026-04-25T17:30:45.502Z", + "hashShort": "d1779cfccfe005f4", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "evolved": true, + "fly": true, + "goldenThumbnail": "", + "huge": true, + "indexDesc": "Earned from evolving Evil Raven!", + "indexObtainable": true, + "name": "Huge Evolved Evil Raven", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://139468425219654", + }, + "configName": "Huge Evolved Evil Raven", + "dateCreated": "2026-04-25T17:30:45.507Z", + "dateModified": "2026-04-25T17:30:45.507Z", + "hashShort": "856e274b41701a2e", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://129232792871830", + "huge": true, + "indexDesc": "Found in the Fantasy Spinny Wheel!", + "indexObtainable": true, + "name": "Huge Sprout Wyrmling", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://117238217692099", + }, + "configName": "Huge Sprout Wyrmling", + "dateCreated": "2026-04-25T17:30:46.588Z", + "dateModified": "2026-04-25T17:30:46.588Z", + "hashShort": "a2bca4ff2cd8f682", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://85834830416345", + "huge": true, + "indexDesc": "Found in the Fantasy Chest!", + "indexObtainable": true, + "name": "Huge Inkwell Wisp", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://92033856546098", + }, + "configName": "Huge Inkwell Wisp", + "dateCreated": "2026-04-25T17:30:46.633Z", + "dateModified": "2026-04-25T17:30:46.633Z", + "hashShort": "321dcc8dd59a12a5", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 9487229251846910, + 10125387368919162, + 10708696147152348, + ], + "fromWorldNumber": 1, + "fromZoneNumber": 3, + "goldenThumbnail": "rbxassetid://116680562056811", + "indexDesc": "Found in the Spring Egg!", + "indexObtainable": true, + "name": "Bloom Dominus", + "thumbnail": "rbxassetid://140165604051150", + }, + "configName": "Bloom Dominus", + "dateCreated": "2026-04-25T17:31:02.210Z", + "dateModified": "2026-06-27T16:05:50.598Z", + "hashShort": "b3a346ea8fb705a7", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 8245690609012634, + 8853153092393904, + 9346986298018686, + ], + "fromWorldNumber": 1, + "fromZoneNumber": 3, + "goldenThumbnail": "rbxassetid://106251807343603", + "indexDesc": "Found in the Spring Egg!", + "indexObtainable": true, + "name": "Egg Piggy", + "thumbnail": "rbxassetid://85046134636086", + }, + "configName": "Egg Piggy", + "dateCreated": "2026-04-25T17:31:02.215Z", + "dateModified": "2026-06-27T16:05:50.584Z", + "hashShort": "708d654fdd63e99b", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 8433092668308365, + 9000698655472330, + 9519132538880138, + ], + "fromWorldNumber": 1, + "fromZoneNumber": 3, + "goldenThumbnail": "rbxassetid://124880155534752", + "indexDesc": "Found in the Spring Egg!", + "indexObtainable": true, + "name": "Spring Elephant", + "thumbnail": "rbxassetid://84145747928626", + }, + "configName": "Spring Elephant", + "dateCreated": "2026-04-25T17:31:02.218Z", + "dateModified": "2026-06-27T16:05:50.611Z", + "hashShort": "b4b9a13c756f9c87", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 8749333643369940, + 9544661326933928, + 9892456423013562, + ], + "fromWorldNumber": 1, + "fromZoneNumber": 3, + "goldenThumbnail": "rbxassetid://113407846127190", + "indexDesc": "Found in the Spring Egg!", + "indexObtainable": true, + "name": "Lamb Wolf", + "thumbnail": "rbxassetid://95252458570158", + }, + "configName": "Lamb Wolf", + "dateCreated": "2026-04-25T17:31:02.223Z", + "dateModified": "2026-06-27T16:05:50.587Z", + "hashShort": "bf755034390d2dcb", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 8058288549716904, + 8705607529315539, + 9125667953401078, + ], + "fromWorldNumber": 1, + "fromZoneNumber": 3, + "goldenThumbnail": "rbxassetid://89969443694817", + "indexDesc": "Found in the Spring Egg!", + "indexObtainable": true, + "name": "Spring Kitten", + "thumbnail": "rbxassetid://99401870665103", + }, + "configName": "Spring Kitten", + "dateCreated": "2026-04-25T17:31:02.226Z", + "dateModified": "2026-06-27T16:05:50.588Z", + "hashShort": "cabf07e492a8db28", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 9065574618431516, + 9793543916356210, + 10265780307146984, + ], + "fromWorldNumber": 1, + "fromZoneNumber": 3, + "goldenThumbnail": "rbxassetid://114579796528410", + "indexDesc": "Found in the Spring Egg!", + "indexObtainable": true, + "name": "Garden Goblin", + "thumbnail": "rbxassetid://133054383795999", + }, + "configName": "Garden Goblin", + "dateCreated": "2026-04-25T17:31:02.243Z", + "dateModified": "2026-06-27T16:05:50.596Z", + "hashShort": "3e3708ba86776e79", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "gargantuan": true, + "goldenThumbnail": "rbxassetid://76643604650369", + "indexDesc": "Found in the Gargantuan Machine Hippomelon Egg! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Hippomelon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://133378666610902", + }, + "configName": "Gargantuan Hippomelon", + "dateCreated": "2026-05-02T17:30:29.715Z", + "dateModified": "2026-05-02T17:30:29.715Z", + "hashShort": "70609eefa0ac2335", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "gargantuan": true, + "goldenThumbnail": "rbxassetid://93296044827080", + "indexDesc": "Found in the Veilwood Time Trials Contest! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Wicked Kirin", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://97026907883242", + }, + "configName": "Gargantuan Wicked Kirin", + "dateCreated": "2026-05-02T17:30:29.747Z", + "dateModified": "2026-05-02T17:30:29.747Z", + "hashShort": "ea28184bf140ba03", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://126294219768621", + "huge": true, + "indexDesc": "Found in the Time Trials Chests!", + "indexObtainable": true, + "name": "Huge Ancestor Eagle", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://95278046256593", + }, + "configName": "Huge Ancestor Eagle", + "dateCreated": "2026-05-02T17:30:52.080Z", + "dateModified": "2026-05-02T17:30:52.080Z", + "hashShort": "c0b7e9744dbff4ca", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://137473872508401", + "huge": true, + "indexDesc": "Found in the Gargantuan Machine Hippomelon Egg!", + "indexObtainable": true, + "name": "Huge Ducky Magician", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://113798399729190", + }, + "configName": "Huge Ducky Magician", + "dateCreated": "2026-05-02T17:30:51.785Z", + "dateModified": "2026-05-02T17:30:51.785Z", + "hashShort": "be8544eb86575f92", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://127729544255191", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Goldfish", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://95752779695636", + }, + "configName": "Huge Goldfish", + "dateCreated": "2026-05-02T17:30:52.065Z", + "dateModified": "2026-05-02T17:30:52.065Z", + "hashShort": "5a2fdfe1d7d67ffd", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://111337285917876", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Platypus", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://81423443378217", + }, + "configName": "Huge Platypus", + "dateCreated": "2026-05-02T17:30:52.052Z", + "dateModified": "2026-05-02T17:30:52.052Z", + "hashShort": "89fe1fcfacbc7ff0", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://111577360353399", + "huge": true, + "indexDesc": "Found in the Gargantuan Machine Hippomelon Egg!", + "indexObtainable": true, + "name": "Huge Midnight Axolotl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://124395858788677", + }, + "configName": "Huge Midnight Axolotl", + "dateCreated": "2026-05-02T17:30:51.800Z", + "dateModified": "2026-05-02T17:30:51.800Z", + "hashShort": "7a268793c58b9b7e", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://80392306095232", + "huge": true, + "indexDesc": "Reward in Free Rewards Gifts!", + "indexObtainable": true, + "name": "Huge Werewolf", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://99136154252309", + }, + "configName": "Huge Werewolf", + "dateCreated": "2026-05-02T17:30:52.056Z", + "dateModified": "2026-05-02T17:30:52.056Z", + "hashShort": "14e4bd90e33c4a6b", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "cachedPower": [ + 20039527566274204, + ], + "fly": true, + "fromEgg": "Hollow Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 279, + "goldenThumbnail": "rbxassetid://92856152877536", + "huge": true, + "indexDesc": "Found in the Hollow Egg!", + "indexObtainable": true, + "isFromLastZone": true, + "maxChance": 5.993943898902866e-8, + "name": "Huge Wisp Griffin", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://107709649476563", + }, + "configName": "Huge Wisp Griffin", + "dateCreated": "2026-05-02T17:30:52.067Z", + "dateModified": "2026-05-02T17:30:52.067Z", + "hashShort": "9454f37fb077f4f6", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://128324848382423", + "huge": true, + "indexDesc": "Found in the Time Trials Chests!", + "indexObtainable": true, + "name": "Huge Totem Cub", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://92882162036014", + }, + "configName": "Huge Totem Cub", + "dateCreated": "2026-05-02T17:30:52.077Z", + "dateModified": "2026-05-02T17:30:52.077Z", + "hashShort": "94a7c39de43be38f", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://135028804902661", + "huge": true, + "indexDesc": "Found in the Gargantuan Machine Hippomelon Egg!", + "indexObtainable": true, + "name": "Huge Dino", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://108545390694992", + }, + "configName": "Huge Dino", + "dateCreated": "2026-05-02T17:30:52.242Z", + "dateModified": "2026-05-02T17:30:52.242Z", + "hashShort": "3306a0d4af7b5783", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://79452948057912", + "huge": true, + "indexDesc": "Found in Fantasy Gifts from the Veilwood Time Trials Contest!", + "indexObtainable": true, + "name": "Huge Mushroom Pixie", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://104120102100620", + }, + "configName": "Huge Mushroom Pixie", + "dateCreated": "2026-05-02T17:30:52.071Z", + "dateModified": "2026-05-02T17:30:52.071Z", + "hashShort": "ba39cd0363023452", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://120415391967898", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Penguin", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://118584949011008", + }, + "configName": "Huge Penguin", + "dateCreated": "2026-05-02T17:30:52.047Z", + "dateModified": "2026-05-02T17:30:52.047Z", + "hashShort": "40b96f4fbe0911e3", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "animations": { + "spinZ": true, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://73573240957877", + "huge": true, + "indexDesc": "Found in the XYZ!", + "indexObtainable": true, + "name": "Huge Ruinous Angelus", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://101706886467940", + }, + "configName": "Huge Ruinous Angelus", + "dateCreated": "2026-05-02T17:30:52.217Z", + "dateModified": "2026-05-02T17:30:52.217Z", + "hashShort": "1ab50969b93917b8", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://88859753092427", + "huge": true, + "indexDesc": "Found in the Time Trial Gift #2!", + "indexObtainable": true, + "name": "Huge Palace Pooka", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://120508025732029", + }, + "configName": "Huge Palace Pooka", + "dateCreated": "2026-05-02T17:30:52.586Z", + "dateModified": "2026-05-09T17:51:42.438Z", + "hashShort": "1649e890bce6bf6d", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://119307621595813", + "huge": true, + "indexDesc": "???", + "indexObtainable": true, + "name": "Huge Signature BIG Maskot", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "secretExclusive": true, + "thumbnail": "rbxassetid://98304859922444", + }, + "configName": "Huge Signature BIG Maskot", + "dateCreated": "2026-05-02T17:30:52.338Z", + "dateModified": "2026-05-02T17:30:52.338Z", + "hashShort": "d970df5731721531", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://80606807904111", + "huge": true, + "indexDesc": "Found in the Gargantuan Machine Hippomelon Egg!", + "indexObtainable": true, + "name": "Huge Lunar Deer", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://93191567038818", + }, + "configName": "Huge Lunar Deer", + "dateCreated": "2026-05-02T17:30:51.805Z", + "dateModified": "2026-05-02T17:30:51.805Z", + "hashShort": "39960c0cc657b59b", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://115369619724412", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Alien", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://123487033962716", + }, + "configName": "Huge Alien", + "dateCreated": "2026-05-02T17:30:52.048Z", + "dateModified": "2026-05-02T17:30:52.048Z", + "hashShort": "b630263763befb10", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://103380425884952", + "huge": true, + "indexDesc": "Found in the Gargantuan Machine Hippomelon Egg!", + "indexObtainable": true, + "name": "Huge Electric Slime", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://134465209106329", + }, + "configName": "Huge Electric Slime", + "dateCreated": "2026-05-02T17:30:52.587Z", + "dateModified": "2026-05-02T17:30:52.587Z", + "hashShort": "96fbfc15d595a682", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://94983509839212", + "huge": true, + "indexDesc": "Found in the Veilwood Time Trials Contest!", + "indexObtainable": true, + "name": "Huge Knight Golem", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://86043823769760", + }, + "configName": "Huge Knight Golem", + "dateCreated": "2026-05-02T17:30:52.213Z", + "dateModified": "2026-05-02T17:30:52.213Z", + "hashShort": "8d7019fb9f0f2095", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://116494299505962", + "indexDesc": "Found in the Veilwood Time Trials Contest!", + "indexObtainable": true, + "name": "Titanic Veil Horse", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://80965165352380", + "titanic": true, + }, + "configName": "Titanic Veil Horse", + "dateCreated": "2026-05-02T17:31:04.762Z", + "dateModified": "2026-05-02T17:31:04.762Z", + "hashShort": "fc143543f6c12f90", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://78393804752689", + "indexDesc": "Found in the Time Trials Chests!", + "indexObtainable": true, + "name": "Titanic Scroll Dragon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://118843935500036", + "titanic": true, + }, + "configName": "Titanic Scroll Dragon", + "dateCreated": "2026-05-02T17:31:04.736Z", + "dateModified": "2026-05-02T17:31:04.736Z", + "hashShort": "31f531d07b442989", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://140311003667052", + "indexDesc": "Reward in Free Rewards Gifts!", + "indexObtainable": true, + "name": "Titanic Werewolf", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://111055741189811", + "titanic": true, + }, + "configName": "Titanic Werewolf", + "dateCreated": "2026-05-02T17:31:04.722Z", + "dateModified": "2026-05-02T17:31:04.722Z", + "hashShort": "bb584e60829271cf", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "animations": { + "spinZ": true, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://110742969491162", + "indexDesc": "Found in Fantasy Gift 5 from the Veilwood Time Trials Contest!", + "indexObtainable": true, + "name": "Titanic Ruinous Angelus", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://128700972772946", + "titanic": true, + }, + "configName": "Titanic Ruinous Angelus", + "dateCreated": "2026-05-02T17:31:04.715Z", + "dateModified": "2026-05-02T17:31:04.715Z", + "hashShort": "f4732af73cb36a56", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://115026953393932", + "indexDesc": "Found in the Gargantuan Machine Hippomelon Egg!", + "indexObtainable": true, + "name": "Titanic Lucky Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://74474705951113", + "titanic": true, + }, + "configName": "Titanic Lucky Cat", + "dateCreated": "2026-05-02T17:31:04.727Z", + "dateModified": "2026-05-02T17:31:04.727Z", + "hashShort": "b4ef87dd5f89fec9", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "spinZ": true, + }, + "cachedPower": [ + 13044834483756140, + 14004933311911556, + 14675438794225658, + ], + "fly": true, + "fromEgg": "Wraithcap Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 277, + "goldenThumbnail": "rbxassetid://103772239841454", + "isFromLastZone": true, + "maxChance": 0.09090814913336014, + "name": "Ruinous Angelus", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "thumbnail": "rbxassetid://76025459852090", + }, + "configName": "Ruinous Angelus", + "dateCreated": "2026-05-02T17:31:44.029Z", + "dateModified": "2026-06-27T16:05:50.601Z", + "hashShort": "79380610da557f32", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 18483835026875000, + 19873292540448976, + 20794314405234376, + ], + "fromEgg": "Hollow Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 279, + "goldenThumbnail": "rbxassetid://129637864170600", + "isFromLastZone": true, + "maxChance": 0.000009989906498171444, + "name": "Knight Golem", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "thumbnail": "rbxassetid://121496530263111", + }, + "configName": "Knight Golem", + "dateCreated": "2026-05-02T17:31:44.031Z", + "dateModified": "2026-06-27T16:05:50.595Z", + "hashShort": "4931294714a7aab8", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 20039527566274204, + 21791363978784972, + 22544468512058480, + ], + "fromEgg": "Hollow Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 279, + "goldenThumbnail": "rbxassetid://100139878376347", + "isFromLastZone": true, + "maxChance": 5.993943898902866e-8, + "name": "Wicked Kirin", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + "thumbnail": "rbxassetid://125687933489233", + }, + "configName": "Wicked Kirin", + "dateCreated": "2026-05-02T17:31:44.028Z", + "dateModified": "2026-06-27T16:05:50.582Z", + "hashShort": "efd79d3b2a4f47b4", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 9667837146404804, + 10441396869203130, + 10876316789705404, + ], + "fly": true, + "fromEgg": "Bloomfade Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 275, + "goldenThumbnail": "rbxassetid://77816389805557", + "maxChance": 0.8991008991008992, + "name": "Mushroom Pixie", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://71343893688572", + }, + "configName": "Mushroom Pixie", + "dateCreated": "2026-05-02T17:31:44.030Z", + "dateModified": "2026-06-27T16:05:50.598Z", + "hashShort": "5c7b703dd4d07479", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 10876316789705404, + 11746571477853522, + 12235856388418580, + ], + "fromEgg": "Duskwillow Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 276, + "goldenThumbnail": "rbxassetid://107052064352993", + "maxChance": 0.9, + "name": "Crystal Axolotl", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://81796950182689", + }, + "configName": "Crystal Axolotl", + "dateCreated": "2026-05-02T17:31:44.031Z", + "dateModified": "2026-06-27T16:05:50.599Z", + "hashShort": "a671b6625889285b", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 12236200927756482, + 13215581991261016, + 13765726043726044, + ], + "fly": true, + "fromEgg": "Wraithcap Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 277, + "goldenThumbnail": "rbxassetid://102827441168299", + "isFromLastZone": true, + "maxChance": 0.9090814913336014, + "name": "Wisp Griffin", + "rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "thumbnail": "rbxassetid://81623776403017", + }, + "configName": "Wisp Griffin", + "dateCreated": "2026-05-02T17:31:44.040Z", + "dateModified": "2026-06-27T16:05:50.583Z", + "hashShort": "f9597869a6589f79", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://92579988546575", + "name": "Crown", + "preventGolden": true, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "secret": true, + "thumbnail": "rbxassetid://92579988546575", + }, + "configName": "Crown", + "dateCreated": "2026-05-02T17:31:44.043Z", + "dateModified": "2026-05-02T17:31:44.043Z", + "hashShort": "35c51dc23be0aaac", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 19674324929532316, + 21317401048186452, + 22133615545723856, + ], + "fromEgg": "Hollow Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 279, + "goldenThumbnail": "rbxassetid://126974350607975", + "isFromLastZone": true, + "maxChance": 2.497476624542861e-7, + "name": "Veil Horse", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + "thumbnail": "rbxassetid://134128119764881", + }, + "configName": "Veil Horse", + "dateCreated": "2026-05-02T17:31:44.056Z", + "dateModified": "2026-06-27T16:05:50.603Z", + "hashShort": "3acacde4727e88a8", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://138854877863522", + "huge": true, + "indexDesc": "Can be dropped in the Time Trials!", + "indexObtainable": true, + "name": "Huge Crystal Axolotl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://78600472336744", + }, + "configName": "Huge Crystal Axolotl", + "dateCreated": "2026-05-09T17:51:42.447Z", + "dateModified": "2026-05-09T17:51:42.447Z", + "hashShort": "369325c2c48b15e4", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://99012236789971", + "huge": true, + "indexDesc": "1 in 25,000,000 base chance from the RNG Event", + "indexObtainable": true, + "name": "Huge Nebula Lion", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://93555710520870", + }, + "configName": "Huge Nebula Lion", + "dateCreated": "2026-05-09T17:51:42.448Z", + "dateModified": "2026-05-09T17:51:42.448Z", + "hashShort": "c91bf5cf082c4e4f", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://127040121999814", + "huge": true, + "indexDesc": "1 in 200,000,000 base chance from the RNG Event", + "indexObtainable": true, + "name": "Huge Cataclysm Bear", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://126636577464770", + }, + "configName": "Huge Cataclysm Bear", + "dateCreated": "2026-05-09T17:51:42.440Z", + "dateModified": "2026-05-09T17:51:42.440Z", + "hashShort": "c40c24bde278a70d", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://135438331804925", + "huge": true, + "indexDesc": "Found in the Exclusive Origami Egg!", + "indexObtainable": true, + "name": "Huge Origami Bunny", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://83483274094182", + }, + "configName": "Huge Origami Bunny", + "dateCreated": "2026-05-09T17:51:42.437Z", + "dateModified": "2026-05-09T17:51:42.437Z", + "hashShort": "dbf00d15c98ffed4", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://100447638935147", + "huge": true, + "indexDesc": "Found in the Void Forever Pack!", + "indexObtainable": true, + "name": "Huge Alienus Kitsune", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://135920143312386", + }, + "configName": "Huge Alienus Kitsune", + "dateCreated": "2026-05-09T17:51:42.440Z", + "dateModified": "2026-05-09T17:51:42.440Z", + "hashShort": "e1f2fe9280dc8774", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://123114304515589", + "huge": true, + "indexDesc": "1 in 60,000,000 base chance from the RNG Event", + "indexObtainable": true, + "name": "Huge Eclipse Owl", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://106929390805837", + }, + "configName": "Huge Eclipse Owl", + "dateCreated": "2026-05-09T17:51:42.441Z", + "dateModified": "2026-05-09T17:51:42.441Z", + "hashShort": "f06811da2fa4e241", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://72512202080175", + "huge": true, + "indexDesc": "Found in the 2026 Angel Clan Battle!", + "indexObtainable": true, + "name": "Huge Angel Cow", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://136952666611096", + }, + "configName": "Huge Angel Cow", + "dateCreated": "2026-05-09T17:51:42.444Z", + "dateModified": "2026-05-09T17:51:42.444Z", + "hashShort": "4130641672627c9c", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://114871320419998", + "huge": true, + "indexDesc": "Found in Fantasy Gifts from the Veilwood Time Trials Contest!", + "indexObtainable": true, + "name": "Huge Wicked Kirin", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://80510335066918", + }, + "configName": "Huge Wicked Kirin", + "dateCreated": "2026-05-09T17:51:42.439Z", + "dateModified": "2026-05-09T17:51:42.439Z", + "hashShort": "f2a78bbbd5b371fc", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://85007130305893", + "huge": true, + "indexDesc": "Found in Fantasy Gifts from the Veilwood Time Trials Contest!", + "indexObtainable": true, + "name": "Huge Veil Horse", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://137004945467080", + }, + "configName": "Huge Veil Horse", + "dateCreated": "2026-05-09T17:51:42.455Z", + "dateModified": "2026-05-09T17:51:42.455Z", + "hashShort": "0158be3b9392f68b", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://98973380774975", + "huge": true, + "indexDesc": "Found in the Exclusive Origami Egg!", + "indexObtainable": true, + "name": "Huge Origami Shark", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://89090934657295", + }, + "configName": "Huge Origami Shark", + "dateCreated": "2026-05-09T17:51:42.471Z", + "dateModified": "2026-05-09T17:51:42.471Z", + "hashShort": "61bf5f1479a5f40b", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fly": true, + "flyingTitanic": true, + "goldenThumbnail": "rbxassetid://130897869663062", + "indexDesc": "Found in the Exclusive Origami Egg!", + "indexObtainable": true, + "name": "Titanic Origami Crane", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://77309638284981", + "titanic": true, + }, + "configName": "Titanic Origami Crane", + "dateCreated": "2026-05-09T17:51:44.940Z", + "dateModified": "2026-05-09T17:51:44.940Z", + "hashShort": "743b0665b49c6bd0", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "animations": { + "ridingCameraOffset": null, + }, + "fly": true, + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "goldenThumbnail": "rbxassetid://122921348598490", + "indexDesc": "1 in 3,000,000,000 base chance from the RNG Event", + "indexObtainable": true, + "name": "Titanic Arcane Void Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://77026614501642", + "titanic": true, + }, + "configName": "Titanic Arcane Void Cat", + "dateCreated": "2026-05-09T17:51:44.935Z", + "dateModified": "2026-05-09T17:51:44.935Z", + "hashShort": "161c2144c5125f67", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://82250239039918", + "indexDesc": "Found in the 2026 Angel Clan Battle!", + "indexObtainable": true, + "name": "Titanic Angel Cow", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://92969844303384", + "titanic": true, + }, + "configName": "Titanic Angel Cow", + "dateCreated": "2026-05-09T17:51:44.941Z", + "dateModified": "2026-05-09T17:51:44.941Z", + "hashShort": "4019985edcb86a23", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "gargantuan": true, + "goldenThumbnail": "rbxassetid://106380819747388", + "indexDesc": "Found in the Exclusive Origami Egg! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Origami Kitsune", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://116438972015691", + }, + "configName": "Gargantuan Origami Kitsune", + "dateCreated": "2026-05-09T17:51:46.294Z", + "dateModified": "2026-05-09T17:51:46.294Z", + "hashShort": "6d9b7e0491ad59e7", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 15946622981731, + 17128991756335, + 18027665603385, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 220, + "goldenThumbnail": "rbxassetid://14968191507", + "name": "Chameleon", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://14968191616", + }, + "configName": "Chameleon", + "dateCreated": "2026-05-09T17:51:48.985Z", + "dateModified": "2026-06-27T16:05:19.955Z", + "hashShort": "885df5b543c24043", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 13432287717945, + 14654161445072, + 15167608284673, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 220, + "goldenThumbnail": "rbxassetid://14968325478", + "name": "Sand Turtle", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://14968325622", + }, + "configName": "Sand Turtle", + "dateCreated": "2026-05-09T17:51:50.634Z", + "dateModified": "2026-06-27T16:05:23.866Z", + "hashShort": "021146507dcbe5da", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 13904780250737, + 15020261322660, + 15716758101057, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 220, + "goldenThumbnail": "rbxassetid://115114919248817", + "name": "Sprout Stag", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://128467165594954", + }, + "configName": "Sprout Stag", + "dateCreated": "2026-05-09T17:52:05.872Z", + "dateModified": "2026-06-27T16:05:46.821Z", + "hashShort": "9803344733b41149", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 14377272783529, + 15380005826237, + 16256374856422, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 220, + "goldenThumbnail": "rbxassetid://114485103442642", + "name": "Blossom Fox", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://96210577688555", + }, + "configName": "Blossom Fox", + "dateCreated": "2026-05-09T17:52:05.871Z", + "dateModified": "2026-06-27T16:05:46.836Z", + "hashShort": "a58bc9002ec66dc4", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 18281664204055, + 19527589732755, + 20666815421513, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 220, + "goldenThumbnail": "rbxassetid://74884358674322", + "name": "Sapphire Dragon", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://88212205964992", + }, + "configName": "Sapphire Dragon", + "dateCreated": "2026-05-09T17:52:05.870Z", + "dateModified": "2026-06-27T16:05:50.612Z", + "hashShort": "d6b066702bf25442", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 15415068882340, + 16721414180602, + 17416299239785, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 220, + "goldenThumbnail": "rbxassetid://114128525278613", + "name": "Honey Bee", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://115038492309499", + }, + "configName": "Honey Bee", + "dateCreated": "2026-05-09T17:52:05.879Z", + "dateModified": "2026-06-27T16:05:46.820Z", + "hashShort": "b14324d374e08d05", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://133061440004886", + "name": "Origami Fox", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://101359588491259", + }, + "configName": "Origami Fox", + "dateCreated": "2026-05-09T17:52:05.879Z", + "dateModified": "2026-05-09T17:52:05.879Z", + "hashShort": "e10c1248dfb72472", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://138959116936017", + "name": "Origami Bunny", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://89925661581797", + }, + "configName": "Origami Bunny", + "dateCreated": "2026-05-09T17:52:05.884Z", + "dateModified": "2026-05-09T17:52:05.884Z", + "hashShort": "9398e4df0f23c2de", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 19605803433788, + 21235418364099, + 22149929131171, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 220, + "goldenThumbnail": "rbxassetid://115253658707098", + "name": "Mystical Kitsune", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://106945584549571", + }, + "configName": "Mystical Kitsune", + "dateCreated": "2026-05-09T17:52:05.893Z", + "dateModified": "2026-06-27T16:05:50.594Z", + "hashShort": "67ca72832c0d369a", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 20278551590830, + 21749622780838, + 22921235756280, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 220, + "goldenThumbnail": "rbxassetid://125648324084910", + "name": "Surge Wolf", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://75053878929032", + }, + "configName": "Surge Wolf", + "dateCreated": "2026-05-09T17:52:05.912Z", + "dateModified": "2026-06-27T16:05:46.815Z", + "hashShort": "4608a3d02436d00e", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 17683665842241, + 19073630313308, + 19985876292342, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 220, + "goldenThumbnail": "rbxassetid://90832503040450", + "name": "Starry Eye Wolf", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://117843161621621", + }, + "configName": "Starry Eye Wolf", + "dateCreated": "2026-05-09T17:52:05.909Z", + "dateModified": "2026-06-27T16:05:46.838Z", + "hashShort": "515972ed99b243ea", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "balloon": true, + "cachedPower": [ + 17085667480426, + 18611984491127, + 19293407559071, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 220, + "goldenThumbnail": "rbxassetid://71490386140865", + "name": "Bubble Bunny", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://114473136243970", + }, + "configName": "Bubble Bunny", + "dateCreated": "2026-05-09T17:52:05.915Z", + "dateModified": "2026-06-27T16:05:46.835Z", + "hashShort": "62b654e3f3f14272", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 16487669118611, + 17648469648513, + 18589159566242, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 220, + "goldenThumbnail": "rbxassetid://71097610892797", + "name": "Tiedye Elephant", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://114268462109179", + }, + "configName": "Tiedye Elephant", + "dateCreated": "2026-05-09T17:52:05.925Z", + "dateModified": "2026-06-27T16:05:46.834Z", + "hashShort": "38a01c9836168ccf", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 14883514782949, + 16154788610817, + 16794336947236, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 220, + "goldenThumbnail": "rbxassetid://14968233172", + "name": "Error Dragon", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://14968233265", + }, + "configName": "Error Dragon", + "dateCreated": "2026-05-09T17:52:05.928Z", + "dateModified": "2026-06-27T16:05:46.821Z", + "hashShort": "f0ed8d9b51267f6c", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 18933055276747, + 20638631055233, + 21365797869982, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 220, + "goldenThumbnail": "rbxassetid://97008575759497", + "name": "Wisp Owl", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://107669106970835", + }, + "configName": "Wisp Owl", + "dateCreated": "2026-05-09T17:52:05.917Z", + "dateModified": "2026-06-27T16:05:50.588Z", + "hashShort": "8625d32b7be24aa0", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 3, + "goldenThumbnail": "rbxassetid://140627600152252", + "name": "Origami Shark", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://85017573076529", + }, + "configName": "Origami Shark", + "dateCreated": "2026-05-09T17:52:05.922Z", + "dateModified": "2026-05-09T17:52:05.922Z", + "hashShort": "1a567090ed54395e", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 1, + "goldenThumbnail": "rbxassetid://14968337892", + "indexDesc": "ADMIN ABUSE!!!", + "indexObtainable": true, + "name": "Stacked Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://14968338038", + }, + "configName": "Stacked Cat", + "dateCreated": "2026-05-16T16:39:54.080Z", + "dateModified": "2026-05-16T16:39:54.080Z", + "hashShort": "2d5ae0b04f773521", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 95982270617357, + 102185819721790, + 108136923928681, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://81856291107651", + "indexObtainable": true, + "name": "Pixel Hippomelon", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://95124765096192", + }, + "configName": "Pixel Hippomelon", + "dateCreated": "2026-05-16T16:40:11.532Z", + "dateModified": "2026-06-27T16:05:46.803Z", + "hashShort": "2dccda9fb736d745", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 107980054444527, + 114955704056612, + 121651394996008, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://80806928333056", + "indexObtainable": true, + "name": "Vibrant Zebra", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://139386348071034", + }, + "configName": "Vibrant Zebra", + "dateCreated": "2026-05-16T16:40:14.815Z", + "dateModified": "2026-06-27T16:05:46.796Z", + "hashShort": "d3f393bc33b0b7f1", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 121477561250093, + 129320190004734, + 136847927082039, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 239, + "goldenThumbnail": "rbxassetid://126142571799673", + "indexObtainable": true, + "name": "Holographic Shark", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://99263753125121", + }, + "configName": "Holographic Shark", + "dateCreated": "2026-05-16T16:40:14.815Z", + "dateModified": "2026-06-27T16:05:46.814Z", + "hashShort": "fc31fa6788f5349c", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "gargantuan": true, + "goldenThumbnail": "rbxassetid://124778864305486", + "indexDesc": "ADMIN ABUSE!!! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Clown Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://92898513415852", + }, + "configName": "Gargantuan Clown Cat", + "dateCreated": "2026-05-16T16:40:14.874Z", + "dateModified": "2026-05-16T16:40:14.874Z", + "hashShort": "fc51edb9902293e3", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://138690171735050", + "huge": true, + "indexDesc": "1 in 30,000,000 base chance from the RNG Event", + "indexObtainable": true, + "name": "Huge Oracle Tiger", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://86086397242289", + }, + "configName": "Huge Oracle Tiger", + "dateCreated": "2026-05-16T16:40:29.956Z", + "dateModified": "2026-05-16T16:40:29.956Z", + "hashShort": "05dfce5523875691", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://128256938456921", + "huge": true, + "indexDesc": "1 in 60,000,000 base chance from the RNG Event", + "indexObtainable": true, + "name": "Huge Prism Pegasus", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://80538613184733", + }, + "configName": "Huge Prism Pegasus", + "dateCreated": "2026-05-16T16:40:29.959Z", + "dateModified": "2026-05-16T16:40:29.959Z", + "hashShort": "077995838625aab4", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://134590778478565", + "huge": true, + "indexDesc": "1 in 90,000,000 base chance from the RNG Event", + "indexObtainable": true, + "name": "Huge Anubis", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://132510616304685", + }, + "configName": "Huge Anubis", + "dateCreated": "2026-05-16T16:40:29.960Z", + "dateModified": "2026-05-16T16:40:29.960Z", + "hashShort": "1ab85a56b00ffda2", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://94633353006473", + "huge": true, + "indexDesc": "Found in the RNG Forever Pack!", + "indexObtainable": true, + "name": "Huge Lotus Koi Fish", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://128936875098689", + }, + "configName": "Huge Lotus Koi Fish", + "dateCreated": "2026-05-16T16:40:29.962Z", + "dateModified": "2026-05-16T16:40:29.962Z", + "hashShort": "8f295794107a34b8", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://75580925211023", + "huge": true, + "indexDesc": "ADMIN ABUSE!!!", + "indexObtainable": true, + "name": "Huge Demolition Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://128405982771054", + }, + "configName": "Huge Demolition Cat", + "dateCreated": "2026-05-16T16:40:29.986Z", + "dateModified": "2026-05-16T16:40:29.986Z", + "hashShort": "e38aa0885c7d3b44", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "animations": { + "swerve": true, + "swerveAggression": 1, + "swerveMaxAngle": 60, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://106787321514168", + "indexDesc": "ADMIN ABUSE!!!", + "indexObtainable": true, + "name": "Titanic Propeller Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://73254502740127", + "titanic": true, + }, + "configName": "Titanic Propeller Cat", + "dateCreated": "2026-05-16T16:40:32.773Z", + "dateModified": "2026-05-16T16:40:32.773Z", + "hashShort": "4861316910412c97", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "animations": { + "ridingCameraOffset": null, + }, + "fly": true, + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "goldenThumbnail": "rbxassetid://133769007958474", + "indexDesc": "1 in 3,000,000,000 base chance from the RNG Event", + "indexObtainable": true, + "name": "Titanic Arcane Halo Cat", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://94452581960646", + "titanic": true, + }, + "configName": "Titanic Arcane Halo Cat", + "dateCreated": "2026-05-16T16:40:32.777Z", + "dateModified": "2026-05-16T16:40:32.777Z", + "hashShort": "2fbee338be4b75ab", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "gargantuan": true, + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Space Egg! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Solar Lion", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://87628881195468", + }, + "configName": "Gargantuan Solar Lion", + "dateCreated": "2026-06-13T23:13:01.385Z", + "dateModified": "2026-06-13T23:13:01.385Z", + "hashShort": "eaf34720d52c4578", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "gargantuan": true, + "goldenThumbnail": "rbxassetid://123223942397140", + "hidden": false, + "indexDesc": "Found in the Backrooms Keep Out Egg! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Guest 666", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://135146676911044", + }, + "configName": "Gargantuan Guest 666", + "dateCreated": "2026-06-13T23:13:01.386Z", + "dateModified": "2026-06-13T23:13:01.386Z", + "hashShort": "e68f2049b96dbb32", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "animations": { + "flyHeight": 0.025, + "flyHeightChange": 0, + "swerve": true, + "swerveAggression": 1, + "swerveMaxAngle": 60, + }, + "fly": true, + "gargantuan": true, + "goldenThumbnail": "rbxassetid://81995438423715", + "indexDesc": "Found in the 2026 Forever Pack! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Skateboard Bulldog", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://84695641552437", + }, + "configName": "Gargantuan Skateboard Bulldog", + "dateCreated": "2026-06-13T23:13:01.387Z", + "dateModified": "2026-06-27T16:04:59.112Z", + "hashShort": "5538928ef19a828a", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://101768773226291", + "hidden": false, + "huge": true, + "indexDesc": "Found in The Forever Pack!", + "indexObtainable": true, + "name": "Huge Guest 666", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://128645300707262", + }, + "configName": "Huge Guest 666", + "dateCreated": "2026-06-13T23:13:11.334Z", + "dateModified": "2026-06-13T23:13:11.334Z", + "hashShort": "b03be4c7e2c19366", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://104052378218034", + "hidden": false, + "huge": true, + "indexDesc": "Found in the Backrooms Eggs!", + "indexObtainable": true, + "name": "Huge Skin Stealer", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://85325865456841", + }, + "configName": "Huge Skin Stealer", + "dateCreated": "2026-06-13T23:13:11.335Z", + "dateModified": "2026-06-13T23:13:11.335Z", + "hashShort": "4ab7016ccbee7a77", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://107834232815116", + "hidden": false, + "huge": true, + "indexDesc": "Found in the Daydream Chest!", + "indexObtainable": true, + "name": "Huge Piggy Piggy", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://110879207781790", + }, + "configName": "Huge Piggy Piggy", + "dateCreated": "2026-06-13T23:13:11.334Z", + "dateModified": "2026-06-13T23:13:11.334Z", + "hashShort": "1082b76aeb30839c", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "", + "huge": true, + "indexDesc": "Found in the Exclusive Space Egg!", + "indexObtainable": true, + "name": "Huge Earth Dog", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://89978281504529", + }, + "configName": "Huge Earth Dog", + "dateCreated": "2026-06-13T23:13:11.335Z", + "dateModified": "2026-06-13T23:13:11.335Z", + "hashShort": "69fc284ec512968f", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://131861824267590", + "hidden": false, + "huge": true, + "indexDesc": "Found in the Backrooms Eggs!", + "indexObtainable": true, + "name": "Huge Partygoer Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://138965956652016", + }, + "configName": "Huge Partygoer Cat", + "dateCreated": "2026-06-13T23:13:11.336Z", + "dateModified": "2026-06-13T23:13:11.336Z", + "hashShort": "4a83985867a58c55", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://125398538928840", + "hidden": false, + "huge": true, + "indexDesc": "Found in the Daydream Chest!", + "indexObtainable": true, + "name": "Huge Tripod Octopus", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://93268363716893", + }, + "configName": "Huge Tripod Octopus", + "dateCreated": "2026-06-13T23:13:11.336Z", + "dateModified": "2026-06-13T23:13:11.336Z", + "hashShort": "1162df10be0d4088", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://140663070903141", + "hidden": false, + "huge": true, + "indexDesc": "Found in the Backrooms Eggs!", + "indexObtainable": true, + "name": "Huge Omen", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://137971617638056", + }, + "configName": "Huge Omen", + "dateCreated": "2026-06-13T23:13:11.333Z", + "dateModified": "2026-06-13T23:13:11.333Z", + "hashShort": "027d2a5d0f67985c", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://71183497348760", + "hidden": false, + "huge": true, + "indexDesc": "Earned from the Backrooms event leaderboard contest!", + "indexObtainable": true, + "name": "Huge Death Moth", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://127035440005501", + }, + "configName": "Huge Death Moth", + "dateCreated": "2026-06-13T23:13:11.344Z", + "dateModified": "2026-06-13T23:13:11.344Z", + "hashShort": "5aefd9ba111f397f", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://137063337041843", + "huge": true, + "indexDesc": "Found in the 2026 Forever Pack!", + "indexObtainable": true, + "name": "Huge Honey Bee", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://131704156352631", + }, + "configName": "Huge Honey Bee", + "dateCreated": "2026-06-13T23:13:11.350Z", + "dateModified": "2026-06-13T23:13:11.350Z", + "hashShort": "1c7c6b5a289a686c", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "", + "huge": true, + "indexDesc": "Found in the Exclusive Space Egg!", + "indexObtainable": true, + "name": "Huge Mars Monkey", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://99490040407596", + }, + "configName": "Huge Mars Monkey", + "dateCreated": "2026-06-13T23:13:11.347Z", + "dateModified": "2026-06-13T23:13:11.347Z", + "hashShort": "97c95783d07b15a7", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://88380648260631", + "huge": true, + "indexDesc": "Found in the 2026 Daydream Clan Battle!", + "indexObtainable": true, + "name": "Huge Daydream Fox", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://132482986754528", + }, + "configName": "Huge Daydream Fox", + "dateCreated": "2026-06-13T23:13:11.347Z", + "dateModified": "2026-06-13T23:13:11.347Z", + "hashShort": "29a59c7db77cccfe", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://113642682929451", + "hidden": false, + "huge": true, + "indexDesc": "Found in the Daydream Chest!", + "indexObtainable": true, + "name": "Huge Faceling Raccoon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://85315906678412", + }, + "configName": "Huge Faceling Raccoon", + "dateCreated": "2026-06-13T23:13:11.348Z", + "dateModified": "2026-06-13T23:13:11.348Z", + "hashShort": "9e54d2a66df48bdb", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://133816192130055", + "hidden": false, + "indexDesc": "Found in the Backrooms Keep Out Egg!", + "indexObtainable": true, + "name": "Titanic Partygoer Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://102779057847581", + "titanic": true, + }, + "configName": "Titanic Partygoer Cat", + "dateCreated": "2026-06-13T23:13:14.442Z", + "dateModified": "2026-06-13T23:13:14.442Z", + "hashShort": "c630dca7b90bbefd", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fly": true, + "flyingTitanic": true, + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Space Egg!", + "indexObtainable": true, + "name": "Titanic Space Bat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://107167387939253", + "titanic": true, + }, + "configName": "Titanic Space Bat", + "dateCreated": "2026-06-13T23:13:14.446Z", + "dateModified": "2026-06-13T23:13:14.446Z", + "hashShort": "c88815fe9ed3c52d", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://76804683578340", + "indexDesc": "Found in the 2026 Daydream Clan Battle!", + "indexObtainable": true, + "name": "Titanic Daydream Fox", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://102769273714127", + "titanic": true, + }, + "configName": "Titanic Daydream Fox", + "dateCreated": "2026-06-13T23:13:14.445Z", + "dateModified": "2026-06-13T23:13:14.445Z", + "hashShort": "76974fe3f235947b", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://70688061060086", + "hidden": false, + "indexDesc": "Found in The Forever Pack!", + "indexObtainable": true, + "name": "Titanic Death Moth", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://101214566391451", + "titanic": true, + }, + "configName": "Titanic Death Moth", + "dateCreated": "2026-06-13T23:13:14.447Z", + "dateModified": "2026-06-13T23:13:14.447Z", + "hashShort": "94542fe0538f9841", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://133412906018620", + "hidden": false, + "indexDesc": "Found in the Daydream Chest!", + "indexObtainable": true, + "name": "Titanic Piggy Piggy", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://137184068042189", + "titanic": true, + }, + "configName": "Titanic Piggy Piggy", + "dateCreated": "2026-06-13T23:13:14.456Z", + "dateModified": "2026-06-13T23:13:14.456Z", + "hashShort": "9c0fc6f4a57214eb", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1201677284804, + 1290713033175, + 1363312969167, + ], + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://129654670030760", + "hidden": false, + "name": "Piggy Piggy", + "thumbnail": "rbxassetid://91744460123887", + }, + "configName": "Piggy Piggy", + "dateCreated": "2026-06-13T23:13:27.981Z", + "dateModified": "2026-06-27T16:05:46.812Z", + "hashShort": "2ad2530d5f2d8826", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 917104998503, + 992574903295, + 1034503790577, + ], + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://85249929809319", + "name": "Daydream Fox", + "thumbnail": "rbxassetid://83978198033665", + }, + "configName": "Daydream Fox", + "dateCreated": "2026-06-13T23:13:27.985Z", + "dateModified": "2026-06-27T16:05:46.800Z", + "hashShort": "a2ca698c83131025", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1520872813580, + 1634271027864, + 1726153249307, + ], + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://126155913975463", + "hidden": false, + "name": "Partygoer Cat", + "thumbnail": "rbxassetid://70695657719788", + }, + "configName": "Partygoer Cat", + "dateCreated": "2026-06-13T23:13:27.983Z", + "dateModified": "2026-06-27T16:05:46.808Z", + "hashShort": "0a9b3d367d9c4ad1", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1574881081107, + 1701056486476, + 1779930572159, + ], + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://105436148218030", + "hidden": false, + "name": "Guest 666", + "thumbnail": "rbxassetid://134025223612492", + }, + "configName": "Guest 666", + "dateCreated": "2026-06-13T23:13:27.991Z", + "dateModified": "2026-06-27T16:05:46.812Z", + "hashShort": "44133c5e91d60682", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1068157586492, + 1144282882733, + 1205265109899, + ], + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://80289912546203", + "hidden": false, + "name": "Faceling Raccoon", + "thumbnail": "rbxassetid://114853722724329", + }, + "configName": "Faceling Raccoon", + "dateCreated": "2026-06-13T23:13:27.992Z", + "dateModified": "2026-06-27T16:05:46.811Z", + "hashShort": "b6fbfdcc0e663d92", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1147055590040, + 1246747253826, + 1297364300143, + ], + "fly": true, + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://129925249726272", + "hidden": false, + "name": "Tripod Octopus", + "thumbnail": "rbxassetid://134975774199401", + }, + "configName": "Tripod Octopus", + "dateCreated": "2026-06-13T23:13:27.993Z", + "dateModified": "2026-06-27T16:05:46.813Z", + "hashShort": "89c8b656a27e55aa", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1228988132186, + 1312463103180, + 1387871183633, + ], + "fly": true, + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://99277867504491", + "hidden": false, + "name": "Death Moth", + "thumbnail": "rbxassetid://82781977088114", + }, + "configName": "Death Moth", + "dateCreated": "2026-06-13T23:13:29.973Z", + "dateModified": "2026-06-27T16:05:50.602Z", + "hashShort": "567864a3bbeac76f", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 995328660140, + 1082635917918, + 1121882534592, + ], + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://124035286916340", + "hidden": false, + "name": "Skin Stealer", + "thumbnail": "rbxassetid://103375370924334", + }, + "configName": "Skin Stealer", + "dateCreated": "2026-06-13T23:13:29.972Z", + "dateModified": "2026-06-27T16:05:50.597Z", + "hashShort": "257175fbd4e28419", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1451742231144, + 1580409775901, + 1645361371363, + ], + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://128674966050239", + "hidden": false, + "name": "Omen", + "thumbnail": "rbxassetid://129760165373229", + }, + "configName": "Omen", + "dateCreated": "2026-06-13T23:13:29.973Z", + "dateModified": "2026-06-27T16:05:50.602Z", + "hashShort": "f496de36e0b961bc", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 2, + "goldenThumbnail": "", + "name": "Moon Raccoon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://83613390182850", + }, + "configName": "Moon Raccoon", + "dateCreated": "2026-06-13T23:13:29.978Z", + "dateModified": "2026-06-13T23:13:29.978Z", + "hashShort": "5ed538cfe72f358a", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1092433895276, + 1162549362152, + 1230473169211, + ], + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://105637248855721", + "hidden": false, + "name": "Memory Worm", + "thumbnail": "rbxassetid://122158293835991", + }, + "configName": "Memory Worm", + "dateCreated": "2026-06-13T23:13:29.975Z", + "dateModified": "2026-06-27T16:05:50.587Z", + "hashShort": "1022598eb65530c4", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 3, + "goldenThumbnail": "", + "name": "Mars Monkey", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://136143638560530", + }, + "configName": "Mars Monkey", + "dateCreated": "2026-06-13T23:13:29.982Z", + "dateModified": "2026-06-13T23:13:29.982Z", + "hashShort": "70717e57318f9c79", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 1, + "goldenThumbnail": "", + "name": "Earth Dog", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://93274149349495", + }, + "configName": "Earth Dog", + "dateCreated": "2026-06-13T23:13:29.983Z", + "dateModified": "2026-06-13T23:13:29.983Z", + "hashShort": "6aa410b9938f842d", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "gargantuan": true, + "goldenThumbnail": "rbxassetid://106712474789660", + "indexDesc": "Found in the Backrooms Danger Egg! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan 1x1x1x1", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://96105981449334", + }, + "configName": "Gargantuan 1x1x1x1", + "dateCreated": "2026-06-20T16:07:03.847Z", + "dateModified": "2026-06-27T16:04:59.114Z", + "hashShort": "b08feea1f848ae3a", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://138844688237944", + "huge": true, + "indexDesc": "Found in the Backrooms Eggs!", + "indexObtainable": true, + "name": "Huge Partypooper Dog", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://89493010296513", + }, + "configName": "Huge Partypooper Dog", + "dateCreated": "2026-06-20T16:07:30.092Z", + "dateModified": "2026-06-20T16:07:30.092Z", + "hashShort": "e5043006b631d315", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://117059747050183", + "huge": true, + "indexDesc": "Found in the Backrooms Eggs!", + "indexObtainable": true, + "name": "Huge Daydream Axolotl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://96671350712458", + }, + "configName": "Huge Daydream Axolotl", + "dateCreated": "2026-06-20T16:07:30.100Z", + "dateModified": "2026-06-20T16:07:30.100Z", + "hashShort": "46d3209c64f0efe7", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://88150223733267", + "huge": true, + "indexDesc": "Won from the Backrooms Boss Fight!", + "indexObtainable": true, + "name": "Huge Tripod Dominus", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://71758495838669", + }, + "configName": "Huge Tripod Dominus", + "dateCreated": "2026-06-20T16:07:30.111Z", + "dateModified": "2026-06-20T16:07:30.111Z", + "hashShort": "53ec533e936995a1", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://135145876092346", + "huge": true, + "indexDesc": "Won from the Backrooms Boss Fight!", + "indexObtainable": true, + "name": "Huge Gamemaster Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://93250013367344", + }, + "configName": "Huge Gamemaster Cat", + "dateCreated": "2026-06-20T16:07:30.104Z", + "dateModified": "2026-06-20T16:07:30.104Z", + "hashShort": "5dae81d16524035f", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "animations": { + "flipbookAnimation": [ + "rbxassetid://104665010897956", + "rbxassetid://118202917927639", + ], + "flipbookAnimationGold": [ + "rbxassetid://119950914184505", + "rbxassetid://137655298515439", + ], + "flipbookAnimationSpeed": 1, + }, + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://138300679211853", + "huge": true, + "indexDesc": "Found in the Backrooms Eggs!", + "indexObtainable": true, + "name": "Huge Smiley Penguin", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://139822488922348", + }, + "configName": "Huge Smiley Penguin", + "dateCreated": "2026-06-20T16:07:30.101Z", + "dateModified": "2026-06-20T16:07:30.101Z", + "hashShort": "0958887585fd0a26", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://140454531147798", + "huge": true, + "indexDesc": "Won from the Backrooms Boss Fight!", + "indexObtainable": true, + "name": "Huge Faceling Owl", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://109669263346144", + }, + "configName": "Huge Faceling Owl", + "dateCreated": "2026-06-20T16:07:30.110Z", + "dateModified": "2026-06-20T16:07:30.110Z", + "hashShort": "d220b6400f6e4930", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://77296613630337", + "huge": true, + "indexDesc": "Found in The Forever Pack!", + "indexObtainable": true, + "name": "Huge 1x1x1x1", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://139622884856578", + }, + "configName": "Huge 1x1x1x1", + "dateCreated": "2026-06-20T16:07:30.098Z", + "dateModified": "2026-06-20T16:07:30.098Z", + "hashShort": "c987cae4ed30f441", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://121055951216239", + "indexDesc": "Found in the Backrooms Danger Egg!", + "indexObtainable": true, + "name": "Titanic Gamemaster Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://100353110290902", + "titanic": true, + }, + "configName": "Titanic Gamemaster Cat", + "dateCreated": "2026-06-20T16:07:38.836Z", + "dateModified": "2026-06-20T16:07:38.836Z", + "hashShort": "6f9a648ac6aec9a9", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "animations": { + "flipbookAnimation": [ + "rbxassetid://104665010897956", + "rbxassetid://118202917927639", + ], + "flipbookAnimationGold": [ + "rbxassetid://119950914184505", + "rbxassetid://137655298515439", + ], + "flipbookAnimationSpeed": 1, + }, + "goldenThumbnail": "rbxassetid://128742956774034", + "indexDesc": "Won from the Backrooms Boss Fight!", + "indexObtainable": true, + "name": "Titanic Smiley Penguin", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://112850579981229", + "titanic": true, + }, + "configName": "Titanic Smiley Penguin", + "dateCreated": "2026-06-20T16:07:38.851Z", + "dateModified": "2026-06-20T16:07:38.851Z", + "hashShort": "64cfeb3a1a3b832e", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "flipbookAnimation": [ + "rbxassetid://104665010897956", + "rbxassetid://118202917927639", + ], + "flipbookAnimationGold": [ + "rbxassetid://119950914184505", + "rbxassetid://137655298515439", + ], + "flipbookAnimationSpeed": 1, + }, + "cachedPower": [ + 2270043433315, + 2477641661056, + 2566529104088, + ], + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://103591381604142", + "name": "Smiley Penguin", + "thumbnail": "rbxassetid://129840750338173", + }, + "configName": "Smiley Penguin", + "dateCreated": "2026-06-20T16:08:13.651Z", + "dateModified": "2026-06-27T16:05:50.608Z", + "hashShort": "1e5c6ca0fe1f58e0", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 2436144172338, + 2616043565094, + 2761468921471, + ], + "fly": true, + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://104642964512110", + "name": "Tripod Dominus", + "thumbnail": "rbxassetid://80671258589385", + }, + "configName": "Tripod Dominus", + "dateCreated": "2026-06-20T16:08:13.653Z", + "dateModified": "2026-06-27T16:05:50.604Z", + "hashShort": "c8e636bb02cc1833", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1968601351384, + 2100650958215, + 2221739934347, + ], + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://137612594046361", + "name": "Daydream Axolotl", + "thumbnail": "rbxassetid://129921168911327", + }, + "configName": "Daydream Axolotl", + "dateCreated": "2026-06-20T16:08:13.661Z", + "dateModified": "2026-06-27T16:05:50.593Z", + "hashShort": "51bbf42ff10b1cf9", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 2116246452738, + 2287869414712, + 2398557218452, + ], + "fly": true, + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://98279336094409", + "name": "Faceling Owl", + "thumbnail": "rbxassetid://72466491795916", + }, + "configName": "Faceling Owl", + "dateCreated": "2026-06-20T16:08:13.650Z", + "dateModified": "2026-06-27T16:05:50.603Z", + "hashShort": "b1f7be684e521225", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 3192735201358, + 3444716642971, + 3605080226684, + ], + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://98322114349196", + "name": "1x1x1x1", + "thumbnail": "rbxassetid://76631033930341", + }, + "configName": "1x1x1x1", + "dateCreated": "2026-06-20T16:08:13.660Z", + "dateModified": "2026-06-27T16:05:50.599Z", + "hashShort": "8ce92903f51d37f1", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 2943097469564, + 3201621215878, + 3330583137259, + ], + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://79764933995896", + "name": "Gamemaster Cat", + "thumbnail": "rbxassetid://119418795858587", + }, + "configName": "Gamemaster Cat", + "dateCreated": "2026-06-20T16:08:13.658Z", + "dateModified": "2026-06-27T16:05:50.596Z", + "hashShort": "4ec987b2f7c05675", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 2678374416746, + 2894826811308, + 3034117546158, + ], + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://114437177963845", + "name": "Partypooper Dog", + "thumbnail": "rbxassetid://78914153944647", + }, + "configName": "Partypooper Dog", + "dateCreated": "2026-06-20T16:08:13.659Z", + "dateModified": "2026-06-27T16:05:50.583Z", + "hashShort": "ea9ae4dc549ee572", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "gargantuan": true, + "goldenThumbnail": "rbxassetid://92250721464509", + "indexDesc": "Found in the 2026 Soccer Clan Battle! (and more) + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Storm Wolf", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://94993144229478", + }, + "configName": "Gargantuan Storm Wolf", + "dateCreated": "2026-06-27T16:04:59.114Z", + "dateModified": "2026-06-27T16:04:59.114Z", + "hashShort": "23a3d808886c8a2a", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "animations": { + "spinZ": true, + }, + "fly": true, + "gargantuan": true, + "goldenThumbnail": "rbxassetid://122460063442452", + "indexDesc": "Found by earning points in the Infinite Soccer Mode! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Soccerball Trophy Angelus", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://77043007275217", + }, + "configName": "Gargantuan Soccerball Trophy Angelus", + "dateCreated": "2026-06-27T16:04:59.113Z", + "dateModified": "2026-06-27T16:04:59.113Z", + "hashShort": "75969a38c73a3efc", + }, + { + "category": "Gargantuan", + "collection": "Pets", + "configData": { + "fly": true, + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "gargantuan": true, + "goldenThumbnail": "rbxassetid://91692574620289", + "indexDesc": "Found in the Exclusive Vapor Egg! + +Ground Slam - Pet will damage breakables in a large area!", + "indexObtainable": true, + "name": "Gargantuan Vapor Phoenix", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://84134935712625", + }, + "configName": "Gargantuan Vapor Phoenix", + "dateCreated": "2026-06-27T16:04:59.115Z", + "dateModified": "2026-06-27T16:04:59.115Z", + "hashShort": "98e550b4535a04ea", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://114036995808899", + "indexDesc": "Found by earning points in the Infinite Soccer Mode!", + "indexObtainable": true, + "name": "Titanic Soccerball Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://127170651927648", + "titanic": true, + }, + "configName": "Titanic Soccerball Cat", + "dateCreated": "2026-06-27T16:05:03.325Z", + "dateModified": "2026-06-27T16:05:03.325Z", + "hashShort": "89a9f08399ecbd0d", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fly": true, + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, + "goldenThumbnail": "rbxassetid://82670967234713", + "indexDesc": "Found in the Exclusive Vapor Egg!", + "indexObtainable": true, + "name": "Titanic Vapor Dragon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://120107716610186", + "titanic": true, + }, + "configName": "Titanic Vapor Dragon", + "dateCreated": "2026-06-27T16:05:03.325Z", + "dateModified": "2026-06-27T16:05:03.325Z", + "hashShort": "b7fa86361bb48b9e", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://93330982316605", + "indexDesc": "Found in the Soccer World's furthest kick contest!", + "indexObtainable": true, + "name": "Titanic Soccerball Trophy Dragon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://98938607083640", + "titanic": true, + }, + "configName": "Titanic Soccerball Trophy Dragon", + "dateCreated": "2026-06-27T16:05:03.322Z", + "dateModified": "2026-06-27T16:05:03.322Z", + "hashShort": "deb047c2c072b8a5", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "animations": { + "spinZ": true, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://83706713847126", + "indexDesc": "Found in the Trophy Soccer Egg!", + "indexObtainable": true, + "name": "Titanic Soccerball Trophy Angelus", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://123776060404900", + "titanic": true, + }, + "configName": "Titanic Soccerball Trophy Angelus", + "dateCreated": "2026-06-27T16:05:03.321Z", + "dateModified": "2026-06-27T16:05:03.321Z", + "hashShort": "43a295e26dc10c0d", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://89080165110588", + "indexDesc": "Found in the 2026 Soccer Clan Battle!", + "indexObtainable": true, + "name": "Titanic Cloud Dog", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://109295659018886", + "titanic": true, + }, + "configName": "Titanic Cloud Dog", + "dateCreated": "2026-06-27T16:05:03.324Z", + "dateModified": "2026-06-27T16:05:03.324Z", + "hashShort": "9f297ab34d4f4f48", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://96837301495281", + "indexDesc": "Found in the Forever Pack!", + "indexObtainable": true, + "name": "Titanic Soccerball Griffin", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://86211780289771", + "titanic": true, + }, + "configName": "Titanic Soccerball Griffin", + "dateCreated": "2026-06-27T16:05:03.326Z", + "dateModified": "2026-06-27T16:05:03.326Z", + "hashShort": "df83514b3c5f21f5", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://83270983297080", + "huge": true, + "indexDesc": "Found in the Trophy Soccer Egg!", + "indexObtainable": true, + "name": "Huge Soccerball Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://126658612300065", + }, + "configName": "Huge Soccerball Cat", + "dateCreated": "2026-06-27T16:05:18.055Z", + "dateModified": "2026-06-27T16:05:18.055Z", + "hashShort": "e2d4d0f5764daf05", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://127970620480965", + "huge": true, + "indexDesc": "Found in the 2026 Soccer Clan Battle!", + "indexObtainable": true, + "name": "Huge Umbrella Bear", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://112370936348424", + }, + "configName": "Huge Umbrella Bear", + "dateCreated": "2026-06-27T16:05:18.060Z", + "dateModified": "2026-06-27T16:05:18.060Z", + "hashShort": "d7391e0d0f584f62", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://80671718068451", + "huge": true, + "indexDesc": "Found in the Exclusive Vapor Egg!", + "indexObtainable": true, + "name": "Huge Vapor Wolf", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://125061287679352", + }, + "configName": "Huge Vapor Wolf", + "dateCreated": "2026-06-27T16:05:18.057Z", + "dateModified": "2026-06-27T16:05:18.057Z", + "hashShort": "af969d28928d209e", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://115382679212483", + "huge": true, + "indexDesc": "Found in the Trophy Soccer Egg!", + "indexObtainable": true, + "name": "Huge Soccerball Trophy Dragon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://72273930453963", + }, + "configName": "Huge Soccerball Trophy Dragon", + "dateCreated": "2026-06-27T16:05:18.074Z", + "dateModified": "2026-06-27T16:05:18.074Z", + "hashShort": "6103325a46a84374", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://136650880186252", + "huge": true, + "indexDesc": "Found in the Soccer World's furthest kick contest!", + "indexObtainable": true, + "name": "Huge Coach Chihuahua", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://108181768512801", + }, + "configName": "Huge Coach Chihuahua", + "dateCreated": "2026-06-27T16:05:18.080Z", + "dateModified": "2026-06-27T16:05:18.080Z", + "hashShort": "e82b515428014838", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://106362093689167", + "huge": true, + "indexDesc": "Found in the Forever Pack!", + "indexObtainable": true, + "name": "Huge Soccerball Elephant", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://90421983057563", + }, + "configName": "Huge Soccerball Elephant", + "dateCreated": "2026-06-27T16:05:18.066Z", + "dateModified": "2026-06-27T16:05:18.066Z", + "hashShort": "ea7f73dd17923143", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://98552653186399", + "huge": true, + "indexDesc": "Found in the Soccer World's furthest kick contest!", + "indexObtainable": true, + "name": "Huge Jersey Seal", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://86738780923898", + }, + "configName": "Huge Jersey Seal", + "dateCreated": "2026-06-27T16:05:18.073Z", + "dateModified": "2026-06-27T16:05:18.073Z", + "hashShort": "71eb83ba3583bb05", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://97718881677495", + "huge": true, + "indexDesc": "Found in the Soccer World's furthest kick contest!", + "indexObtainable": true, + "name": "Huge Goalie Monkey", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://85865477617005", + }, + "configName": "Huge Goalie Monkey", + "dateCreated": "2026-06-27T16:05:18.085Z", + "dateModified": "2026-06-27T16:05:18.085Z", + "hashShort": "d7259bf9f8902715", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://138837815257436", + "huge": true, + "indexDesc": "Found by earning points in the Infinite Soccer Mode!", + "indexObtainable": true, + "name": "Huge Referee Zebra", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://90909100468869", + }, + "configName": "Huge Referee Zebra", + "dateCreated": "2026-06-27T16:05:18.086Z", + "dateModified": "2026-06-27T16:05:18.086Z", + "hashShort": "79330fd28ee69092", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://124235057233136", + "huge": true, + "indexDesc": "Found in the Exclusive Vapor Egg!", + "indexObtainable": true, + "name": "Huge Vapor Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://137018792782185", + }, + "configName": "Huge Vapor Cat", + "dateCreated": "2026-06-27T16:05:18.075Z", + "dateModified": "2026-06-27T16:05:18.075Z", + "hashShort": "edff7fbd47d2be34", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 5089246961907938, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 270, + "goldenThumbnail": "rbxassetid://135620806058108", + "name": "Jersey Seal", + "thumbnail": "rbxassetid://136813931205984", + "yeetPower": 450, + }, + "configName": "Jersey Seal", + "dateCreated": "2026-06-27T16:05:50.611Z", + "dateModified": "2026-06-27T16:05:50.611Z", + "hashShort": "9aae29e0220bfabd", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 5030749870391775, + ], + "fly": true, + "fromWorldNumber": 4, + "fromZoneNumber": 270, + "goldenThumbnail": "rbxassetid://120309261077496", + "name": "Soccerball Griffin", + "thumbnail": "rbxassetid://81415000911770", + "yeetPower": 150, + }, + "configName": "Soccerball Griffin", + "dateCreated": "2026-06-27T16:05:50.613Z", + "dateModified": "2026-06-27T16:05:50.613Z", + "hashShort": "6049d192a8f68210", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 4796761504327022, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 270, + "goldenThumbnail": "rbxassetid://135611759042195", + "name": "Soccerball Dog", + "thumbnail": "rbxassetid://83962717359541", + "yeetPower": 12, + }, + "configName": "Soccerball Dog", + "dateCreated": "2026-06-27T16:05:50.614Z", + "dateModified": "2026-06-27T16:05:50.614Z", + "hashShort": "19a228c41f832af5", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 4972252778875578, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 270, + "goldenThumbnail": "rbxassetid://113666584122326", + "name": "Soccerball Elephant", + "thumbnail": "rbxassetid://110710289143948", + "yeetPower": 50, + }, + "configName": "Soccerball Elephant", + "dateCreated": "2026-06-27T16:05:50.612Z", + "dateModified": "2026-06-27T16:05:50.612Z", + "hashShort": "8141695a1218a7ce", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 5330547464412216, + ], + "fly": true, + "fromWorldNumber": 4, + "fromZoneNumber": 270, + "goldenThumbnail": "rbxassetid://86915608670127", + "indexDesc": "Found in the Soccer Egg!", + "name": "Soccerball Trophy Dragon", + "thumbnail": "rbxassetid://100102936262406", + "yeetPower": 80000, + }, + "configName": "Soccerball Trophy Dragon", + "dateCreated": "2026-06-27T16:05:50.613Z", + "dateModified": "2026-06-27T16:05:50.613Z", + "hashShort": "9d2ecd1c10104f67", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 5206241144940298, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 270, + "goldenThumbnail": "", + "name": "Referee Zebra", + "thumbnail": "rbxassetid://140056670942415", + "yeetPower": 5000, + }, + "configName": "Referee Zebra", + "dateCreated": "2026-06-27T16:05:50.585Z", + "dateModified": "2026-06-27T16:05:50.585Z", + "hashShort": "7bb5e7dce8523f46", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 4913755687359382, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 270, + "goldenThumbnail": "rbxassetid://114558621948742", + "name": "Soccerball Red Panda", + "thumbnail": "rbxassetid://101308141848720", + "yeetPower": 20, + }, + "configName": "Soccerball Red Panda", + "dateCreated": "2026-06-27T16:05:50.601Z", + "dateModified": "2026-06-27T16:05:50.601Z", + "hashShort": "2510ef288722c2f8", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 3, + "fly": true, + "goldenThumbnail": "rbxassetid://85082675574189", + "name": "Vapor Wolf", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://87652445520779", + }, + "configName": "Vapor Wolf", + "dateCreated": "2026-06-27T16:05:50.618Z", + "dateModified": "2026-06-27T16:05:50.618Z", + "hashShort": "1a224f409b104977", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 2, + "fly": true, + "goldenThumbnail": "rbxassetid://108257720954870", + "name": "Vapor Fox", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://73098486317206", + }, + "configName": "Vapor Fox", + "dateCreated": "2026-06-27T16:05:50.620Z", + "dateModified": "2026-06-27T16:05:50.620Z", + "hashShort": "e7bf265deba1e4d4", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 5147744053424135, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 270, + "goldenThumbnail": "rbxassetid://125412137364896", + "name": "Coach Chihuahua", + "thumbnail": "rbxassetid://131344624570143", + "yeetPower": 1800, + }, + "configName": "Coach Chihuahua", + "dateCreated": "2026-06-27T16:05:50.619Z", + "dateModified": "2026-06-27T16:05:50.619Z", + "hashShort": "97497a95dc0178cc", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 5264738236456495, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 270, + "goldenThumbnail": "rbxassetid://104728017563290", + "indexDesc": "Found in the Soccer Egg!", + "name": "Goalie Monkey", + "thumbnail": "rbxassetid://126140900207871", + "yeetPower": 24000, + }, + "configName": "Goalie Monkey", + "dateCreated": "2026-06-27T16:05:50.621Z", + "dateModified": "2026-06-27T16:05:50.621Z", + "hashShort": "8cea8505ff0ff153", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 1, + "fly": true, + "goldenThumbnail": "rbxassetid://86178249915806", + "name": "Vapor Cat", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://129583703160215", + }, + "configName": "Vapor Cat", + "dateCreated": "2026-06-27T16:05:50.617Z", + "dateModified": "2026-06-27T16:05:50.617Z", + "hashShort": "f561306896bac3f8", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 4855258595843219, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 270, + "goldenThumbnail": "rbxassetid://79235985010100", + "name": "Soccerball Jaguar", + "thumbnail": "rbxassetid://126663292499310", + "yeetPower": 16, + }, + "configName": "Soccerball Jaguar", + "dateCreated": "2026-06-27T16:05:50.616Z", + "dateModified": "2026-06-27T16:05:50.616Z", + "hashShort": "9c28954bca3c2e0d", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 4738264412810859, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 270, + "goldenThumbnail": "rbxassetid://117008219913518", + "indexDesc": "Found in the Soccer Egg!", + "name": "Soccerball Cat", + "thumbnail": "rbxassetid://110963023370411", + "yeetPower": 10, + }, + "configName": "Soccerball Cat", + "dateCreated": "2026-06-27T16:05:50.615Z", + "dateModified": "2026-06-27T16:05:50.615Z", + "hashShort": "6978a20e8bdf1775", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "animations": { + "spinZ": true, + }, + "cachedPower": [ + 5396356692367900, + ], + "fly": true, + "fromWorldNumber": 4, + "fromZoneNumber": 270, + "goldenThumbnail": "rbxassetid://119500872724060", + "indexDesc": "Found in the Soccer Egg!", + "name": "Soccerball Trophy Angelus", + "thumbnail": "rbxassetid://71798146448502", + "yeetPower": 300000, + }, + "configName": "Soccerball Trophy Angelus", + "dateCreated": "2026-06-27T16:05:50.617Z", + "dateModified": "2026-06-27T16:05:50.617Z", + "hashShort": "4964c1ba8bd5657b", + }, + ], + "status": "ok", +} +`; + +exports[`Pet Simulator Public Live API Test Potions shape 1`] = ` +{ + "data": [ + { + "category": "Potions", + "collection": "Potions", + "configData": { + "BaseTier": 1, + "MaxTier": 11, + "PrimaryColor": "#FF473A", + "SecondaryColor": "#FF2929", + "Tiers": [ + { + "Desc": "Temporarily increases damage of your pets by 15%!", + "DisplayName": "Damage Potion I", + "Icon": "rbxassetid://15020966601", + "Power": 15, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Time": 600, + }, + { + "Desc": "Temporarily increases damage of your pets by 30%!", + "DisplayName": "Damage Potion II", + "Icon": "rbxassetid://15020968068", + "Power": 30, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "Time": 1200, + }, + { + "Desc": "Temporarily increases damage of your pets by 45%!", + "DisplayName": "Damage Potion III", + "Icon": "rbxassetid://15020969725", + "Power": 45, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Epic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 3, + "_id": "Epic", + "_script": null, + }, + "Time": 1800, + }, + { + "Desc": "Temporarily increases damage of your pets by 60%!", + "DisplayName": "Damage Potion IV", + "Icon": "rbxassetid://15020970884", + "Power": 60, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Legendary", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 4, + "_id": "Legendary", + "_script": null, + }, + "Time": 2400, + }, + { + "Desc": "Temporarily increases damage of your pets by 75%!", + "DisplayName": "Damage Potion V", + "Icon": "rbxassetid://15020972861", + "Power": 75, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + "Time": 3000, + }, + { + "Desc": "Temporarily increases damage of your pets by 90%!", + "DisplayName": "Damage Potion VI", + "Icon": "rbxassetid://15020974605", + "Power": 90, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "Time": 3600, + }, + { + "Desc": "Temporarily increases damage of your pets by 105%!", + "DisplayName": "Damage Potion VII", + "Icon": "rbxassetid://15706020479", + "Power": 105, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + "Time": 4200, + }, + { + "Desc": "Temporarily increases damage of your pets by 120%!", + "DisplayName": "Damage Potion VIII", + "Icon": "rbxassetid://15801635170", + "Power": 120, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Superior", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 8, + "_id": "Superior", + "_script": null, + }, + "Time": 4800, + }, + { + "Desc": "Temporarily increases damage of your pets by 135%!", + "DisplayName": "Damage Potion IX", + "Icon": "rbxassetid://16292198048", + "Power": 135, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + "Time": 5400, + }, + { + "Desc": "Temporarily increases damage of your pets by 150%!", + "DisplayName": "Damage Potion X", + "Icon": "rbxassetid://17012809069", + "Power": 150, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + "Time": 6000, + }, + { + "Desc": "Temporarily increases damage of your pets by 165%!", + "DisplayName": "Damage Potion XI", + "Icon": "rbxassetid://126967496459366", + "Power": 165, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + "Time": 6600, + }, + ], + }, + "configName": "Potion | Damage", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.072Z", + "hashShort": "61d89125432a1329", + }, + { + "category": "Potions", + "collection": "Potions", + "configData": { + "BaseTier": 1, + "MaxTier": 11, + "PrimaryColor": "#FFD439", + "SecondaryColor": "#FFFF2A", + "Tiers": [ + { + "Desc": "Temporarily increases Coins you earn by 20%!", + "DisplayName": "Coins Potion I", + "Icon": "rbxassetid://15020966368", + "Power": 20, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Time": 600, + }, + { + "Desc": "Temporarily increases Coins you earn by 40%!", + "DisplayName": "Coins Potion II", + "Icon": "rbxassetid://15020969165", + "Power": 40, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "Time": 1200, + }, + { + "Desc": "Temporarily increases Coins you earn by 60%!", + "DisplayName": "Coins Potion III", + "Icon": "rbxassetid://15020970760", + "Power": 60, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Epic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 3, + "_id": "Epic", + "_script": null, + }, + "Time": 1800, + }, + { + "Desc": "Temporarily increases Coins you earn by 80%!", + "DisplayName": "Coins Potion IV", + "Icon": "rbxassetid://15020972226", + "Power": 80, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Legendary", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 4, + "_id": "Legendary", + "_script": null, + }, + "Time": 2400, + }, + { + "Desc": "Temporarily increases Coins you earn by 100%!", + "DisplayName": "Coins Potion V", + "Icon": "rbxassetid://15020974203", + "Power": 100, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + "Time": 3000, + }, + { + "Desc": "Temporarily increases Coins you earn by 120%!", + "DisplayName": "Coins Potion VI", + "Icon": "rbxassetid://15020975743", + "Power": 120, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "Time": 3600, + }, + { + "Desc": "Temporarily increases Coins you earn by 140%!", + "DisplayName": "Coins Potion VII", + "Icon": "rbxassetid://15706015819", + "Power": 140, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + "Time": 4200, + }, + { + "Desc": "Temporarily increases Coins you earn by 160%!", + "DisplayName": "Coins Potion VIII", + "Icon": "rbxassetid://15801634837", + "Power": 160, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Superior", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 8, + "_id": "Superior", + "_script": null, + }, + "Time": 4800, + }, + { + "Desc": "Temporarily increases Coins you earn by 180%!", + "DisplayName": "Coins Potion IX", + "Icon": "rbxassetid://16292196849", + "Power": 180, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + "Time": 5400, + }, + { + "Desc": "Temporarily increases Coins you earn by 200%!", + "DisplayName": "Coins Potion X", + "Icon": "rbxassetid://17039608371", + "Power": 200, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + "Time": 6000, + }, + { + "Desc": "Temporarily increases Coins you earn by 220%!", + "DisplayName": "Coins Potion XI", + "Icon": "rbxassetid://124764535484261", + "Power": 220, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + "Time": 6600, + }, + ], + }, + "configName": "Potion | Coins", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.078Z", + "hashShort": "0be00e6bde398e4a", + }, + { + "category": "Potions", + "collection": "Potions", + "configData": { + "BaseTier": 1, + "MaxTier": 9, + "PrimaryColor": "#3CDBFF", + "SecondaryColor": "#2FD9FF", + "Tiers": [ + { + "Desc": "Temporarily increases Diamonds you earn by 10%!", + "DisplayName": "Diamonds Potion I", + "Icon": "rbxassetid://15549792977", + "Power": 10, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Time": 600, + }, + { + "Desc": "Temporarily increases Diamonds you earn by 25%!", + "DisplayName": "Diamonds Potion II", + "Icon": "rbxassetid://15549792909", + "Power": 25, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "Time": 1200, + }, + { + "Desc": "Temporarily increases Diamonds you earn by 40%!", + "DisplayName": "Diamonds Potion III", + "Icon": "rbxassetid://15020970352", + "Power": 40, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Epic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 3, + "_id": "Epic", + "_script": null, + }, + "Time": 1800, + }, + { + "Desc": "Temporarily increases Diamonds you earn by 50%!", + "DisplayName": "Diamonds Potion IV", + "Icon": "rbxassetid://15020971674", + "Power": 50, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Legendary", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 4, + "_id": "Legendary", + "_script": null, + }, + "Time": 2400, + }, + { + "Desc": "Temporarily increases Diamonds you earn by 60%!", + "DisplayName": "Diamonds Potion V", + "Icon": "rbxassetid://15706023136", + "Power": 60, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + "Time": 3000, + }, + { + "Desc": "Temporarily increases Diamonds you earn by 70%!", + "DisplayName": "Diamonds Potion VI", + "Icon": "rbxassetid://15801649326", + "Power": 70, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "Time": 3600, + }, + { + "Desc": "Temporarily increases Diamonds you earn by 80%!", + "DisplayName": "Diamonds Potion VII", + "Icon": "rbxassetid://16443030291", + "Power": 80, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + "Time": 4200, + }, + { + "Desc": "Temporarily increases Diamonds you earn by 90%!", + "DisplayName": "Diamonds Potion VIII", + "Icon": "rbxassetid://17015603578", + "Power": 90, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Superior", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 8, + "_id": "Superior", + "_script": null, + }, + "Time": 4800, + }, + { + "Desc": "Temporarily increases Diamonds you earn by 100%!", + "DisplayName": "Diamonds Potion IX", + "Icon": "rbxassetid://140129810869965", + "Power": 100, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + "Time": 5400, + }, + ], + }, + "configName": "Potion | Diamonds", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.070Z", + "hashShort": "5d6514f0f8176498", + }, + { + "category": "Potions", + "collection": "Potions", + "configData": { + "BaseTier": 1, + "MaxTier": 11, + "PrimaryColor": "#3CFF5C", + "SecondaryColor": "#7CFF2B", + "Tiers": [ + { + "Desc": "Temporarily increases your egg luck by 25%!", + "DisplayName": "Lucky Eggs Potion I", + "Icon": "rbxassetid://15020967109", + "Power": 25, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Time": 600, + }, + { + "Desc": "Temporarily increases your egg luck by 50%!", + "DisplayName": "Lucky Eggs Potion II", + "Icon": "rbxassetid://15020968380", + "Power": 50, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "Time": 1200, + }, + { + "Desc": "Temporarily increases your egg luck by 75%!", + "DisplayName": "Lucky Eggs Potion III", + "Icon": "rbxassetid://15020970040", + "Power": 75, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Epic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 3, + "_id": "Epic", + "_script": null, + }, + "Time": 1800, + }, + { + "Desc": "Temporarily increases your egg luck by 100%!", + "DisplayName": "Lucky Eggs Potion IV", + "Icon": "rbxassetid://15020971283", + "Power": 100, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Legendary", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 4, + "_id": "Legendary", + "_script": null, + }, + "Time": 2400, + }, + { + "Desc": "Temporarily increases your egg luck by 125%!", + "DisplayName": "Lucky Eggs Potion V", + "Icon": "rbxassetid://15020973259", + "Power": 125, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + "Time": 3000, + }, + { + "Desc": "Temporarily increases your egg luck by 150%!", + "DisplayName": "Lucky Eggs Potion VI", + "Icon": "rbxassetid://15020975038", + "Power": 150, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "Time": 3600, + }, + { + "Desc": "Temporarily increases your egg luck by 175%!", + "DisplayName": "Lucky Eggs Potion VII", + "Icon": "rbxassetid://15706025686", + "Power": 175, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + "Time": 4200, + }, + { + "Desc": "Temporarily increases your egg luck by 200%!", + "DisplayName": "Lucky Eggs Potion VIII", + "Icon": "rbxassetid://15801635964", + "Power": 200, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Superior", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 8, + "_id": "Superior", + "_script": null, + }, + "Time": 4800, + }, + { + "Desc": "Temporarily increases your egg luck by 225%!", + "DisplayName": "Lucky Eggs Potion IX", + "Icon": "rbxassetid://16292197771", + "Power": 225, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + "Time": 5400, + }, + { + "Desc": "Temporarily increases your egg luck by 250%!", + "DisplayName": "Lucky Eggs Potion X", + "Icon": "rbxassetid://17012808777", + "Power": 250, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + "Time": 6000, + }, + { + "Desc": "Temporarily increases your egg luck by 275%!", + "DisplayName": "Lucky Eggs Potion XI", + "Icon": "rbxassetid://118954624181479", + "Power": 275, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + "Time": 6600, + }, + ], + }, + "configName": "Potion | Lucky", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.074Z", + "hashShort": "b21a8bab02f73876", + }, + { + "category": "Potions", + "collection": "Potions", + "configData": { + "BaseTier": 1, + "MaxTier": 11, + "PrimaryColor": "#FF743D", + "SecondaryColor": "#FF7029", + "Tiers": [ + { + "Desc": "Temporarily increases your chances of getting random item drops by 10%!", + "DisplayName": "Treasure Hunter Potion I", + "Icon": "rbxassetid://15020966853", + "Power": 10, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Time": 600, + }, + { + "Desc": "Temporarily increases your chances of getting random item drops by 20%!", + "DisplayName": "Treasure Hunter Potion II", + "Icon": "rbxassetid://15020968249", + "Power": 20, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "Time": 1200, + }, + { + "Desc": "Temporarily increases your chances of getting random item drops by 30%!", + "DisplayName": "Treasure Hunter Potion III", + "Icon": "rbxassetid://15020969840", + "Power": 30, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Epic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 3, + "_id": "Epic", + "_script": null, + }, + "Time": 1800, + }, + { + "Desc": "Temporarily increases your chances of getting random item drops by 40%!", + "DisplayName": "Treasure Hunter Potion IV", + "Icon": "rbxassetid://15020971115", + "Power": 40, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Legendary", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 4, + "_id": "Legendary", + "_script": null, + }, + "Time": 2400, + }, + { + "Desc": "Temporarily increases your chances of getting random item drops by 45%!", + "DisplayName": "Treasure Hunter Potion V", + "Icon": "rbxassetid://15020973089", + "Power": 45, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Mythical", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 5, + "_id": "Mythical", + "_script": null, + }, + "Time": 3000, + }, + { + "Desc": "Temporarily increases your chances of getting random item drops by 50%!", + "DisplayName": "Treasure Hunter Potion VI", + "Icon": "rbxassetid://15020974780", + "Power": 50, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exotic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 6, + "_id": "Exotic", + "_script": null, + }, + "Time": 3600, + }, + { + "Desc": "Temporarily increases your chances of getting random item drops by 55%!", + "DisplayName": "Treasure Hunter Potion VII", + "Icon": "rbxassetid://15706029032", + "Power": 55, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + "Time": 4200, + }, + { + "Desc": "Temporarily increases your chances of getting random item drops by 60%!", + "DisplayName": "Treasure Hunter Potion VIII", + "Icon": "rbxassetid://15801635325", + "Power": 60, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Superior", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 8, + "_id": "Superior", + "_script": null, + }, + "Time": 4800, + }, + { + "Desc": "Temporarily increases your chances of getting random item drops by 70%!", + "DisplayName": "Treasure Hunter Potion IX", + "Icon": "rbxassetid://16292197920", + "Power": 70, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + "Time": 5400, + }, + { + "Desc": "Temporarily increases your chances of getting random item drops by 75%!", + "DisplayName": "Treasure Hunter Potion X", + "Icon": "rbxassetid://17012808910", + "Power": 75, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + "Time": 6000, + }, + { + "Desc": "Temporarily increases your chances of getting random item drops by 80%!", + "DisplayName": "Treasure Hunter Potion XI", + "Icon": "rbxassetid://126996396522981", + "Power": 80, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + "Time": 6600, + }, + ], + }, + "configName": "Potion | Treasure Hunter", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.081Z", + "hashShort": "eabd91abc3a10b17", + }, + { + "category": "Potions", + "collection": "Potions", + "configData": { + "BaseTier": 1, + "MaxTier": 3, + "PrimaryColor": "#FFFFFF", + "SecondaryColor": "#E5E5E5", + "Tiers": [ + { + "Desc": "Temporarily increases player and pet speed by 25%!", + "DisplayName": "Speed Potion I", + "Icon": "rbxassetid://15020966003", + "Power": 25, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Basic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 1, + "_id": "Basic", + "_script": null, + }, + "Time": 900, + }, + { + "Desc": "Temporarily increases player and pet speed by 40%!", + "DisplayName": "Speed Potion II", + "Icon": "rbxassetid://15020967803", + "Power": 40, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Rare", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 2, + "_id": "Rare", + "_script": null, + }, + "Time": 1800, + }, + { + "Desc": "Temporarily increases player and pet speed by 55%!", + "DisplayName": "Speed Potion III", + "Icon": "rbxassetid://15020969274", + "Power": 55, + "Rarity": { + "Announce": false, + "Color": null, + "DisplayName": "Epic", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 3, + "_id": "Epic", + "_script": null, + }, + "Time": 2700, + }, + ], + }, + "configName": "Potion | Walkspeed", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.079Z", + "hashShort": "f06ca7ae557fa584", + }, + { + "category": "Potions", + "collection": "Potions", + "configData": { + "BaseTier": 1, + "MaxTier": 2, + "PreventUpgrade": true, + "PrimaryColor": "#FFF6D3", + "SecondaryColor": "#FDFFCE", + "Tiers": [ + { + "Desc": "Temporarily increases: +- Coins by 200% +- Diamonds by 50% +- Damage by 100% +- Egg luck by 300% +- Item drops by 100% +- Walkspeed by 50%!", + "DisplayName": "The Cocktail", + "Icon": "rbxassetid://15245389767", + "Power": 1, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Superior", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 8, + "_id": "Superior", + "_script": null, + }, + "Time": 1800, + }, + { + "Desc": "Temporarily increases: +- Coins by 300% +- Diamonds by 100% +- Damage by 150% +- Egg luck by 400% +- Item drops by 150% +- Walkspeed by 75%!", + "DisplayName": "The Cocktail II", + "Icon": "rbxassetid://88218761146440", + "Power": 2, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + "Time": 1800, + }, + ], + }, + "configName": "Potion | The Cocktail", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.077Z", + "hashShort": "9024e6697fb6c4ef", + }, + { + "category": "Potions", + "collection": "Potions", + "configData": { + "BaseTier": 1, + "MaxTier": 1, + "PrimaryColor": "#942AFF", + "SecondaryColor": "#BC21FF", + "Tiers": [ + { + "Desc": "Temporarily increases your active huge luck by 300%!", + "DisplayName": "Huge Potion", + "Icon": "rbxassetid://16011869296", + "Power": 1, + "Rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Superior", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 8, + "_id": "Superior", + "_script": null, + }, + "Time": 3600, + }, + ], + }, + "configName": "Potion | Huge", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.081Z", + "hashShort": "404e792924608b98", + }, + ], + "status": "ok", +} +`; + +exports[`Pet Simulator Public Live API Test RandomEvents shape 1`] = ` +{ + "data": [ + { + "category": "RandomEvents", + "collection": "RandomEvents", + "configData": { + "AllowInInstances": false, + "AllowInZones": true, + "AllowMultiple": true, + "AreaWhitelist": { + "Main": true, + "Main_Ice": true, + "Main_Magma": true, + }, + "BreakingRequirement": 5, + "Chance": 42.5, + "Color": "#FFDC13", + "Duration": 600, + "Icon": "rbxassetid://15000811448", + "Name": "Coin Jar", + "PlaytimeRequirement": 5, + }, + "configName": "RandomEvent | CoinJar", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.053Z", + "hashShort": "4d930d91a8380d05", + }, + { + "category": "RandomEvents", + "collection": "RandomEvents", + "configData": { + "AllowInInstances": false, + "AllowInZones": true, + "AllowMultiple": true, + "AreaWhitelist": { + "Main": true, + "Main_Ice": true, + "Main_Magma": true, + }, + "BreakingRequirement": 5, + "Chance": 42.5, + "Color": "#2CFFFF", + "Duration": 600, + "Icon": "rbxassetid://15000811043", + "Name": "Comet", + "PlaytimeRequirement": 5, + }, + "configName": "RandomEvent | Comet", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.065Z", + "hashShort": "8531ecc0ad64e68e", + }, + { + "category": "RandomEvents", + "collection": "RandomEvents", + "configData": { + "AllowInInstances": false, + "AllowInZones": true, + "AllowMultiple": true, + "AreaWhitelist": { + "Main": true, + "Main_Ice": true, + "Main_Magma": true, + }, + "BreakingRequirement": 5, + "Chance": 5, + "Color": "#FFDC13", + "Duration": 600, + "Icon": "rbxassetid://15938616489", + "MinimumZone": 70, + "Name": "Piñata", + "PlaytimeRequirement": 5, + }, + "configName": "RandomEvent | Pinata", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.066Z", + "hashShort": "eaeeceed83489bd1", + }, + { + "category": "RandomEvents", + "collection": "RandomEvents", + "configData": { + "AllowInInstances": false, + "AllowInZones": true, + "AllowMultiple": true, + "AreaWhitelist": { + "Main": true, + "Main_Ice": true, + "Main_Magma": true, + }, + "BreakingRequirement": 5, + "Chance": 10, + "Color": "#2CFFFF", + "Duration": 120, + "Icon": "rbxassetid://15938616838", + "MinimumZone": 55, + "Name": "Lucky Block", + "PlaytimeRequirement": 5, + }, + "configName": "RandomEvent | LuckyBlock", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.063Z", + "hashShort": "0f2f449ae4bc6a4e", + }, + { + "category": "RandomEvents", + "collection": "RandomEvents", + "configData": { + "AllowInInstances": false, + "AllowInZones": true, + "AllowMultiple": true, + "AreaWhitelist": { + "Main": true, + "Main_Ice": true, + "Main_Magma": true, + }, + "BreakingRequirement": 5, + "Chance": 10, + "Color": "#FFDC13", + "Duration": 600, + "Icon": "rbxassetid://16717382310", + "Name": "Item Jar", + "PlaytimeRequirement": 5, + }, + "configName": "RandomEvent | ItemJar", + "dateCreated": null, + "dateModified": "2025-07-05T23:29:23.059Z", + "hashShort": "3f4851fc565b14ec", + }, + { + "category": "RandomEvents", + "collection": "RandomEvents", + "configData": { + "AllowInInstances": false, + "AllowInZones": true, + "AllowMultiple": false, + "AreaWhitelist": { + "Main": true, + "Main_Ice": true, + "Main_Magma": true, + }, + "BreakingRequirement": 5, + "Chance": 0, + "Color": "#FFDC13", + "Duration": 600, + "Icon": "rbxassetid://17014122346", + "MinimumZone": { + "m": null, + "t": "numeric", + "v": "inf", + }, + "Name": "Giant Exclusive Egg", + "PlaytimeRequirement": 5, + }, + "configName": "RandomEvent | GiantExclusiveEgg", + "dateCreated": null, + "dateModified": "2026-04-18T15:56:20.314Z", + "hashShort": "c38a1ea2af529ff2", + }, + ], + "status": "ok", +} +`; + +exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` +{ + "data": [ + { + "category": "Ranks", + "collection": "Ranks", + "configData": { + "Goals": [ + [ + { + "Amount": 25, + "Type": 1, + "Weight": 2, + }, + { + "Amount": 5, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 50, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + ], + [ + { + "Amount": 50, + "Type": 1, + "Weight": 1, + }, + { + "Amount": 100, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 15, + "Type": 3, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 1, + "MaximumActiveGoals": 2, + "RankNumber": 1, + "Rewards": [ + { + "Item": { + "_data": { + "_am": 15, + "id": "TNT", + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 250, + "id": "Diamonds", + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 1000, + "id": "Diamonds", + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Walkspeed", + "tn": 1, + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Damage", + "tn": 1, + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Strong Pets", + "tn": 1, + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 1000, + "id": "Diamonds", + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Coins", + "tn": 1, + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Damage", + "tn": 2, + }, + }, + "StarsRequired": 4, + }, + ], + "Title": "Noob", + "UnlockableEggSlots": 2, + "UnlockablePetSlots": 3, + }, + "configName": "1 | Noob", + "dateCreated": null, + "dateModified": "2026-05-02T17:31:49.611Z", + "hashShort": "9ca135058253b573", + }, + { + "category": "Ranks", + "collection": "Ranks", + "configData": { + "Goals": [ + [ + { + "Amount": 50, + "Type": 1, + "Weight": 1, + }, + { + "Amount": 35, + "BreakableType": "Coin", + "Type": 1, + "Weight": 1, + }, + { + "Amount": 20, + "BreakableType": "Safe", + "Type": 1, + "Weight": 1, + }, + { + "Amount": 25, + "BreakableType": "Present", + "Type": 1, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 100, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 15, + "Weight": 1, + }, + ], + [ + { + "Amount": 125, + "Type": 1, + "Weight": 1, + }, + { + "Amount": 100, + "BreakableType": "Coin", + "Type": 1, + "Weight": 1, + }, + { + "Amount": 50, + "BreakableType": "Safe", + "Type": 1, + "Weight": 1, + }, + { + "Amount": 65, + "BreakableType": "Present", + "Type": 1, + "Weight": 1, + }, + { + "Amount": 70, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 70, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 15, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 150, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 3, + "PotionTier": 1, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 35, + "Weight": 1, + }, + { + "Amount": 30, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 8, + "Type": 26, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 25, + "Weight": 1, + }, + ], + [ + { + "Amount": 250, + "Type": 1, + "Weight": 1, + }, + { + "Amount": 150, + "BreakableType": "Coin", + "Type": 1, + "Weight": 1, + }, + { + "Amount": 85, + "BreakableType": "Safe", + "Type": 1, + "Weight": 1, + }, + { + "Amount": 100, + "BreakableType": "Present", + "Type": 1, + "Weight": 1, + }, + { + "Amount": 125, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 125, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 25, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 200, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 8, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 20, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 1, + "MaximumActiveGoals": 3, + "RankNumber": 2, + "RankUpRewards": [ + { + "_data": { + "_am": 1000000, + "id": "Coins", + }, + }, + { + "_data": { + "_am": 2500, + "id": "Diamonds", + }, + }, + { + "_data": { + "_am": 6, + "id": "Tap Power", + "tn": 1, + }, + }, + { + "_data": { + "_am": 12, + "id": "Coins", + "tn": 1, + }, + }, + { + "_data": { + "_am": 12, + "id": "Damage", + "tn": 1, + }, + }, + { + "_data": { + "_am": 6, + "id": "Diamonds", + "tn": 1, + }, + }, + ], + "Rewards": [ + { + "Item": { + "_data": { + "_am": 6, + "id": "Gift Bag", + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 2500, + "id": "Diamonds", + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Lucky", + "tn": 1, + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Tap Power", + "tn": 1, + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Damage", + "tn": 1, + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 2500, + "id": "Diamonds", + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Magnet Flag", + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Coins", + "tn": 1, + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Treasure Hunter", + "tn": 2, + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Diamonds", + "tn": 1, + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Toy Bone", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Hasty Flag", + }, + }, + "StarsRequired": 4, + }, + ], + "Title": "Beginner", + "UnlockableEggSlots": 2, + "UnlockablePetSlots": 3, + }, + "configName": "2 | Beginner", + "dateCreated": null, + "dateModified": "2026-05-02T17:31:49.635Z", + "hashShort": "470eecd055a92f32", + }, + { + "category": "Ranks", + "collection": "Ranks", + "configData": { + "Goals": [ + [ + { + "Amount": 200, + "Type": 1, + "Weight": 1, + }, + { + "Amount": 50, + "BreakableType": "Safe", + "Type": 1, + "Weight": 1, + }, + { + "Amount": 100, + "BreakableType": "Coin", + "Type": 1, + "Weight": 1, + }, + { + "Amount": 25, + "BreakableType": "Present", + "Type": 1, + "Weight": 1, + }, + { + "Amount": 150, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 150, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 200, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 15, + "Weight": 1, + }, + ], + [ + { + "Amount": 300, + "Type": 1, + "Weight": 1, + }, + { + "Amount": 75, + "BreakableType": "Present", + "Type": 1, + "Weight": 1, + }, + { + "Amount": 125, + "BreakableType": "Safe", + "Type": 1, + "Weight": 1, + }, + { + "Amount": 175, + "Type": 21, + "Weight": 2, + }, + { + "Amount": 250, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 4, + "PotionTier": 1, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 35, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 33, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 32, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 31, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 10, + "Type": 26, + "Weight": 1, + }, + { + "Amount": 8, + "Type": 25, + "Weight": 1, + }, + ], + [ + { + "Amount": 400, + "Type": 1, + "Weight": 1, + }, + { + "Amount": 400, + "BreakableType": "Safe", + "Type": 1, + "Weight": 1, + }, + { + "Amount": 225, + "Type": 21, + "Weight": 2, + }, + { + "Amount": 50, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 300, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 8, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 20, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 2, + "MaximumActiveGoals": 3, + "RankNumber": 3, + "RankUpRewards": [ + { + "_data": { + "_am": 25000, + "id": "Diamonds", + }, + }, + { + "_data": { + "_am": 15, + "id": "Toy Ball", + }, + }, + { + "_data": { + "_am": 15, + "id": "Basic Coin Jar", + }, + }, + { + "_data": { + "_am": 15, + "id": "Magnet Flag", + }, + }, + { + "_data": { + "_am": 15, + "id": "Diamonds Flag", + }, + }, + { + "_data": { + "_am": 15, + "id": "Hasty Flag", + }, + }, + ], + "RequiredRebirth": 0, + "RequiredZone": "Mine", + "Rewards": [ + { + "Item": { + "_data": { + "_am": 15, + "id": "Gift Bag", + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 5000, + "id": "Diamonds", + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Walkspeed", + "tn": 1, + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 150, + "id": "Banana", + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Damage", + "tn": 2, + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 5000, + "id": "Diamonds", + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Coins", + "tn": 2, + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Treasure Hunter", + "tn": 2, + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Diamonds", + "tn": 1, + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Lucky", + "tn": 2, + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Magnet Flag", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Treasure Hunter", + "tn": 2, + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Magnet", + "tn": 2, + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Strong Pets", + "tn": 2, + }, + }, + "StarsRequired": 4, + }, + ], + "Title": "Rookie", + "UnlockableEggSlots": 2, + "UnlockablePetSlots": 6, + }, + "configName": "3 | Rookie", + "dateCreated": null, + "dateModified": "2026-05-02T17:31:49.622Z", + "hashShort": "a7e7e0792fd83bc8", + }, + { + "category": "Ranks", + "collection": "Ranks", + "configData": { + "Goals": [ + [ + { + "Amount": 200, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 200, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 9, + "Weight": 1, + }, + ], + [ + { + "Amount": 250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 30, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 7, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 7, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 4, + "PotionTier": 2, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 8, + "Type": 35, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 33, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 32, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 31, + "Weight": 1, + }, + { + "Amount": 70, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 70, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 15, + "Type": 26, + "Weight": 1, + }, + { + "Amount": 10, + "Type": 25, + "Weight": 1, + }, + ], + [ + { + "Amount": 350, + "Type": 21, + "Weight": 2, + }, + { + "Amount": 50, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 300, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 6, + "PotionTier": 2, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 10, + "Type": 35, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 33, + "Weight": 1, + }, + { + "Amount": 90, + "Type": 20, + "Weight": 2, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 3, + }, + ], + ], + "MaxEnchantsEquipped": 2, + "MaximumActiveGoals": 3, + "RankNumber": 4, + "RankUpRewards": [ + { + "_data": { + "_am": 25000, + "id": "Diamonds", + }, + }, + { + "_data": { + "_am": 6, + "id": "Criticals", + "tn": 2, + }, + }, + { + "_data": { + "_am": 6, + "id": "Magnet Flag", + }, + }, + { + "_data": { + "_am": 6, + "id": "Fortune Flag", + }, + }, + { + "_data": { + "_am": 6, + "id": "Comet", + }, + }, + { + "_data": { + "_am": 30, + "id": "TNT", + }, + }, + ], + "Rewards": [ + { + "Item": { + "_data": { + "_am": 6, + "id": "Gift Bag", + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 5000, + "id": "Diamonds", + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Apple", + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Gift Bag", + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Damage", + "tn": 2, + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 5000, + "id": "Diamonds", + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Coins", + "tn": 2, + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Treasure Hunter", + "tn": 2, + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Banana", + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Crystal Key Lower Half", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Basic Coin Jar", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Coins", + "tn": 2, + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "Pineapple", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Damage", + "tn": 2, + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Crystal Key Upper Half", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Comet", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Strong Pets", + "tn": 3, + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Spinny Wheel Ticket", + }, + }, + "StarsRequired": 5, + }, + ], + "Title": "Adventurer", + "UnlockableEggSlots": 4, + "UnlockablePetSlots": 8, + }, + "configName": "4 | Adventurer", + "dateCreated": null, + "dateModified": "2026-05-02T17:31:49.602Z", + "hashShort": "51805fb325c0e86c", + }, + { + "category": "Ranks", + "collection": "Ranks", + "configData": { + "Goals": [ + [ + { + "Amount": 250, + "Type": 21, + "Weight": 3, + }, + { + "Amount": 9, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 9, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 5, + "PotionTier": 2, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 9, + "Weight": 1, + }, + ], + [ + { + "Amount": 350, + "Type": 21, + "Weight": 3, + }, + { + "Amount": 30, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 10, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 10, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 2, + "PotionTier": 3, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 15, + "Type": 35, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 33, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 32, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 31, + "Weight": 1, + }, + { + "Amount": 80, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 80, + "Type": 20, + "Weight": 1, + }, + ], + [ + { + "Amount": 500, + "Type": 21, + "Weight": 3, + }, + { + "Amount": 50, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 300, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 15, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 15, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 100, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 100, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1, + "PotionTier": 3, + "Type": 12, + "Weight": 1, + }, + { + "Amount": 1, + "EnchantTier": 3, + "Type": 13, + "Weight": 1, + }, + { + "Amount": 12, + "Type": 26, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 25, + "Weight": 1, + }, + ], + [ + { + "Amount": 650, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 650, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 450, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 125, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 125, + "Type": 20, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 3, + "MaximumActiveGoals": 4, + "RankNumber": 5, + "RankUpRewards": [ + { + "_data": { + "_am": 25000, + "id": "Diamonds", + }, + }, + { + "_data": { + "_am": 4, + "id": "Large Gift Bag", + }, + }, + { + "_data": { + "_am": 8, + "id": "Comet", + }, + }, + { + "_data": { + "_am": 12, + "id": "Squeaky Toy", + }, + }, + { + "_data": { + "_am": 8, + "id": "Hasty Flag", + }, + }, + { + "_data": { + "_am": 8, + "id": "Magnet Flag", + }, + }, + ], + "RequiredRebirth": 0, + "RequiredZone": "Tiki", + "Rewards": [ + { + "Item": { + "_data": { + "_am": 4, + "id": "Gift Bag", + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 5000, + "id": "Diamonds", + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Apple", + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Coins", + "tn": 2, + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 10000, + "id": "Diamonds", + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Gift Bag", + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Lucky", + "tn": 2, + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Orange", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Spinny Wheel Ticket", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Damage", + "tn": 2, + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "Banana", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Tap Power", + "tn": 3, + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Coins", + "tn": 3, + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "Pineapple", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "Apple", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Crystal Key", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Magnet Flag", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Happy Pets", + "tn": 1, + }, + }, + "StarsRequired": 6, + }, + ], + "Title": "Experienced", + "UnlockableEggSlots": 6, + "UnlockablePetSlots": 8, + }, + "configName": "5 | Experienced", + "dateCreated": null, + "dateModified": "2026-05-02T17:31:49.620Z", + "hashShort": "19bfdbad770ad177", + }, + { + "category": "Ranks", + "collection": "Ranks", + "configData": { + "Goals": [ + [ + { + "Amount": 350, + "Type": 21, + "Weight": 3, + }, + { + "Amount": 12, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 12, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 5, + "PotionTier": 3, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 9, + "Weight": 1, + }, + ], + [ + { + "Amount": 500, + "Type": 21, + "Weight": 3, + }, + { + "Amount": 50, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 13, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 13, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 1, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 33, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 150, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 16, + "Type": 26, + "Weight": 1, + }, + { + "Amount": 8, + "Type": 25, + "Weight": 1, + }, + ], + [ + { + "Amount": 700, + "Type": 21, + "Weight": 3, + }, + { + "Amount": 75, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 350, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 18, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 18, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 3, + "PotionTier": 3, + "Type": 12, + "Weight": 1, + }, + { + "Amount": 3, + "EnchantTier": 3, + "Type": 13, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 200, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 200, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 100, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 10, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + ], + [ + { + "Amount": 850, + "Type": 21, + "Weight": 3, + }, + { + "Amount": 100, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 500, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 42, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 39, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 3, + "MaximumActiveGoals": 4, + "RankNumber": 6, + "RankUpRewards": [ + { + "_data": { + "_am": 25000, + "id": "Diamonds", + }, + }, + { + "_data": { + "_am": 8, + "id": "Hasty Flag", + }, + }, + { + "_data": { + "_am": 12, + "id": "Comet", + }, + }, + ], + "Rewards": [ + { + "Item": { + "_data": { + "_am": 4, + "id": "Gift Bag", + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 10000, + "id": "Diamonds", + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Pineapple", + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Magnet Flag", + }, + }, + "StarsRequired": 1, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Diamonds", + "tn": 3, + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 10000, + "id": "Diamonds", + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Diamonds Flag", + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Lucky", + "tn": 3, + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Comet", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Damage", + "tn": 3, + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Crystal Key", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "Orange", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Diamonds Flag", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Lucky Eggs", + "tn": 3, + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "Apple", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Tap Power", + "tn": 4, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Damage", + "tn": 4, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Magnet", + "tn": 3, + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Diamonds", + "tn": 3, + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Hasty Flag", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Coins", + "tn": 3, + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "id": "Booth Slot Voucher", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Coins", + "tn": 11, + }, + }, + "StarsRequired": 14, + }, + ], + "Title": "Pro", + "UnlockableEggSlots": 10, + "UnlockablePetSlots": 8, + }, + "configName": "6 | Pro", + "dateCreated": null, + "dateModified": "2026-05-02T17:31:49.629Z", + "hashShort": "5da93d826a0aecfd", + }, + { + "category": "Ranks", + "collection": "Ranks", + "configData": { + "Goals": [ + [ + { + "Amount": 400, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 400, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 400, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 15, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 15, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 9, + "Weight": 1, + }, + ], + [ + { + "Amount": 600, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 600, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 600, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 20, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 20, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 4, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 30, + "Type": 35, + "Weight": 1, + }, + { + "Amount": 8, + "Type": 33, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 200, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 200, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 70, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 7, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 18, + "Type": 26, + "Weight": 1, + }, + { + "Amount": 12, + "Type": 25, + "Weight": 1, + }, + ], + [ + { + "Amount": 900, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 900, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 900, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 125, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 700, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 8, + "Weight": 1, + }, + { + "Amount": 25, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 25, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 1, + "PotionTier": 4, + "Type": 12, + "Weight": 1, + }, + { + "Amount": 1, + "EnchantTier": 4, + "Type": 13, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 500, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 500, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 100, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 10, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + ], + [ + { + "Amount": 1200, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1200, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1200, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 150, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 850, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 42, + "Weight": 1, + }, + { + "Amount": 7, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 7, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 39, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 3, + "MaximumActiveGoals": 4, + "RankNumber": 7, + "RankUpRewards": [ + { + "_data": { + "_am": 100000, + "id": "Diamonds", + }, + }, + { + "_data": { + "_am": 25, + "id": "Coins", + "tn": 3, + }, + }, + { + "_data": { + "_am": 25, + "id": "Comet", + }, + }, + { + "_data": { + "_am": 25, + "id": "Toy Ball", + }, + }, + { + "_data": { + "_am": 25, + "id": "Toy Bone", + }, + }, + { + "_data": { + "_am": 25, + "id": "Squeaky Toy", + }, + }, + ], + "Rewards": [ + { + "Item": { + "_data": { + "_am": 8, + "id": "Gift Bag", + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 25000, + "id": "Diamonds", + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Rainbow", + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "Comet", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Diamonds", + "tn": 3, + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 25000, + "id": "Diamonds", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "TNT Crate", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Lucky", + "tn": 3, + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Gift Bag", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Damage", + "tn": 4, + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 75, + "id": "Comet", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 100, + "id": "Banana", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Tap Power", + "tn": 4, + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "Spinny Wheel Ticket", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 75, + "id": "TNT", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "Toy Ball", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "Squeaky Toy", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 125, + "id": "Apple", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "Toy Bone", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Lucky Eggs", + "tn": 3, + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 150, + "id": "Banana", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 50000, + "id": "Diamonds", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Criticals", + "tn": 4, + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Crystal Key", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 75, + "id": "Rainbow", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Strong Pets", + "tn": 4, + }, + }, + "StarsRequired": 9, + }, + ], + "Title": "Elite", + "UnlockableEggSlots": 8, + "UnlockablePetSlots": 5, + }, + "configName": "7 | Elite", + "dateCreated": null, + "dateModified": "2026-05-02T17:31:49.614Z", + "hashShort": "fa5808198dd93f61", + }, + { + "category": "Ranks", + "collection": "Ranks", + "configData": { + "Goals": [ + [ + { + "Amount": 750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 20, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 20, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 9, + "Weight": 1, + }, + ], + [ + { + "Amount": 1000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 22, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 22, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 5, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 250, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 250, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 100, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 10, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 20, + "Type": 26, + "Weight": 1, + }, + { + "Amount": 15, + "Type": 25, + "Weight": 1, + }, + ], + [ + { + "Amount": 1250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 125, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 1000, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 30, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 30, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 5, + "PotionTier": 4, + "Type": 12, + "Weight": 1, + }, + { + "Amount": 5, + "EnchantTier": 4, + "Type": 13, + "Weight": 1, + }, + { + "Amount": 2, + "PotionTier": 5, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 650, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 650, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 150, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 15, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + ], + [ + { + "Amount": 1500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 150, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 1500, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 42, + "Weight": 1, + }, + { + "Amount": 7, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 7, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 39, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 4, + "MaximumActiveGoals": 4, + "RankNumber": 8, + "RankUpRewards": [ + { + "_data": { + "_am": 15, + "id": "Damage", + "tn": 5, + }, + }, + { + "_data": { + "_am": 30, + "id": "Comet", + }, + }, + { + "_data": { + "_am": 40, + "id": "Squeaky Toy", + }, + }, + { + "_data": { + "_am": 40, + "id": "Toy Ball", + }, + }, + { + "_data": { + "_am": 40, + "id": "Toy Bone", + }, + }, + { + "_data": { + "_am": 15, + "id": "Large Gift Bag", + }, + }, + ], + "Rewards": [ + { + "Item": { + "_data": { + "_am": 20, + "id": "Gift Bag", + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 25000, + "id": "Diamonds", + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "TNT Crate", + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Comet", + }, + }, + "StarsRequired": 2, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "Damage", + "tn": 3, + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 25000, + "id": "Diamonds", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Diamonds", + "tn": 3, + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Magnet", + "tn": 3, + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Rainbow", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Criticals", + "tn": 5, + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 200, + "id": "Banana", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Tap Power", + "tn": 4, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Crystal Key", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 125, + "id": "TNT", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Treasure Hunter", + "tn": 4, + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "Rainbow", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "Hasty Flag", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Damage", + "tn": 4, + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Fortune Flag", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "Toy Ball", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 50000, + "id": "Diamonds", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Coins", + "tn": 4, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Criticals", + "tn": 4, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "Comet", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Treasure Hunter", + "tn": 5, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Coins", + "tn": 5, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Blast", + "tn": 1, + }, + }, + "StarsRequired": 10, + }, + ], + "Title": "Expert", + "UnlockableEggSlots": 15, + "UnlockablePetSlots": 9, + }, + "configName": "8 | Expert", + "dateCreated": null, + "dateModified": "2026-05-02T17:31:49.623Z", + "hashShort": "3525b8064b98d28a", + }, + { + "category": "Ranks", + "collection": "Ranks", + "configData": { + "Goals": [ + [ + { + "Amount": 900, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 900, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 900, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 25, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 25, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 9, + "Weight": 1, + }, + ], + [ + { + "Amount": 1300, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1300, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1300, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 30, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 30, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 8, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 850, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 850, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 150, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 15, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 24, + "Type": 26, + "Weight": 1, + }, + { + "Amount": 20, + "Type": 25, + "Weight": 1, + }, + ], + [ + { + "Amount": 1600, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1600, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1600, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 125, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 1500, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 8, + "PotionTier": 4, + "Type": 12, + "Weight": 1, + }, + { + "Amount": 8, + "EnchantTier": 4, + "Type": 13, + "Weight": 1, + }, + { + "Amount": 6, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 200, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 20, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + ], + [ + { + "Amount": 1800, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1800, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1800, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 150, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 2000, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 42, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 39, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 4, + "MaximumActiveGoals": 4, + "RankNumber": 9, + "RankUpRewards": [ + { + "_data": { + "_am": 4, + "id": "Damage", + "tn": 6, + }, + }, + { + "_data": { + "_am": 12, + "id": "Insta Plant Capsule", + }, + }, + { + "_data": { + "_am": 12, + "id": "Large Gift Bag", + }, + }, + ], + "Rewards": [ + { + "Item": { + "_data": { + "_am": 12, + "id": "Gift Bag", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 10000, + "id": "Diamonds", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Damage", + "tn": 4, + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Comet", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Basic Coin Jar", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 10000, + "id": "Diamonds", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Rainbow", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Coins", + "tn": 4, + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Diamonds", + "tn": 3, + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Lucky Eggs", + "tn": 4, + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Seed Bag", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 100, + "id": "Apple", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Treasure Hunter", + "tn": 4, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Crystal Key", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Insta Plant Capsule", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Treasure Hunter", + "tn": 5, + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "Rainbow", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Diamonds Flag", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Damage", + "tn": 4, + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Fortune Flag", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Squeaky Toy", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 25000, + "id": "Diamonds", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Coins", + "tn": 4, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Criticals", + "tn": 5, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Comet", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Coins", + "tn": 5, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Seed Bag", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Diamonds", + "tn": 3, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Coins", + "tn": 5, + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "TNT Crate", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Diamonds", + "tn": 5, + }, + }, + "StarsRequired": 12, + }, + ], + "Title": "Master", + "UnlockableEggSlots": 3, + "UnlockablePetSlots": 3, + }, + "configName": "9 | Master", + "dateCreated": null, + "dateModified": "2026-05-02T17:31:49.623Z", + "hashShort": "d2686f594cf66945", + }, + { + "category": "Ranks", + "collection": "Ranks", + "configData": { + "Goals": [ + [ + { + "Amount": 1500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 35, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 35, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 30, + "Type": 9, + "Weight": 1, + }, + ], + [ + { + "Amount": 2000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 10, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 1250, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1250, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 400, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 26, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 25, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 46, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 45, + "Weight": 1, + }, + ], + [ + { + "Amount": 2500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 750, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 2500, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 18, + "PotionTier": 3, + "Type": 12, + "Weight": 1, + }, + { + "Amount": 18, + "EnchantTier": 3, + "Type": 13, + "Weight": 1, + }, + { + "Amount": 18, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 500, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + ], + [ + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 900, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 3000, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 20, + "Type": 42, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 5, + "MaximumActiveGoals": 4, + "RankNumber": 16, + "RankUpRewards": [ + { + "_data": { + "_am": 3, + "id": "Coins", + "tn": 7, + }, + }, + { + "_data": { + "_am": 3, + "id": "Damage", + "tn": 7, + }, + }, + { + "_data": { + "_am": 3, + "id": "Diamonds", + "tn": 6, + }, + }, + { + "_data": { + "_am": 10, + "id": "Large Gift Bag", + }, + }, + { + "_data": { + "_am": 2, + "id": "Enchant Bundle", + }, + }, + ], + "Rewards": [ + { + "Item": { + "_data": { + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 13000, + "id": "Diamonds", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "id": "Crystal Key", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "id": "Mini Pinata", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 9, + "id": "Coins", + "tn": 5, + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 12500, + "id": "Diamonds", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 9, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 120, + "id": "Apple", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Strength Flag", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Diamonds", + "tn": 5, + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Coins", + "tn": 5, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 60, + "id": "Rainbow", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 100, + "id": "Toy Ball", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Giant Coin Jar", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "Rainbow", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "id": "Crystal Key", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Coins", + "tn": 5, + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Diamonds", + "tn": 5, + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 120, + "id": "Squeaky Toy", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 13000, + "id": "Diamonds", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "id": "Secret Key", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Rainbow Flag", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 90, + "id": "Banana", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 120, + "id": "Toy Ball", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Spinny Wheel Ticket", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Treasure Hunter", + "tn": 6, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Mini Lucky Block", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Damage", + "tn": 6, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Coins", + "tn": 6, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Diamonds", + "tn": 5, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Lucky", + "tn": 6, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 80, + "id": "Orange", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "id": "Mini Chest", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Lucky", + "tn": 6, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Shiny Flag", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Damage", + "tn": 6, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Treasure Hunter", + "tn": 6, + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 60, + "id": "Rainbow", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Spinny Wheel Ticket", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 13500, + "id": "Diamonds", + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Coins", + "tn": 6, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Diamonds", + "tn": 5, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Treasure Hunter", + "tn": 7, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Party Box", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Coins", + "tn": 7, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Damage", + "tn": 7, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Lucky", + "tn": 7, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Crystal Key", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 220, + "id": "Rainbow", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Enchant Bundle", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Coins", + "tn": 8, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Damage", + "tn": 8, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Treasure Hunter", + "tn": 8, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Damage", + "tn": 8, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Lucky", + "tn": 8, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "id": "Charm Stone", + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Mini Chest", + }, + }, + "StarsRequired": 16, + }, + ], + "Title": "Overlord", + "UnlockableEggSlots": 1, + "UnlockablePetSlots": 1, + }, + "configName": "16 | Overlord", + "dateCreated": null, + "dateModified": "2025-07-05T23:36:13.382Z", + "hashShort": "31790679d218ab30", + }, + { + "category": "Ranks", + "collection": "Ranks", + "configData": { + "Goals": [ + [ + { + "Amount": 1000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 28, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 28, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 20, + "Type": 9, + "Weight": 1, + }, + ], + [ + { + "Amount": 1500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 32, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 32, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 6, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 1000, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1000, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 200, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 20, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 26, + "Type": 26, + "Weight": 1, + }, + { + "Amount": 25, + "Type": 25, + "Weight": 1, + }, + ], + [ + { + "Amount": 1800, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1800, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1800, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 250, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 2000, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 10, + "PotionTier": 3, + "Type": 12, + "Weight": 1, + }, + { + "Amount": 10, + "EnchantTier": 3, + "Type": 13, + "Weight": 1, + }, + { + "Amount": 10, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 300, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 30, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + ], + [ + { + "Amount": 2000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 350, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 2500, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 42, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 4, + "MaximumActiveGoals": 4, + "RankNumber": 10, + "RankUpRewards": [ + { + "_data": { + "_am": 3, + "id": "Damage", + "tn": 6, + }, + }, + { + "_data": { + "_am": 3, + "id": "Lucky", + "tn": 6, + }, + }, + { + "_data": { + "_am": 15, + "id": "Spinny Wheel Ticket", + }, + }, + { + "_data": { + "_am": 6, + "id": "Large Gift Bag", + }, + }, + ], + "Rewards": [ + { + "Item": { + "_data": { + "_am": 15, + "id": "Gift Bag", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 10000, + "id": "Diamonds", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "TNT Crate", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Comet", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Damage", + "tn": 3, + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 10000, + "id": "Diamonds", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Coins", + "tn": 4, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 100, + "id": "Apple", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Magnet Flag", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Damage", + "tn": 4, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Insta Plant Capsule", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Fortune Flag", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 100, + "id": "Banana", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Crystal Key", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "TNT", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Diamonds", + "tn": 3, + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Lucky", + "tn": 4, + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 100, + "id": "Pineapple", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Squeaky Toy", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Insta Plant Capsule", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Treasure Hunter", + "tn": 5, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Coins", + "tn": 5, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 25000, + "id": "Diamonds", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Toy Ball", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 25000, + "id": "Diamonds", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Coins", + "tn": 4, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Spinny Wheel Ticket", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Seed Bag", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Crystal Key", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Toy Bone", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Coins", + "tn": 5, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Insta Plant Capsule", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Comet", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Coins", + "tn": 6, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Treasure Hunter", + "tn": 6, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "Rainbow", + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Agility", + "tn": 1, + }, + }, + "StarsRequired": 13, + }, + ], + "Title": "Legend", + "UnlockableEggSlots": 3, + "UnlockablePetSlots": 3, + }, + "configName": "10 | Legend", + "dateCreated": null, + "dateModified": "2026-05-02T17:31:49.601Z", + "hashShort": "a8b01143950e7a31", + }, + { + "category": "Ranks", + "collection": "Ranks", + "configData": { + "Goals": [ + [ + { + "Amount": 1200, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1200, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1200, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 30, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 30, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 25, + "Type": 9, + "Weight": 1, + }, + ], + [ + { + "Amount": 1700, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1700, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1700, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 35, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 35, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 8, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 1200, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1200, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 250, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 25, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 30, + "Type": 26, + "Weight": 1, + }, + { + "Amount": 28, + "Type": 25, + "Weight": 1, + }, + ], + [ + { + "Amount": 1950, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1950, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1950, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 300, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 2500, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 12, + "PotionTier": 3, + "Type": 12, + "Weight": 1, + }, + { + "Amount": 12, + "EnchantTier": 3, + "Type": 13, + "Weight": 1, + }, + { + "Amount": 12, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 1800, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1800, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 350, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 35, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + ], + [ + { + "Amount": 2200, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2200, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2200, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 400, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 3000, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 42, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 5, + "MaximumActiveGoals": 4, + "RankNumber": 11, + "RankUpRewards": [ + { + "_data": { + "_am": 2, + "id": "Coins", + "tn": 6, + }, + }, + { + "_data": { + "_am": 2, + "id": "Treasure Hunter", + "tn": 6, + }, + }, + { + "_data": { + "_am": 2, + "id": "Lucky", + "tn": 6, + }, + }, + { + "_data": { + "_am": 2, + "id": "Crystal Key", + }, + }, + { + "_data": { + "_am": 6, + "id": "Spinny Wheel Ticket", + }, + }, + { + "_data": { + "_am": 5, + "id": "Large Gift Bag", + }, + }, + ], + "Rewards": [ + { + "Item": { + "_data": { + "_am": 10, + "id": "Gift Bag", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 10000, + "id": "Diamonds", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Damage", + "tn": 3, + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Spinny Wheel Ticket", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Lucky", + "tn": 4, + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 10000, + "id": "Diamonds", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Insta Plant Capsule", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Treasure Hunter", + "tn": 5, + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Coins", + "tn": 5, + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "TNT Crate", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Diamonds", + "tn": 4, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Lucky", + "tn": 5, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Rainbow", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "Toy Bone", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Insta Plant Capsule", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Hasty Flag", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 75, + "id": "Banana", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Crystal Key", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Coins", + "tn": 4, + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "TNT Crate", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Fortune Flag", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Damage", + "tn": 4, + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Spinny Wheel Ticket", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Seed Bag", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Crystal Key", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 75, + "id": "Toy Bone", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 10000, + "id": "Diamonds", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Tap Power", + "tn": 5, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 10000, + "id": "Diamonds", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Coins", + "tn": 5, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Damage", + "tn": 6, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Lucky", + "tn": 6, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Insta Plant Capsule", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Seed Bag", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Comet", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 25000, + "id": "Diamonds", + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Damage", + "tn": 6, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Diamonds", + "tn": 5, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Coins", + "tn": 6, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Bonus", + "tn": 1, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Charm Stone", + }, + }, + "StarsRequired": 14, + }, + ], + "Title": "Champion", + "UnlockableEggSlots": 3, + "UnlockablePetSlots": 3, + }, + "configName": "11 | Champion", + "dateCreated": null, + "dateModified": "2026-05-02T17:31:49.586Z", + "hashShort": "2bdb92487645b63c", + }, + { + "category": "Ranks", + "collection": "Ranks", + "configData": { + "Goals": [ + [ + { + "Amount": 1350, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1350, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1350, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 32, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 32, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 25, + "Type": 9, + "Weight": 1, + }, + ], + [ + { + "Amount": 1900, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1900, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1900, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 37, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 37, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 8, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 1400, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1400, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 290, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 30, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 34, + "Type": 26, + "Weight": 1, + }, + { + "Amount": 32, + "Type": 25, + "Weight": 1, + }, + ], + [ + { + "Amount": 2100, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2100, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2100, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 350, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 2500, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 14, + "PotionTier": 3, + "Type": 12, + "Weight": 1, + }, + { + "Amount": 14, + "EnchantTier": 3, + "Type": 13, + "Weight": 1, + }, + { + "Amount": 14, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 400, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 38, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + ], + [ + { + "Amount": 2400, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2400, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2400, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 450, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 3000, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 42, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 5, + "MaximumActiveGoals": 4, + "RankNumber": 13, + "RankUpRewards": [ + { + "_data": { + "_am": 50, + "id": "Treasure Hunter", + "tn": 5, + }, + }, + { + "_data": { + "_am": 50, + "id": "Lucky", + "tn": 5, + }, + }, + { + "_data": { + "_am": 75, + "id": "Diamonds", + "tn": 3, + }, + }, + { + "_data": { + "_am": 6, + "id": "Crystal Key", + }, + }, + { + "_data": { + "_am": 75, + "id": "Hasty Flag", + }, + }, + { + "_data": { + "_am": 300, + "id": "Rainbow", + }, + }, + { + "_data": { + "_am": 250000, + "id": "Diamonds", + }, + }, + ], + "Rewards": [ + { + "Item": { + "_data": { + "_am": 30, + "id": "Gift Bag", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 50000, + "id": "Diamonds", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "TNT Crate", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "Comet", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 250, + "id": "Banana", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "Magnet Flag", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 75, + "id": "Damage", + "tn": 4, + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Treasure Hunter", + "tn": 5, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 50000, + "id": "Diamonds", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "Coins", + "tn": 5, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Diamonds", + "tn": 4, + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Lucky", + "tn": 5, + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 250, + "id": "Pineapple", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 125, + "id": "Squeaky Toy", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Insta Plant Capsule", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Treasure Hunter", + "tn": 6, + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "Coins Flag", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Crystal Key", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 75, + "id": "Magnet Flag", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Coins", + "tn": 5, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Spinny Wheel Ticket", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Seed Bag", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Crystal Key", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Coins", + "tn": 5, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 50000, + "id": "Diamonds", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 200, + "id": "Toy Bone", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 75, + "id": "Diamonds Flag", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 150, + "id": "Rainbow", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Spinny Wheel Ticket", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Coins", + "tn": 7, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Seed Bag", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 50000, + "id": "Diamonds", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Coins", + "tn": 6, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "Comet", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Treasure Hunter", + "tn": 6, + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Damage", + "tn": 6, + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Charm Stone", + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Lucky", + "tn": 7, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Diamonds", + "tn": 5, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Treasure Hunter", + "tn": 6, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Damage", + "tn": 7, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 75, + "id": "Coins", + "tn": 5, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 75, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 75, + "id": "Treasure Hunter", + "tn": 5, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "Diamonds", + "tn": 4, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Coins", + "tn": 11, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Tap Power", + "tn": 6, + }, + }, + "StarsRequired": 15, + }, + ], + "Title": "Guardian", + "UnlockableEggSlots": 3, + "UnlockablePetSlots": 3, + }, + "configName": "13 | Guardian", + "dateCreated": null, + "dateModified": "2026-05-02T17:31:49.614Z", + "hashShort": "f316cdaf5d17ca9f", + }, + { + "category": "Ranks", + "collection": "Ranks", + "configData": { + "Goals": [ + [ + { + "Amount": 1350, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1350, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1350, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 32, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 32, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 25, + "Type": 9, + "Weight": 1, + }, + ], + [ + { + "Amount": 1900, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1900, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1900, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 37, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 37, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 8, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 1400, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1400, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 290, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 30, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 34, + "Type": 26, + "Weight": 1, + }, + { + "Amount": 32, + "Type": 25, + "Weight": 1, + }, + ], + [ + { + "Amount": 2100, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2100, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2100, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 350, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 2500, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 14, + "PotionTier": 3, + "Type": 12, + "Weight": 1, + }, + { + "Amount": 14, + "EnchantTier": 3, + "Type": 13, + "Weight": 1, + }, + { + "Amount": 14, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 400, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 38, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + ], + [ + { + "Amount": 2400, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2400, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2400, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 450, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 3000, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 42, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 5, + "MaximumActiveGoals": 4, + "RankNumber": 12, + "RankUpRewards": [ + { + "_data": { + "_am": 3, + "id": "Coins", + "tn": 7, + }, + }, + { + "_data": { + "_am": 3, + "id": "Treasure Hunter", + "tn": 7, + }, + }, + { + "_data": { + "_am": 3, + "id": "Lucky", + "tn": 7, + }, + }, + { + "_data": { + "_am": 6, + "id": "Crystal Key", + }, + }, + { + "_data": { + "_am": 15, + "id": "Spinny Wheel Ticket", + }, + }, + ], + "Rewards": [ + { + "Item": { + "_data": { + "_am": 20, + "id": "Gift Bag", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 25000, + "id": "Diamonds", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "TNT Crate", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Comet", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 25000, + "id": "Diamonds", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Coins", + "tn": 5, + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 150, + "id": "Orange", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "Hasty Flag", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Damage", + "tn": 4, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Diamonds Flag", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Strong Pets", + "tn": 5, + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Crystal Key", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "TNT Crate", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Diamonds", + "tn": 4, + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Lucky", + "tn": 5, + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 150, + "id": "Apple", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 75, + "id": "Toy Ball", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Insta Plant Capsule", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Treasure Hunter", + "tn": 5, + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Coins", + "tn": 5, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 25000, + "id": "Diamonds", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 75, + "id": "Squeaky Toy", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "Magnet Flag", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Coins", + "tn": 5, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Spinny Wheel Ticket", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Seed Bag", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Crystal Key", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Coins", + "tn": 6, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Seed Bag", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 25000, + "id": "Diamonds", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Coins", + "tn": 6, + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Treasure Hunter", + "tn": 6, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 100, + "id": "Rainbow", + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Spinny Wheel Ticket", + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Damage", + "tn": 6, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Coins", + "tn": 7, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Charm Stone", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Lucky", + "tn": 7, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Diamonds", + "tn": 5, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Treasure Hunter", + "tn": 6, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Damage", + "tn": 7, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Lucky Eggs", + "tn": 6, + }, + }, + "StarsRequired": 15, + }, + ], + "Title": "Superstar", + "UnlockableEggSlots": 3, + "UnlockablePetSlots": 3, + }, + "configName": "12 | Superstar", + "dateCreated": null, + "dateModified": "2026-05-02T17:31:49.602Z", + "hashShort": "08eb5cf4d2868d4a", + }, + { + "category": "Ranks", + "collection": "Ranks", + "configData": { + "Goals": [ + [ + { + "Amount": 1500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 35, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 35, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 30, + "Type": 9, + "Weight": 1, + }, + ], + [ + { + "Amount": 2000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 10, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 1250, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1250, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 400, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 26, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 25, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 46, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 45, + "Weight": 1, + }, + ], + [ + { + "Amount": 2500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 400, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 2500, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 18, + "PotionTier": 3, + "Type": 12, + "Weight": 1, + }, + { + "Amount": 18, + "EnchantTier": 3, + "Type": 13, + "Weight": 1, + }, + { + "Amount": 18, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 500, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + ], + [ + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 500, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 3000, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 20, + "Type": 42, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 5, + "MaximumActiveGoals": 4, + "RankNumber": 15, + "RankUpRewards": [ + { + "_data": { + "_am": 15, + "id": "Coins", + "tn": 7, + }, + }, + { + "_data": { + "_am": 15, + "id": "Damage", + "tn": 7, + }, + }, + { + "_data": { + "_am": 15, + "id": "Diamonds", + "tn": 6, + }, + }, + { + "_data": { + "_am": 8, + "id": "Mini Pinata", + }, + }, + { + "_data": { + "_am": 8, + "id": "Party Box", + }, + }, + { + "_data": { + "_am": 8, + "id": "Mini Lucky Block", + }, + }, + ], + "Rewards": [ + { + "Item": { + "_data": { + "_am": 8, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 100000, + "id": "Diamonds", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Crystal Key", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 75, + "id": "Comet", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 100000, + "id": "Diamonds", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "Coins", + "tn": 5, + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 300, + "id": "Banana", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Shiny Flag", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "Diamonds", + "tn": 5, + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 75, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 75, + "id": "Coins", + "tn": 5, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "Diamonds", + "tn": 5, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 250, + "id": "Squeaky Toy", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 100000, + "id": "Diamonds", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Crystal Key", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 75, + "id": "Coins", + "tn": 5, + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 300, + "id": "Apple", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 250, + "id": "Toy Ball", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 300, + "id": "Rainbow", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Rainbow Flag", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 300, + "id": "Banana", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 250, + "id": "Toy Ball", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Secret Key", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Diamonds", + "tn": 5, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Lucky", + "tn": 6, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Strength Flag", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Mini Chest", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 75, + "id": "Treasure Hunter", + "tn": 5, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Mini Lucky Block", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Damage", + "tn": 6, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Coins", + "tn": 6, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Treasure Hunter", + "tn": 6, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 300, + "id": "Rainbow", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "Potion Bundle", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Lucky", + "tn": 6, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Mini Pinata", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "Damage", + "tn": 6, + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 100000, + "id": "Diamonds", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Coins", + "tn": 6, + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Diamonds", + "tn": 5, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Treasure Hunter", + "tn": 6, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "Party Box", + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Coins", + "tn": 7, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Damage", + "tn": 7, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Lucky", + "tn": 7, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Crystal Key", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 300, + "id": "Rainbow", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Charm Stone", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Enchant Bundle", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Coins", + "tn": 8, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Damage", + "tn": 8, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Treasure Hunter", + "tn": 8, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Diamonds", + "tn": 6, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "Spinny Wheel Ticket", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 500000, + "id": "Diamonds", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Coins", + "tn": 11, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Strength", + "tn": 1, + }, + }, + "StarsRequired": 15, + }, + ], + "Title": "Sentinel", + "UnlockableEggSlots": 1, + "UnlockablePetSlots": 1, + }, + "configName": "15 | Sentinel", + "dateCreated": null, + "dateModified": "2026-05-02T17:31:49.634Z", + "hashShort": "a7b1d90e63875f39", + }, + { + "category": "Ranks", + "collection": "Ranks", + "configData": { + "Goals": [ + [ + { + "Amount": 1350, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1350, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1350, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 32, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 32, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 25, + "Type": 9, + "Weight": 1, + }, + ], + [ + { + "Amount": 1900, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1900, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1900, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 37, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 37, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 8, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 1400, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1400, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 290, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 30, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 34, + "Type": 26, + "Weight": 1, + }, + { + "Amount": 32, + "Type": 25, + "Weight": 1, + }, + ], + [ + { + "Amount": 2100, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2100, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2100, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 350, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 2500, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 14, + "PotionTier": 3, + "Type": 12, + "Weight": 1, + }, + { + "Amount": 14, + "EnchantTier": 3, + "Type": 13, + "Weight": 1, + }, + { + "Amount": 14, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 400, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 38, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + ], + [ + { + "Amount": 2400, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2400, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2400, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 450, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 3000, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 42, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 5, + "MaximumActiveGoals": 4, + "RankNumber": 14, + "RankUpRewards": [ + { + "_data": { + "_am": 10, + "id": "Coins", + "tn": 7, + }, + }, + { + "_data": { + "_am": 10, + "id": "Damage", + "tn": 7, + }, + }, + { + "_data": { + "_am": 10, + "id": "Diamonds", + "tn": 6, + }, + }, + { + "_data": { + "_am": 6, + "id": "Crystal Key", + }, + }, + ], + "Rewards": [ + { + "Item": { + "_data": { + "_am": 30, + "id": "Gift Bag", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 50000, + "id": "Diamonds", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "TNT Crate", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Lucky", + "tn": 5, + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 50000, + "id": "Diamonds", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Coins", + "tn": 5, + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 300, + "id": "Apple", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 75, + "id": "Coins Flag", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 75, + "id": "Treasure Hunter", + "tn": 4, + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Coins", + "tn": 5, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Diamonds", + "tn": 5, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 250, + "id": "Toy Bone", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 50000, + "id": "Diamonds", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 100, + "id": "Hasty Flag", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Coins", + "tn": 5, + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 300, + "id": "Apple", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 250, + "id": "Toy Ball", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 125, + "id": "Rainbow", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 75, + "id": "Diamonds Flag", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 300, + "id": "Banana", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 250, + "id": "Toy Ball", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 250, + "id": "Squeaky Toy", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Diamonds", + "tn": 5, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Lucky", + "tn": 6, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 300, + "id": "Orange", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "Insta Plant Capsule", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Treasure Hunter", + "tn": 5, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 75, + "id": "Comet", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Damage", + "tn": 6, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Coins", + "tn": 6, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Treasure Hunter", + "tn": 6, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 250, + "id": "Rainbow", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Spinny Wheel Ticket", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Lucky", + "tn": 6, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 50000, + "id": "Diamonds", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Coins", + "tn": 6, + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Diamonds", + "tn": 5, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Treasure Hunter", + "tn": 6, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Damage", + "tn": 6, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Coins", + "tn": 7, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Damage", + "tn": 7, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Lucky", + "tn": 7, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Crystal Key", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 300, + "id": "Rainbow", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Treasure Hunter", + "tn": 5, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Coins", + "tn": 8, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Lucky", + "tn": 8, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Treasure Hunter", + "tn": 8, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Damage", + "tn": 8, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Charm Stone", + }, + }, + "StarsRequired": 15, + }, + ], + "Title": "Titan", + "UnlockableEggSlots": 3, + "UnlockablePetSlots": 3, + }, + "configName": "14 | Titan", + "dateCreated": null, + "dateModified": "2026-05-02T17:31:49.606Z", + "hashShort": "9e9c45c28053d8df", + }, + { + "category": "Ranks", + "collection": "Ranks", + "configData": { + "Goals": [ + [ + { + "Amount": 1500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 35, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 35, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 30, + "Type": 9, + "Weight": 1, + }, + ], + [ + { + "Amount": 2000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 10, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 1250, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1250, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 400, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 26, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 25, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 46, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 45, + "Weight": 1, + }, + ], + [ + { + "Amount": 2500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 350, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 2500, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 18, + "PotionTier": 3, + "Type": 12, + "Weight": 1, + }, + { + "Amount": 18, + "EnchantTier": 3, + "Type": 13, + "Weight": 1, + }, + { + "Amount": 18, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 500, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + ], + [ + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 450, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 3000, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 20, + "Type": 42, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 5, + "MaximumActiveGoals": 4, + "RankNumber": 17, + "RankUpRewards": [ + { + "_data": { + "_am": 3, + "id": "Coins", + "tn": 7, + }, + }, + { + "_data": { + "_am": 3, + "id": "Damage", + "tn": 7, + }, + }, + { + "_data": { + "_am": 3, + "id": "Diamonds", + "tn": 6, + }, + }, + { + "_data": { + "_am": 10, + "id": "Party Box", + }, + }, + { + "_data": { + "_am": 2, + "id": "Crystal Key", + }, + }, + { + "_data": { + "id": "Secret Key", + }, + }, + ], + "Rewards": [ + { + "Item": { + "_data": { + "_am": 2, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 13500, + "id": "Diamonds", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "id": "Crystal Key", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Mini Pinata", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Coins", + "tn": 5, + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 14000, + "id": "Diamonds", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 120, + "id": "Pineapple", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Flag Bundle", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Diamonds", + "tn": 5, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Coins", + "tn": 5, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Potion Bundle", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 100, + "id": "Squeaky Toy", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 14500, + "id": "Diamonds", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 60, + "id": "Rainbow", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "id": "Crystal Key", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Coins", + "tn": 6, + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "id": "Mini Chest", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Diamonds", + "tn": 5, + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 150, + "id": "Toy Bone", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 15000, + "id": "Diamonds", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "id": "Secret Key", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Rainbow Flag", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 90, + "id": "Orange", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 150, + "id": "Toy Ball", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Spinny Wheel Ticket", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Treasure Hunter", + "tn": 5, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Party Box", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Damage", + "tn": 6, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Coins", + "tn": 6, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 9, + "id": "Diamonds", + "tn": 5, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Lucky", + "tn": 7, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Enchant Bundle", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "id": "Mini Chest", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Coins", + "tn": 7, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Shiny Flag", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Damage", + "tn": 7, + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Treasure Hunter", + "tn": 7, + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 80, + "id": "Rainbow", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Spinny Wheel Ticket", + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 50000, + "id": "Diamonds", + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Coins", + "tn": 7, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Diamonds", + "tn": 6, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Treasure Hunter", + "tn": 7, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Party Box", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Coins", + "tn": 7, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Damage", + "tn": 7, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Lucky", + "tn": 7, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Crystal Key", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 250, + "id": "Rainbow", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Enchant Bundle", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "id": "Mini Chest", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Coins", + "tn": 8, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Damage", + "tn": 8, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Treasure Hunter", + "tn": 8, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Damage", + "tn": 8, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Party Box", + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Lucky", + "tn": 8, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Secret Key", + }, + }, + "StarsRequired": 16, + }, + ], + "Title": "Immortal", + "UnlockableEggSlots": 1, + "UnlockablePetSlots": 1, + }, + "configName": "17 | Immortal", + "dateCreated": null, + "dateModified": "2025-07-05T23:36:13.384Z", + "hashShort": "de592dbe6af5ce9e", + }, + { + "category": "Ranks", + "collection": "Ranks", + "configData": { + "Goals": [ + [ + { + "Amount": 1500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 35, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 35, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 30, + "Type": 9, + "Weight": 1, + }, + ], + [ + { + "Amount": 2000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 10, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 3, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 1250, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1250, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 400, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 26, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 25, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 46, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 45, + "Weight": 1, + }, + ], + [ + { + "Amount": 2500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 350, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 3000, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 18, + "PotionTier": 3, + "Type": 12, + "Weight": 1, + }, + { + "Amount": 18, + "EnchantTier": 3, + "Type": 13, + "Weight": 1, + }, + { + "Amount": 18, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 500, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + ], + [ + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 500, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 3500, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 20, + "Type": 42, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 5, + "MaximumActiveGoals": 4, + "RankNumber": 18, + "RankUpRewards": [ + { + "_data": { + "_am": 6, + "id": "Lucky", + "tn": 8, + }, + }, + { + "_data": { + "_am": 6, + "id": "Coins", + "tn": 8, + }, + }, + { + "_data": { + "_am": 6, + "id": "Damage", + "tn": 8, + }, + }, + { + "_data": { + "_am": 6, + "id": "Diamonds", + "tn": 6, + }, + }, + { + "_data": { + "_am": 2, + "id": "Crystal Key", + }, + }, + { + "_data": { + "_am": 2, + "id": "Mini Chest", + }, + }, + ], + "Rewards": [ + { + "Item": { + "_data": { + "_am": 2, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 15000, + "id": "Diamonds", + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Coins", + "tn": 6, + }, + }, + "StarsRequired": 3, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Mini Pinata", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "id": "Crystal Key", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 15500, + "id": "Diamonds", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Damage", + "tn": 6, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 150, + "id": "Banana", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Flag Bundle", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Diamonds", + "tn": 6, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 9, + "id": "Damage", + "tn": 6, + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 9, + "id": "Coins", + "tn": 6, + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 7, + "id": "Potion Bundle", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Rainbow Flag", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Giant Coin Jar", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 120, + "id": "Rainbow", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Crystal Key", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Coins", + "tn": 7, + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "id": "Mini Chest", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Diamonds", + "tn": 6, + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Toy Bundle", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 16000, + "id": "Diamonds", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Secret Key", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Rainbow Flag", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 150, + "id": "Orange", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Mini Pinata", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Spinny Wheel Ticket", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Treasure Hunter", + "tn": 6, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Party Box", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 9, + "id": "Damage", + "tn": 7, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 7, + "id": "Coins", + "tn": 7, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Diamonds", + "tn": 6, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Lucky", + "tn": 7, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 150, + "id": "Rainbow", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "id": "Mini Chest", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Coins", + "tn": 7, + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Shiny Flag", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Damage", + "tn": 7, + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Treasure Hunter", + "tn": 7, + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Enchant Bundle", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Spinny Wheel Ticket", + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 16500, + "id": "Diamonds", + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Coins", + "tn": 8, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Diamonds", + "tn": 6, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Treasure Hunter", + "tn": 8, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Party Box", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Coins", + "tn": 8, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Damage", + "tn": 8, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Lucky", + "tn": 8, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Crystal Key", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 250, + "id": "Rainbow", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 7, + "id": "Enchant Bundle", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 7, + "id": "Mini Pinata", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Coins", + "tn": 8, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Damage", + "tn": 8, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Treasure Hunter", + "tn": 8, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Mini Chest", + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Party Box", + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Lucky", + "tn": 8, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Charm Stone", + }, + }, + "StarsRequired": 16, + }, + ], + "Title": "Hacker", + "UnlockableEggSlots": 1, + "UnlockablePetSlots": 1, + }, + "configName": "18 | Hacker", + "dateCreated": null, + "dateModified": "2025-07-05T23:36:13.394Z", + "hashShort": "593aa1abe883252e", + }, + { + "category": "Ranks", + "collection": "Ranks", + "configData": { + "Goals": [ + [ + { + "Amount": 1750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 32, + "Type": 9, + "Weight": 1, + }, + ], + [ + { + "Amount": 2250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 15, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 500, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 26, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 25, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 46, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 45, + "Weight": 1, + }, + ], + [ + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 400, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 3500, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 20, + "PotionTier": 3, + "Type": 12, + "Weight": 1, + }, + { + "Amount": 20, + "EnchantTier": 3, + "Type": 13, + "Weight": 1, + }, + { + "Amount": 20, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 1750, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1750, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 500, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + ], + [ + { + "Amount": 3000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 550, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 4000, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 20, + "Type": 42, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 76, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 5, + "MaximumActiveGoals": 4, + "RankNumber": 19, + "RankUpRewards": [ + { + "_data": { + "_am": 2, + "id": "Secret Key", + }, + }, + { + "_data": { + "_am": 2, + "id": "Crystal Key", + }, + }, + { + "_data": { + "_am": 2, + "id": "Mini Chest", + }, + }, + { + "_data": { + "_am": 6, + "id": "Coins", + "tn": 8, + }, + }, + { + "_data": { + "_am": 6, + "id": "Damage", + "tn": 8, + }, + }, + { + "_data": { + "_am": 6, + "id": "Diamonds", + "tn": 7, + }, + }, + ], + "Rewards": [ + { + "Item": { + "_data": { + "_am": 2, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 20000, + "id": "Diamonds", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Coins", + "tn": 6, + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Mini Pinata", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "id": "Crystal Key", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 22500, + "id": "Diamonds", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Damage", + "tn": 6, + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 200, + "id": "Banana", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Flag Bundle", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Giant Coin Jar", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Toy Bundle", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 25000, + "id": "Diamonds", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Secret Key", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Rainbow Flag", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 200, + "id": "Orange", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Mini Lucky Block", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Tech Spinny Wheel Ticket", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Treasure Hunter", + "tn": 6, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Party Box", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Diamonds", + "tn": 6, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 175, + "id": "Rainbow", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "id": "Tech Key", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Coins", + "tn": 7, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "id": "Mini Chest", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Diamonds", + "tn": 6, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 9, + "id": "Damage", + "tn": 6, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 9, + "id": "Coins", + "tn": 6, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Potion Bundle", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Rainbow Flag", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 9, + "id": "Damage", + "tn": 6, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 9, + "id": "Coins", + "tn": 7, + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Shiny Flag", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Damage", + "tn": 7, + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Treasure Hunter", + "tn": 7, + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Enchant Bundle", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 7, + "id": "Coins", + "tn": 7, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Diamonds", + "tn": 6, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Lucky", + "tn": 7, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 150, + "id": "Rainbow", + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Mini Chest", + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Treasure Hunter", + "tn": 8, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Party Box", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Coins", + "tn": 8, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Damage", + "tn": 8, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Tech Spinny Wheel Ticket", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 45500, + "id": "Diamonds", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Coins", + "tn": 8, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Diamonds", + "tn": 7, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Lucky", + "tn": 9, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Crystal Key", + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 250, + "id": "Rainbow", + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Enchant Bundle", + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 7, + "id": "Mini Pinata", + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Coins", + "tn": 9, + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Damage", + "tn": 9, + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Treasure Hunter", + "tn": 9, + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Mini Chest", + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Charm Stone", + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Lucky", + "tn": 8, + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Tech Key", + }, + }, + "StarsRequired": 17, + }, + ], + "Title": "Mastermind", + "UnlockableEggSlots": 1, + "UnlockablePetSlots": 1, + }, + "configName": "19 | Mastermind", + "dateCreated": null, + "dateModified": "2025-07-05T23:36:13.385Z", + "hashShort": "28be01f4edf39fd8", + }, + { + "category": "Ranks", + "collection": "Ranks", + "configData": { + "Goals": [ + [ + { + "Amount": 1750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 32, + "Type": 9, + "Weight": 1, + }, + ], + [ + { + "Amount": 2250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 15, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 500, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 26, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 25, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 46, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 45, + "Weight": 1, + }, + ], + [ + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 400, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 3500, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 20, + "PotionTier": 3, + "Type": 12, + "Weight": 1, + }, + { + "Amount": 20, + "EnchantTier": 3, + "Type": 13, + "Weight": 1, + }, + { + "Amount": 20, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 1750, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1750, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 500, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + ], + [ + { + "Amount": 3000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 550, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 4000, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 20, + "Type": 42, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 76, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 6, + "MaximumActiveGoals": 4, + "RankNumber": 20, + "RankUpRewards": [ + { + "_data": { + "_am": 8, + "id": "Lucky", + "tn": 8, + }, + }, + { + "_data": { + "_am": 8, + "id": "Coins", + "tn": 8, + }, + }, + { + "_data": { + "_am": 8, + "id": "Damage", + "tn": 8, + }, + }, + { + "_data": { + "_am": 8, + "id": "Treasure Hunter", + "tn": 8, + }, + }, + { + "_data": { + "_am": 50000, + "id": "Diamonds", + }, + }, + { + "_data": { + "_am": 3, + "id": "Crystal Key", + }, + }, + { + "_data": { + "_am": 2, + "id": "Secret Key", + }, + }, + { + "_data": { + "_am": 3, + "id": "Mini Chest", + }, + }, + ], + "Rewards": [ + { + "Item": { + "_data": { + "_am": 2, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 25000, + "id": "Diamonds", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Coins", + "tn": 6, + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Mini Lucky Block", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Crystal Key", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 27500, + "id": "Diamonds", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Damage", + "tn": 6, + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 200, + "id": "Banana", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Mini Pinata", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Spinny Wheel Ticket", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Treasure Hunter", + "tn": 6, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Party Box", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Diamonds", + "tn": 6, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 200, + "id": "Rainbow", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 200, + "id": "Apple", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Flag Bundle", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Coins", + "tn": 7, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "id": "Mini Chest", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Diamonds", + "tn": 6, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Damage", + "tn": 6, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Coins", + "tn": 6, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Potion Bundle", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 18, + "id": "Giant Coin Jar", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 18, + "id": "Toy Bundle", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 32500, + "id": "Diamonds", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Secret Key", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Rainbow Flag", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Crystal Key", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Shiny Flag", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Damage", + "tn": 6, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Coins", + "tn": 7, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 225, + "id": "Rainbow", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Mini Chest", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Treasure Hunter", + "tn": 8, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Tech Key", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Coins", + "tn": 8, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Damage", + "tn": 8, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Tech Spinny Wheel Ticket", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Shiny Flag", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Damage", + "tn": 7, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 7, + "id": "Treasure Hunter", + "tn": 7, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 9, + "id": "Enchant Bundle", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Coins", + "tn": 7, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Diamonds", + "tn": 6, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Lucky", + "tn": 7, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 50000, + "id": "Diamonds", + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Coins", + "tn": 8, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Diamonds", + "tn": 7, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Lucky", + "tn": 9, + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Crystal Key", + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 275, + "id": "Rainbow", + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 13, + "id": "Enchant Bundle", + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Mini Pinata", + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Coins", + "tn": 9, + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Damage", + "tn": 9, + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Treasure Hunter", + "tn": 9, + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Mini Chest", + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Charm Stone", + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Lucky", + "tn": 8, + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Charm Stone", + }, + }, + "StarsRequired": 18, + }, + ], + "Title": "Ascendant", + "UnlockableEggSlots": 1, + "UnlockablePetSlots": 1, + }, + "configName": "20 | Ascendant ", + "dateCreated": null, + "dateModified": null, + "hashShort": null, + }, + { + "category": "Ranks", + "collection": "Ranks", + "configData": { + "Goals": [ + [ + { + "Amount": 1750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 32, + "Type": 9, + "Weight": 1, + }, + ], + [ + { + "Amount": 2250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 15, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1500, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 500, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 26, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 25, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 46, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 45, + "Weight": 1, + }, + ], + [ + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 400, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 3500, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 20, + "PotionTier": 3, + "Type": 12, + "Weight": 1, + }, + { + "Amount": 20, + "EnchantTier": 3, + "Type": 13, + "Weight": 1, + }, + { + "Amount": 20, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 1750, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1750, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 500, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + ], + [ + { + "Amount": 3000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 550, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 4000, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 20, + "Type": 42, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 76, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 6, + "MaximumActiveGoals": 4, + "RankNumber": 21, + "RankUpRewards": [ + { + "_data": { + "_am": 2, + "id": "Lucky", + "tn": 9, + }, + }, + { + "_data": { + "_am": 2, + "id": "Coins", + "tn": 9, + }, + }, + { + "_data": { + "_am": 2, + "id": "Damage", + "tn": 9, + }, + }, + { + "_data": { + "_am": 2, + "id": "Treasure Hunter", + "tn": 9, + }, + }, + { + "_data": { + "_am": 150000, + "id": "Diamonds", + }, + }, + { + "_data": { + "_am": 3, + "id": "Crystal Key", + }, + }, + { + "_data": { + "_am": 3, + "id": "Secret Key", + }, + }, + { + "_data": { + "_am": 3, + "id": "Tech Key", + }, + }, + { + "_data": { + "_am": 3, + "id": "Mini Chest", + }, + }, + ], + "Rewards": [ + { + "Item": { + "_data": { + "_am": 5, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 30000, + "id": "Diamonds", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Coins", + "tn": 7, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Mini Lucky Block", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Crystal Key", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 40000, + "id": "Diamonds", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Damage", + "tn": 7, + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 200, + "id": "Banana", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Mini Pinata", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Spinny Wheel Ticket", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Treasure Hunter", + "tn": 7, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Party Box", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Diamonds", + "tn": 7, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 250, + "id": "Rainbow", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 250, + "id": "Apple", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Flag Bundle", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Coins", + "tn": 7, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "id": "Mini Chest", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Diamonds", + "tn": 7, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Damage", + "tn": 7, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Coins", + "tn": 7, + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Potion Bundle", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Giant Coin Jar", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Toy Bundle", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 45000, + "id": "Diamonds", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Secret Key", + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 7, + "id": "Rainbow Flag", + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Crystal Key", + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 7, + "id": "Shiny Flag", + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Damage", + "tn": 7, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Coins", + "tn": 8, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 275, + "id": "Rainbow", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Mini Chest", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 7, + "id": "Treasure Hunter", + "tn": 8, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Party Box", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Coins", + "tn": 8, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Damage", + "tn": 8, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Tech Spinny Wheel Ticket", + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 7, + "id": "Shiny Flag", + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Damage", + "tn": 8, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 7, + "id": "Treasure Hunter", + "tn": 7, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Enchant Bundle", + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Coins", + "tn": 8, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Diamonds", + "tn": 7, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Lucky", + "tn": 8, + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 50000, + "id": "Diamonds", + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Coins", + "tn": 8, + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Diamonds", + "tn": 7, + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Lucky", + "tn": 9, + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Crystal Key", + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 300, + "id": "Rainbow", + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Enchant Bundle", + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Mini Pinata", + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Coins", + "tn": 9, + }, + }, + "StarsRequired": 18, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Damage", + "tn": 9, + }, + }, + "StarsRequired": 18, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Treasure Hunter", + "tn": 9, + }, + }, + "StarsRequired": 18, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Mini Chest", + }, + }, + "StarsRequired": 18, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Charm Stone", + }, + }, + "StarsRequired": 18, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Lucky", + "tn": 9, + }, + }, + "StarsRequired": 18, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Tech Key", + }, + }, + "StarsRequired": 19, + }, + ], + "Title": "Tech Titan", + "UnlockableEggSlots": 1, + "UnlockablePetSlots": 1, + }, + "configName": "21 | Tech Titan", + "dateCreated": null, + "dateModified": "2025-07-05T23:36:13.388Z", + "hashShort": "ed045e1dd040e7c1", + }, + { + "category": "Ranks", + "collection": "Ranks", + "configData": { + "Goals": [ + [ + { + "Amount": 2000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 35, + "Type": 9, + "Weight": 1, + }, + ], + [ + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 60, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 60, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 20, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 1750, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1750, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 750, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 26, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 25, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 46, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 45, + "Weight": 1, + }, + ], + [ + { + "Amount": 3000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 500, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 5000, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 30, + "PotionTier": 3, + "Type": 12, + "Weight": 1, + }, + { + "Amount": 30, + "EnchantTier": 3, + "Type": 13, + "Weight": 1, + }, + { + "Amount": 30, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 900, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 90, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + ], + [ + { + "Amount": 3500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 750, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 7500, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 25, + "Type": 42, + "Weight": 1, + }, + { + "Amount": 7, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 7, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 7, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 76, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 6, + "MaximumActiveGoals": 4, + "RankNumber": 24, + "RankUpRewards": [ + { + "_data": { + "_am": 8, + "id": "Lucky", + "tn": 9, + }, + }, + { + "_data": { + "_am": 8, + "id": "Coins", + "tn": 9, + }, + }, + { + "_data": { + "_am": 8, + "id": "Damage", + "tn": 9, + }, + }, + { + "_data": { + "_am": 8, + "id": "Diamonds", + "tn": 7, + }, + }, + { + "_data": { + "_am": 8, + "id": "Treasure Hunter", + "tn": 9, + }, + }, + { + "_data": { + "_am": 1000000, + "id": "Diamonds", + }, + }, + { + "_data": { + "_am": 7, + "id": "Crystal Key", + }, + }, + { + "_data": { + "_am": 7, + "id": "Secret Key", + }, + }, + { + "_data": { + "_am": 7, + "id": "Tech Key", + }, + }, + { + "_data": { + "_am": 10, + "id": "Mini Chest", + }, + }, + ], + "Rewards": [ + { + "Item": { + "_data": { + "_am": 280, + "id": "Watermelon", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 195, + "id": "Rainbow", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 150, + "id": "Toy Ball", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 115, + "id": "Pineapple", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 30000, + "id": "Diamonds", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 140, + "id": "Orange", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Potion Bundle", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 190, + "id": "Magnet Flag", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "Comet", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 110, + "id": "Diamonds Flag", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 225, + "id": "Orange", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Fruit Bundle", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 180, + "id": "Diamonds Flag", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 145, + "id": "Watermelon", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 65, + "id": "TNT", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 205, + "id": "Toy Bone", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 190, + "id": "Rainbow", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 110, + "id": "Magnet Flag", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 115, + "id": "Coins Flag", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Mini Lucky Block", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Damage", + "tn": 8, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 7, + "id": "Damage", + "tn": 7, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Coins", + "tn": 8, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Tech Key", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Secret Key", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Coins", + "tn": 8, + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Potion Bundle", + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 90, + "id": "Shiny Flag", + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Lucky", + "tn": 6, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Mini Chest", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 9, + "id": "Party Box", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Mini Chest", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Charm Hammer", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Seed Bag", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Diamonds", + "tn": 6, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 175, + "id": "Fortune Flag", + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 60, + "id": "Rainbow Flag", + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Party Box", + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Charm Hammer", + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Tech Spinny Wheel Ticket", + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Charm Stone", + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 7, + "id": "Mini Lucky Block", + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Large Enchant Bundle", + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 70, + "id": "Rainbow Flag", + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Lucky", + "tn": 7, + }, + }, + "StarsRequired": 18, + }, + { + "Item": { + "_data": { + "_am": 9, + "id": "Gift Bag", + }, + }, + "StarsRequired": 18, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Diamonds", + "tn": 5, + }, + }, + "StarsRequired": 18, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Breakable Sprinkler", + }, + }, + "StarsRequired": 19, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Charm Stone", + }, + }, + "StarsRequired": 19, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Coins", + "tn": 7, + }, + }, + "StarsRequired": 19, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 20, + }, + { + "Item": { + "_data": { + "id": "Secret Key", + }, + }, + "StarsRequired": 20, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Lucky", + "tn": 8, + }, + }, + "StarsRequired": 20, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Bucket O' Magic", + }, + }, + "StarsRequired": 21, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Diamonds", + "tn": 6, + }, + }, + "StarsRequired": 21, + }, + { + "Item": { + "_data": { + "_am": 55, + "id": "TNT Crate", + }, + }, + "StarsRequired": 21, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Mini Chest", + }, + }, + "StarsRequired": 22, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Tech Key", + }, + }, + "StarsRequired": 22, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 22, + }, + ], + "Title": "Tech Hacker", + "UnlockableEggSlots": 1, + "UnlockablePetSlots": 1, + }, + "configName": "24 | Tech Hacker", + "dateCreated": null, + "dateModified": "2025-07-05T23:36:13.377Z", + "hashShort": "9a585e8c1e81ca0a", + }, + { + "category": "Ranks", + "collection": "Ranks", + "configData": { + "Goals": [ + [ + { + "Amount": 2000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 35, + "Type": 9, + "Weight": 1, + }, + ], + [ + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 60, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 60, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 20, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 1750, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1750, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 750, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 26, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 25, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 46, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 45, + "Weight": 1, + }, + ], + [ + { + "Amount": 3000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 500, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 5000, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 30, + "PotionTier": 3, + "Type": 12, + "Weight": 1, + }, + { + "Amount": 30, + "EnchantTier": 3, + "Type": 13, + "Weight": 1, + }, + { + "Amount": 30, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 900, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 90, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + ], + [ + { + "Amount": 3500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 750, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 7500, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 25, + "Type": 42, + "Weight": 1, + }, + { + "Amount": 7, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 7, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 7, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 76, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 6, + "MaximumActiveGoals": 4, + "RankNumber": 23, + "RankUpRewards": [ + { + "_data": { + "_am": 5, + "id": "Diamonds", + "tn": 7, + }, + }, + { + "_data": { + "_am": 5, + "id": "Coins", + "tn": 9, + }, + }, + { + "_data": { + "_am": 5, + "id": "Damage", + "tn": 9, + }, + }, + { + "_data": { + "_am": 5, + "id": "Treasure Hunter", + "tn": 9, + }, + }, + { + "_data": { + "_am": 350000, + "id": "Diamonds", + }, + }, + { + "_data": { + "_am": 3, + "id": "Charm Chisel", + }, + }, + { + "_data": { + "_am": 6, + "id": "Secret Key", + }, + }, + { + "_data": { + "_am": 6, + "id": "Tech Key", + }, + }, + { + "_data": { + "_am": 10, + "id": "Mini Chest", + }, + }, + ], + "Rewards": [ + { + "Item": { + "_data": { + "_am": 145, + "id": "Hasty Flag", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 225, + "id": "Rainbow", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 295, + "id": "Apple", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "Flag Bundle", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Party Box", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 50000, + "id": "Diamonds", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "Basic Coin Jar", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 275, + "id": "Orange", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 170, + "id": "Strength Flag", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Enchant Bundle", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 235, + "id": "Watermelon", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 215, + "id": "Magnet Flag", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 250, + "id": "Rainbow", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 255, + "id": "Watermelon", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 155, + "id": "Toy Ball", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 175, + "id": "Banana", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 105, + "id": "TNT", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 220, + "id": "Fortune Flag", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 195, + "id": "Rainbow", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "id": "Tech Key", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Mini Chest", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Bucket O' Magic", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Large Potion Bundle", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "id": "Breakable Sprinkler", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Mini Chest", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Secret Key", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Gift Bag", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Coins", + "tn": 7, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Lucky", + "tn": 9, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "id": "Treasure Hunter", + "tn": 8, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Gift Bag", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "id": "Mini Chest", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Gift Bag", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Mini Chest", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "id": "Crystal Key", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "id": "Treasure Hunter", + "tn": 9, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Lucky", + "tn": 9, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Diamonds", + "tn": 7, + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Breakable Sprinkler", + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Charm Chisel", + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Insta Plant Capsule", + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Lucky", + "tn": 5, + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Large Enchant Bundle", + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Secret Key", + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 150000, + "id": "Diamonds", + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 18, + }, + { + "Item": { + "_data": { + "id": "Booth Slot Voucher", + }, + }, + "StarsRequired": 18, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Lucky", + "tn": 6, + }, + }, + "StarsRequired": 18, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 19, + }, + { + "Item": { + "_data": { + "_am": 100, + "id": "TNT Crate", + }, + }, + "StarsRequired": 19, + }, + { + "Item": { + "_data": { + "id": "Charm Chisel", + }, + }, + "StarsRequired": 19, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Magic Shard", + }, + }, + "StarsRequired": 20, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Damage", + "tn": 6, + }, + }, + "StarsRequired": 20, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Charm Stone", + }, + }, + "StarsRequired": 20, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Large Potion Bundle", + }, + }, + "StarsRequired": 21, + }, + { + "Item": { + "_data": { + "_am": 9, + "id": "Treasure Hunter", + "tn": 7, + }, + }, + "StarsRequired": 21, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Crystal Key", + }, + }, + "StarsRequired": 21, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Mini Chest", + }, + }, + "StarsRequired": 22, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Damage", + "tn": 8, + }, + }, + "StarsRequired": 22, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Charm Stone", + }, + }, + "StarsRequired": 22, + }, + ], + "Title": "Tech Overlord", + "UnlockableEggSlots": 1, + "UnlockablePetSlots": 1, + }, + "configName": "23 | Tech Overlord", + "dateCreated": null, + "dateModified": "2025-07-05T23:36:13.378Z", + "hashShort": "a6de127dfb493d2e", + }, + { + "category": "Ranks", + "collection": "Ranks", + "configData": { + "Goals": [ + [ + { + "Amount": 2000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 35, + "Type": 9, + "Weight": 1, + }, + ], + [ + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 60, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 60, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 20, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 1750, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1750, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 750, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 26, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 25, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 46, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 45, + "Weight": 1, + }, + ], + [ + { + "Amount": 3000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 500, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 5000, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 30, + "PotionTier": 3, + "Type": 12, + "Weight": 1, + }, + { + "Amount": 30, + "EnchantTier": 3, + "Type": 13, + "Weight": 1, + }, + { + "Amount": 30, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 900, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 90, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + ], + [ + { + "Amount": 3500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 750, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 7500, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 25, + "Type": 42, + "Weight": 1, + }, + { + "Amount": 7, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 7, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 7, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 76, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 6, + "MaximumActiveGoals": 4, + "RankNumber": 22, + "RankUpRewards": [ + { + "_data": { + "_am": 5, + "id": "Lucky", + "tn": 9, + }, + }, + { + "_data": { + "_am": 5, + "id": "Coins", + "tn": 9, + }, + }, + { + "_data": { + "_am": 5, + "id": "Damage", + "tn": 9, + }, + }, + { + "_data": { + "_am": 5, + "id": "Treasure Hunter", + "tn": 9, + }, + }, + { + "_data": { + "_am": 250000, + "id": "Diamonds", + }, + }, + { + "_data": { + "_am": 5, + "id": "Crystal Key", + }, + }, + { + "_data": { + "_am": 5, + "id": "Secret Key", + }, + }, + { + "_data": { + "_am": 5, + "id": "Tech Key", + }, + }, + { + "_data": { + "_am": 5, + "id": "Mini Chest", + }, + }, + ], + "Rewards": [ + { + "Item": { + "_data": { + "_am": 300, + "id": "Fruit Bundle", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 125, + "id": "Pineapple", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 20000, + "id": "Diamonds", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 150, + "id": "Coins Flag", + }, + }, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 160, + "id": "Hasty Flag", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Mini Chest", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 295, + "id": "Pineapple", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 100, + "id": "TNT", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 160, + "id": "Squeaky Toy", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 180, + "id": "Magnet Flag", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 120, + "id": "Diamonds Flag", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 225, + "id": "Watermelon", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 190, + "id": "Pineapple", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 205, + "id": "Apple", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 50000, + "id": "Diamonds", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 175, + "id": "Banana", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 200, + "id": "Toy Ball", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 200, + "id": "Watermelon", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Mini Lucky Block", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Damage", + "tn": 6, + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Potion Bundle", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Tech Key", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "Potion Bundle", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Lucky", + "tn": 9, + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 60000, + "id": "Diamonds", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 105, + "id": "Shiny Flag", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Treasure Hunter", + "tn": 7, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Damage", + "tn": 6, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Gift Bag", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Treasure Hunter", + "tn": 7, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Potion Bundle", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Coins", + "tn": 9, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Bucket O' Magic", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Secret Key", + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Spinny Wheel Ticket", + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "id": "Crystal Key", + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Charm Hammer", + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Mini Chest", + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "id": "Diamonds", + "tn": 7, + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Diamonds", + "tn": 6, + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Tech Spinny Wheel Ticket", + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Coins", + "tn": 8, + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Lucky", + "tn": 7, + }, + }, + "StarsRequired": 18, + }, + { + "Item": { + "_data": { + "_am": 75, + "id": "Comet", + }, + }, + "StarsRequired": 18, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 18, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Mini Chest", + }, + }, + "StarsRequired": 19, + }, + { + "Item": { + "_data": { + "_am": 125, + "id": "Shiny Flag", + }, + }, + "StarsRequired": 19, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Enchant Bundle", + }, + }, + "StarsRequired": 19, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Mini Chest", + }, + }, + "StarsRequired": 20, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Large Enchant Bundle", + }, + }, + "StarsRequired": 20, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "Seed Bag", + }, + }, + "StarsRequired": 20, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Mini Lucky Block", + }, + }, + "StarsRequired": 21, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Lucky", + "tn": 8, + }, + }, + "StarsRequired": 21, + }, + { + "Item": { + "_data": { + "_am": 100000, + "id": "Diamonds", + }, + }, + "StarsRequired": 21, + }, + { + "Item": { + "_data": { + "id": "Booth Slot Voucher", + }, + }, + "StarsRequired": 22, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Charm Chisel", + }, + }, + "StarsRequired": 22, + }, + { + "Item": { + "_data": { + "_am": 200, + "id": "Rainbow Flag", + }, + }, + "StarsRequired": 22, + }, + ], + "Title": "Tech Sentinel", + "UnlockableEggSlots": 1, + "UnlockablePetSlots": 1, + }, + "configName": "22 | Tech Sentinel", + "dateCreated": null, + "dateModified": "2025-07-05T23:36:13.375Z", + "hashShort": "1f450c9be82208b9", + }, + { + "category": "Ranks", + "collection": "Ranks", + "configData": { + "Goals": [ + [ + { + "Amount": 2250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 60, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 60, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 9, + "Weight": 1, + }, + ], + [ + { + "Amount": 3000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 70, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 70, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 30, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 900, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 90, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 26, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 25, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 46, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 45, + "Weight": 1, + }, + ], + [ + { + "Amount": 3250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 650, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 7500, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 40, + "PotionTier": 3, + "Type": 12, + "Weight": 1, + }, + { + "Amount": 40, + "EnchantTier": 3, + "Type": 13, + "Weight": 1, + }, + { + "Amount": 40, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 2500, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 2500, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1000, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 100, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + ], + [ + { + "Amount": 3750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 900, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 10000, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 42, + "Weight": 1, + }, + { + "Amount": 8, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 8, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 8, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 76, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 6, + "MaximumActiveGoals": 4, + "RankNumber": 25, + "RankUpRewards": [ + { + "_data": { + "_am": 2, + "id": "Lucky", + "tn": 10, + }, + }, + { + "_data": { + "_am": 2, + "id": "Coins", + "tn": 10, + }, + }, + { + "_data": { + "_am": 2, + "id": "Damage", + "tn": 10, + }, + }, + { + "_data": { + "_am": 2, + "id": "Diamonds", + "tn": 8, + }, + }, + { + "_data": { + "_am": 2, + "id": "Treasure Hunter", + "tn": 10, + }, + }, + { + "_data": { + "_am": 12, + "id": "Mini Chest", + }, + }, + ], + "Rewards": [ + { + "Item": { + "_data": { + "_am": 20, + "id": "Potion Bundle", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 70, + "id": "Rainbow Flag", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 120, + "id": "Hasty Flag", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 195, + "id": "Toy Bone", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 245, + "id": "Pineapple", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 220, + "id": "Strength Flag", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Enchant Bundle", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Enchant Bundle", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 155, + "id": "Squeaky Toy", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Flag Bundle", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Treasure Hunter", + "tn": 5, + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 125, + "id": "Pineapple", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 115, + "id": "Rainbow Flag", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 185, + "id": "Strength Flag", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 115, + "id": "Rainbow", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Toy Bundle", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 80, + "id": "TNT", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 70, + "id": "Rainbow Flag", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 170, + "id": "TNT", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Diamonds", + "tn": 7, + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 35, + "id": "TNT Crate", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Large Potion Bundle", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "id": "Daycare Slot Voucher", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Gift Bag", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Damage", + "tn": 8, + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Insta Plant Capsule", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 160, + "id": "Fortune Flag", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Breakable Sprinkler", + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Damage", + "tn": 9, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "id": "Crystal Key", + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Charm Stone", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Secret Key", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Magic Shard", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Mini Pinata", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Gift Bag", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Mini Lucky Block", + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Mini Chest", + }, + }, + "StarsRequired": 15, + }, { - "Desc": "Temporarily increases damage of your pets by 15%!", - "DisplayName": "Damage Potion I", - "Icon": "rbxassetid://15020966601", - "Power": 15, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, + "Item": { + "_data": { + "_am": 15, + "id": "Seed Bag", + }, }, - "Time": 600, + "StarsRequired": 15, }, { - "Desc": "Temporarily increases damage of your pets by 30%!", - "DisplayName": "Damage Potion II", - "Icon": "rbxassetid://15020968068", - "Power": 30, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, + "Item": { + "_data": { + "_am": 6, + "id": "Insta Plant Capsule", + }, }, - "Time": 1200, + "StarsRequired": 16, }, { - "Desc": "Temporarily increases damage of your pets by 45%!", - "DisplayName": "Damage Potion III", - "Icon": "rbxassetid://15020969725", - "Power": 45, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, + "Item": { + "_data": { + "_am": 25, + "id": "Party Box", + }, }, - "Time": 1800, + "StarsRequired": 16, }, { - "Desc": "Temporarily increases damage of your pets by 60%!", - "DisplayName": "Damage Potion IV", - "Icon": "rbxassetid://15020970884", - "Power": 60, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, + "Item": { + "_data": { + "_am": 15, + "id": "Coins", + "tn": 9, + }, }, - "Time": 2400, + "StarsRequired": 16, }, { - "Desc": "Temporarily increases damage of your pets by 75%!", - "DisplayName": "Damage Potion V", - "Icon": "rbxassetid://15020972861", - "Power": 75, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, + "Item": { + "_data": { + "_am": 3, + "id": "Secret Key", + }, }, - "Time": 3000, + "StarsRequired": 17, }, { - "Desc": "Temporarily increases damage of your pets by 90%!", - "DisplayName": "Damage Potion VI", - "Icon": "rbxassetid://15020974605", - "Power": 90, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, + "Item": { + "_data": { + "id": "Booth Slot Voucher", + }, }, - "Time": 3600, + "StarsRequired": 17, }, { - "Desc": "Temporarily increases damage of your pets by 105%!", - "DisplayName": "Damage Potion VII", - "Icon": "rbxassetid://15706020479", - "Power": 105, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, + "Item": { + "_data": { + "_am": 15, + "id": "Comet", + }, }, - "Time": 4200, + "StarsRequired": 17, }, { - "Desc": "Temporarily increases damage of your pets by 120%!", - "DisplayName": "Damage Potion VIII", - "Icon": "rbxassetid://15801635170", - "Power": 120, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, + "Item": { + "_data": { + "_am": 3, + "id": "Tech Key", + }, }, - "Time": 4800, + "StarsRequired": 18, }, { - "Desc": "Temporarily increases damage of your pets by 135%!", - "DisplayName": "Damage Potion IX", - "Icon": "rbxassetid://16292198048", - "Power": 135, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, + "Item": { + "_data": { + "_am": 9, + "id": "Breakable Sprinkler", + }, }, - "Time": 5400, + "StarsRequired": 18, }, { - "Desc": "Temporarily increases damage of your pets by 150%!", - "DisplayName": "Damage Potion X", - "Icon": "rbxassetid://17012809069", - "Power": 150, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, + "Item": { + "_data": { + "_am": 25, + "id": "Mini Lucky Block", + }, }, - "Time": 6000, + "StarsRequired": 18, }, { - "Desc": "Temporarily increases damage of your pets by 165%!", - "DisplayName": "Damage Potion XI", - "Icon": "rbxassetid://126967496459366", - "Power": 165, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, + "Item": { + "_data": { + "_am": 25, + "id": "Large Gift Bag", + }, }, - "Time": 6600, + "StarsRequired": 19, }, - ], - }, - "configName": "Potion | Damage", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.072Z", - "hashShort": "61d89125432a1329", - }, - { - "category": "Potions", - "collection": "Potions", - "configData": { - "BaseTier": 1, - "MaxTier": 11, - "PrimaryColor": "#FFD439", - "SecondaryColor": "#FFFF2A", - "Tiers": [ { - "Desc": "Temporarily increases Coins you earn by 20%!", - "DisplayName": "Coins Potion I", - "Icon": "rbxassetid://15020966368", - "Power": 20, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, + "Item": { + "_data": { + "_am": 3, + "id": "Diamonds", + "tn": 7, + }, }, - "Time": 600, + "StarsRequired": 19, }, { - "Desc": "Temporarily increases Coins you earn by 40%!", - "DisplayName": "Coins Potion II", - "Icon": "rbxassetid://15020969165", - "Power": 40, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, + "Item": { + "_data": { + "_am": 5, + "id": "Mini Chest", + }, }, - "Time": 1200, + "StarsRequired": 19, }, { - "Desc": "Temporarily increases Coins you earn by 60%!", - "DisplayName": "Coins Potion III", - "Icon": "rbxassetid://15020970760", - "Power": 60, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, + "Item": { + "_data": { + "_am": 15, + "id": "Fruit Bundle", + }, }, - "Time": 1800, + "StarsRequired": 20, }, { - "Desc": "Temporarily increases Coins you earn by 80%!", - "DisplayName": "Coins Potion IV", - "Icon": "rbxassetid://15020972226", - "Power": 80, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, + "Item": { + "_data": { + "_am": 2, + "id": "Bucket O' Magic", + }, }, - "Time": 2400, + "StarsRequired": 20, }, { - "Desc": "Temporarily increases Coins you earn by 100%!", - "DisplayName": "Coins Potion V", - "Icon": "rbxassetid://15020974203", - "Power": 100, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, + "Item": { + "_data": { + "_am": 6, + "id": "Lucky", + "tn": 8, + }, }, - "Time": 3000, + "StarsRequired": 20, }, { - "Desc": "Temporarily increases Coins you earn by 120%!", - "DisplayName": "Coins Potion VI", - "Icon": "rbxassetid://15020975743", - "Power": 120, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, + "Item": { + "_data": { + "_am": 9, + "id": "Diamonds", + "tn": 6, + }, }, - "Time": 3600, + "StarsRequired": 22, }, { - "Desc": "Temporarily increases Coins you earn by 140%!", - "DisplayName": "Coins Potion VII", - "Icon": "rbxassetid://15706015819", - "Power": 140, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, + "Item": { + "_data": { + "_am": 25, + "id": "Damage", + "tn": 7, + }, }, - "Time": 4200, + "StarsRequired": 22, }, { - "Desc": "Temporarily increases Coins you earn by 160%!", - "DisplayName": "Coins Potion VIII", - "Icon": "rbxassetid://15801634837", - "Power": 160, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, + "Item": { + "_data": { + "id": "Charm Chisel", + }, }, - "Time": 4800, + "StarsRequired": 22, }, { - "Desc": "Temporarily increases Coins you earn by 180%!", - "DisplayName": "Coins Potion IX", - "Icon": "rbxassetid://16292196849", - "Power": 180, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, + "Item": { + "_data": { + "_am": 15, + "id": "Spinny Wheel Ticket", + }, }, - "Time": 5400, + "StarsRequired": 23, }, { - "Desc": "Temporarily increases Coins you earn by 200%!", - "DisplayName": "Coins Potion X", - "Icon": "rbxassetid://17039608371", - "Power": 200, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, + "Item": { + "_data": { + "_am": 25, + "id": "Magic Shard", + }, }, - "Time": 6000, + "StarsRequired": 23, }, { - "Desc": "Temporarily increases Coins you earn by 220%!", - "DisplayName": "Coins Potion XI", - "Icon": "rbxassetid://124764535484261", - "Power": 220, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, + "Item": { + "_data": { + "_am": 10, + "id": "Diamonds", + "tn": 8, + }, }, - "Time": 6600, + "StarsRequired": 23, }, ], + "Title": "Omniscient", + "UnlockableEggSlots": 1, + "UnlockablePetSlots": 1, }, - "configName": "Potion | Coins", + "configName": "25 | Omniscient", "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.078Z", - "hashShort": "0be00e6bde398e4a", + "dateModified": "2025-07-05T23:36:13.711Z", + "hashShort": "6fd1971318e36fc7", }, { - "category": "Potions", - "collection": "Potions", + "category": "Ranks", + "collection": "Ranks", "configData": { - "BaseTier": 1, - "MaxTier": 9, - "PrimaryColor": "#3CDBFF", - "SecondaryColor": "#2FD9FF", - "Tiers": [ - { - "Desc": "Temporarily increases Diamonds you earn by 10%!", - "DisplayName": "Diamonds Potion I", - "Icon": "rbxassetid://15549792977", - "Power": 10, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, + "Goals": [ + [ + { + "Amount": 2250, + "Type": 21, + "Weight": 1, }, - "Time": 600, - }, + { + "Amount": 2250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 2250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 60, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 60, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 9, + "Weight": 1, + }, + ], + [ + { + "Amount": 3000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 70, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 70, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 30, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 2000, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 900, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 90, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 26, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 25, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 46, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 45, + "Weight": 1, + }, + ], + [ + { + "Amount": 3250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 650, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 7500, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 40, + "PotionTier": 3, + "Type": 12, + "Weight": 1, + }, + { + "Amount": 40, + "EnchantTier": 3, + "Type": 13, + "Weight": 1, + }, + { + "Amount": 40, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 2500, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 2500, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1000, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 100, + "Type": 41, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + ], + [ + { + "Amount": 3750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3750, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 900, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 10000, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 40, + "Type": 42, + "Weight": 1, + }, + { + "Amount": 8, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 8, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 8, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 76, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 6, + "MaximumActiveGoals": 4, + "RankNumber": 26, + "RankUpRewards": [ { - "Desc": "Temporarily increases Diamonds you earn by 25%!", - "DisplayName": "Diamonds Potion II", - "Icon": "rbxassetid://15549792909", - "Power": 25, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, + "_data": { + "_am": 5, + "id": "Lucky", + "tn": 10, }, - "Time": 1200, }, { - "Desc": "Temporarily increases Diamonds you earn by 40%!", - "DisplayName": "Diamonds Potion III", - "Icon": "rbxassetid://15020970352", - "Power": 40, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, + "_data": { + "_am": 5, + "id": "Coins", + "tn": 10, + }, + }, + { + "_data": { + "_am": 5, + "id": "Damage", + "tn": 10, }, - "Time": 1800, }, { - "Desc": "Temporarily increases Diamonds you earn by 50%!", - "DisplayName": "Diamonds Potion IV", - "Icon": "rbxassetid://15020971674", - "Power": 50, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, + "_data": { + "_am": 5, + "id": "Diamonds", + "tn": 8, }, - "Time": 2400, }, { - "Desc": "Temporarily increases Diamonds you earn by 60%!", - "DisplayName": "Diamonds Potion V", - "Icon": "rbxassetid://15706023136", - "Power": 60, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, + "_data": { + "_am": 5, + "id": "Treasure Hunter", + "tn": 10, }, - "Time": 3000, }, { - "Desc": "Temporarily increases Diamonds you earn by 70%!", - "DisplayName": "Diamonds Potion VI", - "Icon": "rbxassetid://15801649326", - "Power": 70, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, + "_data": { + "_am": 100, + "id": "Diamonds", }, - "Time": 3600, }, { - "Desc": "Temporarily increases Diamonds you earn by 80%!", - "DisplayName": "Diamonds Potion VII", - "Icon": "rbxassetid://16443030291", - "Power": 80, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, + "_data": { + "_am": 20, + "id": "Mini Chest", }, - "Time": 4200, }, { - "Desc": "Temporarily increases Diamonds you earn by 90%!", - "DisplayName": "Diamonds Potion VIII", - "Icon": "rbxassetid://17015603578", - "Power": 90, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, + "_data": { + "_am": 12, + "id": "Tech Spinny Wheel Ticket", }, - "Time": 4800, }, { - "Desc": "Temporarily increases Diamonds you earn by 100%!", - "DisplayName": "Diamonds Potion IX", - "Icon": "rbxassetid://140129810869965", - "Power": 100, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, + "_data": { + "_am": 4, + "id": "Secret Key", + }, + }, + { + "_data": { + "_am": 12, + "id": "Tech Key", }, - "Time": 5400, }, ], - }, - "configName": "Potion | Diamonds", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.070Z", - "hashShort": "5d6514f0f8176498", - }, - { - "category": "Potions", - "collection": "Potions", - "configData": { - "BaseTier": 1, - "MaxTier": 11, - "PrimaryColor": "#3CFF5C", - "SecondaryColor": "#7CFF2B", - "Tiers": [ + "Rewards": [ { - "Desc": "Temporarily increases your egg luck by 25%!", - "DisplayName": "Lucky Eggs Potion I", - "Icon": "rbxassetid://15020967109", - "Power": 25, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, + "Item": { + "_data": { + "_am": 100000, + "id": "Diamonds", + }, }, - "Time": 600, + "StarsRequired": 5, }, { - "Desc": "Temporarily increases your egg luck by 50%!", - "DisplayName": "Lucky Eggs Potion II", - "Icon": "rbxassetid://15020968380", - "Power": 50, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, + "Item": { + "_data": { + "_am": 4, + "id": "Treasure Hunter", + "tn": 5, + }, }, - "Time": 1200, + "StarsRequired": 5, }, { - "Desc": "Temporarily increases your egg luck by 75%!", - "DisplayName": "Lucky Eggs Potion III", - "Icon": "rbxassetid://15020970040", - "Power": 75, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, + "Item": { + "_data": { + "_am": 30, + "id": "Potion Bundle", + }, }, - "Time": 1800, + "StarsRequired": 5, }, { - "Desc": "Temporarily increases your egg luck by 100%!", - "DisplayName": "Lucky Eggs Potion IV", - "Icon": "rbxassetid://15020971283", - "Power": 100, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, + "Item": { + "_data": { + "_am": 200, + "id": "Apple", + }, }, - "Time": 2400, + "StarsRequired": 5, }, { - "Desc": "Temporarily increases your egg luck by 125%!", - "DisplayName": "Lucky Eggs Potion V", - "Icon": "rbxassetid://15020973259", - "Power": 125, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, + "Item": { + "_data": { + "_am": 250, + "id": "Orange", + }, }, - "Time": 3000, + "StarsRequired": 6, }, { - "Desc": "Temporarily increases your egg luck by 150%!", - "DisplayName": "Lucky Eggs Potion VI", - "Icon": "rbxassetid://15020975038", - "Power": 150, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, + "Item": { + "_data": { + "_am": 250, + "id": "Diamonds Flag", + }, }, - "Time": 3600, + "StarsRequired": 6, }, { - "Desc": "Temporarily increases your egg luck by 175%!", - "DisplayName": "Lucky Eggs Potion VII", - "Icon": "rbxassetid://15706025686", - "Power": 175, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, + "Item": { + "_data": { + "_am": 6, + "id": "Toy Bundle", + }, }, - "Time": 4200, + "StarsRequired": 6, }, { - "Desc": "Temporarily increases your egg luck by 200%!", - "DisplayName": "Lucky Eggs Potion VIII", - "Icon": "rbxassetid://15801635964", - "Power": 200, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, + "Item": { + "_data": { + "_am": 200, + "id": "Rainbow", + }, }, - "Time": 4800, + "StarsRequired": 6, }, { - "Desc": "Temporarily increases your egg luck by 225%!", - "DisplayName": "Lucky Eggs Potion IX", - "Icon": "rbxassetid://16292197771", - "Power": 225, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, + "Item": { + "_data": { + "_am": 200, + "id": "Fortune Flag", + }, }, - "Time": 5400, + "StarsRequired": 7, }, { - "Desc": "Temporarily increases your egg luck by 250%!", - "DisplayName": "Lucky Eggs Potion X", - "Icon": "rbxassetid://17012808777", - "Power": 250, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, + "Item": { + "_data": { + "_am": 30, + "id": "Toy Bundle", + }, }, - "Time": 6000, + "StarsRequired": 7, }, { - "Desc": "Temporarily increases your egg luck by 275%!", - "DisplayName": "Lucky Eggs Potion XI", - "Icon": "rbxassetid://118954624181479", - "Power": 275, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, + "Item": { + "_data": { + "_am": 125, + "id": "Toy Bone", + }, }, - "Time": 6600, + "StarsRequired": 7, }, - ], - }, - "configName": "Potion | Lucky", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.074Z", - "hashShort": "b21a8bab02f73876", - }, - { - "category": "Potions", - "collection": "Potions", - "configData": { - "BaseTier": 1, - "MaxTier": 11, - "PrimaryColor": "#FF743D", - "SecondaryColor": "#FF7029", - "Tiers": [ { - "Desc": "Temporarily increases your chances of getting random item drops by 10%!", - "DisplayName": "Treasure Hunter Potion I", - "Icon": "rbxassetid://15020966853", - "Power": 10, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, + "Item": { + "_data": { + "_am": 25, + "id": "Enchant Bundle", + }, }, - "Time": 600, + "StarsRequired": 7, }, { - "Desc": "Temporarily increases your chances of getting random item drops by 20%!", - "DisplayName": "Treasure Hunter Potion II", - "Icon": "rbxassetid://15020968249", - "Power": 20, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, + "Item": { + "_data": { + "_am": 300, + "id": "Banana", + }, }, - "Time": 1200, + "StarsRequired": 8, }, { - "Desc": "Temporarily increases your chances of getting random item drops by 30%!", - "DisplayName": "Treasure Hunter Potion III", - "Icon": "rbxassetid://15020969840", - "Power": 30, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, + "Item": { + "_data": { + "_am": 150, + "id": "Fortune Flag", + }, }, - "Time": 1800, + "StarsRequired": 8, }, { - "Desc": "Temporarily increases your chances of getting random item drops by 40%!", - "DisplayName": "Treasure Hunter Potion IV", - "Icon": "rbxassetid://15020971115", - "Power": 40, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, + "Item": { + "_data": { + "_am": 250, + "id": "Coins Flag", + }, }, - "Time": 2400, + "StarsRequired": 8, }, { - "Desc": "Temporarily increases your chances of getting random item drops by 45%!", - "DisplayName": "Treasure Hunter Potion V", - "Icon": "rbxassetid://15020973089", - "Power": 45, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, + "Item": { + "_data": { + "_am": 150, + "id": "Rainbow Flag", + }, }, - "Time": 3000, + "StarsRequired": 8, }, { - "Desc": "Temporarily increases your chances of getting random item drops by 50%!", - "DisplayName": "Treasure Hunter Potion VI", - "Icon": "rbxassetid://15020974780", - "Power": 50, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, + "Item": { + "_data": { + "_am": 200, + "id": "Watermelon", + }, }, - "Time": 3600, + "StarsRequired": 9, }, { - "Desc": "Temporarily increases your chances of getting random item drops by 55%!", - "DisplayName": "Treasure Hunter Potion VII", - "Icon": "rbxassetid://15706029032", - "Power": 55, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, + "Item": { + "_data": { + "_am": 30, + "id": "Party Box", + }, }, - "Time": 4200, + "StarsRequired": 9, }, { - "Desc": "Temporarily increases your chances of getting random item drops by 60%!", - "DisplayName": "Treasure Hunter Potion VIII", - "Icon": "rbxassetid://15801635325", - "Power": 60, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, + "Item": { + "_data": { + "_am": 75, + "id": "Rainbow Flag", + }, }, - "Time": 4800, + "StarsRequired": 9, }, { - "Desc": "Temporarily increases your chances of getting random item drops by 70%!", - "DisplayName": "Treasure Hunter Potion IX", - "Icon": "rbxassetid://16292197920", - "Power": 70, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, + "Item": { + "_data": { + "_am": 3, + "id": "Charm Hammer", + }, }, - "Time": 5400, + "StarsRequired": 9, }, { - "Desc": "Temporarily increases your chances of getting random item drops by 75%!", - "DisplayName": "Treasure Hunter Potion X", - "Icon": "rbxassetid://17012808910", - "Power": 75, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, + "Item": { + "_data": { + "_am": 40, + "id": "TNT Crate", + }, }, - "Time": 6000, + "StarsRequired": 10, }, { - "Desc": "Temporarily increases your chances of getting random item drops by 80%!", - "DisplayName": "Treasure Hunter Potion XI", - "Icon": "rbxassetid://126996396522981", - "Power": 80, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, + "Item": { + "_data": { + "_am": 3, + "id": "Secret Key", + }, }, - "Time": 6600, + "StarsRequired": 10, }, - ], - }, - "configName": "Potion | Treasure Hunter", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.081Z", - "hashShort": "eabd91abc3a10b17", - }, - { - "category": "Potions", - "collection": "Potions", - "configData": { - "BaseTier": 1, - "MaxTier": 3, - "PrimaryColor": "#FFFFFF", - "SecondaryColor": "#E5E5E5", - "Tiers": [ { - "Desc": "Temporarily increases player and pet speed by 25%!", - "DisplayName": "Speed Potion I", - "Icon": "rbxassetid://15020966003", - "Power": 25, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, + "Item": { + "_data": { + "_am": 20, + "id": "Seed Bag", + }, }, - "Time": 900, + "StarsRequired": 10, }, { - "Desc": "Temporarily increases player and pet speed by 40%!", - "DisplayName": "Speed Potion II", - "Icon": "rbxassetid://15020967803", - "Power": 40, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, + "Item": { + "_data": { + "_am": 3, + "id": "Lucky", + "tn": 8, + }, }, - "Time": 1800, + "StarsRequired": 10, }, { - "Desc": "Temporarily increases player and pet speed by 55%!", - "DisplayName": "Speed Potion III", - "Icon": "rbxassetid://15020969274", - "Power": 55, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, + "Item": { + "_data": { + "id": "Booth Slot Voucher", + }, }, - "Time": 2700, + "StarsRequired": 11, }, - ], - }, - "configName": "Potion | Walkspeed", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.079Z", - "hashShort": "f06ca7ae557fa584", - }, - { - "category": "Potions", - "collection": "Potions", - "configData": { - "BaseTier": 1, - "MaxTier": 2, - "PreventUpgrade": true, - "PrimaryColor": "#FFF6D3", - "SecondaryColor": "#FDFFCE", - "Tiers": [ { - "Desc": "Temporarily increases: -- Coins by 200% -- Diamonds by 50% -- Damage by 100% -- Egg luck by 300% -- Item drops by 100% -- Walkspeed by 50%!", - "DisplayName": "The Cocktail", - "Icon": "rbxassetid://15245389767", - "Power": 1, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, + "Item": { + "_data": { + "_am": 25, + "id": "Diamonds", + "tn": 6, + }, }, - "Time": 1800, + "StarsRequired": 11, }, { - "Desc": "Temporarily increases: -- Coins by 300% -- Diamonds by 100% -- Damage by 150% -- Egg luck by 400% -- Item drops by 150% -- Walkspeed by 75%!", - "DisplayName": "The Cocktail II", - "Icon": "rbxassetid://88218761146440", - "Power": 2, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, + "Item": { + "_data": { + "_am": 10, + "id": "Large Gift Bag", + }, }, - "Time": 1800, + "StarsRequired": 11, }, - ], - }, - "configName": "Potion | The Cocktail", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.077Z", - "hashShort": "9024e6697fb6c4ef", - }, - { - "category": "Potions", - "collection": "Potions", - "configData": { - "BaseTier": 1, - "MaxTier": 1, - "PrimaryColor": "#942AFF", - "SecondaryColor": "#BC21FF", - "Tiers": [ { - "Desc": "Temporarily increases your active huge luck by 300%!", - "DisplayName": "Huge Potion", - "Icon": "rbxassetid://16011869296", - "Power": 1, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, + "Item": { + "_data": { + "_am": 8, + "id": "Spinny Wheel Ticket", + }, }, - "Time": 3600, + "StarsRequired": 12, }, - ], - }, - "configName": "Potion | Huge", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.081Z", - "hashShort": "404e792924608b98", - }, - ], - "status": "ok", -} -`; - -exports[`Pet Simulator Public Live API Test RandomEvents shape 1`] = ` -{ - "data": [ - { - "category": "RandomEvents", - "collection": "RandomEvents", - "configData": { - "AllowInInstances": false, - "AllowInZones": true, - "AllowMultiple": true, - "AreaWhitelist": { - "Main": true, - "Main_Ice": true, - "Main_Magma": true, - }, - "BreakingRequirement": 5, - "Chance": 42.5, - "Color": "#FFDC13", - "Duration": 600, - "Icon": "rbxassetid://15000811448", - "Name": "Coin Jar", - "PlaytimeRequirement": 5, - }, - "configName": "RandomEvent | CoinJar", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.053Z", - "hashShort": "4d930d91a8380d05", - }, - { - "category": "RandomEvents", - "collection": "RandomEvents", - "configData": { - "AllowInInstances": false, - "AllowInZones": true, - "AllowMultiple": true, - "AreaWhitelist": { - "Main": true, - "Main_Ice": true, - "Main_Magma": true, - }, - "BreakingRequirement": 5, - "Chance": 42.5, - "Color": "#2CFFFF", - "Duration": 600, - "Icon": "rbxassetid://15000811043", - "Name": "Comet", - "PlaytimeRequirement": 5, - }, - "configName": "RandomEvent | Comet", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.065Z", - "hashShort": "8531ecc0ad64e68e", - }, - { - "category": "RandomEvents", - "collection": "RandomEvents", - "configData": { - "AllowInInstances": false, - "AllowInZones": true, - "AllowMultiple": true, - "AreaWhitelist": { - "Main": true, - "Main_Ice": true, - "Main_Magma": true, - }, - "BreakingRequirement": 5, - "Chance": 5, - "Color": "#FFDC13", - "Duration": 600, - "Icon": "rbxassetid://15938616489", - "MinimumZone": 70, - "Name": "Piñata", - "PlaytimeRequirement": 5, - }, - "configName": "RandomEvent | Pinata", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.066Z", - "hashShort": "eaeeceed83489bd1", - }, - { - "category": "RandomEvents", - "collection": "RandomEvents", - "configData": { - "AllowInInstances": false, - "AllowInZones": true, - "AllowMultiple": true, - "AreaWhitelist": { - "Main": true, - "Main_Ice": true, - "Main_Magma": true, - }, - "BreakingRequirement": 5, - "Chance": 10, - "Color": "#2CFFFF", - "Duration": 120, - "Icon": "rbxassetid://15938616838", - "MinimumZone": 55, - "Name": "Lucky Block", - "PlaytimeRequirement": 5, - }, - "configName": "RandomEvent | LuckyBlock", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.063Z", - "hashShort": "0f2f449ae4bc6a4e", - }, - { - "category": "RandomEvents", - "collection": "RandomEvents", - "configData": { - "AllowInInstances": false, - "AllowInZones": true, - "AllowMultiple": true, - "AreaWhitelist": { - "Main": true, - "Main_Ice": true, - "Main_Magma": true, - }, - "BreakingRequirement": 5, - "Chance": 10, - "Color": "#FFDC13", - "Duration": 600, - "Icon": "rbxassetid://16717382310", - "Name": "Item Jar", - "PlaytimeRequirement": 5, - }, - "configName": "RandomEvent | ItemJar", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.059Z", - "hashShort": "3f4851fc565b14ec", - }, - { - "category": "RandomEvents", - "collection": "RandomEvents", - "configData": { - "AllowInInstances": false, - "AllowInZones": true, - "AllowMultiple": false, - "AreaWhitelist": { - "Main": true, - "Main_Ice": true, - "Main_Magma": true, - }, - "BreakingRequirement": 5, - "Chance": 0, - "Color": "#FFDC13", - "Duration": 600, - "Icon": "rbxassetid://17014122346", - "MinimumZone": null, - "Name": "Giant Exclusive Egg", - "PlaytimeRequirement": 5, - }, - "configName": "RandomEvent | GiantExclusiveEgg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.066Z", - "hashShort": "48f71f8f78ea8fe6", - }, - ], - "status": "ok", -} -`; - -exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` -{ - "data": [ - { - "category": "Ranks", - "collection": "Ranks", - "configData": { - "Goals": [ - [ - { - "Amount": 25, - "Type": 1, - "Weight": 2, + { + "Item": { + "_data": { + "_am": 20, + "id": "Damage", + "tn": 8, + }, }, - { - "Amount": 5, - "Type": 9, - "Weight": 1, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Diamonds", + "tn": 5, + }, }, - { - "Amount": 50, - "CurrencyID": "Diamonds", - "Type": 7, - "Weight": 1, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Breakable Sprinkler", + }, }, - ], - [ - { - "Amount": 50, - "Type": 1, - "Weight": 1, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "id": "Mini Pinata", + }, }, - { - "Amount": 100, - "CurrencyID": "Diamonds", - "Type": 7, - "Weight": 1, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Gift Bag", + }, }, - { - "Amount": 15, - "Type": 3, - "Weight": 1, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Coins", + "tn": 9, + }, }, - ], - ], - "MaxEnchantsEquipped": 1, - "MaximumActiveGoals": 2, - "RankNumber": 1, - "Rewards": [ + "StarsRequired": 14, + }, { "Item": { "_data": { - "_am": 3, - "id": "TNT", + "_am": 20, + "id": "Large Gift Bag", }, }, - "StarsRequired": 1, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 50, - "id": "Diamonds", + "_am": 100, + "id": "TNT Crate", }, }, - "StarsRequired": 1, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 150, - "id": "Diamonds", + "_am": 6, + "id": "Insta Plant Capsule", }, }, - "StarsRequired": 1, + "StarsRequired": 15, }, { "Item": { "_data": { - "id": "Walkspeed", - "tn": 1, + "_am": 6, + "id": "Lucky", + "tn": 7, }, }, - "StarsRequired": 1, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Magic Shard", + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Treasure Hunter", + "tn": 6, + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Mini Chest", + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Magic Shard", + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Large Potion Bundle", + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Mini Chest", + }, + }, + "StarsRequired": 18, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Charm Stone", + }, + }, + "StarsRequired": 19, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Crystal Key", + }, + }, + "StarsRequired": 19, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Spinny Wheel Ticket", + }, + }, + "StarsRequired": 19, }, { "Item": { "_data": { + "_am": 20, "id": "Damage", - "tn": 1, + "tn": 7, }, }, - "StarsRequired": 1, + "StarsRequired": 20, }, { "Item": { "_data": { - "id": "Strong Pets", - "tn": 1, + "_am": 20, + "id": "Coins", + "tn": 7, }, }, - "StarsRequired": 1, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 300, + "_am": 20, "id": "Diamonds", + "tn": 7, }, }, - "StarsRequired": 1, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 2, + "_am": 12, + "id": "Mini Pinata", + }, + }, + "StarsRequired": 21, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Spinny Wheel Ticket", + }, + }, + "StarsRequired": 21, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Seed Bag", + }, + }, + "StarsRequired": 21, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Charm Stone", + }, + }, + "StarsRequired": 22, + }, + { + "Item": { + "_data": { + "_am": 12, "id": "Coins", - "tn": 1, + "tn": 9, }, }, - "StarsRequired": 2, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 3, - "id": "Damage", - "tn": 2, + "id": "Charm Hammer", }, }, - "StarsRequired": 4, + "StarsRequired": 22, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Lucky", + "tn": 10, + }, + }, + "StarsRequired": 23, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Mini Chest", + }, + }, + "StarsRequired": 23, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Basic Item Jar", + }, + }, + "StarsRequired": 23, }, ], - "Title": "Noob", - "UnlockableEggSlots": 2, - "UnlockablePetSlots": 3, + "Title": "Celestial", + "UnlockableEggSlots": 1, + "UnlockablePetSlots": 1, }, - "configName": "1 | Noob", + "configName": "26 | Celestial", "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.396Z", - "hashShort": "6e513e59b90ba070", + "dateModified": "2026-05-02T17:31:49.635Z", + "hashShort": "1c29417d1f760e61", }, { "category": "Ranks", @@ -143455,254 +182146,362 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 50, - "Type": 1, + "Amount": 2500, + "Type": 21, "Weight": 1, }, { - "Amount": 35, - "BreakableType": "Coin", - "Type": 1, + "Amount": 2500, + "Type": 21, "Weight": 1, }, { - "Amount": 20, - "BreakableType": "Safe", - "Type": 1, + "Amount": 2500, + "Type": 21, "Weight": 1, }, { - "Amount": 25, - "BreakableType": "Present", - "Type": 1, + "Amount": 65, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 65, + "Type": 15, "Weight": 1, }, { "Amount": 40, + "Type": 9, + "Weight": 1, + }, + ], + [ + { + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 40, + "Amount": 3250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 3250, "Type": 21, "Weight": 1, }, + { + "Amount": 80, + "Type": 14, + "Weight": 1, + }, + { + "Amount": 80, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 40, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, { "Amount": 5, - "Type": 9, + "Type": 44, "Weight": 1, }, { - "Amount": 100, - "CurrencyID": "Diamonds", - "Type": 7, + "Amount": 5, + "Type": 43, "Weight": 1, }, { - "Amount": 1, - "Type": 14, + "Amount": 5, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 39, "Weight": 1, }, { "Amount": 1, - "Type": 15, + "Type": 76, "Weight": 1, }, - ], - [ { - "Amount": 125, - "Type": 1, + "Amount": 2250, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 2250, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1000, + "Type": 40, "Weight": 1, }, { "Amount": 100, - "BreakableType": "Coin", - "Type": 1, + "Type": 41, "Weight": 1, }, { "Amount": 50, - "BreakableType": "Safe", - "Type": 1, + "Type": 26, "Weight": 1, }, { - "Amount": 65, - "BreakableType": "Present", - "Type": 1, + "Amount": 50, + "Type": 25, "Weight": 1, }, { - "Amount": 70, + "Amount": 75, + "Type": 46, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 45, + "Weight": 1, + }, + ], + [ + { + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 70, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 15, + "Amount": 3500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 750, "Type": 9, "Weight": 1, }, { - "Amount": 150, + "Amount": 9000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 3, - "Type": 14, + "Amount": 50, + "PotionTier": 3, + "Type": 12, "Weight": 1, }, { - "Amount": 3, - "Type": 15, + "Amount": 50, + "EnchantTier": 3, + "Type": 13, "Weight": 1, }, { - "Amount": 3, - "PotionTier": 1, + "Amount": 50, + "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 3, - "Type": 35, + "Amount": 6, + "Type": 44, "Weight": 1, }, { - "Amount": 30, - "Type": 20, + "Amount": 6, + "Type": 43, "Weight": 1, }, { - "Amount": 1, - "Type": 6, + "Amount": 6, + "Type": 38, "Weight": 1, }, { - "Amount": 1, - "Type": 6, + "Amount": 6, + "Type": 37, "Weight": 1, }, { - "Amount": 1, - "Type": 6, + "Amount": 6, + "Type": 39, "Weight": 1, }, { - "Amount": 8, - "Type": 26, + "Amount": 2750, + "Type": 20, "Weight": 1, }, { - "Amount": 5, - "Type": 25, + "Amount": 2750, + "Type": 20, "Weight": 1, }, - ], - [ { - "Amount": 250, - "Type": 1, + "Amount": 1200, + "Type": 40, "Weight": 1, }, { - "Amount": 150, - "BreakableType": "Coin", - "Type": 1, + "Amount": 120, + "Type": 41, "Weight": 1, }, { - "Amount": 85, - "BreakableType": "Safe", - "Type": 1, + "Amount": 1, + "Type": 6, "Weight": 1, }, { - "Amount": 100, - "BreakableType": "Present", - "Type": 1, + "Amount": 1, + "Type": 6, "Weight": 1, }, { - "Amount": 125, + "Amount": 1, + "Type": 6, + "Weight": 1, + }, + ], + [ + { + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 125, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 25, + "Amount": 4000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1000, "Type": 9, "Weight": 1, }, { - "Amount": 200, + "Amount": 11000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 1, - "Type": 8, + "Amount": 50, + "Type": 42, "Weight": 1, }, { - "Amount": 40, - "Type": 20, + "Amount": 8, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 8, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 8, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 76, "Weight": 1, }, ], ], - "MaxEnchantsEquipped": 1, - "MaximumActiveGoals": 3, - "RankNumber": 2, + "MaxEnchantsEquipped": 6, + "MaximumActiveGoals": 4, + "RankNumber": 27, "RankUpRewards": [ { "_data": { - "_am": 250000, - "id": "Coins", + "_am": 100, + "id": "Diamonds", }, }, { "_data": { - "_am": 500, - "id": "Diamonds", + "_am": 20, + "id": "Large Enchant Bundle", }, }, { "_data": { - "id": "Tap Power", - "tn": 1, + "_am": 40, + "id": "Large Potion Bundle", }, }, { "_data": { - "_am": 2, - "id": "Coins", - "tn": 1, + "_am": 20, + "id": "Tech Spinny Wheel Ticket", }, }, { "_data": { - "_am": 2, - "id": "Damage", - "tn": 1, + "_am": 4, + "id": "Secret Key", + }, + }, + { + "_data": { + "_am": 20, + "id": "Tech Key", + }, + }, + { + "_data": { + "_am": 10, + "id": "Mini Chest", + }, + }, + { + "_data": { + "_am": 10, + "id": "Lucky", + "tn": 10, }, }, { "_data": { + "_am": 10, "id": "Diamonds", - "tn": 1, + "tn": 8, }, }, ], @@ -143710,875 +182509,562 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Gift Bag", + "_am": 40, + "id": "Coins", + "tn": 5, }, }, - "StarsRequired": 1, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 400, - "id": "Diamonds", + "_am": 200, + "id": "TNT", }, }, - "StarsRequired": 1, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 3, - "id": "Lucky", - "tn": 1, + "_am": 50, + "id": "Basic Coin Jar", }, }, - "StarsRequired": 1, + "StarsRequired": 5, }, { "Item": { "_data": { - "id": "Tap Power", - "tn": 1, + "_am": 125, + "id": "TNT Crate", }, }, - "StarsRequired": 1, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 3, - "id": "Damage", - "tn": 1, + "_am": 250, + "id": "Magnet Flag", }, }, - "StarsRequired": 2, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 500, - "id": "Diamonds", + "_am": 300, + "id": "Orange", }, }, - "StarsRequired": 2, + "StarsRequired": 6, }, { "Item": { "_data": { - "id": "Magnet Flag", + "_am": 250, + "id": "Squeaky Toy", }, }, - "StarsRequired": 2, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 3, - "id": "Coins", - "tn": 1, + "_am": 40, + "id": "Toy Bundle", }, }, - "StarsRequired": 2, + "StarsRequired": 6, }, { "Item": { "_data": { - "id": "Treasure Hunter", - "tn": 2, + "_am": 40, + "id": "Potion Bundle", }, }, - "StarsRequired": 3, + "StarsRequired": 7, }, { "Item": { "_data": { - "id": "Diamonds", - "tn": 1, + "_am": 25, + "id": "Large Potion Bundle", }, }, - "StarsRequired": 3, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 3, - "id": "Toy Bone", + "_am": 150, + "id": "Shiny Flag", }, }, - "StarsRequired": 3, + "StarsRequired": 7, }, { "Item": { "_data": { - "id": "Hasty Flag", + "_am": 200, + "id": "Diamonds Flag", }, }, - "StarsRequired": 4, + "StarsRequired": 7, }, - ], - "Title": "Beginner", - "UnlockableEggSlots": 2, - "UnlockablePetSlots": 3, - }, - "configName": "2 | Beginner", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.395Z", - "hashShort": "ebf3490748ce19ec", - }, - { - "category": "Ranks", - "collection": "Ranks", - "configData": { - "Goals": [ - [ - { - "Amount": 200, - "Type": 1, - "Weight": 1, - }, - { - "Amount": 50, - "BreakableType": "Safe", - "Type": 1, - "Weight": 1, - }, - { - "Amount": 100, - "BreakableType": "Coin", - "Type": 1, - "Weight": 1, - }, - { - "Amount": 25, - "BreakableType": "Present", - "Type": 1, - "Weight": 1, - }, - { - "Amount": 150, - "Type": 21, - "Weight": 1, - }, - { - "Amount": 150, - "Type": 21, - "Weight": 1, - }, - { - "Amount": 200, - "CurrencyID": "Diamonds", - "Type": 7, - "Weight": 1, - }, - { - "Amount": 3, - "Type": 14, - "Weight": 1, - }, - { - "Amount": 3, - "Type": 15, - "Weight": 1, - }, - ], - [ - { - "Amount": 300, - "Type": 1, - "Weight": 1, - }, - { - "Amount": 75, - "BreakableType": "Present", - "Type": 1, - "Weight": 1, - }, - { - "Amount": 125, - "BreakableType": "Safe", - "Type": 1, - "Weight": 1, - }, - { - "Amount": 175, - "Type": 21, - "Weight": 2, - }, - { - "Amount": 250, - "CurrencyID": "Diamonds", - "Type": 7, - "Weight": 1, - }, - { - "Amount": 4, - "Type": 14, - "Weight": 1, - }, - { - "Amount": 4, - "Type": 15, - "Weight": 1, - }, - { - "Amount": 4, - "PotionTier": 1, - "Type": 34, - "Weight": 1, - }, - { - "Amount": 4, - "Type": 35, - "Weight": 1, - }, - { - "Amount": 1, - "Type": 33, - "Weight": 1, - }, - { - "Amount": 1, - "Type": 32, - "Weight": 1, - }, - { - "Amount": 3, - "Type": 31, - "Weight": 1, - }, - { - "Amount": 50, - "Type": 20, - "Weight": 1, - }, - { - "Amount": 1, - "Type": 6, - "Weight": 1, - }, - { - "Amount": 1, - "Type": 6, - "Weight": 1, - }, - { - "Amount": 1, - "Type": 6, - "Weight": 1, - }, - { - "Amount": 10, - "Type": 26, - "Weight": 1, - }, - { - "Amount": 8, - "Type": 25, - "Weight": 1, - }, - ], - [ - { - "Amount": 400, - "Type": 1, - "Weight": 1, - }, - { - "Amount": 400, - "BreakableType": "Safe", - "Type": 1, - "Weight": 1, - }, - { - "Amount": 225, - "Type": 21, - "Weight": 2, - }, - { - "Amount": 50, - "Type": 9, - "Weight": 1, + { + "Item": { + "_data": { + "_am": 250, + "id": "Strength Flag", + }, }, - { - "Amount": 300, - "CurrencyID": "Diamonds", - "Type": 7, - "Weight": 1, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 250, + "id": "Diamonds Flag", + }, }, - { - "Amount": 1, - "Type": 8, - "Weight": 1, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Basic Item Jar", + }, }, - { - "Amount": 5, - "Type": 14, - "Weight": 1, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 250, + "id": "Banana", + }, }, - { - "Amount": 5, - "Type": 15, - "Weight": 1, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 250, + "id": "Magnet Flag", + }, }, - { - "Amount": 75, - "Type": 20, - "Weight": 1, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Large Potion Bundle", + }, }, - ], - ], - "MaxEnchantsEquipped": 2, - "MaximumActiveGoals": 3, - "RankNumber": 3, - "RankUpRewards": [ + "StarsRequired": 9, + }, { - "_data": { - "_am": 1500, - "id": "Diamonds", + "Item": { + "_data": { + "_am": 25, + "id": "Comet", + }, }, + "StarsRequired": 9, }, { - "_data": { - "id": "Toy Ball", + "Item": { + "_data": { + "_am": 3, + "id": "Coins", + "tn": 10, + }, }, + "StarsRequired": 9, }, { - "_data": { - "id": "Basic Coin Jar", + "Item": { + "_data": { + "_am": 8, + "id": "Large Gift Bag", + }, }, + "StarsRequired": 10, }, { - "_data": { - "id": "Magnet Flag", + "Item": { + "_data": { + "_am": 2, + "id": "Treasure Hideout Key", + }, }, + "StarsRequired": 10, }, { - "_data": { - "id": "Diamonds Flag", + "Item": { + "_data": { + "_am": 6, + "id": "Tech Key", + }, }, + "StarsRequired": 10, }, { - "_data": { - "id": "Hasty Flag", + "Item": { + "_data": { + "_am": 30, + "id": "Mini Lucky Block", + }, }, + "StarsRequired": 10, }, - ], - "RequiredRebirth": 0, - "RequiredZone": "Mine", - "Rewards": [ { "Item": { "_data": { - "id": "Gift Bag", + "_am": 8, + "id": "Mini Chest", }, }, - "StarsRequired": 1, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 400, + "_am": 25, "id": "Diamonds", + "tn": 7, }, }, - "StarsRequired": 1, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 2, - "id": "Walkspeed", - "tn": 1, + "_am": 15, + "id": "Lucky", + "tn": 7, }, }, - "StarsRequired": 1, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 10, - "id": "Banana", + "id": "Booth Slot Voucher", }, }, - "StarsRequired": 2, + "StarsRequired": 13, }, { "Item": { "_data": { + "_am": 2, "id": "Damage", - "tn": 2, + "tn": 10, }, }, - "StarsRequired": 2, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 500, - "id": "Diamonds", + "_am": 8, + "id": "Large Potion Bundle", }, }, - "StarsRequired": 2, + "StarsRequired": 13, }, { "Item": { "_data": { - "id": "Coins", - "tn": 2, + "_am": 50, + "id": "Gift Bag", }, }, - "StarsRequired": 2, + "StarsRequired": 14, }, { "Item": { "_data": { - "id": "Treasure Hunter", - "tn": 2, + "_am": 25, + "id": "Large Gift Bag", }, }, - "StarsRequired": 2, + "StarsRequired": 14, }, { "Item": { "_data": { "_am": 2, + "id": "Treasure Hunter", + "tn": 10, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 10, "id": "Diamonds", - "tn": 1, + "tn": 6, }, }, - "StarsRequired": 3, + "StarsRequired": 15, }, { "Item": { "_data": { - "id": "Lucky", - "tn": 2, + "_am": 15, + "id": "Mini Chest", }, }, - "StarsRequired": 3, + "StarsRequired": 15, }, { "Item": { "_data": { - "id": "Magnet Flag", + "_am": 30, + "id": "Bucket O' Magic", }, }, - "StarsRequired": 3, + "StarsRequired": 15, }, { "Item": { "_data": { - "id": "Treasure Hunter", - "tn": 2, + "_am": 25, + "id": "Damage", + "tn": 8, }, }, - "StarsRequired": 3, + "StarsRequired": 16, }, { "Item": { "_data": { - "id": "Magnet", - "tn": 2, + "_am": 8, + "id": "Lucky", + "tn": 6, }, }, - "StarsRequired": 3, + "StarsRequired": 16, }, { "Item": { "_data": { - "id": "Strong Pets", - "tn": 2, + "_am": 10, + "id": "Large Gift Bag", }, }, - "StarsRequired": 4, - }, - ], - "Title": "Rookie", - "UnlockableEggSlots": 2, - "UnlockablePetSlots": 6, - }, - "configName": "3 | Rookie", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.388Z", - "hashShort": "6a08e2630007cfcf", - }, - { - "category": "Ranks", - "collection": "Ranks", - "configData": { - "Goals": [ - [ - { - "Amount": 200, - "Type": 21, - "Weight": 1, - }, - { - "Amount": 200, - "Type": 21, - "Weight": 1, - }, - { - "Amount": 6, - "Type": 14, - "Weight": 1, - }, - { - "Amount": 6, - "Type": 15, - "Weight": 1, - }, - { - "Amount": 5, - "Type": 9, - "Weight": 1, - }, - ], - [ - { - "Amount": 250, - "Type": 21, - "Weight": 1, - }, - { - "Amount": 250, - "Type": 21, - "Weight": 1, - }, - { - "Amount": 30, - "Type": 9, - "Weight": 1, - }, - { - "Amount": 7, - "Type": 14, - "Weight": 1, - }, - { - "Amount": 7, - "Type": 15, - "Weight": 1, - }, - { - "Amount": 4, - "PotionTier": 2, - "Type": 34, - "Weight": 1, - }, - { - "Amount": 8, - "Type": 35, - "Weight": 1, - }, - { - "Amount": 2, - "Type": 33, - "Weight": 1, - }, - { - "Amount": 3, - "Type": 32, - "Weight": 1, - }, - { - "Amount": 3, - "Type": 31, - "Weight": 1, - }, - { - "Amount": 70, - "Type": 20, - "Weight": 1, - }, - { - "Amount": 70, - "Type": 20, - "Weight": 1, - }, - { - "Amount": 15, - "Type": 26, - "Weight": 1, - }, - { - "Amount": 10, - "Type": 25, - "Weight": 1, - }, - ], - [ - { - "Amount": 350, - "Type": 21, - "Weight": 2, - }, - { - "Amount": 50, - "Type": 9, - "Weight": 1, - }, - { - "Amount": 300, - "CurrencyID": "Diamonds", - "Type": 7, - "Weight": 1, - }, - { - "Amount": 2, - "Type": 39, - "Weight": 1, - }, - { - "Amount": 3, - "Type": 38, - "Weight": 1, - }, - { - "Amount": 3, - "Type": 37, - "Weight": 1, - }, - { - "Amount": 6, - "PotionTier": 2, - "Type": 34, - "Weight": 1, - }, - { - "Amount": 10, - "Type": 35, - "Weight": 1, - }, - { - "Amount": 3, - "Type": 33, - "Weight": 1, - }, - { - "Amount": 90, - "Type": 20, - "Weight": 2, - }, - { - "Amount": 1, - "Type": 6, - "Weight": 3, - }, - ], - ], - "MaxEnchantsEquipped": 2, - "MaximumActiveGoals": 3, - "RankNumber": 4, - "RankUpRewards": [ - { - "_data": { - "_am": 3000, - "id": "Diamonds", - }, - }, - { - "_data": { - "id": "Criticals", - "tn": 2, - }, - }, - { - "_data": { - "id": "Magnet Flag", - }, - }, - { - "_data": { - "id": "Fortune Flag", - }, + "StarsRequired": 16, }, { - "_data": { - "id": "Comet", + "Item": { + "_data": { + "_am": 6, + "id": "Crystal Key", + }, }, + "StarsRequired": 17, }, { - "_data": { - "_am": 5, - "id": "TNT", + "Item": { + "_data": { + "_am": 12, + "id": "Mini Chest", + }, }, + "StarsRequired": 17, }, { - "_data": { - "id": "Nametag", + "Item": { + "_data": { + "_am": 6, + "id": "Party Box", + }, }, + "StarsRequired": 17, }, - ], - "Rewards": [ { "Item": { "_data": { - "id": "Gift Bag", + "_am": 30, + "id": "Insta Plant Capsule", }, }, - "StarsRequired": 1, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 750, - "id": "Diamonds", + "_am": 2, + "id": "Treasure Hideout Key", }, }, - "StarsRequired": 1, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 5, - "id": "Apple", + "_am": 4, + "id": "Secret Key", }, }, - "StarsRequired": 1, + "StarsRequired": 18, }, { "Item": { "_data": { - "id": "Gift Bag", + "_am": 25, + "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 1, + "StarsRequired": 19, }, { "Item": { "_data": { - "id": "Damage", - "tn": 2, + "_am": 25, + "id": "Gift Bag", }, }, - "StarsRequired": 2, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 1250, - "id": "Diamonds", + "_am": 5, + "id": "Charm Hammer", }, }, - "StarsRequired": 2, + "StarsRequired": 19, }, { "Item": { "_data": { - "id": "Coins", - "tn": 2, + "_am": 10, + "id": "Damage", + "tn": 6, }, }, - "StarsRequired": 2, + "StarsRequired": 20, }, { "Item": { "_data": { - "id": "Treasure Hunter", - "tn": 2, + "_am": 5, + "id": "Lucky", + "tn": 9, }, }, - "StarsRequired": 2, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 5, - "id": "Banana", + "_am": 40, + "id": "Tech Spinny Wheel Ticket", }, }, - "StarsRequired": 2, + "StarsRequired": 20, }, { "Item": { "_data": { - "id": "Crystal Key Lower Half", + "_am": 30, + "id": "Seed Bag", }, }, - "StarsRequired": 3, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 3, - "id": "Basic Coin Jar", + "id": "Daycare Slot Voucher", }, }, - "StarsRequired": 3, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 2, - "id": "Coins", - "tn": 2, + "_am": 8, + "id": "Lucky", + "tn": 10, }, }, - "StarsRequired": 3, + "StarsRequired": 21, }, { "Item": { "_data": { "_am": 10, - "id": "Pineapple", + "id": "Mini Chest", }, }, - "StarsRequired": 3, + "StarsRequired": 22, }, { "Item": { "_data": { "_am": 2, - "id": "Damage", - "tn": 2, + "id": "Charm Chisel", }, }, - "StarsRequired": 3, + "StarsRequired": 22, }, { "Item": { "_data": { - "id": "Crystal Key Upper Half", + "_am": 2, + "id": "Basic Item Jar", }, }, - "StarsRequired": 4, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 2, - "id": "Comet", + "_am": 40, + "id": "Tech Spinny Wheel Ticket", }, }, - "StarsRequired": 4, + "StarsRequired": 23, }, { "Item": { "_data": { - "id": "Strong Pets", - "tn": 3, + "_am": 8, + "id": "Basic Item Jar", }, }, - "StarsRequired": 4, + "StarsRequired": 23, }, { "Item": { "_data": { - "id": "Spinny Wheel Ticket", + "_am": 50, + "id": "Charm Stone", }, }, - "StarsRequired": 5, + "StarsRequired": 23, }, ], - "Title": "Adventurer", - "UnlockableEggSlots": 4, - "UnlockablePetSlots": 8, + "Title": "Apex", + "UnlockableEggSlots": 1, + "UnlockablePetSlots": 0, }, - "configName": "4 | Adventurer", + "configName": "27 | Apex", "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.383Z", - "hashShort": "85de89981cf9f667", + "dateModified": "2026-05-02T17:31:49.637Z", + "hashShort": "149259573262833f", }, { "category": "Ranks", @@ -144587,185 +183073,232 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 250, + "Amount": 2500, "Type": 21, - "Weight": 3, + "Weight": 1, }, { - "Amount": 9, - "Type": 14, + "Amount": 2500, + "Type": 21, "Weight": 1, }, { - "Amount": 9, - "Type": 15, + "Amount": 2500, + "Type": 21, "Weight": 1, }, { - "Amount": 5, - "PotionTier": 2, - "Type": 34, + "Amount": 65, + "Type": 14, "Weight": 1, }, { - "Amount": 5, + "Amount": 65, + "Type": 15, + "Weight": 1, + }, + { + "Amount": 40, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 350, + "Amount": 3250, "Type": 21, - "Weight": 3, + "Weight": 1, }, { - "Amount": 30, - "Type": 9, + "Amount": 3250, + "Type": 21, "Weight": 1, }, { - "Amount": 10, + "Amount": 3250, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 80, "Type": 14, "Weight": 1, }, { - "Amount": 10, + "Amount": 80, "Type": 15, "Weight": 1, }, { - "Amount": 2, - "PotionTier": 3, + "Amount": 40, + "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 15, - "Type": 35, + "Amount": 5, + "Type": 44, "Weight": 1, }, { - "Amount": 3, - "Type": 33, + "Amount": 5, + "Type": 43, "Weight": 1, }, { - "Amount": 3, - "Type": 32, + "Amount": 5, + "Type": 38, "Weight": 1, }, { - "Amount": 3, - "Type": 31, + "Amount": 5, + "Type": 37, "Weight": 1, }, { - "Amount": 80, + "Amount": 5, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 2250, "Type": 20, "Weight": 1, }, { - "Amount": 80, + "Amount": 2250, "Type": 20, "Weight": 1, }, - ], - [ { - "Amount": 500, - "Type": 21, - "Weight": 3, + "Amount": 1000, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 100, + "Type": 41, + "Weight": 1, }, { "Amount": 50, - "Type": 9, + "Type": 26, "Weight": 1, }, { - "Amount": 300, - "CurrencyID": "Diamonds", - "Type": 7, + "Amount": 50, + "Type": 25, "Weight": 1, }, { - "Amount": 15, - "Type": 14, + "Amount": 75, + "Type": 46, "Weight": 1, }, { - "Amount": 15, - "Type": 15, + "Amount": 75, + "Type": 45, "Weight": 1, }, + ], + [ { - "Amount": 100, - "Type": 20, + "Amount": 3500, + "Type": 21, "Weight": 1, }, { - "Amount": 100, - "Type": 20, + "Amount": 3500, + "Type": 21, "Weight": 1, }, { - "Amount": 1, + "Amount": 3500, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 750, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 9000, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 50, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 1, + "Amount": 50, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 12, - "Type": 26, + "Amount": 50, + "PotionTier": 4, + "Type": 34, "Weight": 1, }, { "Amount": 6, - "Type": 25, + "Type": 44, "Weight": 1, }, - ], - [ { - "Amount": 650, - "Type": 21, + "Amount": 6, + "Type": 43, "Weight": 1, }, { - "Amount": 650, - "Type": 21, + "Amount": 6, + "Type": 38, "Weight": 1, }, { - "Amount": 75, - "Type": 9, + "Amount": 6, + "Type": 37, "Weight": 1, }, { - "Amount": 450, - "CurrencyID": "Diamonds", - "Type": 7, + "Amount": 6, + "Type": 39, "Weight": 1, }, { "Amount": 2, - "Type": 39, + "Type": 76, "Weight": 1, }, { - "Amount": 3, - "Type": 38, + "Amount": 2750, + "Type": 20, "Weight": 1, }, { - "Amount": 3, - "Type": 37, + "Amount": 2750, + "Type": 20, + "Weight": 1, + }, + { + "Amount": 1200, + "Type": 40, + "Weight": 1, + }, + { + "Amount": 120, + "Type": 41, "Weight": 1, }, { @@ -144783,741 +183316,666 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Type": 6, "Weight": 1, }, + ], + [ { - "Amount": 125, - "Type": 20, + "Amount": 4000, + "Type": 21, "Weight": 1, }, { - "Amount": 125, - "Type": 20, + "Amount": 4000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 4000, + "Type": 21, + "Weight": 1, + }, + { + "Amount": 1000, + "Type": 9, + "Weight": 1, + }, + { + "Amount": 11000, + "CurrencyID": "Diamonds", + "Type": 7, + "Weight": 1, + }, + { + "Amount": 50, + "Type": 42, + "Weight": 1, + }, + { + "Amount": 8, + "Type": 38, + "Weight": 1, + }, + { + "Amount": 8, + "Type": 37, + "Weight": 1, + }, + { + "Amount": 8, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 76, "Weight": 1, }, ], ], - "MaxEnchantsEquipped": 3, + "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 5, + "RankNumber": 28, "RankUpRewards": [ { "_data": { - "_am": 5000, + "_am": 100, "id": "Diamonds", }, }, { "_data": { - "id": "Large Gift Bag", + "_am": 15, + "id": "Large Enchant Bundle", }, }, { "_data": { - "_am": 2, - "id": "Comet", + "_am": 30, + "id": "Large Potion Bundle", }, }, { "_data": { - "_am": 3, - "id": "Squeaky Toy", + "_am": 15, + "id": "Tech Spinny Wheel Ticket", }, }, { "_data": { - "_am": 2, - "id": "Hasty Flag", + "_am": 4, + "id": "Secret Key", }, }, { "_data": { - "_am": 2, - "id": "Magnet Flag", + "_am": 15, + "id": "Tech Key", + }, + }, + { + "_data": { + "_am": 8, + "id": "Mini Chest", }, }, ], - "RequiredRebirth": 0, - "RequiredZone": "Tiki", "Rewards": [ { "Item": { "_data": { - "id": "Gift Bag", + "_am": 50000, + "id": "Diamonds", }, }, - "StarsRequired": 1, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 1500, - "id": "Diamonds", + "_am": 300, + "id": "Pineapple", }, }, - "StarsRequired": 1, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 7, - "id": "Apple", + "_am": 30, + "id": "Potion Bundle", }, }, - "StarsRequired": 1, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 2, - "id": "Coins", - "tn": 2, + "_am": 200, + "id": "TNT", }, }, - "StarsRequired": 1, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 2000, - "id": "Diamonds", + "_am": 300, + "id": "Apple", }, }, - "StarsRequired": 2, + "StarsRequired": 6, }, { "Item": { "_data": { - "id": "Gift Bag", + "_am": 30, + "id": "Flag Bundle", }, }, - "StarsRequired": 2, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 2, - "id": "Lucky", - "tn": 2, + "_am": 250, + "id": "Fortune Flag", }, }, - "StarsRequired": 2, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 8, - "id": "Orange", + "_am": 250, + "id": "Fortune Flag", }, }, - "StarsRequired": 3, + "StarsRequired": 6, }, { "Item": { "_data": { - "id": "Spinny Wheel Ticket", + "_am": 75, + "id": "Basic Coin Jar", }, }, - "StarsRequired": 3, + "StarsRequired": 7, }, { "Item": { "_data": { - "id": "Large Gift Bag", + "_am": 3, + "id": "Treasure Hunter", + "tn": 5, }, }, - "StarsRequired": 3, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 2, - "id": "Damage", - "tn": 2, + "_am": 150, + "id": "Rainbow", }, }, - "StarsRequired": 3, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 10, - "id": "Banana", + "_am": 40, + "id": "Fruit Bundle", }, }, - "StarsRequired": 4, + "StarsRequired": 7, }, { "Item": { "_data": { - "id": "Tap Power", - "tn": 3, + "_am": 250, + "id": "Squeaky Toy", }, }, - "StarsRequired": 4, + "StarsRequired": 8, }, { "Item": { "_data": { - "id": "Coins", - "tn": 3, + "_am": 30, + "id": "Enchant Bundle", }, }, - "StarsRequired": 4, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 10, - "id": "Pineapple", + "_am": 250, + "id": "Diamonds Flag", }, }, - "StarsRequired": 4, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 10, - "id": "Apple", + "_am": 250, + "id": "Hasty Flag", }, }, - "StarsRequired": 4, + "StarsRequired": 8, }, { "Item": { "_data": { - "id": "Crystal Key", + "_am": 15, + "id": "Enchant Bundle", }, }, - "StarsRequired": 5, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 2, - "id": "Magnet Flag", + "_am": 150, + "id": "Enchant Essence", }, }, - "StarsRequired": 5, + "StarsRequired": 9, }, { "Item": { "_data": { - "id": "Large Gift Bag", + "_am": 30, + "id": "Potion Bundle", }, }, - "StarsRequired": 5, + "StarsRequired": 9, }, { "Item": { "_data": { - "id": "Happy Pets", - "tn": 1, + "_am": 8, + "id": "Basic Item Jar", }, }, - "StarsRequired": 6, + "StarsRequired": 9, }, - ], - "Title": "Experienced", - "UnlockableEggSlots": 6, - "UnlockablePetSlots": 8, - }, - "configName": "5 | Experienced", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.380Z", - "hashShort": "9a2360c5a10bb0e7", - }, - { - "category": "Ranks", - "collection": "Ranks", - "configData": { - "Goals": [ - [ - { - "Amount": 350, - "Type": 21, - "Weight": 3, - }, - { - "Amount": 12, - "Type": 14, - "Weight": 1, - }, - { - "Amount": 12, - "Type": 15, - "Weight": 1, - }, - { - "Amount": 5, - "PotionTier": 3, - "Type": 34, - "Weight": 1, - }, - { - "Amount": 5, - "Type": 9, - "Weight": 1, - }, - ], - [ - { - "Amount": 500, - "Type": 21, - "Weight": 3, - }, - { - "Amount": 50, - "Type": 9, - "Weight": 1, - }, - { - "Amount": 13, - "Type": 14, - "Weight": 1, - }, - { - "Amount": 13, - "Type": 15, - "Weight": 1, - }, - { - "Amount": 1, - "PotionTier": 4, - "Type": 34, - "Weight": 1, - }, - { - "Amount": 4, - "Type": 33, - "Weight": 1, - }, - { - "Amount": 1, - "Type": 38, - "Weight": 1, - }, - { - "Amount": 1, - "Type": 37, - "Weight": 1, - }, - { - "Amount": 1, - "Type": 39, - "Weight": 1, - }, - { - "Amount": 150, - "Type": 20, - "Weight": 1, - }, - { - "Amount": 50, - "Type": 40, - "Weight": 1, - }, - { - "Amount": 5, - "Type": 41, - "Weight": 1, - }, - { - "Amount": 16, - "Type": 26, - "Weight": 1, - }, - { - "Amount": 8, - "Type": 25, - "Weight": 1, - }, - ], - [ - { - "Amount": 700, - "Type": 21, - "Weight": 3, - }, - { - "Amount": 75, - "Type": 9, - "Weight": 1, - }, - { - "Amount": 350, - "CurrencyID": "Diamonds", - "Type": 7, - "Weight": 1, - }, - { - "Amount": 18, - "Type": 14, - "Weight": 1, - }, - { - "Amount": 18, - "Type": 15, - "Weight": 1, - }, - { - "Amount": 3, - "PotionTier": 3, - "Type": 12, - "Weight": 1, - }, - { - "Amount": 3, - "EnchantTier": 3, - "Type": 13, - "Weight": 1, - }, - { - "Amount": 2, - "Type": 38, - "Weight": 1, - }, - { - "Amount": 2, - "Type": 37, - "Weight": 1, - }, - { - "Amount": 2, - "Type": 39, - "Weight": 1, - }, - { - "Amount": 200, - "Type": 20, - "Weight": 1, - }, - { - "Amount": 200, - "Type": 20, - "Weight": 1, - }, - { - "Amount": 100, - "Type": 40, - "Weight": 1, - }, - { - "Amount": 10, - "Type": 41, - "Weight": 1, + { + "Item": { + "_data": { + "_am": 30, + "id": "Large Gift Bag", + }, }, - { - "Amount": 1, - "Type": 6, - "Weight": 1, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Coins", + "tn": 10, + }, }, - { - "Amount": 1, - "Type": 6, - "Weight": 1, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Diamonds", + "tn": 5, + }, }, - { - "Amount": 1, - "Type": 6, - "Weight": 1, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "Tech Spinny Wheel Ticket", + }, }, - ], - [ - { - "Amount": 850, - "Type": 21, - "Weight": 3, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Tech Key", + }, }, - { - "Amount": 100, - "Type": 9, - "Weight": 1, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Charm Chisel", + }, }, - { - "Amount": 500, - "CurrencyID": "Diamonds", - "Type": 7, - "Weight": 1, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Seed Bag", + }, }, - { - "Amount": 1, - "Type": 42, - "Weight": 1, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Mini Chest", + }, }, - { - "Amount": 3, - "Type": 38, - "Weight": 1, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Secret Key", + }, }, - { - "Amount": 3, - "Type": 37, - "Weight": 1, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Large Potion Bundle", + }, }, - { - "Amount": 3, - "Type": 39, - "Weight": 1, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Large Enchant Bundle", + }, }, - ], - ], - "MaxEnchantsEquipped": 3, - "MaximumActiveGoals": 4, - "RankNumber": 6, - "RankUpRewards": [ + "StarsRequired": 14, + }, { - "_data": { - "_am": 7500, - "id": "Diamonds", + "Item": { + "_data": { + "_am": 125, + "id": "TNT Crate", + }, }, + "StarsRequired": 14, }, { - "_data": { - "_am": 2, - "id": "Hasty Flag", + "Item": { + "_data": { + "_am": 30, + "id": "Coins", + "tn": 7, + }, }, + "StarsRequired": 14, }, { - "_data": { - "id": "Nametag", + "Item": { + "_data": { + "_am": 20, + "id": "Magic Shard", + }, }, + "StarsRequired": 15, }, { - "_data": { - "id": "Giant Coin Jar", + "Item": { + "_data": { + "_am": 6, + "id": "Crystal Key", + }, }, + "StarsRequired": 15, }, { - "_data": { - "_am": 3, - "id": "Comet", + "Item": { + "_data": { + "_am": 12, + "id": "Party Box", + }, }, + "StarsRequired": 15, }, - ], - "Rewards": [ { "Item": { "_data": { - "id": "Gift Bag", + "_am": 30, + "id": "Bucket O' Magic", }, }, - "StarsRequired": 1, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 2000, - "id": "Diamonds", + "id": "Treasure Hideout Key Upper Half", }, }, - "StarsRequired": 1, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 8, - "id": "Pineapple", + "id": "Damage", + "tn": 10, }, }, - "StarsRequired": 1, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 2, - "id": "Magnet Flag", + "_am": 30, + "id": "Damage", + "tn": 9, }, }, - "StarsRequired": 1, + "StarsRequired": 17, }, { "Item": { "_data": { - "id": "Diamonds", - "tn": 3, + "_am": 40, + "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 2, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 2500, - "id": "Diamonds", + "_am": 8, + "id": "Gift Bag", }, }, - "StarsRequired": 2, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 2, - "id": "Diamonds Flag", + "_am": 30, + "id": "Diamonds", + "tn": 5, }, }, - "StarsRequired": 2, + "StarsRequired": 18, }, { "Item": { "_data": { + "_am": 10, "id": "Lucky", - "tn": 3, + "tn": 8, }, }, - "StarsRequired": 3, + "StarsRequired": 18, }, { "Item": { "_data": { "_am": 4, - "id": "Comet", + "id": "Treasure Hunter", + "tn": 8, }, }, - "StarsRequired": 3, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 2, - "id": "Damage", - "tn": 3, + "id": "Booth Slot Voucher", }, }, - "StarsRequired": 3, + "StarsRequired": 19, }, { "Item": { "_data": { - "id": "Crystal Key", + "_am": 4, + "id": "Charm Hammer", }, }, - "StarsRequired": 3, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 2, - "id": "Large Gift Bag", + "_am": 20, + "id": "Breakable Sprinkler", }, }, - "StarsRequired": 4, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 10, - "id": "Orange", + "_am": 40, + "id": "Large Enchant Bundle", }, }, - "StarsRequired": 4, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 2, - "id": "Diamonds Flag", + "_am": 20, + "id": "Gift Bag", }, }, - "StarsRequired": 4, + "StarsRequired": 20, }, { "Item": { "_data": { - "id": "Lucky Eggs", - "tn": 3, + "_am": 40, + "id": "Large Gift Bag", }, }, - "StarsRequired": 4, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 15, - "id": "Apple", + "_am": 8, + "id": "Tech Key", }, }, - "StarsRequired": 5, + "StarsRequired": 21, }, { "Item": { "_data": { - "id": "Tap Power", - "tn": 4, + "_am": 3, + "id": "Treasure Hideout Key", }, }, - "StarsRequired": 5, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 2, - "id": "Giant Coin Jar", + "_am": 8, + "id": "Lucky", + "tn": 9, }, }, - "StarsRequired": 5, + "StarsRequired": 21, }, { "Item": { "_data": { - "id": "Damage", - "tn": 4, + "_am": 40, + "id": "Large Gift Bag", }, }, - "StarsRequired": 5, + "StarsRequired": 22, }, { "Item": { "_data": { - "id": "Magnet", - "tn": 3, + "_am": 4, + "id": "Secret Key", }, }, - "StarsRequired": 6, + "StarsRequired": 22, }, { "Item": { "_data": { - "id": "Diamonds", - "tn": 3, + "_am": 30, + "id": "Bucket O' Magic", }, }, - "StarsRequired": 6, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 3, - "id": "Hasty Flag", + "_am": 30, + "id": "Party Box", }, }, - "StarsRequired": 6, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 4, - "id": "Coins", - "tn": 3, + "_am": 8, + "id": "Lucky", + "tn": 10, }, }, - "StarsRequired": 6, + "StarsRequired": 23, }, { "Item": { "_data": { - "id": "Booth Slot Voucher", + "_am": 30, + "id": "Mini Chest", }, }, - "StarsRequired": 7, + "StarsRequired": 23, }, ], - "Title": "Pro", - "UnlockableEggSlots": 10, - "UnlockablePetSlots": 8, + "Title": "Oracle", + "UnlockableEggSlots": 1, + "UnlockablePetSlots": 0, }, - "configName": "6 | Pro", + "configName": "28 | Oracle", "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.378Z", - "hashShort": "6362844ebd525c1c", + "dateModified": "2026-05-02T17:31:49.633Z", + "hashShort": "0d17d8a235751f1d", }, { "category": "Ranks", @@ -145526,215 +183984,231 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 400, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 400, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 400, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 15, + "Amount": 70, "Type": 14, "Weight": 1, }, { - "Amount": 15, + "Amount": 70, "Type": 15, "Weight": 1, }, { - "Amount": 5, + "Amount": 45, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 600, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 600, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 600, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 75, - "Type": 9, - "Weight": 1, - }, - { - "Amount": 20, + "Amount": 90, "Type": 14, "Weight": 1, }, { - "Amount": 20, + "Amount": 90, "Type": 15, "Weight": 1, }, { - "Amount": 4, + "Amount": 50, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 30, - "Type": 35, + "Amount": 5, + "Type": 44, "Weight": 1, }, { - "Amount": 8, - "Type": 33, + "Amount": 5, + "Type": 43, "Weight": 1, }, { - "Amount": 3, + "Amount": 5, "Type": 38, "Weight": 1, }, { - "Amount": 3, + "Amount": 5, "Type": 37, "Weight": 1, }, { - "Amount": 2, + "Amount": 5, "Type": 39, "Weight": 1, }, { - "Amount": 200, + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 2500, "Type": 20, "Weight": 1, }, { - "Amount": 200, + "Amount": 2500, "Type": 20, "Weight": 1, }, { - "Amount": 70, + "Amount": 1250, "Type": 40, "Weight": 1, }, { - "Amount": 7, + "Amount": 125, "Type": 41, "Weight": 1, }, { - "Amount": 18, + "Amount": 50, "Type": 26, "Weight": 1, }, { - "Amount": 12, + "Amount": 50, "Type": 25, "Weight": 1, }, + { + "Amount": 75, + "Type": 46, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 45, + "Weight": 1, + }, ], [ { - "Amount": 900, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 900, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 900, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 125, + "Amount": 900, "Type": 9, "Weight": 1, }, { - "Amount": 700, + "Amount": 10000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 2, - "Type": 8, + "Amount": 60, + "PotionTier": 3, + "Type": 12, "Weight": 1, }, { - "Amount": 25, - "Type": 14, + "Amount": 60, + "EnchantTier": 3, + "Type": 13, "Weight": 1, }, { - "Amount": 25, - "Type": 15, + "Amount": 60, + "PotionTier": 4, + "Type": 34, "Weight": 1, }, { - "Amount": 1, - "PotionTier": 4, - "Type": 12, + "Amount": 6, + "Type": 44, "Weight": 1, }, { - "Amount": 1, - "EnchantTier": 4, - "Type": 13, + "Amount": 6, + "Type": 43, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 3, + "Amount": 6, "Type": 39, "Weight": 1, }, { - "Amount": 500, + "Amount": 2, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 500, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 100, + "Amount": 1400, "Type": 40, "Weight": 1, }, { - "Amount": 10, + "Amount": 140, "Type": 41, "Weight": 1, }, @@ -145756,98 +184230,84 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 1200, + "Amount": 4500, "Type": 21, "Weight": 1, }, { - "Amount": 1200, + "Amount": 4500, "Type": 21, "Weight": 1, }, { - "Amount": 1200, + "Amount": 4500, "Type": 21, "Weight": 1, }, { - "Amount": 150, + "Amount": 1200, "Type": 9, "Weight": 1, }, { - "Amount": 850, + "Amount": 12000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 1, + "Amount": 50, "Type": 42, "Weight": 1, }, { - "Amount": 7, + "Amount": 8, "Type": 38, "Weight": 1, }, { - "Amount": 7, + "Amount": 8, "Type": 37, "Weight": 1, }, { - "Amount": 4, + "Amount": 8, "Type": 39, "Weight": 1, }, + { + "Amount": 2, + "Type": 76, + "Weight": 1, + }, ], ], - "MaxEnchantsEquipped": 3, + "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 7, + "RankNumber": 29, "RankUpRewards": [ { "_data": { - "_am": 10000, - "id": "Diamonds", - }, - }, - { - "_data": { - "_am": 3, - "id": "Coins", - "tn": 3, - }, - }, - { - "_data": { - "_am": 2, - "id": "Giant Coin Jar", - }, - }, - { - "_data": { - "_am": 3, - "id": "Comet", + "_am": 10, + "id": "Void Spinny Wheel Ticket", }, }, { "_data": { - "_am": 3, - "id": "Toy Ball", + "_am": 15, + "id": "Void Key", }, }, { "_data": { - "_am": 3, - "id": "Toy Bone", + "_am": 15, + "id": "Secret Key", }, }, { "_data": { - "_am": 3, - "id": "Squeaky Toy", + "_am": 5, + "id": "Rainbow Mini Chest", }, }, ], @@ -145855,892 +184315,560 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Gift Bag", + "_am": 145, + "id": "Shiny Flag", }, }, - "StarsRequired": 2, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 2500, - "id": "Diamonds", + "_am": 160, + "id": "Coins Flag", }, }, - "StarsRequired": 2, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 3, - "id": "Rainbow", + "_am": 165, + "id": "Squeaky Toy", }, }, - "StarsRequired": 2, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 5, - "id": "Comet", + "_am": 215, + "id": "Strength Flag", }, }, - "StarsRequired": 3, + "StarsRequired": 6, }, { "Item": { "_data": { - "id": "Diamonds", - "tn": 3, + "_am": 9, + "id": "Treasure Hunter", + "tn": 5, }, }, - "StarsRequired": 3, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 3000, - "id": "Diamonds", + "_am": 220, + "id": "Toy Ball", }, }, - "StarsRequired": 3, + "StarsRequired": 7, }, { "Item": { "_data": { - "id": "TNT Crate", + "_am": 155, + "id": "Diamonds Flag", }, }, - "StarsRequired": 3, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 3, - "id": "Lucky", - "tn": 3, + "_am": 220, + "id": "Orange", }, }, - "StarsRequired": 3, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 3, - "id": "Gift Bag", + "_am": 215, + "id": "Rainbow", }, }, - "StarsRequired": 3, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 3, - "id": "Damage", - "tn": 4, + "_am": 105, + "id": "Strength Flag", }, }, - "StarsRequired": 4, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 5, - "id": "Giant Coin Jar", + "_am": 235, + "id": "Hasty Flag", }, }, - "StarsRequired": 4, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 8, - "id": "Comet", + "_am": 235, + "id": "Orange", }, }, - "StarsRequired": 4, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 12, - "id": "Banana", + "_am": 225, + "id": "Hasty Flag", }, }, - "StarsRequired": 4, + "StarsRequired": 9, }, { "Item": { "_data": { - "id": "Tap Power", - "tn": 4, + "_am": 135, + "id": "TNT", }, }, - "StarsRequired": 4, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 5, - "id": "Spinny Wheel Ticket", + "_am": 140, + "id": "Pineapple", }, }, - "StarsRequired": 5, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 8, - "id": "TNT", + "_am": 125, + "id": "Toy Bone", }, }, - "StarsRequired": 5, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 5, - "id": "Toy Ball", + "_am": 290, + "id": "Banana", }, }, - "StarsRequired": 5, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 5, - "id": "Squeaky Toy", + "_am": 115, + "id": "Diamonds Flag", }, }, - "StarsRequired": 5, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 14, - "id": "Apple", + "_am": 110, + "id": "Watermelon", }, }, - "StarsRequired": 5, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 5, - "id": "Toy Bone", + "_am": 25, + "id": "Party Box", }, }, - "StarsRequired": 6, + "StarsRequired": 10, }, { "Item": { "_data": { - "id": "Lucky Eggs", - "tn": 3, + "_am": 20, + "id": "Magic Shard", }, }, - "StarsRequired": 6, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 4, - "id": "Giant Coin Jar", + "_am": 15, + "id": "Basic Item Jar", }, }, - "StarsRequired": 6, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 20, - "id": "Banana", + "_am": 25, + "id": "Large Enchant Bundle", }, }, - "StarsRequired": 6, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 5000, - "id": "Diamonds", + "_am": 9, + "id": "Seed Bag", }, }, - "StarsRequired": 7, + "StarsRequired": 11, }, { "Item": { "_data": { - "id": "Criticals", - "tn": 4, + "_am": 5, + "id": "Void Key", }, }, - "StarsRequired": 7, + "StarsRequired": 12, }, { "Item": { "_data": { - "id": "Crystal Key", + "_am": 25, + "id": "Void Spinny Wheel Ticket", }, }, - "StarsRequired": 7, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 8, - "id": "Rainbow", + "_am": 2, + "id": "Damage", + "tn": 5, }, }, - "StarsRequired": 8, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 2, - "id": "Strong Pets", - "tn": 4, + "_am": 4, + "id": "Secret Key", }, }, - "StarsRequired": 9, - }, - ], - "Title": "Elite", - "UnlockableEggSlots": 8, - "UnlockablePetSlots": 5, - }, - "configName": "7 | Elite", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.392Z", - "hashShort": "8011909b1d9ba065", - }, - { - "category": "Ranks", - "collection": "Ranks", - "configData": { - "Goals": [ - [ - { - "Amount": 750, - "Type": 21, - "Weight": 1, - }, - { - "Amount": 750, - "Type": 21, - "Weight": 1, - }, - { - "Amount": 750, - "Type": 21, - "Weight": 1, - }, - { - "Amount": 20, - "Type": 14, - "Weight": 1, - }, - { - "Amount": 20, - "Type": 15, - "Weight": 1, - }, - { - "Amount": 5, - "Type": 9, - "Weight": 1, - }, - ], - [ - { - "Amount": 1000, - "Type": 21, - "Weight": 1, - }, - { - "Amount": 1000, - "Type": 21, - "Weight": 1, - }, - { - "Amount": 1000, - "Type": 21, - "Weight": 1, - }, - { - "Amount": 75, - "Type": 9, - "Weight": 1, - }, - { - "Amount": 22, - "Type": 14, - "Weight": 1, - }, - { - "Amount": 22, - "Type": 15, - "Weight": 1, - }, - { - "Amount": 5, - "PotionTier": 4, - "Type": 34, - "Weight": 1, - }, - { - "Amount": 3, - "Type": 38, - "Weight": 1, - }, - { - "Amount": 3, - "Type": 37, - "Weight": 1, - }, - { - "Amount": 2, - "Type": 39, - "Weight": 1, - }, - { - "Amount": 250, - "Type": 20, - "Weight": 1, - }, - { - "Amount": 250, - "Type": 20, - "Weight": 1, - }, - { - "Amount": 100, - "Type": 40, - "Weight": 1, - }, - { - "Amount": 10, - "Type": 41, - "Weight": 1, - }, - { - "Amount": 20, - "Type": 26, - "Weight": 1, - }, - { - "Amount": 15, - "Type": 25, - "Weight": 1, - }, - ], - [ - { - "Amount": 1250, - "Type": 21, - "Weight": 1, - }, - { - "Amount": 1250, - "Type": 21, - "Weight": 1, - }, - { - "Amount": 1250, - "Type": 21, - "Weight": 1, - }, - { - "Amount": 125, - "Type": 9, - "Weight": 1, - }, - { - "Amount": 1000, - "CurrencyID": "Diamonds", - "Type": 7, - "Weight": 1, - }, - { - "Amount": 30, - "Type": 14, - "Weight": 1, - }, - { - "Amount": 30, - "Type": 15, - "Weight": 1, - }, - { - "Amount": 5, - "PotionTier": 4, - "Type": 12, - "Weight": 1, - }, - { - "Amount": 5, - "EnchantTier": 4, - "Type": 13, - "Weight": 1, - }, - { - "Amount": 2, - "PotionTier": 5, - "Type": 34, - "Weight": 1, - }, - { - "Amount": 5, - "Type": 38, - "Weight": 1, - }, - { - "Amount": 5, - "Type": 37, - "Weight": 1, - }, - { - "Amount": 3, - "Type": 39, - "Weight": 1, - }, - { - "Amount": 650, - "Type": 20, - "Weight": 1, - }, - { - "Amount": 650, - "Type": 20, - "Weight": 1, - }, - { - "Amount": 150, - "Type": 40, - "Weight": 1, - }, - { - "Amount": 15, - "Type": 41, - "Weight": 1, - }, - { - "Amount": 1, - "Type": 6, - "Weight": 1, - }, - { - "Amount": 1, - "Type": 6, - "Weight": 1, - }, - { - "Amount": 1, - "Type": 6, - "Weight": 1, - }, - ], - [ - { - "Amount": 1500, - "Type": 21, - "Weight": 1, - }, - { - "Amount": 1500, - "Type": 21, - "Weight": 1, - }, - { - "Amount": 1500, - "Type": 21, - "Weight": 1, - }, - { - "Amount": 150, - "Type": 9, - "Weight": 1, - }, - { - "Amount": 1500, - "CurrencyID": "Diamonds", - "Type": 7, - "Weight": 1, - }, - { - "Amount": 1, - "Type": 42, - "Weight": 1, - }, - { - "Amount": 7, - "Type": 38, - "Weight": 1, - }, - { - "Amount": 7, - "Type": 37, - "Weight": 1, - }, - { - "Amount": 4, - "Type": 39, - "Weight": 1, - }, - ], - ], - "MaxEnchantsEquipped": 4, - "MaximumActiveGoals": 4, - "RankNumber": 8, - "RankUpRewards": [ - { - "_data": { - "_am": 2, - "id": "Damage", - "tn": 5, - }, - }, - { - "_data": { - "_am": 4, - "id": "Comet", - }, - }, - { - "_data": { - "_am": 5, - "id": "Squeaky Toy", - }, - }, - { - "_data": { - "_am": 5, - "id": "Toy Ball", - }, - }, - { - "_data": { - "_am": 5, - "id": "Toy Bone", - }, - }, - { - "_data": { - "_am": 4, - "id": "Giant Coin Jar", - }, - }, - { - "_data": { - "_am": 2, - "id": "Large Gift Bag", - }, + "StarsRequired": 13, }, - ], - "Rewards": [ { "Item": { "_data": { - "_am": 3, - "id": "Gift Bag", + "_am": 25, + "id": "Large Potion Bundle", }, }, - "StarsRequired": 2, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 3000, - "id": "Diamonds", + "_am": 20, + "id": "Flag Bundle", }, }, - "StarsRequired": 2, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 3, - "id": "TNT Crate", + "_am": 15, + "id": "Bucket O' Magic", }, }, - "StarsRequired": 2, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 4, - "id": "Comet", + "_am": 20, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 2, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 5, - "id": "Damage", - "tn": 3, + "_am": 25, + "id": "Diamonds", + "tn": 7, }, }, - "StarsRequired": 3, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 4000, - "id": "Diamonds", + "_am": 70, + "id": "Rainbow Flag", }, }, - "StarsRequired": 3, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 2, - "id": "Diamonds", - "tn": 3, + "_am": 20, + "id": "Toy Bundle", }, }, - "StarsRequired": 3, + "StarsRequired": 15, }, { "Item": { "_data": { - "id": "Magnet", - "tn": 3, + "_am": 7, + "id": "Coins", + "tn": 6, }, }, - "StarsRequired": 3, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 4, - "id": "Rainbow", + "_am": 20, + "id": "Comet", }, }, - "StarsRequired": 4, + "StarsRequired": 16, }, { "Item": { "_data": { - "id": "Criticals", - "tn": 5, + "_am": 15, + "id": "Mini Chest", }, }, - "StarsRequired": 4, + "StarsRequired": 16, }, { "Item": { "_data": { + "_am": 2, "id": "Large Gift Bag", }, }, - "StarsRequired": 4, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 5, - "id": "Magic Coin Jar", + "_am": 15, + "id": "Large Gift Bag", }, }, - "StarsRequired": 4, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 25, - "id": "Banana", + "_am": 5, + "id": "Void Key", }, }, - "StarsRequired": 5, + "StarsRequired": 17, }, { "Item": { "_data": { - "id": "Tap Power", - "tn": 4, + "_am": 25, + "id": "Void Spinny Wheel Ticket", }, }, - "StarsRequired": 5, + "StarsRequired": 17, }, { "Item": { "_data": { - "id": "Crystal Key", + "_am": 20, + "id": "Coins", + "tn": 8, }, }, - "StarsRequired": 5, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 16, - "id": "TNT", + "_am": 3, + "id": "Lucky", + "tn": 8, }, }, - "StarsRequired": 5, + "StarsRequired": 18, }, { "Item": { "_data": { - "id": "Treasure Hunter", - "tn": 4, + "_am": 8, + "id": "Gift Bag", }, }, - "StarsRequired": 6, + "StarsRequired": 19, }, { "Item": { - "_data": { - "_am": 8, - "id": "Rainbow", + "_data": { + "_am": 20, + "id": "Damage", + "tn": 6, }, }, - "StarsRequired": 6, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 5, - "id": "Hasty Flag", + "_am": 15, + "id": "Bucket O' Magic", }, }, - "StarsRequired": 6, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 2, - "id": "Damage", - "tn": 4, + "_am": 8, + "id": "Treasure Hideout Key Upper Half", }, }, - "StarsRequired": 7, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 3, - "id": "Fortune Flag", + "_am": 2, + "id": "Large Potion Bundle", }, }, - "StarsRequired": 7, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 5, - "id": "Toy Ball", + "id": "Daycare Slot Voucher", }, }, - "StarsRequired": 7, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 5500, + "_am": 15, "id": "Diamonds", + "tn": 7, }, }, - "StarsRequired": 7, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 2, - "id": "Coins", - "tn": 4, + "_am": 25, + "id": "Bucket O' Magic", }, }, - "StarsRequired": 8, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 2, - "id": "Criticals", - "tn": 4, + "_am": 7, + "id": "Large Enchant Bundle", }, }, - "StarsRequired": 8, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 8, - "id": "Comet", + "_am": 15, + "id": "Large Potion Bundle", }, }, - "StarsRequired": 8, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 2, - "id": "Treasure Hunter", - "tn": 5, + "_am": 6, + "id": "Mini Pinata", }, }, - "StarsRequired": 9, + "StarsRequired": 23, }, { "Item": { "_data": { "_am": 2, - "id": "Damage", - "tn": 5, + "id": "Coins", + "tn": 10, }, }, - "StarsRequired": 9, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 2, - "id": "Coins", - "tn": 5, + "_am": 3, + "id": "Void Spinny Wheel Ticket", }, }, - "StarsRequired": 9, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 2, - "id": "Large Gift Bag", + "_am": 15, + "id": "Mini Chest", }, }, - "StarsRequired": 9, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 10, - "id": "Giant Coin Jar", + "_am": 80, + "id": "TNT Crate", }, }, - "StarsRequired": 10, + "StarsRequired": 24, }, { "Item": { "_data": { - "id": "Blast", - "tn": 1, + "_am": 20, + "id": "Large Gift Bag", }, }, - "StarsRequired": 10, + "StarsRequired": 24, }, ], - "Title": "Expert", - "UnlockableEggSlots": 15, - "UnlockablePetSlots": 9, + "Title": "Void Walker", + "UnlockableEggSlots": 1, + "UnlockablePetSlots": 0, }, - "configName": "8 | Expert", + "configName": "29 | Void Walker", "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.376Z", - "hashShort": "f88fb883c2832f98", + "dateModified": "2025-07-05T23:36:13.705Z", + "hashShort": "9a312220ed098533", }, { "category": "Ranks", @@ -146749,196 +184877,231 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 900, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 900, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 900, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 25, + "Amount": 70, "Type": 14, "Weight": 1, }, { - "Amount": 25, + "Amount": 70, "Type": 15, "Weight": 1, }, { - "Amount": 5, + "Amount": 45, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 1300, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 1300, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 1300, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 75, - "Type": 9, - "Weight": 1, - }, - { - "Amount": 30, + "Amount": 90, "Type": 14, "Weight": 1, }, { - "Amount": 30, + "Amount": 90, "Type": 15, "Weight": 1, }, { - "Amount": 8, + "Amount": 50, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 3, + "Amount": 5, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 5, "Type": 38, "Weight": 1, }, { - "Amount": 3, + "Amount": 5, "Type": 37, "Weight": 1, }, { - "Amount": 3, + "Amount": 5, "Type": 39, "Weight": 1, }, { - "Amount": 850, + "Amount": 1, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 2500, "Type": 20, "Weight": 1, }, { - "Amount": 850, + "Amount": 2500, "Type": 20, "Weight": 1, }, { - "Amount": 150, + "Amount": 1250, "Type": 40, "Weight": 1, }, { - "Amount": 15, + "Amount": 125, "Type": 41, "Weight": 1, }, { - "Amount": 24, + "Amount": 50, "Type": 26, "Weight": 1, }, { - "Amount": 20, + "Amount": 50, "Type": 25, "Weight": 1, }, + { + "Amount": 75, + "Type": 46, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 45, + "Weight": 1, + }, ], [ { - "Amount": 1600, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 1600, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 1600, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 125, + "Amount": 900, "Type": 9, "Weight": 1, }, { - "Amount": 1500, + "Amount": 10000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 8, - "PotionTier": 4, + "Amount": 60, + "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 8, - "EnchantTier": 4, + "Amount": 60, + "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 6, + "Amount": 60, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 39, "Weight": 1, }, { - "Amount": 1500, + "Amount": 2, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 1500, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 200, + "Amount": 1400, "Type": 40, "Weight": 1, }, { - "Amount": 20, + "Amount": 140, "Type": 41, "Weight": 1, }, @@ -146960,79 +185123,96 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 1800, + "Amount": 4500, "Type": 21, "Weight": 1, }, { - "Amount": 1800, + "Amount": 4500, "Type": 21, "Weight": 1, }, { - "Amount": 1800, + "Amount": 4500, "Type": 21, "Weight": 1, }, { - "Amount": 150, + "Amount": 1200, "Type": 9, "Weight": 1, }, { - "Amount": 2000, + "Amount": 12000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 2, + "Amount": 50, "Type": 42, "Weight": 1, }, { - "Amount": 5, + "Amount": 8, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 8, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 8, "Type": 39, "Weight": 1, }, + { + "Amount": 2, + "Type": 76, + "Weight": 1, + }, ], ], - "MaxEnchantsEquipped": 4, + "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 9, + "RankNumber": 30, "RankUpRewards": [ { "_data": { - "id": "Damage", - "tn": 6, + "_am": 1000000, + "id": "Diamonds", }, }, { "_data": { - "_am": 3, - "id": "Insta Plant Capsule", + "_am": 20, + "id": "Large Enchant Bundle", }, }, { "_data": { - "_am": 3, - "id": "Large Gift Bag", + "_am": 30, + "id": "Large Potion Bundle", }, }, { "_data": { - "_am": 2, - "id": "Nametag", + "_am": 25, + "id": "Void Spinny Wheel Ticket", + }, + }, + { + "_data": { + "_am": 20, + "id": "Void Key", + }, + }, + { + "_data": { + "_am": 5, + "id": "Rainbow Mini Chest", }, }, ], @@ -147040,361 +185220,560 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 3, - "id": "Gift Bag", + "_am": 155, + "id": "Toy Ball", }, }, - "StarsRequired": 3, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 3500, - "id": "Diamonds", + "_am": 165, + "id": "Rainbow", }, }, - "StarsRequired": 3, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 3, - "id": "Damage", - "tn": 4, + "_am": 2, + "id": "Basic Coin Jar", }, }, - "StarsRequired": 3, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 4, - "id": "Comet", + "_am": 20, + "id": "Fruit Bundle", }, }, - "StarsRequired": 3, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 3, - "id": "Basic Coin Jar", + "_am": 175, + "id": "Apple", }, }, - "StarsRequired": 3, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 4500, - "id": "Diamonds", + "_am": 240, + "id": "Strength Flag", }, }, - "StarsRequired": 4, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 8, - "id": "Rainbow", + "_am": 210, + "id": "Banana", }, }, - "StarsRequired": 4, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 5, - "id": "Coins", - "tn": 4, + "_am": 20, + "id": "Enchant Essence", }, }, - "StarsRequired": 4, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 4, - "id": "Diamonds", - "tn": 3, + "_am": 240, + "id": "Toy Ball", }, }, - "StarsRequired": 4, + "StarsRequired": 8, }, { "Item": { "_data": { - "id": "Lucky Eggs", - "tn": 4, + "_am": 215, + "id": "Squeaky Toy", }, }, - "StarsRequired": 4, + "StarsRequired": 8, }, { "Item": { "_data": { - "id": "Large Gift Bag", + "_am": 210, + "id": "Toy Bone", }, }, - "StarsRequired": 5, + "StarsRequired": 8, }, { "Item": { "_data": { - "id": "Seed Bag", + "_am": 2, + "id": "Treasure Hideout Key Lower Half", }, }, - "StarsRequired": 5, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 25, - "id": "Apple", + "_am": 110, + "id": "Magnet Flag", }, }, - "StarsRequired": 5, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 2, - "id": "Treasure Hunter", - "tn": 4, + "_am": 140, + "id": "Diamonds Flag", }, }, - "StarsRequired": 5, + "StarsRequired": 9, }, { "Item": { "_data": { - "id": "Crystal Key", + "_am": 245, + "id": "Orange", }, }, - "StarsRequired": 5, + "StarsRequired": 9, }, { "Item": { "_data": { - "id": "Insta Plant Capsule", + "_am": 275, + "id": "Apple", }, }, - "StarsRequired": 6, + "StarsRequired": 9, }, { "Item": { "_data": { - "id": "Treasure Hunter", - "tn": 5, + "_am": 245, + "id": "Watermelon", }, }, - "StarsRequired": 6, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 12, + "_am": 145, "id": "Rainbow", }, }, - "StarsRequired": 6, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 5, - "id": "Diamonds Flag", + "_am": 90, + "id": "TNT", }, }, - "StarsRequired": 7, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 3, + "_am": 4, + "id": "Void Key Lower Half", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 7, + "id": "Breakable Sprinkler", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Mini Chest", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Gift Bag", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Treasure Hideout Key Upper Half", + }, + }, + "StarsRequired": 11, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Magic Shard", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "id": "Daycare Slot Voucher", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Coins", + "tn": 8, + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Void Spinny Wheel Ticket", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 20, "id": "Damage", - "tn": 4, + "tn": 9, }, }, - "StarsRequired": 7, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 3, - "id": "Fortune Flag", + "_am": 20, + "id": "Coins", + "tn": 9, }, }, - "StarsRequired": 7, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 5, - "id": "Squeaky Toy", + "_am": 15, + "id": "Gift Bag", }, }, - "StarsRequired": 8, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 6000, - "id": "Diamonds", + "_am": 15, + "id": "Mini Chest", }, }, - "StarsRequired": 8, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 3, + "_am": 8, "id": "Coins", - "tn": 4, + "tn": 6, }, }, - "StarsRequired": 8, + "StarsRequired": 15, }, { "Item": { "_data": { - "id": "Criticals", - "tn": 5, + "_am": 4, + "id": "Void Key", }, }, - "StarsRequired": 8, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 5, - "id": "Giant Coin Jar", + "_am": 9, + "id": "Large Potion Bundle", }, }, - "StarsRequired": 8, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 5, - "id": "Comet", + "_am": 8, + "id": "Insta Plant Capsule", }, }, - "StarsRequired": 9, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 3, + "_am": 6, + "id": "Mini Pinata", + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Mini Lucky Block", + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Lucky", + "tn": 8, + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Enchant Bundle", + }, + }, + "StarsRequired": 18, + }, + { + "Item": { + "_data": { + "_am": 7, + "id": "Treasure Hunter", + "tn": 8, + }, + }, + "StarsRequired": 18, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Void Spinny Wheel Ticket", + }, + }, + "StarsRequired": 18, + }, + { + "Item": { + "_data": { + "id": "Void Key Upper Half", + }, + }, + "StarsRequired": 19, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Crystal Key", + }, + }, + "StarsRequired": 19, + }, + { + "Item": { + "_data": { + "_am": 6, "id": "Damage", - "tn": 5, + "tn": 7, }, }, - "StarsRequired": 9, + "StarsRequired": 19, }, { "Item": { "_data": { "_am": 3, - "id": "Coins", - "tn": 5, + "id": "Charm Hammer", }, }, - "StarsRequired": 9, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 2, + "_am": 15, + "id": "Magic Shard", + }, + }, + "StarsRequired": 20, + }, + { + "Item": { + "_data": { + "_am": 15, "id": "Large Gift Bag", }, }, - "StarsRequired": 9, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 2, - "id": "Seed Bag", + "_am": 25, + "id": "Party Box", }, }, - "StarsRequired": 9, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 3, - "id": "Nametag", + "_am": 80, + "id": "Rainbow Flag", }, }, - "StarsRequired": 10, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 3, - "id": "Diamonds", - "tn": 3, + "_am": 120, + "id": "Rainbow Flag", }, }, - "StarsRequired": 10, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 3, - "id": "Damage", - "tn": 5, + "_am": 30, + "id": "Gift Bag", }, }, - "StarsRequired": 10, + "StarsRequired": 22, }, { "Item": { "_data": { "_am": 3, - "id": "Coins", + "id": "Secret Key", + }, + }, + "StarsRequired": 22, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Lucky", "tn": 5, }, }, - "StarsRequired": 11, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 3, - "id": "Large Gift Bag", + "_am": 25, + "id": "Diamonds", + "tn": 7, }, }, - "StarsRequired": 11, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 10, - "id": "TNT Crate", + "id": "Treasure Hunter", + "tn": 9, }, }, - "StarsRequired": 11, + "StarsRequired": 23, + }, + { + "Item": { + "_data": { + "_am": 80, + "id": "Shiny Flag", + }, + }, + "StarsRequired": 23, }, { "Item": { "_data": { + "_am": 7, "id": "Diamonds", - "tn": 5, + "tn": 6, }, }, - "StarsRequired": 12, + "StarsRequired": 24, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 24, + }, + { + "Item": { + "_data": { + "_am": 7, + "id": "Charm Stone", + }, + }, + "StarsRequired": 24, }, ], - "Title": "Master", - "UnlockableEggSlots": 3, - "UnlockablePetSlots": 3, + "Title": "Warden", + "UnlockableEggSlots": 1, + "UnlockablePetSlots": 0, }, - "configName": "9 | Master", + "configName": "30 | Warden", "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.375Z", - "hashShort": "89afaaeb0ac0ffa2", + "dateModified": "2025-07-05T23:36:13.714Z", + "hashShort": "1ba415372ca6f2d7", }, { "category": "Ranks", @@ -147403,90 +185782,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 1500, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 1500, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 1500, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 35, + "Amount": 70, "Type": 14, "Weight": 1, }, { - "Amount": 35, + "Amount": 70, "Type": 15, "Weight": 1, }, { - "Amount": 30, + "Amount": 45, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 2000, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 2000, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 2000, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 40, + "Amount": 90, "Type": 14, "Weight": 1, }, { - "Amount": 40, + "Amount": 90, "Type": 15, "Weight": 1, }, { - "Amount": 10, + "Amount": 50, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 3, + "Amount": 5, "Type": 44, "Weight": 1, }, { - "Amount": 3, + "Amount": 5, "Type": 43, "Weight": 1, }, { - "Amount": 3, + "Amount": 5, "Type": 38, "Weight": 1, }, { - "Amount": 3, + "Amount": 5, "Type": 37, "Weight": 1, }, { - "Amount": 3, + "Amount": 5, "Type": 39, "Weight": 1, }, @@ -147496,22 +185875,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 1250, + "Amount": 2500, "Type": 20, "Weight": 1, }, { - "Amount": 1250, + "Amount": 2500, "Type": 20, "Weight": 1, }, { - "Amount": 400, + "Amount": 1250, "Type": 40, "Weight": 1, }, { - "Amount": 40, + "Amount": 125, "Type": 41, "Weight": 1, }, @@ -147521,7 +185900,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 40, + "Amount": 50, "Type": 25, "Weight": 1, }, @@ -147538,96 +185917,96 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 2500, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 2500, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 2500, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 750, + "Amount": 900, "Type": 9, "Weight": 1, }, { - "Amount": 2500, + "Amount": 10000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 18, + "Amount": 60, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 18, + "Amount": 60, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 18, + "Amount": 60, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 44, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 43, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 39, "Weight": 1, }, { - "Amount": 1, + "Amount": 2, "Type": 76, "Weight": 1, }, { - "Amount": 1500, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 1500, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 500, + "Amount": 1400, "Type": 40, "Weight": 1, }, { - "Amount": 50, + "Amount": 140, "Type": 41, "Weight": 1, }, @@ -147649,93 +186028,96 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 2750, + "Amount": 4500, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 4500, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 4500, "Type": 21, "Weight": 1, }, { - "Amount": 900, + "Amount": 1200, "Type": 9, "Weight": 1, }, { - "Amount": 3000, + "Amount": 12000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 20, + "Amount": 50, "Type": 42, "Weight": 1, }, { - "Amount": 5, + "Amount": 8, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 8, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 8, "Type": 39, "Weight": 1, }, { - "Amount": 1, + "Amount": 2, "Type": 76, "Weight": 1, }, ], ], - "MaxEnchantsEquipped": 5, + "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 16, + "RankNumber": 31, "RankUpRewards": [ { "_data": { - "_am": 3, - "id": "Coins", - "tn": 7, + "_am": 3000000, + "id": "Diamonds", }, }, { "_data": { - "_am": 3, - "id": "Damage", - "tn": 7, + "_am": 30, + "id": "Large Enchant Bundle", }, }, { "_data": { - "_am": 3, - "id": "Diamonds", - "tn": 6, + "_am": 40, + "id": "Large Potion Bundle", }, }, { "_data": { - "_am": 10, - "id": "Large Gift Bag", + "_am": 40, + "id": "Void Spinny Wheel Ticket", }, }, { "_data": { - "_am": 2, - "id": "Enchant Bundle", + "_am": 30, + "id": "Void Key", + }, + }, + { + "_data": { + "_am": 10, + "id": "Rainbow Mini Chest", }, }, ], @@ -147743,571 +186125,604 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Large Gift Bag", + "_am": 190, + "id": "Apple", }, }, - "StarsRequired": 3, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 13000, - "id": "Diamonds", + "_am": 2, + "id": "Flag Bundle", }, }, - "StarsRequired": 3, + "StarsRequired": 5, }, { "Item": { "_data": { - "id": "Crystal Key", + "_am": 8, + "id": "Coins", + "tn": 6, }, }, - "StarsRequired": 3, + "StarsRequired": 5, }, { "Item": { "_data": { - "id": "Mini Pinata", + "_am": 20, + "id": "Void Key Lower Half", }, }, - "StarsRequired": 3, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 9, - "id": "Coins", - "tn": 5, + "_am": 95, + "id": "Shiny Flag", }, }, - "StarsRequired": 3, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 12500, - "id": "Diamonds", + "_am": 110, + "id": "Rainbow", }, }, - "StarsRequired": 4, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 9, - "id": "Damage", - "tn": 5, + "_am": 105, + "id": "TNT", }, }, - "StarsRequired": 4, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 120, - "id": "Apple", + "_am": 8, + "id": "Flag Bundle", }, }, - "StarsRequired": 4, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 3, - "id": "Strength Flag", + "_am": 220, + "id": "Watermelon", }, }, - "StarsRequired": 4, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 8, - "id": "Diamonds", - "tn": 5, + "_am": 15, + "id": "Basic Coin Jar", }, }, - "StarsRequired": 4, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 12, - "id": "Damage", - "tn": 5, + "_am": 225, + "id": "Fortune Flag", }, }, - "StarsRequired": 5, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 12, - "id": "Coins", - "tn": 5, + "_am": 20, + "id": "Treasure Hideout Key Lower Half", }, }, - "StarsRequired": 5, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 60, - "id": "Rainbow", + "_am": 255, + "id": "Pineapple", }, }, - "StarsRequired": 5, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 100, - "id": "Toy Ball", + "_am": 15, + "id": "Fruit Bundle", }, }, - "StarsRequired": 5, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 12, - "id": "Giant Coin Jar", + "_am": 15, + "id": "Seashell", }, }, - "StarsRequired": 5, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 40, - "id": "Rainbow", + "_am": 155, + "id": "Strength Flag", }, }, - "StarsRequired": 5, + "StarsRequired": 9, }, { "Item": { "_data": { - "id": "Crystal Key", + "_am": 25, + "id": "Millionaire Bucks", }, }, - "StarsRequired": 6, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 12, + "_am": 260, + "id": "Watermelon", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 210, + "id": "Apple", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 165, + "id": "Strength Flag", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 25, "id": "Coins", "tn": 5, }, }, - "StarsRequired": 6, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 6, + "_am": 15, "id": "Large Gift Bag", }, }, - "StarsRequired": 6, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 8, - "id": "Diamonds", - "tn": 5, + "_am": 20, + "id": "Treasure Hunter", + "tn": 9, }, }, - "StarsRequired": 6, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 120, - "id": "Squeaky Toy", + "_am": 5, + "id": "Lucky", + "tn": 10, }, }, - "StarsRequired": 6, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 13000, - "id": "Diamonds", + "_am": 15, + "id": "Charm Stone", }, }, - "StarsRequired": 6, + "StarsRequired": 12, }, { "Item": { "_data": { - "id": "Secret Key", + "_am": 5, + "id": "Mini Chest", }, }, - "StarsRequired": 7, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 2, - "id": "Rainbow Flag", + "_am": 15, + "id": "Large Potion Bundle", + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "id": "Booth Slot Voucher", + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 9, + "id": "Damage", + "tn": 9, }, }, - "StarsRequired": 7, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 90, - "id": "Banana", + "id": "Golden Prison Key", }, }, - "StarsRequired": 7, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 120, - "id": "Toy Ball", + "id": "Daycare Slot Voucher", }, }, - "StarsRequired": 7, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 3, - "id": "Spinny Wheel Ticket", + "_am": 15, + "id": "Millionaire Ticket", }, }, - "StarsRequired": 7, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 4, - "id": "Treasure Hunter", - "tn": 6, + "_am": 25, + "id": "Insta Plant Capsule", }, }, - "StarsRequired": 8, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 3, + "_am": 25, "id": "Mini Lucky Block", }, }, - "StarsRequired": 8, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 4, - "id": "Damage", - "tn": 6, + "_am": 3, + "id": "Gift Bag", }, }, - "StarsRequired": 8, + "StarsRequired": 14, }, { "Item": { "_data": { "_am": 4, - "id": "Coins", - "tn": 6, + "id": "Lucky", + "tn": 10, }, }, - "StarsRequired": 8, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 6, - "id": "Diamonds", - "tn": 5, + "_am": 2, + "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 9, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 2, - "id": "Lucky", - "tn": 6, + "_am": 15, + "id": "Basic Item Jar", }, }, - "StarsRequired": 9, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 80, - "id": "Orange", + "_am": 5, + "id": "Millionaire Ticket", }, }, - "StarsRequired": 9, + "StarsRequired": 15, }, { "Item": { "_data": { - "id": "Mini Chest", + "_am": 500000, + "id": "Diamonds", }, }, - "StarsRequired": 9, + "StarsRequired": 15, }, { "Item": { "_data": { "_am": 3, - "id": "Lucky", - "tn": 6, + "id": "Treasure Hideout Key Upper Half", }, }, - "StarsRequired": 10, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 2, - "id": "Shiny Flag", + "_am": 7, + "id": "Void Spinny Wheel Ticket", }, }, - "StarsRequired": 10, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 6, - "id": "Damage", - "tn": 6, + "_am": 3, + "id": "Mini Chest", }, }, - "StarsRequired": 10, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 6, - "id": "Treasure Hunter", + "_am": 15, + "id": "Damage", "tn": 6, }, }, - "StarsRequired": 11, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 60, - "id": "Rainbow", + "id": "Golden Prison Key", }, }, - "StarsRequired": 11, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 5, - "id": "Spinny Wheel Ticket", + "_am": 25, + "id": "Tech Key", }, }, - "StarsRequired": 11, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 13500, - "id": "Diamonds", + "_am": 6, + "id": "Treasure Hunter", + "tn": 7, }, }, - "StarsRequired": 12, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 6, - "id": "Coins", - "tn": 6, + "_am": 15, + "id": "Breakable Sprinkler", }, }, - "StarsRequired": 12, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 2, - "id": "Diamonds", - "tn": 5, + "_am": 15, + "id": "Party Box", }, }, - "StarsRequired": 12, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 2, - "id": "Treasure Hunter", - "tn": 7, + "_am": 100, + "id": "TNT Crate", }, }, - "StarsRequired": 13, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 4, - "id": "Party Box", + "_am": 7, + "id": "Void Spinny Wheel Ticket", }, }, - "StarsRequired": 13, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 2, + "_am": 8, "id": "Coins", - "tn": 7, + "tn": 10, }, }, - "StarsRequired": 13, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 2, - "id": "Damage", - "tn": 7, + "_am": 20, + "id": "Treasure Hideout Key", }, }, - "StarsRequired": 13, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 3, - "id": "Lucky", - "tn": 7, + "_am": 5, + "id": "Hacker Key", }, }, - "StarsRequired": 14, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 2, - "id": "Crystal Key", + "_am": 4, + "id": "Bucket O' Magic", }, }, - "StarsRequired": 14, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 220, - "id": "Rainbow", + "_am": 1000000, + "id": "Diamonds", }, }, - "StarsRequired": 14, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 3, - "id": "Enchant Bundle", + "_am": 9, + "id": "Insta Plant Capsule", }, }, - "StarsRequired": 14, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 12, - "id": "Large Gift Bag", + "_am": 2, + "id": "Prison Key", }, }, - "StarsRequired": 14, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 3, - "id": "Coins", - "tn": 8, + "_am": 4, + "id": "Large Potion Bundle", }, }, - "StarsRequired": 15, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 3, - "id": "Damage", - "tn": 8, + "_am": 7, + "id": "Diamond Gift Bag", }, }, - "StarsRequired": 15, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 3, + "_am": 15, "id": "Treasure Hunter", - "tn": 8, + "tn": 7, }, }, - "StarsRequired": 15, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 3, - "id": "Damage", - "tn": 8, + "_am": 25, + "id": "Large Gift Bag", }, }, - "StarsRequired": 15, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 2, - "id": "Lucky", - "tn": 8, + "_am": 25, + "id": "Seed Bag", }, }, - "StarsRequired": 15, + "StarsRequired": 23, }, { "Item": { "_data": { - "id": "Charm Stone", + "_am": 8, + "id": "Breakable Sprinkler", }, }, - "StarsRequired": 15, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 3, - "id": "Mini Chest", + "_am": 20, + "id": "Diamonds", + "tn": 8, }, }, - "StarsRequired": 16, + "StarsRequired": 23, }, ], - "Title": "Overlord", - "UnlockableEggSlots": 1, - "UnlockablePetSlots": 1, + "Title": "Supreme Oracle", + "UnlockableEggSlots": 0, + "UnlockablePetSlots": 0, }, - "configName": "16 | Overlord", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.382Z", - "hashShort": "31790679d218ab30", + "configName": "31 | Supreme Oracle", + "dateCreated": "2025-07-05T23:23:26.624Z", + "dateModified": "2025-07-05T23:23:26.624Z", + "hashShort": "062060e3a2583349", }, { "category": "Ranks", @@ -148316,80 +186731,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 1000, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 1000, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 1000, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 28, + "Amount": 80, "Type": 14, "Weight": 1, }, { - "Amount": 28, + "Amount": 80, "Type": 15, "Weight": 1, }, { - "Amount": 20, + "Amount": 50, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 1500, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 1500, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 1500, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 32, + "Amount": 100, "Type": 14, "Weight": 1, }, { - "Amount": 32, + "Amount": 100, "Type": 15, "Weight": 1, }, { - "Amount": 6, + "Amount": 60, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 3, + "Amount": 5, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 5, "Type": 38, "Weight": 1, }, { - "Amount": 3, + "Amount": 5, "Type": 37, "Weight": 1, }, { - "Amount": 3, + "Amount": 5, "Type": 39, "Weight": 1, }, @@ -148399,118 +186824,138 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 1000, + "Amount": 2750, "Type": 20, "Weight": 1, }, { - "Amount": 1000, + "Amount": 2750, "Type": 20, "Weight": 1, }, { - "Amount": 200, + "Amount": 1500, "Type": 40, "Weight": 1, }, { - "Amount": 20, + "Amount": 150, "Type": 41, "Weight": 1, }, { - "Amount": 26, + "Amount": 60, "Type": 26, "Weight": 1, }, { - "Amount": 25, + "Amount": 60, "Type": 25, "Weight": 1, }, + { + "Amount": 80, + "Type": 46, + "Weight": 1, + }, + { + "Amount": 80, + "Type": 45, + "Weight": 1, + }, ], [ { - "Amount": 1800, + "Amount": 3900, "Type": 21, "Weight": 1, }, { - "Amount": 1800, + "Amount": 3900, "Type": 21, "Weight": 1, }, { - "Amount": 1800, + "Amount": 3900, "Type": 21, "Weight": 1, }, { - "Amount": 250, + "Amount": 1000, "Type": 9, "Weight": 1, }, { - "Amount": 2000, + "Amount": 15000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 10, + "Amount": 70, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 10, + "Amount": 70, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 10, + "Amount": 70, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 39, "Weight": 1, }, { - "Amount": 1, + "Amount": 2, "Type": 76, "Weight": 1, }, { - "Amount": 2000, + "Amount": 3250, "Type": 20, "Weight": 1, }, { - "Amount": 2000, + "Amount": 3250, "Type": 20, "Weight": 1, }, { - "Amount": 300, + "Amount": 1600, "Type": 40, "Weight": 1, }, { - "Amount": 30, + "Amount": 150, "Type": 41, "Weight": 1, }, @@ -148532,363 +186977,485 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 2000, + "Amount": 4750, "Type": 21, "Weight": 1, }, { - "Amount": 2000, + "Amount": 4750, "Type": 21, "Weight": 1, }, { - "Amount": 2000, + "Amount": 4750, "Type": 21, "Weight": 1, }, { - "Amount": 350, + "Amount": 1400, "Type": 9, "Weight": 1, }, { - "Amount": 2500, + "Amount": 15000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 2, + "Amount": 60, "Type": 42, "Weight": 1, }, { - "Amount": 5, + "Amount": 8, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 8, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 8, "Type": 39, "Weight": 1, }, { - "Amount": 1, + "Amount": 2, "Type": 76, "Weight": 1, }, ], ], - "MaxEnchantsEquipped": 4, + "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 10, + "RankNumber": 32, "RankUpRewards": [ { "_data": { - "id": "Damage", - "tn": 6, + "_am": 5000000, + "id": "Diamonds", }, }, { "_data": { - "id": "Lucky", - "tn": 6, + "_am": 50, + "id": "Large Enchant Bundle", }, }, { "_data": { - "_am": 5, - "id": "Spinny Wheel Ticket", + "_am": 50, + "id": "Large Potion Bundle", }, }, { "_data": { - "_am": 2, - "id": "Nametag", + "_am": 15, + "id": "Rainbow Mini Chest", }, }, + ], + "Rewards": [ { - "_data": { - "_am": 2, - "id": "Large Gift Bag", + "Item": { + "_data": { + "_am": 20, + "id": "Large Enchant Bundle", + }, }, + "StarsRequired": 7, }, - ], - "Rewards": [ { "Item": { "_data": { - "_am": 5, - "id": "Gift Bag", + "_am": 240, + "id": "Rainbow", }, }, - "StarsRequired": 4, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 5000, - "id": "Diamonds", + "_am": 85, + "id": "Rainbow Flag", }, }, - "StarsRequired": 4, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 5, - "id": "TNT Crate", + "_am": 15, + "id": "Large Enchant Bundle", }, }, - "StarsRequired": 4, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 5, - "id": "Comet", + "_am": 100, + "id": "Shiny Flag", }, }, - "StarsRequired": 4, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 6, - "id": "Damage", - "tn": 3, + "_am": 155, + "id": "Toy Bone", }, }, - "StarsRequired": 4, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 5000, - "id": "Diamonds", + "_am": 125, + "id": "Squeaky Toy", }, }, - "StarsRequired": 4, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 3, - "id": "Coins", - "tn": 4, + "_am": 300, + "id": "Rainbow", }, }, - "StarsRequired": 5, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 35, - "id": "Apple", + "_am": 15, + "id": "Toy Bundle", }, }, - "StarsRequired": 5, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 6, - "id": "Magnet Flag", + "_am": 270, + "id": "Banana", }, }, - "StarsRequired": 5, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 4, - "id": "Damage", - "tn": 4, + "_am": 140, + "id": "Banana", }, }, - "StarsRequired": 5, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 3, - "id": "Insta Plant Capsule", + "_am": 235, + "id": "Magnet Flag", }, }, - "StarsRequired": 5, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 6, - "id": "Fortune Flag", + "_am": 235, + "id": "Diamonds Flag", }, }, - "StarsRequired": 5, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 35, - "id": "Banana", + "_am": 30, + "id": "Toy Bundle", }, }, - "StarsRequired": 6, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 2, - "id": "Damage", + "_am": 230, + "id": "Toy Ball", + }, + }, + "StarsRequired": 10, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Coins", "tn": 5, }, }, - "StarsRequired": 6, + "StarsRequired": 10, }, { "Item": { "_data": { - "id": "Crystal Key", + "_am": 15, + "id": "Basic Coin Jar", }, }, - "StarsRequired": 6, + "StarsRequired": 11, }, { "Item": { "_data": { "_am": 20, - "id": "TNT", + "id": "Enchant Essence", }, }, - "StarsRequired": 6, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 3, - "id": "Diamonds", - "tn": 3, + "_am": 20, + "id": "Treasure Hideout Key Lower Half", }, }, - "StarsRequired": 7, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 2, - "id": "Lucky", - "tn": 4, + "_am": 25, + "id": "Millionaire Ticket", }, }, - "StarsRequired": 7, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 35, - "id": "Pineapple", + "_am": 20, + "id": "Void Key Lower Half", }, }, - "StarsRequired": 7, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 10, - "id": "Squeaky Toy", + "_am": 15, + "id": "Gift Bag", }, }, - "StarsRequired": 7, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 3, - "id": "Insta Plant Capsule", + "_am": 8, + "id": "Prison Key", }, }, - "StarsRequired": 7, + "StarsRequired": 12, }, { "Item": { "_data": { "_am": 2, - "id": "Treasure Hunter", - "tn": 5, + "id": "Charm Chisel", }, }, - "StarsRequired": 8, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 2, + "_am": 30, "id": "Damage", - "tn": 5, + "tn": 10, }, }, - "StarsRequired": 8, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 2, + "_am": 3, + "id": "Magic Shard", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Seed Bag", + }, + }, + "StarsRequired": 13, + }, + { + "Item": { + "_data": { + "_am": 15, "id": "Coins", - "tn": 5, + "tn": 6, }, }, - "StarsRequired": 8, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 2, - "id": "Large Gift Bag", + "_am": 4, + "id": "Void Spinny Wheel Ticket", }, }, - "StarsRequired": 8, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 7750, - "id": "Diamonds", + "id": "Charm Chisel", }, }, - "StarsRequired": 8, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 10, - "id": "Toy Ball", + "_am": 20, + "id": "Tech Spinny Wheel Ticket", }, }, - "StarsRequired": 9, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 8000, - "id": "Diamonds", + "_am": 15, + "id": "Charm Stone", }, }, - "StarsRequired": 9, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 2, - "id": "Coins", - "tn": 4, + "_am": 15, + "id": "Void Key Lower Half", }, }, - "StarsRequired": 9, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Rainbow Mini Chest", + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Treasure Hideout Key Upper Half", + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Gift Bag", + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Mini Chest", + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 9, + "id": "Millionaire Bucks", + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Mini Chest", + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Spinny Wheel Ticket", + }, + }, + "StarsRequired": 18, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Secret Key", + }, + }, + "StarsRequired": 18, + }, + { + "Item": { + "_data": { + "id": "Charm Chisel", + }, + }, + "StarsRequired": 18, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Damage", + "tn": 6, + }, + }, + "StarsRequired": 19, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Treasure Hideout Key", + }, + }, + "StarsRequired": 19, }, { "Item": { @@ -148897,128 +187464,155 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 9, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 2, - "id": "Seed Bag", + "_am": 15, + "id": "Diamonds", + "tn": 7, }, }, - "StarsRequired": 9, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 2, - "id": "Crystal Key", + "id": "Mini Pinata", }, }, - "StarsRequired": 9, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 8, - "id": "Toy Bone", + "id": "Booth Slot Voucher", }, }, - "StarsRequired": 10, + "StarsRequired": 20, }, { "Item": { "_data": { "_am": 2, - "id": "Damage", - "tn": 5, + "id": "Coins", + "tn": 11, }, }, - "StarsRequired": 10, + "StarsRequired": 21, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Bucket O' Magic", + }, + }, + "StarsRequired": 21, }, { "Item": { "_data": { "_am": 2, - "id": "Coins", - "tn": 5, + "id": "Lucky", + "tn": 9, }, }, - "StarsRequired": 10, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 3, - "id": "Large Gift Bag", + "_am": 2, + "id": "Charm Chisel", }, }, - "StarsRequired": 11, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 5, - "id": "Insta Plant Capsule", + "_am": 40, + "id": "TNT Crate", }, }, - "StarsRequired": 11, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 10, - "id": "Comet", + "_am": 8, + "id": "Mini Chest", }, }, - "StarsRequired": 11, + "StarsRequired": 22, }, { "Item": { "_data": { - "id": "Coins", - "tn": 6, + "_am": 3, + "id": "Lucky", + "tn": 9, }, }, - "StarsRequired": 12, + "StarsRequired": 24, }, { "Item": { "_data": { - "id": "Treasure Hunter", - "tn": 6, + "id": "Secret Key", }, }, - "StarsRequired": 12, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 20, - "id": "Rainbow", + "_am": 4, + "id": "Damage", + "tn": 10, }, }, - "StarsRequired": 12, + "StarsRequired": 24, }, { "Item": { "_data": { "_am": 2, - "id": "Agility", - "tn": 1, + "id": "Void Key", }, }, - "StarsRequired": 13, + "StarsRequired": 25, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Treasure Hunter", + "tn": 8, + }, + }, + "StarsRequired": 25, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 25, }, ], - "Title": "Legend", - "UnlockableEggSlots": 3, - "UnlockablePetSlots": 3, + "Title": "Radiant Titan", + "UnlockableEggSlots": 0, + "UnlockablePetSlots": 0, }, - "configName": "10 | Legend", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.394Z", - "hashShort": "61b4b9f9fcfe72b3", + "configName": "32 | Radiant Titan", + "dateCreated": "2025-07-05T23:23:26.624Z", + "dateModified": "2025-07-05T23:23:26.624Z", + "hashShort": "04f9e9ad60a1d2da", }, { "category": "Ranks", @@ -149027,80 +187621,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 1200, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 1200, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 1200, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 30, + "Amount": 90, "Type": 14, "Weight": 1, }, { - "Amount": 30, + "Amount": 90, "Type": 15, "Weight": 1, }, { - "Amount": 25, + "Amount": 60, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 1700, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 1700, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 1700, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 35, + "Amount": 120, "Type": 14, "Weight": 1, }, { - "Amount": 35, + "Amount": 120, "Type": 15, "Weight": 1, }, { - "Amount": 8, + "Amount": 70, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 3, + "Amount": 6, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 3, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 3, + "Amount": 6, "Type": 39, "Weight": 1, }, @@ -149110,118 +187714,138 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 1200, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 1200, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 250, + "Amount": 1750, "Type": 40, "Weight": 1, }, { - "Amount": 25, + "Amount": 160, "Type": 41, "Weight": 1, }, { - "Amount": 30, + "Amount": 70, "Type": 26, "Weight": 1, }, { - "Amount": 28, + "Amount": 70, "Type": 25, "Weight": 1, }, + { + "Amount": 90, + "Type": 46, + "Weight": 1, + }, + { + "Amount": 90, + "Type": 45, + "Weight": 1, + }, ], [ { - "Amount": 1950, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 1950, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 1950, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 300, + "Amount": 1200, "Type": 9, "Weight": 1, }, { - "Amount": 2500, + "Amount": 16000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 12, + "Amount": 75, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 12, + "Amount": 75, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 12, + "Amount": 75, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 39, "Weight": 1, }, { - "Amount": 1, + "Amount": 2, "Type": 76, "Weight": 1, }, { - "Amount": 1800, + "Amount": 3500, "Type": 20, "Weight": 1, }, { - "Amount": 1800, + "Amount": 3500, "Type": 20, "Weight": 1, }, { - "Amount": 350, + "Amount": 1800, "Type": 40, "Weight": 1, }, { - "Amount": 35, + "Amount": 170, "Type": 41, "Weight": 1, }, @@ -149243,536 +187867,640 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 2200, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 2200, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 2200, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 400, + "Amount": 1750, "Type": 9, "Weight": 1, }, { - "Amount": 3000, + "Amount": 17000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 4, + "Amount": 70, "Type": 42, "Weight": 1, }, { - "Amount": 5, + "Amount": 8, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 8, "Type": 37, "Weight": 1, }, - { - "Amount": 5, - "Type": 39, - "Weight": 1, + { + "Amount": 8, + "Type": 39, + "Weight": 1, + }, + { + "Amount": 2, + "Type": 76, + "Weight": 1, + }, + ], + ], + "MaxEnchantsEquipped": 6, + "MaximumActiveGoals": 4, + "RankNumber": 33, + "RankUpRewards": [ + { + "_data": { + "_am": 5000000, + "id": "Diamonds", + }, + }, + { + "_data": { + "_am": 50, + "id": "Large Enchant Bundle", + }, + }, + { + "_data": { + "_am": 50, + "id": "Large Potion Bundle", + }, + }, + { + "_data": { + "_am": 20, + "id": "Rainbow Mini Chest", + }, + }, + ], + "Rewards": [ + { + "Item": { + "_data": { + "_am": 15, + "id": "Treasure Hideout Key Lower Half", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Damage", + "tn": 5, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 215, + "id": "Magnet Flag", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Fruit Bundle", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 240, + "id": "Diamonds Flag", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 70, + "id": "TNT Crate", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Treasure Hunter", + "tn": 7, + }, }, - { - "Amount": 1, - "Type": 76, - "Weight": 1, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 250, + "id": "Toy Bone", + }, }, - ], - ], - "MaxEnchantsEquipped": 5, - "MaximumActiveGoals": 4, - "RankNumber": 11, - "RankUpRewards": [ + "StarsRequired": 9, + }, { - "_data": { - "id": "Coins", - "tn": 6, + "Item": { + "_data": { + "_am": 15, + "id": "Enchant Essence", + }, }, + "StarsRequired": 10, }, { - "_data": { - "id": "Treasure Hunter", - "tn": 6, + "Item": { + "_data": { + "_am": 20, + "id": "Comet", + }, }, + "StarsRequired": 10, }, { - "_data": { - "id": "Lucky", - "tn": 6, + "Item": { + "_data": { + "id": "Enchant Bundle", + }, }, + "StarsRequired": 10, }, { - "_data": { - "id": "Crystal Key", + "Item": { + "_data": { + "_am": 125, + "id": "Coins Flag", + }, }, + "StarsRequired": 10, }, { - "_data": { - "_am": 4, - "id": "Spinny Wheel Ticket", + "Item": { + "_data": { + "_am": 15, + "id": "Coins", + "tn": 7, + }, }, + "StarsRequired": 11, }, { - "_data": { - "_am": 3, - "id": "Large Gift Bag", + "Item": { + "_data": { + "_am": 175, + "id": "Strength Flag", + }, }, + "StarsRequired": 11, }, - ], - "Rewards": [ { "Item": { "_data": { - "_am": 6, - "id": "Gift Bag", + "_am": 20, + "id": "Basic Coin Jar", }, }, - "StarsRequired": 3, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 6750, - "id": "Diamonds", + "_am": 25, + "id": "Treasure Hideout Key Upper Half", }, }, - "StarsRequired": 3, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 5, - "id": "Damage", - "tn": 3, + "_am": 8, + "id": "Toy Bundle", }, }, - "StarsRequired": 3, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 4, - "id": "Spinny Wheel Ticket", + "_am": 6, + "id": "Large Enchant Bundle", }, }, - "StarsRequired": 3, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 3, - "id": "Lucky", - "tn": 4, + "_am": 245, + "id": "Toy Ball", }, }, - "StarsRequired": 3, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 7500, - "id": "Diamonds", + "_am": 7, + "id": "Fantasy Key", }, }, - "StarsRequired": 3, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 5, - "id": "Insta Plant Capsule", + "_am": 7, + "id": "Breakable Sprinkler", }, }, - "StarsRequired": 4, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 3, - "id": "Treasure Hunter", - "tn": 5, + "id": "Secret Key", }, }, - "StarsRequired": 4, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 2, - "id": "Damage", - "tn": 5, + "_am": 20, + "id": "Pet Cube", }, }, - "StarsRequired": 4, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 5, - "id": "Coins", - "tn": 5, + "id": "Charm Hammer", }, }, - "StarsRequired": 4, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 12, - "id": "TNT Crate", + "id": "Damage", + "tn": 9, }, }, - "StarsRequired": 5, + "StarsRequired": 15, }, { "Item": { "_data": { "_am": 2, - "id": "Diamonds", - "tn": 4, + "id": "Ultra Pet Cube", }, }, - "StarsRequired": 5, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 3, "id": "Lucky", - "tn": 5, + "tn": 9, }, }, - "StarsRequired": 5, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 15, - "id": "Rainbow", + "id": "Diamonds", + "tn": 9, }, }, - "StarsRequired": 5, + "StarsRequired": 16, }, { "Item": { "_data": { "_am": 25, - "id": "Toy Bone", + "id": "Diamonds", + "tn": 6, }, }, - "StarsRequired": 5, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 7, - "id": "Insta Plant Capsule", + "_am": 20, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 6, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 12, - "id": "Hasty Flag", + "_am": 15, + "id": "Hacker Key", }, }, - "StarsRequired": 6, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 50, - "id": "Banana", + "_am": 6, + "id": "Void Spinny Wheel Ticket", }, }, - "StarsRequired": 6, + "StarsRequired": 17, }, { "Item": { "_data": { "_am": 3, - "id": "Damage", - "tn": 5, + "id": "Fantasy Spinny Wheel Ticket", }, }, - "StarsRequired": 6, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 2, - "id": "Crystal Key", + "_am": 15, + "id": "Gift Bag", }, }, - "StarsRequired": 6, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 10, - "id": "Coins", - "tn": 4, + "id": "Mini Chest", }, }, - "StarsRequired": 7, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 12, - "id": "TNT Crate", + "_am": 20, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 7, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 10, - "id": "Fortune Flag", + "_am": 9, + "id": "Fantasy Key Upper Half", }, }, - "StarsRequired": 7, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 10, - "id": "Damage", - "tn": 4, + "_am": 15, + "id": "Diamond Gift Bag", }, }, - "StarsRequired": 7, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 3, - "id": "Large Gift Bag", + "_am": 6, + "id": "Coins", + "tn": 9, }, }, - "StarsRequired": 7, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 5, - "id": "Spinny Wheel Ticket", + "id": "Coins", + "tn": 11, }, }, - "StarsRequired": 8, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 5, - "id": "Seed Bag", + "_am": 25, + "id": "Fantasy Key Upper Half", }, }, - "StarsRequired": 8, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 2, - "id": "Crystal Key", + "_am": 20, + "id": "Lucky", + "tn": 6, }, }, - "StarsRequired": 8, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 40, - "id": "Toy Bone", + "_am": 20, + "id": "Mini Chest", }, }, - "StarsRequired": 8, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 8500, - "id": "Diamonds", + "id": "Golden Prison Key", }, }, - "StarsRequired": 9, + "StarsRequired": 21, }, { "Item": { "_data": { - "id": "Tap Power", - "tn": 5, + "_am": 2, + "id": "Lucky", + "tn": 7, }, }, - "StarsRequired": 9, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 9000, - "id": "Diamonds", + "_am": 20, + "id": "Basic Item Jar", }, }, - "StarsRequired": 9, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 3, - "id": "Coins", - "tn": 5, + "_am": 2, + "id": "Bucket O' Magic", }, }, - "StarsRequired": 9, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 2, - "id": "Damage", - "tn": 6, + "_am": 20, + "id": "Tech Key", }, }, - "StarsRequired": 10, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 2, - "id": "Lucky", - "tn": 6, + "_am": 15, + "id": "Gift Bag", }, }, - "StarsRequired": 10, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 4, - "id": "Large Gift Bag", + "_am": 8, + "id": "Fantasy Key", }, }, - "StarsRequired": 10, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 12, - "id": "Insta Plant Capsule", + "_am": 20, + "id": "Large Gift Bag", }, }, - "StarsRequired": 10, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 6, - "id": "Seed Bag", + "_am": 2, + "id": "Charm Chisel", }, }, - "StarsRequired": 11, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 8, - "id": "Giant Coin Jar", + "_am": 20, + "id": "Large Potion Bundle", }, }, - "StarsRequired": 11, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 7, - "id": "Comet", + "_am": 4, + "id": "Damage", + "tn": 9, }, }, - "StarsRequired": 11, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 10500, - "id": "Diamonds", + "_am": 25, + "id": "Ultra Pet Cube", }, }, - "StarsRequired": 12, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 2, - "id": "Damage", - "tn": 6, + "_am": 3, + "id": "Crystal Key", }, }, - "StarsRequired": 12, + "StarsRequired": 25, }, { "Item": { "_data": { + "_am": 500000, "id": "Diamonds", - "tn": 5, }, }, - "StarsRequired": 12, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 2, - "id": "Coins", - "tn": 6, + "_am": 75, + "id": "TNT Crate", }, }, - "StarsRequired": 13, + "StarsRequired": 26, }, { "Item": { "_data": { - "id": "Bonus", - "tn": 1, + "_am": 8, + "id": "Mini Pinata", }, }, - "StarsRequired": 13, + "StarsRequired": 26, }, { "Item": { "_data": { - "id": "Charm Stone", + "_am": 25, + "id": "Large Gift Bag", }, }, - "StarsRequired": 14, + "StarsRequired": 26, }, ], - "Title": "Champion", - "UnlockableEggSlots": 3, - "UnlockablePetSlots": 3, + "Title": "Ascendant Oracle", + "UnlockableEggSlots": 0, + "UnlockablePetSlots": 0, }, - "configName": "11 | Champion", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.392Z", - "hashShort": "86734b71ba2cf3e9", + "configName": "33 | Ascendant Oracle", + "dateCreated": "2025-07-05T23:23:26.624Z", + "dateModified": "2025-07-05T23:23:26.624Z", + "hashShort": "cdedf1c57b2eab9f", }, { "category": "Ranks", @@ -149781,80 +188509,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 1350, + "Amount": 1750, "Type": 21, "Weight": 1, }, { - "Amount": 1350, + "Amount": 1750, "Type": 21, "Weight": 1, }, { - "Amount": 1350, + "Amount": 1500, "Type": 21, "Weight": 1, }, { - "Amount": 32, + "Amount": 40, "Type": 14, "Weight": 1, }, { - "Amount": 32, + "Amount": 40, "Type": 15, "Weight": 1, }, { - "Amount": 25, + "Amount": 32, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 1900, + "Amount": 2250, "Type": 21, "Weight": 1, }, { - "Amount": 1900, + "Amount": 2250, "Type": 21, "Weight": 1, }, { - "Amount": 1900, + "Amount": 2250, "Type": 21, "Weight": 1, }, { - "Amount": 37, + "Amount": 40, "Type": 14, "Weight": 1, }, { - "Amount": 37, + "Amount": 40, "Type": 15, "Weight": 1, }, { - "Amount": 8, + "Amount": 15, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 3, + "Amount": 4, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 4, "Type": 38, "Weight": 1, }, { - "Amount": 3, + "Amount": 4, "Type": 37, "Weight": 1, }, { - "Amount": 3, + "Amount": 4, "Type": 39, "Weight": 1, }, @@ -149864,118 +188602,138 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 1400, + "Amount": 1500, "Type": 20, "Weight": 1, }, { - "Amount": 1400, + "Amount": 1500, "Type": 20, "Weight": 1, }, { - "Amount": 290, + "Amount": 500, "Type": 40, "Weight": 1, }, { - "Amount": 30, + "Amount": 50, "Type": 41, "Weight": 1, }, { - "Amount": 34, + "Amount": 50, "Type": 26, "Weight": 1, }, { - "Amount": 32, + "Amount": 40, "Type": 25, "Weight": 1, }, + { + "Amount": 75, + "Type": 46, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 45, + "Weight": 1, + }, ], [ { - "Amount": 2100, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 2100, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 2100, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 350, + "Amount": 400, "Type": 9, "Weight": 1, }, { - "Amount": 2500, + "Amount": 3500, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 14, + "Amount": 20, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 14, + "Amount": 20, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 14, + "Amount": 20, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 5, "Type": 38, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 37, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 39, "Weight": 1, }, { - "Amount": 1, + "Amount": 2, "Type": 76, "Weight": 1, }, { - "Amount": 2000, + "Amount": 1750, "Type": 20, "Weight": 1, }, { - "Amount": 2000, + "Amount": 1750, "Type": 20, "Weight": 1, }, { - "Amount": 400, + "Amount": 500, "Type": 40, "Weight": 1, }, { - "Amount": 38, + "Amount": 50, "Type": 41, "Weight": 1, }, @@ -149997,105 +188755,112 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 2400, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 2400, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 2400, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 450, + "Amount": 550, "Type": 9, "Weight": 1, }, { - "Amount": 3000, + "Amount": 4000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 5, + "Amount": 20, "Type": 42, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 39, "Weight": 1, }, { - "Amount": 1, + "Amount": 2, "Type": 76, "Weight": 1, }, ], ], - "MaxEnchantsEquipped": 5, + "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 13, + "RankNumber": 20, "RankUpRewards": [ { "_data": { - "_am": 12, - "id": "Treasure Hunter", - "tn": 5, + "_am": 30, + "id": "Lucky", + "tn": 8, }, }, { "_data": { - "_am": 10, - "id": "Lucky", - "tn": 5, + "_am": 30, + "id": "Coins", + "tn": 8, }, }, { "_data": { - "_am": 15, - "id": "Diamonds", - "tn": 3, + "_am": 30, + "id": "Damage", + "tn": 8, }, }, { "_data": { - "_am": 2, - "id": "Crystal Key", + "_am": 30, + "id": "Treasure Hunter", + "tn": 8, }, }, { "_data": { - "_am": 15, - "id": "Hasty Flag", + "_am": 100000, + "id": "Diamonds", }, }, { "_data": { - "_am": 200, - "id": "Rainbow", + "_am": 6, + "id": "Crystal Key", }, }, { "_data": { - "_am": 50000, - "id": "Diamonds", + "_am": 4, + "id": "Secret Key", + }, + }, + { + "_data": { + "_am": 10, + "id": "Mini Chest", }, }, ], @@ -150103,513 +188868,578 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 7, - "id": "Gift Bag", + "_am": 6, + "id": "Large Gift Bag", }, }, - "StarsRequired": 3, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 10000, + "_am": 100000, "id": "Diamonds", }, }, - "StarsRequired": 3, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 4, - "id": "TNT Crate", + "_am": 15, + "id": "Coins", + "tn": 6, }, }, - "StarsRequired": 3, + "StarsRequired": 4, }, { "Item": { "_data": { "_am": 10, - "id": "Comet", + "id": "Mini Lucky Block", }, }, - "StarsRequired": 3, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 50, - "id": "Banana", + "_am": 6, + "id": "Crystal Key", }, }, - "StarsRequired": 4, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 12, - "id": "Magnet Flag", + "_am": 100000, + "id": "Diamonds", }, }, - "StarsRequired": 4, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 15, + "_am": 20, "id": "Damage", - "tn": 4, + "tn": 6, }, }, - "StarsRequired": 4, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 7, - "id": "Treasure Hunter", - "tn": 5, + "_am": 300, + "id": "Banana", }, }, - "StarsRequired": 5, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 10500, - "id": "Diamonds", + "_am": 10, + "id": "Mini Pinata", }, }, - "StarsRequired": 5, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 10, - "id": "Coins", - "tn": 5, + "_am": 20, + "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 5, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 3, + "_am": 15, + "id": "Treasure Hunter", + "tn": 6, + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "Party Box", + }, + }, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 15, "id": "Diamonds", - "tn": 4, + "tn": 6, }, }, - "StarsRequired": 6, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 5, - "id": "Lucky", - "tn": 5, + "_am": 300, + "id": "Rainbow", }, }, - "StarsRequired": 6, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 50, - "id": "Pineapple", + "_am": 300, + "id": "Apple", }, }, - "StarsRequired": 6, + "StarsRequired": 8, + }, + { + "Item": { + "_data": { + "_am": 40, + "id": "Flag Bundle", + }, + }, + "StarsRequired": 9, }, { "Item": { "_data": { "_am": 30, - "id": "Squeaky Toy", + "id": "Coins", + "tn": 7, }, }, - "StarsRequired": 6, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 6, - "id": "Insta Plant Capsule", + "_am": 3, + "id": "Mini Chest", }, }, - "StarsRequired": 6, + "StarsRequired": 9, }, { "Item": { "_data": { - "id": "Treasure Hunter", + "_am": 20, + "id": "Diamonds", "tn": 6, }, }, - "StarsRequired": 6, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 3, - "id": "Nametag", + "_am": 40, + "id": "Damage", + "tn": 6, }, }, - "StarsRequired": 7, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 12, - "id": "Coins Flag", + "_am": 40, + "id": "Coins", + "tn": 6, }, }, - "StarsRequired": 7, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 8, - "id": "Giant Coin Jar", + "_am": 40, + "id": "Potion Bundle", }, }, - "StarsRequired": 7, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 7, - "id": "Damage", - "tn": 5, + "_am": 75, + "id": "Toy Bundle", }, }, - "StarsRequired": 7, + "StarsRequired": 10, }, { "Item": { "_data": { - "id": "Crystal Key", + "_am": 100000, + "id": "Diamonds", }, }, - "StarsRequired": 7, + "StarsRequired": 10, }, { "Item": { "_data": { "_am": 4, - "id": "Large Gift Bag", + "id": "Secret Key", }, }, - "StarsRequired": 7, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 18, - "id": "Magnet Flag", + "_am": 15, + "id": "Rainbow Flag", }, }, - "StarsRequired": 8, + "StarsRequired": 11, }, { "Item": { "_data": { "_am": 6, - "id": "Coins", - "tn": 5, + "id": "Crystal Key", }, }, - "StarsRequired": 8, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 2, - "id": "Spinny Wheel Ticket", + "_am": 20, + "id": "Shiny Flag", }, }, - "StarsRequired": 8, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 6, - "id": "Seed Bag", + "_am": 40, + "id": "Damage", + "tn": 6, }, }, - "StarsRequired": 8, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 2, - "id": "Crystal Key", + "_am": 40, + "id": "Coins", + "tn": 7, }, }, - "StarsRequired": 8, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 6, - "id": "Damage", - "tn": 5, + "_am": 300, + "id": "Rainbow", }, }, - "StarsRequired": 8, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 6, - "id": "Coins", - "tn": 5, + "_am": 10, + "id": "Mini Chest", }, }, - "StarsRequired": 8, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 4, - "id": "Large Gift Bag", + "_am": 15, + "id": "Treasure Hunter", + "tn": 8, }, }, - "StarsRequired": 8, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 11000, - "id": "Diamonds", + "_am": 6, + "id": "Tech Key", }, }, - "StarsRequired": 8, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 40, - "id": "Toy Bone", + "_am": 15, + "id": "Coins", + "tn": 8, }, }, - "StarsRequired": 8, + "StarsRequired": 14, }, { "Item": { "_data": { "_am": 15, - "id": "Diamonds Flag", + "id": "Damage", + "tn": 8, }, }, - "StarsRequired": 9, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 35, - "id": "Rainbow", + "_am": 30, + "id": "Tech Spinny Wheel Ticket", }, }, - "StarsRequired": 9, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 3, - "id": "Spinny Wheel Ticket", + "_am": 15, + "id": "Shiny Flag", }, }, - "StarsRequired": 9, + "StarsRequired": 14, }, { "Item": { "_data": { - "id": "Coins", + "_am": 30, + "id": "Damage", "tn": 7, }, }, - "StarsRequired": 10, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 6, - "id": "Seed Bag", + "_am": 25, + "id": "Treasure Hunter", + "tn": 7, }, }, - "StarsRequired": 10, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 10000, - "id": "Diamonds", + "_am": 30, + "id": "Enchant Bundle", }, }, - "StarsRequired": 10, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 2, + "_am": 30, "id": "Coins", - "tn": 6, + "tn": 7, }, }, - "StarsRequired": 10, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 12, - "id": "Comet", + "_am": 15, + "id": "Diamonds", + "tn": 6, }, }, - "StarsRequired": 11, + "StarsRequired": 14, }, { "Item": { "_data": { - "id": "Damage", - "tn": 5, + "_am": 8, + "id": "Coins", + "tn": 11, }, }, - "StarsRequired": 11, + "StarsRequired": 14, }, { "Item": { "_data": { - "id": "Treasure Hunter", - "tn": 6, + "_am": 15, + "id": "Lucky", + "tn": 7, }, }, - "StarsRequired": 11, + "StarsRequired": 15, }, { "Item": { "_data": { - "id": "Damage", - "tn": 6, + "_am": 100000, + "id": "Diamonds", }, }, - "StarsRequired": 11, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 4, - "id": "Large Gift Bag", + "_am": 10, + "id": "Coins", + "tn": 8, }, }, - "StarsRequired": 12, + "StarsRequired": 15, }, { "Item": { "_data": { - "id": "Charm Stone", + "_am": 15, + "id": "Diamonds", + "tn": 7, }, }, - "StarsRequired": 12, + "StarsRequired": 15, }, { "Item": { "_data": { + "_am": 15, "id": "Lucky", - "tn": 7, + "tn": 9, }, }, - "StarsRequired": 12, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 2, - "id": "Diamonds", - "tn": 5, + "_am": 6, + "id": "Crystal Key", }, }, - "StarsRequired": 13, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 2, - "id": "Treasure Hunter", - "tn": 6, + "_am": 300, + "id": "Rainbow", }, }, - "StarsRequired": 13, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 2, - "id": "Damage", - "tn": 7, + "_am": 50, + "id": "Enchant Bundle", }, }, - "StarsRequired": 13, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Mini Pinata", + }, + }, + "StarsRequired": 16, }, { "Item": { "_data": { "_am": 15, "id": "Coins", - "tn": 5, + "tn": 9, }, }, - "StarsRequired": 14, + "StarsRequired": 17, }, { "Item": { "_data": { "_am": 15, "id": "Damage", - "tn": 5, + "tn": 9, }, }, - "StarsRequired": 14, + "StarsRequired": 17, }, { "Item": { "_data": { "_am": 15, "id": "Treasure Hunter", - "tn": 5, + "tn": 9, }, }, - "StarsRequired": 14, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 10, - "id": "Diamonds", - "tn": 4, + "_am": 15, + "id": "Mini Chest", }, }, - "StarsRequired": 14, + "StarsRequired": 17, }, { "Item": { "_data": { - "id": "Tap Power", - "tn": 6, + "_am": 15, + "id": "Charm Stone", }, }, - "StarsRequired": 15, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Lucky", + "tn": 8, + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Charm Stone", + }, + }, + "StarsRequired": 18, }, ], - "Title": "Guardian", - "UnlockableEggSlots": 3, - "UnlockablePetSlots": 3, + "Title": "Ascendant", + "UnlockableEggSlots": 1, + "UnlockablePetSlots": 1, }, - "configName": "13 | Guardian", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.382Z", - "hashShort": "6ddd98adf8bbb72d", + "configName": "20 | Ascendant", + "dateCreated": "2025-07-05T23:23:26.624Z", + "dateModified": "2026-05-02T17:31:49.612Z", + "hashShort": "63a033979b83e060", }, { "category": "Ranks", @@ -150618,80 +189448,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 1350, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 1350, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 1350, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 32, + "Amount": 90, "Type": 14, "Weight": 1, }, { - "Amount": 32, + "Amount": 90, "Type": 15, "Weight": 1, }, { - "Amount": 25, + "Amount": 60, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 1900, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 1900, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 1900, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 37, + "Amount": 120, "Type": 14, "Weight": 1, }, { - "Amount": 37, + "Amount": 120, "Type": 15, "Weight": 1, }, { - "Amount": 8, + "Amount": 70, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 3, + "Amount": 6, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 3, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 3, + "Amount": 6, "Type": 39, "Weight": 1, }, @@ -150701,118 +189541,138 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 1400, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 1400, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 290, + "Amount": 1750, "Type": 40, "Weight": 1, }, { - "Amount": 30, + "Amount": 160, "Type": 41, "Weight": 1, }, { - "Amount": 34, + "Amount": 70, "Type": 26, "Weight": 1, }, { - "Amount": 32, + "Amount": 70, "Type": 25, "Weight": 1, }, + { + "Amount": 90, + "Type": 46, + "Weight": 1, + }, + { + "Amount": 90, + "Type": 45, + "Weight": 1, + }, ], [ { - "Amount": 2100, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 2100, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 2100, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 350, + "Amount": 1200, "Type": 9, "Weight": 1, }, { - "Amount": 2500, + "Amount": 16000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 14, + "Amount": 75, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 14, + "Amount": 75, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 14, - "PotionTier": 4, - "Type": 34, + "Amount": 75, + "PotionTier": 4, + "Type": 34, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 6, + "Type": 43, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 39, "Weight": 1, }, { - "Amount": 1, + "Amount": 2, "Type": 76, "Weight": 1, }, { - "Amount": 2000, + "Amount": 3500, "Type": 20, "Weight": 1, }, { - "Amount": 2000, + "Amount": 3500, "Type": 20, "Weight": 1, }, { - "Amount": 400, + "Amount": 1800, "Type": 40, "Weight": 1, }, { - "Amount": 38, + "Amount": 170, "Type": 41, "Weight": 1, }, @@ -150834,381 +189694,408 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 2400, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 2400, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 2400, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 450, + "Amount": 1750, "Type": 9, "Weight": 1, }, { - "Amount": 3000, + "Amount": 17000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 5, + "Amount": 70, "Type": 42, "Weight": 1, }, { - "Amount": 5, + "Amount": 8, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 8, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 8, "Type": 39, "Weight": 1, }, { - "Amount": 1, + "Amount": 2, "Type": 76, "Weight": 1, }, ], ], - "MaxEnchantsEquipped": 5, + "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 12, + "RankNumber": 34, "RankUpRewards": [ { "_data": { - "id": "Coins", - "tn": 7, + "_am": 5000000, + "id": "Diamonds", }, }, { "_data": { - "id": "Treasure Hunter", - "tn": 7, + "id": "Mega Potion Chest", }, }, { "_data": { - "id": "Lucky", - "tn": 7, + "id": "Mega Enchant Chest", }, }, { "_data": { - "_am": 2, - "id": "Crystal Key", + "_am": 25, + "id": "Rainbow Mini Chest", }, }, + ], + "Rewards": [ { - "_data": { - "_am": 5, - "id": "Spinny Wheel Ticket", + "Item": { + "_data": { + "_am": 25, + "id": "Enchant Bundle", + }, }, + "StarsRequired": 8, }, - ], - "Rewards": [ { "Item": { "_data": { - "_am": 6, - "id": "Gift Bag", + "_am": 220, + "id": "Squeaky Toy", }, }, - "StarsRequired": 3, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 8000, - "id": "Diamonds", + "_am": 15, + "id": "Basic Coin Jar", }, }, - "StarsRequired": 3, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 12, - "id": "TNT Crate", + "id": "Enchant Bundle", }, }, - "StarsRequired": 3, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 7, - "id": "Comet", + "_am": 150, + "id": "Watermelon", }, }, - "StarsRequired": 3, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 3, - "id": "Damage", - "tn": 5, + "_am": 250, + "id": "Apple", }, }, - "StarsRequired": 4, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 8500, - "id": "Diamonds", + "_am": 235, + "id": "Toy Ball", }, }, - "StarsRequired": 4, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 2, - "id": "Coins", - "tn": 5, + "_am": 245, + "id": "Rainbow", }, }, - "StarsRequired": 4, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 50, - "id": "Orange", + "_am": 210, + "id": "Strength Flag", }, }, - "StarsRequired": 5, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 12, - "id": "Hasty Flag", + "_am": 15, + "id": "Treasure Hunter", + "tn": 7, }, }, - "StarsRequired": 5, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 5, - "id": "Damage", - "tn": 4, + "_am": 140, + "id": "Hasty Flag", }, }, - "StarsRequired": 5, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 3, - "id": "Nametag", + "_am": 4, + "id": "Fantasy Key Lower Half", }, }, - "StarsRequired": 6, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 10, - "id": "Diamonds Flag", + "_am": 130, + "id": "Banana", }, }, - "StarsRequired": 6, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 2, - "id": "Strong Pets", - "tn": 5, + "_am": 25, + "id": "Enchant Essence", }, }, - "StarsRequired": 6, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 3, - "id": "Damage", - "tn": 5, + "_am": 210, + "id": "Coins Flag", }, }, - "StarsRequired": 6, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 2, - "id": "Crystal Key", + "_am": 190, + "id": "Squeaky Toy", }, }, - "StarsRequired": 6, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 15, - "id": "TNT Crate", + "_am": 30, + "id": "Fantasy Key Lower Half", }, }, - "StarsRequired": 6, + "StarsRequired": 12, }, { "Item": { "_data": { + "_am": 20, "id": "Diamonds", - "tn": 4, + "tn": 6, }, }, - "StarsRequired": 7, + "StarsRequired": 12, }, { "Item": { "_data": { - "id": "Lucky", - "tn": 5, + "_am": 185, + "id": "Watermelon", }, }, - "StarsRequired": 7, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 50, - "id": "Apple", + "_am": 2, + "id": "Large Potion Bundle", }, }, - "StarsRequired": 7, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 23, - "id": "Toy Ball", + "_am": 9, + "id": "Coins", + "tn": 10, }, }, - "StarsRequired": 7, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 10, - "id": "Insta Plant Capsule", + "_am": 120, + "id": "Shiny Flag", }, }, - "StarsRequired": 7, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 3, - "id": "Treasure Hunter", - "tn": 5, + "id": "Breakable Sprinkler", }, }, - "StarsRequired": 7, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 3, - "id": "Damage", - "tn": 5, + "_am": 200, + "id": "Fortune Flag", }, }, - "StarsRequired": 8, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 3, - "id": "Coins", - "tn": 5, + "_am": 25, + "id": "Basic Item Jar", }, }, - "StarsRequired": 8, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 3, - "id": "Large Gift Bag", + "_am": 60, + "id": "TNT Crate", }, }, - "StarsRequired": 8, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 9500, - "id": "Diamonds", + "_am": 20, + "id": "Golden Pencil", }, }, - "StarsRequired": 8, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 25, - "id": "Squeaky Toy", + "_am": 9, + "id": "Seashell", }, }, - "StarsRequired": 8, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 16, - "id": "Magnet Flag", + "_am": 4, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 9, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 7, + "id": "Basic Item Jar", + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "id": "MVP Key Lower Half", + }, + }, + "StarsRequired": 17, + }, + { + "Item": { + "_data": { + "_am": 170, + "id": "Toy Bone", + }, + }, + "StarsRequired": 17, }, { "Item": { "_data": { "_am": 4, - "id": "Coins", - "tn": 5, + "id": "Fantasy Key", }, }, - "StarsRequired": 9, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 5, - "id": "Spinny Wheel Ticket", + "_am": 7, + "id": "Hacker Key", }, }, - "StarsRequired": 9, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 5, - "id": "Seed Bag", + "id": "Daycare Slot Voucher", }, }, - "StarsRequired": 9, + "StarsRequired": 18, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Fantasy Spinny Wheel Ticket", + }, + }, + "StarsRequired": 18, }, { "Item": { @@ -151217,185 +190104,230 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "id": "Crystal Key", }, }, - "StarsRequired": 9, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 4, - "id": "Giant Coin Jar", + "_am": 20, + "id": "Damage", + "tn": 10, }, }, - "StarsRequired": 10, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 2, - "id": "Damage", - "tn": 5, + "_am": 20, + "id": "Fruit Bundle", }, }, - "StarsRequired": 10, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 2, - "id": "Coins", - "tn": 6, + "_am": 15, + "id": "Party Box", }, }, - "StarsRequired": 10, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 3, - "id": "Large Gift Bag", + "_am": 8, + "id": "Gift Bag", }, }, - "StarsRequired": 11, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 6, - "id": "Seed Bag", + "_am": 8, + "id": "Gift Bag", }, }, - "StarsRequired": 11, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 10000, + "_am": 25, + "id": "Treasure Hideout Key Upper Half", + }, + }, + "StarsRequired": 21, + }, + { + "Item": { + "_data": { + "_am": 4, "id": "Diamonds", + "tn": 9, }, }, - "StarsRequired": 11, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 2, + "_am": 15, + "id": "Lucky", + "tn": 8, + }, + }, + "StarsRequired": 21, + }, + { + "Item": { + "_data": { + "_am": 25, "id": "Coins", - "tn": 6, + "tn": 9, }, }, - "StarsRequired": 11, + "StarsRequired": 22, }, { "Item": { "_data": { - "id": "Treasure Hunter", - "tn": 6, + "_am": 2, + "id": "Charm Chisel", }, }, - "StarsRequired": 12, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 30, - "id": "Rainbow", + "_am": 140, + "id": "Rainbow Flag", }, }, - "StarsRequired": 12, + "StarsRequired": 22, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Damage", + "tn": 8, + }, + }, + "StarsRequired": 23, }, { "Item": { "_data": { "_am": 5, - "id": "Spinny Wheel Ticket", + "id": "Charm Hammer", }, }, - "StarsRequired": 12, + "StarsRequired": 23, }, { "Item": { "_data": { "_am": 2, - "id": "Damage", - "tn": 6, + "id": "Fantasy Key Upper Half", }, }, - "StarsRequired": 12, + "StarsRequired": 23, }, { "Item": { "_data": { - "id": "Coins", - "tn": 7, + "_am": 15, + "id": "Mini Chest", }, }, - "StarsRequired": 13, + "StarsRequired": 24, }, { "Item": { "_data": { - "id": "Charm Stone", + "_am": 3, + "id": "Mini Chest", }, }, - "StarsRequired": 13, + "StarsRequired": 24, }, { "Item": { "_data": { - "id": "Lucky", - "tn": 7, + "id": "Damage", + "tn": 11, }, }, - "StarsRequired": 13, + "StarsRequired": 24, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Bucket O' Magic", + }, + }, + "StarsRequired": 25, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Golden Pencil", + }, + }, + "StarsRequired": 25, }, { "Item": { "_data": { "_am": 2, "id": "Diamonds", - "tn": 5, + "tn": 9, }, }, - "StarsRequired": 14, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 2, "id": "Treasure Hunter", - "tn": 6, + "tn": 11, }, }, - "StarsRequired": 14, + "StarsRequired": 26, }, { "Item": { "_data": { "_am": 2, - "id": "Damage", - "tn": 7, + "id": "Charm Chisel", }, }, - "StarsRequired": 14, + "StarsRequired": 26, }, { "Item": { "_data": { - "id": "Lucky Eggs", - "tn": 6, + "_am": 20, + "id": "Basic Item Jar", }, }, - "StarsRequired": 15, + "StarsRequired": 26, }, ], - "Title": "Superstar", - "UnlockableEggSlots": 3, - "UnlockablePetSlots": 3, + "Title": "Eternal Seer", + "UnlockableEggSlots": 0, + "UnlockablePetSlots": 0, }, - "configName": "12 | Superstar", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.383Z", - "hashShort": "1125796f7896d008", + "configName": "34 | Eternal Seer", + "dateCreated": "2025-07-05T23:23:26.624Z", + "dateModified": "2025-07-05T23:23:26.624Z", + "hashShort": "0bf6b2e463621633", }, { "category": "Ranks", @@ -151404,90 +190336,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 1500, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 1500, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 1500, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 35, + "Amount": 90, "Type": 14, "Weight": 1, }, { - "Amount": 35, + "Amount": 90, "Type": 15, "Weight": 1, }, { - "Amount": 30, + "Amount": 60, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 2000, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 2000, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 2000, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 40, + "Amount": 120, "Type": 14, "Weight": 1, }, { - "Amount": 40, + "Amount": 120, "Type": 15, "Weight": 1, }, { - "Amount": 10, + "Amount": 70, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 3, + "Amount": 6, "Type": 44, "Weight": 1, }, { - "Amount": 3, + "Amount": 6, "Type": 43, "Weight": 1, }, { - "Amount": 3, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 3, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 3, + "Amount": 6, "Type": 39, "Weight": 1, }, @@ -151497,138 +190429,138 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 1250, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 1250, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 400, + "Amount": 1750, "Type": 40, "Weight": 1, }, { - "Amount": 40, + "Amount": 160, "Type": 41, "Weight": 1, }, { - "Amount": 50, + "Amount": 70, "Type": 26, "Weight": 1, }, { - "Amount": 40, + "Amount": 70, "Type": 25, "Weight": 1, }, { - "Amount": 75, + "Amount": 90, "Type": 46, "Weight": 1, }, { - "Amount": 75, + "Amount": 90, "Type": 45, "Weight": 1, }, ], [ { - "Amount": 2500, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 2500, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 2500, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 400, + "Amount": 1200, "Type": 9, "Weight": 1, }, { - "Amount": 2500, + "Amount": 16000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 18, + "Amount": 75, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 18, + "Amount": 75, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 18, + "Amount": 75, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 44, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 43, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 39, "Weight": 1, }, { - "Amount": 1, + "Amount": 2, "Type": 76, "Weight": 1, }, { - "Amount": 1500, + "Amount": 3500, "Type": 20, "Weight": 1, }, { - "Amount": 1500, + "Amount": 3500, "Type": 20, "Weight": 1, }, { - "Amount": 500, + "Amount": 1800, "Type": 40, "Weight": 1, }, { - "Amount": 50, + "Amount": 170, "Type": 41, "Weight": 1, }, @@ -151650,96 +190582,82 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 2750, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 500, + "Amount": 1750, "Type": 9, "Weight": 1, }, { - "Amount": 3000, + "Amount": 17000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 20, + "Amount": 70, "Type": 42, "Weight": 1, }, { - "Amount": 5, + "Amount": 8, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 8, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 8, "Type": 39, "Weight": 1, }, { - "Amount": 1, + "Amount": 2, "Type": 76, "Weight": 1, }, ], ], - "MaxEnchantsEquipped": 5, + "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 15, + "RankNumber": 35, "RankUpRewards": [ { "_data": { - "_am": 2, - "id": "Coins", - "tn": 7, - }, - }, - { - "_data": { - "_am": 2, - "id": "Damage", - "tn": 7, - }, - }, - { - "_data": { - "_am": 2, + "_am": 7000000, "id": "Diamonds", - "tn": 6, }, }, { "_data": { - "id": "Mini Pinata", + "id": "Mega Potion Chest", }, }, { "_data": { - "id": "Party Box", + "id": "Mega Enchant Chest", }, }, { "_data": { - "id": "Mini Lucky Block", + "_am": 25, + "id": "Rainbow Mini Chest", }, }, ], @@ -151747,569 +190665,551 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Large Gift Bag", + "_am": 7, + "id": "Flag Bundle", }, }, - "StarsRequired": 3, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 12000, + "_am": 15, "id": "Diamonds", + "tn": 5, }, }, - "StarsRequired": 3, + "StarsRequired": 8, }, { "Item": { "_data": { - "id": "Crystal Key", + "_am": 275, + "id": "Rainbow", }, }, - "StarsRequired": 3, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 10, - "id": "Comet", + "_am": 230, + "id": "Hasty Flag", }, }, - "StarsRequired": 3, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 6, - "id": "Damage", - "tn": 5, + "_am": 150, + "id": "Toy Ball", }, }, - "StarsRequired": 3, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 12500, - "id": "Diamonds", + "_am": 20, + "id": "Breakable Sprinkler", }, }, - "StarsRequired": 3, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 6, - "id": "Coins", - "tn": 5, + "_am": 115, + "id": "Orange", }, }, - "StarsRequired": 3, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 80, - "id": "Banana", + "_am": 190, + "id": "Strength Flag", }, }, - "StarsRequired": 4, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 2, - "id": "Shiny Flag", + "_am": 135, + "id": "Rainbow Flag", }, }, - "StarsRequired": 4, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 6, - "id": "Diamonds", - "tn": 5, + "_am": 205, + "id": "Squeaky Toy", }, }, - "StarsRequired": 4, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 8, - "id": "Damage", - "tn": 5, + "_am": 25, + "id": "Treasure Hunter", + "tn": 8, }, }, - "StarsRequired": 5, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 8, - "id": "Coins", - "tn": 5, + "_am": 175, + "id": "Diamonds Flag", }, }, - "StarsRequired": 5, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 4, - "id": "Large Gift Bag", + "_am": 7, + "id": "Enchant Bundle", }, }, - "StarsRequired": 5, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 6, - "id": "Diamonds", - "tn": 5, + "_am": 180, + "id": "Toy Ball", }, }, - "StarsRequired": 5, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 90, - "id": "Squeaky Toy", + "_am": 220, + "id": "Diamonds Flag", }, }, - "StarsRequired": 5, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 13000, - "id": "Diamonds", + "_am": 15, + "id": "Potion Bundle", }, }, - "StarsRequired": 5, + "StarsRequired": 11, }, { "Item": { "_data": { - "id": "Crystal Key", + "_am": 8, + "id": "Void Key Lower Half", }, }, - "StarsRequired": 6, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 8, - "id": "Coins", - "tn": 5, + "_am": 20, + "id": "Flag Bundle", }, }, - "StarsRequired": 6, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 90, - "id": "Apple", + "_am": 215, + "id": "Banana", }, }, - "StarsRequired": 6, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 80, - "id": "Toy Ball", + "_am": 25, + "id": "Treasure Hideout Key", }, }, - "StarsRequired": 6, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 12, - "id": "Giant Coin Jar", + "_am": 3, + "id": "Prison Key", }, }, - "StarsRequired": 6, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 40, - "id": "Rainbow", + "_am": 20, + "id": "Damage", + "tn": 10, }, }, - "StarsRequired": 6, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 2, - "id": "Nametag", + "_am": 4, + "id": "Charm Hammer", }, }, - "StarsRequired": 7, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 2, - "id": "Rainbow Flag", + "_am": 25, + "id": "Seed Bag", }, }, - "StarsRequired": 7, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 90, - "id": "Banana", + "_am": 7, + "id": "Large Gift Bag", }, }, - "StarsRequired": 7, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 60, - "id": "Toy Ball", + "_am": 15, + "id": "Millionaire Bucks", }, }, - "StarsRequired": 7, + "StarsRequired": 15, }, { "Item": { "_data": { - "id": "Secret Key", + "_am": 2, + "id": "MVP Key Lower Half", }, }, - "StarsRequired": 7, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 2, - "id": "Diamonds", - "tn": 5, + "_am": 6, + "id": "Treasure Hideout Key Lower Half", }, }, - "StarsRequired": 8, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 2, - "id": "Lucky", - "tn": 6, + "_am": 6, + "id": "Bucket O' Magic", }, }, - "StarsRequired": 8, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 4, - "id": "Strength Flag", + "_am": 15, + "id": "Void Spinny Wheel Ticket", }, }, - "StarsRequired": 8, + "StarsRequired": 16, }, { "Item": { "_data": { - "id": "Mini Chest", + "_am": 3, + "id": "Charm Hammer", }, }, - "StarsRequired": 8, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 8, - "id": "Treasure Hunter", - "tn": 5, + "_am": 20, + "id": "Tech Spinny Wheel Ticket", }, }, - "StarsRequired": 8, + "StarsRequired": 17, }, { "Item": { "_data": { "_am": 3, - "id": "Mini Lucky Block", + "id": "Tech Key", }, }, - "StarsRequired": 9, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 4, - "id": "Damage", - "tn": 6, + "_am": 20, + "id": "Large Gift Bag", }, }, - "StarsRequired": 9, + "StarsRequired": 18, }, { "Item": { "_data": { "_am": 4, - "id": "Coins", - "tn": 6, + "id": "Prison Key", }, }, - "StarsRequired": 9, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 4, - "id": "Treasure Hunter", - "tn": 6, + "_am": 7, + "id": "Diamond Gift Bag", }, }, - "StarsRequired": 10, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 60, - "id": "Rainbow", + "_am": 30, + "id": "Lucky", + "tn": 5, }, }, - "StarsRequired": 10, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 5, - "id": "Potion Bundle", + "id": "Booth Slot Voucher", }, }, - "StarsRequired": 10, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 4, "id": "Lucky", - "tn": 6, + "tn": 8, }, }, - "StarsRequired": 10, + "StarsRequired": 19, }, { "Item": { "_data": { - "id": "Mini Pinata", + "_am": 4, + "id": "Crystal Key", }, }, - "StarsRequired": 11, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 6, - "id": "Damage", - "tn": 6, + "_am": 4, + "id": "Charm Hammer", }, }, - "StarsRequired": 11, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 13500, - "id": "Diamonds", + "_am": 25, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 11, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 4, - "id": "Coins", - "tn": 6, + "_am": 15, + "id": "Charm Stone", }, }, - "StarsRequired": 11, + "StarsRequired": 21, }, { "Item": { "_data": { "_am": 2, - "id": "Diamonds", - "tn": 5, + "id": "MVP Key Lower Half", }, }, - "StarsRequired": 12, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 2, - "id": "Treasure Hunter", - "tn": 6, + "_am": 25, + "id": "Treasure Hideout Key", }, }, - "StarsRequired": 12, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 6, - "id": "Party Box", + "_am": 15, + "id": "Diamonds", + "tn": 8, }, }, - "StarsRequired": 12, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 2, + "_am": 5, "id": "Coins", - "tn": 7, + "tn": 11, }, }, - "StarsRequired": 13, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 2, + "_am": 20, "id": "Damage", - "tn": 7, + "tn": 8, }, }, - "StarsRequired": 13, + "StarsRequired": 22, }, { "Item": { "_data": { - "id": "Lucky", - "tn": 7, + "_am": 7, + "id": "Hacker Key", }, }, - "StarsRequired": 13, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 3, - "id": "Crystal Key", + "_am": 30, + "id": "Gift Bag", }, }, - "StarsRequired": 13, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 200, - "id": "Rainbow", + "_am": 2, + "id": "Mini Chest", }, }, - "StarsRequired": 13, + "StarsRequired": 23, }, { "Item": { "_data": { - "id": "Charm Stone", + "_am": 8, + "id": "Coins", + "tn": 10, }, }, - "StarsRequired": 13, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 2, - "id": "Enchant Bundle", + "_am": 5, + "id": "Treasure Hunter", + "tn": 10, }, }, - "StarsRequired": 14, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 2, - "id": "Coins", - "tn": 8, + "id": "Booth Slot Voucher", }, }, - "StarsRequired": 14, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 2, + "_am": 25, "id": "Damage", "tn": 8, }, }, - "StarsRequired": 14, + "StarsRequired": 25, }, { "Item": { "_data": { "_am": 2, - "id": "Treasure Hunter", - "tn": 8, + "id": "Charm Chisel", }, }, - "StarsRequired": 14, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 2, - "id": "Diamonds", - "tn": 6, + "_am": 15, + "id": "Insta Plant Capsule", }, }, - "StarsRequired": 14, + "StarsRequired": 25, }, { "Item": { "_data": { "_am": 5, - "id": "Spinny Wheel Ticket", - }, - }, - "StarsRequired": 14, - }, - { - "Item": { - "_data": { - "_am": 50000, - "id": "Diamonds", + "id": "Insta Plant Capsule", }, }, - "StarsRequired": 14, + "StarsRequired": 26, }, { "Item": { "_data": { - "id": "Strength", - "tn": 1, + "_am": 15, + "id": "Mini Chest", }, }, - "StarsRequired": 15, + "StarsRequired": 26, }, ], - "Title": "Sentinel", - "UnlockableEggSlots": 1, - "UnlockablePetSlots": 1, + "Title": "Transcendent Mind", + "UnlockableEggSlots": 0, + "UnlockablePetSlots": 0, }, - "configName": "15 | Sentinel", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.381Z", - "hashShort": "30f92235ee583a4a", + "configName": "35 | Transcendent Mind", + "dateCreated": "2025-07-05T23:23:26.624Z", + "dateModified": "2025-07-05T23:23:26.624Z", + "hashShort": "0f383c87feb673a8", }, { "category": "Ranks", @@ -152318,80 +191218,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 1350, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 1350, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 1350, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 32, + "Amount": 50, "Type": 14, "Weight": 1, }, { - "Amount": 32, + "Amount": 50, "Type": 15, "Weight": 1, }, { - "Amount": 25, + "Amount": 35, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 1900, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 1900, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 1900, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 37, + "Amount": 60, "Type": 14, "Weight": 1, }, { - "Amount": 37, + "Amount": 60, "Type": 15, "Weight": 1, }, { - "Amount": 8, + "Amount": 20, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 3, + "Amount": 4, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 4, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 4, "Type": 38, "Weight": 1, }, { - "Amount": 3, + "Amount": 4, "Type": 37, "Weight": 1, }, { - "Amount": 3, + "Amount": 4, "Type": 39, "Weight": 1, }, @@ -152401,98 +191311,118 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 1400, + "Amount": 1750, "Type": 20, "Weight": 1, }, { - "Amount": 1400, + "Amount": 1750, "Type": 20, "Weight": 1, }, { - "Amount": 290, + "Amount": 750, "Type": 40, "Weight": 1, }, { - "Amount": 30, + "Amount": 75, "Type": 41, "Weight": 1, }, { - "Amount": 34, + "Amount": 50, "Type": 26, "Weight": 1, }, { - "Amount": 32, + "Amount": 40, "Type": 25, "Weight": 1, }, + { + "Amount": 75, + "Type": 46, + "Weight": 1, + }, + { + "Amount": 75, + "Type": 45, + "Weight": 1, + }, ], [ { - "Amount": 2100, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 2100, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 2100, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 350, + "Amount": 500, "Type": 9, "Weight": 1, }, { - "Amount": 2500, + "Amount": 5000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 14, + "Amount": 30, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 14, + "Amount": 30, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 14, + "Amount": 30, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, + "Type": 44, + "Weight": 1, + }, + { + "Amount": 5, + "Type": 43, + "Weight": 1, + }, + { + "Amount": 5, "Type": 38, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 37, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 39, "Weight": 1, }, { - "Amount": 1, + "Amount": 2, "Type": 76, "Weight": 1, }, @@ -152507,12 +191437,12 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 400, + "Amount": 900, "Type": 40, "Weight": 1, }, { - "Amount": 38, + "Amount": 90, "Type": 41, "Weight": 1, }, @@ -152534,644 +191464,692 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 2400, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 2400, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 2400, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 450, + "Amount": 750, "Type": 9, "Weight": 1, }, { - "Amount": 3000, + "Amount": 7500, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 5, + "Amount": 25, "Type": 42, "Weight": 1, }, { - "Amount": 5, + "Amount": 7, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 7, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 7, "Type": 39, "Weight": 1, }, { - "Amount": 1, + "Amount": 2, "Type": 76, "Weight": 1, }, ], ], - "MaxEnchantsEquipped": 5, + "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 14, + "RankNumber": 22, "RankUpRewards": [ { "_data": { - "_am": 2, + "_am": 12, + "id": "Lucky", + "tn": 9, + }, + }, + { + "_data": { + "_am": 12, "id": "Coins", - "tn": 7, + "tn": 9, }, }, { "_data": { - "_am": 2, + "_am": 12, "id": "Damage", - "tn": 7, + "tn": 9, }, }, { "_data": { - "_am": 2, + "_am": 12, + "id": "Treasure Hunter", + "tn": 9, + }, + }, + { + "_data": { + "_am": 500000, "id": "Diamonds", - "tn": 6, }, }, { "_data": { - "_am": 2, + "_am": 6, "id": "Crystal Key", }, }, + { + "_data": { + "_am": 4, + "id": "Secret Key", + }, + }, + { + "_data": { + "_am": 12, + "id": "Tech Key", + }, + }, + { + "_data": { + "_am": 12, + "id": "Mini Chest", + }, + }, ], "Rewards": [ { "Item": { "_data": { - "_am": 7, - "id": "Gift Bag", + "_am": 300, + "id": "Fruit Bundle", }, }, - "StarsRequired": 3, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 11000, - "id": "Diamonds", + "_am": 300, + "id": "Pineapple", }, }, - "StarsRequired": 3, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 4, - "id": "TNT Crate", + "_am": 100, + "id": "Diamonds", }, }, - "StarsRequired": 3, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 10, - "id": "Giant Coin Jar", + "_am": 250, + "id": "Coins Flag", }, }, - "StarsRequired": 3, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 6, - "id": "Lucky", - "tn": 5, + "_am": 250, + "id": "Hasty Flag", }, }, - "StarsRequired": 3, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 11500, - "id": "Diamonds", + "_am": 6, + "id": "Mini Chest", }, }, - "StarsRequired": 3, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 4, - "id": "Coins", - "tn": 5, + "_am": 20, + "id": "Large Gift Bag", }, }, - "StarsRequired": 3, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 70, - "id": "Apple", + "_am": 300, + "id": "Pineapple", }, }, - "StarsRequired": 4, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 15, - "id": "Coins Flag", + "_am": 200, + "id": "TNT", }, }, - "StarsRequired": 4, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 14, - "id": "Treasure Hunter", - "tn": 4, + "_am": 250, + "id": "Squeaky Toy", }, }, - "StarsRequired": 4, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 6, - "id": "Damage", - "tn": 5, + "_am": 250, + "id": "Magnet Flag", }, }, - "StarsRequired": 5, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 6, - "id": "Coins", - "tn": 5, + "_am": 250, + "id": "Diamonds Flag", }, }, - "StarsRequired": 5, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 5, - "id": "Large Gift Bag", + "_am": 300, + "id": "Watermelon", }, }, - "StarsRequired": 5, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 2, - "id": "Diamonds", - "tn": 5, + "_am": 300, + "id": "Pineapple", }, }, - "StarsRequired": 5, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 80, - "id": "Toy Bone", + "_am": 300, + "id": "Apple", }, }, - "StarsRequired": 5, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 12000, + "_am": 100, "id": "Diamonds", }, }, - "StarsRequired": 5, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 20, - "id": "Hasty Flag", + "_am": 300, + "id": "Banana", }, }, - "StarsRequired": 6, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 7, - "id": "Coins", - "tn": 5, + "_am": 250, + "id": "Toy Ball", }, }, - "StarsRequired": 6, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 80, - "id": "Apple", + "_am": 300, + "id": "Watermelon", }, }, - "StarsRequired": 6, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 70, - "id": "Toy Ball", + "_am": 75, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 6, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 12, - "id": "Giant Coin Jar", + "_am": 30, + "id": "Damage", + "tn": 6, }, }, - "StarsRequired": 6, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 25, - "id": "Rainbow", + "_am": 40, + "id": "Potion Bundle", }, }, - "StarsRequired": 6, + "StarsRequired": 10, }, { "Item": { "_data": { "_am": 4, - "id": "Nametag", + "id": "Tech Key", }, }, - "StarsRequired": 7, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 15, - "id": "Diamonds Flag", + "_am": 100, + "id": "Potion Bundle", }, }, - "StarsRequired": 7, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 80, - "id": "Banana", + "_am": 4, + "id": "Lucky", + "tn": 9, }, }, - "StarsRequired": 7, + "StarsRequired": 11, }, { "Item": { "_data": { "_am": 100, - "id": "Toy Ball", + "id": "Diamonds", }, }, - "StarsRequired": 7, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 70, - "id": "Squeaky Toy", + "_am": 150, + "id": "Shiny Flag", }, }, - "StarsRequired": 7, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 2, - "id": "Diamonds", - "tn": 5, + "_am": 12, + "id": "Treasure Hunter", + "tn": 7, }, }, - "StarsRequired": 8, + "StarsRequired": 12, }, { "Item": { "_data": { - "id": "Lucky", + "_am": 50, + "id": "Damage", "tn": 6, }, }, - "StarsRequired": 8, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 80, - "id": "Orange", + "_am": 30, + "id": "Large Gift Bag", }, }, - "StarsRequired": 8, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 8, - "id": "Insta Plant Capsule", + "_am": 40, + "id": "Gift Bag", }, }, - "StarsRequired": 8, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 6, + "_am": 40, "id": "Treasure Hunter", - "tn": 5, + "tn": 7, }, }, - "StarsRequired": 8, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 15, - "id": "Comet", + "_am": 40, + "id": "Potion Bundle", }, }, - "StarsRequired": 9, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 2, - "id": "Damage", - "tn": 6, + "_am": 8, + "id": "Coins", + "tn": 9, }, }, - "StarsRequired": 9, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 2, - "id": "Coins", - "tn": 6, + "_am": 12, + "id": "Bucket O' Magic", }, }, - "StarsRequired": 9, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 2, - "id": "Treasure Hunter", - "tn": 6, + "_am": 6, + "id": "Large Gift Bag", }, }, - "StarsRequired": 10, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 50, - "id": "Rainbow", + "_am": 20, + "id": "Coins", + "tn": 11, }, }, - "StarsRequired": 10, + "StarsRequired": 14, }, { "Item": { "_data": { "_am": 4, + "id": "Secret Key", + }, + }, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 12, "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 10, + "StarsRequired": 15, }, { "Item": { "_data": { "_am": 2, - "id": "Lucky", - "tn": 6, + "id": "Crystal Key", }, }, - "StarsRequired": 10, + "StarsRequired": 15, }, { "Item": { "_data": { "_am": 5, - "id": "Large Gift Bag", + "id": "Charm Hammer", }, }, - "StarsRequired": 11, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 10, - "id": "Damage", - "tn": 5, + "_am": 8, + "id": "Mini Chest", }, }, - "StarsRequired": 11, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 12500, + "_am": 2, "id": "Diamonds", + "tn": 7, }, }, - "StarsRequired": 11, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 2, - "id": "Coins", + "_am": 12, + "id": "Diamonds", "tn": 6, }, }, - "StarsRequired": 11, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 2, - "id": "Diamonds", - "tn": 5, + "_am": 40, + "id": "Tech Spinny Wheel Ticket", }, }, - "StarsRequired": 12, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 2, - "id": "Treasure Hunter", - "tn": 6, + "_am": 50, + "id": "Coins", + "tn": 8, }, }, - "StarsRequired": 12, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 2, - "id": "Damage", - "tn": 6, + "_am": 40, + "id": "Lucky", + "tn": 7, }, }, - "StarsRequired": 12, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 2, - "id": "Coins", - "tn": 7, + "_am": 150, + "id": "Comet", }, }, - "StarsRequired": 13, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 2, + "_am": 40, "id": "Damage", - "tn": 7, + "tn": 5, }, }, - "StarsRequired": 13, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 2, - "id": "Lucky", - "tn": 7, + "_am": 4, + "id": "Mini Chest", }, }, - "StarsRequired": 13, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 2, - "id": "Crystal Key", + "_am": 150, + "id": "Shiny Flag", }, }, - "StarsRequired": 13, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 150, - "id": "Rainbow", + "_am": 50, + "id": "Enchant Bundle", }, }, - "StarsRequired": 13, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 3, - "id": "Treasure Hunter", - "tn": 5, + "_am": 12, + "id": "Mini Chest", }, }, - "StarsRequired": 13, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 7, - "id": "Large Gift Bag", + "_am": 50, + "id": "Large Enchant Bundle", }, }, - "StarsRequired": 14, + "StarsRequired": 20, }, { "Item": { "_data": { - "id": "Coins", - "tn": 8, + "_am": 100, + "id": "Seed Bag", }, }, - "StarsRequired": 14, + "StarsRequired": 20, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Mini Lucky Block", + }, + }, + "StarsRequired": 21, }, { "Item": { "_data": { + "_am": 20, "id": "Lucky", "tn": 8, }, }, - "StarsRequired": 14, + "StarsRequired": 21, }, { "Item": { "_data": { - "id": "Treasure Hunter", - "tn": 8, + "_am": 250, + "id": "Diamonds", }, }, - "StarsRequired": 14, + "StarsRequired": 21, }, { "Item": { "_data": { - "id": "Damage", - "tn": 8, + "id": "Booth Slot Voucher", }, }, - "StarsRequired": 14, + "StarsRequired": 22, }, { "Item": { "_data": { "_am": 2, - "id": "Charm Stone", + "id": "Charm Chisel", }, }, - "StarsRequired": 15, + "StarsRequired": 22, + }, + { + "Item": { + "_data": { + "_am": 150, + "id": "Rainbow Flag", + }, + }, + "StarsRequired": 22, }, ], - "Title": "Titan", - "UnlockableEggSlots": 3, - "UnlockablePetSlots": 3, + "Title": "Architect", + "UnlockableEggSlots": 1, + "UnlockablePetSlots": 1, }, - "configName": "14 | Titan", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.393Z", - "hashShort": "1e2556aebabed319", + "configName": "22 | Architect", + "dateCreated": "2026-05-02T17:31:49.607Z", + "dateModified": "2026-05-02T17:31:49.607Z", + "hashShort": "d556f6adc23a2a12", }, { "category": "Ranks", @@ -153180,90 +192158,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 1500, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 1500, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 1500, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 35, + "Amount": 90, "Type": 14, "Weight": 1, }, { - "Amount": 35, + "Amount": 90, "Type": 15, "Weight": 1, }, { - "Amount": 30, + "Amount": 60, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 2000, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 2000, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 2000, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 40, + "Amount": 120, "Type": 14, "Weight": 1, }, { - "Amount": 40, + "Amount": 120, "Type": 15, "Weight": 1, }, { - "Amount": 10, + "Amount": 70, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 3, + "Amount": 6, "Type": 44, "Weight": 1, }, { - "Amount": 3, + "Amount": 6, "Type": 43, "Weight": 1, }, { - "Amount": 3, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 3, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 3, + "Amount": 6, "Type": 39, "Weight": 1, }, @@ -153273,138 +192251,138 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 1250, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 1250, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 400, + "Amount": 1750, "Type": 40, "Weight": 1, }, { - "Amount": 40, + "Amount": 160, "Type": 41, "Weight": 1, }, { - "Amount": 50, + "Amount": 70, "Type": 26, "Weight": 1, }, { - "Amount": 40, + "Amount": 70, "Type": 25, "Weight": 1, }, { - "Amount": 75, + "Amount": 90, "Type": 46, "Weight": 1, }, { - "Amount": 75, + "Amount": 90, "Type": 45, "Weight": 1, }, ], [ { - "Amount": 2500, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 2500, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 2500, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 350, + "Amount": 1200, "Type": 9, "Weight": 1, }, { - "Amount": 2500, + "Amount": 16000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 18, + "Amount": 75, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 18, + "Amount": 75, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 18, + "Amount": 75, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 44, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 43, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 39, "Weight": 1, }, { - "Amount": 1, + "Amount": 2, "Type": 76, "Weight": 1, }, { - "Amount": 1500, + "Amount": 3500, "Type": 20, "Weight": 1, }, { - "Amount": 1500, + "Amount": 3500, "Type": 20, "Weight": 1, }, { - "Amount": 500, + "Amount": 1800, "Type": 40, "Weight": 1, }, { - "Amount": 50, + "Amount": 170, "Type": 41, "Weight": 1, }, @@ -153426,98 +192404,92 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 2750, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 450, + "Amount": 1750, "Type": 9, "Weight": 1, }, { - "Amount": 3000, + "Amount": 17000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 20, + "Amount": 70, "Type": 42, "Weight": 1, }, { - "Amount": 5, + "Amount": 8, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 8, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 8, "Type": 39, "Weight": 1, }, { - "Amount": 1, + "Amount": 2, "Type": 76, "Weight": 1, }, ], ], - "MaxEnchantsEquipped": 5, + "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 17, + "RankNumber": 36, "RankUpRewards": [ { "_data": { - "_am": 3, - "id": "Coins", - "tn": 7, + "id": "Golden Prison Key", }, }, { "_data": { - "_am": 3, - "id": "Damage", - "tn": 7, + "id": "Charm Chisel", }, }, { "_data": { - "_am": 3, - "id": "Diamonds", - "tn": 6, + "_am": 2, + "id": "Magic Shard", }, }, { "_data": { - "_am": 10, - "id": "Party Box", + "id": "Bucket O' Magic", }, }, { "_data": { - "_am": 2, - "id": "Crystal Key", + "id": "Hacker Key", }, }, { "_data": { - "id": "Secret Key", + "id": "Damage", + "tn": 11, }, }, ], @@ -153525,572 +192497,563 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Large Gift Bag", - }, - }, - "StarsRequired": 3, - }, - { - "Item": { - "_data": { - "_am": 13500, - "id": "Diamonds", + "_am": 250, + "id": "Comet", }, }, - "StarsRequired": 3, + "StarsRequired": 8, }, { "Item": { "_data": { - "id": "Crystal Key", + "_am": 300, + "id": "Bonus", + "tn": 1, }, }, - "StarsRequired": 3, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 2, - "id": "Mini Pinata", + "_am": 250, + "id": "Damage", + "tn": 7, }, }, - "StarsRequired": 4, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 15, - "id": "Coins", - "tn": 5, + "_am": 300, + "id": "Pet Cube", }, }, - "StarsRequired": 4, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 14000, - "id": "Diamonds", + "_am": 250, + "id": "Lucky", + "tn": 7, }, }, - "StarsRequired": 4, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 15, - "id": "Damage", - "tn": 5, + "_am": 250, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 4, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 120, - "id": "Pineapple", + "_am": 250, + "id": "Fortune Flag", }, }, - "StarsRequired": 5, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 3, - "id": "Flag Bundle", + "_am": 250, + "id": "Treasure Hunter", + "tn": 8, }, }, - "StarsRequired": 5, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 10, - "id": "Diamonds", - "tn": 5, + "_am": 250, + "id": "Seashell", }, }, - "StarsRequired": 5, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 15, - "id": "Damage", - "tn": 5, + "_am": 150, + "id": "Rainbow Flag", }, }, - "StarsRequired": 5, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 15, - "id": "Coins", - "tn": 5, + "_am": 250, + "id": "Party Box", }, }, - "StarsRequired": 5, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 5, - "id": "Potion Bundle", + "_am": 250, + "id": "Blast", + "tn": 1, }, }, - "StarsRequired": 5, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 100, - "id": "Squeaky Toy", + "_am": 150, + "id": "Coins", + "tn": 10, }, }, - "StarsRequired": 5, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 14500, - "id": "Diamonds", + "_am": 150, + "id": "Treasure Hunter", + "tn": 9, }, }, - "StarsRequired": 6, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 60, - "id": "Rainbow", + "_am": 300, + "id": "Breakable Sprinkler", }, }, - "StarsRequired": 6, + "StarsRequired": 11, }, { "Item": { "_data": { - "id": "Crystal Key", + "_am": 250, + "id": "Coins", + "tn": 8, }, }, - "StarsRequired": 6, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 2, - "id": "Coins", - "tn": 6, + "_am": 125, + "id": "Golden Pencil", }, }, - "StarsRequired": 6, + "StarsRequired": 12, }, { "Item": { "_data": { - "id": "Mini Chest", + "_am": 125, + "id": "TNT Crate", }, }, - "StarsRequired": 6, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 12, - "id": "Diamonds", - "tn": 5, + "_am": 150, + "id": "Agility", + "tn": 1, }, }, - "StarsRequired": 6, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 150, - "id": "Toy Bone", + "_am": 100, + "id": "Gift Bag", }, }, - "StarsRequired": 7, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 15000, - "id": "Diamonds", + "_am": 100, + "id": "Damage", + "tn": 8, }, }, - "StarsRequired": 7, + "StarsRequired": 13, }, { "Item": { "_data": { - "id": "Secret Key", + "_am": 100, + "id": "Fantasy Key Lower Half", }, }, - "StarsRequired": 7, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 3, - "id": "Rainbow Flag", + "_am": 100, + "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 7, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 90, - "id": "Orange", + "_am": 100, + "id": "Coins", + "tn": 9, }, }, - "StarsRequired": 8, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 150, - "id": "Toy Ball", + "_am": 75, + "id": "MVP Key Lower Half", }, }, - "StarsRequired": 8, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 3, - "id": "Spinny Wheel Ticket", + "_am": 75, + "id": "Damage", + "tn": 9, }, }, - "StarsRequired": 8, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 12, - "id": "Treasure Hunter", - "tn": 5, + "_am": 75, + "id": "Void Key Upper Half", }, }, - "StarsRequired": 8, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 2, - "id": "Party Box", + "_am": 50, + "id": "Diamonds", + "tn": 8, }, }, - "StarsRequired": 9, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 6, - "id": "Damage", - "tn": 6, + "_am": 100, + "id": "Tech Spinny Wheel Ticket", }, }, - "StarsRequired": 9, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 5, - "id": "Coins", - "tn": 6, + "_am": 50, + "id": "Diamonds", + "tn": 7, }, }, - "StarsRequired": 9, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 9, - "id": "Diamonds", - "tn": 5, + "_am": 50, + "id": "Basic Item Jar", }, }, - "StarsRequired": 9, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 2, - "id": "Lucky", - "tn": 7, + "_am": 75, + "id": "Strength", + "tn": 1, }, }, - "StarsRequired": 10, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 3, - "id": "Enchant Bundle", + "_am": 50, + "id": "Crystal Key Upper Half", }, }, - "StarsRequired": 10, + "StarsRequired": 17, }, { "Item": { "_data": { - "id": "Mini Chest", + "_am": 30, + "id": "Lucky", + "tn": 8, }, }, - "StarsRequired": 10, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 4, - "id": "Coins", - "tn": 7, + "id": "Daycare Slot Voucher", }, }, - "StarsRequired": 10, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 3, - "id": "Shiny Flag", + "_am": 40, + "id": "Lucky", + "tn": 9, }, }, - "StarsRequired": 11, + "StarsRequired": 18, }, { "Item": { "_data": { "_am": 5, - "id": "Damage", - "tn": 7, + "id": "Charm Hammer", }, }, - "StarsRequired": 11, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 3, - "id": "Treasure Hunter", - "tn": 7, + "_am": 25, + "id": "Insta Plant Capsule", }, }, - "StarsRequired": 11, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 80, - "id": "Rainbow", + "_am": 4, + "id": "Secret Key", }, }, - "StarsRequired": 11, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 6, - "id": "Spinny Wheel Ticket", + "_am": 30, + "id": "Millionaire Ticket", }, }, - "StarsRequired": 12, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 50000, - "id": "Diamonds", + "_am": 20, + "id": "Void Spinny Wheel Ticket", }, }, - "StarsRequired": 12, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 5, - "id": "Coins", - "tn": 7, + "_am": 50, + "id": "Large Gift Bag", }, }, - "StarsRequired": 12, + "StarsRequired": 20, }, { "Item": { "_data": { "_am": 6, - "id": "Diamonds", - "tn": 6, + "id": "Crystal Key", }, }, - "StarsRequired": 12, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 5, - "id": "Treasure Hunter", - "tn": 7, + "_am": 20, + "id": "Millionaire Bucks", }, }, - "StarsRequired": 13, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 6, - "id": "Party Box", + "_am": 20, + "id": "Treasure Hideout Key", }, }, - "StarsRequired": 13, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 5, - "id": "Coins", - "tn": 7, + "_am": 75, + "id": "Damage", + "tn": 10, }, }, - "StarsRequired": 13, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 5, - "id": "Damage", - "tn": 7, + "_am": 20, + "id": "Mini Chest", }, }, - "StarsRequired": 13, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 3, - "id": "Lucky", - "tn": 7, + "_am": 12, + "id": "Diamond Gift Bag", }, }, - "StarsRequired": 14, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 3, - "id": "Crystal Key", + "_am": 125, + "id": "Seed Bag", }, }, - "StarsRequired": 14, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 250, - "id": "Rainbow", + "id": "Booth Slot Voucher", }, }, - "StarsRequired": 14, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 5, - "id": "Enchant Bundle", + "_am": 20, + "id": "Mini Pinata", }, }, - "StarsRequired": 14, + "StarsRequired": 23, }, { "Item": { "_data": { - "id": "Mini Chest", + "_am": 20, + "id": "Charm Stone", }, }, - "StarsRequired": 14, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 5, - "id": "Coins", - "tn": 8, + "_am": 8, + "id": "Treasure Hunter", + "tn": 10, }, }, - "StarsRequired": 15, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 5, - "id": "Damage", - "tn": 8, + "_am": 15, + "id": "Void Key", }, }, - "StarsRequired": 15, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 5, + "_am": 2, "id": "Treasure Hunter", - "tn": 8, + "tn": 11, }, }, - "StarsRequired": 15, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 5, - "id": "Damage", - "tn": 8, + "_am": 75, + "id": "Treasure Hideout Key Upper Half", }, }, - "StarsRequired": 15, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 20, - "id": "Party Box", + "_am": 10, + "id": "Coins", + "tn": 11, }, }, - "StarsRequired": 15, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 4, - "id": "Lucky", - "tn": 8, + "_am": 6, + "id": "Diamonds", + "tn": 9, }, }, - "StarsRequired": 15, + "StarsRequired": 26, }, { "Item": { "_data": { - "_am": 3, - "id": "Secret Key", + "_am": 25, + "id": "Fantasy Key Upper Half", }, }, - "StarsRequired": 16, + "StarsRequired": 26, }, ], - "Title": "Immortal", - "UnlockableEggSlots": 1, - "UnlockablePetSlots": 1, + "Title": "Soulforge", + "UnlockableEggSlots": 0, + "UnlockablePetSlots": 0, }, - "configName": "17 | Immortal", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.384Z", - "hashShort": "de592dbe6af5ce9e", + "configName": "36 | Soulforge", + "dateCreated": "2026-05-02T17:31:49.622Z", + "dateModified": "2026-05-02T17:31:49.622Z", + "hashShort": "5740ee34bf8cc187", }, { "category": "Ranks", @@ -154254,7 +193217,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 3000, + "Amount": 2500, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, @@ -154360,12 +193323,12 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 500, + "Amount": 450, "Type": 9, "Weight": 1, }, { - "Amount": 3500, + "Amount": 3000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, @@ -154399,46 +193362,45 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], "MaxEnchantsEquipped": 5, "MaximumActiveGoals": 4, - "RankNumber": 18, + "RankNumber": 17, "RankUpRewards": [ { "_data": { - "_am": 6, - "id": "Lucky", - "tn": 8, - }, - }, - { - "_data": { - "_am": 6, + "_am": 20, "id": "Coins", - "tn": 8, + "tn": 7, }, }, { "_data": { - "_am": 6, + "_am": 20, "id": "Damage", - "tn": 8, + "tn": 7, }, }, { "_data": { - "_am": 6, + "_am": 20, "id": "Diamonds", "tn": 6, }, }, { "_data": { - "_am": 2, + "_am": 75, + "id": "Party Box", + }, + }, + { + "_data": { + "_am": 6, "id": "Crystal Key", }, }, { "_data": { - "_am": 2, - "id": "Mini Chest", + "_am": 4, + "id": "Secret Key", }, }, ], @@ -154446,7 +193408,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, + "_am": 15, "id": "Large Gift Bag", }, }, @@ -154455,7 +193417,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15000, + "_am": 100000, "id": "Diamonds", }, }, @@ -154464,9 +193426,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 3, - "id": "Coins", - "tn": 6, + "_am": 6, + "id": "Crystal Key", }, }, "StarsRequired": 3, @@ -154474,7 +193435,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 3, + "_am": 15, "id": "Mini Pinata", }, }, @@ -154483,7 +193444,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Crystal Key", + "_am": 100, + "id": "Coins", + "tn": 5, }, }, "StarsRequired": 4, @@ -154491,7 +193454,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15500, + "_am": 100000, "id": "Diamonds", }, }, @@ -154500,18 +193463,18 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, + "_am": 100, "id": "Damage", - "tn": 6, + "tn": 5, }, }, - "StarsRequired": 5, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 150, - "id": "Banana", + "_am": 300, + "id": "Pineapple", }, }, "StarsRequired": 5, @@ -154519,7 +193482,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, + "_am": 20, "id": "Flag Bundle", }, }, @@ -154528,9 +193491,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 3, + "_am": 75, "id": "Diamonds", - "tn": 6, + "tn": 5, }, }, "StarsRequired": 5, @@ -154538,46 +193501,46 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 9, + "_am": 100, "id": "Damage", - "tn": 6, + "tn": 5, }, }, - "StarsRequired": 6, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 9, + "_am": 100, "id": "Coins", - "tn": 6, + "tn": 5, }, }, - "StarsRequired": 6, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 7, + "_am": 40, "id": "Potion Bundle", }, }, - "StarsRequired": 6, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 4, - "id": "Rainbow Flag", + "_am": 250, + "id": "Squeaky Toy", }, }, - "StarsRequired": 6, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 15, - "id": "Giant Coin Jar", + "_am": 100000, + "id": "Diamonds", }, }, "StarsRequired": 6, @@ -154585,89 +193548,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 120, + "_am": 300, "id": "Rainbow", }, }, - "StarsRequired": 7, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 2, + "_am": 6, "id": "Crystal Key", }, }, - "StarsRequired": 7, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 4, + "_am": 15, "id": "Coins", - "tn": 7, + "tn": 6, }, }, - "StarsRequired": 7, + "StarsRequired": 6, }, { "Item": { "_data": { + "_am": 8, "id": "Mini Chest", }, }, - "StarsRequired": 7, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 3, + "_am": 100, "id": "Diamonds", - "tn": 6, + "tn": 5, }, }, - "StarsRequired": 7, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 10, - "id": "Toy Bundle", + "_am": 250, + "id": "Toy Bone", }, }, - "StarsRequired": 8, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 16000, + "_am": 100000, "id": "Diamonds", }, }, - "StarsRequired": 8, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 2, + "_am": 4, "id": "Secret Key", }, }, - "StarsRequired": 8, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 4, + "_am": 20, "id": "Rainbow Flag", }, }, - "StarsRequired": 8, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 150, + "_am": 300, "id": "Orange", }, }, @@ -154676,35 +193640,35 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Mini Pinata", + "_am": 250, + "id": "Toy Ball", }, }, - "StarsRequired": 9, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 5, + "_am": 20, "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 9, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 3, + "_am": 100, "id": "Treasure Hunter", - "tn": 6, + "tn": 5, }, }, - "StarsRequired": 9, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 8, + "_am": 15, "id": "Party Box", }, }, @@ -154713,9 +193677,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 9, + "_am": 40, "id": "Damage", - "tn": 7, + "tn": 6, }, }, "StarsRequired": 9, @@ -154723,27 +193687,27 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 7, + "_am": 40, "id": "Coins", - "tn": 7, + "tn": 6, }, }, - "StarsRequired": 10, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 3, + "_am": 75, "id": "Diamonds", - "tn": 6, + "tn": 5, }, }, - "StarsRequired": 10, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 2, + "_am": 15, "id": "Lucky", "tn": 7, }, @@ -154753,8 +193717,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 150, - "id": "Rainbow", + "_am": 20, + "id": "Enchant Bundle", }, }, "StarsRequired": 10, @@ -154762,6 +193726,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { + "_am": 8, "id": "Mini Chest", }, }, @@ -154770,17 +193735,17 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, + "_am": 30, "id": "Coins", "tn": 7, }, }, - "StarsRequired": 11, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 4, + "_am": 20, "id": "Shiny Flag", }, }, @@ -154789,7 +193754,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, + "_am": 40, "id": "Damage", "tn": 7, }, @@ -154799,7 +193764,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, + "_am": 20, "id": "Treasure Hunter", "tn": 7, }, @@ -154809,8 +193774,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Enchant Bundle", + "_am": 300, + "id": "Rainbow", }, }, "StarsRequired": 11, @@ -154818,7 +193783,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 6, + "_am": 40, "id": "Spinny Wheel Ticket", }, }, @@ -154827,7 +193792,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 16500, + "_am": 250000, "id": "Diamonds", }, }, @@ -154836,9 +193801,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, + "_am": 40, "id": "Coins", - "tn": 8, + "tn": 7, }, }, "StarsRequired": 12, @@ -154846,7 +193811,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, + "_am": 40, "id": "Diamonds", "tn": 6, }, @@ -154856,9 +193821,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, + "_am": 40, "id": "Treasure Hunter", - "tn": 8, + "tn": 7, }, }, "StarsRequired": 13, @@ -154866,7 +193831,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, + "_am": 40, "id": "Party Box", }, }, @@ -154875,9 +193840,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, + "_am": 40, "id": "Coins", - "tn": 8, + "tn": 7, }, }, "StarsRequired": 13, @@ -154885,9 +193850,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, + "_am": 40, "id": "Damage", - "tn": 8, + "tn": 7, }, }, "StarsRequired": 13, @@ -154895,9 +193860,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, + "_am": 20, "id": "Lucky", - "tn": 8, + "tn": 7, }, }, "StarsRequired": 14, @@ -154905,7 +193870,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, + "_am": 6, "id": "Crystal Key", }, }, @@ -154914,7 +193879,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 250, + "_am": 300, "id": "Rainbow", }, }, @@ -154923,7 +193888,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 7, + "_am": 40, "id": "Enchant Bundle", }, }, @@ -154932,8 +193897,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 7, - "id": "Mini Pinata", + "_am": 8, + "id": "Mini Chest", }, }, "StarsRequired": 14, @@ -154941,7 +193906,17 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, + "_am": 12, + "id": "Coins", + "tn": 11, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 40, "id": "Coins", "tn": 8, }, @@ -154951,7 +193926,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, + "_am": 40, "id": "Damage", "tn": 8, }, @@ -154961,7 +193936,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, + "_am": 40, "id": "Treasure Hunter", "tn": 8, }, @@ -154971,8 +193946,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Mini Chest", + "_am": 40, + "id": "Damage", + "tn": 8, }, }, "StarsRequired": 15, @@ -154980,7 +193956,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 30, + "_am": 150, "id": "Party Box", }, }, @@ -154989,7 +193965,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 6, + "_am": 30, "id": "Lucky", "tn": 8, }, @@ -154999,21 +193975,21 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 3, - "id": "Charm Stone", + "_am": 4, + "id": "Secret Key", }, }, "StarsRequired": 16, }, ], - "Title": "Hacker", + "Title": "Crusader", "UnlockableEggSlots": 1, "UnlockablePetSlots": 1, }, - "configName": "18 | Hacker", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.394Z", - "hashShort": "593aa1abe883252e", + "configName": "17 | Crusader", + "dateCreated": "2026-05-02T17:31:49.592Z", + "dateModified": "2026-05-02T17:31:49.592Z", + "hashShort": "a2e2c7004b641d60", }, { "category": "Ranks", @@ -155022,90 +193998,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 1750, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 1750, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 1500, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 40, + "Amount": 90, "Type": 14, "Weight": 1, }, { - "Amount": 40, + "Amount": 90, "Type": 15, "Weight": 1, }, { - "Amount": 32, + "Amount": 60, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 2250, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 2250, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 2250, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 40, + "Amount": 120, "Type": 14, "Weight": 1, }, { - "Amount": 40, + "Amount": 120, "Type": 15, "Weight": 1, }, { - "Amount": 15, + "Amount": 70, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 44, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 43, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 39, "Weight": 1, }, @@ -155115,138 +194091,138 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 1500, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 1500, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 500, + "Amount": 1750, "Type": 40, "Weight": 1, }, { - "Amount": 50, + "Amount": 160, "Type": 41, "Weight": 1, }, { - "Amount": 50, + "Amount": 70, "Type": 26, "Weight": 1, }, { - "Amount": 40, + "Amount": 70, "Type": 25, "Weight": 1, }, { - "Amount": 75, + "Amount": 90, "Type": 46, "Weight": 1, }, { - "Amount": 75, + "Amount": 90, "Type": 45, "Weight": 1, }, ], [ { - "Amount": 2750, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 400, + "Amount": 1200, "Type": 9, "Weight": 1, }, { - "Amount": 3500, + "Amount": 16000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 20, + "Amount": 75, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 20, + "Amount": 75, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 20, + "Amount": 75, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 44, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 43, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 39, "Weight": 1, }, { - "Amount": 1, + "Amount": 2, "Type": 76, "Weight": 1, }, { - "Amount": 1750, + "Amount": 3500, "Type": 20, "Weight": 1, }, { - "Amount": 1750, + "Amount": 3500, "Type": 20, "Weight": 1, }, { - "Amount": 500, + "Amount": 1800, "Type": 40, "Weight": 1, }, { - "Amount": 50, + "Amount": 170, "Type": 41, "Weight": 1, }, @@ -155268,48 +194244,48 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 3000, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 550, + "Amount": 1750, "Type": 9, "Weight": 1, }, { - "Amount": 4000, + "Amount": 17000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 20, + "Amount": 70, "Type": 42, "Weight": 1, }, { - "Amount": 6, + "Amount": 8, "Type": 38, "Weight": 1, }, { - "Amount": 6, + "Amount": 8, "Type": 37, "Weight": 1, }, { - "Amount": 6, + "Amount": 8, "Type": 39, "Weight": 1, }, @@ -155320,47 +194296,32 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` }, ], ], - "MaxEnchantsEquipped": 5, + "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 19, + "RankNumber": 33, "RankUpRewards": [ { "_data": { - "_am": 2, - "id": "Secret Key", - }, - }, - { - "_data": { - "_am": 2, - "id": "Crystal Key", - }, - }, - { - "_data": { - "_am": 2, - "id": "Mini Chest", + "_am": 100, + "id": "Diamonds", }, }, { "_data": { - "_am": 6, - "id": "Coins", - "tn": 8, + "_am": 40, + "id": "Large Enchant Bundle", }, }, { "_data": { - "_am": 6, - "id": "Damage", - "tn": 8, + "_am": 40, + "id": "Large Potion Bundle", }, }, { "_data": { - "_am": 6, - "id": "Diamonds", - "tn": 7, + "_am": 20, + "id": "Rainbow Mini Chest", }, }, ], @@ -155368,574 +194329,555 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Large Gift Bag", + "_am": 12, + "id": "Treasure Hideout Key Lower Half", }, }, - "StarsRequired": 4, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 20000, - "id": "Diamonds", + "_am": 20, + "id": "Damage", + "tn": 5, }, }, - "StarsRequired": 4, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 4, - "id": "Coins", - "tn": 6, + "_am": 200, + "id": "Magnet Flag", }, }, - "StarsRequired": 4, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 4, - "id": "Mini Pinata", + "_am": 20, + "id": "Fruit Bundle", }, }, - "StarsRequired": 5, + "StarsRequired": 8, }, { "Item": { "_data": { - "id": "Crystal Key", + "_am": 200, + "id": "Diamonds Flag", }, }, - "StarsRequired": 5, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 22500, - "id": "Diamonds", + "_am": 50, + "id": "TNT Crate", }, }, - "StarsRequired": 5, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 6, - "id": "Damage", - "tn": 6, + "_am": 20, + "id": "Treasure Hunter", + "tn": 7, }, }, - "StarsRequired": 6, + "StarsRequired": 9, }, { "Item": { "_data": { "_am": 200, - "id": "Banana", + "id": "Toy Bone", }, }, - "StarsRequired": 6, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 10, - "id": "Flag Bundle", + "_am": 12, + "id": "Enchant Essence", }, }, - "StarsRequired": 6, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 15, - "id": "Giant Coin Jar", + "_am": 20, + "id": "Comet", }, }, - "StarsRequired": 6, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 15, - "id": "Toy Bundle", + "id": "Enchant Bundle", }, }, - "StarsRequired": 7, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 25000, - "id": "Diamonds", + "_am": 100, + "id": "Coins Flag", }, }, - "StarsRequired": 7, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 2, - "id": "Secret Key", + "_am": 12, + "id": "Coins", + "tn": 7, }, }, - "StarsRequired": 7, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 5, - "id": "Rainbow Flag", + "_am": 150, + "id": "Strength Flag", }, }, - "StarsRequired": 7, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 200, - "id": "Orange", + "_am": 20, + "id": "Basic Coin Jar", }, }, - "StarsRequired": 7, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 5, - "id": "Mini Lucky Block", + "_am": 20, + "id": "Treasure Hideout Key Upper Half", }, }, - "StarsRequired": 8, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 5, - "id": "Tech Spinny Wheel Ticket", + "_am": 8, + "id": "Toy Bundle", }, }, - "StarsRequired": 8, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 4, - "id": "Treasure Hunter", - "tn": 6, + "_am": 5, + "id": "Large Enchant Bundle", }, }, - "StarsRequired": 8, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 10, - "id": "Party Box", + "_am": 200, + "id": "Toy Ball", }, }, - "StarsRequired": 8, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 4, - "id": "Diamonds", - "tn": 6, + "_am": 6, + "id": "Fantasy Key", }, }, - "StarsRequired": 8, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 175, - "id": "Rainbow", + "_am": 6, + "id": "Breakable Sprinkler", }, }, - "StarsRequired": 9, + "StarsRequired": 13, }, { "Item": { "_data": { - "id": "Tech Key", + "id": "Secret Key", }, }, - "StarsRequired": 9, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 6, - "id": "Coins", - "tn": 7, + "_am": 20, + "id": "Pet Cube", }, }, - "StarsRequired": 9, + "StarsRequired": 13, }, { "Item": { "_data": { - "id": "Mini Chest", + "id": "Charm Hammer", }, }, - "StarsRequired": 9, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 4, - "id": "Diamonds", - "tn": 6, + "id": "Damage", + "tn": 9, }, }, - "StarsRequired": 9, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 9, - "id": "Damage", - "tn": 6, + "_am": 2, + "id": "Ultra Pet Cube", }, }, - "StarsRequired": 10, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 9, - "id": "Coins", - "tn": 6, + "id": "Lucky", + "tn": 9, }, }, - "StarsRequired": 10, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 10, - "id": "Potion Bundle", + "id": "Diamonds", + "tn": 9, }, }, - "StarsRequired": 10, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 6, - "id": "Rainbow Flag", + "_am": 20, + "id": "Diamonds", + "tn": 6, }, }, - "StarsRequired": 10, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 9, - "id": "Damage", - "tn": 6, + "_am": 20, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 10, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 9, - "id": "Coins", - "tn": 7, + "_am": 12, + "id": "Hacker Key", }, }, - "StarsRequired": 11, + "StarsRequired": 17, }, { "Item": { "_data": { "_am": 5, - "id": "Shiny Flag", + "id": "Void Spinny Wheel Ticket", }, }, - "StarsRequired": 11, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 8, - "id": "Damage", - "tn": 7, + "_am": 3, + "id": "Fantasy Spinny Wheel Ticket", }, }, - "StarsRequired": 11, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 5, - "id": "Treasure Hunter", - "tn": 7, + "_am": 12, + "id": "Gift Bag", }, }, - "StarsRequired": 11, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 8, - "id": "Enchant Bundle", + "id": "Mini Chest", }, }, - "StarsRequired": 11, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 7, - "id": "Coins", - "tn": 7, + "_am": 20, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 12, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 3, - "id": "Diamonds", - "tn": 6, + "_am": 8, + "id": "Fantasy Key Upper Half", }, }, - "StarsRequired": 12, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 2, - "id": "Lucky", - "tn": 7, + "_am": 12, + "id": "Diamond Gift Bag", }, }, - "StarsRequired": 12, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 150, - "id": "Rainbow", + "_am": 5, + "id": "Coins", + "tn": 9, }, }, - "StarsRequired": 12, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 2, - "id": "Mini Chest", + "id": "Coins", + "tn": 11, }, }, - "StarsRequired": 12, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 5, - "id": "Treasure Hunter", - "tn": 8, + "_am": 20, + "id": "Fantasy Key Upper Half", }, }, - "StarsRequired": 13, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 15, - "id": "Party Box", + "_am": 20, + "id": "Lucky", + "tn": 6, }, }, - "StarsRequired": 13, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 4, - "id": "Coins", - "tn": 8, + "_am": 20, + "id": "Mini Chest", }, }, - "StarsRequired": 13, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 4, - "id": "Damage", - "tn": 8, + "id": "Golden Prison Key", }, }, - "StarsRequired": 13, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 8, - "id": "Tech Spinny Wheel Ticket", + "_am": 2, + "id": "Lucky", + "tn": 7, }, }, - "StarsRequired": 14, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 45500, - "id": "Diamonds", + "_am": 20, + "id": "Basic Item Jar", }, }, - "StarsRequired": 14, + "StarsRequired": 22, }, { "Item": { "_data": { "_am": 2, - "id": "Coins", - "tn": 8, + "id": "Bucket O' Magic", }, }, - "StarsRequired": 14, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 2, - "id": "Diamonds", - "tn": 7, + "_am": 20, + "id": "Tech Key", }, }, - "StarsRequired": 14, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 2, - "id": "Lucky", - "tn": 9, + "_am": 12, + "id": "Gift Bag", }, }, - "StarsRequired": 15, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 2, - "id": "Crystal Key", + "_am": 8, + "id": "Fantasy Key", }, }, - "StarsRequired": 15, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 250, - "id": "Rainbow", + "_am": 20, + "id": "Large Gift Bag", }, }, - "StarsRequired": 15, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 10, - "id": "Enchant Bundle", + "_am": 2, + "id": "Charm Chisel", }, }, - "StarsRequired": 15, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 7, - "id": "Mini Pinata", + "_am": 20, + "id": "Large Potion Bundle", }, }, - "StarsRequired": 15, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 2, - "id": "Coins", + "_am": 4, + "id": "Damage", "tn": 9, }, }, - "StarsRequired": 16, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 2, - "id": "Damage", - "tn": 9, + "_am": 20, + "id": "Ultra Pet Cube", }, }, - "StarsRequired": 16, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 2, - "id": "Treasure Hunter", - "tn": 9, + "_am": 3, + "id": "Crystal Key", }, }, - "StarsRequired": 16, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 2, - "id": "Mini Chest", + "_am": 500000, + "id": "Diamonds", }, }, - "StarsRequired": 16, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 2, - "id": "Charm Stone", + "_am": 75, + "id": "TNT Crate", }, }, - "StarsRequired": 16, + "StarsRequired": 26, }, { "Item": { "_data": { - "_am": 6, - "id": "Lucky", - "tn": 8, + "_am": 8, + "id": "Mini Pinata", }, }, - "StarsRequired": 16, + "StarsRequired": 26, }, { "Item": { "_data": { - "_am": 3, - "id": "Tech Key", + "_am": 20, + "id": "Large Gift Bag", }, }, - "StarsRequired": 17, + "StarsRequired": 26, }, ], - "Title": "Mastermind", - "UnlockableEggSlots": 1, - "UnlockablePetSlots": 1, + "Title": "Realmlord", + "UnlockableEggSlots": 0, + "UnlockablePetSlots": 0, }, - "configName": "19 | Mastermind", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.385Z", - "hashShort": "28be01f4edf39fd8", + "configName": "33 | Realmlord", + "dateCreated": "2026-05-02T17:31:49.619Z", + "dateModified": "2026-05-02T17:31:49.619Z", + "hashShort": "c108cb55c0a09d36", }, { "category": "Ranks", @@ -155944,12 +194886,12 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 1750, + "Amount": 1500, "Type": 21, "Weight": 1, }, { - "Amount": 1750, + "Amount": 1500, "Type": 21, "Weight": 1, }, @@ -155959,34 +194901,34 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 40, + "Amount": 35, "Type": 14, "Weight": 1, }, { - "Amount": 40, + "Amount": 35, "Type": 15, "Weight": 1, }, { - "Amount": 32, + "Amount": 30, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 2250, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 2250, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 2250, + "Amount": 2000, "Type": 21, "Weight": 1, }, @@ -156001,33 +194943,33 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 15, + "Amount": 10, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 4, + "Amount": 3, "Type": 44, "Weight": 1, }, { - "Amount": 4, + "Amount": 3, "Type": 43, "Weight": 1, }, { - "Amount": 4, + "Amount": 3, "Type": 38, "Weight": 1, }, { - "Amount": 4, + "Amount": 3, "Type": 37, "Weight": 1, }, { - "Amount": 4, + "Amount": 3, "Type": 39, "Weight": 1, }, @@ -156037,22 +194979,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 1500, + "Amount": 1250, "Type": 20, "Weight": 1, }, { - "Amount": 1500, + "Amount": 1250, "Type": 20, "Weight": 1, }, { - "Amount": 500, + "Amount": 400, "Type": 40, "Weight": 1, }, { - "Amount": 50, + "Amount": 40, "Type": 41, "Weight": 1, }, @@ -156079,86 +195021,86 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 2750, + "Amount": 2500, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 2500, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 2500, "Type": 21, "Weight": 1, }, { - "Amount": 400, + "Amount": 750, "Type": 9, "Weight": 1, }, { - "Amount": 3500, + "Amount": 2500, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 20, + "Amount": 18, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 20, + "Amount": 18, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 20, + "Amount": 18, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 44, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 43, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 39, "Weight": 1, }, { - "Amount": 2, + "Amount": 1, "Type": 76, "Weight": 1, }, { - "Amount": 1750, + "Amount": 1500, "Type": 20, "Weight": 1, }, { - "Amount": 1750, + "Amount": 1500, "Type": 20, "Weight": 1, }, @@ -156190,27 +195132,27 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 3000, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 550, + "Amount": 900, "Type": 9, "Weight": 1, }, { - "Amount": 4000, + "Amount": 3000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, @@ -156221,81 +195163,62 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 38, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 37, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 39, "Weight": 1, }, { - "Amount": 2, + "Amount": 1, "Type": 76, "Weight": 1, }, ], ], - "MaxEnchantsEquipped": 6, + "MaxEnchantsEquipped": 5, "MaximumActiveGoals": 4, - "RankNumber": 20, + "RankNumber": 16, "RankUpRewards": [ { "_data": { - "_am": 8, - "id": "Lucky", - "tn": 8, - }, - }, - { - "_data": { - "_am": 8, + "_am": 15, "id": "Coins", - "tn": 8, + "tn": 7, }, }, { "_data": { - "_am": 8, + "_am": 15, "id": "Damage", - "tn": 8, - }, - }, - { - "_data": { - "_am": 8, - "id": "Treasure Hunter", - "tn": 8, + "tn": 7, }, }, { "_data": { - "_am": 50000, + "_am": 15, "id": "Diamonds", + "tn": 6, }, }, { "_data": { - "_am": 3, - "id": "Crystal Key", - }, - }, - { - "_data": { - "_am": 2, - "id": "Secret Key", + "_am": 50, + "id": "Large Gift Bag", }, }, { "_data": { - "_am": 3, - "id": "Mini Chest", + "_am": 10, + "id": "Enchant Bundle", }, }, ], @@ -156303,576 +195226,579 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, + "_am": 5, "id": "Large Gift Bag", }, }, - "StarsRequired": 4, + "StarsRequired": 3, }, { "Item": { "_data": { - "_am": 25000, + "_am": 50000, "id": "Diamonds", }, }, - "StarsRequired": 4, + "StarsRequired": 3, }, { "Item": { "_data": { "_am": 5, - "id": "Coins", - "tn": 6, + "id": "Crystal Key", }, }, - "StarsRequired": 4, + "StarsRequired": 3, }, { "Item": { "_data": { - "_am": 3, - "id": "Mini Lucky Block", + "_am": 5, + "id": "Mini Pinata", }, }, - "StarsRequired": 5, + "StarsRequired": 3, }, { "Item": { "_data": { - "_am": 2, - "id": "Crystal Key", + "_am": 50, + "id": "Coins", + "tn": 5, }, }, - "StarsRequired": 5, + "StarsRequired": 3, }, { "Item": { "_data": { - "_am": 27500, + "_am": 50000, "id": "Diamonds", }, }, - "StarsRequired": 5, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 6, + "_am": 50, "id": "Damage", - "tn": 6, + "tn": 5, }, }, - "StarsRequired": 6, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 200, - "id": "Banana", + "_am": 300, + "id": "Apple", }, }, - "StarsRequired": 6, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 3, - "id": "Mini Pinata", + "_am": 15, + "id": "Strength Flag", }, }, - "StarsRequired": 6, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 6, - "id": "Spinny Wheel Ticket", + "_am": 40, + "id": "Diamonds", + "tn": 5, }, }, - "StarsRequired": 7, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 5, - "id": "Treasure Hunter", - "tn": 6, + "_am": 75, + "id": "Damage", + "tn": 5, }, }, - "StarsRequired": 8, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 12, - "id": "Party Box", + "_am": 75, + "id": "Coins", + "tn": 5, }, }, - "StarsRequired": 8, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 5, - "id": "Diamonds", - "tn": 6, + "_am": 300, + "id": "Rainbow", }, }, - "StarsRequired": 8, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 200, - "id": "Rainbow", + "_am": 250, + "id": "Toy Ball", }, }, - "StarsRequired": 8, + "StarsRequired": 5, }, { "Item": { "_data": { "_am": 200, - "id": "Apple", + "id": "Rainbow", }, }, - "StarsRequired": 8, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 12, - "id": "Flag Bundle", + "_am": 5, + "id": "Crystal Key", }, }, - "StarsRequired": 9, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 8, + "_am": 75, "id": "Coins", - "tn": 7, + "tn": 5, }, }, - "StarsRequired": 9, + "StarsRequired": 6, }, { "Item": { "_data": { - "id": "Mini Chest", + "_am": 30, + "id": "Large Gift Bag", }, }, - "StarsRequired": 9, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 6, + "_am": 40, "id": "Diamonds", - "tn": 6, - }, - }, - "StarsRequired": 9, - }, - { - "Item": { - "_data": { - "_am": 12, - "id": "Damage", - "tn": 6, + "tn": 5, }, }, - "StarsRequired": 9, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 12, - "id": "Coins", - "tn": 6, + "_am": 250, + "id": "Squeaky Toy", }, }, - "StarsRequired": 10, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 12, - "id": "Potion Bundle", + "_am": 50000, + "id": "Diamonds", }, }, - "StarsRequired": 10, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 18, - "id": "Giant Coin Jar", + "_am": 4, + "id": "Secret Key", }, }, - "StarsRequired": 10, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 18, - "id": "Toy Bundle", + "_am": 10, + "id": "Rainbow Flag", }, }, - "StarsRequired": 10, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 32500, - "id": "Diamonds", + "_am": 300, + "id": "Banana", }, }, - "StarsRequired": 10, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 3, - "id": "Secret Key", + "_am": 250, + "id": "Toy Ball", }, }, - "StarsRequired": 11, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 5, - "id": "Rainbow Flag", + "_am": 15, + "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 11, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 4, - "id": "Crystal Key", + "_am": 20, + "id": "Treasure Hunter", + "tn": 6, }, }, - "StarsRequired": 11, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 6, - "id": "Shiny Flag", + "_am": 15, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 11, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 12, + "_am": 20, "id": "Damage", "tn": 6, }, }, - "StarsRequired": 12, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 12, + "_am": 20, "id": "Coins", - "tn": 7, + "tn": 6, }, }, - "StarsRequired": 13, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 225, - "id": "Rainbow", + "_am": 30, + "id": "Diamonds", + "tn": 5, }, }, - "StarsRequired": 13, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 3, - "id": "Mini Chest", + "_am": 10, + "id": "Lucky", + "tn": 6, }, }, - "StarsRequired": 13, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 5, - "id": "Treasure Hunter", - "tn": 8, + "_am": 300, + "id": "Orange", }, }, - "StarsRequired": 13, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 2, - "id": "Tech Key", + "_am": 5, + "id": "Mini Chest", }, }, - "StarsRequired": 13, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 5, - "id": "Coins", - "tn": 8, + "_am": 15, + "id": "Lucky", + "tn": 6, }, }, - "StarsRequired": 14, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 5, - "id": "Damage", - "tn": 8, + "_am": 10, + "id": "Shiny Flag", }, }, - "StarsRequired": 14, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 10, - "id": "Tech Spinny Wheel Ticket", + "_am": 30, + "id": "Damage", + "tn": 6, }, }, - "StarsRequired": 14, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 5, - "id": "Shiny Flag", + "_am": 30, + "id": "Treasure Hunter", + "tn": 6, }, }, - "StarsRequired": 14, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 10, - "id": "Damage", - "tn": 7, + "_am": 300, + "id": "Rainbow", }, }, - "StarsRequired": 14, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 7, - "id": "Treasure Hunter", - "tn": 7, + "_am": 25, + "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 14, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 9, - "id": "Enchant Bundle", + "_am": 50000, + "id": "Diamonds", }, }, - "StarsRequired": 14, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 8, + "_am": 30, "id": "Coins", - "tn": 7, + "tn": 6, }, }, - "StarsRequired": 14, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 5, + "_am": 10, "id": "Diamonds", - "tn": 6, + "tn": 5, }, }, - "StarsRequired": 14, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 4, - "id": "Lucky", + "_am": 10, + "id": "Treasure Hunter", "tn": 7, }, }, - "StarsRequired": 15, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 50000, - "id": "Diamonds", + "_am": 20, + "id": "Party Box", }, }, - "StarsRequired": 15, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 3, + "_am": 10, "id": "Coins", - "tn": 8, + "tn": 7, }, }, - "StarsRequired": 15, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 4, - "id": "Diamonds", + "_am": 10, + "id": "Damage", "tn": 7, }, }, - "StarsRequired": 15, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 4, + "_am": 15, "id": "Lucky", - "tn": 9, + "tn": 7, }, }, - "StarsRequired": 16, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 3, + "_am": 6, "id": "Crystal Key", }, }, - "StarsRequired": 16, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 275, + "_am": 300, "id": "Rainbow", }, }, - "StarsRequired": 16, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 13, + "_am": 15, "id": "Enchant Bundle", }, }, - "StarsRequired": 16, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 3, - "id": "Mini Pinata", + "_am": 75, + "id": "Large Gift Bag", }, }, - "StarsRequired": 16, + "StarsRequired": 14, }, { "Item": { "_data": { "_am": 4, "id": "Coins", - "tn": 9, + "tn": 11, }, }, - "StarsRequired": 17, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 4, - "id": "Damage", - "tn": 9, + "_am": 15, + "id": "Coins", + "tn": 8, }, }, - "StarsRequired": 17, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 4, - "id": "Treasure Hunter", - "tn": 9, + "_am": 15, + "id": "Damage", + "tn": 8, }, }, - "StarsRequired": 17, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 4, - "id": "Mini Chest", + "_am": 15, + "id": "Treasure Hunter", + "tn": 8, }, }, - "StarsRequired": 17, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 5, - "id": "Charm Stone", + "_am": 15, + "id": "Damage", + "tn": 8, }, }, - "StarsRequired": 17, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 8, + "_am": 10, "id": "Lucky", "tn": 8, }, }, - "StarsRequired": 17, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 8, + "_am": 5, "id": "Charm Stone", }, }, - "StarsRequired": 18, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 15, + "id": "Mini Chest", + }, + }, + "StarsRequired": 16, }, ], - "Title": "Ascendant", + "Title": "Vanguard", "UnlockableEggSlots": 1, "UnlockablePetSlots": 1, }, - "configName": "20 | Ascendant ", - "dateCreated": null, - "dateModified": null, - "hashShort": null, + "configName": "16 | Vanguard", + "dateCreated": "2026-05-02T17:31:49.627Z", + "dateModified": "2026-05-02T17:31:49.627Z", + "hashShort": "35d5c26d4474740e", }, { "category": "Ranks", @@ -156881,90 +195807,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 1750, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 1750, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 1500, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 40, + "Amount": 90, "Type": 14, "Weight": 1, }, { - "Amount": 40, + "Amount": 90, "Type": 15, "Weight": 1, }, { - "Amount": 32, + "Amount": 60, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 2250, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 2250, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 2250, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 40, + "Amount": 120, "Type": 14, "Weight": 1, }, { - "Amount": 40, + "Amount": 120, "Type": 15, "Weight": 1, }, { - "Amount": 15, + "Amount": 70, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 44, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 43, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 39, "Weight": 1, }, @@ -156974,113 +195900,113 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 1500, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 1500, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 500, + "Amount": 1750, "Type": 40, "Weight": 1, }, { - "Amount": 50, + "Amount": 160, "Type": 41, "Weight": 1, }, { - "Amount": 50, + "Amount": 70, "Type": 26, "Weight": 1, }, { - "Amount": 40, + "Amount": 70, "Type": 25, "Weight": 1, }, { - "Amount": 75, + "Amount": 90, "Type": 46, "Weight": 1, }, { - "Amount": 75, + "Amount": 90, "Type": 45, "Weight": 1, }, ], [ { - "Amount": 2750, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 400, + "Amount": 1200, "Type": 9, "Weight": 1, }, { - "Amount": 3500, + "Amount": 16000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 20, + "Amount": 75, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 20, + "Amount": 75, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 20, + "Amount": 75, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 44, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 43, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 39, "Weight": 1, }, @@ -157090,22 +196016,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 1750, + "Amount": 3500, "Type": 20, "Weight": 1, }, { - "Amount": 1750, + "Amount": 3500, "Type": 20, "Weight": 1, }, { - "Amount": 500, + "Amount": 1800, "Type": 40, "Weight": 1, }, { - "Amount": 50, + "Amount": 170, "Type": 41, "Weight": 1, }, @@ -157127,48 +196053,48 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 3000, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 550, + "Amount": 1750, "Type": 9, "Weight": 1, }, { - "Amount": 4000, + "Amount": 17000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 20, + "Amount": 70, "Type": 42, "Weight": 1, }, { - "Amount": 6, + "Amount": 8, "Type": 38, "Weight": 1, }, { - "Amount": 6, + "Amount": 8, "Type": 37, "Weight": 1, }, { - "Amount": 6, + "Amount": 8, "Type": 39, "Weight": 1, }, @@ -157181,64 +196107,35 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 21, + "RankNumber": 40, "RankUpRewards": [ { "_data": { - "_am": 2, - "id": "Lucky", - "tn": 9, - }, - }, - { - "_data": { - "_am": 2, - "id": "Coins", - "tn": 9, - }, - }, - { - "_data": { - "_am": 2, - "id": "Damage", - "tn": 9, + "_am": 4, + "id": "Magic Shard", }, }, { "_data": { "_am": 2, - "id": "Treasure Hunter", - "tn": 9, - }, - }, - { - "_data": { - "_am": 150000, "id": "Diamonds", + "tn": 9, }, }, { "_data": { - "_am": 3, - "id": "Crystal Key", - }, - }, - { - "_data": { - "_am": 3, - "id": "Secret Key", + "id": "Prison Key", }, }, { "_data": { - "_am": 3, - "id": "Tech Key", + "id": "Rainbow Mini Chest", }, }, { "_data": { - "_am": 3, - "id": "Mini Chest", + "id": "Treasure Hunter", + "tn": 11, }, }, ], @@ -157246,576 +196143,562 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Large Gift Bag", - }, - }, - "StarsRequired": 5, - }, - { - "Item": { - "_data": { - "_am": 30000, - "id": "Diamonds", + "_am": 300, + "id": "Damage", + "tn": 7, }, }, - "StarsRequired": 5, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 3, - "id": "Coins", - "tn": 7, + "_am": 300, + "id": "Bonus", + "tn": 1, }, }, - "StarsRequired": 5, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 5, - "id": "Mini Lucky Block", + "_am": 250, + "id": "Fortune Flag", }, }, - "StarsRequired": 6, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 3, - "id": "Crystal Key", + "_am": 300, + "id": "Treasure Hunter", + "tn": 8, }, }, - "StarsRequired": 6, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 40000, - "id": "Diamonds", + "_am": 300, + "id": "Seashell", }, }, - "StarsRequired": 6, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 3, - "id": "Damage", - "tn": 7, + "_am": 300, + "id": "Tap Power", + "tn": 5, }, }, - "StarsRequired": 7, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 200, - "id": "Banana", + "_am": 300, + "id": "Comet", }, }, - "StarsRequired": 7, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 5, - "id": "Mini Pinata", + "_am": 300, + "id": "Large Enchant Bundle", }, }, - "StarsRequired": 7, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 8, - "id": "Spinny Wheel Ticket", + "_am": 300, + "id": "Party Box", }, }, - "StarsRequired": 8, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 3, - "id": "Treasure Hunter", - "tn": 7, + "_am": 150, + "id": "Rainbow Flag", }, }, - "StarsRequired": 9, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 15, - "id": "Party Box", + "_am": 300, + "id": "Blast", + "tn": 1, }, }, - "StarsRequired": 9, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 3, - "id": "Diamonds", - "tn": 7, + "_am": 300, + "id": "Breakable Sprinkler", }, }, - "StarsRequired": 9, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 250, - "id": "Rainbow", + "_am": 200, + "id": "Treasure Hunter", + "tn": 9, }, }, - "StarsRequired": 9, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 250, - "id": "Apple", + "_am": 300, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 9, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 15, - "id": "Flag Bundle", + "_am": 150, + "id": "Shiny Flag", }, }, - "StarsRequired": 10, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 3, + "_am": 200, "id": "Coins", - "tn": 7, + "tn": 10, }, }, - "StarsRequired": 10, + "StarsRequired": 11, }, { "Item": { "_data": { - "id": "Mini Chest", + "_am": 125, + "id": "TNT Crate", }, }, - "StarsRequired": 10, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 2, - "id": "Diamonds", - "tn": 7, + "_am": 150, + "id": "Gift Bag", }, }, - "StarsRequired": 10, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 4, - "id": "Damage", - "tn": 7, + "_am": 150, + "id": "Golden Pencil", }, }, - "StarsRequired": 10, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 4, - "id": "Coins", - "tn": 7, + "_am": 300, + "id": "Pet Cube", }, }, - "StarsRequired": 11, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 15, - "id": "Potion Bundle", + "_am": 150, + "id": "Fantasy Key Lower Half", }, }, - "StarsRequired": 11, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 20, - "id": "Giant Coin Jar", + "_am": 125, + "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 11, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 20, - "id": "Toy Bundle", + "_am": 150, + "id": "Coins", + "tn": 9, }, }, - "StarsRequired": 11, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 45000, - "id": "Diamonds", + "_am": 125, + "id": "Damage", + "tn": 8, }, }, - "StarsRequired": 11, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 3, - "id": "Secret Key", + "_am": 75, + "id": "Basic Item Jar", }, }, - "StarsRequired": 12, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 7, - "id": "Rainbow Flag", + "_am": 100, + "id": "Damage", + "tn": 9, }, }, - "StarsRequired": 12, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 4, - "id": "Crystal Key", + "_am": 75, + "id": "Diamonds", + "tn": 7, }, }, - "StarsRequired": 12, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 7, - "id": "Shiny Flag", + "_am": 75, + "id": "Crystal Key Upper Half", }, }, - "StarsRequired": 12, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 5, - "id": "Damage", - "tn": 7, + "_am": 125, + "id": "Seed Bag", }, }, - "StarsRequired": 13, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 5, - "id": "Coins", - "tn": 8, + "_am": 100, + "id": "Strength", + "tn": 1, }, }, - "StarsRequired": 14, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 275, - "id": "Rainbow", + "id": "Daycare Slot Voucher", }, }, - "StarsRequired": 14, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 4, - "id": "Mini Chest", + "_am": 75, + "id": "Damage", + "tn": 10, }, }, - "StarsRequired": 14, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 7, - "id": "Treasure Hunter", - "tn": 8, + "_am": 100, + "id": "Void Key Upper Half", }, }, - "StarsRequired": 14, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 25, - "id": "Party Box", + "_am": 40, + "id": "Lucky", + "tn": 8, }, }, - "StarsRequired": 14, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 4, - "id": "Coins", - "tn": 8, + "_am": 50, + "id": "Treasure Hideout Key Upper Half", }, }, - "StarsRequired": 15, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 4, - "id": "Damage", - "tn": 8, + "_am": 100, + "id": "MVP Key Lower Half", }, }, - "StarsRequired": 15, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 15, - "id": "Tech Spinny Wheel Ticket", + "_am": 30, + "id": "Insta Plant Capsule", }, }, - "StarsRequired": 15, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 7, - "id": "Shiny Flag", + "_am": 75, + "id": "Diamonds", + "tn": 8, }, }, - "StarsRequired": 15, + "StarsRequired": 19, }, { "Item": { "_data": { "_am": 4, - "id": "Damage", - "tn": 8, + "id": "Secret Key", }, }, - "StarsRequired": 15, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 7, - "id": "Treasure Hunter", - "tn": 7, + "_am": 150, + "id": "Tech Spinny Wheel Ticket", }, }, - "StarsRequired": 15, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 20, - "id": "Enchant Bundle", + "_am": 40, + "id": "Millionaire Ticket", }, }, - "StarsRequired": 15, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 4, - "id": "Coins", - "tn": 8, + "_am": 30, + "id": "Fantasy Spinny Wheel Ticket", }, }, - "StarsRequired": 15, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 3, - "id": "Diamonds", - "tn": 7, + "_am": 50, + "id": "Lucky", + "tn": 9, }, }, - "StarsRequired": 15, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 3, - "id": "Lucky", - "tn": 8, + "_am": 25, + "id": "Fantasy Key Upper Half", }, }, - "StarsRequired": 16, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 50000, - "id": "Diamonds", + "_am": 6, + "id": "Crystal Key", }, }, - "StarsRequired": 16, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 3, - "id": "Coins", - "tn": 8, + "_am": 15, + "id": "Fantasy Key", }, }, - "StarsRequired": 16, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 5, - "id": "Diamonds", - "tn": 7, + "_am": 15, + "id": "Diamond Gift Bag", }, }, - "StarsRequired": 16, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 5, - "id": "Lucky", - "tn": 9, + "_am": 20, + "id": "Void Key", }, }, - "StarsRequired": 17, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 4, - "id": "Crystal Key", + "_am": 25, + "id": "Mini Pinata", }, }, - "StarsRequired": 17, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 300, - "id": "Rainbow", + "_am": 10, + "id": "Treasure Hunter", + "tn": 10, }, }, - "StarsRequired": 17, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 15, - "id": "Enchant Bundle", + "_am": 30, + "id": "Void Spinny Wheel Ticket", }, }, - "StarsRequired": 17, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 5, - "id": "Mini Pinata", + "_am": 25, + "id": "Mini Chest", }, }, - "StarsRequired": 17, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 5, - "id": "Coins", - "tn": 9, + "_am": 8, + "id": "Lucky", + "tn": 10, }, }, - "StarsRequired": 18, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 5, - "id": "Damage", - "tn": 9, + "_am": 8, + "id": "Hacker Key", }, }, - "StarsRequired": 18, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 5, - "id": "Treasure Hunter", - "tn": 9, + "_am": 4, + "id": "Golden Prison Key", }, }, - "StarsRequired": 18, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 5, - "id": "Mini Chest", + "_am": 2, + "id": "Damage", + "tn": 11, }, }, - "StarsRequired": 18, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 5, - "id": "Charm Stone", + "_am": 12, + "id": "Coins", + "tn": 11, }, }, - "StarsRequired": 18, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 5, - "id": "Lucky", - "tn": 9, + "_am": 30, + "id": "Charm Stone", }, }, - "StarsRequired": 18, + "StarsRequired": 26, }, { "Item": { "_data": { - "_am": 5, - "id": "Tech Key", + "_am": 2, + "id": "Charm Chisel", }, }, - "StarsRequired": 19, + "StarsRequired": 26, }, ], - "Title": "Tech Titan", - "UnlockableEggSlots": 1, - "UnlockablePetSlots": 1, + "Title": "Herald", + "UnlockableEggSlots": 0, + "UnlockablePetSlots": 0, }, - "configName": "21 | Tech Titan", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.388Z", - "hashShort": "ed045e1dd040e7c1", + "configName": "40 | Herald", + "dateCreated": "2026-05-02T17:31:49.634Z", + "dateModified": "2026-05-02T17:31:49.634Z", + "hashShort": "45102793198481da", }, { "category": "Ranks", @@ -157824,64 +196707,64 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 2000, + "Amount": 1750, "Type": 21, "Weight": 1, }, { - "Amount": 2000, + "Amount": 1750, "Type": 21, "Weight": 1, }, { - "Amount": 2000, + "Amount": 1500, "Type": 21, "Weight": 1, }, { - "Amount": 50, + "Amount": 40, "Type": 14, "Weight": 1, }, { - "Amount": 50, + "Amount": 40, "Type": 15, "Weight": 1, }, { - "Amount": 35, + "Amount": 32, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 2750, + "Amount": 2250, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 2250, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 2250, "Type": 21, "Weight": 1, }, { - "Amount": 60, + "Amount": 40, "Type": 14, "Weight": 1, }, { - "Amount": 60, + "Amount": 40, "Type": 15, "Weight": 1, }, { - "Amount": 20, + "Amount": 15, "PotionTier": 4, "Type": 34, "Weight": 1, @@ -157917,22 +196800,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 1750, + "Amount": 1500, "Type": 20, "Weight": 1, }, { - "Amount": 1750, + "Amount": 1500, "Type": 20, "Weight": 1, }, { - "Amount": 750, + "Amount": 500, "Type": 40, "Weight": 1, }, { - "Amount": 75, + "Amount": 50, "Type": 41, "Weight": 1, }, @@ -157959,45 +196842,45 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 3000, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 500, + "Amount": 400, "Type": 9, "Weight": 1, }, { - "Amount": 5000, + "Amount": 3500, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 30, + "Amount": 20, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 30, + "Amount": 20, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 30, + "Amount": 20, "PotionTier": 4, "Type": 34, "Weight": 1, @@ -158033,22 +196916,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 2000, + "Amount": 1750, "Type": 20, "Weight": 1, }, { - "Amount": 2000, + "Amount": 1750, "Type": 20, "Weight": 1, }, { - "Amount": 900, + "Amount": 500, "Type": 40, "Weight": 1, }, { - "Amount": 90, + "Amount": 50, "Type": 41, "Weight": 1, }, @@ -158070,48 +196953,48 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 3500, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 3500, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 3500, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 750, + "Amount": 550, "Type": 9, "Weight": 1, }, { - "Amount": 7500, + "Amount": 4000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 25, + "Amount": 20, "Type": 42, "Weight": 1, }, { - "Amount": 7, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 7, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 7, + "Amount": 6, "Type": 39, "Weight": 1, }, @@ -158124,64 +197007,57 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 24, + "RankNumber": 21, "RankUpRewards": [ { "_data": { - "_am": 8, + "_am": 6, "id": "Lucky", "tn": 9, }, }, { "_data": { - "_am": 8, + "_am": 6, "id": "Coins", "tn": 9, }, }, { "_data": { - "_am": 8, + "_am": 6, "id": "Damage", "tn": 9, }, }, { "_data": { - "_am": 8, - "id": "Diamonds", - "tn": 7, - }, - }, - { - "_data": { - "_am": 8, + "_am": 6, "id": "Treasure Hunter", "tn": 9, }, }, { "_data": { - "_am": 1000000, + "_am": 500000, "id": "Diamonds", }, }, { "_data": { - "_am": 7, + "_am": 6, "id": "Crystal Key", }, }, { "_data": { - "_am": 7, + "_am": 4, "id": "Secret Key", }, }, { "_data": { - "_am": 7, + "_am": 10, "id": "Tech Key", }, }, @@ -158196,43 +197072,16 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 280, - "id": "Watermelon", - }, - }, - "StarsRequired": 4, - }, - { - "Item": { - "_data": { - "_am": 195, - "id": "Rainbow", - }, - }, - "StarsRequired": 4, - }, - { - "Item": { - "_data": { - "_am": 150, - "id": "Toy Ball", - }, - }, - "StarsRequired": 4, - }, - { - "Item": { - "_data": { - "_am": 115, - "id": "Pineapple", + "_am": 15, + "id": "Large Gift Bag", }, }, - "StarsRequired": 4, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 30000, + "_am": 100000, "id": "Diamonds", }, }, @@ -158241,8 +197090,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 140, - "id": "Orange", + "_am": 10, + "id": "Coins", + "tn": 7, }, }, "StarsRequired": 5, @@ -158250,26 +197100,26 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Potion Bundle", + "_am": 15, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 5, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 190, - "id": "Magnet Flag", + "_am": 6, + "id": "Crystal Key", }, }, - "StarsRequired": 5, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 40, - "id": "Comet", + "_am": 100000, + "id": "Diamonds", }, }, "StarsRequired": 6, @@ -158277,70 +197127,73 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 110, - "id": "Diamonds Flag", + "_am": 10, + "id": "Damage", + "tn": 7, }, }, - "StarsRequired": 6, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 225, - "id": "Orange", + "_am": 300, + "id": "Banana", }, }, - "StarsRequired": 6, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 30, - "id": "Fruit Bundle", + "_am": 15, + "id": "Mini Pinata", }, }, - "StarsRequired": 6, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 180, - "id": "Diamonds Flag", + "_am": 30, + "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 7, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 145, - "id": "Watermelon", + "_am": 10, + "id": "Treasure Hunter", + "tn": 7, }, }, - "StarsRequired": 7, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 65, - "id": "TNT", + "_am": 50, + "id": "Party Box", }, }, - "StarsRequired": 8, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 205, - "id": "Toy Bone", + "_am": 10, + "id": "Diamonds", + "tn": 7, }, }, - "StarsRequired": 8, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 190, + "_am": 300, "id": "Rainbow", }, }, @@ -158349,8 +197202,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 110, - "id": "Magnet Flag", + "_am": 300, + "id": "Apple", }, }, "StarsRequired": 9, @@ -158358,26 +197211,27 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 115, - "id": "Coins Flag", + "_am": 50, + "id": "Flag Bundle", }, }, - "StarsRequired": 9, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 25, - "id": "Mini Lucky Block", + "_am": 10, + "id": "Coins", + "tn": 7, }, }, - "StarsRequired": 9, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 15, - "id": "Large Gift Bag", + "_am": 3, + "id": "Mini Chest", }, }, "StarsRequired": 10, @@ -158385,9 +197239,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, - "id": "Damage", - "tn": 8, + "_am": 6, + "id": "Diamonds", + "tn": 7, }, }, "StarsRequired": 10, @@ -158395,7 +197249,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 7, + "_am": 15, "id": "Damage", "tn": 7, }, @@ -158405,18 +197259,18 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 30, + "_am": 15, "id": "Coins", - "tn": 8, + "tn": 7, }, }, - "StarsRequired": 10, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 5, - "id": "Tech Key", + "_am": 50, + "id": "Potion Bundle", }, }, "StarsRequired": 11, @@ -158424,8 +197278,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 3, - "id": "Secret Key", + "_am": 75, + "id": "Toy Bundle", }, }, "StarsRequired": 11, @@ -158433,9 +197287,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, - "id": "Coins", - "tn": 8, + "_am": 100000, + "id": "Diamonds", }, }, "StarsRequired": 11, @@ -158444,7 +197297,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 4, - "id": "Potion Bundle", + "id": "Secret Key", }, }, "StarsRequired": 12, @@ -158452,8 +197305,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 90, - "id": "Shiny Flag", + "_am": 25, + "id": "Rainbow Flag", }, }, "StarsRequired": 12, @@ -158461,9 +197314,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Lucky", - "tn": 6, + "_am": 6, + "id": "Crystal Key", }, }, "StarsRequired": 12, @@ -158471,17 +197323,18 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 6, - "id": "Mini Chest", + "_am": 25, + "id": "Shiny Flag", }, }, - "StarsRequired": 13, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 9, - "id": "Party Box", + "_am": 15, + "id": "Damage", + "tn": 7, }, }, "StarsRequired": 13, @@ -158489,17 +197342,37 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, + "_am": 15, + "id": "Coins", + "tn": 8, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 300, + "id": "Rainbow", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 15, "id": "Mini Chest", }, }, - "StarsRequired": 13, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 3, - "id": "Charm Hammer", + "_am": 25, + "id": "Treasure Hunter", + "tn": 8, }, }, "StarsRequired": 14, @@ -158507,8 +197380,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Seed Bag", + "_am": 75, + "id": "Party Box", }, }, "StarsRequired": 14, @@ -158516,9 +197389,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, - "id": "Diamonds", - "tn": 6, + "_am": 15, + "id": "Coins", + "tn": 11, }, }, "StarsRequired": 14, @@ -158526,17 +197399,19 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 175, - "id": "Fortune Flag", + "_am": 12, + "id": "Damage", + "tn": 10, }, }, - "StarsRequired": 15, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 60, - "id": "Rainbow Flag", + "_am": 15, + "id": "Coins", + "tn": 8, }, }, "StarsRequired": 15, @@ -158545,7 +197420,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 15, - "id": "Party Box", + "id": "Damage", + "tn": 8, }, }, "StarsRequired": 15, @@ -158553,205 +197429,231 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 3, - "id": "Charm Hammer", + "_am": 50, + "id": "Tech Spinny Wheel Ticket", }, }, - "StarsRequired": 16, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 20, - "id": "Tech Spinny Wheel Ticket", + "_am": 25, + "id": "Shiny Flag", }, }, - "StarsRequired": 16, + "StarsRequired": 15, }, { "Item": { "_data": { "_am": 15, - "id": "Charm Stone", + "id": "Damage", + "tn": 8, }, }, - "StarsRequired": 16, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 7, - "id": "Mini Lucky Block", + "_am": 25, + "id": "Treasure Hunter", + "tn": 7, }, }, - "StarsRequired": 17, + "StarsRequired": 15, + }, + { + "Item": { + "_data": { + "_am": 75, + "id": "Enchant Bundle", + }, + }, + "StarsRequired": 15, }, { "Item": { "_data": { "_am": 15, - "id": "Large Enchant Bundle", + "id": "Coins", + "tn": 8, }, }, - "StarsRequired": 17, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 70, - "id": "Rainbow Flag", + "_am": 10, + "id": "Diamonds", + "tn": 7, }, }, - "StarsRequired": 17, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 25, + "_am": 10, "id": "Lucky", - "tn": 7, + "tn": 8, }, }, - "StarsRequired": 18, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 9, - "id": "Gift Bag", + "_am": 100000, + "id": "Diamonds", }, }, - "StarsRequired": 18, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Coins", + "tn": 8, + }, + }, + "StarsRequired": 16, }, { "Item": { "_data": { "_am": 15, "id": "Diamonds", - "tn": 5, + "tn": 7, }, }, - "StarsRequired": 18, + "StarsRequired": 16, }, { "Item": { "_data": { "_am": 15, - "id": "Breakable Sprinkler", + "id": "Lucky", + "tn": 9, }, }, - "StarsRequired": 19, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 3, - "id": "Charm Stone", + "_am": 6, + "id": "Crystal Key", }, }, - "StarsRequired": 19, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 15, - "id": "Coins", - "tn": 7, + "_am": 300, + "id": "Rainbow", }, }, - "StarsRequired": 19, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 15, - "id": "Large Gift Bag", + "_am": 50, + "id": "Enchant Bundle", }, }, - "StarsRequired": 20, + "StarsRequired": 17, }, { "Item": { "_data": { - "id": "Secret Key", + "_am": 15, + "id": "Mini Pinata", }, }, - "StarsRequired": 20, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 8, - "id": "Lucky", - "tn": 8, + "_am": 15, + "id": "Coins", + "tn": 9, }, }, - "StarsRequired": 20, + "StarsRequired": 18, }, { "Item": { "_data": { "_am": 15, - "id": "Bucket O' Magic", + "id": "Damage", + "tn": 9, }, }, - "StarsRequired": 21, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 10, - "id": "Diamonds", - "tn": 6, + "_am": 15, + "id": "Treasure Hunter", + "tn": 9, }, }, - "StarsRequired": 21, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 55, - "id": "TNT Crate", + "_am": 15, + "id": "Mini Chest", }, }, - "StarsRequired": 21, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 10, - "id": "Mini Chest", + "_am": 15, + "id": "Charm Stone", }, }, - "StarsRequired": 22, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 5, - "id": "Tech Key", + "_am": 15, + "id": "Lucky", + "tn": 9, }, }, - "StarsRequired": 22, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 40, - "id": "Large Gift Bag", + "_am": 15, + "id": "Tech Key", }, }, - "StarsRequired": 22, + "StarsRequired": 19, }, ], - "Title": "Tech Hacker", + "Title": "Awakened", "UnlockableEggSlots": 1, "UnlockablePetSlots": 1, }, - "configName": "24 | Tech Hacker", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.377Z", - "hashShort": "9a585e8c1e81ca0a", + "configName": "21 | Awakened", + "dateCreated": "2026-05-02T17:31:49.624Z", + "dateModified": "2026-05-02T17:31:49.624Z", + "hashShort": "fa4bf06170b3060a", }, { "category": "Ranks", @@ -158760,90 +197662,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 2000, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 2000, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 2000, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 50, + "Amount": 70, "Type": 14, "Weight": 1, }, { - "Amount": 50, + "Amount": 70, "Type": 15, "Weight": 1, }, { - "Amount": 35, + "Amount": 45, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 2750, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 60, + "Amount": 90, "Type": 14, "Weight": 1, }, { - "Amount": 60, + "Amount": 90, "Type": 15, "Weight": 1, }, { - "Amount": 20, + "Amount": 50, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 44, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 43, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 38, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 37, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 39, "Weight": 1, }, @@ -158853,22 +197755,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 1750, + "Amount": 2500, "Type": 20, "Weight": 1, }, { - "Amount": 1750, + "Amount": 2500, "Type": 20, "Weight": 1, }, { - "Amount": 750, + "Amount": 1250, "Type": 40, "Weight": 1, }, { - "Amount": 75, + "Amount": 125, "Type": 41, "Weight": 1, }, @@ -158878,7 +197780,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 40, + "Amount": 50, "Type": 25, "Weight": 1, }, @@ -158895,71 +197797,71 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 3000, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 500, + "Amount": 900, "Type": 9, "Weight": 1, }, { - "Amount": 5000, + "Amount": 10000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 30, + "Amount": 60, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 30, + "Amount": 60, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 30, + "Amount": 60, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 44, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 43, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 39, "Weight": 1, }, @@ -158969,22 +197871,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 2000, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 2000, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 900, + "Amount": 1400, "Type": 40, "Weight": 1, }, { - "Amount": 90, + "Amount": 140, "Type": 41, "Weight": 1, }, @@ -159006,48 +197908,48 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 3500, + "Amount": 4500, "Type": 21, "Weight": 1, }, { - "Amount": 3500, + "Amount": 4500, "Type": 21, "Weight": 1, }, { - "Amount": 3500, + "Amount": 4500, "Type": 21, "Weight": 1, }, { - "Amount": 750, + "Amount": 1200, "Type": 9, "Weight": 1, }, { - "Amount": 7500, + "Amount": 12000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 25, + "Amount": 50, "Type": 42, "Weight": 1, }, { - "Amount": 7, + "Amount": 8, "Type": 38, "Weight": 1, }, { - "Amount": 7, + "Amount": 8, "Type": 37, "Weight": 1, }, { - "Amount": 7, + "Amount": 8, "Type": 39, "Weight": 1, }, @@ -159060,64 +197962,42 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 23, + "RankNumber": 30, "RankUpRewards": [ { "_data": { - "_am": 5, + "_am": 100, "id": "Diamonds", - "tn": 7, - }, - }, - { - "_data": { - "_am": 5, - "id": "Coins", - "tn": 9, - }, - }, - { - "_data": { - "_am": 5, - "id": "Damage", - "tn": 9, - }, - }, - { - "_data": { - "_am": 5, - "id": "Treasure Hunter", - "tn": 9, }, }, { "_data": { - "_am": 350000, - "id": "Diamonds", + "_am": 30, + "id": "Large Enchant Bundle", }, }, { "_data": { - "_am": 3, - "id": "Charm Chisel", + "_am": 40, + "id": "Large Potion Bundle", }, }, { "_data": { - "_am": 6, - "id": "Secret Key", + "_am": 40, + "id": "Void Spinny Wheel Ticket", }, }, { "_data": { - "_am": 6, - "id": "Tech Key", + "_am": 30, + "id": "Void Key", }, }, { "_data": { - "_am": 10, - "id": "Mini Chest", + "_am": 8, + "id": "Rainbow Mini Chest", }, }, ], @@ -159125,134 +198005,98 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 145, - "id": "Hasty Flag", + "_am": 200, + "id": "Toy Ball", }, }, - "StarsRequired": 4, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 225, + "_am": 250, "id": "Rainbow", }, }, - "StarsRequired": 4, - }, - { - "Item": { - "_data": { - "_am": 295, - "id": "Apple", - }, - }, - "StarsRequired": 4, - }, - { - "Item": { - "_data": { - "_am": 40, - "id": "Flag Bundle", - }, - }, - "StarsRequired": 4, - }, - { - "Item": { - "_data": { - "_am": 15, - "id": "Party Box", - }, - }, - "StarsRequired": 5, - }, - { - "Item": { - "_data": { - "_am": 50000, - "id": "Diamonds", - }, - }, - "StarsRequired": 5, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 50, + "_am": 3, "id": "Basic Coin Jar", }, }, - "StarsRequired": 5, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 275, - "id": "Orange", + "_am": 30, + "id": "Fruit Bundle", }, }, - "StarsRequired": 5, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 170, - "id": "Strength Flag", + "_am": 250, + "id": "Apple", }, }, - "StarsRequired": 6, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 20, - "id": "Enchant Bundle", + "_am": 250, + "id": "Strength Flag", }, }, - "StarsRequired": 6, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 235, - "id": "Watermelon", + "_am": 300, + "id": "Banana", }, }, - "StarsRequired": 6, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 215, - "id": "Magnet Flag", + "_am": 30, + "id": "Enchant Essence", }, }, - "StarsRequired": 6, + "StarsRequired": 7, }, { "Item": { "_data": { "_am": 250, - "id": "Rainbow", + "id": "Toy Ball", }, }, - "StarsRequired": 7, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 255, - "id": "Watermelon", + "_am": 250, + "id": "Squeaky Toy", }, }, - "StarsRequired": 7, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 155, - "id": "Toy Ball", + "_am": 250, + "id": "Toy Bone", }, }, "StarsRequired": 8, @@ -159260,8 +198104,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 175, - "id": "Banana", + "_am": 3, + "id": "Treasure Hideout Key Lower Half", }, }, "StarsRequired": 8, @@ -159269,8 +198113,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 105, - "id": "TNT", + "_am": 150, + "id": "Magnet Flag", }, }, "StarsRequired": 9, @@ -159278,8 +198122,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 220, - "id": "Fortune Flag", + "_am": 200, + "id": "Diamonds Flag", }, }, "StarsRequired": 9, @@ -159287,8 +198131,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 195, - "id": "Rainbow", + "_am": 300, + "id": "Orange", }, }, "StarsRequired": 9, @@ -159296,7 +198140,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Tech Key", + "_am": 300, + "id": "Apple", }, }, "StarsRequired": 9, @@ -159304,8 +198149,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Mini Chest", + "_am": 300, + "id": "Watermelon", }, }, "StarsRequired": 10, @@ -159313,8 +198158,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Bucket O' Magic", + "_am": 200, + "id": "Rainbow", }, }, "StarsRequired": 10, @@ -159322,8 +198167,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Large Potion Bundle", + "_am": 125, + "id": "TNT", }, }, "StarsRequired": 10, @@ -159331,7 +198176,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Breakable Sprinkler", + "_am": 6, + "id": "Void Key Lower Half", }, }, "StarsRequired": 10, @@ -159339,8 +198185,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Mini Chest", + "_am": 10, + "id": "Breakable Sprinkler", }, }, "StarsRequired": 11, @@ -159348,8 +198194,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, - "id": "Secret Key", + "_am": 20, + "id": "Mini Chest", }, }, "StarsRequired": 11, @@ -159357,7 +198203,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, + "_am": 20, "id": "Gift Bag", }, }, @@ -159366,37 +198212,17 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Coins", - "tn": 7, - }, - }, - "StarsRequired": 12, - }, - { - "Item": { - "_data": { - "_am": 2, - "id": "Lucky", - "tn": 9, - }, - }, - "StarsRequired": 12, - }, - { - "Item": { - "_data": { - "id": "Treasure Hunter", - "tn": 8, + "_am": 12, + "id": "Treasure Hideout Key Upper Half", }, }, - "StarsRequired": 12, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 25, - "id": "Gift Bag", + "_am": 20, + "id": "Magic Shard", }, }, "StarsRequired": 13, @@ -159404,7 +198230,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Mini Chest", + "id": "Daycare Slot Voucher", }, }, "StarsRequired": 13, @@ -159412,8 +198238,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Gift Bag", + "_am": 3, + "id": "Coins", + "tn": 8, }, }, "StarsRequired": 13, @@ -159421,8 +198248,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Mini Chest", + "_am": 12, + "id": "Void Spinny Wheel Ticket", }, }, "StarsRequired": 14, @@ -159430,7 +198257,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Crystal Key", + "_am": 30, + "id": "Damage", + "tn": 9, }, }, "StarsRequired": 14, @@ -159438,7 +198267,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Treasure Hunter", + "_am": 30, + "id": "Coins", "tn": 9, }, }, @@ -159447,9 +198277,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Lucky", - "tn": 9, + "_am": 20, + "id": "Gift Bag", }, }, "StarsRequired": 15, @@ -159457,9 +198286,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 6, - "id": "Diamonds", - "tn": 7, + "_am": 20, + "id": "Mini Chest", }, }, "StarsRequired": 15, @@ -159467,8 +198295,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Breakable Sprinkler", + "_am": 12, + "id": "Coins", + "tn": 6, }, }, "StarsRequired": 15, @@ -159476,8 +198305,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Charm Chisel", + "_am": 6, + "id": "Void Key", }, }, "StarsRequired": 16, @@ -159485,8 +198314,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 3, - "id": "Insta Plant Capsule", + "_am": 12, + "id": "Large Potion Bundle", }, }, "StarsRequired": 16, @@ -159494,9 +198323,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Lucky", - "tn": 5, + "_am": 12, + "id": "Insta Plant Capsule", }, }, "StarsRequired": 16, @@ -159504,8 +198332,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Large Enchant Bundle", + "_am": 8, + "id": "Mini Pinata", }, }, "StarsRequired": 17, @@ -159513,8 +198341,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Secret Key", + "_am": 20, + "id": "Mini Lucky Block", }, }, "StarsRequired": 17, @@ -159522,8 +198350,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 150000, - "id": "Diamonds", + "_am": 20, + "id": "Lucky", + "tn": 8, }, }, "StarsRequired": 17, @@ -159531,8 +198360,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Large Gift Bag", + "_am": 40, + "id": "Enchant Bundle", }, }, "StarsRequired": 18, @@ -159540,7 +198369,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Booth Slot Voucher", + "_am": 10, + "id": "Treasure Hunter", + "tn": 8, }, }, "StarsRequired": 18, @@ -159549,8 +198380,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 20, - "id": "Lucky", - "tn": 6, + "id": "Void Spinny Wheel Ticket", }, }, "StarsRequired": 18, @@ -159558,8 +198388,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 10, - "id": "Large Gift Bag", + "id": "Void Key Upper Half", }, }, "StarsRequired": 19, @@ -159567,8 +198396,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 100, - "id": "TNT Crate", + "_am": 6, + "id": "Crystal Key", }, }, "StarsRequired": 19, @@ -159576,7 +198405,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Charm Chisel", + "_am": 8, + "id": "Damage", + "tn": 7, }, }, "StarsRequired": 19, @@ -159584,8 +198415,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Magic Shard", + "_am": 4, + "id": "Charm Hammer", }, }, "StarsRequired": 20, @@ -159593,9 +198424,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Damage", - "tn": 6, + "_am": 20, + "id": "Magic Shard", }, }, "StarsRequired": 20, @@ -159603,8 +198433,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 3, - "id": "Charm Stone", + "_am": 20, + "id": "Large Gift Bag", }, }, "StarsRequired": 20, @@ -159612,8 +198442,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Large Potion Bundle", + "_am": 40, + "id": "Party Box", }, }, "StarsRequired": 21, @@ -159621,9 +198451,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 9, - "id": "Treasure Hunter", - "tn": 7, + "_am": 125, + "id": "Rainbow Flag", }, }, "StarsRequired": 21, @@ -159631,8 +198460,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 10, - "id": "Crystal Key", + "_am": 150, + "id": "Rainbow Flag", }, }, "StarsRequired": 21, @@ -159640,8 +198469,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 10, - "id": "Mini Chest", + "_am": 40, + "id": "Gift Bag", }, }, "StarsRequired": 22, @@ -159649,13 +198478,69 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, - "id": "Damage", - "tn": 8, + "_am": 4, + "id": "Secret Key", + }, + }, + "StarsRequired": 22, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Lucky", + "tn": 5, }, }, "StarsRequired": 22, }, + { + "Item": { + "_data": { + "_am": 40, + "id": "Diamonds", + "tn": 7, + }, + }, + "StarsRequired": 23, + }, + { + "Item": { + "_data": { + "id": "Treasure Hunter", + "tn": 9, + }, + }, + "StarsRequired": 23, + }, + { + "Item": { + "_data": { + "_am": 125, + "id": "Shiny Flag", + }, + }, + "StarsRequired": 23, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Diamonds", + "tn": 6, + }, + }, + "StarsRequired": 24, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 24, + }, { "Item": { "_data": { @@ -159663,17 +198548,17 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "id": "Charm Stone", }, }, - "StarsRequired": 22, + "StarsRequired": 24, }, ], - "Title": "Tech Overlord", + "Title": "Cosmic", "UnlockableEggSlots": 1, - "UnlockablePetSlots": 1, + "UnlockablePetSlots": 0, }, - "configName": "23 | Tech Overlord", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.378Z", - "hashShort": "a6de127dfb493d2e", + "configName": "30 | Cosmic", + "dateCreated": "2026-05-02T17:31:49.628Z", + "dateModified": "2026-05-02T17:31:49.628Z", + "hashShort": "08c65b6cdb58386b", }, { "category": "Ranks", @@ -159682,90 +198567,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 2000, + "Amount": 1500, "Type": 21, "Weight": 1, }, { - "Amount": 2000, + "Amount": 1500, "Type": 21, "Weight": 1, }, { - "Amount": 2000, + "Amount": 1500, "Type": 21, "Weight": 1, }, { - "Amount": 50, + "Amount": 35, "Type": 14, "Weight": 1, }, { - "Amount": 50, + "Amount": 35, "Type": 15, "Weight": 1, }, { - "Amount": 35, + "Amount": 30, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 2750, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 60, + "Amount": 40, "Type": 14, "Weight": 1, }, { - "Amount": 60, + "Amount": 40, "Type": 15, "Weight": 1, }, { - "Amount": 20, + "Amount": 10, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 4, + "Amount": 3, "Type": 44, "Weight": 1, }, { - "Amount": 4, + "Amount": 3, "Type": 43, "Weight": 1, }, { - "Amount": 4, + "Amount": 3, "Type": 38, "Weight": 1, }, { - "Amount": 4, + "Amount": 3, "Type": 37, "Weight": 1, }, { - "Amount": 4, + "Amount": 3, "Type": 39, "Weight": 1, }, @@ -159775,22 +198660,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 1750, + "Amount": 1250, "Type": 20, "Weight": 1, }, { - "Amount": 1750, + "Amount": 1250, "Type": 20, "Weight": 1, }, { - "Amount": 750, + "Amount": 400, "Type": 40, "Weight": 1, }, { - "Amount": 75, + "Amount": 40, "Type": 41, "Weight": 1, }, @@ -159817,96 +198702,96 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 3000, + "Amount": 2500, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 2500, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 2500, "Type": 21, "Weight": 1, }, { - "Amount": 500, + "Amount": 350, "Type": 9, "Weight": 1, }, { - "Amount": 5000, + "Amount": 3000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 30, + "Amount": 18, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 30, + "Amount": 18, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 30, + "Amount": 18, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 44, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 43, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 39, "Weight": 1, }, { - "Amount": 2, + "Amount": 1, "Type": 76, "Weight": 1, }, { - "Amount": 2000, + "Amount": 1500, "Type": 20, "Weight": 1, }, { - "Amount": 2000, + "Amount": 1500, "Type": 20, "Weight": 1, }, { - "Amount": 900, + "Amount": 500, "Type": 40, "Weight": 1, }, { - "Amount": 90, + "Amount": 50, "Type": 41, "Weight": 1, }, @@ -159928,136 +198813,137 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 3500, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 3500, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 3500, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 750, + "Amount": 500, "Type": 9, "Weight": 1, }, { - "Amount": 7500, + "Amount": 3500, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 25, + "Amount": 20, "Type": 42, "Weight": 1, }, { - "Amount": 7, + "Amount": 5, "Type": 38, "Weight": 1, }, { - "Amount": 7, + "Amount": 5, "Type": 37, "Weight": 1, }, { - "Amount": 7, + "Amount": 5, "Type": 39, "Weight": 1, }, { - "Amount": 2, + "Amount": 1, "Type": 76, "Weight": 1, }, ], ], - "MaxEnchantsEquipped": 6, + "MaxEnchantsEquipped": 5, "MaximumActiveGoals": 4, - "RankNumber": 22, + "RankNumber": 18, "RankUpRewards": [ { "_data": { - "_am": 5, + "_am": 20, "id": "Lucky", - "tn": 9, + "tn": 8, }, }, { "_data": { - "_am": 5, + "_am": 20, "id": "Coins", - "tn": 9, + "tn": 8, }, }, { "_data": { - "_am": 5, + "_am": 20, "id": "Damage", - "tn": 9, - }, - }, - { - "_data": { - "_am": 5, - "id": "Treasure Hunter", - "tn": 9, + "tn": 8, }, }, { "_data": { - "_am": 250000, + "_am": 20, "id": "Diamonds", + "tn": 6, }, }, { "_data": { - "_am": 5, + "_am": 6, "id": "Crystal Key", }, }, { "_data": { - "_am": 5, - "id": "Secret Key", + "_am": 8, + "id": "Mini Chest", }, }, + ], + "Rewards": [ { - "_data": { - "_am": 5, - "id": "Tech Key", + "Item": { + "_data": { + "_am": 8, + "id": "Large Gift Bag", + }, }, + "StarsRequired": 3, }, { - "_data": { - "_am": 5, - "id": "Mini Chest", + "Item": { + "_data": { + "_am": 50000, + "id": "Diamonds", + }, }, + "StarsRequired": 3, }, - ], - "Rewards": [ { "Item": { "_data": { - "_am": 300, - "id": "Fruit Bundle", + "_am": 10, + "id": "Coins", + "tn": 6, }, }, - "StarsRequired": 4, + "StarsRequired": 3, }, { "Item": { "_data": { - "_am": 125, - "id": "Pineapple", + "_am": 10, + "id": "Mini Pinata", }, }, "StarsRequired": 4, @@ -160065,8 +198951,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20000, - "id": "Diamonds", + "_am": 4, + "id": "Crystal Key", }, }, "StarsRequired": 4, @@ -160074,8 +198960,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 150, - "id": "Coins Flag", + "_am": 50000, + "id": "Diamonds", }, }, "StarsRequired": 4, @@ -160083,8 +198969,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 160, - "id": "Hasty Flag", + "_am": 20, + "id": "Damage", + "tn": 6, }, }, "StarsRequired": 5, @@ -160092,8 +198979,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 3, - "id": "Mini Chest", + "_am": 300, + "id": "Banana", }, }, "StarsRequired": 5, @@ -160101,8 +198988,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 10, - "id": "Large Gift Bag", + "_am": 20, + "id": "Flag Bundle", }, }, "StarsRequired": 5, @@ -160110,8 +198997,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 295, - "id": "Pineapple", + "_am": 10, + "id": "Diamonds", + "tn": 6, }, }, "StarsRequired": 5, @@ -160119,8 +199007,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 100, - "id": "TNT", + "_am": 30, + "id": "Damage", + "tn": 6, }, }, "StarsRequired": 6, @@ -160128,8 +199017,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 160, - "id": "Squeaky Toy", + "_am": 30, + "id": "Coins", + "tn": 6, }, }, "StarsRequired": 6, @@ -160137,8 +199027,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 180, - "id": "Magnet Flag", + "_am": 25, + "id": "Potion Bundle", }, }, "StarsRequired": 6, @@ -160146,8 +199036,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 120, - "id": "Diamonds Flag", + "_am": 15, + "id": "Rainbow Flag", }, }, "StarsRequired": 6, @@ -160155,8 +199045,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 225, - "id": "Watermelon", + "_am": 300, + "id": "Rainbow", }, }, "StarsRequired": 7, @@ -160164,8 +199054,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 190, - "id": "Pineapple", + "_am": 6, + "id": "Crystal Key", }, }, "StarsRequired": 7, @@ -160173,435 +199063,419 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 205, - "id": "Apple", + "_am": 15, + "id": "Coins", + "tn": 7, }, }, - "StarsRequired": 8, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 50000, - "id": "Diamonds", + "_am": 4, + "id": "Mini Chest", }, }, - "StarsRequired": 8, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 175, - "id": "Banana", + "_am": 10, + "id": "Diamonds", + "tn": 6, }, }, - "StarsRequired": 9, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 200, - "id": "Toy Ball", + "_am": 40, + "id": "Toy Bundle", }, }, - "StarsRequired": 9, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 200, - "id": "Watermelon", + "_am": 50000, + "id": "Diamonds", }, }, - "StarsRequired": 9, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 30, - "id": "Mini Lucky Block", + "_am": 4, + "id": "Secret Key", }, }, - "StarsRequired": 9, + "StarsRequired": 8, }, { "Item": { "_data": { "_am": 15, - "id": "Damage", - "tn": 6, - }, - }, - "StarsRequired": 10, - }, - { - "Item": { - "_data": { - "_am": 20, - "id": "Potion Bundle", + "id": "Rainbow Flag", }, }, - "StarsRequired": 10, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 2, - "id": "Tech Key", + "_am": 300, + "id": "Orange", }, }, - "StarsRequired": 10, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 50, - "id": "Potion Bundle", + "_am": 20, + "id": "Mini Pinata", }, }, - "StarsRequired": 10, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 2, - "id": "Lucky", - "tn": 9, + "_am": 20, + "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 11, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 60000, - "id": "Diamonds", + "_am": 10, + "id": "Treasure Hunter", + "tn": 6, }, }, - "StarsRequired": 11, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 105, - "id": "Shiny Flag", + "_am": 30, + "id": "Party Box", }, }, - "StarsRequired": 11, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 5, - "id": "Treasure Hunter", + "_am": 30, + "id": "Damage", "tn": 7, }, }, - "StarsRequired": 12, + "StarsRequired": 9, }, { "Item": { "_data": { "_am": 25, - "id": "Damage", - "tn": 6, - }, - }, - "StarsRequired": 12, - }, - { - "Item": { - "_data": { - "_am": 15, - "id": "Large Gift Bag", + "id": "Coins", + "tn": 7, }, }, - "StarsRequired": 12, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 20, - "id": "Gift Bag", + "_am": 10, + "id": "Diamonds", + "tn": 6, }, }, - "StarsRequired": 13, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 20, - "id": "Treasure Hunter", + "_am": 8, + "id": "Lucky", "tn": 7, }, }, - "StarsRequired": 13, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 20, - "id": "Potion Bundle", + "_am": 300, + "id": "Rainbow", }, }, - "StarsRequired": 13, + "StarsRequired": 10, }, { "Item": { "_data": { "_am": 4, - "id": "Coins", - "tn": 9, + "id": "Mini Chest", }, }, - "StarsRequired": 14, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 5, - "id": "Bucket O' Magic", + "_am": 30, + "id": "Coins", + "tn": 7, }, }, - "StarsRequired": 14, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 3, - "id": "Large Gift Bag", + "_am": 15, + "id": "Shiny Flag", }, }, - "StarsRequired": 14, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 2, - "id": "Secret Key", + "_am": 30, + "id": "Damage", + "tn": 7, }, }, - "StarsRequired": 15, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 5, - "id": "Spinny Wheel Ticket", + "_am": 20, + "id": "Treasure Hunter", + "tn": 7, }, }, - "StarsRequired": 15, + "StarsRequired": 11, }, { "Item": { "_data": { - "id": "Crystal Key", + "_am": 20, + "id": "Enchant Bundle", }, }, - "StarsRequired": 15, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 3, - "id": "Charm Hammer", + "_am": 20, + "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 16, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 4, - "id": "Mini Chest", + "_am": 50000, + "id": "Diamonds", }, }, - "StarsRequired": 16, + "StarsRequired": 12, }, { "Item": { "_data": { - "id": "Diamonds", - "tn": 7, + "_am": 8, + "id": "Coins", + "tn": 8, }, }, - "StarsRequired": 16, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 5, + "_am": 15, "id": "Diamonds", "tn": 6, }, }, - "StarsRequired": 17, + "StarsRequired": 12, }, { "Item": { "_data": { "_am": 20, - "id": "Tech Spinny Wheel Ticket", - }, - }, - "StarsRequired": 17, - }, - { - "Item": { - "_data": { - "_am": 25, - "id": "Coins", + "id": "Treasure Hunter", "tn": 8, }, }, - "StarsRequired": 17, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 20, - "id": "Lucky", - "tn": 7, + "_am": 50, + "id": "Party Box", }, }, - "StarsRequired": 18, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 75, - "id": "Comet", + "_am": 15, + "id": "Coins", + "tn": 8, }, }, - "StarsRequired": 18, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 20, + "_am": 15, "id": "Damage", - "tn": 5, + "tn": 8, }, }, - "StarsRequired": 18, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 2, - "id": "Mini Chest", + "_am": 15, + "id": "Lucky", + "tn": 8, }, }, - "StarsRequired": 19, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 125, - "id": "Shiny Flag", + "_am": 6, + "id": "Crystal Key", }, }, - "StarsRequired": 19, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 25, - "id": "Enchant Bundle", + "_am": 300, + "id": "Rainbow", }, }, - "StarsRequired": 19, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 5, - "id": "Mini Chest", + "_am": 25, + "id": "Enchant Bundle", }, }, - "StarsRequired": 20, + "StarsRequired": 14, }, { "Item": { "_data": { "_am": 25, - "id": "Large Enchant Bundle", + "id": "Mini Pinata", }, }, - "StarsRequired": 20, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 50, - "id": "Seed Bag", + "_am": 30, + "id": "Coins", + "tn": 8, }, }, - "StarsRequired": 20, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 15, - "id": "Mini Lucky Block", + "_am": 30, + "id": "Damage", + "tn": 8, }, }, - "StarsRequired": 21, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 8, - "id": "Lucky", + "_am": 30, + "id": "Treasure Hunter", "tn": 8, }, }, - "StarsRequired": 21, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 100000, - "id": "Diamonds", + "_am": 8, + "id": "Mini Chest", }, }, - "StarsRequired": 21, + "StarsRequired": 15, }, { "Item": { "_data": { - "id": "Booth Slot Voucher", + "_am": 100, + "id": "Party Box", }, }, - "StarsRequired": 22, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 2, - "id": "Charm Chisel", + "_am": 20, + "id": "Lucky", + "tn": 8, }, }, - "StarsRequired": 22, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 200, - "id": "Rainbow Flag", + "_am": 10, + "id": "Charm Stone", }, }, - "StarsRequired": 22, + "StarsRequired": 16, }, ], - "Title": "Tech Sentinel", + "Title": "Conqueror", "UnlockableEggSlots": 1, "UnlockablePetSlots": 1, }, - "configName": "22 | Tech Sentinel", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.375Z", - "hashShort": "1f450c9be82208b9", + "configName": "18 | Conqueror", + "dateCreated": "2026-05-02T17:31:49.615Z", + "dateModified": "2026-05-02T17:31:49.615Z", + "hashShort": "8642c65ff6efb044", }, { "category": "Ranks", @@ -160610,115 +199484,115 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 2250, + "Amount": 1750, "Type": 21, "Weight": 1, }, { - "Amount": 2250, + "Amount": 1750, "Type": 21, "Weight": 1, }, { - "Amount": 2250, + "Amount": 1500, "Type": 21, "Weight": 1, }, { - "Amount": 60, + "Amount": 40, "Type": 14, "Weight": 1, }, { - "Amount": 60, + "Amount": 40, "Type": 15, "Weight": 1, }, { - "Amount": 40, + "Amount": 32, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 3000, + "Amount": 2250, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 2250, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 2250, "Type": 21, "Weight": 1, }, { - "Amount": 70, + "Amount": 40, "Type": 14, "Weight": 1, }, { - "Amount": 70, + "Amount": 40, "Type": 15, "Weight": 1, }, { - "Amount": 30, + "Amount": 15, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 44, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 43, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 39, "Weight": 1, }, { - "Amount": 2, + "Amount": 1, "Type": 76, "Weight": 1, }, { - "Amount": 2000, + "Amount": 1500, "Type": 20, "Weight": 1, }, { - "Amount": 2000, + "Amount": 1500, "Type": 20, "Weight": 1, }, { - "Amount": 900, + "Amount": 500, "Type": 40, "Weight": 1, }, { - "Amount": 90, + "Amount": 50, "Type": 41, "Weight": 1, }, @@ -160745,96 +199619,96 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 3250, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 3250, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 3250, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 650, + "Amount": 400, "Type": 9, "Weight": 1, }, { - "Amount": 7500, + "Amount": 3500, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 40, + "Amount": 20, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 40, + "Amount": 20, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 40, + "Amount": 20, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 44, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 43, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 38, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 37, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 39, "Weight": 1, }, { - "Amount": 2, + "Amount": 1, "Type": 76, "Weight": 1, }, { - "Amount": 2500, + "Amount": 1750, "Type": 20, "Weight": 1, }, { - "Amount": 2500, + "Amount": 1750, "Type": 20, "Weight": 1, }, { - "Amount": 1000, + "Amount": 500, "Type": 40, "Weight": 1, }, { - "Amount": 100, + "Amount": 50, "Type": 41, "Weight": 1, }, @@ -160856,48 +199730,48 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 3750, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 3750, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 3750, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 900, + "Amount": 550, "Type": 9, "Weight": 1, }, { - "Amount": 10000, + "Amount": 4000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 40, + "Amount": 20, "Type": 42, "Weight": 1, }, { - "Amount": 8, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 8, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 8, + "Amount": 6, "Type": 39, "Weight": 1, }, @@ -160908,49 +199782,47 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` }, ], ], - "MaxEnchantsEquipped": 6, + "MaxEnchantsEquipped": 5, "MaximumActiveGoals": 4, - "RankNumber": 25, + "RankNumber": 19, "RankUpRewards": [ { "_data": { - "_am": 2, - "id": "Lucky", - "tn": 10, + "_am": 4, + "id": "Secret Key", }, }, { "_data": { - "_am": 2, - "id": "Coins", - "tn": 10, + "_am": 6, + "id": "Crystal Key", }, }, { "_data": { - "_am": 2, - "id": "Damage", - "tn": 10, + "_am": 8, + "id": "Mini Chest", }, }, { "_data": { - "_am": 2, - "id": "Diamonds", + "_am": 25, + "id": "Coins", "tn": 8, }, }, { "_data": { - "_am": 2, - "id": "Treasure Hunter", - "tn": 10, + "_am": 25, + "id": "Damage", + "tn": 8, }, }, { "_data": { - "_am": 12, - "id": "Mini Chest", + "_am": 25, + "id": "Diamonds", + "tn": 7, }, }, ], @@ -160958,35 +199830,36 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Potion Bundle", + "_am": 8, + "id": "Large Gift Bag", }, }, - "StarsRequired": 5, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 70, - "id": "Rainbow Flag", + "_am": 100000, + "id": "Diamonds", }, }, - "StarsRequired": 5, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 120, - "id": "Hasty Flag", + "_am": 15, + "id": "Coins", + "tn": 6, }, }, - "StarsRequired": 5, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 195, - "id": "Toy Bone", + "_am": 15, + "id": "Mini Pinata", }, }, "StarsRequired": 5, @@ -160994,26 +199867,27 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 245, - "id": "Pineapple", + "_am": 4, + "id": "Crystal Key", }, }, - "StarsRequired": 6, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 220, - "id": "Strength Flag", + "_am": 100000, + "id": "Diamonds", }, }, - "StarsRequired": 6, + "StarsRequired": 5, }, { "Item": { "_data": { "_am": 25, - "id": "Enchant Bundle", + "id": "Damage", + "tn": 6, }, }, "StarsRequired": 6, @@ -161021,8 +199895,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Enchant Bundle", + "_am": 300, + "id": "Banana", }, }, "StarsRequired": 6, @@ -161030,17 +199904,17 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 155, - "id": "Squeaky Toy", + "_am": 40, + "id": "Flag Bundle", }, }, - "StarsRequired": 7, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 15, - "id": "Flag Bundle", + "_am": 75, + "id": "Toy Bundle", }, }, "StarsRequired": 7, @@ -161048,9 +199922,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Treasure Hunter", - "tn": 5, + "_am": 100000, + "id": "Diamonds", }, }, "StarsRequired": 7, @@ -161058,8 +199931,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 125, - "id": "Pineapple", + "_am": 4, + "id": "Secret Key", }, }, "StarsRequired": 7, @@ -161067,26 +199940,26 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 115, + "_am": 20, "id": "Rainbow Flag", }, }, - "StarsRequired": 8, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 185, - "id": "Strength Flag", + "_am": 300, + "id": "Orange", }, }, - "StarsRequired": 8, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 115, - "id": "Rainbow", + "_am": 20, + "id": "Mini Lucky Block", }, }, "StarsRequired": 8, @@ -161094,8 +199967,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Toy Bundle", + "_am": 20, + "id": "Tech Spinny Wheel Ticket", }, }, "StarsRequired": 8, @@ -161103,36 +199976,37 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 80, - "id": "TNT", + "_am": 15, + "id": "Treasure Hunter", + "tn": 6, }, }, - "StarsRequired": 9, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 70, - "id": "Rainbow Flag", + "_am": 40, + "id": "Party Box", }, }, - "StarsRequired": 9, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 170, - "id": "TNT", + "_am": 15, + "id": "Diamonds", + "tn": 6, }, }, - "StarsRequired": 9, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 5, - "id": "Diamonds", - "tn": 7, + "_am": 300, + "id": "Rainbow", }, }, "StarsRequired": 9, @@ -161140,376 +200014,394 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 35, - "id": "TNT Crate", + "_am": 4, + "id": "Tech Key", }, }, - "StarsRequired": 10, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 30, - "id": "Large Potion Bundle", + "_am": 25, + "id": "Coins", + "tn": 7, }, }, - "StarsRequired": 10, + "StarsRequired": 9, }, { "Item": { "_data": { - "id": "Daycare Slot Voucher", + "_am": 4, + "id": "Mini Chest", }, }, - "StarsRequired": 10, + "StarsRequired": 9, }, { "Item": { "_data": { "_am": 15, - "id": "Gift Bag", + "id": "Diamonds", + "tn": 6, }, }, - "StarsRequired": 10, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 6, + "_am": 40, "id": "Damage", - "tn": 8, + "tn": 6, }, }, - "StarsRequired": 11, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 15, - "id": "Insta Plant Capsule", + "_am": 40, + "id": "Coins", + "tn": 6, }, }, - "StarsRequired": 11, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 160, - "id": "Fortune Flag", + "_am": 40, + "id": "Potion Bundle", }, }, - "StarsRequired": 11, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 20, - "id": "Breakable Sprinkler", + "_am": 25, + "id": "Rainbow Flag", }, }, - "StarsRequired": 12, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 5, + "_am": 40, "id": "Damage", - "tn": 9, + "tn": 6, }, }, - "StarsRequired": 12, + "StarsRequired": 10, }, { "Item": { "_data": { - "id": "Crystal Key", + "_am": 40, + "id": "Coins", + "tn": 7, }, }, - "StarsRequired": 12, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 15, - "id": "Charm Stone", + "_am": 20, + "id": "Shiny Flag", }, }, - "StarsRequired": 13, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 3, - "id": "Secret Key", + "_am": 30, + "id": "Damage", + "tn": 7, }, }, - "StarsRequired": 13, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 25, - "id": "Large Gift Bag", + "_am": 20, + "id": "Treasure Hunter", + "tn": 7, }, }, - "StarsRequired": 13, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 25, - "id": "Magic Shard", + "_am": 30, + "id": "Enchant Bundle", }, }, - "StarsRequired": 14, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 6, - "id": "Mini Pinata", + "_am": 30, + "id": "Coins", + "tn": 7, }, }, - "StarsRequired": 14, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 20, - "id": "Gift Bag", + "_am": 12, + "id": "Diamonds", + "tn": 6, }, }, - "StarsRequired": 14, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 20, - "id": "Mini Lucky Block", + "_am": 8, + "id": "Lucky", + "tn": 7, }, }, - "StarsRequired": 15, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 5, - "id": "Mini Chest", + "_am": 300, + "id": "Rainbow", }, }, - "StarsRequired": 15, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 15, - "id": "Seed Bag", + "_am": 8, + "id": "Mini Chest", }, }, - "StarsRequired": 15, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 6, - "id": "Insta Plant Capsule", + "_am": 20, + "id": "Treasure Hunter", + "tn": 8, }, }, - "StarsRequired": 16, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 25, + "_am": 75, "id": "Party Box", }, }, - "StarsRequired": 16, + "StarsRequired": 13, }, { "Item": { "_data": { "_am": 15, "id": "Coins", - "tn": 9, + "tn": 8, }, }, - "StarsRequired": 16, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 3, - "id": "Secret Key", + "_am": 15, + "id": "Damage", + "tn": 8, }, }, - "StarsRequired": 17, + "StarsRequired": 13, }, { "Item": { "_data": { - "id": "Booth Slot Voucher", + "_am": 30, + "id": "Tech Spinny Wheel Ticket", }, }, - "StarsRequired": 17, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 15, - "id": "Comet", + "_am": 250000, + "id": "Diamonds", }, }, - "StarsRequired": 17, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 3, - "id": "Tech Key", + "_am": 8, + "id": "Coins", + "tn": 8, }, }, - "StarsRequired": 18, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 9, - "id": "Breakable Sprinkler", + "_am": 8, + "id": "Diamonds", + "tn": 7, }, }, - "StarsRequired": 18, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 25, - "id": "Mini Lucky Block", + "_am": 10, + "id": "Coins", + "tn": 11, }, }, - "StarsRequired": 18, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 25, - "id": "Large Gift Bag", + "_am": 8, + "id": "Lucky", + "tn": 9, }, }, - "StarsRequired": 19, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 3, - "id": "Diamonds", - "tn": 7, + "_am": 6, + "id": "Crystal Key", }, }, - "StarsRequired": 19, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 5, - "id": "Mini Chest", + "_am": 300, + "id": "Rainbow", }, }, - "StarsRequired": 19, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 15, - "id": "Fruit Bundle", + "_am": 40, + "id": "Enchant Bundle", }, }, - "StarsRequired": 20, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 2, - "id": "Bucket O' Magic", + "_am": 30, + "id": "Mini Pinata", }, }, - "StarsRequired": 20, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 6, - "id": "Lucky", - "tn": 8, + "_am": 8, + "id": "Coins", + "tn": 9, }, }, - "StarsRequired": 20, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 9, - "id": "Diamonds", - "tn": 6, + "_am": 8, + "id": "Damage", + "tn": 9, }, }, - "StarsRequired": 22, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 25, - "id": "Damage", - "tn": 7, + "_am": 8, + "id": "Treasure Hunter", + "tn": 9, }, }, - "StarsRequired": 22, + "StarsRequired": 16, }, { "Item": { "_data": { - "id": "Charm Chisel", + "_am": 8, + "id": "Mini Chest", }, }, - "StarsRequired": 22, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 15, - "id": "Spinny Wheel Ticket", + "_am": 8, + "id": "Charm Stone", }, }, - "StarsRequired": 23, + "StarsRequired": 16, }, { "Item": { "_data": { "_am": 25, - "id": "Magic Shard", + "id": "Lucky", + "tn": 8, }, }, - "StarsRequired": 23, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 10, - "id": "Diamonds", - "tn": 8, + "_am": 12, + "id": "Tech Key", }, }, - "StarsRequired": 23, + "StarsRequired": 17, }, ], - "Title": "Omniscient", + "Title": "Monarch", "UnlockableEggSlots": 1, "UnlockablePetSlots": 1, }, - "configName": "25 | Omniscient", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.711Z", - "hashShort": "6fd1971318e36fc7", + "configName": "19 | Monarch", + "dateCreated": "2026-05-02T17:31:49.626Z", + "dateModified": "2026-05-02T17:31:49.626Z", + "hashShort": "06c3e53245b292fb", }, { "category": "Ranks", @@ -161518,90 +200410,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 2250, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 2250, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 2250, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 60, + "Amount": 90, "Type": 14, "Weight": 1, }, { - "Amount": 60, + "Amount": 90, "Type": 15, "Weight": 1, }, { - "Amount": 40, + "Amount": 60, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 3000, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 70, + "Amount": 120, "Type": 14, "Weight": 1, }, { - "Amount": 70, + "Amount": 120, "Type": 15, "Weight": 1, }, { - "Amount": 30, + "Amount": 70, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 44, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 43, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 39, "Weight": 1, }, @@ -161611,87 +200503,87 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 2000, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 2000, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 900, + "Amount": 1750, "Type": 40, "Weight": 1, }, { - "Amount": 90, + "Amount": 160, "Type": 41, "Weight": 1, }, { - "Amount": 50, + "Amount": 70, "Type": 26, "Weight": 1, }, { - "Amount": 40, + "Amount": 70, "Type": 25, "Weight": 1, }, { - "Amount": 75, + "Amount": 90, "Type": 46, "Weight": 1, }, { - "Amount": 75, + "Amount": 90, "Type": 45, "Weight": 1, }, ], [ { - "Amount": 3250, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 3250, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 3250, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 650, + "Amount": 1200, "Type": 9, "Weight": 1, }, { - "Amount": 7500, + "Amount": 16000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 40, + "Amount": 75, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 40, + "Amount": 75, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 40, + "Amount": 75, "PotionTier": 4, "Type": 34, "Weight": 1, @@ -161727,22 +200619,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 2500, + "Amount": 3500, "Type": 20, "Weight": 1, }, { - "Amount": 2500, + "Amount": 3500, "Type": 20, "Weight": 1, }, { - "Amount": 1000, + "Amount": 1800, "Type": 40, "Weight": 1, }, { - "Amount": 100, + "Amount": 170, "Type": 41, "Weight": 1, }, @@ -161764,33 +200656,33 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 3750, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 3750, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 3750, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 900, + "Amount": 1750, "Type": 9, "Weight": 1, }, { - "Amount": 10000, + "Amount": 17000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 40, + "Amount": 70, "Type": 42, "Weight": 1, }, @@ -161818,71 +200710,39 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 26, + "RankNumber": 38, "RankUpRewards": [ { "_data": { - "_am": 4, - "id": "Lucky", - "tn": 10, - }, - }, - { - "_data": { - "_am": 4, - "id": "Coins", - "tn": 10, + "id": "Golden Prison Key", }, }, { "_data": { - "_am": 4, "id": "Damage", - "tn": 10, - }, - }, - { - "_data": { - "_am": 4, - "id": "Diamonds", - "tn": 8, + "tn": 11, }, }, { "_data": { - "_am": 4, "id": "Treasure Hunter", - "tn": 10, - }, - }, - { - "_data": { - "_am": 1000000, - "id": "Diamonds", - }, - }, - { - "_data": { - "_am": 15, - "id": "Mini Chest", + "tn": 11, }, }, { "_data": { - "_am": 10, - "id": "Tech Spinny Wheel Ticket", + "id": "Lucky", + "tn": 10, }, }, { "_data": { - "_am": 10, - "id": "Secret Key", + "id": "Rainbow Mini Chest", }, }, { "_data": { - "_am": 10, - "id": "Tech Key", + "id": "Hacker Key", }, }, ], @@ -161890,562 +200750,559 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 100000, - "id": "Diamonds", + "_am": 300, + "id": "Tap Power", + "tn": 5, }, }, - "StarsRequired": 5, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 3, + "_am": 250, "id": "Treasure Hunter", - "tn": 5, + "tn": 8, }, }, - "StarsRequired": 5, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 25, - "id": "Potion Bundle", + "_am": 300, + "id": "Bonus", + "tn": 1, }, }, - "StarsRequired": 5, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 155, - "id": "Apple", + "_am": 300, + "id": "Pet Cube", }, }, - "StarsRequired": 5, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 200, - "id": "Orange", + "_am": 300, + "id": "Lucky", + "tn": 7, }, }, - "StarsRequired": 6, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 190, - "id": "Diamonds Flag", + "_am": 300, + "id": "Comet", }, }, - "StarsRequired": 6, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 5, - "id": "Toy Bundle", + "_am": 300, + "id": "Seashell", }, }, - "StarsRequired": 6, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 135, - "id": "Rainbow", + "_am": 300, + "id": "Large Enchant Bundle", }, }, - "StarsRequired": 6, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 160, - "id": "Fortune Flag", + "_am": 300, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 7, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 25, - "id": "Toy Bundle", + "_am": 300, + "id": "Breakable Sprinkler", }, }, - "StarsRequired": 7, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 105, - "id": "Toy Bone", + "_am": 150, + "id": "Rainbow Flag", }, }, - "StarsRequired": 7, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 20, - "id": "Enchant Bundle", + "_am": 250, + "id": "Fortune Flag", }, }, - "StarsRequired": 7, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 225, - "id": "Banana", + "_am": 150, + "id": "Treasure Hunter", + "tn": 9, }, }, - "StarsRequired": 8, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 110, - "id": "Fortune Flag", + "_am": 200, + "id": "Coins", + "tn": 10, }, }, - "StarsRequired": 8, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 220, - "id": "Coins Flag", + "_am": 300, + "id": "Void Key Lower Half", }, }, - "StarsRequired": 8, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 140, - "id": "Rainbow Flag", + "_am": 300, + "id": "Damage", + "tn": 7, }, }, - "StarsRequired": 8, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 150, - "id": "Watermelon", + "_am": 125, + "id": "Gift Bag", }, }, - "StarsRequired": 9, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 25, - "id": "Party Box", + "_am": 200, + "id": "Agility", + "tn": 1, }, }, - "StarsRequired": 9, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 55, - "id": "Rainbow Flag", + "_am": 150, + "id": "Golden Pencil", }, }, - "StarsRequired": 9, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 2, - "id": "Charm Hammer", + "_am": 125, + "id": "TNT Crate", }, }, - "StarsRequired": 9, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 30, - "id": "TNT Crate", + "_am": 100, + "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 10, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 2, - "id": "Secret Key", + "_am": 125, + "id": "Coins", + "tn": 9, }, }, - "StarsRequired": 10, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 15, - "id": "Seed Bag", + "_am": 125, + "id": "Fantasy Key Lower Half", }, }, - "StarsRequired": 10, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 2, - "id": "Lucky", + "_am": 100, + "id": "Damage", "tn": 8, }, }, - "StarsRequired": 10, + "StarsRequired": 13, }, { "Item": { "_data": { - "id": "Booth Slot Voucher", + "_am": 100, + "id": "Seed Bag", }, }, - "StarsRequired": 11, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 20, - "id": "Diamonds", - "tn": 6, + "_am": 75, + "id": "Void Key Upper Half", }, }, - "StarsRequired": 11, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 8, - "id": "Large Gift Bag", + "_am": 50, + "id": "Diamonds", + "tn": 7, }, }, - "StarsRequired": 11, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 6, - "id": "Spinny Wheel Ticket", + "_am": 50, + "id": "Diamonds", + "tn": 8, }, }, - "StarsRequired": 12, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 15, - "id": "Damage", - "tn": 8, + "_am": 100, + "id": "Tech Spinny Wheel Ticket", }, }, - "StarsRequired": 12, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 25, - "id": "Diamonds", - "tn": 5, + "_am": 100, + "id": "Damage", + "tn": 9, }, }, - "StarsRequired": 12, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 15, - "id": "Breakable Sprinkler", + "id": "Daycare Slot Voucher", }, }, - "StarsRequired": 13, + "StarsRequired": 17, }, { "Item": { "_data": { - "id": "Mini Pinata", + "_am": 4, + "id": "Secret Key", }, }, - "StarsRequired": 13, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 15, - "id": "Gift Bag", + "_am": 50, + "id": "Treasure Hideout Key Upper Half", }, }, - "StarsRequired": 13, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 9, - "id": "Coins", - "tn": 9, + "_am": 50, + "id": "Large Gift Bag", }, }, - "StarsRequired": 14, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 15, - "id": "Large Gift Bag", + "_am": 40, + "id": "Lucky", + "tn": 9, }, }, - "StarsRequired": 14, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 70, - "id": "TNT Crate", + "_am": 100, + "id": "MVP Key Lower Half", }, }, - "StarsRequired": 14, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 5, + "_am": 30, "id": "Insta Plant Capsule", }, }, - "StarsRequired": 15, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 5, - "id": "Lucky", - "tn": 7, + "_am": 75, + "id": "Basic Item Jar", }, }, - "StarsRequired": 15, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 20, - "id": "Magic Shard", + "_am": 30, + "id": "Fantasy Spinny Wheel Ticket", }, }, - "StarsRequired": 15, + "StarsRequired": 19, }, { "Item": { "_data": { "_am": 20, - "id": "Treasure Hunter", - "tn": 6, + "id": "Charm Stone", }, }, - "StarsRequired": 16, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 7, - "id": "Mini Chest", + "_am": 100, + "id": "Strength", + "tn": 1, }, }, - "StarsRequired": 16, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 15, - "id": "Magic Shard", + "_am": 40, + "id": "Millionaire Ticket", }, }, - "StarsRequired": 16, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 20, - "id": "Large Gift Bag", + "_am": 15, + "id": "Void Key", }, }, - "StarsRequired": 17, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 9, - "id": "Large Potion Bundle", + "_am": 6, + "id": "Crystal Key", }, }, - "StarsRequired": 17, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 5, - "id": "Mini Chest", + "_am": 40, + "id": "Lucky", + "tn": 8, }, }, - "StarsRequired": 18, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 5, - "id": "Charm Stone", + "_am": 25, + "id": "Void Spinny Wheel Ticket", }, }, - "StarsRequired": 19, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 5, - "id": "Crystal Key", + "_am": 25, + "id": "Treasure Hideout Key", }, }, - "StarsRequired": 19, + "StarsRequired": 22, }, { "Item": { "_data": { "_am": 25, - "id": "Spinny Wheel Ticket", + "id": "Fantasy Key Upper Half", }, }, - "StarsRequired": 19, + "StarsRequired": 22, }, { "Item": { "_data": { "_am": 15, - "id": "Damage", - "tn": 7, + "id": "Ultra Pet Cube", }, }, - "StarsRequired": 20, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 15, - "id": "Coins", - "tn": 7, + "_am": 12, + "id": "Fantasy Key", }, }, - "StarsRequired": 20, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 15, - "id": "Diamonds", - "tn": 7, + "id": "Booth Slot Voucher", }, }, - "StarsRequired": 20, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 10, - "id": "Mini Pinata", + "_am": 15, + "id": "Diamond Gift Bag", }, }, - "StarsRequired": 21, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 20, - "id": "Spinny Wheel Ticket", + "_am": 100, + "id": "Crystal Key Upper Half", }, }, - "StarsRequired": 21, + "StarsRequired": 24, }, { "Item": { "_data": { "_am": 25, - "id": "Seed Bag", + "id": "Mini Chest", }, }, - "StarsRequired": 21, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 5, - "id": "Charm Stone", + "_am": 8, + "id": "Bucket O' Magic", }, }, - "StarsRequired": 22, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 10, - "id": "Coins", - "tn": 9, + "_am": 30, + "id": "Millionaire Bucks", }, }, - "StarsRequired": 22, + "StarsRequired": 25, }, { "Item": { "_data": { - "id": "Charm Hammer", + "_am": 8, + "id": "Magic Shard", }, }, - "StarsRequired": 22, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 5, - "id": "Lucky", + "_am": 75, + "id": "Damage", "tn": 10, }, }, - "StarsRequired": 23, - }, - { - "Item": { - "_data": { - "_am": 15, - "id": "Mini Chest", - }, - }, - "StarsRequired": 23, + "StarsRequired": 26, }, { "Item": { "_data": { "_am": 10, - "id": "Basic Item Jar", + "id": "Coins", + "tn": 11, }, }, - "StarsRequired": 23, + "StarsRequired": 26, }, ], - "Title": "Celestial", - "UnlockableEggSlots": 1, - "UnlockablePetSlots": 1, + "Title": "Timekeeper", + "UnlockableEggSlots": 0, + "UnlockablePetSlots": 0, }, - "configName": "26 | Celestial", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.709Z", - "hashShort": "7b3f578986909ebf", + "configName": "38 | Timekeeper", + "dateCreated": "2026-05-02T17:31:49.633Z", + "dateModified": "2026-05-02T17:31:49.633Z", + "hashShort": "105de72ac42be55d", }, { "category": "Ranks", @@ -162454,90 +201311,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 2500, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 2500, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 2500, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 65, + "Amount": 90, "Type": 14, "Weight": 1, }, { - "Amount": 65, + "Amount": 90, "Type": 15, "Weight": 1, }, { - "Amount": 40, + "Amount": 60, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 3250, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 3250, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 3250, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 80, + "Amount": 120, "Type": 14, "Weight": 1, }, { - "Amount": 80, + "Amount": 120, "Type": 15, "Weight": 1, }, { - "Amount": 40, + "Amount": 70, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 44, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 43, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 39, "Weight": 1, }, @@ -162547,87 +201404,87 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 2250, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 2250, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 1000, + "Amount": 1750, "Type": 40, "Weight": 1, }, { - "Amount": 100, + "Amount": 160, "Type": 41, "Weight": 1, }, { - "Amount": 50, + "Amount": 70, "Type": 26, "Weight": 1, }, { - "Amount": 50, + "Amount": 70, "Type": 25, "Weight": 1, }, { - "Amount": 75, + "Amount": 90, "Type": 46, "Weight": 1, }, { - "Amount": 75, + "Amount": 90, "Type": 45, "Weight": 1, }, ], [ { - "Amount": 3500, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 3500, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 3500, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 750, + "Amount": 1200, "Type": 9, "Weight": 1, }, { - "Amount": 9000, + "Amount": 16000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 50, + "Amount": 75, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 50, + "Amount": 75, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 50, + "Amount": 75, "PotionTier": 4, "Type": 34, "Weight": 1, @@ -162658,22 +201515,27 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 2750, + "Amount": 2, + "Type": 76, + "Weight": 1, + }, + { + "Amount": 3500, "Type": 20, "Weight": 1, }, { - "Amount": 2750, + "Amount": 3500, "Type": 20, "Weight": 1, }, { - "Amount": 1200, + "Amount": 1800, "Type": 40, "Weight": 1, }, { - "Amount": 120, + "Amount": 170, "Type": 41, "Weight": 1, }, @@ -162695,33 +201557,33 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 4000, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 4000, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 4000, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 1000, + "Amount": 1750, "Type": 9, "Weight": 1, }, { - "Amount": 11000, + "Amount": 17000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 50, + "Amount": 70, "Type": 42, "Weight": 1, }, @@ -162745,71 +201607,32 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Type": 76, "Weight": 1, }, - { - "Amount": 2, - "Type": 76, - "Weight": 1, - }, ], ], "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 27, + "RankNumber": 34, "RankUpRewards": [ { "_data": { - "_am": 2000000, + "_am": 100, "id": "Diamonds", }, }, { "_data": { - "_am": 12, - "id": "Large Enchant Bundle", - }, - }, - { - "_data": { - "_am": 24, - "id": "Large Potion Bundle", - }, - }, - { - "_data": { - "_am": 12, - "id": "Tech Spinny Wheel Ticket", - }, - }, - { - "_data": { - "_am": 12, - "id": "Secret Key", - }, - }, - { - "_data": { - "_am": 12, - "id": "Tech Key", - }, - }, - { - "_data": { - "_am": 6, - "id": "Mini Chest", + "id": "Mega Potion Chest", }, }, { "_data": { - "_am": 6, - "id": "Lucky", - "tn": 10, + "id": "Mega Enchant Chest", }, }, { "_data": { - "_am": 6, - "id": "Diamonds", - "tn": 8, + "_am": 15, + "id": "Rainbow Mini Chest", }, }, ], @@ -162817,557 +201640,552 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Coins", - "tn": 5, + "_am": 15, + "id": "Enchant Bundle", }, }, - "StarsRequired": 5, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 200, - "id": "TNT", + "_am": 125, + "id": "Squeaky Toy", }, }, - "StarsRequired": 5, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 40, + "_am": 8, "id": "Basic Coin Jar", }, }, - "StarsRequired": 5, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 150, - "id": "TNT Crate", + "id": "Enchant Bundle", }, }, - "StarsRequired": 5, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 170, - "id": "Magnet Flag", + "_am": 75, + "id": "Watermelon", }, }, - "StarsRequired": 6, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 260, - "id": "Orange", + "_am": 150, + "id": "Apple", }, }, - "StarsRequired": 6, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 225, - "id": "Squeaky Toy", + "_am": 125, + "id": "Toy Ball", }, }, - "StarsRequired": 6, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 25, - "id": "Toy Bundle", + "_am": 150, + "id": "Rainbow", }, }, - "StarsRequired": 6, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 25, - "id": "Potion Bundle", + "_am": 125, + "id": "Strength Flag", }, }, - "StarsRequired": 7, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 15, - "id": "Large Potion Bundle", + "_am": 8, + "id": "Treasure Hunter", + "tn": 7, }, }, - "StarsRequired": 7, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 95, - "id": "Shiny Flag", + "_am": 75, + "id": "Hasty Flag", }, }, - "StarsRequired": 7, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 130, - "id": "Diamonds Flag", + "_am": 2, + "id": "Fantasy Key Lower Half", }, }, - "StarsRequired": 7, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 195, - "id": "Strength Flag", + "_am": 75, + "id": "Banana", }, }, - "StarsRequired": 8, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 180, - "id": "Diamonds Flag", + "_am": 15, + "id": "Enchant Essence", }, }, - "StarsRequired": 8, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 2, - "id": "Basic Item Jar", + "_am": 125, + "id": "Coins Flag", }, }, - "StarsRequired": 8, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 170, - "id": "Banana", + "_am": 100, + "id": "Squeaky Toy", }, }, - "StarsRequired": 8, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 145, - "id": "Magnet Flag", + "_am": 15, + "id": "Fantasy Key Lower Half", }, }, - "StarsRequired": 9, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 20, - "id": "Large Potion Bundle", + "_am": 12, + "id": "Diamonds", + "tn": 6, }, }, - "StarsRequired": 9, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 15, - "id": "Comet", + "_am": 100, + "id": "Watermelon", }, }, - "StarsRequired": 9, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 2, - "id": "Coins", - "tn": 10, + "id": "Large Potion Bundle", }, }, - "StarsRequired": 9, + "StarsRequired": 12, }, { "Item": { "_data": { "_am": 5, - "id": "Large Gift Bag", + "id": "Coins", + "tn": 10, }, }, - "StarsRequired": 10, + "StarsRequired": 13, }, { "Item": { "_data": { - "id": "Treasure Hideout Key", + "_am": 75, + "id": "Shiny Flag", }, }, - "StarsRequired": 10, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 4, - "id": "Tech Key", + "id": "Breakable Sprinkler", }, }, - "StarsRequired": 10, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 20, - "id": "Mini Lucky Block", + "_am": 125, + "id": "Fortune Flag", }, }, - "StarsRequired": 10, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 5, - "id": "Mini Chest", + "_am": 15, + "id": "Basic Item Jar", }, }, - "StarsRequired": 12, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 15, - "id": "Diamonds", - "tn": 7, + "_am": 30, + "id": "TNT Crate", }, }, - "StarsRequired": 12, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 9, - "id": "Lucky", - "tn": 7, + "_am": 12, + "id": "Golden Pencil", }, }, - "StarsRequired": 12, + "StarsRequired": 15, }, { "Item": { "_data": { - "id": "Booth Slot Voucher", + "_am": 5, + "id": "Seashell", }, }, - "StarsRequired": 13, + "StarsRequired": 16, }, { "Item": { "_data": { - "id": "Damage", - "tn": 10, + "_am": 2, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 13, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 5, - "id": "Large Potion Bundle", + "_am": 4, + "id": "Basic Item Jar", }, }, - "StarsRequired": 13, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 30, - "id": "Gift Bag", + "id": "MVP Key Lower Half", }, }, - "StarsRequired": 14, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 15, - "id": "Large Gift Bag", + "_am": 100, + "id": "Toy Bone", }, }, - "StarsRequired": 14, + "StarsRequired": 17, }, { "Item": { "_data": { - "id": "Treasure Hunter", - "tn": 10, + "_am": 2, + "id": "Fantasy Key", }, }, - "StarsRequired": 14, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 6, - "id": "Diamonds", - "tn": 6, + "_am": 4, + "id": "Hacker Key", }, }, - "StarsRequired": 15, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 9, - "id": "Mini Chest", + "id": "Daycare Slot Voucher", }, }, - "StarsRequired": 15, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 20, - "id": "Bucket O' Magic", + "_am": 15, + "id": "Fantasy Spinny Wheel Ticket", }, }, - "StarsRequired": 15, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 15, - "id": "Damage", - "tn": 8, + "_am": 2, + "id": "Crystal Key", }, }, - "StarsRequired": 16, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 5, - "id": "Lucky", - "tn": 6, + "_am": 12, + "id": "Damage", + "tn": 10, }, }, - "StarsRequired": 16, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 6, - "id": "Large Gift Bag", + "_am": 12, + "id": "Fruit Bundle", }, }, - "StarsRequired": 16, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 10, - "id": "Crystal Key", + "_am": 8, + "id": "Party Box", }, }, - "StarsRequired": 17, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 8, - "id": "Mini Chest", + "_am": 5, + "id": "Gift Bag", }, }, - "StarsRequired": 17, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 4, - "id": "Party Box", + "_am": 5, + "id": "Gift Bag", }, }, - "StarsRequired": 17, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 20, - "id": "Insta Plant Capsule", + "_am": 15, + "id": "Treasure Hideout Key Upper Half", }, }, - "StarsRequired": 18, + "StarsRequired": 21, }, { "Item": { "_data": { - "id": "Treasure Hideout Key", + "_am": 2, + "id": "Diamonds", + "tn": 9, }, }, - "StarsRequired": 18, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 4, - "id": "Secret Key", + "_am": 8, + "id": "Lucky", + "tn": 8, }, }, - "StarsRequired": 18, + "StarsRequired": 21, }, { "Item": { "_data": { "_am": 15, - "id": "Spinny Wheel Ticket", + "id": "Coins", + "tn": 9, }, }, - "StarsRequired": 19, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 15, - "id": "Gift Bag", + "id": "Charm Chisel", }, }, - "StarsRequired": 19, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 3, - "id": "Charm Hammer", + "_am": 75, + "id": "Rainbow Flag", }, }, - "StarsRequired": 19, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 6, + "_am": 12, "id": "Damage", - "tn": 6, + "tn": 8, }, }, - "StarsRequired": 20, + "StarsRequired": 23, }, { "Item": { "_data": { "_am": 3, - "id": "Lucky", - "tn": 9, + "id": "Charm Hammer", }, }, - "StarsRequired": 20, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 25, - "id": "Tech Spinny Wheel Ticket", + "id": "Fantasy Key Upper Half", }, }, - "StarsRequired": 20, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 20, - "id": "Seed Bag", + "_am": 8, + "id": "Mini Chest", }, }, - "StarsRequired": 21, + "StarsRequired": 24, }, { "Item": { "_data": { - "id": "Daycare Slot Voucher", + "_am": 2, + "id": "Mini Chest", }, }, - "StarsRequired": 21, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 5, - "id": "Lucky", - "tn": 10, + "id": "Damage", + "tn": 11, }, }, - "StarsRequired": 21, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 7, - "id": "Mini Chest", + "_am": 8, + "id": "Bucket O' Magic", }, }, - "StarsRequired": 22, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 2, - "id": "Charm Chisel", + "_am": 5, + "id": "Golden Pencil", }, }, - "StarsRequired": 22, + "StarsRequired": 25, }, { "Item": { "_data": { - "id": "Basic Item Jar", + "id": "Diamonds", + "tn": 9, }, }, - "StarsRequired": 22, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 25, - "id": "Tech Spinny Wheel Ticket", + "id": "Treasure Hunter", + "tn": 11, }, }, - "StarsRequired": 23, + "StarsRequired": 26, }, { "Item": { "_data": { - "_am": 5, - "id": "Basic Item Jar", + "id": "Charm Chisel", }, }, - "StarsRequired": 23, + "StarsRequired": 26, }, { "Item": { "_data": { - "_am": 30, - "id": "Charm Stone", + "_am": 12, + "id": "Basic Item Jar", }, }, - "StarsRequired": 23, + "StarsRequired": 26, }, ], - "Title": "Apex", - "UnlockableEggSlots": 1, + "Title": "Ancient", + "UnlockableEggSlots": 0, "UnlockablePetSlots": 0, }, - "configName": "27 | Apex", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.715Z", - "hashShort": "7d7e99170a6d8ef6", + "configName": "34 | Ancient", + "dateCreated": "2026-05-02T17:31:49.598Z", + "dateModified": "2026-05-02T17:31:49.598Z", + "hashShort": "5d17d80684d04067", }, { "category": "Ranks", @@ -163376,64 +202194,64 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 2500, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 2500, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 2500, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 65, + "Amount": 70, "Type": 14, "Weight": 1, }, { - "Amount": 65, + "Amount": 70, "Type": 15, "Weight": 1, }, { - "Amount": 40, + "Amount": 45, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 3250, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 3250, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 3250, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 80, + "Amount": 90, "Type": 14, "Weight": 1, }, { - "Amount": 80, + "Amount": 90, "Type": 15, "Weight": 1, }, { - "Amount": 40, + "Amount": 50, "PotionTier": 4, "Type": 34, "Weight": 1, @@ -163469,22 +202287,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 2250, + "Amount": 2500, "Type": 20, "Weight": 1, }, { - "Amount": 2250, + "Amount": 2500, "Type": 20, "Weight": 1, }, { - "Amount": 1000, + "Amount": 1250, "Type": 40, "Weight": 1, }, { - "Amount": 100, + "Amount": 125, "Type": 41, "Weight": 1, }, @@ -163511,45 +202329,45 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 3500, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 3500, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 3500, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 750, + "Amount": 900, "Type": 9, "Weight": 1, }, { - "Amount": 9000, + "Amount": 10000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 50, + "Amount": 60, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 50, + "Amount": 60, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 50, + "Amount": 60, "PotionTier": 4, "Type": 34, "Weight": 1, @@ -163585,22 +202403,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 2750, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 2750, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 1200, + "Amount": 1400, "Type": 40, "Weight": 1, }, { - "Amount": 120, + "Amount": 140, "Type": 41, "Weight": 1, }, @@ -163622,27 +202440,27 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 4000, + "Amount": 4500, "Type": 21, "Weight": 1, }, { - "Amount": 4000, + "Amount": 4500, "Type": 21, "Weight": 1, }, { - "Amount": 4000, + "Amount": 4500, "Type": 21, "Weight": 1, }, { - "Amount": 1000, + "Amount": 1200, "Type": 9, "Weight": 1, }, { - "Amount": 11000, + "Amount": 12000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, @@ -163676,57 +202494,60 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 28, + "RankNumber": 31, "RankUpRewards": [ { "_data": { - "_am": 1000000, + "_am": 100, "id": "Diamonds", }, }, { "_data": { - "_am": 10, + "_am": 30, "id": "Large Enchant Bundle", }, }, { "_data": { - "_am": 20, + "_am": 40, "id": "Large Potion Bundle", }, }, { "_data": { - "_am": 10, - "id": "Tech Spinny Wheel Ticket", + "_am": 40, + "id": "Void Spinny Wheel Ticket", }, }, { "_data": { - "_am": 10, - "id": "Secret Key", + "_am": 30, + "id": "Void Key", }, }, { "_data": { "_am": 10, - "id": "Tech Key", + "id": "Rainbow Mini Chest", }, }, + ], + "Rewards": [ { - "_data": { - "_am": 5, - "id": "Mini Chest", + "Item": { + "_data": { + "_am": 200, + "id": "Apple", + }, }, + "StarsRequired": 5, }, - ], - "Rewards": [ { "Item": { "_data": { - "_am": 50000, - "id": "Diamonds", + "_am": 2, + "id": "Flag Bundle", }, }, "StarsRequired": 5, @@ -163734,8 +202555,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 285, - "id": "Pineapple", + "_am": 8, + "id": "Coins", + "tn": 6, }, }, "StarsRequired": 5, @@ -163744,7 +202566,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 20, - "id": "Potion Bundle", + "id": "Void Key Lower Half", }, }, "StarsRequired": 5, @@ -163752,200 +202574,209 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 170, - "id": "TNT", + "_am": 100, + "id": "Shiny Flag", }, }, - "StarsRequired": 5, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 245, - "id": "Apple", + "_am": 100, + "id": "Rainbow", }, }, - "StarsRequired": 6, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 20, - "id": "Flag Bundle", + "_am": 100, + "id": "TNT", }, }, - "StarsRequired": 6, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 195, - "id": "Fortune Flag", + "_am": 8, + "id": "Flag Bundle", }, }, - "StarsRequired": 6, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 250, - "id": "Fortune Flag", + "_am": 200, + "id": "Watermelon", }, }, - "StarsRequired": 6, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 50, + "_am": 15, "id": "Basic Coin Jar", }, }, - "StarsRequired": 7, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 2, - "id": "Treasure Hunter", - "tn": 5, + "_am": 250, + "id": "Fortune Flag", }, }, - "StarsRequired": 7, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 110, - "id": "Rainbow", + "_am": 20, + "id": "Treasure Hideout Key Lower Half", }, }, - "StarsRequired": 7, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 25, + "_am": 250, + "id": "Pineapple", + }, + }, + "StarsRequired": 9, + }, + { + "Item": { + "_data": { + "_am": 15, "id": "Fruit Bundle", }, }, - "StarsRequired": 7, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 190, - "id": "Squeaky Toy", + "_am": 15, + "id": "Seashell", }, }, - "StarsRequired": 8, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 20, - "id": "Enchant Bundle", + "_am": 150, + "id": "Strength Flag", }, }, - "StarsRequired": 8, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 160, - "id": "Diamonds Flag", + "_am": 25, + "id": "Millionaire Bucks", }, }, - "StarsRequired": 8, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 160, - "id": "Hasty Flag", + "_am": 250, + "id": "Watermelon", }, }, - "StarsRequired": 8, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 10, - "id": "Enchant Bundle", + "_am": 200, + "id": "Apple", }, }, - "StarsRequired": 9, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 100, - "id": "Enchant Essence", + "_am": 150, + "id": "Strength Flag", }, }, - "StarsRequired": 9, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 20, - "id": "Potion Bundle", + "_am": 25, + "id": "Coins", + "tn": 5, }, }, - "StarsRequired": 9, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 6, - "id": "Basic Item Jar", + "_am": 15, + "id": "Large Gift Bag", }, }, - "StarsRequired": 9, + "StarsRequired": 11, }, { "Item": { "_data": { "_am": 20, - "id": "Large Gift Bag", + "id": "Treasure Hunter", + "tn": 9, }, }, - "StarsRequired": 10, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 2, - "id": "Coins", + "_am": 5, + "id": "Lucky", "tn": 10, }, }, - "StarsRequired": 10, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 20, - "id": "Diamonds", - "tn": 5, + "_am": 15, + "id": "Charm Stone", }, }, - "StarsRequired": 10, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 25, - "id": "Tech Spinny Wheel Ticket", + "_am": 5, + "id": "Mini Chest", }, }, - "StarsRequired": 10, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 3, - "id": "Tech Key", + "_am": 15, + "id": "Large Potion Bundle", }, }, "StarsRequired": 12, @@ -163953,8 +202784,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Charm Chisel", + "id": "Booth Slot Voucher", }, }, "StarsRequired": 12, @@ -163962,17 +202792,17 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, - "id": "Seed Bag", + "_am": 10, + "id": "Damage", + "tn": 9, }, }, - "StarsRequired": 12, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 15, - "id": "Mini Chest", + "id": "Golden Prison Key", }, }, "StarsRequired": 13, @@ -163980,8 +202810,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Secret Key", + "id": "Daycare Slot Voucher", }, }, "StarsRequired": 13, @@ -163989,8 +202818,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, - "id": "Large Potion Bundle", + "_am": 15, + "id": "Millionaire Ticket", }, }, "StarsRequired": 13, @@ -163998,8 +202827,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Large Enchant Bundle", + "_am": 25, + "id": "Insta Plant Capsule", }, }, "StarsRequired": 14, @@ -164007,8 +202836,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 100, - "id": "TNT Crate", + "_am": 25, + "id": "Mini Lucky Block", }, }, "StarsRequired": 14, @@ -164016,18 +202845,36 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Coins", - "tn": 7, + "_am": 3, + "id": "Gift Bag", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 4, + "id": "Lucky", + "tn": 10, }, }, "StarsRequired": 14, }, + { + "Item": { + "_data": { + "_am": 2, + "id": "Spinny Wheel Ticket", + }, + }, + "StarsRequired": 15, + }, { "Item": { "_data": { "_am": 15, - "id": "Magic Shard", + "id": "Basic Item Jar", }, }, "StarsRequired": 15, @@ -164036,7 +202883,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 5, - "id": "Crystal Key", + "id": "Millionaire Ticket", }, }, "StarsRequired": 15, @@ -164044,8 +202891,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, - "id": "Party Box", + "_am": 500, + "id": "Diamonds", }, }, "StarsRequired": 15, @@ -164053,8 +202900,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Bucket O' Magic", + "_am": 3, + "id": "Treasure Hideout Key Upper Half", }, }, "StarsRequired": 16, @@ -164062,7 +202909,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Treasure Hideout Key Upper Half", + "_am": 8, + "id": "Void Spinny Wheel Ticket", }, }, "StarsRequired": 16, @@ -164070,8 +202918,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Damage", - "tn": 10, + "_am": 3, + "id": "Mini Chest", }, }, "StarsRequired": 16, @@ -164079,9 +202927,17 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, + "_am": 15, "id": "Damage", - "tn": 9, + "tn": 6, + }, + }, + "StarsRequired": 16, + }, + { + "Item": { + "_data": { + "id": "Golden Prison Key", }, }, "StarsRequired": 17, @@ -164090,7 +202946,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 25, - "id": "Spinny Wheel Ticket", + "id": "Tech Key", }, }, "StarsRequired": 17, @@ -164098,8 +202954,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Gift Bag", + "_am": 6, + "id": "Treasure Hunter", + "tn": 7, }, }, "StarsRequired": 17, @@ -164107,9 +202964,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Diamonds", - "tn": 5, + "_am": 15, + "id": "Breakable Sprinkler", }, }, "StarsRequired": 18, @@ -164117,9 +202973,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 7, - "id": "Lucky", - "tn": 8, + "_am": 15, + "id": "Party Box", }, }, "StarsRequired": 18, @@ -164127,9 +202982,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 3, - "id": "Treasure Hunter", - "tn": 8, + "_am": 100, + "id": "TNT Crate", }, }, "StarsRequired": 18, @@ -164137,7 +202991,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Booth Slot Voucher", + "_am": 8, + "id": "Void Spinny Wheel Ticket", }, }, "StarsRequired": 19, @@ -164145,8 +203000,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 3, - "id": "Charm Hammer", + "_am": 8, + "id": "Coins", + "tn": 10, }, }, "StarsRequired": 19, @@ -164154,8 +203010,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Breakable Sprinkler", + "_am": 20, + "id": "Treasure Hideout Key", }, }, "StarsRequired": 19, @@ -164163,8 +203019,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Large Enchant Bundle", + "_am": 5, + "id": "Hacker Key", }, }, "StarsRequired": 20, @@ -164172,8 +203028,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Gift Bag", + "_am": 4, + "id": "Bucket O' Magic", }, }, "StarsRequired": 20, @@ -164181,8 +203037,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Large Gift Bag", + "_am": 100, + "id": "Diamonds", }, }, "StarsRequired": 20, @@ -164190,8 +203046,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Tech Key", + "_am": 10, + "id": "Insta Plant Capsule", }, }, "StarsRequired": 21, @@ -164200,7 +203056,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 2, - "id": "Treasure Hideout Key", + "id": "Prison Key", }, }, "StarsRequired": 21, @@ -164208,9 +203064,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Lucky", - "tn": 9, + "_am": 4, + "id": "Large Potion Bundle", }, }, "StarsRequired": 21, @@ -164218,8 +203073,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Large Gift Bag", + "_am": 8, + "id": "Diamond Gift Bag", }, }, "StarsRequired": 22, @@ -164227,8 +203082,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Secret Key", + "_am": 15, + "id": "Treasure Hunter", + "tn": 7, }, }, "StarsRequired": 22, @@ -164236,8 +203092,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Bucket O' Magic", + "_am": 25, + "id": "Large Gift Bag", }, }, "StarsRequired": 22, @@ -164245,8 +203101,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Party Box", + "_am": 25, + "id": "Seed Bag", }, }, "StarsRequired": 23, @@ -164254,9 +203110,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Lucky", - "tn": 10, + "_am": 8, + "id": "Breakable Sprinkler", }, }, "StarsRequired": 23, @@ -164265,20 +203120,21 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 20, - "id": "Mini Chest", + "id": "Diamonds", + "tn": 8, }, }, "StarsRequired": 23, }, ], - "Title": "Oracle", - "UnlockableEggSlots": 1, + "Title": "Demigod", + "UnlockableEggSlots": 0, "UnlockablePetSlots": 0, }, - "configName": "28 | Oracle", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.711Z", - "hashShort": "83a22a81d803d2b9", + "configName": "31 | Demigod", + "dateCreated": "2026-05-02T17:31:49.630Z", + "dateModified": "2026-05-02T17:31:49.630Z", + "hashShort": "0f52abc53bacaa14", }, { "category": "Ranks", @@ -164603,7 +203459,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` }, { "_data": { - "_am": 15, + "_am": 4, "id": "Secret Key", }, }, @@ -164618,7 +203474,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 145, + "_am": 150, "id": "Shiny Flag", }, }, @@ -164627,7 +203483,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 160, + "_am": 150, "id": "Coins Flag", }, }, @@ -164636,7 +203492,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 165, + "_am": 150, "id": "Squeaky Toy", }, }, @@ -164645,7 +203501,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 215, + "_am": 200, "id": "Strength Flag", }, }, @@ -164654,7 +203510,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 9, + "_am": 8, "id": "Treasure Hunter", "tn": 5, }, @@ -164664,7 +203520,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 220, + "_am": 200, "id": "Toy Ball", }, }, @@ -164673,7 +203529,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 155, + "_am": 150, "id": "Diamonds Flag", }, }, @@ -164682,7 +203538,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 220, + "_am": 200, "id": "Orange", }, }, @@ -164691,7 +203547,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 215, + "_am": 200, "id": "Rainbow", }, }, @@ -164700,7 +203556,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 105, + "_am": 100, "id": "Strength Flag", }, }, @@ -164709,7 +203565,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 235, + "_am": 250, "id": "Hasty Flag", }, }, @@ -164718,7 +203574,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 235, + "_am": 250, "id": "Orange", }, }, @@ -164727,7 +203583,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 225, + "_am": 200, "id": "Hasty Flag", }, }, @@ -164736,7 +203592,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 135, + "_am": 125, "id": "TNT", }, }, @@ -164745,7 +203601,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 140, + "_am": 150, "id": "Pineapple", }, }, @@ -164763,7 +203619,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 290, + "_am": 300, "id": "Banana", }, }, @@ -164772,7 +203628,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 115, + "_am": 125, "id": "Diamonds Flag", }, }, @@ -164781,7 +203637,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 110, + "_am": 100, "id": "Watermelon", }, }, @@ -164826,7 +203682,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 9, + "_am": 8, "id": "Seed Bag", }, }, @@ -164918,7 +203774,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 70, + "_am": 75, "id": "Rainbow Flag", }, }, @@ -164936,7 +203792,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 7, + "_am": 6, "id": "Coins", "tn": 6, }, @@ -165093,7 +203949,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 7, + "_am": 6, "id": "Large Enchant Bundle", }, }, @@ -165148,7 +204004,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 80, + "_am": 75, "id": "TNT Crate", }, }, @@ -165164,14 +204020,14 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "StarsRequired": 24, }, ], - "Title": "Void Walker", + "Title": "Voidborn", "UnlockableEggSlots": 1, "UnlockablePetSlots": 0, }, - "configName": "29 | Void Walker", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.705Z", - "hashShort": "9a312220ed098533", + "configName": "29 | Voidborn", + "dateCreated": "2026-05-02T17:31:49.638Z", + "dateModified": "2026-05-02T17:31:49.638Z", + "hashShort": "7e9d12eff1876acc", }, { "category": "Ranks", @@ -165180,90 +204036,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 2750, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 70, + "Amount": 50, "Type": 14, "Weight": 1, }, { - "Amount": 70, + "Amount": 50, "Type": 15, "Weight": 1, }, { - "Amount": 45, + "Amount": 35, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 3500, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 3500, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 3500, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 90, + "Amount": 60, "Type": 14, "Weight": 1, }, { - "Amount": 90, + "Amount": 60, "Type": 15, "Weight": 1, }, { - "Amount": 50, + "Amount": 20, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 44, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 43, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 39, "Weight": 1, }, @@ -165273,22 +204129,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 2500, + "Amount": 1750, "Type": 20, "Weight": 1, }, { - "Amount": 2500, + "Amount": 1750, "Type": 20, "Weight": 1, }, { - "Amount": 1250, + "Amount": 750, "Type": 40, "Weight": 1, }, { - "Amount": 125, + "Amount": 75, "Type": 41, "Weight": 1, }, @@ -165298,7 +204154,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 50, + "Amount": 40, "Type": 25, "Weight": 1, }, @@ -165315,71 +204171,71 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 3750, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 3750, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 3750, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 900, + "Amount": 500, "Type": 9, "Weight": 1, }, { - "Amount": 10000, + "Amount": 5000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 60, + "Amount": 30, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 60, + "Amount": 30, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 60, + "Amount": 30, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 44, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 43, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 38, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 37, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 39, "Weight": 1, }, @@ -165389,22 +204245,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 3000, + "Amount": 2000, "Type": 20, "Weight": 1, }, { - "Amount": 3000, + "Amount": 2000, "Type": 20, "Weight": 1, }, { - "Amount": 1400, + "Amount": 900, "Type": 40, "Weight": 1, }, { - "Amount": 140, + "Amount": 90, "Type": 41, "Weight": 1, }, @@ -165426,48 +204282,48 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 4500, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 4500, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 4500, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 1200, + "Amount": 750, "Type": 9, "Weight": 1, }, { - "Amount": 12000, + "Amount": 7500, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 50, + "Amount": 25, "Type": 42, "Weight": 1, }, { - "Amount": 8, + "Amount": 7, "Type": 38, "Weight": 1, }, { - "Amount": 8, + "Amount": 7, "Type": 37, "Weight": 1, }, { - "Amount": 8, + "Amount": 7, "Type": 39, "Weight": 1, }, @@ -165480,42 +204336,64 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 30, + "RankNumber": 23, "RankUpRewards": [ { "_data": { - "_am": 1000000, + "_am": 6, "id": "Diamonds", + "tn": 7, }, }, { "_data": { - "_am": 20, - "id": "Large Enchant Bundle", + "_am": 6, + "id": "Coins", + "tn": 9, }, }, { "_data": { - "_am": 30, - "id": "Large Potion Bundle", + "_am": 6, + "id": "Damage", + "tn": 9, }, }, { "_data": { - "_am": 25, - "id": "Void Spinny Wheel Ticket", + "_am": 6, + "id": "Treasure Hunter", + "tn": 9, }, }, { "_data": { - "_am": 20, - "id": "Void Key", + "_am": 500000, + "id": "Diamonds", }, }, { "_data": { - "_am": 5, - "id": "Rainbow Mini Chest", + "_am": 2, + "id": "Charm Chisel", + }, + }, + { + "_data": { + "_am": 4, + "id": "Secret Key", + }, + }, + { + "_data": { + "_am": 8, + "id": "Tech Key", + }, + }, + { + "_data": { + "_am": 12, + "id": "Mini Chest", }, }, ], @@ -165523,98 +204401,134 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 155, - "id": "Toy Ball", + "_am": 200, + "id": "Hasty Flag", }, }, - "StarsRequired": 6, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 165, + "_am": 300, "id": "Rainbow", }, }, - "StarsRequired": 6, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 2, - "id": "Basic Coin Jar", + "_am": 300, + "id": "Apple", }, }, - "StarsRequired": 6, + "StarsRequired": 4, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "Flag Bundle", + }, + }, + "StarsRequired": 4, }, { "Item": { "_data": { "_am": 20, - "id": "Fruit Bundle", + "id": "Party Box", }, }, - "StarsRequired": 6, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 175, - "id": "Apple", + "_am": 100, + "id": "Diamonds", }, }, - "StarsRequired": 7, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 240, + "_am": 50, + "id": "Basic Coin Jar", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 300, + "id": "Orange", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 200, "id": "Strength Flag", }, }, - "StarsRequired": 7, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 210, - "id": "Banana", + "_am": 25, + "id": "Enchant Bundle", }, }, - "StarsRequired": 7, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 20, - "id": "Enchant Essence", + "_am": 300, + "id": "Watermelon", }, }, - "StarsRequired": 7, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 240, - "id": "Toy Ball", + "_am": 250, + "id": "Magnet Flag", }, }, - "StarsRequired": 8, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 215, - "id": "Squeaky Toy", + "_am": 300, + "id": "Rainbow", }, }, - "StarsRequired": 8, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 210, - "id": "Toy Bone", + "_am": 300, + "id": "Watermelon", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 200, + "id": "Toy Ball", }, }, "StarsRequired": 8, @@ -165622,8 +204536,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Treasure Hideout Key Lower Half", + "_am": 200, + "id": "Banana", }, }, "StarsRequired": 8, @@ -165631,8 +204545,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 110, - "id": "Magnet Flag", + "_am": 125, + "id": "TNT", }, }, "StarsRequired": 9, @@ -165640,8 +204554,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 140, - "id": "Diamonds Flag", + "_am": 250, + "id": "Fortune Flag", }, }, "StarsRequired": 9, @@ -165649,8 +204563,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 245, - "id": "Orange", + "_am": 250, + "id": "Rainbow", }, }, "StarsRequired": 9, @@ -165658,8 +204572,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 275, - "id": "Apple", + "id": "Tech Key", }, }, "StarsRequired": 9, @@ -165667,8 +204580,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 245, - "id": "Watermelon", + "_am": 2, + "id": "Mini Chest", }, }, "StarsRequired": 10, @@ -165676,8 +204589,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 145, - "id": "Rainbow", + "_am": 6, + "id": "Bucket O' Magic", }, }, "StarsRequired": 10, @@ -165685,8 +204598,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 90, - "id": "TNT", + "_am": 30, + "id": "Large Potion Bundle", }, }, "StarsRequired": 10, @@ -165694,8 +204607,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, - "id": "Void Key Lower Half", + "id": "Breakable Sprinkler", }, }, "StarsRequired": 10, @@ -165703,8 +204615,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 7, - "id": "Breakable Sprinkler", + "_am": 6, + "id": "Mini Chest", }, }, "StarsRequired": 11, @@ -165712,8 +204624,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Mini Chest", + "_am": 4, + "id": "Secret Key", }, }, "StarsRequired": 11, @@ -165721,7 +204633,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, + "_am": 6, "id": "Gift Bag", }, }, @@ -165730,17 +204642,37 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, - "id": "Treasure Hideout Key Upper Half", + "_am": 6, + "id": "Coins", + "tn": 7, }, }, - "StarsRequired": 11, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 15, - "id": "Magic Shard", + "_am": 2, + "id": "Lucky", + "tn": 9, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "id": "Treasure Hunter", + "tn": 8, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 30, + "id": "Gift Bag", }, }, "StarsRequired": 13, @@ -165748,7 +204680,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Daycare Slot Voucher", + "id": "Mini Chest", }, }, "StarsRequired": 13, @@ -165756,9 +204688,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Coins", - "tn": 8, + "_am": 20, + "id": "Gift Bag", }, }, "StarsRequired": 13, @@ -165766,8 +204697,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, - "id": "Void Spinny Wheel Ticket", + "_am": 6, + "id": "Mini Chest", }, }, "StarsRequired": 14, @@ -165775,8 +204706,15 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Damage", + "id": "Crystal Key", + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "id": "Treasure Hunter", "tn": 9, }, }, @@ -165785,9 +204723,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, + "_am": 12, "id": "Coins", - "tn": 9, + "tn": 11, }, }, "StarsRequired": 14, @@ -165795,8 +204733,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Gift Bag", + "_am": 2, + "id": "Lucky", + "tn": 9, }, }, "StarsRequired": 15, @@ -165804,8 +204743,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Mini Chest", + "_am": 8, + "id": "Diamonds", + "tn": 7, }, }, "StarsRequired": 15, @@ -165813,9 +204753,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, - "id": "Coins", - "tn": 6, + "_am": 30, + "id": "Breakable Sprinkler", }, }, "StarsRequired": 15, @@ -165823,8 +204762,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, - "id": "Void Key", + "_am": 2, + "id": "Charm Chisel", }, }, "StarsRequired": 16, @@ -165832,8 +204771,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 9, - "id": "Large Potion Bundle", + "_am": 4, + "id": "Insta Plant Capsule", }, }, "StarsRequired": 16, @@ -165841,8 +204780,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, - "id": "Insta Plant Capsule", + "_am": 20, + "id": "Lucky", + "tn": 5, }, }, "StarsRequired": 16, @@ -165850,8 +204790,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 6, - "id": "Mini Pinata", + "_am": 30, + "id": "Large Enchant Bundle", }, }, "StarsRequired": 17, @@ -165859,8 +204799,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Mini Lucky Block", + "_am": 2, + "id": "Secret Key", }, }, "StarsRequired": 17, @@ -165868,9 +204808,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Lucky", - "tn": 8, + "_am": 250, + "id": "Diamonds", }, }, "StarsRequired": 17, @@ -165879,7 +204818,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 25, - "id": "Enchant Bundle", + "id": "Large Gift Bag", }, }, "StarsRequired": 18, @@ -165887,9 +204826,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 7, - "id": "Treasure Hunter", - "tn": 8, + "id": "Booth Slot Voucher", }, }, "StarsRequired": 18, @@ -165897,8 +204834,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Void Spinny Wheel Ticket", + "_am": 25, + "id": "Lucky", + "tn": 6, }, }, "StarsRequired": 18, @@ -165906,7 +204844,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Void Key Upper Half", + "_am": 12, + "id": "Large Gift Bag", }, }, "StarsRequired": 19, @@ -165914,8 +204853,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, - "id": "Crystal Key", + "_am": 125, + "id": "TNT Crate", }, }, "StarsRequired": 19, @@ -165923,9 +204862,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 6, - "id": "Damage", - "tn": 7, + "id": "Charm Chisel", }, }, "StarsRequired": 19, @@ -165933,8 +204870,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 3, - "id": "Charm Hammer", + "_am": 30, + "id": "Magic Shard", }, }, "StarsRequired": 20, @@ -165942,8 +204879,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Magic Shard", + "_am": 30, + "id": "Damage", + "tn": 6, }, }, "StarsRequired": 20, @@ -165951,8 +204889,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Large Gift Bag", + "_am": 4, + "id": "Charm Stone", }, }, "StarsRequired": 20, @@ -165961,7 +204899,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 25, - "id": "Party Box", + "id": "Large Potion Bundle", }, }, "StarsRequired": 21, @@ -165969,8 +204907,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 80, - "id": "Rainbow Flag", + "_am": 12, + "id": "Treasure Hunter", + "tn": 7, }, }, "StarsRequired": 21, @@ -165978,8 +204917,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 120, - "id": "Rainbow Flag", + "_am": 6, + "id": "Crystal Key", }, }, "StarsRequired": 21, @@ -165987,17 +204926,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 30, - "id": "Gift Bag", - }, - }, - "StarsRequired": 22, - }, - { - "Item": { - "_data": { - "_am": 3, - "id": "Secret Key", + "_am": 12, + "id": "Mini Chest", }, }, "StarsRequired": 22, @@ -166005,9 +204935,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Lucky", - "tn": 5, + "_am": 10, + "id": "Damage", + "tn": 8, }, }, "StarsRequired": 22, @@ -166015,68 +204945,21 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Diamonds", - "tn": 7, - }, - }, - "StarsRequired": 23, - }, - { - "Item": { - "_data": { - "id": "Treasure Hunter", - "tn": 9, - }, - }, - "StarsRequired": 23, - }, - { - "Item": { - "_data": { - "_am": 80, - "id": "Shiny Flag", - }, - }, - "StarsRequired": 23, - }, - { - "Item": { - "_data": { - "_am": 7, - "id": "Diamonds", - "tn": 6, - }, - }, - "StarsRequired": 24, - }, - { - "Item": { - "_data": { - "_am": 5, - "id": "Large Gift Bag", - }, - }, - "StarsRequired": 24, - }, - { - "Item": { - "_data": { - "_am": 7, + "_am": 12, "id": "Charm Stone", }, }, - "StarsRequired": 24, + "StarsRequired": 22, }, ], - "Title": "Warden", + "Title": "Visionary", "UnlockableEggSlots": 1, - "UnlockablePetSlots": 0, + "UnlockablePetSlots": 1, }, - "configName": "30 | Warden", - "dateCreated": null, - "dateModified": "2025-07-05T23:36:13.714Z", - "hashShort": "1ba415372ca6f2d7", + "configName": "23 | Visionary", + "dateCreated": "2026-05-02T17:31:49.636Z", + "dateModified": "2026-05-02T17:31:49.636Z", + "hashShort": "b7ce2c0a43267ae0", }, { "category": "Ranks", @@ -166085,90 +204968,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 2750, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 70, + "Amount": 90, "Type": 14, "Weight": 1, }, { - "Amount": 70, + "Amount": 90, "Type": 15, "Weight": 1, }, { - "Amount": 45, + "Amount": 60, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 3500, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 3500, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 3500, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 90, + "Amount": 120, "Type": 14, "Weight": 1, }, { - "Amount": 90, + "Amount": 120, "Type": 15, "Weight": 1, }, { - "Amount": 50, + "Amount": 70, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 44, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 43, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 39, "Weight": 1, }, @@ -166178,87 +205061,87 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 2500, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 2500, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 1250, + "Amount": 1750, "Type": 40, "Weight": 1, }, { - "Amount": 125, + "Amount": 160, "Type": 41, "Weight": 1, }, { - "Amount": 50, + "Amount": 70, "Type": 26, "Weight": 1, }, { - "Amount": 50, + "Amount": 70, "Type": 25, "Weight": 1, }, { - "Amount": 75, + "Amount": 90, "Type": 46, "Weight": 1, }, { - "Amount": 75, + "Amount": 90, "Type": 45, "Weight": 1, }, ], [ { - "Amount": 3750, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 3750, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 3750, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 900, + "Amount": 1200, "Type": 9, "Weight": 1, }, { - "Amount": 10000, + "Amount": 16000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 60, + "Amount": 75, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 60, + "Amount": 75, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 60, + "Amount": 75, "PotionTier": 4, "Type": 34, "Weight": 1, @@ -166294,22 +205177,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 3000, + "Amount": 3500, "Type": 20, "Weight": 1, }, { - "Amount": 3000, + "Amount": 3500, "Type": 20, "Weight": 1, }, { - "Amount": 1400, + "Amount": 1800, "Type": 40, "Weight": 1, }, { - "Amount": 140, + "Amount": 170, "Type": 41, "Weight": 1, }, @@ -166331,33 +205214,33 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 4500, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 4500, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 4500, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 1200, + "Amount": 1750, "Type": 9, "Weight": 1, }, { - "Amount": 12000, + "Amount": 17000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 50, + "Amount": 70, "Type": 42, "Weight": 1, }, @@ -166385,42 +205268,33 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 31, + "RankNumber": 37, "RankUpRewards": [ { "_data": { - "_am": 3000000, - "id": "Diamonds", - }, - }, - { - "_data": { - "_am": 30, - "id": "Large Enchant Bundle", + "id": "Golden Prison Key", }, }, { "_data": { - "_am": 40, - "id": "Large Potion Bundle", + "id": "Charm Chisel", }, }, { "_data": { - "_am": 40, - "id": "Void Spinny Wheel Ticket", + "id": "Damage", + "tn": 11, }, }, { "_data": { - "_am": 30, - "id": "Void Key", + "id": "Treasure Hunter", + "tn": 10, }, }, { "_data": { - "_am": 10, - "id": "Rainbow Mini Chest", + "id": "Bucket O' Magic", }, }, ], @@ -166428,81 +205302,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 190, - "id": "Apple", - }, - }, - "StarsRequired": 5, - }, - { - "Item": { - "_data": { - "_am": 2, - "id": "Flag Bundle", - }, - }, - "StarsRequired": 5, - }, - { - "Item": { - "_data": { - "_am": 8, - "id": "Coins", - "tn": 6, - }, - }, - "StarsRequired": 5, - }, - { - "Item": { - "_data": { - "_am": 20, - "id": "Void Key Lower Half", - }, - }, - "StarsRequired": 5, - }, - { - "Item": { - "_data": { - "_am": 95, - "id": "Shiny Flag", - }, - }, - "StarsRequired": 7, - }, - { - "Item": { - "_data": { - "_am": 110, - "id": "Rainbow", - }, - }, - "StarsRequired": 7, - }, - { - "Item": { - "_data": { - "_am": 105, - "id": "TNT", - }, - }, - "StarsRequired": 7, - }, - { - "Item": { - "_data": { - "_am": 8, - "id": "Flag Bundle", - }, - }, - "StarsRequired": 7, - }, - { - "Item": { - "_data": { - "_am": 220, - "id": "Watermelon", + "_am": 250, + "id": "Treasure Hunter", + "tn": 8, }, }, "StarsRequired": 8, @@ -166510,8 +205312,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Basic Coin Jar", + "_am": 300, + "id": "Tap Power", + "tn": 5, }, }, "StarsRequired": 8, @@ -166519,7 +205322,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 225, + "_am": 250, "id": "Fortune Flag", }, }, @@ -166528,8 +205331,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Treasure Hideout Key Lower Half", + "_am": 300, + "id": "Bonus", + "tn": 1, }, }, "StarsRequired": 8, @@ -166537,8 +205341,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 255, - "id": "Pineapple", + "_am": 250, + "id": "Lucky", + "tn": 7, }, }, "StarsRequired": 9, @@ -166546,8 +205351,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Fruit Bundle", + "_am": 250, + "id": "Mini Lucky Block", }, }, "StarsRequired": 9, @@ -166555,7 +205360,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, + "_am": 250, "id": "Seashell", }, }, @@ -166564,8 +205369,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 155, - "id": "Strength Flag", + "_am": 300, + "id": "Comet", }, }, "StarsRequired": 9, @@ -166573,8 +205378,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Millionaire Bucks", + "_am": 300, + "id": "Breakable Sprinkler", }, }, "StarsRequired": 10, @@ -166582,8 +205387,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 260, - "id": "Watermelon", + "_am": 300, + "id": "Damage", + "tn": 7, }, }, "StarsRequired": 10, @@ -166591,8 +205397,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 210, - "id": "Apple", + "_am": 300, + "id": "Void Key Lower Half", }, }, "StarsRequired": 10, @@ -166600,8 +205406,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 165, - "id": "Strength Flag", + "_am": 300, + "id": "Large Enchant Bundle", }, }, "StarsRequired": 10, @@ -166609,9 +205415,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Coins", - "tn": 5, + "_am": 150, + "id": "Treasure Hunter", + "tn": 9, }, }, "StarsRequired": 11, @@ -166619,8 +205425,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Large Gift Bag", + "_am": 200, + "id": "Coins", + "tn": 10, }, }, "StarsRequired": 11, @@ -166628,9 +205435,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Treasure Hunter", - "tn": 9, + "_am": 300, + "id": "Blast", + "tn": 1, }, }, "StarsRequired": 11, @@ -166638,9 +205445,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Lucky", - "tn": 10, + "_am": 300, + "id": "Pet Cube", }, }, "StarsRequired": 11, @@ -166648,8 +205454,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Charm Stone", + "_am": 150, + "id": "Agility", + "tn": 1, }, }, "StarsRequired": 12, @@ -166657,8 +205464,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Mini Chest", + "_am": 150, + "id": "Golden Pencil", }, }, "StarsRequired": 12, @@ -166666,8 +205473,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Large Potion Bundle", + "_am": 125, + "id": "TNT Crate", }, }, "StarsRequired": 12, @@ -166675,7 +205482,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Booth Slot Voucher", + "_am": 125, + "id": "Gift Bag", }, }, "StarsRequired": 12, @@ -166683,9 +205491,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 9, - "id": "Damage", - "tn": 9, + "_am": 125, + "id": "Fantasy Key Lower Half", }, }, "StarsRequired": 13, @@ -166693,7 +205500,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Golden Prison Key", + "_am": 100, + "id": "Damage", + "tn": 8, }, }, "StarsRequired": 13, @@ -166701,7 +205510,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Daycare Slot Voucher", + "_am": 100, + "id": "Spinny Wheel Ticket", }, }, "StarsRequired": 13, @@ -166709,8 +205519,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Millionaire Ticket", + "_am": 125, + "id": "Coins", + "tn": 9, }, }, "StarsRequired": 13, @@ -166718,314 +205529,334 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Insta Plant Capsule", + "_am": 50, + "id": "Basic Item Jar", }, }, - "StarsRequired": 14, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 25, - "id": "Mini Lucky Block", + "_am": 75, + "id": "Void Key Upper Half", }, }, - "StarsRequired": 14, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 3, - "id": "Gift Bag", + "_am": 100, + "id": "Tech Spinny Wheel Ticket", }, }, - "StarsRequired": 14, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 4, - "id": "Lucky", - "tn": 10, + "_am": 50, + "id": "Diamonds", + "tn": 7, }, }, - "StarsRequired": 14, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 2, - "id": "Spinny Wheel Ticket", + "_am": 50, + "id": "Diamonds", + "tn": 8, }, }, - "StarsRequired": 15, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 15, - "id": "Basic Item Jar", + "_am": 100, + "id": "Damage", + "tn": 9, }, }, - "StarsRequired": 15, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 5, - "id": "Millionaire Ticket", + "_am": 50, + "id": "Large Gift Bag", }, }, - "StarsRequired": 15, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 500000, - "id": "Diamonds", + "_am": 50, + "id": "Crystal Key Upper Half", }, }, - "StarsRequired": 15, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 3, - "id": "Treasure Hideout Key Upper Half", + "_am": 100, + "id": "Seed Bag", }, }, - "StarsRequired": 16, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 7, - "id": "Void Spinny Wheel Ticket", + "_am": 4, + "id": "Secret Key", }, }, - "StarsRequired": 16, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 3, - "id": "Mini Chest", + "_am": 40, + "id": "Lucky", + "tn": 8, }, }, - "StarsRequired": 16, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 15, - "id": "Damage", - "tn": 6, + "_am": 5, + "id": "Charm Hammer", }, }, - "StarsRequired": 16, + "StarsRequired": 18, }, { "Item": { "_data": { - "id": "Golden Prison Key", + "_am": 20, + "id": "Treasure Hideout Key", }, }, - "StarsRequired": 17, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 25, + "_am": 30, + "id": "Millionaire Ticket", + }, + }, + "StarsRequired": 19, + }, + { + "Item": { + "_data": { + "_am": 50, + "id": "Damage", + "tn": 10, + }, + }, + "StarsRequired": 19, + }, + { + "Item": { + "_data": { + "_am": 20, "id": "Tech Key", }, }, - "StarsRequired": 17, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 6, - "id": "Treasure Hunter", - "tn": 7, + "_am": 20, + "id": "Void Spinny Wheel Ticket", }, }, - "StarsRequired": 17, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 15, - "id": "Breakable Sprinkler", + "_am": 6, + "id": "Crystal Key", }, }, - "StarsRequired": 18, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 15, - "id": "Party Box", + "_am": 20, + "id": "Mini Chest", }, }, - "StarsRequired": 18, + "StarsRequired": 21, }, { "Item": { "_data": { "_am": 100, - "id": "TNT Crate", + "id": "Strength", + "tn": 1, }, }, - "StarsRequired": 18, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 7, - "id": "Void Spinny Wheel Ticket", + "_am": 20, + "id": "Charm Stone", }, }, - "StarsRequired": 19, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 8, - "id": "Coins", - "tn": 10, + "_am": 25, + "id": "Millionaire Bucks", }, }, - "StarsRequired": 19, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 20, - "id": "Treasure Hideout Key", + "_am": 15, + "id": "Ultra Pet Cube", }, }, - "StarsRequired": 19, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 5, - "id": "Hacker Key", + "_am": 75, + "id": "Treasure Hideout Key Upper Half", }, }, - "StarsRequired": 20, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 4, - "id": "Bucket O' Magic", + "_am": 6, + "id": "Magic Shard", }, }, - "StarsRequired": 20, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 1000000, - "id": "Diamonds", + "id": "Daycare Slot Voucher", }, }, - "StarsRequired": 20, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 9, - "id": "Insta Plant Capsule", + "_am": 15, + "id": "Void Key", }, }, - "StarsRequired": 21, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 2, - "id": "Prison Key", + "_am": 6, + "id": "Lucky", + "tn": 10, }, }, - "StarsRequired": 21, + "StarsRequired": 24, }, { "Item": { "_data": { "_am": 4, - "id": "Large Potion Bundle", + "id": "Prison Key", }, }, - "StarsRequired": 21, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 7, - "id": "Diamond Gift Bag", + "id": "Booth Slot Voucher", }, }, - "StarsRequired": 22, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 15, - "id": "Treasure Hunter", - "tn": 7, + "_am": 8, + "id": "Hacker Key", }, }, - "StarsRequired": 22, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 25, - "id": "Large Gift Bag", + "_am": 2, + "id": "Treasure Hunter", + "tn": 11, }, }, - "StarsRequired": 22, + "StarsRequired": 25, }, { "Item": { "_data": { "_am": 25, - "id": "Seed Bag", + "id": "Fantasy Key Upper Half", }, }, - "StarsRequired": 23, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 8, - "id": "Breakable Sprinkler", + "_am": 6, + "id": "Diamonds", + "tn": 9, }, }, - "StarsRequired": 23, + "StarsRequired": 26, }, { "Item": { "_data": { - "_am": 20, - "id": "Diamonds", - "tn": 8, + "_am": 15, + "id": "Fantasy Key", }, }, - "StarsRequired": 23, + "StarsRequired": 26, }, ], - "Title": "Supreme Oracle", + "Title": "Starbreaker", "UnlockableEggSlots": 0, "UnlockablePetSlots": 0, }, - "configName": "31 | Supreme Oracle", - "dateCreated": "2025-07-05T23:23:26.624Z", - "dateModified": "2025-07-05T23:23:26.624Z", - "hashShort": "062060e3a2583349", + "configName": "37 | Starbreaker", + "dateCreated": "2026-05-02T17:31:49.638Z", + "dateModified": "2026-05-02T17:31:49.638Z", + "hashShort": "8c6d4c207241ff92", }, { "category": "Ranks", @@ -167034,90 +205865,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 3000, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 80, + "Amount": 90, "Type": 14, "Weight": 1, }, { - "Amount": 80, + "Amount": 90, "Type": 15, "Weight": 1, }, { - "Amount": 50, + "Amount": 60, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 3750, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 3750, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 3750, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 100, + "Amount": 120, "Type": 14, "Weight": 1, }, { - "Amount": 100, + "Amount": 120, "Type": 15, "Weight": 1, }, { - "Amount": 60, + "Amount": 70, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 44, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 43, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 39, "Weight": 1, }, @@ -167127,87 +205958,87 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 2750, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 2750, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 1500, + "Amount": 1750, "Type": 40, "Weight": 1, }, { - "Amount": 150, + "Amount": 160, "Type": 41, "Weight": 1, }, { - "Amount": 60, + "Amount": 70, "Type": 26, "Weight": 1, }, { - "Amount": 60, + "Amount": 70, "Type": 25, "Weight": 1, }, { - "Amount": 80, + "Amount": 90, "Type": 46, "Weight": 1, }, { - "Amount": 80, + "Amount": 90, "Type": 45, "Weight": 1, }, ], [ { - "Amount": 3900, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 3900, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 3900, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 1000, + "Amount": 1200, "Type": 9, "Weight": 1, }, { - "Amount": 15000, + "Amount": 16000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 70, + "Amount": 75, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 70, + "Amount": 75, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 70, + "Amount": 75, "PotionTier": 4, "Type": 34, "Weight": 1, @@ -167243,22 +206074,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 3250, + "Amount": 3500, "Type": 20, "Weight": 1, }, { - "Amount": 3250, + "Amount": 3500, "Type": 20, "Weight": 1, }, { - "Amount": 1600, + "Amount": 1800, "Type": 40, "Weight": 1, }, { - "Amount": 150, + "Amount": 170, "Type": 41, "Weight": 1, }, @@ -167280,33 +206111,33 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 4750, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 4750, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 4750, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 1400, + "Amount": 1750, "Type": 9, "Weight": 1, }, { - "Amount": 15000, + "Amount": 17000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 60, + "Amount": 70, "Type": 42, "Weight": 1, }, @@ -167334,75 +206165,50 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 32, + "RankNumber": 39, "RankUpRewards": [ { "_data": { - "_am": 5000000, - "id": "Diamonds", - }, - }, - { - "_data": { - "_am": 50, - "id": "Large Enchant Bundle", + "_am": 3, + "id": "Magic Shard", }, }, { "_data": { - "_am": 50, - "id": "Large Potion Bundle", + "_am": 2, + "id": "Diamonds", + "tn": 9, }, }, { "_data": { - "_am": 15, "id": "Rainbow Mini Chest", }, }, - ], - "Rewards": [ - { - "Item": { - "_data": { - "_am": 20, - "id": "Large Enchant Bundle", - }, - }, - "StarsRequired": 7, - }, { - "Item": { - "_data": { - "_am": 240, - "id": "Rainbow", - }, + "_data": { + "id": "Treasure Hunter", + "tn": 11, }, - "StarsRequired": 7, }, { - "Item": { - "_data": { - "_am": 85, - "id": "Rainbow Flag", - }, + "_data": { + "id": "Hacker Key", }, - "StarsRequired": 7, }, { - "Item": { - "_data": { - "_am": 15, - "id": "Large Enchant Bundle", - }, + "_data": { + "id": "Golden Prison Key", }, - "StarsRequired": 7, }, + ], + "Rewards": [ { "Item": { "_data": { - "_am": 100, - "id": "Shiny Flag", + "_am": 300, + "id": "Treasure Hunter", + "tn": 8, }, }, "StarsRequired": 8, @@ -167410,8 +206216,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 155, - "id": "Toy Bone", + "_am": 300, + "id": "Bonus", + "tn": 1, }, }, "StarsRequired": 8, @@ -167419,8 +206226,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 125, - "id": "Squeaky Toy", + "_am": 250, + "id": "Fortune Flag", }, }, "StarsRequired": 8, @@ -167429,7 +206236,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 300, - "id": "Rainbow", + "id": "Pet Cube", }, }, "StarsRequired": 8, @@ -167437,8 +206244,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Toy Bundle", + "_am": 300, + "id": "Void Key Lower Half", }, }, "StarsRequired": 9, @@ -167446,8 +206253,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 270, - "id": "Banana", + "_am": 300, + "id": "Comet", }, }, "StarsRequired": 9, @@ -167455,8 +206262,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 140, - "id": "Banana", + "_am": 300, + "id": "Tap Power", + "tn": 5, }, }, "StarsRequired": 9, @@ -167464,8 +206272,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 235, - "id": "Magnet Flag", + "_am": 300, + "id": "Mini Lucky Block", }, }, "StarsRequired": 9, @@ -167473,8 +206281,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 235, - "id": "Diamonds Flag", + "_am": 300, + "id": "Party Box", }, }, "StarsRequired": 10, @@ -167482,8 +206290,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 30, - "id": "Toy Bundle", + "_am": 300, + "id": "Breakable Sprinkler", }, }, "StarsRequired": 10, @@ -167491,8 +206299,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 230, - "id": "Toy Ball", + "_am": 150, + "id": "Rainbow Flag", }, }, "StarsRequired": 10, @@ -167500,9 +206308,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Coins", - "tn": 5, + "_am": 300, + "id": "Large Enchant Bundle", }, }, "StarsRequired": 10, @@ -167510,8 +206317,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Basic Coin Jar", + "_am": 200, + "id": "Treasure Hunter", + "tn": 9, }, }, "StarsRequired": 11, @@ -167519,8 +206327,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Enchant Essence", + "_am": 200, + "id": "Coins", + "tn": 10, }, }, "StarsRequired": 11, @@ -167528,8 +206337,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Treasure Hideout Key Lower Half", + "_am": 300, + "id": "Blast", + "tn": 1, }, }, "StarsRequired": 11, @@ -167537,8 +206347,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Millionaire Ticket", + "_am": 150, + "id": "Shiny Flag", }, }, "StarsRequired": 11, @@ -167546,8 +206356,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Void Key Lower Half", + "_am": 125, + "id": "TNT Crate", }, }, "StarsRequired": 12, @@ -167555,8 +206365,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Gift Bag", + "_am": 150, + "id": "Golden Pencil", }, }, "StarsRequired": 12, @@ -167564,8 +206374,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, - "id": "Prison Key", + "_am": 200, + "id": "Agility", + "tn": 1, }, }, "StarsRequired": 12, @@ -167573,8 +206384,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Charm Chisel", + "_am": 125, + "id": "Gift Bag", }, }, "StarsRequired": 12, @@ -167582,9 +206393,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 30, - "id": "Damage", - "tn": 10, + "_am": 125, + "id": "Coins", + "tn": 9, }, }, "StarsRequired": 13, @@ -167592,8 +206403,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 3, - "id": "Magic Shard", + "_am": 125, + "id": "Fantasy Key Lower Half", }, }, "StarsRequired": 13, @@ -167601,8 +206412,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Seed Bag", + "_am": 100, + "id": "Damage", + "tn": 8, }, }, "StarsRequired": 13, @@ -167610,35 +206422,17 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Coins", - "tn": 6, - }, - }, - "StarsRequired": 14, - }, - { - "Item": { - "_data": { - "_am": 4, - "id": "Void Spinny Wheel Ticket", - }, - }, - "StarsRequired": 14, - }, - { - "Item": { - "_data": { - "id": "Charm Chisel", + "_am": 100, + "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 14, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 20, - "id": "Tech Spinny Wheel Ticket", + "_am": 75, + "id": "MVP Key Lower Half", }, }, "StarsRequired": 15, @@ -167646,8 +206440,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Charm Stone", + "_am": 100, + "id": "Seed Bag", }, }, "StarsRequired": 15, @@ -167655,8 +206449,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Void Key Lower Half", + "_am": 100, + "id": "Tech Spinny Wheel Ticket", }, }, "StarsRequired": 15, @@ -167664,8 +206458,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Rainbow Mini Chest", + "_am": 100, + "id": "Damage", + "tn": 9, }, }, "StarsRequired": 16, @@ -167673,8 +206468,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Treasure Hideout Key Upper Half", + "_am": 75, + "id": "Diamonds", + "tn": 7, }, }, "StarsRequired": 16, @@ -167682,8 +206478,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Gift Bag", + "_am": 100, + "id": "Void Key Upper Half", }, }, "StarsRequired": 16, @@ -167691,8 +206487,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, - "id": "Mini Chest", + "_am": 75, + "id": "Basic Item Jar", }, }, "StarsRequired": 17, @@ -167700,8 +206496,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 9, - "id": "Millionaire Bucks", + "_am": 75, + "id": "Crystal Key Upper Half", }, }, "StarsRequired": 17, @@ -167709,8 +206505,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Mini Chest", + "_am": 50, + "id": "Treasure Hideout Key Upper Half", }, }, "StarsRequired": 17, @@ -167718,8 +206514,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Spinny Wheel Ticket", + "id": "Daycare Slot Voucher", }, }, "StarsRequired": 18, @@ -167727,8 +206522,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 3, - "id": "Secret Key", + "_am": 40, + "id": "Lucky", + "tn": 9, }, }, "StarsRequired": 18, @@ -167736,7 +206532,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Charm Chisel", + "_am": 75, + "id": "Diamonds", + "tn": 8, }, }, "StarsRequired": 18, @@ -167744,9 +206542,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Damage", - "tn": 6, + "_am": 40, + "id": "Lucky", + "tn": 8, }, }, "StarsRequired": 19, @@ -167754,8 +206552,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Treasure Hideout Key", + "_am": 125, + "id": "Strength", + "tn": 1, }, }, "StarsRequired": 19, @@ -167763,8 +206562,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Spinny Wheel Ticket", + "_am": 25, + "id": "Treasure Hideout Key", }, }, "StarsRequired": 19, @@ -167772,9 +206571,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Diamonds", - "tn": 7, + "_am": 5, + "id": "Charm Hammer", }, }, "StarsRequired": 20, @@ -167782,7 +206580,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Mini Pinata", + "_am": 25, + "id": "Tech Key", }, }, "StarsRequired": 20, @@ -167790,7 +206589,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Booth Slot Voucher", + "_am": 75, + "id": "Large Gift Bag", }, }, "StarsRequired": 20, @@ -167798,9 +206598,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Coins", - "tn": 11, + "_am": 20, + "id": "Mini Chest", }, }, "StarsRequired": 21, @@ -167808,8 +206607,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 6, - "id": "Bucket O' Magic", + "_am": 40, + "id": "Millionaire Ticket", }, }, "StarsRequired": 21, @@ -167817,9 +206616,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Lucky", - "tn": 9, + "_am": 30, + "id": "Insta Plant Capsule", }, }, "StarsRequired": 21, @@ -167827,8 +206625,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Charm Chisel", + "_am": 12, + "id": "Fantasy Key", }, }, "StarsRequired": 22, @@ -167836,8 +206634,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 40, - "id": "TNT Crate", + "_am": 30, + "id": "Fantasy Spinny Wheel Ticket", }, }, "StarsRequired": 22, @@ -167845,8 +206643,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, - "id": "Mini Chest", + "_am": 6, + "id": "Crystal Key", }, }, "StarsRequired": 22, @@ -167854,9 +206652,37 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 3, - "id": "Lucky", - "tn": 9, + "_am": 75, + "id": "Damage", + "tn": 10, + }, + }, + "StarsRequired": 23, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Ultra Pet Cube", + }, + }, + "StarsRequired": 23, + }, + { + "Item": { + "_data": { + "_am": 10, + "id": "Treasure Hunter", + "tn": 10, + }, + }, + "StarsRequired": 23, + }, + { + "Item": { + "_data": { + "_am": 5, + "id": "Prison Key", }, }, "StarsRequired": 24, @@ -167864,7 +206690,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Secret Key", + "_am": 15, + "id": "Diamond Gift Bag", }, }, "StarsRequired": 24, @@ -167872,9 +206699,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, - "id": "Damage", - "tn": 10, + "_am": 25, + "id": "Fantasy Key Upper Half", }, }, "StarsRequired": 24, @@ -167882,8 +206708,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Void Key", + "_am": 10, + "id": "Bucket O' Magic", }, }, "StarsRequired": 25, @@ -167891,9 +206717,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Treasure Hunter", - "tn": 8, + "_am": 2, + "id": "Damage", + "tn": 11, }, }, "StarsRequired": 25, @@ -167901,21 +206727,40 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 6, - "id": "Large Gift Bag", + "_am": 30, + "id": "Void Spinny Wheel Ticket", }, }, "StarsRequired": 25, }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Lucky", + "tn": 10, + }, + }, + "StarsRequired": 26, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Void Key", + }, + }, + "StarsRequired": 26, + }, ], - "Title": "Radiant Titan", + "Title": "Kingmaker", "UnlockableEggSlots": 0, "UnlockablePetSlots": 0, }, - "configName": "32 | Radiant Titan", - "dateCreated": "2025-07-05T23:23:26.624Z", - "dateModified": "2025-07-05T23:23:26.624Z", - "hashShort": "04f9e9ad60a1d2da", + "configName": "39 | Kingmaker", + "dateCreated": "2026-05-02T17:31:49.640Z", + "dateModified": "2026-05-02T17:31:49.640Z", + "hashShort": "c2e2027b2c182f17", }, { "category": "Ranks", @@ -167924,180 +206769,180 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 3250, + "Amount": 2250, "Type": 21, "Weight": 1, }, { - "Amount": 3250, + "Amount": 2250, "Type": 21, "Weight": 1, }, { - "Amount": 3250, + "Amount": 2250, "Type": 21, "Weight": 1, }, { - "Amount": 90, + "Amount": 60, "Type": 14, "Weight": 1, }, { - "Amount": 90, + "Amount": 60, "Type": 15, "Weight": 1, }, { - "Amount": 60, + "Amount": 40, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 4000, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 4000, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 4000, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 120, + "Amount": 70, "Type": 14, "Weight": 1, }, { - "Amount": 120, + "Amount": 70, "Type": 15, "Weight": 1, }, { - "Amount": 70, + "Amount": 30, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 44, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 43, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 38, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 37, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 39, "Weight": 1, }, { - "Amount": 1, + "Amount": 2, "Type": 76, "Weight": 1, }, { - "Amount": 3000, + "Amount": 2000, "Type": 20, "Weight": 1, }, { - "Amount": 3000, + "Amount": 2000, "Type": 20, "Weight": 1, }, { - "Amount": 1750, + "Amount": 900, "Type": 40, "Weight": 1, }, { - "Amount": 160, + "Amount": 90, "Type": 41, "Weight": 1, }, { - "Amount": 70, + "Amount": 50, "Type": 26, "Weight": 1, }, { - "Amount": 70, + "Amount": 40, "Type": 25, "Weight": 1, }, { - "Amount": 90, + "Amount": 75, "Type": 46, "Weight": 1, }, { - "Amount": 90, + "Amount": 75, "Type": 45, "Weight": 1, }, ], [ { - "Amount": 4000, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 4000, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 4000, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 1200, + "Amount": 650, "Type": 9, "Weight": 1, }, { - "Amount": 16000, + "Amount": 7500, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 75, + "Amount": 40, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 75, + "Amount": 40, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 75, + "Amount": 40, "PotionTier": 4, "Type": 34, "Weight": 1, @@ -168133,22 +206978,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 3500, + "Amount": 2500, "Type": 20, "Weight": 1, }, { - "Amount": 3500, + "Amount": 2500, "Type": 20, "Weight": 1, }, { - "Amount": 1800, + "Amount": 1000, "Type": 40, "Weight": 1, }, { - "Amount": 170, + "Amount": 100, "Type": 41, "Weight": 1, }, @@ -168170,33 +207015,33 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 5000, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 5000, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 5000, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 1750, + "Amount": 900, "Type": 9, "Weight": 1, }, { - "Amount": 17000, + "Amount": 10000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 70, + "Amount": 40, "Type": 42, "Weight": 1, }, @@ -168224,30 +207069,47 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 33, + "RankNumber": 25, "RankUpRewards": [ { "_data": { - "_am": 5000000, - "id": "Diamonds", + "_am": 2, + "id": "Lucky", + "tn": 10, }, }, { "_data": { - "_am": 50, - "id": "Large Enchant Bundle", + "_am": 2, + "id": "Coins", + "tn": 10, }, }, { "_data": { - "_am": 50, - "id": "Large Potion Bundle", + "_am": 2, + "id": "Damage", + "tn": 10, }, }, { "_data": { - "_am": 20, - "id": "Rainbow Mini Chest", + "_am": 2, + "id": "Diamonds", + "tn": 8, + }, + }, + { + "_data": { + "_am": 2, + "id": "Treasure Hunter", + "tn": 10, + }, + }, + { + "_data": { + "_am": 15, + "id": "Mini Chest", }, }, ], @@ -168255,555 +207117,558 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Treasure Hideout Key Lower Half", + "_am": 25, + "id": "Potion Bundle", }, }, - "StarsRequired": 8, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 20, - "id": "Damage", - "tn": 5, + "_am": 75, + "id": "Rainbow Flag", }, }, - "StarsRequired": 8, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 215, - "id": "Magnet Flag", + "_am": 150, + "id": "Hasty Flag", }, }, - "StarsRequired": 8, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 20, - "id": "Fruit Bundle", + "_am": 250, + "id": "Toy Bone", }, }, - "StarsRequired": 8, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 240, - "id": "Diamonds Flag", + "_am": 300, + "id": "Pineapple", }, }, - "StarsRequired": 9, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 70, - "id": "TNT Crate", + "_am": 250, + "id": "Strength Flag", }, }, - "StarsRequired": 9, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 25, - "id": "Treasure Hunter", - "tn": 7, + "_am": 30, + "id": "Enchant Bundle", }, }, - "StarsRequired": 9, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 250, - "id": "Toy Bone", + "_am": 20, + "id": "Enchant Bundle", }, }, - "StarsRequired": 9, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 15, - "id": "Enchant Essence", + "_am": 200, + "id": "Squeaky Toy", }, }, - "StarsRequired": 10, + "StarsRequired": 7, }, { "Item": { "_data": { "_am": 20, - "id": "Comet", + "id": "Flag Bundle", }, }, - "StarsRequired": 10, + "StarsRequired": 7, }, { "Item": { "_data": { - "id": "Enchant Bundle", + "_am": 6, + "id": "Treasure Hunter", + "tn": 5, }, }, - "StarsRequired": 10, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 125, - "id": "Coins Flag", + "_am": 150, + "id": "Pineapple", }, }, - "StarsRequired": 10, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 15, - "id": "Coins", - "tn": 7, + "_am": 125, + "id": "Rainbow Flag", }, }, - "StarsRequired": 11, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 175, + "_am": 200, "id": "Strength Flag", }, }, - "StarsRequired": 11, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 20, - "id": "Basic Coin Jar", + "_am": 125, + "id": "Rainbow", }, }, - "StarsRequired": 11, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 25, - "id": "Treasure Hideout Key Upper Half", + "_am": 6, + "id": "Toy Bundle", }, }, - "StarsRequired": 11, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 8, - "id": "Toy Bundle", + "_am": 100, + "id": "TNT", }, }, - "StarsRequired": 12, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 6, - "id": "Large Enchant Bundle", + "_am": 75, + "id": "Rainbow Flag", }, }, - "StarsRequired": 12, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 245, - "id": "Toy Ball", + "_am": 200, + "id": "TNT", }, }, - "StarsRequired": 12, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 7, - "id": "Fantasy Key", + "_am": 6, + "id": "Diamonds", + "tn": 7, }, }, - "StarsRequired": 12, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 7, - "id": "Breakable Sprinkler", + "_am": 40, + "id": "TNT Crate", }, }, - "StarsRequired": 13, + "StarsRequired": 10, }, { "Item": { "_data": { - "id": "Secret Key", + "_am": 40, + "id": "Large Potion Bundle", }, }, - "StarsRequired": 13, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 20, - "id": "Pet Cube", + "id": "Daycare Slot Voucher", }, }, - "StarsRequired": 13, + "StarsRequired": 10, }, { "Item": { "_data": { - "id": "Charm Hammer", + "_am": 20, + "id": "Gift Bag", }, }, - "StarsRequired": 13, + "StarsRequired": 10, }, { "Item": { "_data": { + "_am": 8, "id": "Damage", - "tn": 9, + "tn": 8, }, }, - "StarsRequired": 15, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 2, - "id": "Ultra Pet Cube", + "_am": 20, + "id": "Insta Plant Capsule", }, }, - "StarsRequired": 15, + "StarsRequired": 11, }, { "Item": { "_data": { - "id": "Lucky", - "tn": 9, + "_am": 200, + "id": "Fortune Flag", }, }, - "StarsRequired": 15, + "StarsRequired": 11, }, { "Item": { "_data": { - "id": "Diamonds", - "tn": 9, + "_am": 25, + "id": "Breakable Sprinkler", }, }, - "StarsRequired": 16, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 25, - "id": "Diamonds", - "tn": 6, + "_am": 6, + "id": "Damage", + "tn": 9, }, }, - "StarsRequired": 16, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 20, - "id": "Mini Lucky Block", + "id": "Crystal Key", }, }, - "StarsRequired": 16, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 15, - "id": "Hacker Key", + "_am": 20, + "id": "Charm Stone", }, }, - "StarsRequired": 17, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 6, - "id": "Void Spinny Wheel Ticket", + "_am": 4, + "id": "Secret Key", }, }, - "StarsRequired": 17, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 3, - "id": "Fantasy Spinny Wheel Ticket", + "_am": 30, + "id": "Large Gift Bag", }, }, - "StarsRequired": 17, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 15, - "id": "Gift Bag", + "_am": 30, + "id": "Magic Shard", }, }, - "StarsRequired": 18, + "StarsRequired": 14, }, { "Item": { "_data": { - "id": "Mini Chest", + "_am": 8, + "id": "Mini Pinata", }, }, - "StarsRequired": 18, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 20, - "id": "Mini Lucky Block", + "_am": 25, + "id": "Gift Bag", }, }, - "StarsRequired": 18, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 9, - "id": "Fantasy Key Upper Half", + "_am": 25, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 19, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 15, - "id": "Diamond Gift Bag", + "_am": 6, + "id": "Mini Chest", }, }, - "StarsRequired": 19, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 6, - "id": "Coins", - "tn": 9, + "_am": 20, + "id": "Seed Bag", }, }, - "StarsRequired": 19, + "StarsRequired": 15, }, { "Item": { "_data": { - "id": "Coins", - "tn": 11, + "_am": 8, + "id": "Insta Plant Capsule", }, }, - "StarsRequired": 20, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 25, - "id": "Fantasy Key Upper Half", + "_am": 30, + "id": "Party Box", }, }, - "StarsRequired": 20, + "StarsRequired": 16, }, { "Item": { "_data": { "_am": 20, - "id": "Lucky", - "tn": 6, + "id": "Coins", + "tn": 9, }, }, - "StarsRequired": 20, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 20, - "id": "Mini Chest", + "_am": 4, + "id": "Secret Key", }, }, - "StarsRequired": 21, + "StarsRequired": 17, }, { "Item": { "_data": { - "id": "Golden Prison Key", + "id": "Booth Slot Voucher", }, }, - "StarsRequired": 21, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 2, - "id": "Lucky", - "tn": 7, + "_am": 20, + "id": "Comet", }, }, - "StarsRequired": 21, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 20, - "id": "Basic Item Jar", + "_am": 4, + "id": "Tech Key", }, }, - "StarsRequired": 22, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 2, - "id": "Bucket O' Magic", + "_am": 10, + "id": "Breakable Sprinkler", }, }, - "StarsRequired": 22, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 20, - "id": "Tech Key", + "_am": 30, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 22, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 15, - "id": "Gift Bag", + "_am": 30, + "id": "Large Gift Bag", }, }, - "StarsRequired": 23, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 8, - "id": "Fantasy Key", + "_am": 4, + "id": "Diamonds", + "tn": 7, }, }, - "StarsRequired": 23, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 20, - "id": "Large Gift Bag", + "_am": 6, + "id": "Mini Chest", }, }, - "StarsRequired": 23, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 2, - "id": "Charm Chisel", + "_am": 20, + "id": "Fruit Bundle", }, }, - "StarsRequired": 24, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 20, - "id": "Large Potion Bundle", + "_am": 2, + "id": "Bucket O' Magic", }, }, - "StarsRequired": 24, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 4, - "id": "Damage", - "tn": 9, + "_am": 8, + "id": "Lucky", + "tn": 8, }, }, - "StarsRequired": 24, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 25, - "id": "Ultra Pet Cube", + "_am": 10, + "id": "Diamonds", + "tn": 6, }, }, - "StarsRequired": 25, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 3, - "id": "Crystal Key", + "_am": 30, + "id": "Damage", + "tn": 7, }, }, - "StarsRequired": 25, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 500000, - "id": "Diamonds", + "id": "Charm Chisel", }, }, - "StarsRequired": 25, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 75, - "id": "TNT Crate", + "_am": 20, + "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 26, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 8, - "id": "Mini Pinata", + "_am": 30, + "id": "Magic Shard", }, }, - "StarsRequired": 26, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 25, - "id": "Large Gift Bag", + "_am": 12, + "id": "Diamonds", + "tn": 8, }, }, - "StarsRequired": 26, + "StarsRequired": 23, }, ], - "Title": "Ascendant Oracle", - "UnlockableEggSlots": 0, - "UnlockablePetSlots": 0, + "Title": "Seer", + "UnlockableEggSlots": 1, + "UnlockablePetSlots": 1, }, - "configName": "33 | Ascendant Oracle", - "dateCreated": "2025-07-05T23:23:26.624Z", - "dateModified": "2025-07-05T23:23:26.624Z", - "hashShort": "cdedf1c57b2eab9f", + "configName": "25 | Seer", + "dateCreated": "2026-05-02T17:31:49.627Z", + "dateModified": "2026-05-02T17:31:49.627Z", + "hashShort": "5e0fe557785ba977", }, { "category": "Ranks", @@ -168812,90 +207677,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 1750, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 1750, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 1500, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 40, + "Amount": 80, "Type": 14, "Weight": 1, }, { - "Amount": 40, + "Amount": 80, "Type": 15, "Weight": 1, }, { - "Amount": 32, + "Amount": 50, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 2250, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 2250, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 2250, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 40, + "Amount": 100, "Type": 14, "Weight": 1, }, { - "Amount": 40, + "Amount": 100, "Type": 15, "Weight": 1, }, { - "Amount": 15, + "Amount": 60, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 44, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 43, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 38, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 37, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 39, "Weight": 1, }, @@ -168905,113 +207770,113 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 1500, + "Amount": 2750, "Type": 20, "Weight": 1, }, { - "Amount": 1500, + "Amount": 2750, "Type": 20, "Weight": 1, }, { - "Amount": 500, + "Amount": 1500, "Type": 40, "Weight": 1, }, { - "Amount": 50, + "Amount": 150, "Type": 41, "Weight": 1, }, { - "Amount": 50, + "Amount": 60, "Type": 26, "Weight": 1, }, { - "Amount": 40, + "Amount": 60, "Type": 25, "Weight": 1, }, { - "Amount": 75, + "Amount": 80, "Type": 46, "Weight": 1, }, { - "Amount": 75, + "Amount": 80, "Type": 45, "Weight": 1, }, ], [ { - "Amount": 2750, + "Amount": 3900, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 3900, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 3900, "Type": 21, "Weight": 1, }, { - "Amount": 400, + "Amount": 1000, "Type": 9, "Weight": 1, }, { - "Amount": 3500, + "Amount": 15000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 20, + "Amount": 70, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 20, + "Amount": 70, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 20, + "Amount": 70, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 44, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 43, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 39, "Weight": 1, }, @@ -169021,22 +207886,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 1750, + "Amount": 3250, "Type": 20, "Weight": 1, }, { - "Amount": 1750, + "Amount": 3250, "Type": 20, "Weight": 1, }, { - "Amount": 500, + "Amount": 1600, "Type": 40, "Weight": 1, }, { - "Amount": 50, + "Amount": 150, "Type": 41, "Weight": 1, }, @@ -169058,48 +207923,48 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 3000, + "Amount": 4750, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 4750, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 4750, "Type": 21, "Weight": 1, }, { - "Amount": 550, + "Amount": 1400, "Type": 9, "Weight": 1, }, { - "Amount": 4000, + "Amount": 15000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 20, + "Amount": 60, "Type": 42, "Weight": 1, }, { - "Amount": 6, + "Amount": 8, "Type": 38, "Weight": 1, }, { - "Amount": 6, + "Amount": 8, "Type": 37, "Weight": 1, }, { - "Amount": 6, + "Amount": 8, "Type": 39, "Weight": 1, }, @@ -169112,58 +207977,30 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 20, + "RankNumber": 32, "RankUpRewards": [ { "_data": { - "_am": 8, - "id": "Lucky", - "tn": 8, - }, - }, - { - "_data": { - "_am": 8, - "id": "Coins", - "tn": 8, - }, - }, - { - "_data": { - "_am": 8, - "id": "Damage", - "tn": 8, - }, - }, - { - "_data": { - "_am": 8, - "id": "Treasure Hunter", - "tn": 8, - }, - }, - { - "_data": { - "_am": 50000, + "_am": 100, "id": "Diamonds", }, }, { "_data": { - "_am": 3, - "id": "Crystal Key", + "_am": 30, + "id": "Large Enchant Bundle", }, }, { "_data": { - "_am": 2, - "id": "Secret Key", + "_am": 30, + "id": "Large Potion Bundle", }, }, { "_data": { - "_am": 3, - "id": "Mini Chest", + "_am": 8, + "id": "Rainbow Mini Chest", }, }, ], @@ -169171,576 +208008,552 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Large Gift Bag", + "_am": 12, + "id": "Large Enchant Bundle", }, }, - "StarsRequired": 4, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 25000, - "id": "Diamonds", + "_am": 150, + "id": "Rainbow", }, }, - "StarsRequired": 4, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 5, - "id": "Coins", - "tn": 6, + "_am": 50, + "id": "Rainbow Flag", }, }, - "StarsRequired": 4, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 3, - "id": "Mini Lucky Block", + "_am": 8, + "id": "Large Enchant Bundle", }, }, - "StarsRequired": 5, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 2, - "id": "Crystal Key", + "_am": 50, + "id": "Shiny Flag", }, }, - "StarsRequired": 5, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 27500, - "id": "Diamonds", + "_am": 100, + "id": "Toy Bone", }, }, - "StarsRequired": 5, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 6, - "id": "Damage", - "tn": 6, + "_am": 75, + "id": "Squeaky Toy", }, }, - "StarsRequired": 6, + "StarsRequired": 8, }, { "Item": { "_data": { "_am": 200, - "id": "Banana", + "id": "Rainbow", }, }, - "StarsRequired": 6, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 3, - "id": "Mini Pinata", + "_am": 8, + "id": "Toy Bundle", }, }, - "StarsRequired": 6, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 6, - "id": "Spinny Wheel Ticket", + "_am": 150, + "id": "Banana", }, }, - "StarsRequired": 7, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 5, - "id": "Treasure Hunter", - "tn": 6, + "_am": 75, + "id": "Banana", }, }, - "StarsRequired": 8, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 12, - "id": "Party Box", + "_am": 150, + "id": "Magnet Flag", }, }, - "StarsRequired": 8, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 5, - "id": "Diamonds", - "tn": 6, + "_am": 150, + "id": "Diamonds Flag", }, }, - "StarsRequired": 8, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 200, - "id": "Rainbow", + "_am": 20, + "id": "Toy Bundle", }, }, - "StarsRequired": 8, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 200, - "id": "Apple", + "_am": 150, + "id": "Toy Ball", }, }, - "StarsRequired": 8, + "StarsRequired": 10, }, { "Item": { "_data": { "_am": 12, - "id": "Flag Bundle", + "id": "Coins", + "tn": 5, }, }, - "StarsRequired": 9, + "StarsRequired": 10, }, { "Item": { "_data": { "_am": 8, - "id": "Coins", - "tn": 7, + "id": "Basic Coin Jar", }, }, - "StarsRequired": 9, + "StarsRequired": 11, }, { "Item": { "_data": { - "id": "Mini Chest", + "_am": 12, + "id": "Enchant Essence", }, }, - "StarsRequired": 9, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 6, - "id": "Diamonds", - "tn": 6, + "_am": 12, + "id": "Treasure Hideout Key Lower Half", }, }, - "StarsRequired": 9, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 12, - "id": "Damage", - "tn": 6, + "_am": 15, + "id": "Millionaire Ticket", }, }, - "StarsRequired": 9, + "StarsRequired": 11, }, { "Item": { "_data": { "_am": 12, - "id": "Coins", - "tn": 6, + "id": "Void Key Lower Half", }, }, - "StarsRequired": 10, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 12, - "id": "Potion Bundle", + "_am": 8, + "id": "Gift Bag", }, }, - "StarsRequired": 10, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 18, - "id": "Giant Coin Jar", + "_am": 5, + "id": "Prison Key", }, }, - "StarsRequired": 10, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 18, - "id": "Toy Bundle", + "id": "Charm Chisel", }, }, - "StarsRequired": 10, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 32500, - "id": "Diamonds", + "_am": 20, + "id": "Damage", + "tn": 10, }, }, - "StarsRequired": 10, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 3, - "id": "Secret Key", + "_am": 2, + "id": "Magic Shard", }, }, - "StarsRequired": 11, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 5, - "id": "Rainbow Flag", + "_am": 8, + "id": "Seed Bag", }, }, - "StarsRequired": 11, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 4, - "id": "Crystal Key", + "_am": 8, + "id": "Coins", + "tn": 6, }, }, - "StarsRequired": 11, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 6, - "id": "Shiny Flag", + "_am": 2, + "id": "Void Spinny Wheel Ticket", }, }, - "StarsRequired": 11, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 12, - "id": "Damage", - "tn": 6, + "id": "Charm Chisel", }, }, - "StarsRequired": 12, + "StarsRequired": 14, }, { "Item": { "_data": { "_am": 12, - "id": "Coins", - "tn": 7, + "id": "Tech Spinny Wheel Ticket", }, }, - "StarsRequired": 13, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 225, - "id": "Rainbow", + "_am": 8, + "id": "Charm Stone", }, }, - "StarsRequired": 13, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 3, - "id": "Mini Chest", + "_am": 8, + "id": "Void Key Lower Half", }, }, - "StarsRequired": 13, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 5, - "id": "Treasure Hunter", - "tn": 8, + "_am": 12, + "id": "Rainbow Mini Chest", }, }, - "StarsRequired": 13, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 2, - "id": "Tech Key", + "_am": 15, + "id": "Treasure Hideout Key Upper Half", }, }, - "StarsRequired": 13, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 5, - "id": "Coins", - "tn": 8, + "_am": 8, + "id": "Gift Bag", }, }, - "StarsRequired": 14, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 5, - "id": "Damage", - "tn": 8, + "_am": 2, + "id": "Mini Chest", }, }, - "StarsRequired": 14, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 10, - "id": "Tech Spinny Wheel Ticket", + "_am": 5, + "id": "Millionaire Bucks", }, }, - "StarsRequired": 14, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 5, - "id": "Shiny Flag", + "_am": 8, + "id": "Mini Chest", }, }, - "StarsRequired": 14, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 10, - "id": "Damage", - "tn": 7, + "_am": 8, + "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 14, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 7, - "id": "Treasure Hunter", - "tn": 7, + "_am": 2, + "id": "Secret Key", }, }, - "StarsRequired": 14, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 9, - "id": "Enchant Bundle", + "id": "Charm Chisel", }, }, - "StarsRequired": 14, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 8, - "id": "Coins", - "tn": 7, + "_am": 15, + "id": "Damage", + "tn": 6, }, }, - "StarsRequired": 14, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 5, - "id": "Diamonds", - "tn": 6, + "_am": 8, + "id": "Treasure Hideout Key", }, }, - "StarsRequired": 14, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 4, - "id": "Lucky", - "tn": 7, + "_am": 3, + "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 15, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 50000, + "_am": 8, "id": "Diamonds", + "tn": 7, }, }, - "StarsRequired": 15, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 3, - "id": "Coins", - "tn": 8, + "id": "Mini Pinata", }, }, - "StarsRequired": 15, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 4, - "id": "Diamonds", - "tn": 7, + "id": "Booth Slot Voucher", }, }, - "StarsRequired": 15, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 4, - "id": "Lucky", - "tn": 9, + "id": "Coins", + "tn": 11, }, }, - "StarsRequired": 16, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 3, - "id": "Crystal Key", + "_am": 4, + "id": "Bucket O' Magic", }, }, - "StarsRequired": 16, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 275, - "id": "Rainbow", + "id": "Lucky", + "tn": 9, }, }, - "StarsRequired": 16, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 13, - "id": "Enchant Bundle", + "id": "Charm Chisel", }, }, - "StarsRequired": 16, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 3, - "id": "Mini Pinata", + "_am": 25, + "id": "TNT Crate", }, }, - "StarsRequired": 16, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 4, - "id": "Coins", - "tn": 9, + "_am": 5, + "id": "Mini Chest", }, }, - "StarsRequired": 17, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 4, - "id": "Damage", + "_am": 2, + "id": "Lucky", "tn": 9, }, }, - "StarsRequired": 17, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 4, - "id": "Treasure Hunter", - "tn": 9, + "id": "Secret Key", }, }, - "StarsRequired": 17, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 4, - "id": "Mini Chest", + "_am": 2, + "id": "Damage", + "tn": 10, }, }, - "StarsRequired": 17, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 5, - "id": "Charm Stone", + "id": "Void Key", }, }, - "StarsRequired": 17, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 8, - "id": "Lucky", + "_am": 15, + "id": "Treasure Hunter", "tn": 8, }, }, - "StarsRequired": 17, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 8, - "id": "Charm Stone", + "_am": 4, + "id": "Large Gift Bag", }, }, - "StarsRequired": 18, + "StarsRequired": 25, }, ], - "Title": "Ascendant", - "UnlockableEggSlots": 1, - "UnlockablePetSlots": 1, + "Title": "Mythic", + "UnlockableEggSlots": 0, + "UnlockablePetSlots": 0, }, - "configName": "20 | Ascendant", - "dateCreated": "2025-07-05T23:23:26.624Z", - "dateModified": "2025-07-05T23:23:26.624Z", - "hashShort": "58f31e6dc1d03ee9", + "configName": "32 | Mythic", + "dateCreated": "2026-05-02T17:31:49.630Z", + "dateModified": "2026-05-02T17:31:49.630Z", + "hashShort": "1f12f0160e4440f1", }, { "category": "Ranks", @@ -169749,90 +208562,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 3250, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 3250, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 3250, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 90, + "Amount": 50, "Type": 14, "Weight": 1, }, { - "Amount": 90, + "Amount": 50, "Type": 15, "Weight": 1, }, { - "Amount": 60, + "Amount": 35, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 4000, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 4000, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 4000, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 120, + "Amount": 60, "Type": 14, "Weight": 1, }, { - "Amount": 120, + "Amount": 60, "Type": 15, "Weight": 1, }, { - "Amount": 70, + "Amount": 20, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 6, + "Amount": 4, "Type": 44, "Weight": 1, }, { - "Amount": 6, + "Amount": 4, "Type": 43, "Weight": 1, }, { - "Amount": 6, + "Amount": 4, "Type": 38, "Weight": 1, }, { - "Amount": 6, + "Amount": 4, "Type": 37, "Weight": 1, }, { - "Amount": 6, + "Amount": 4, "Type": 39, "Weight": 1, }, @@ -169842,113 +208655,113 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 3000, + "Amount": 1750, "Type": 20, "Weight": 1, }, { - "Amount": 3000, + "Amount": 1750, "Type": 20, "Weight": 1, }, { - "Amount": 1750, + "Amount": 750, "Type": 40, "Weight": 1, }, { - "Amount": 160, + "Amount": 75, "Type": 41, "Weight": 1, }, { - "Amount": 70, + "Amount": 50, "Type": 26, "Weight": 1, }, { - "Amount": 70, + "Amount": 40, "Type": 25, "Weight": 1, }, { - "Amount": 90, + "Amount": 75, "Type": 46, "Weight": 1, }, { - "Amount": 90, + "Amount": 75, "Type": 45, "Weight": 1, }, ], [ { - "Amount": 4000, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 4000, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 4000, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 1200, + "Amount": 500, "Type": 9, "Weight": 1, }, { - "Amount": 16000, + "Amount": 5000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 75, + "Amount": 30, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 75, + "Amount": 30, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 75, + "Amount": 30, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 44, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 43, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 38, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 37, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 39, "Weight": 1, }, @@ -169958,22 +208771,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 3500, + "Amount": 2000, "Type": 20, "Weight": 1, }, { - "Amount": 3500, + "Amount": 2000, "Type": 20, "Weight": 1, }, { - "Amount": 1800, + "Amount": 900, "Type": 40, "Weight": 1, }, { - "Amount": 170, + "Amount": 90, "Type": 41, "Weight": 1, }, @@ -169995,48 +208808,48 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 5000, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 5000, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 5000, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 1750, + "Amount": 750, "Type": 9, "Weight": 1, }, { - "Amount": 17000, + "Amount": 7500, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 70, + "Amount": 25, "Type": 42, "Weight": 1, }, { - "Amount": 8, + "Amount": 7, "Type": 38, "Weight": 1, }, { - "Amount": 8, + "Amount": 7, "Type": 37, "Weight": 1, }, { - "Amount": 8, + "Amount": 7, "Type": 39, "Weight": 1, }, @@ -170049,28 +208862,71 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 34, + "RankNumber": 24, "RankUpRewards": [ { "_data": { - "_am": 5000000, + "_am": 15, + "id": "Lucky", + "tn": 9, + }, + }, + { + "_data": { + "_am": 15, + "id": "Coins", + "tn": 9, + }, + }, + { + "_data": { + "_am": 15, + "id": "Damage", + "tn": 9, + }, + }, + { + "_data": { + "_am": 15, "id": "Diamonds", + "tn": 7, }, }, { "_data": { - "id": "Mega Potion Chest", + "_am": 15, + "id": "Treasure Hunter", + "tn": 9, }, }, { "_data": { - "id": "Mega Enchant Chest", + "_am": 100, + "id": "Diamonds", }, }, { "_data": { - "_am": 25, - "id": "Rainbow Mini Chest", + "_am": 6, + "id": "Crystal Key", + }, + }, + { + "_data": { + "_am": 4, + "id": "Secret Key", + }, + }, + { + "_data": { + "_am": 12, + "id": "Tech Key", + }, + }, + { + "_data": { + "_am": 20, + "id": "Mini Chest", }, }, ], @@ -170078,557 +208934,563 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Enchant Bundle", + "_am": 300, + "id": "Watermelon", }, }, - "StarsRequired": 8, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 220, - "id": "Squeaky Toy", + "_am": 300, + "id": "Rainbow", }, }, - "StarsRequired": 8, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 15, - "id": "Basic Coin Jar", + "_am": 250, + "id": "Toy Ball", }, }, - "StarsRequired": 8, + "StarsRequired": 4, }, { "Item": { "_data": { - "id": "Enchant Bundle", + "_am": 200, + "id": "Pineapple", }, }, - "StarsRequired": 8, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 150, - "id": "Watermelon", + "_am": 50000, + "id": "Diamonds", }, }, - "StarsRequired": 9, + "StarsRequired": 5, }, { "Item": { "_data": { "_am": 250, - "id": "Apple", + "id": "Orange", }, }, - "StarsRequired": 9, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 235, - "id": "Toy Ball", + "_am": 40, + "id": "Potion Bundle", }, }, - "StarsRequired": 9, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 245, - "id": "Rainbow", + "_am": 250, + "id": "Magnet Flag", }, }, - "StarsRequired": 9, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 210, - "id": "Strength Flag", + "_am": 75, + "id": "Comet", }, }, - "StarsRequired": 10, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 15, - "id": "Treasure Hunter", - "tn": 7, + "_am": 200, + "id": "Diamonds Flag", }, }, - "StarsRequired": 10, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 140, - "id": "Hasty Flag", + "_am": 300, + "id": "Orange", }, }, - "StarsRequired": 10, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 4, - "id": "Fantasy Key Lower Half", + "_am": 50, + "id": "Fruit Bundle", }, }, - "StarsRequired": 10, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 130, - "id": "Banana", + "_am": 250, + "id": "Diamonds Flag", }, }, - "StarsRequired": 11, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 25, - "id": "Enchant Essence", + "_am": 250, + "id": "Watermelon", }, }, - "StarsRequired": 11, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 210, - "id": "Coins Flag", + "_am": 125, + "id": "TNT", }, }, - "StarsRequired": 11, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 190, - "id": "Squeaky Toy", + "_am": 250, + "id": "Toy Bone", }, }, - "StarsRequired": 11, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 30, - "id": "Fantasy Key Lower Half", + "_am": 300, + "id": "Rainbow", }, }, - "StarsRequired": 12, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 20, - "id": "Diamonds", - "tn": 6, + "_am": 200, + "id": "Magnet Flag", }, }, - "StarsRequired": 12, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 185, - "id": "Watermelon", + "_am": 200, + "id": "Coins Flag", }, }, - "StarsRequired": 12, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 2, - "id": "Large Potion Bundle", + "_am": 40, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 12, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 9, - "id": "Coins", - "tn": 10, + "_am": 25, + "id": "Large Gift Bag", }, }, - "StarsRequired": 13, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 120, - "id": "Shiny Flag", + "_am": 8, + "id": "Damage", + "tn": 8, }, }, - "StarsRequired": 13, + "StarsRequired": 10, }, { "Item": { "_data": { - "id": "Breakable Sprinkler", + "_am": 12, + "id": "Damage", + "tn": 7, }, }, - "StarsRequired": 13, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 200, - "id": "Fortune Flag", + "_am": 50, + "id": "Coins", + "tn": 8, }, }, - "StarsRequired": 13, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 25, - "id": "Basic Item Jar", + "_am": 8, + "id": "Tech Key", }, }, - "StarsRequired": 15, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 60, - "id": "TNT Crate", + "_am": 4, + "id": "Secret Key", }, }, - "StarsRequired": 15, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 20, - "id": "Golden Pencil", + "_am": 8, + "id": "Coins", + "tn": 8, }, }, - "StarsRequired": 15, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 9, - "id": "Seashell", + "_am": 8, + "id": "Potion Bundle", }, }, - "StarsRequired": 16, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 4, - "id": "Mini Lucky Block", + "_am": 150, + "id": "Shiny Flag", }, }, - "StarsRequired": 16, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 7, - "id": "Basic Item Jar", + "_am": 25, + "id": "Lucky", + "tn": 6, }, }, - "StarsRequired": 16, + "StarsRequired": 12, }, { "Item": { "_data": { - "id": "MVP Key Lower Half", + "_am": 10, + "id": "Mini Chest", }, }, - "StarsRequired": 17, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 170, - "id": "Toy Bone", + "_am": 15, + "id": "Party Box", }, }, - "StarsRequired": 17, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 4, - "id": "Fantasy Key", + "_am": 8, + "id": "Mini Chest", }, }, - "StarsRequired": 17, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 7, - "id": "Hacker Key", + "_am": 5, + "id": "Charm Hammer", }, }, - "StarsRequired": 18, + "StarsRequired": 14, }, { "Item": { "_data": { - "id": "Daycare Slot Voucher", + "_am": 40, + "id": "Seed Bag", }, }, - "StarsRequired": 18, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 30, - "id": "Fantasy Spinny Wheel Ticket", + "_am": 15, + "id": "Diamonds", + "tn": 6, }, }, - "StarsRequired": 18, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 3, - "id": "Crystal Key", + "_am": 250, + "id": "Fortune Flag", }, }, - "StarsRequired": 19, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 20, - "id": "Damage", - "tn": 10, + "_am": 100, + "id": "Rainbow Flag", }, }, - "StarsRequired": 19, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 20, - "id": "Fruit Bundle", + "_am": 25, + "id": "Party Box", }, }, - "StarsRequired": 19, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 15, - "id": "Party Box", + "_am": 5, + "id": "Charm Hammer", }, }, - "StarsRequired": 20, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 8, - "id": "Gift Bag", + "_am": 40, + "id": "Tech Spinny Wheel Ticket", }, }, - "StarsRequired": 20, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 8, - "id": "Gift Bag", + "_am": 25, + "id": "Charm Stone", }, }, - "StarsRequired": 20, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 25, - "id": "Treasure Hideout Key Upper Half", + "_am": 12, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 21, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 4, - "id": "Diamonds", - "tn": 9, + "_am": 25, + "id": "Large Enchant Bundle", }, }, - "StarsRequired": 21, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 15, - "id": "Lucky", - "tn": 8, + "_am": 125, + "id": "Rainbow Flag", }, }, - "StarsRequired": 21, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 25, - "id": "Coins", - "tn": 9, + "_am": 40, + "id": "Lucky", + "tn": 7, }, }, - "StarsRequired": 22, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 2, - "id": "Charm Chisel", + "_am": 15, + "id": "Gift Bag", }, }, - "StarsRequired": 22, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 140, - "id": "Rainbow Flag", + "_am": 25, + "id": "Diamonds", + "tn": 5, }, }, - "StarsRequired": 22, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 20, - "id": "Damage", - "tn": 8, + "_am": 25, + "id": "Breakable Sprinkler", }, }, - "StarsRequired": 23, + "StarsRequired": 19, }, { "Item": { "_data": { "_am": 5, - "id": "Charm Hammer", + "id": "Charm Stone", }, }, - "StarsRequired": 23, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 2, - "id": "Fantasy Key Upper Half", + "_am": 25, + "id": "Coins", + "tn": 7, }, }, - "StarsRequired": 23, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 15, - "id": "Mini Chest", + "_am": 25, + "id": "Large Gift Bag", }, }, - "StarsRequired": 24, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 3, - "id": "Mini Chest", + "_am": 2, + "id": "Secret Key", }, }, - "StarsRequired": 24, + "StarsRequired": 20, }, { "Item": { "_data": { - "id": "Damage", - "tn": 11, + "_am": 15, + "id": "Lucky", + "tn": 8, }, }, - "StarsRequired": 24, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 15, + "_am": 25, "id": "Bucket O' Magic", }, }, - "StarsRequired": 25, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 8, - "id": "Golden Pencil", + "_am": 20, + "id": "Diamonds", + "tn": 6, }, }, - "StarsRequired": 25, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 2, - "id": "Diamonds", - "tn": 9, + "_am": 100, + "id": "TNT Crate", }, }, - "StarsRequired": 25, + "StarsRequired": 21, }, { "Item": { "_data": { - "id": "Treasure Hunter", - "tn": 11, + "_am": 20, + "id": "Mini Chest", }, }, - "StarsRequired": 26, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 2, - "id": "Charm Chisel", + "_am": 8, + "id": "Tech Key", }, }, - "StarsRequired": 26, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 20, - "id": "Basic Item Jar", + "_am": 75, + "id": "Large Gift Bag", }, }, - "StarsRequired": 26, + "StarsRequired": 22, }, ], - "Title": "Eternal Seer", - "UnlockableEggSlots": 0, - "UnlockablePetSlots": 0, + "Title": "Prodigy", + "UnlockableEggSlots": 1, + "UnlockablePetSlots": 1, }, - "configName": "34 | Eternal Seer", - "dateCreated": "2025-07-05T23:23:26.624Z", - "dateModified": "2025-07-05T23:23:26.624Z", - "hashShort": "0bf6b2e463621633", + "configName": "24 | Prodigy", + "dateCreated": "2026-05-02T17:31:49.636Z", + "dateModified": "2026-05-02T17:31:49.636Z", + "hashShort": "17dcdb87380447f6", }, { "category": "Ranks", @@ -170941,7 +209803,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "RankUpRewards": [ { "_data": { - "_am": 7000000, + "_am": 100, "id": "Diamonds", }, }, @@ -170957,7 +209819,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` }, { "_data": { - "_am": 25, + "_am": 15, "id": "Rainbow Mini Chest", }, }, @@ -170966,7 +209828,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 7, + "_am": 4, "id": "Flag Bundle", }, }, @@ -170975,7 +209837,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, + "_am": 8, "id": "Diamonds", "tn": 5, }, @@ -170985,7 +209847,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 275, + "_am": 150, "id": "Rainbow", }, }, @@ -170994,7 +209856,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 230, + "_am": 125, "id": "Hasty Flag", }, }, @@ -171003,7 +209865,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 150, + "_am": 100, "id": "Toy Ball", }, }, @@ -171012,7 +209874,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, + "_am": 12, "id": "Breakable Sprinkler", }, }, @@ -171021,7 +209883,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 115, + "_am": 75, "id": "Orange", }, }, @@ -171030,7 +209892,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 190, + "_am": 125, "id": "Strength Flag", }, }, @@ -171039,7 +209901,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 135, + "_am": 75, "id": "Rainbow Flag", }, }, @@ -171048,7 +209910,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 205, + "_am": 125, "id": "Squeaky Toy", }, }, @@ -171057,7 +209919,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, + "_am": 15, "id": "Treasure Hunter", "tn": 8, }, @@ -171067,7 +209929,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 175, + "_am": 100, "id": "Diamonds Flag", }, }, @@ -171076,7 +209938,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 7, + "_am": 4, "id": "Enchant Bundle", }, }, @@ -171085,7 +209947,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 180, + "_am": 100, "id": "Toy Ball", }, }, @@ -171094,7 +209956,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 220, + "_am": 125, "id": "Diamonds Flag", }, }, @@ -171103,7 +209965,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, + "_am": 8, "id": "Potion Bundle", }, }, @@ -171112,7 +209974,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, + "_am": 5, "id": "Void Key Lower Half", }, }, @@ -171121,7 +209983,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, + "_am": 12, "id": "Flag Bundle", }, }, @@ -171130,7 +209992,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 215, + "_am": 125, "id": "Banana", }, }, @@ -171139,7 +210001,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, + "_am": 15, "id": "Treasure Hideout Key", }, }, @@ -171148,7 +210010,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 3, + "_am": 2, "id": "Prison Key", }, }, @@ -171157,7 +210019,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, + "_am": 12, "id": "Damage", "tn": 10, }, @@ -171167,7 +210029,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, + "_am": 2, "id": "Charm Hammer", }, }, @@ -171176,7 +210038,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, + "_am": 15, "id": "Seed Bag", }, }, @@ -171185,7 +210047,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 7, + "_am": 4, "id": "Large Gift Bag", }, }, @@ -171194,7 +210056,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, + "_am": 8, "id": "Millionaire Bucks", }, }, @@ -171203,7 +210065,6 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, "id": "MVP Key Lower Half", }, }, @@ -171212,7 +210073,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 6, + "_am": 4, "id": "Treasure Hideout Key Lower Half", }, }, @@ -171221,7 +210082,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 6, + "_am": 4, "id": "Bucket O' Magic", }, }, @@ -171230,7 +210091,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, + "_am": 8, "id": "Void Spinny Wheel Ticket", }, }, @@ -171239,7 +210100,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 3, + "_am": 2, "id": "Charm Hammer", }, }, @@ -171248,7 +210109,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, + "_am": 12, "id": "Tech Spinny Wheel Ticket", }, }, @@ -171257,7 +210118,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 3, + "_am": 2, "id": "Tech Key", }, }, @@ -171266,7 +210127,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, + "_am": 12, "id": "Large Gift Bag", }, }, @@ -171275,7 +210136,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, + "_am": 2, "id": "Prison Key", }, }, @@ -171284,7 +210145,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 7, + "_am": 4, "id": "Diamond Gift Bag", }, }, @@ -171293,7 +210154,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 30, + "_am": 20, "id": "Lucky", "tn": 5, }, @@ -171320,7 +210181,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, + "_am": 2, "id": "Crystal Key", }, }, @@ -171329,7 +210190,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, + "_am": 2, "id": "Charm Hammer", }, }, @@ -171338,7 +210199,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, + "_am": 15, "id": "Mini Lucky Block", }, }, @@ -171347,7 +210208,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, + "_am": 8, "id": "Charm Stone", }, }, @@ -171356,7 +210217,6 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, "id": "MVP Key Lower Half", }, }, @@ -171365,7 +210225,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, + "_am": 15, "id": "Treasure Hideout Key", }, }, @@ -171374,7 +210234,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, + "_am": 8, "id": "Diamonds", "tn": 8, }, @@ -171384,7 +210244,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, + "_am": 3, "id": "Coins", "tn": 11, }, @@ -171394,7 +210254,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, + "_am": 12, "id": "Damage", "tn": 8, }, @@ -171404,7 +210264,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 7, + "_am": 4, "id": "Hacker Key", }, }, @@ -171413,7 +210273,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 30, + "_am": 20, "id": "Gift Bag", }, }, @@ -171422,7 +210282,6 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, "id": "Mini Chest", }, }, @@ -171431,7 +210290,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, + "_am": 5, "id": "Coins", "tn": 10, }, @@ -171441,7 +210300,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, + "_am": 3, "id": "Treasure Hunter", "tn": 10, }, @@ -171459,7 +210318,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, + "_am": 15, "id": "Damage", "tn": 8, }, @@ -171469,7 +210328,6 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, "id": "Charm Chisel", }, }, @@ -171478,7 +210336,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, + "_am": 8, "id": "Insta Plant Capsule", }, }, @@ -171487,7 +210345,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, + "_am": 3, "id": "Insta Plant Capsule", }, }, @@ -171496,21 +210354,21 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, + "_am": 8, "id": "Mini Chest", }, }, "StarsRequired": 26, }, ], - "Title": "Transcendent Mind", + "Title": "Mythkeeper", "UnlockableEggSlots": 0, "UnlockablePetSlots": 0, }, - "configName": "35 | Transcendent Mind", - "dateCreated": "2025-07-05T23:23:26.624Z", - "dateModified": "2025-07-05T23:23:26.624Z", - "hashShort": "0f383c87feb673a8", + "configName": "35 | Mythkeeper", + "dateCreated": "2026-05-02T17:31:49.639Z", + "dateModified": "2026-05-02T17:31:49.639Z", + "hashShort": "0418040b2f6075ce", }, ], "status": "ok", @@ -174594,7 +213452,7 @@ exports[`Pet Simulator Public Live API Test Upgrades shape 1`] = ` }, "configName": "Upgrade | Walkspeed", "dateCreated": null, - "dateModified": "2025-07-12T16:08:17.764Z", + "dateModified": "2026-06-27T16:04:47.896Z", "hashShort": "9a722b596faa7fc6", }, { @@ -174983,7 +213841,7 @@ exports[`Pet Simulator Public Live API Test Upgrades shape 1`] = ` }, "configName": "Upgrade | Magnet", "dateCreated": null, - "dateModified": "2025-07-12T16:08:17.765Z", + "dateModified": "2026-06-27T16:04:47.897Z", "hashShort": "efc2ace806dc3de8", }, { @@ -175372,7 +214230,7 @@ exports[`Pet Simulator Public Live API Test Upgrades shape 1`] = ` }, "configName": "Upgrade | Pet Damage", "dateCreated": null, - "dateModified": "2025-07-12T16:08:17.798Z", + "dateModified": "2026-06-27T16:04:47.899Z", "hashShort": "0f76880b5b9d3a9f", }, { @@ -175814,7 +214672,7 @@ exports[`Pet Simulator Public Live API Test Upgrades shape 1`] = ` }, "configName": "Upgrade | Coins", "dateCreated": null, - "dateModified": "2025-07-19T17:28:21.673Z", + "dateModified": "2026-06-27T16:04:47.932Z", "hashShort": "c76f81482b92257f", }, { @@ -176309,7 +215167,7 @@ exports[`Pet Simulator Public Live API Test Upgrades shape 1`] = ` }, "configName": "Upgrade | Diamonds", "dateCreated": null, - "dateModified": "2025-07-12T16:08:17.801Z", + "dateModified": "2026-06-27T16:04:47.936Z", "hashShort": "f88a3df24e697a9f", }, { @@ -176728,7 +215586,7 @@ exports[`Pet Simulator Public Live API Test Upgrades shape 1`] = ` }, "configName": "Upgrade | Pet Speed", "dateCreated": null, - "dateModified": "2025-07-12T16:08:17.836Z", + "dateModified": "2026-06-27T16:04:47.970Z", "hashShort": "c6387ef5fa23dd74", }, { @@ -177170,7 +216028,7 @@ exports[`Pet Simulator Public Live API Test Upgrades shape 1`] = ` }, "configName": "Upgrade | Tap Damage", "dateCreated": null, - "dateModified": "2025-07-12T16:08:18.056Z", + "dateModified": "2026-06-27T16:04:47.972Z", "hashShort": "f5776dca49630868", }, { @@ -177559,7 +216417,7 @@ exports[`Pet Simulator Public Live API Test Upgrades shape 1`] = ` }, "configName": "Upgrade | Luck", "dateCreated": null, - "dateModified": "2025-07-12T16:08:18.062Z", + "dateModified": "2026-06-27T16:04:48.414Z", "hashShort": "22cf702b3c220510", }, { @@ -177948,7 +216806,7 @@ exports[`Pet Simulator Public Live API Test Upgrades shape 1`] = ` }, "configName": "Upgrade | Drops", "dateCreated": null, - "dateModified": "2025-07-12T16:08:17.869Z", + "dateModified": "2026-06-27T16:04:48.427Z", "hashShort": "664caaeb89604458", }, { @@ -178072,7 +216930,7 @@ exports[`Pet Simulator Public Live API Test Upgrades shape 1`] = ` }, "configName": "Upgrade | Ultimates", "dateCreated": null, - "dateModified": "2025-07-12T16:08:17.870Z", + "dateModified": "2026-06-27T16:04:48.004Z", "hashShort": "e69c6fc908511b5d", }, ], @@ -178137,7 +216995,7 @@ exports[`Pet Simulator Public Live API Test Worlds shape 1`] = ` }, "configName": "World 1", "dateCreated": null, - "dateModified": "2025-12-20T17:55:28.513Z", + "dateModified": "2026-05-09T17:52:23.086Z", "hashShort": "f5d85de7155e7abe", }, { @@ -178280,7 +217138,7 @@ exports[`Pet Simulator Public Live API Test Worlds shape 1`] = ` }, "configName": "World 4", "dateCreated": "2025-07-05T23:23:26.895Z", - "dateModified": "2025-12-20T17:55:28.512Z", + "dateModified": "2026-05-09T17:52:23.098Z", "hashShort": "3b9945d6f797f862", }, ], @@ -178937,7 +217795,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "1 | Spawn", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.006Z", + "dateModified": "2026-06-13T23:13:00.357Z", "hashShort": "156b52bc587c5a6b", }, { @@ -178954,6 +217812,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` { "Type": "Medium Coins (Default)", "Weight": 8, + "WorldNumber": 1, }, { "Type": "Crate (Crystal)", @@ -178985,8 +217844,8 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "10 | Mine", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.009Z", - "hashShort": "c7bd5be294dd9291", + "dateModified": "2026-06-27T16:04:56.479Z", + "hashShort": "da24dc0c1dc180f0", }, { "category": "World 1", @@ -178998,6 +217857,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` { "Type": "Small Coins (Default)", "Weight": 8, + "WorldNumber": 1, }, { "Type": "Medium Coins (Default)", @@ -179033,8 +217893,8 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "11 | Crystal Caverns", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.008Z", - "hashShort": "1c29a3b3eb811e82", + "dateModified": "2026-06-27T16:04:56.481Z", + "hashShort": "bc5b47bcfbaf62bf", }, { "category": "World 1", @@ -179128,7 +217988,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "12 | Dead Forest", "dateCreated": null, - "dateModified": "2025-12-20T17:54:49.292Z", + "dateModified": "2026-06-13T23:13:00.368Z", "hashShort": "00fbc8b88c24edf4", }, { @@ -179231,7 +218091,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "13 | Dark Forest", "dateCreated": null, - "dateModified": "2025-12-20T17:54:49.293Z", + "dateModified": "2026-06-13T23:13:00.358Z", "hashShort": "1cc1fedec0effdad", }, { @@ -179275,7 +218135,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "14 | Mushroom Field", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.010Z", + "dateModified": "2026-05-09T17:51:29.213Z", "hashShort": "5475afb590eb2371", }, { @@ -179319,7 +218179,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "16 | Crimson Forest", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.011Z", + "dateModified": "2026-05-09T17:51:29.214Z", "hashShort": "8b40d37f74c617d7", }, { @@ -179367,7 +218227,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "15 | Enchanted Forest", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.011Z", + "dateModified": "2026-05-09T17:51:29.213Z", "hashShort": "c0ad4614fccecd39", }, { @@ -179415,7 +218275,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "17 | Jungle", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.014Z", + "dateModified": "2026-05-09T17:51:29.217Z", "hashShort": "bd7fe4f800c991be", }, { @@ -179467,7 +218327,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "18 | Jungle Temple", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.013Z", + "dateModified": "2026-05-09T17:51:29.217Z", "hashShort": "28f0751d6aca1b9d", }, { @@ -179515,7 +218375,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "19 | Oasis", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.015Z", + "dateModified": "2026-05-09T17:51:29.218Z", "hashShort": "6da8bebe2a1e981c", }, { @@ -179583,7 +218443,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "20 | Beach", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.016Z", + "dateModified": "2026-05-09T17:51:29.219Z", "hashShort": "42f383434b6f3e47", }, { @@ -179626,7 +218486,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "2 | Colorful Forest", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.016Z", + "dateModified": "2026-05-09T17:51:29.219Z", "hashShort": "a075eb1f2a1071c6", }, { @@ -179728,7 +218588,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "21 | Coral Reef", "dateCreated": null, - "dateModified": "2025-12-20T17:54:49.304Z", + "dateModified": "2026-06-13T23:13:00.373Z", "hashShort": "9b8e7b013ad519bc", }, { @@ -179834,7 +218694,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "22 | Shipwreck", "dateCreated": null, - "dateModified": "2025-12-20T17:54:49.305Z", + "dateModified": "2026-06-13T23:13:00.379Z", "hashShort": "01334138db1fb56f", }, { @@ -179944,7 +218804,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "23 | Atlantis", "dateCreated": null, - "dateModified": "2025-12-20T17:54:49.307Z", + "dateModified": "2026-06-13T23:13:00.368Z", "hashShort": "53f16873646bc534", }, { @@ -179996,7 +218856,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "24 | Palm Beach", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.019Z", + "dateModified": "2026-05-09T17:51:29.222Z", "hashShort": "8a798f4900bbd6bb", }, { @@ -180040,7 +218900,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "25 | Tiki", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.021Z", + "dateModified": "2026-05-09T17:51:29.227Z", "hashShort": "2f8ecb61fcbf6ec2", }, { @@ -180053,18 +218913,22 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` { "Type": "Medium Coins (Default)", "Weight": 25, + "WorldNumber": 1, }, { "Type": "Large Coins (Default)", "Weight": 50, + "WorldNumber": 1, }, { "Type": "Crate (Default)", "Weight": 15, + "WorldNumber": 1, }, { "Type": "Present (Default)", "Weight": 25, + "WorldNumber": 1, }, ], "Settings": { @@ -180084,8 +218948,8 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "3 | Castle", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.025Z", - "hashShort": "5afd8faf9a892a45", + "dateModified": "2026-06-27T16:04:57.726Z", + "hashShort": "d3a350ac77fa1ef1", }, { "category": "World 1", @@ -180097,10 +218961,12 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` { "Type": "Small Coins (Default)", "Weight": 4, + "WorldNumber": 1, }, { "Type": "Medium Coins (Default)", "Weight": 4, + "WorldNumber": 1, }, { "Type": "Large Coins (Default)", @@ -180109,14 +218975,17 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` { "Type": "Crate (Default)", "Weight": 20, + "WorldNumber": 1, }, { "Type": "Present (Default)", "Weight": 15, + "WorldNumber": 1, }, { "Type": "Safe (Default)", "Weight": 5, + "WorldNumber": 1, }, ], "Settings": { @@ -180136,8 +219005,8 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "4 | Green Forest", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.037Z", - "hashShort": "a33476390dc75017", + "dateModified": "2026-06-27T16:04:57.708Z", + "hashShort": "53c219333acb4889", }, { "category": "World 1", @@ -180149,14 +219018,17 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` { "Type": "Medium Coins (Default)", "Weight": 22, + "WorldNumber": 1, }, { "Type": "Large Coins (Default)", "Weight": 16, + "WorldNumber": 1, }, { "Type": "Safe (Default)", "Weight": 6, + "WorldNumber": 1, }, ], "Settings": { @@ -180176,8 +219048,8 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "5 | Autumn", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.048Z", - "hashShort": "bced5f6736271bc6", + "dateModified": "2026-06-27T16:04:57.740Z", + "hashShort": "0ca4875cbef97972", }, { "category": "World 1", @@ -180197,10 +219069,12 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` { "Type": "Large Coins (Default)", "Weight": 5, + "WorldNumber": 1, }, { "Type": "Present (Default)", "Weight": 41, + "WorldNumber": 1, }, ], "Settings": { @@ -180220,8 +219094,8 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "6 | Cherry Blossom", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.052Z", - "hashShort": "3bf80a8492825830", + "dateModified": "2026-06-27T16:04:57.742Z", + "hashShort": "abd8dca072599336", }, { "category": "World 1", @@ -180233,10 +219107,12 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` { "Type": "Small Coins (Default)", "Weight": 7, + "WorldNumber": 1, }, { "Type": "Medium Coins (Default)", "Weight": 7, + "WorldNumber": 1, }, { "Type": "Large Coins (Default)", @@ -180245,14 +219121,17 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` { "Type": "Safe (Default)", "Weight": 5, + "WorldNumber": 1, }, { "Type": "Vault (Default)", "Weight": 3, + "WorldNumber": 1, }, { "Type": "Wheel Barrow (Default)", "Weight": 8, + "WorldNumber": 1, }, ], "Settings": { @@ -180272,8 +219151,8 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "7 | Farm", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.052Z", - "hashShort": "d755e4c586884067", + "dateModified": "2026-06-27T16:04:57.741Z", + "hashShort": "0244826f40a9bbbd", }, { "category": "World 1", @@ -180285,18 +219164,22 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` { "Type": "Small Coins (Default)", "Weight": 9, + "WorldNumber": 1, }, { "Type": "Medium Coins (Default)", "Weight": 7, + "WorldNumber": 1, }, { "Type": "Large Coins (Default)", "Weight": 6, + "WorldNumber": 1, }, { "Type": "Crate (Flower)", "Weight": 5, + "WorldNumber": 1, }, { "Type": "Present (Flower)", @@ -180324,8 +219207,8 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "8 | Backyard", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.693Z", - "hashShort": "527d9b49b77db72c", + "dateModified": "2026-06-27T16:04:57.750Z", + "hashShort": "f01f4edf7a1a6aa3", }, { "category": "World 1", @@ -180337,6 +219220,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` { "Type": "Small Coins (Default)", "Weight": 4, + "WorldNumber": 1, }, { "Type": "Medium Coins (Default)", @@ -180345,10 +219229,12 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` { "Type": "Large Coins (Default)", "Weight": 8, + "WorldNumber": 1, }, { "Type": "Present (Flower)", "Weight": 6, + "WorldNumber": 1, }, { "Type": "Safe (Flower)", @@ -180357,6 +219243,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` { "Type": "Vault (Flower)", "Weight": 5, + "WorldNumber": 1, }, ], "Settings": { @@ -180376,8 +219263,8 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "9 | Misty Falls", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.691Z", - "hashShort": "56583371e85ea547", + "dateModified": "2026-06-27T16:04:57.752Z", + "hashShort": "8ac2302b39e7d386", }, { "category": "World 1", @@ -180424,7 +219311,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "26 | Pirate Cove", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.022Z", + "dateModified": "2026-05-09T17:51:29.229Z", "hashShort": "5af0fc1fd27a3109", }, { @@ -180527,7 +219414,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "29 | Desert Village", "dateCreated": null, - "dateModified": "2025-12-20T17:54:49.317Z", + "dateModified": "2026-06-13T23:13:00.371Z", "hashShort": "df3421d484b7cede", }, { @@ -180634,7 +219521,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "30 | Fossil Digsite", "dateCreated": null, - "dateModified": "2025-12-20T17:54:49.320Z", + "dateModified": "2026-06-13T23:13:00.378Z", "hashShort": "e82130f0ad774708", }, { @@ -180689,7 +219576,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "39 | Ice Rink", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.041Z", + "dateModified": "2026-05-09T17:51:30.277Z", "hashShort": "41f695e47b5ef26b", }, { @@ -180740,7 +219627,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "38 | Icy Peaks", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.039Z", + "dateModified": "2026-05-09T17:51:30.254Z", "hashShort": "7f451a68edb70747", }, { @@ -180787,7 +219674,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "37 | Snow Village", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.036Z", + "dateModified": "2026-05-09T17:51:29.237Z", "hashShort": "471085101cbfbe44", }, { @@ -180854,7 +219741,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "40 | Ski Town", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.040Z", + "dateModified": "2026-05-09T17:51:30.268Z", "hashShort": "59a79014f5886f86", }, { @@ -180902,7 +219789,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "36 | Mountains", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.034Z", + "dateModified": "2026-05-09T17:51:29.236Z", "hashShort": "5114f71299734093", }, { @@ -180958,7 +219845,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "41 | Hot Springs", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.043Z", + "dateModified": "2026-05-09T17:51:30.270Z", "hashShort": "c9a88eeb3a78daf2", }, { @@ -181014,7 +219901,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "27 | Pirate Tavern", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.021Z", + "dateModified": "2026-05-09T17:51:29.228Z", "hashShort": "642719d756f16cf6", }, { @@ -181117,7 +220004,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "28 | Shanty Town", "dateCreated": null, - "dateModified": "2025-12-20T17:54:49.316Z", + "dateModified": "2026-06-13T23:13:00.372Z", "hashShort": "4b2e80fdf9ee96a3", }, { @@ -181219,7 +220106,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "31 | Desert Pyramids", "dateCreated": null, - "dateModified": "2025-12-20T17:54:49.321Z", + "dateModified": "2026-06-13T23:13:00.372Z", "hashShort": "88737be61af71fd9", }, { @@ -181325,7 +220212,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "32 | Red Desert", "dateCreated": null, - "dateModified": "2025-12-20T17:54:49.322Z", + "dateModified": "2026-06-13T23:13:00.367Z", "hashShort": "1a49b34db34d4e23", }, { @@ -181431,7 +220318,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "33 | Wild West", "dateCreated": null, - "dateModified": "2025-12-20T17:54:49.323Z", + "dateModified": "2026-06-13T23:13:00.369Z", "hashShort": "bba5f1bc1aefc20f", }, { @@ -181537,7 +220424,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "34 | Grand Canyons", "dateCreated": null, - "dateModified": "2025-12-20T17:54:49.324Z", + "dateModified": "2026-06-13T23:13:00.364Z", "hashShort": "ac81ac0cfc575723", }, { @@ -181585,7 +220472,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "35 | Safari", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.033Z", + "dateModified": "2026-05-09T17:51:29.235Z", "hashShort": "86be7c01eae4d50e", }, { @@ -181669,7 +220556,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "42 | Fire and Ice", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.042Z", + "dateModified": "2026-05-09T17:51:30.275Z", "hashShort": "9183cf4127033fbc", }, { @@ -181725,7 +220612,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "44 | Obsidian Cave", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.047Z", + "dateModified": "2026-05-09T17:51:30.262Z", "hashShort": "5541ea61547c21dd", }, { @@ -181831,7 +220718,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "45 | Lava Forest", "dateCreated": null, - "dateModified": "2025-12-20T17:54:50.305Z", + "dateModified": "2026-06-13T23:13:00.396Z", "hashShort": "e1af4c1b87a16952", }, { @@ -181883,7 +220770,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "43 | Volcano", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.044Z", + "dateModified": "2026-05-09T17:51:30.281Z", "hashShort": "9407ac4c54d5395b", }, { @@ -182001,7 +220888,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "46 | Underworld", "dateCreated": null, - "dateModified": "2025-12-20T17:54:50.308Z", + "dateModified": "2026-06-13T23:13:00.397Z", "hashShort": "3ed62f0c999c5061", }, { @@ -182107,7 +220994,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "47 | Underworld Bridge", "dateCreated": null, - "dateModified": "2025-12-20T17:54:50.310Z", + "dateModified": "2026-06-13T23:13:00.402Z", "hashShort": "5ac3462fcf2a02d2", }, { @@ -182217,7 +221104,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "48 | Underworld Castle", "dateCreated": null, - "dateModified": "2025-12-20T17:54:50.331Z", + "dateModified": "2026-06-13T23:13:00.400Z", "hashShort": "96fdfbe5719502b7", }, { @@ -182319,7 +221206,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "49 | Metal Dojo", "dateCreated": null, - "dateModified": "2025-12-20T17:54:50.328Z", + "dateModified": "2026-06-13T23:13:00.401Z", "hashShort": "54d8207f85c0f225", }, { @@ -182376,7 +221263,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "50 | Fire Dojo", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.050Z", + "dateModified": "2026-05-09T17:51:30.259Z", "hashShort": "025a39df66d8c212", }, { @@ -182428,7 +221315,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "51 | Samurai Village", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.002Z", + "dateModified": "2026-05-09T17:51:29.158Z", "hashShort": "44eb6b84add71321", }, { @@ -182476,7 +221363,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "52 | Bamboo Forest", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.970Z", + "dateModified": "2026-05-09T17:51:29.161Z", "hashShort": "402721cb5e060a7f", }, { @@ -182524,7 +221411,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "53 | Zen Garden", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.979Z", + "dateModified": "2026-05-09T17:51:29.181Z", "hashShort": "51d07addc3d9797d", }, { @@ -182564,7 +221451,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "54 | Flower Field", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.973Z", + "dateModified": "2026-05-09T17:51:29.175Z", "hashShort": "6f29f30a76c92144", }, { @@ -182612,7 +221499,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "55 | Fairytale Meadows", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.974Z", + "dateModified": "2026-05-09T17:51:29.179Z", "hashShort": "5a74ee881df7e60a", }, { @@ -182660,7 +221547,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "56 | Fairytale Castle", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.972Z", + "dateModified": "2026-05-09T17:51:29.172Z", "hashShort": "a5d5ef4ae20899ef", }, { @@ -182712,7 +221599,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "57 | Royal Kingdom", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.971Z", + "dateModified": "2026-05-09T17:51:29.173Z", "hashShort": "34c405c354371d9b", }, { @@ -182764,7 +221651,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "58 | Fairy Castle", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.992Z", + "dateModified": "2026-05-09T17:51:29.175Z", "hashShort": "fb22ab21229875be", }, { @@ -182817,7 +221704,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "59 | Cozy Village", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.966Z", + "dateModified": "2026-05-09T17:51:29.171Z", "hashShort": "4f4ee7a6448fb751", }, { @@ -182861,7 +221748,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "60 | Rainbow River", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.988Z", + "dateModified": "2026-05-09T17:51:29.174Z", "hashShort": "570ddd15b82765bf", }, { @@ -182916,7 +221803,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "61 | Colorful Mines", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.989Z", + "dateModified": "2026-05-09T17:51:29.168Z", "hashShort": "288c433501e79f27", }, { @@ -182976,7 +221863,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "62 | Colorful Mountains", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.974Z", + "dateModified": "2026-05-09T17:51:29.176Z", "hashShort": "88cd72ebc37f617b", }, { @@ -183051,7 +221938,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "63 | Frost Mountains", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.966Z", + "dateModified": "2026-05-09T17:51:29.168Z", "hashShort": "0e6c62a6e2629222", }, { @@ -183095,7 +221982,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "64 | Ice Sculptures", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.975Z", + "dateModified": "2026-05-09T17:51:29.182Z", "hashShort": "f617f699c3602891", }, { @@ -183147,7 +222034,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "65 | Snowman Town", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.967Z", + "dateModified": "2026-05-09T17:51:29.183Z", "hashShort": "3dac88f719eb1f75", }, { @@ -183203,7 +222090,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "66 | Ice Castle", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.992Z", + "dateModified": "2026-05-09T17:51:29.172Z", "hashShort": "29d70b2f85a12f96", }, { @@ -183255,7 +222142,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "67 | Polar Express", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.990Z", + "dateModified": "2026-05-09T17:51:29.178Z", "hashShort": "74355d98a5e53355", }, { @@ -183311,7 +222198,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "68 | Firefly Cold Forest", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.981Z", + "dateModified": "2026-05-09T17:51:29.181Z", "hashShort": "c224770277f6c494", }, { @@ -183367,7 +222254,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "69 | Golden Road", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.982Z", + "dateModified": "2026-05-09T17:51:29.178Z", "hashShort": "995278f88e0db7cb", }, { @@ -183440,7 +222327,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "70 | No Path Forest", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.980Z", + "dateModified": "2026-05-09T17:51:29.158Z", "hashShort": "a2cff52008d87972", }, { @@ -183496,7 +222383,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "71 | Ancient Ruins", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.978Z", + "dateModified": "2026-05-09T17:51:29.417Z", "hashShort": "77076631e9ee56ee", }, { @@ -183552,7 +222439,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "72 | Runic Altar", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.982Z", + "dateModified": "2026-05-09T17:51:29.336Z", "hashShort": "55cfb6ad8d1f6468", }, { @@ -183608,7 +222495,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "73 | Wizard Tower", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.971Z", + "dateModified": "2026-05-09T17:51:29.159Z", "hashShort": "e875f01cc5122501", }, { @@ -183664,7 +222551,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "74 | Witch Marsh", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.989Z", + "dateModified": "2026-05-09T17:51:29.184Z", "hashShort": "dc9eaba85c5eb8a9", }, { @@ -183720,7 +222607,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "75 | Haunted Forest", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.980Z", + "dateModified": "2026-05-09T17:51:29.186Z", "hashShort": "b20dc9fe3cea05e5", }, { @@ -183764,7 +222651,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "76 | Haunted Graveyard", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.981Z", + "dateModified": "2026-05-09T17:51:29.189Z", "hashShort": "ed1a0d486f7094e0", }, { @@ -183820,7 +222707,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "77 | Haunted Mansion", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.968Z", + "dateModified": "2026-05-09T17:51:29.190Z", "hashShort": "455e83e4e2a567f7", }, { @@ -183876,7 +222763,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "78 | Dungeon Entrance", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.969Z", + "dateModified": "2026-05-09T17:51:29.191Z", "hashShort": "c7a28844801b1e0f", }, { @@ -183932,7 +222819,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "79 | Dungeon", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.970Z", + "dateModified": "2026-05-09T17:51:29.191Z", "hashShort": "fe2ac5552f8a5b18", }, { @@ -183976,7 +222863,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "80 | Treasure Dungeon", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.986Z", + "dateModified": "2026-05-09T17:51:29.193Z", "hashShort": "dbb3f988ab36e770", }, { @@ -184024,7 +222911,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "81 | Empyrean Dungeon", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.975Z", + "dateModified": "2026-05-09T17:51:29.195Z", "hashShort": "558b7a2cd6088d9d", }, { @@ -184080,7 +222967,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "82 | Mythic Dungeon", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.973Z", + "dateModified": "2026-05-09T17:51:29.194Z", "hashShort": "33911027c683102a", }, { @@ -184136,7 +223023,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "83 | Cotton Candy Forest", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.986Z", + "dateModified": "2026-05-09T17:51:29.196Z", "hashShort": "32ef8719c8869872", }, { @@ -184184,7 +223071,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "84 | Gummy Forest", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.991Z", + "dateModified": "2026-05-09T17:51:29.196Z", "hashShort": "1ed7dc12fcdb78c4", }, { @@ -184240,7 +223127,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "85 | Chocolate Waterfall", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.979Z", + "dateModified": "2026-05-09T17:51:29.197Z", "hashShort": "4afdd9caec04a4df", }, { @@ -184296,7 +223183,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "86 | Sweets", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.968Z", + "dateModified": "2026-05-09T17:51:29.198Z", "hashShort": "2ac2ca3912edc5fe", }, { @@ -184352,7 +223239,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "87 | Toys and Blocks", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.984Z", + "dateModified": "2026-05-09T17:51:29.198Z", "hashShort": "6400997bba89a5db", }, { @@ -184403,7 +223290,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "88 | Carnival", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.983Z", + "dateModified": "2026-05-09T17:51:29.201Z", "hashShort": "c34c83d75b84666e", }, { @@ -184459,7 +223346,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "89 | Theme Park", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.215Z", + "dateModified": "2026-05-09T17:51:29.199Z", "hashShort": "2f31af27304ce873", }, { @@ -184503,7 +223390,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "90 | Clouds", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.217Z", + "dateModified": "2026-05-09T17:51:29.202Z", "hashShort": "99cdff17d546b86a", }, { @@ -184559,7 +223446,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "91 | Cloud Garden", "dateCreated": null, - "dateModified": "2025-07-19T17:28:26.999Z", + "dateModified": "2026-05-09T17:51:29.201Z", "hashShort": "99eba49a0a7793ba", }, { @@ -184615,7 +223502,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "92 | Cloud Forest", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.000Z", + "dateModified": "2026-05-09T17:51:29.203Z", "hashShort": "bd8dbede08ad75d5", }, { @@ -184671,7 +223558,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "93 | Cloud Houses", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.001Z", + "dateModified": "2026-05-09T17:51:29.204Z", "hashShort": "75dc66a077fddc5b", }, { @@ -184727,7 +223614,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "94 | Cloud Palace", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.002Z", + "dateModified": "2026-05-09T17:51:29.204Z", "hashShort": "ac2686d41b96d76c", }, { @@ -184787,7 +223674,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "95 | Heaven Gates", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.003Z", + "dateModified": "2026-05-09T17:51:29.207Z", "hashShort": "e78a773ec80c3336", }, { @@ -184827,7 +223714,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "96 | Heaven", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.004Z", + "dateModified": "2026-05-09T17:51:29.206Z", "hashShort": "4e7b21d67d50b3eb", }, { @@ -184883,7 +223770,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "97 | Heaven Golden Castle", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.007Z", + "dateModified": "2026-05-09T17:51:29.205Z", "hashShort": "c4d31c1ed26d4047", }, { @@ -184939,7 +223826,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "98 | Colorful Clouds", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.006Z", + "dateModified": "2026-05-09T17:51:29.205Z", "hashShort": "38d37275c3bfd2f9", }, { @@ -184998,7 +223885,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "99 | Rainbow Road", "dateCreated": null, - "dateModified": "2025-07-19T17:28:27.007Z", + "dateModified": "2026-05-09T17:51:29.210Z", "hashShort": "2bdcc52b9f364915", }, { @@ -193207,7 +232094,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "240 | Fantasy Spawn", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.686Z", + "dateModified": "2026-05-09T17:51:30.297Z", "hashShort": "e35656475ddf5e45", }, { @@ -193247,7 +232134,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "241 | Flora Falls", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.674Z", + "dateModified": "2026-05-09T17:51:30.303Z", "hashShort": "1257da13ee84497e", }, { @@ -193291,7 +232178,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "242 | Lantern Forest", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.675Z", + "dateModified": "2026-05-09T17:51:30.303Z", "hashShort": "4b1893db195cdca1", }, { @@ -193343,7 +232230,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "243 | Honeycomb Hollow", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.934Z", + "dateModified": "2026-05-09T17:51:30.305Z", "hashShort": "4befb48e5ba4d88b", }, { @@ -193383,7 +232270,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "244 | Fairy Glade", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.887Z", + "dateModified": "2026-05-09T17:51:30.304Z", "hashShort": "5695367a82621726", }, { @@ -193427,7 +232314,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "245 | Windmill Point", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.694Z", + "dateModified": "2026-05-09T17:51:30.307Z", "hashShort": "ad1cc6c60415181b", }, { @@ -193475,7 +232362,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "246 | Radiant Runestones", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.694Z", + "dateModified": "2026-05-09T17:51:30.306Z", "hashShort": "85da151213335352", }, { @@ -193527,7 +232414,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "247 | Fogbound Forest", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.695Z", + "dateModified": "2026-05-09T17:51:30.306Z", "hashShort": "6d2f60bef6b15dde", }, { @@ -193579,7 +232466,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "248 | Rune Graveyard", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.696Z", + "dateModified": "2026-05-09T17:51:30.308Z", "hashShort": "7b467a93655d3889", }, { @@ -193619,7 +232506,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "249 | Halo Spires", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.697Z", + "dateModified": "2026-05-09T17:51:30.310Z", "hashShort": "524fe215f2ed0e72", }, { @@ -193702,7 +232589,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "250 | Twilight Grove", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.698Z", + "dateModified": "2026-05-09T17:51:30.309Z", "hashShort": "9cfd769cc1fb01a9", }, { @@ -193801,7 +232688,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "251 | Moonlight Ridge", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.704Z", + "dateModified": "2026-05-09T17:51:30.309Z", "hashShort": "5e1b69aff153f756", }, { @@ -193896,7 +232783,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "252 | Starroot Highlands", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.704Z", + "dateModified": "2026-05-09T17:51:30.310Z", "hashShort": "23c9539380106acd", }, { @@ -193940,7 +232827,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "253 | Aether Archways", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.700Z", + "dateModified": "2026-05-09T17:51:30.311Z", "hashShort": "e0260fb0f1f4fed5", }, { @@ -193984,7 +232871,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "254 | Celestial Watchtower", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.700Z", + "dateModified": "2026-05-09T17:51:30.313Z", "hashShort": "613ea8d68e53ee8d", }, { @@ -194032,7 +232919,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "255 | Whispering Hills", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.705Z", + "dateModified": "2026-05-09T17:51:30.312Z", "hashShort": "4011376a052baab6", }, { @@ -194076,7 +232963,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "256 | Runestone Bluff", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.702Z", + "dateModified": "2026-05-09T17:51:30.315Z", "hashShort": "924dc57ad5b31cbb", }, { @@ -194112,7 +232999,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "257 | Totem Trail", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.705Z", + "dateModified": "2026-05-09T17:51:30.313Z", "hashShort": "5dc77133715d2ad7", }, { @@ -194160,7 +233047,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "258 | Wyrmwatch Ridge", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.706Z", + "dateModified": "2026-05-09T17:51:30.314Z", "hashShort": "566dacea21281841", }, { @@ -194200,7 +233087,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "259 | Highcliff Sanctuary", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.707Z", + "dateModified": "2026-05-09T17:51:30.317Z", "hashShort": "672f903a9c57cfa2", }, { @@ -194248,7 +233135,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "260 | Ember Cliffs", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.708Z", + "dateModified": "2026-05-09T17:51:30.317Z", "hashShort": "1e63d225caf97c5a", }, { @@ -194296,7 +233183,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "261 | Charred Canyon", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.709Z", + "dateModified": "2026-05-09T17:51:30.319Z", "hashShort": "0de97236f39bf8ac", }, { @@ -194332,7 +233219,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "262 | Ember Chasm", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.708Z", + "dateModified": "2026-05-09T17:51:30.318Z", "hashShort": "318f4a07b309030f", }, { @@ -194380,7 +233267,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "263 | Molten Nest", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.709Z", + "dateModified": "2026-05-09T17:51:30.319Z", "hashShort": "4b4cfc00071b5cb7", }, { @@ -194420,7 +233307,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "264 | Obsidian Spire", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.710Z", + "dateModified": "2026-05-09T17:51:30.320Z", "hashShort": "23381ff4d31134e4", }, { @@ -194468,7 +233355,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "265 | Crystalfall Hollow", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.710Z", + "dateModified": "2026-05-09T17:51:30.321Z", "hashShort": "86e15d2c9b3d0dd5", }, { @@ -194516,7 +233403,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "266 | Glimmer Grottos", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.712Z", + "dateModified": "2026-05-09T17:51:30.321Z", "hashShort": "151a954c64ce18ac", }, { @@ -194552,7 +233439,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "267 | Mirror Tome Path", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.713Z", + "dateModified": "2026-05-09T17:51:30.322Z", "hashShort": "bc5066b4f34865a7", }, { @@ -194600,7 +233487,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "268 | Scribes Terrace", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.713Z", + "dateModified": "2026-05-09T17:51:30.322Z", "hashShort": "6cca5fe0ecdd3ce1", }, { @@ -194640,7 +233527,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "269 | Archivists Tower", "dateCreated": "2025-07-05T23:24:45.945Z", - "dateModified": "2025-07-19T17:28:27.714Z", + "dateModified": "2026-05-09T17:51:30.323Z", "hashShort": "02c2b9cae072c7a1", }, { @@ -194676,7 +233563,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "272 | Faerie Hex Glade", "dateCreated": "2025-07-19T17:28:27.717Z", - "dateModified": "2025-07-19T17:28:27.717Z", + "dateModified": "2026-05-09T17:51:30.324Z", "hashShort": "8192dc3bce5e48a1", }, { @@ -194724,7 +233611,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "270 | Mystmire Bloom", "dateCreated": "2025-07-19T17:28:27.714Z", - "dateModified": "2025-07-19T17:28:27.714Z", + "dateModified": "2026-05-09T17:51:30.323Z", "hashShort": "ec024d1f3b9c1b02", }, { @@ -194764,7 +233651,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "274 | Toadstool Throne", "dateCreated": "2025-07-19T17:28:27.719Z", - "dateModified": "2025-07-19T17:28:27.719Z", + "dateModified": "2026-05-09T17:51:30.330Z", "hashShort": "d4bcdada5c4b4f88", }, { @@ -194812,7 +233699,7 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "273 | Bloomcourt Terrace", "dateCreated": "2025-07-19T17:28:27.718Z", - "dateModified": "2025-07-19T17:28:27.718Z", + "dateModified": "2026-05-09T17:51:30.325Z", "hashShort": "6a0a656285452141", }, { @@ -194860,9 +233747,269 @@ exports[`Pet Simulator Public Live API Test Zones shape 1`] = ` }, "configName": "271 | Lotus Fenlight", "dateCreated": "2025-07-19T17:28:27.717Z", - "dateModified": "2025-07-19T17:28:27.717Z", + "dateModified": "2026-05-09T17:51:30.324Z", "hashShort": "88b81d42f324570c", }, + { + "category": "Update 77", + "collection": "Zones", + "configData": { + "Breakables": { + "Main": { + "Data": [ + { + "Type": "Small Coins (Fantasy)", + "Weight": 1, + }, + { + "Type": "Medium Coins (Fantasy)", + "Weight": 2, + }, + { + "Type": "Large Coins (Fantasy)", + "Weight": 2, + }, + { + "Type": "Crate (Veilwood Hollow)", + "Weight": 4, + }, + { + "Type": "Safe (Veilwood Hollow)", + "Weight": 3, + }, + { + "Type": "Present (Veilwood Hollow)", + "Weight": 2, + }, + ], + "Settings": { + "Maximum": 35, + "RespawnTime": 0.05, + }, + }, + }, + "CannonGroupId": 8, + "Currency": "FantasyCoins", + "ExtraDropTable": null, + "MaximumAvailableEgg": 289, + "TeleportToZoneOnFall": true, + "WorldNumber": 4, + "ZoneName": "Wraithcap Grove", + "ZoneNumber": 277, + }, + "configName": "277 | Wraithcap Grove", + "dateCreated": "2026-05-02T17:30:29.692Z", + "dateModified": "2026-05-09T17:51:30.332Z", + "hashShort": "ccfee79d86a18a89", + }, + { + "category": "Update 77", + "collection": "Zones", + "configData": { + "Breakables": { + "Main": { + "Data": [ + { + "Type": "Small Coins (Fantasy)", + "Weight": 2, + }, + { + "Type": "Medium Coins (Fantasy)", + "Weight": 3, + }, + { + "Type": "Large Coins (Fantasy)", + "Weight": 3, + }, + { + "Type": "Present (Veilwood Hollow)", + "Weight": 8, + }, + { + "Type": "Crate (Veilwood Hollow)", + "Weight": 6, + }, + { + "Type": "Safe (Veilwood Hollow)", + "Weight": 2, + }, + ], + "Settings": { + "Maximum": 35, + "RespawnTime": 0.05, + }, + }, + }, + "CannonGroupId": 8, + "Currency": "FantasyCoins", + "ExtraDropTable": null, + "MaximumAvailableEgg": 288, + "TeleportToZoneOnFall": true, + "WorldNumber": 4, + "ZoneName": "Duskwillow Path", + "ZoneNumber": 276, + }, + "configName": "276 | Duskwillow Path", + "dateCreated": "2026-05-02T17:30:29.695Z", + "dateModified": "2026-05-09T17:51:30.331Z", + "hashShort": "d6033cb560e0e9ae", + }, + { + "category": "Update 77", + "collection": "Zones", + "configData": { + "Breakables": { + "Main": { + "Data": [ + { + "Type": "Small Coins (Fantasy)", + "Weight": 4, + }, + { + "Type": "Medium Coins (Fantasy)", + "Weight": 4, + }, + { + "Type": "Large Coins (Fantasy)", + "Weight": 4, + }, + { + "Type": "Crate (Veilwood Hollow)", + "Weight": 10, + }, + { + "Type": "Present (Veilwood Hollow)", + "Weight": 8, + }, + ], + "Settings": { + "Maximum": 35, + "RespawnTime": 0.05, + }, + }, + }, + "CannonGroupId": 8, + "Currency": "FantasyCoins", + "ExtraDropTable": null, + "MaximumAvailableEgg": 287, + "TeleportToZoneOnFall": true, + "WorldNumber": 4, + "ZoneName": "Bloomfade Crossing", + "ZoneNumber": 275, + }, + "configName": "275 | Bloomfade Crossing", + "dateCreated": "2026-05-02T17:30:29.698Z", + "dateModified": "2026-05-09T17:51:30.331Z", + "hashShort": "d69807a37371d0e3", + }, + { + "category": "Update 77", + "collection": "Zones", + "configData": { + "Breakables": { + "Main": { + "Data": [ + { + "Type": "Medium Coins (Fantasy)", + "Weight": 1, + }, + { + "Type": "Large Coins (Fantasy)", + "Weight": 2, + }, + { + "Type": "Crate (Veilwood Hollow)", + "Weight": 3, + }, + { + "Type": "Safe (Veilwood Hollow)", + "Weight": 3, + }, + { + "Type": "Vault (Veilwood Hollow)", + "Weight": 2, + }, + { + "Type": "Present (Veilwood Hollow)", + "Weight": 1, + }, + ], + "Settings": { + "Maximum": 35, + "RespawnTime": 0.05, + }, + }, + }, + "CannonGroupId": 8, + "Currency": "FantasyCoins", + "ExtraDropTable": null, + "MaximumAvailableEgg": 291, + "TeleportToZoneOnFall": true, + "WorldNumber": 4, + "ZoneName": "Hollow Veil Castle", + "ZoneNumber": 279, + }, + "configName": "279 | Hollow Veil Castle", + "dateCreated": "2026-05-02T17:30:29.708Z", + "dateModified": "2026-05-09T17:51:30.333Z", + "hashShort": "93a0f45a788b3388", + }, + { + "category": "Update 77", + "collection": "Zones", + "configData": { + "Breakables": { + "Main": { + "Data": [ + { + "Type": "Small Coins (Fantasy)", + "Weight": 1, + }, + { + "Type": "Medium Coins (Fantasy)", + "Weight": 2, + }, + { + "Type": "Large Coins (Fantasy)", + "Weight": 3, + }, + { + "Type": "Crate (Veilwood Hollow)", + "Weight": 2, + }, + { + "Type": "Safe (Veilwood Hollow)", + "Weight": 4, + }, + { + "Type": "Vault (Veilwood Hollow)", + "Weight": 3, + }, + { + "Type": "Present (Veilwood Hollow)", + "Weight": 1, + }, + ], + "Settings": { + "Maximum": 35, + "RespawnTime": 0.05, + }, + }, + }, + "CannonGroupId": 8, + "Currency": "FantasyCoins", + "ExtraDropTable": null, + "MaximumAvailableEgg": 290, + "TeleportToZoneOnFall": true, + "WorldNumber": 4, + "ZoneName": "Veilroot Depths", + "ZoneNumber": 278, + }, + "configName": "278 | Veilroot Depths", + "dateCreated": "2026-05-02T17:30:29.712Z", + "dateModified": "2026-05-09T17:51:30.332Z", + "hashShort": "01bc77b7afe709f9", + }, ], "status": "ok", } diff --git a/src/__tests__/ps99-api-live.ts b/src/__tests__/ps99-api-live.ts index e673a0c..39b6862 100644 --- a/src/__tests__/ps99-api-live.ts +++ b/src/__tests__/ps99-api-live.ts @@ -34,6 +34,11 @@ describe("Pet Simulator Public Live API Test", () => { expect(results).toMatchSnapshot(); }); + test("CardItems shape", async () => { + const results = await api.getCollection("CardItems"); + expect(results).toMatchSnapshot(); + }); + test("Charms shape", async () => { const results = await api.getCollection("Charms"); expect(results).toMatchSnapshot(); diff --git a/src/request-client/axios.ts b/src/request-client/axios.ts index 66a1b00..29aba5c 100644 --- a/src/request-client/axios.ts +++ b/src/request-client/axios.ts @@ -12,8 +12,12 @@ export function getAxiosRequest(instance?: AxiosInstance): RequestClient { if (isAxiosError<{ message?: string }>(e)) { const message: string = e?.response?.data?.message || e.message; const newError = new Error(`${options.method} ${options.url}: ${message}`); - // Attach original response/status for consumers - (newError as any).response = e.response; + // Attach safe serializable subset — avoid circular refs from ClientRequest/Socket + (newError as any).response = e.response ? { + status: e.response.status, + statusText: e.response.statusText, + data: e.response.data, + } : undefined; (newError as any).status = e.response?.status; throw newError; } diff --git a/src/responses/collection/card-item.ts b/src/responses/collection/card-item.ts new file mode 100644 index 0000000..349b020 --- /dev/null +++ b/src/responses/collection/card-item.ts @@ -0,0 +1,27 @@ +import { CollectionData } from "./collection-data"; + +export type CardItemData = CollectionData<"CardItems", CardItemConfigData>; + +export interface CardItemConfigData { + DisplayName: string; + Desc: string; + Icon: string; + GoldIcon?: string; + Rarity: CardItemRarity; + AssociatedPetId: string; + Tradable?: boolean; + titanic?: boolean; +} + +export interface CardItemRarity { + RarityNumber: number; + Lootbag: unknown; + _id: string; + Color: unknown; + DisplayName: string; + Message: unknown; + ItemSlot: unknown; + Gradient: unknown; + Announce: boolean; + _script: unknown; +} diff --git a/src/responses/collection/index.ts b/src/responses/collection/index.ts index 953980e..08ffcda 100644 --- a/src/responses/collection/index.ts +++ b/src/responses/collection/index.ts @@ -1,6 +1,7 @@ import { AchievementData } from "./achievement"; export * from "./collection-data"; import { BoostData } from "./boost"; +import { CardItemData } from "./card-item"; import { BoothData } from "./booth"; import { BoxData } from "./box"; import { BuffData } from "./buff"; @@ -37,6 +38,7 @@ import { ZoneData } from "./zone"; export type Collections = | AchievementData | BoostData + | CardItemData | BoothData | BoxData | BuffData From 365231d461351e8e89ffc5c33b4e4638b9867aff Mon Sep 17 00:00:00 2001 From: Joseph Lawson Date: Sun, 28 Jun 2026 19:52:27 -0400 Subject: [PATCH 2/2] fix: latest snapshot --- .../__snapshots__/ps99-api-live.ts.snap | 18034 +++++----------- src/__tests__/ps99-api-changes.ts | 10 + src/__tests__/ps99-api-live.ts | 18 +- 3 files changed, 5658 insertions(+), 12404 deletions(-) diff --git a/src/__tests__/__snapshots__/ps99-api-live.ts.snap b/src/__tests__/__snapshots__/ps99-api-live.ts.snap index f78e25a..df74e9b 100644 --- a/src/__tests__/__snapshots__/ps99-api-live.ts.snap +++ b/src/__tests__/__snapshots__/ps99-api-live.ts.snap @@ -7177,15 +7177,32 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` "collection": "Buffs", "configData": { "AssociatedItemClass": "Misc", - "AssociatedItemID": "Ultra Rng Chest V2 Luck", - "DisplayName": "Ultra RNG Chest Luck", + "AssociatedItemID": "Mega Lucky Dice V2", + "DisplayName": "Mega Lucky Dice", "IgnoreInstancePause": true, - "Length": 120, + "Length": 1, + "StackMode": true, }, - "configName": "Buff | Ultra Rng Chest V2 Luck", - "dateCreated": "2026-05-09T17:52:38.861Z", - "dateModified": "2026-06-27T16:04:50.139Z", - "hashShort": "3ceb261d32e4fb76", + "configName": "Buff | Mega Lucky Dice V2", + "dateCreated": "2026-05-09T17:52:38.862Z", + "dateModified": "2026-06-27T16:04:50.131Z", + "hashShort": "7c0031bba7760b97", + }, + { + "category": "RNG", + "collection": "Buffs", + "configData": { + "AssociatedItemClass": "Misc", + "AssociatedItemID": "Mega Lucky Dice II V2", + "DisplayName": "Mega Lucky Dice II", + "IgnoreInstancePause": true, + "Length": 1, + "StackMode": true, + }, + "configName": "Buff | Mega Lucky Dice II V2", + "dateCreated": "2026-05-09T17:52:38.873Z", + "dateModified": "2026-06-27T16:04:50.138Z", + "hashShort": "aff64d1ce90d2682", }, { "category": "RNG", @@ -7222,32 +7239,15 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` "collection": "Buffs", "configData": { "AssociatedItemClass": "Misc", - "AssociatedItemID": "Mega Lucky Dice II V2", - "DisplayName": "Mega Lucky Dice II", - "IgnoreInstancePause": true, - "Length": 1, - "StackMode": true, - }, - "configName": "Buff | Mega Lucky Dice II V2", - "dateCreated": "2026-05-09T17:52:38.873Z", - "dateModified": "2026-06-27T16:04:50.138Z", - "hashShort": "aff64d1ce90d2682", - }, - { - "category": "RNG", - "collection": "Buffs", - "configData": { - "AssociatedItemClass": "Misc", - "AssociatedItemID": "Mega Lucky Dice V2", - "DisplayName": "Mega Lucky Dice", + "AssociatedItemID": "Ultra Rng Chest V2 Luck", + "DisplayName": "Ultra RNG Chest Luck", "IgnoreInstancePause": true, - "Length": 1, - "StackMode": true, + "Length": 120, }, - "configName": "Buff | Mega Lucky Dice V2", - "dateCreated": "2026-05-09T17:52:38.862Z", - "dateModified": "2026-06-27T16:04:50.131Z", - "hashShort": "7c0031bba7760b97", + "configName": "Buff | Ultra Rng Chest V2 Luck", + "dateCreated": "2026-05-09T17:52:38.861Z", + "dateModified": "2026-06-27T16:04:50.139Z", + "hashShort": "3ceb261d32e4fb76", }, { "category": "RNG", @@ -7269,30 +7269,30 @@ exports[`Pet Simulator Public Live API Test Buffs shape 1`] = ` "collection": "Buffs", "configData": { "AssociatedItemClass": "Misc", - "AssociatedItemID": "Lucky Dice III V2", - "DisplayName": "Lucky Dice III", + "AssociatedItemID": "Fire Dice V2", + "DisplayName": "Fire Dice", "IgnoreInstancePause": true, - "Length": 300, + "Length": 60, }, - "configName": "Buff | Lucky Dice III V2", + "configName": "Buff | Fire Dice V2", "dateCreated": "2026-05-16T16:39:40.328Z", "dateModified": "2026-06-27T16:04:50.140Z", - "hashShort": "4fff145448bea107", + "hashShort": "a337327df035a111", }, { "category": "RNG", "collection": "Buffs", "configData": { "AssociatedItemClass": "Misc", - "AssociatedItemID": "Fire Dice V2", - "DisplayName": "Fire Dice", + "AssociatedItemID": "Lucky Dice III V2", + "DisplayName": "Lucky Dice III", "IgnoreInstancePause": true, - "Length": 60, + "Length": 300, }, - "configName": "Buff | Fire Dice V2", + "configName": "Buff | Lucky Dice III V2", "dateCreated": "2026-05-16T16:39:40.328Z", "dateModified": "2026-06-27T16:04:50.140Z", - "hashShort": "a337327df035a111", + "hashShort": "4fff145448bea107", }, { "category": "RNG", @@ -11701,14 +11701,14 @@ exports[`Pet Simulator Public Live API Test Currency shape 1`] = ` "configData": { "BagTiers": [ { - "image": "rbxassetid://80803201706121", + "image": "rbxassetid://88383770403167", "value": 0, }, ], "Desc": "AH YEET!", - "DisplayName": "Soccer Orbs", + "DisplayName": "Soccer Coins", "IsWorldCurrency": false, - "MaxAmount": 1000000, + "MaxAmount": 5000000000, "Rarity": { "Announce": false, "Color": null, @@ -11724,22 +11724,22 @@ exports[`Pet Simulator Public Live API Test Currency shape 1`] = ` "Tiers": [ { "Order": 1, - "imageOutline": "rbxassetid://80803201706121", + "imageOutline": "rbxassetid://88383770403167", "isBottom": true, - "orbImage": "rbxassetid://80803201706121", + "orbImage": "rbxassetid://114806588132030", "textColor": null, - "tierName": "Soccer Orbs", - "tinyImage": "rbxassetid://80803201706121", + "tierName": "Soccer Coins", + "tinyImage": "rbxassetid://0", "value": 1, }, ], "Tradable": false, - "_index": 33, + "_index": 32, }, - "configName": "Currency | SoccerOrbs", - "dateCreated": "2026-06-27T16:06:50.645Z", - "dateModified": "2026-06-27T16:06:50.645Z", - "hashShort": "c7e436d04ba4e217", + "configName": "Currency | SoccerCoins", + "dateCreated": "2026-06-27T16:06:50.639Z", + "dateModified": "2026-06-27T16:06:50.639Z", + "hashShort": "6614895469ab13d0", }, { "category": "Currency", @@ -11747,14 +11747,14 @@ exports[`Pet Simulator Public Live API Test Currency shape 1`] = ` "configData": { "BagTiers": [ { - "image": "rbxassetid://88383770403167", + "image": "rbxassetid://80803201706121", "value": 0, }, ], "Desc": "AH YEET!", - "DisplayName": "Soccer Coins", + "DisplayName": "Soccer Orbs", "IsWorldCurrency": false, - "MaxAmount": 5000000000, + "MaxAmount": 1000000, "Rarity": { "Announce": false, "Color": null, @@ -11770,22 +11770,22 @@ exports[`Pet Simulator Public Live API Test Currency shape 1`] = ` "Tiers": [ { "Order": 1, - "imageOutline": "rbxassetid://88383770403167", + "imageOutline": "rbxassetid://80803201706121", "isBottom": true, - "orbImage": "rbxassetid://114806588132030", + "orbImage": "rbxassetid://80803201706121", "textColor": null, - "tierName": "Soccer Coins", - "tinyImage": "rbxassetid://0", + "tierName": "Soccer Orbs", + "tinyImage": "rbxassetid://80803201706121", "value": 1, }, ], "Tradable": false, - "_index": 32, + "_index": 33, }, - "configName": "Currency | SoccerCoins", - "dateCreated": "2026-06-27T16:06:50.639Z", - "dateModified": "2026-06-27T16:06:50.639Z", - "hashShort": "6614895469ab13d0", + "configName": "Currency | SoccerOrbs", + "dateCreated": "2026-06-27T16:06:50.645Z", + "dateModified": "2026-06-27T16:06:50.645Z", + "hashShort": "c7e436d04ba4e217", }, ], "status": "ok", @@ -48642,134 +48642,6 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "dateModified": "2026-04-25T17:31:19.618Z", "hashShort": "5eb2020058b87d22", }, - { - "category": "Spring", - "collection": "Eggs", - "configData": { - "currency": "SpringCoins", - "goldChance": 5, - "icon": "rbxassetid://137841732368903", - "isCustomEgg": true, - "name": "Spring Egg", - "oddsFFlags": { - "Huge Spring Elephant": "Easter2026Egg7HugeButterflyMult", - }, - "overrideCost": 10000, - "pets": [ - [ - "Egg Piggy", - 60, - ], - [ - "Spring Elephant", - 25, - ], - [ - "Lamb Wolf", - 10, - ], - [ - "Garden Goblin", - 4.9996, - ], - [ - "Huge Spring Elephant", - 0.0004, - "Insane", - ], - ], - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - "shinyChance": 2, - }, - "configName": "Spring Egg 7", - "dateCreated": "2026-04-25T17:31:19.605Z", - "dateModified": "2026-04-25T17:31:19.605Z", - "hashShort": "e21b71e9aabee5f4", - }, - { - "category": "Spring", - "collection": "Eggs", - "configData": { - "currency": "SpringCoins", - "goldChance": 5, - "icon": "rbxassetid://137841732368903", - "isCustomEgg": true, - "name": "Spring Egg", - "oddsFFlags": { - "Bloom Dominus": "Easter2026Egg8RareMult", - "Garden Goblin": "Easter2026Egg8RareMult", - "Gargantuan Bloom Dominus": "Easter2026Egg8GargantuanMult", - "Huge Bloom Dominus": "Easter2026Egg8HugeDawnMult", - "Titanic Garden Goblin": "Easter2026Egg8TitanicMult", - }, - "overrideCost": 20000, - "pets": [ - [ - "Spring Elephant", - 95, - ], - [ - "Lamb Wolf", - 4.9469975, - ], - [ - "Garden Goblin", - 0.008, - "Nice", - ], - [ - "Bloom Dominus", - 0.002, - "Insane", - ], - [ - "Huge Bloom Dominus", - 0.0004, - "Insane", - ], - [ - "Titanic Garden Goblin", - 0.000004, - "Insane", - ], - [ - "Gargantuan Bloom Dominus", - 8e-8, - "Insane", - ], - ], - "rainbowChance": 2, - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - "shinyChance": 2, - }, - "configName": "Spring Egg 8", - "dateCreated": "2026-04-25T17:31:19.609Z", - "dateModified": "2026-04-25T17:31:19.609Z", - "hashShort": "71ac6a97afcd1ecc", - }, { "category": "Spring", "collection": "Eggs", @@ -48822,6 +48694,134 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "dateModified": "2026-04-25T17:31:19.602Z", "hashShort": "39d4cd3c713ed528", }, + { + "category": "Spring", + "collection": "Eggs", + "configData": { + "currency": "SpringCoins", + "goldChance": 5, + "icon": "rbxassetid://137841732368903", + "isCustomEgg": true, + "name": "Spring Egg", + "oddsFFlags": { + "Huge Spring Elephant": "Easter2026Egg7HugeButterflyMult", + }, + "overrideCost": 10000, + "pets": [ + [ + "Egg Piggy", + 60, + ], + [ + "Spring Elephant", + 25, + ], + [ + "Lamb Wolf", + 10, + ], + [ + "Garden Goblin", + 4.9996, + ], + [ + "Huge Spring Elephant", + 0.0004, + "Insane", + ], + ], + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + "shinyChance": 2, + }, + "configName": "Spring Egg 7", + "dateCreated": "2026-04-25T17:31:19.605Z", + "dateModified": "2026-04-25T17:31:19.605Z", + "hashShort": "e21b71e9aabee5f4", + }, + { + "category": "Spring", + "collection": "Eggs", + "configData": { + "currency": "SpringCoins", + "goldChance": 5, + "icon": "rbxassetid://137841732368903", + "isCustomEgg": true, + "name": "Spring Egg", + "oddsFFlags": { + "Bloom Dominus": "Easter2026Egg8RareMult", + "Garden Goblin": "Easter2026Egg8RareMult", + "Gargantuan Bloom Dominus": "Easter2026Egg8GargantuanMult", + "Huge Bloom Dominus": "Easter2026Egg8HugeDawnMult", + "Titanic Garden Goblin": "Easter2026Egg8TitanicMult", + }, + "overrideCost": 20000, + "pets": [ + [ + "Spring Elephant", + 95, + ], + [ + "Lamb Wolf", + 4.9469975, + ], + [ + "Garden Goblin", + 0.008, + "Nice", + ], + [ + "Bloom Dominus", + 0.002, + "Insane", + ], + [ + "Huge Bloom Dominus", + 0.0004, + "Insane", + ], + [ + "Titanic Garden Goblin", + 0.000004, + "Insane", + ], + [ + "Gargantuan Bloom Dominus", + 8e-8, + "Insane", + ], + ], + "rainbowChance": 2, + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + "shinyChance": 2, + }, + "configName": "Spring Egg 8", + "dateCreated": "2026-04-25T17:31:19.609Z", + "dateModified": "2026-04-25T17:31:19.609Z", + "hashShort": "71ac6a97afcd1ecc", + }, { "category": "Other", "collection": "Eggs", @@ -48917,6 +48917,37 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "dateModified": "2026-05-02T17:32:46.284Z", "hashShort": "a805860b5850f88a", }, + { + "category": "Update 77", + "collection": "Eggs", + "configData": { + "currency": "FantasyCoins", + "eggNumber": 287, + "goldenThumbnail": "rbxassetid://133877766154330", + "icon": "rbxassetid://105207930092251", + "name": "Bloomfade Egg", + "pets": [ + [ + "Jackalope", + 90, + ], + [ + "Caterpillar", + 9, + ], + [ + "Mushroom Pixie", + 1, + "Nice", + ], + ], + "worldNumber": 4, + }, + "configName": "287 | Bloomfade Egg", + "dateCreated": "2026-05-02T17:32:49.102Z", + "dateModified": "2026-05-02T17:32:49.102Z", + "hashShort": "eae1238d6912f41c", + }, { "category": "Update 77", "collection": "Eggs", @@ -48948,6 +48979,42 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "dateModified": "2026-05-02T17:32:49.091Z", "hashShort": "8541fa98f25e469b", }, + { + "category": "Update 77", + "collection": "Eggs", + "configData": { + "currency": "FantasyCoins", + "eggNumber": 289, + "goldenThumbnail": "rbxassetid://133877766154330", + "icon": "rbxassetid://105207930092251", + "name": "Wraithcap Egg", + "pets": [ + [ + "Mushroom Pixie", + 90, + ], + [ + "Crystal Axolotl", + 9, + ], + [ + "Wisp Griffin", + 1, + "Nice", + ], + [ + "Ruinous Angelus", + 0.1, + "Great", + ], + ], + "worldNumber": 4, + }, + "configName": "289 | Wraithcap Egg", + "dateCreated": "2026-05-02T17:32:49.105Z", + "dateModified": "2026-05-02T17:32:49.105Z", + "hashShort": "d71a2c5f9da99772", + }, { "category": "Update 77", "collection": "Eggs", @@ -49000,73 +49067,6 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "dateModified": "2026-05-02T17:32:49.100Z", "hashShort": "27b6e856b552489a", }, - { - "category": "Update 77", - "collection": "Eggs", - "configData": { - "currency": "FantasyCoins", - "eggNumber": 287, - "goldenThumbnail": "rbxassetid://133877766154330", - "icon": "rbxassetid://105207930092251", - "name": "Bloomfade Egg", - "pets": [ - [ - "Jackalope", - 90, - ], - [ - "Caterpillar", - 9, - ], - [ - "Mushroom Pixie", - 1, - "Nice", - ], - ], - "worldNumber": 4, - }, - "configName": "287 | Bloomfade Egg", - "dateCreated": "2026-05-02T17:32:49.102Z", - "dateModified": "2026-05-02T17:32:49.102Z", - "hashShort": "eae1238d6912f41c", - }, - { - "category": "Update 77", - "collection": "Eggs", - "configData": { - "currency": "FantasyCoins", - "eggNumber": 289, - "goldenThumbnail": "rbxassetid://133877766154330", - "icon": "rbxassetid://105207930092251", - "name": "Wraithcap Egg", - "pets": [ - [ - "Mushroom Pixie", - 90, - ], - [ - "Crystal Axolotl", - 9, - ], - [ - "Wisp Griffin", - 1, - "Nice", - ], - [ - "Ruinous Angelus", - 0.1, - "Great", - ], - ], - "worldNumber": 4, - }, - "configName": "289 | Wraithcap Egg", - "dateCreated": "2026-05-02T17:32:49.105Z", - "dateModified": "2026-05-02T17:32:49.105Z", - "hashShort": "d71a2c5f9da99772", - }, { "category": "Update 77", "collection": "Eggs", @@ -49227,32 +49227,28 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "goldenEgg": null, "icon": "", "isCustomEgg": true, - "name": "Backrooms Scribble Egg 30x", - "overrideCost": 300, + "name": "Backrooms Smile Egg 3x", + "overrideCost": 200, "pets": [ [ - "Faceling Raccoon", - 82.463, + "Daydream Fox", + 69.985, ], [ - "Tripod Octopus", - 17, + "Skin Stealer", + 29, ], [ - "Piggy Piggy", - 0.4, + "Faceling Raccoon", + 0.9, ], [ - "Omen", + "Tripod Octopus", 0.1, ], [ - "Partygoer Cat", - 0.03, - ], - [ - "Guest 666", - 0.007, + "Piggy Piggy", + 0.015, ], ], "rarity": { @@ -49268,10 +49264,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "3 | Backrooms Scribble Egg 30x", - "dateCreated": "2026-06-13T23:13:53.553Z", - "dateModified": "2026-06-20T16:08:52.884Z", - "hashShort": "ab1f25402b88621a", + "configName": "1 | Backrooms Smile Egg 3x", + "dateCreated": "2026-06-13T23:13:53.554Z", + "dateModified": "2026-06-20T16:08:52.891Z", + "hashShort": "5c3780cb2c8073fd", }, { "category": "Backrooms Update 2", @@ -49282,28 +49278,32 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "goldenEgg": null, "icon": "", "isCustomEgg": true, - "name": "Backrooms Smile Egg 3x", - "overrideCost": 200, + "name": "Backrooms Scribble Egg 30x", + "overrideCost": 300, "pets": [ [ - "Daydream Fox", - 69.985, + "Faceling Raccoon", + 82.463, ], [ - "Skin Stealer", - 29, + "Tripod Octopus", + 17, ], [ - "Faceling Raccoon", - 0.9, + "Piggy Piggy", + 0.4, ], [ - "Tripod Octopus", + "Omen", 0.1, ], [ - "Piggy Piggy", - 0.015, + "Partygoer Cat", + 0.03, + ], + [ + "Guest 666", + 0.007, ], ], "rarity": { @@ -49319,10 +49319,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Backrooms Smile Egg 3x", - "dateCreated": "2026-06-13T23:13:53.554Z", - "dateModified": "2026-06-20T16:08:52.891Z", - "hashShort": "5c3780cb2c8073fd", + "configName": "3 | Backrooms Scribble Egg 30x", + "dateCreated": "2026-06-13T23:13:53.553Z", + "dateModified": "2026-06-20T16:08:52.884Z", + "hashShort": "ab1f25402b88621a", }, { "category": "Backrooms Update 2", @@ -49388,28 +49388,32 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "goldenEgg": null, "icon": "", "isCustomEgg": true, - "name": "Backrooms Keep Out Egg 50x", - "overrideCost": 500, + "name": "Backrooms Scribble Egg 25x", + "overrideCost": 300, "pets": [ + [ + "Faceling Raccoon", + 82.463, + ], [ "Tripod Octopus", - 86.585, + 17, ], [ "Piggy Piggy", - 13, + 0.4, ], [ "Omen", - 0.32, + 0.1, ], [ "Partygoer Cat", - 0.07, + 0.03, ], [ "Guest 666", - 0.02, + 0.007, ], ], "rarity": { @@ -49425,10 +49429,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Backrooms Keep Out Egg 50x", - "dateCreated": "2026-06-13T23:13:53.557Z", - "dateModified": "2026-06-20T16:08:52.889Z", - "hashShort": "834cab4cc7c7982e", + "configName": "3 | Backrooms Scribble Egg 25x", + "dateCreated": "2026-06-13T23:13:53.556Z", + "dateModified": "2026-06-20T16:08:52.887Z", + "hashShort": "4c04d8110582d2bd", }, { "category": "Backrooms Update 2", @@ -49439,28 +49443,28 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "goldenEgg": null, "icon": "", "isCustomEgg": true, - "name": "Backrooms Smile Egg 1x", - "overrideCost": 200, + "name": "Backrooms Flower Egg 10x", + "overrideCost": 250, "pets": [ - [ - "Daydream Fox", - 69.985, - ], [ "Skin Stealer", - 29, + 80.4325, ], [ "Faceling Raccoon", - 0.9, + 19, ], [ "Tripod Octopus", - 0.1, + 0.5, ], [ "Piggy Piggy", - 0.015, + 0.06, + ], + [ + "Omen", + 0.0075, ], ], "rarity": { @@ -49476,10 +49480,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Backrooms Smile Egg 1x", - "dateCreated": "2026-06-13T23:13:53.558Z", - "dateModified": "2026-06-20T16:08:52.890Z", - "hashShort": "b1b668429ee685de", + "configName": "2 | Backrooms Flower Egg 10x", + "dateCreated": "2026-06-13T23:13:53.556Z", + "dateModified": "2026-06-20T16:08:52.885Z", + "hashShort": "185e3d21acd95aea", }, { "category": "Backrooms Update 2", @@ -49490,28 +49494,28 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "goldenEgg": null, "icon": "", "isCustomEgg": true, - "name": "Backrooms Flower Egg 15x", - "overrideCost": 250, + "name": "Backrooms Keep Out Egg 50x", + "overrideCost": 500, "pets": [ [ - "Skin Stealer", - 80.4325, + "Tripod Octopus", + 86.585, ], [ - "Faceling Raccoon", - 19, + "Piggy Piggy", + 13, ], [ - "Tripod Octopus", - 0.5, + "Omen", + 0.32, ], [ - "Piggy Piggy", - 0.06, + "Partygoer Cat", + 0.07, ], [ - "Omen", - 0.0075, + "Guest 666", + 0.02, ], ], "rarity": { @@ -49527,10 +49531,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Backrooms Flower Egg 15x", - "dateCreated": "2026-06-13T23:13:53.558Z", - "dateModified": "2026-06-20T16:08:52.903Z", - "hashShort": "6ac1c2368dcef563", + "configName": "4 | Backrooms Keep Out Egg 50x", + "dateCreated": "2026-06-13T23:13:53.557Z", + "dateModified": "2026-06-20T16:08:52.889Z", + "hashShort": "834cab4cc7c7982e", }, { "category": "Backrooms Update 2", @@ -49541,28 +49545,28 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "goldenEgg": null, "icon": "", "isCustomEgg": true, - "name": "Backrooms Flower Egg 10x", - "overrideCost": 250, + "name": "Backrooms Smile Egg 1x", + "overrideCost": 200, "pets": [ + [ + "Daydream Fox", + 69.985, + ], [ "Skin Stealer", - 80.4325, + 29, ], [ "Faceling Raccoon", - 19, + 0.9, ], [ "Tripod Octopus", - 0.5, + 0.1, ], [ "Piggy Piggy", - 0.06, - ], - [ - "Omen", - 0.0075, + 0.015, ], ], "rarity": { @@ -49578,10 +49582,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Backrooms Flower Egg 10x", - "dateCreated": "2026-06-13T23:13:53.556Z", - "dateModified": "2026-06-20T16:08:52.885Z", - "hashShort": "185e3d21acd95aea", + "configName": "1 | Backrooms Smile Egg 1x", + "dateCreated": "2026-06-13T23:13:53.558Z", + "dateModified": "2026-06-20T16:08:52.890Z", + "hashShort": "b1b668429ee685de", }, { "category": "Backrooms Update 2", @@ -49592,32 +49596,28 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "goldenEgg": null, "icon": "", "isCustomEgg": true, - "name": "Backrooms Scribble Egg 25x", - "overrideCost": 300, + "name": "Backrooms Swirl Egg 1x", + "overrideCost": 1000, "pets": [ [ "Faceling Raccoon", - 82.463, + 69.985, ], [ - "Tripod Octopus", - 17, + "Memory Worm", + 29, ], [ - "Piggy Piggy", - 0.4, + "Tripod Octopus", + 0.9, ], [ - "Omen", + "Piggy Piggy", 0.1, ], [ - "Partygoer Cat", - 0.03, - ], - [ - "Guest 666", - 0.007, + "Death Moth", + 0.015, ], ], "rarity": { @@ -49633,10 +49633,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "3 | Backrooms Scribble Egg 25x", - "dateCreated": "2026-06-13T23:13:53.556Z", - "dateModified": "2026-06-20T16:08:52.887Z", - "hashShort": "4c04d8110582d2bd", + "configName": "5 | Backrooms Swirl Egg 1x", + "dateCreated": "2026-06-13T23:13:53.555Z", + "dateModified": "2026-06-20T16:08:52.902Z", + "hashShort": "4e31c73957f7250e", }, { "category": "Backrooms Update 2", @@ -49647,28 +49647,28 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "goldenEgg": null, "icon": "", "isCustomEgg": true, - "name": "Backrooms Swirl Egg 1x", - "overrideCost": 1000, + "name": "Backrooms Flower Egg 15x", + "overrideCost": 250, "pets": [ [ - "Faceling Raccoon", - 69.985, + "Skin Stealer", + 80.4325, ], [ - "Memory Worm", - 29, + "Faceling Raccoon", + 19, ], [ "Tripod Octopus", - 0.9, + 0.5, ], [ "Piggy Piggy", - 0.1, + 0.06, ], [ - "Death Moth", - 0.015, + "Omen", + 0.0075, ], ], "rarity": { @@ -49684,10 +49684,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Backrooms Swirl Egg 1x", - "dateCreated": "2026-06-13T23:13:53.555Z", - "dateModified": "2026-06-20T16:08:52.902Z", - "hashShort": "4e31c73957f7250e", + "configName": "2 | Backrooms Flower Egg 15x", + "dateCreated": "2026-06-13T23:13:53.558Z", + "dateModified": "2026-06-20T16:08:52.903Z", + "hashShort": "6ac1c2368dcef563", }, { "category": "Backrooms Update 2", @@ -50138,18 +50138,18 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "goldenEgg": null, "icon": "", "isCustomEgg": true, - "name": "Backrooms Eyes Egg 45x", + "name": "Backrooms Balloon Egg 5x", "oddsFFlags": { - "Huge Smiley Penguin": "Backrooms3EyesHoundMult", + "Huge Daydream Axolotl": "Backrooms3HeartBalloonCrayonMult", }, - "overrideCost": 7500, + "overrideCost": 2500, "pets": [ [ - "Faceling Owl", + "Daydream Axolotl", 70, ], [ - "Daydream Axolotl", + "Faceling Owl", 27.4, ], [ @@ -50173,8 +50173,8 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` 0.004, ], [ - "Huge Smiley Penguin", - 0.000044999999999999996, + "Huge Daydream Axolotl", + 0.0000049999999999999996, ], ], "rareGlobalFFlag": "Backrooms3LowerEggGlobalMult", @@ -50191,10 +50191,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Backrooms Eyes Egg 45x", - "dateCreated": "2026-06-20T16:08:52.904Z", - "dateModified": "2026-06-20T16:08:52.904Z", - "hashShort": "80031d09439cabbc", + "configName": "2 | Backrooms Balloon Egg 5x", + "dateCreated": "2026-06-20T16:08:52.901Z", + "dateModified": "2026-06-20T16:08:52.901Z", + "hashShort": "73842e26757702ba", }, { "category": "Backrooms Update 3", @@ -50205,18 +50205,18 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "goldenEgg": null, "icon": "", "isCustomEgg": true, - "name": "Backrooms Eyes Egg 35x", + "name": "Backrooms Balloon Egg 10x", "oddsFFlags": { - "Huge Smiley Penguin": "Backrooms3EyesHoundMult", + "Huge Daydream Axolotl": "Backrooms3HeartBalloonCrayonMult", }, - "overrideCost": 7500, + "overrideCost": 2500, "pets": [ [ - "Faceling Owl", + "Daydream Axolotl", 70, ], [ - "Daydream Axolotl", + "Faceling Owl", 27.4, ], [ @@ -50240,8 +50240,8 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` 0.004, ], [ - "Huge Smiley Penguin", - 0.000035, + "Huge Daydream Axolotl", + 0.000009999999999999999, ], ], "rareGlobalFFlag": "Backrooms3LowerEggGlobalMult", @@ -50258,10 +50258,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Backrooms Eyes Egg 35x", - "dateCreated": "2026-06-20T16:08:52.906Z", - "dateModified": "2026-06-20T16:08:52.906Z", - "hashShort": "79a509dc171668c2", + "configName": "2 | Backrooms Balloon Egg 10x", + "dateCreated": "2026-06-20T16:08:52.903Z", + "dateModified": "2026-06-20T16:08:52.903Z", + "hashShort": "8c43c98ce62ef7f5", }, { "category": "Backrooms Update 3", @@ -50272,127 +50272,46 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "goldenEgg": null, "icon": "", "isCustomEgg": true, - "name": "Backrooms Danger Egg 250x", + "name": "Backrooms Eyes Egg 40x", "oddsFFlags": { - "Gargantuan 1x1x1x1": "Backrooms3DangerGargantuanMult", - "Huge Daydream Axolotl": "Backrooms3DangerCrayonMult", - "Huge Partypooper Dog": "Backrooms3DangerPartyPooperMult", - "Huge Smiley Penguin": "Backrooms3DangerHoundMult", - "Titanic Gamemaster Cat": "Backrooms3DangerTitanicMult", + "Huge Smiley Penguin": "Backrooms3EyesHoundMult", }, - "overrideCost": 25000, + "overrideCost": 7500, "pets": [ [ - "Tripod Dominus", - 86.585, - ], - [ - "Partypooper Dog", - 13, - ], - [ - "Smiley Penguin", - 0.32, - ], - [ - "Gamemaster Cat", - 0.07, - ], - [ - "1x1x1x1", - 0.02, - ], - [ - "Huge Daydream Axolotl", - 0.0000375, - ], - [ - "Huge Partypooper Dog", - 0.00002, - ], - [ - "Huge Smiley Penguin", - 0.000029999999999999997, + "Faceling Owl", + 70, ], [ - "Titanic Gamemaster Cat", - 0.000001875, + "Daydream Axolotl", + 27.4, ], - [ - "Gargantuan 1x1x1x1", - 4.1249999999999995e-8, - ], - ], - "rareGlobalFFlag": "Backrooms3DangerGlobalMult", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, - "configName": "5 | Backrooms Danger Egg 250x", - "dateCreated": "2026-06-20T16:08:52.914Z", - "dateModified": "2026-06-20T16:08:52.914Z", - "hashShort": "4a41d0e3efadec9d", - }, - { - "category": "Backrooms Update 3", - "collection": "Eggs", - "configData": { - "currency": "DaydreamCoins", - "egg": null, - "goldenEgg": null, - "icon": "", - "isCustomEgg": true, - "name": "Backrooms Danger Egg 75x", - "oddsFFlags": { - "Huge Daydream Axolotl": "Backrooms3DangerCrayonMult", - "Huge Partypooper Dog": "Backrooms3DangerPartyPooperMult", - "Huge Smiley Penguin": "Backrooms3DangerHoundMult", - }, - "overrideCost": 12500, - "pets": [ [ "Tripod Dominus", - 86.585, + 2, ], [ "Partypooper Dog", - 13, + 0.5, ], [ "Smiley Penguin", - 0.32, + 0.08, ], [ "Gamemaster Cat", - 0.07, + 0.018, ], [ "1x1x1x1", - 0.02, - ], - [ - "Huge Daydream Axolotl", - 0.000011249999999999999, - ], - [ - "Huge Partypooper Dog", - 0.000006, + 0.004, ], [ "Huge Smiley Penguin", - 0.000008999999999999999, + 0.000039999999999999996, ], ], - "rareGlobalFFlag": "Backrooms3DangerGlobalMult", + "rareGlobalFFlag": "Backrooms3LowerEggGlobalMult", "rarity": { "Announce": true, "Color": null, @@ -50406,10 +50325,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Backrooms Danger Egg 75x", - "dateCreated": "2026-06-20T16:08:52.900Z", - "dateModified": "2026-06-20T16:08:52.900Z", - "hashShort": "46c6dbb6557c5c21", + "configName": "4 | Backrooms Eyes Egg 40x", + "dateCreated": "2026-06-20T16:08:52.907Z", + "dateModified": "2026-06-20T16:08:52.907Z", + "hashShort": "9e2cd35c27b2d86b", }, { "category": "Backrooms Update 3", @@ -50554,58 +50473,46 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "goldenEgg": null, "icon": "", "isCustomEgg": true, - "name": "Backrooms Danger Egg 100x", + "name": "Backrooms Eyes Egg 35x", "oddsFFlags": { - "Gargantuan 1x1x1x1": "Backrooms3DangerGargantuanMult", - "Huge Daydream Axolotl": "Backrooms3DangerCrayonMult", - "Huge Partypooper Dog": "Backrooms3DangerPartyPooperMult", - "Huge Smiley Penguin": "Backrooms3DangerHoundMult", - "Titanic Gamemaster Cat": "Backrooms3DangerTitanicMult", + "Huge Smiley Penguin": "Backrooms3EyesHoundMult", }, - "overrideCost": 12500, + "overrideCost": 7500, "pets": [ + [ + "Faceling Owl", + 70, + ], + [ + "Daydream Axolotl", + 27.4, + ], [ "Tripod Dominus", - 86.585, + 2, ], [ "Partypooper Dog", - 13, + 0.5, ], [ "Smiley Penguin", - 0.32, + 0.08, ], [ "Gamemaster Cat", - 0.07, + 0.018, ], [ "1x1x1x1", - 0.02, - ], - [ - "Huge Daydream Axolotl", - 0.000014999999999999999, - ], - [ - "Huge Partypooper Dog", - 0.000008, + 0.004, ], [ "Huge Smiley Penguin", - 0.000011999999999999999, - ], - [ - "Titanic Gamemaster Cat", - 0.0000015, - ], - [ - "Gargantuan 1x1x1x1", - 3.3e-8, + 0.000035, ], ], - "rareGlobalFFlag": "Backrooms3DangerGlobalMult", + "rareGlobalFFlag": "Backrooms3LowerEggGlobalMult", "rarity": { "Announce": true, "Color": null, @@ -50619,10 +50526,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Backrooms Danger Egg 100x", - "dateCreated": "2026-06-20T16:08:52.914Z", - "dateModified": "2026-06-20T16:08:52.914Z", - "hashShort": "4f5b34c0d58dbf2a", + "configName": "4 | Backrooms Eyes Egg 35x", + "dateCreated": "2026-06-20T16:08:52.906Z", + "dateModified": "2026-06-20T16:08:52.906Z", + "hashShort": "79a509dc171668c2", }, { "category": "Backrooms Update 3", @@ -50633,11 +50540,11 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "goldenEgg": null, "icon": "", "isCustomEgg": true, - "name": "Backrooms Balloon Egg 5x", + "name": "Backrooms Heart Egg 2x", "oddsFFlags": { "Huge Daydream Axolotl": "Backrooms3HeartBalloonCrayonMult", }, - "overrideCost": 2500, + "overrideCost": 2000, "pets": [ [ "Daydream Axolotl", @@ -50669,7 +50576,7 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` ], [ "Huge Daydream Axolotl", - 0.0000049999999999999996, + 0.000002, ], ], "rareGlobalFFlag": "Backrooms3LowerEggGlobalMult", @@ -50686,10 +50593,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Backrooms Balloon Egg 5x", - "dateCreated": "2026-06-20T16:08:52.901Z", - "dateModified": "2026-06-20T16:08:52.901Z", - "hashShort": "73842e26757702ba", + "configName": "1 | Backrooms Heart Egg 2x", + "dateCreated": "2026-06-20T16:08:52.902Z", + "dateModified": "2026-06-20T16:08:52.902Z", + "hashShort": "0551dd1372b63a1a", }, { "category": "Backrooms Update 3", @@ -50700,18 +50607,18 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "goldenEgg": null, "icon": "", "isCustomEgg": true, - "name": "Backrooms Eyes Egg 40x", + "name": "Backrooms Heart Egg 3x", "oddsFFlags": { - "Huge Smiley Penguin": "Backrooms3EyesHoundMult", + "Huge Daydream Axolotl": "Backrooms3HeartBalloonCrayonMult", }, - "overrideCost": 7500, + "overrideCost": 2000, "pets": [ [ - "Faceling Owl", + "Daydream Axolotl", 70, ], [ - "Daydream Axolotl", + "Faceling Owl", 27.4, ], [ @@ -50735,8 +50642,8 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` 0.004, ], [ - "Huge Smiley Penguin", - 0.000039999999999999996, + "Huge Daydream Axolotl", + 0.000003, ], ], "rareGlobalFFlag": "Backrooms3LowerEggGlobalMult", @@ -50753,10 +50660,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Backrooms Eyes Egg 40x", - "dateCreated": "2026-06-20T16:08:52.907Z", - "dateModified": "2026-06-20T16:08:52.907Z", - "hashShort": "9e2cd35c27b2d86b", + "configName": "1 | Backrooms Heart Egg 3x", + "dateCreated": "2026-06-20T16:08:52.897Z", + "dateModified": "2026-06-20T16:08:52.897Z", + "hashShort": "275c66071a193e06", }, { "category": "Backrooms Update 3", @@ -50767,7 +50674,86 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "goldenEgg": null, "icon": "", "isCustomEgg": true, - "name": "Backrooms Danger Egg 50x", + "name": "Backrooms Danger Egg 100x", + "oddsFFlags": { + "Gargantuan 1x1x1x1": "Backrooms3DangerGargantuanMult", + "Huge Daydream Axolotl": "Backrooms3DangerCrayonMult", + "Huge Partypooper Dog": "Backrooms3DangerPartyPooperMult", + "Huge Smiley Penguin": "Backrooms3DangerHoundMult", + "Titanic Gamemaster Cat": "Backrooms3DangerTitanicMult", + }, + "overrideCost": 12500, + "pets": [ + [ + "Tripod Dominus", + 86.585, + ], + [ + "Partypooper Dog", + 13, + ], + [ + "Smiley Penguin", + 0.32, + ], + [ + "Gamemaster Cat", + 0.07, + ], + [ + "1x1x1x1", + 0.02, + ], + [ + "Huge Daydream Axolotl", + 0.000014999999999999999, + ], + [ + "Huge Partypooper Dog", + 0.000008, + ], + [ + "Huge Smiley Penguin", + 0.000011999999999999999, + ], + [ + "Titanic Gamemaster Cat", + 0.0000015, + ], + [ + "Gargantuan 1x1x1x1", + 3.3e-8, + ], + ], + "rareGlobalFFlag": "Backrooms3DangerGlobalMult", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + "configName": "5 | Backrooms Danger Egg 100x", + "dateCreated": "2026-06-20T16:08:52.914Z", + "dateModified": "2026-06-20T16:08:52.914Z", + "hashShort": "4f5b34c0d58dbf2a", + }, + { + "category": "Backrooms Update 3", + "collection": "Eggs", + "configData": { + "currency": "DaydreamCoins", + "egg": null, + "goldenEgg": null, + "icon": "", + "isCustomEgg": true, + "name": "Backrooms Danger Egg 50x", "oddsFFlags": { "Huge Daydream Axolotl": "Backrooms3DangerCrayonMult", "Huge Partypooper Dog": "Backrooms3DangerPartyPooperMult", @@ -50903,18 +50889,18 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "goldenEgg": null, "icon": "", "isCustomEgg": true, - "name": "Backrooms Balloon Egg 10x", + "name": "Backrooms Eyes Egg 45x", "oddsFFlags": { - "Huge Daydream Axolotl": "Backrooms3HeartBalloonCrayonMult", + "Huge Smiley Penguin": "Backrooms3EyesHoundMult", }, - "overrideCost": 2500, + "overrideCost": 7500, "pets": [ [ - "Daydream Axolotl", + "Faceling Owl", 70, ], [ - "Faceling Owl", + "Daydream Axolotl", 27.4, ], [ @@ -50938,8 +50924,8 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` 0.004, ], [ - "Huge Daydream Axolotl", - 0.000009999999999999999, + "Huge Smiley Penguin", + 0.000044999999999999996, ], ], "rareGlobalFFlag": "Backrooms3LowerEggGlobalMult", @@ -50956,10 +50942,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "2 | Backrooms Balloon Egg 10x", - "dateCreated": "2026-06-20T16:08:52.903Z", - "dateModified": "2026-06-20T16:08:52.903Z", - "hashShort": "8c43c98ce62ef7f5", + "configName": "4 | Backrooms Eyes Egg 45x", + "dateCreated": "2026-06-20T16:08:52.904Z", + "dateModified": "2026-06-20T16:08:52.904Z", + "hashShort": "80031d09439cabbc", }, { "category": "Backrooms Update 3", @@ -50970,46 +50956,48 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "goldenEgg": null, "icon": "", "isCustomEgg": true, - "name": "Backrooms Heart Egg 2x", + "name": "Backrooms Danger Egg 75x", "oddsFFlags": { - "Huge Daydream Axolotl": "Backrooms3HeartBalloonCrayonMult", + "Huge Daydream Axolotl": "Backrooms3DangerCrayonMult", + "Huge Partypooper Dog": "Backrooms3DangerPartyPooperMult", + "Huge Smiley Penguin": "Backrooms3DangerHoundMult", }, - "overrideCost": 2000, + "overrideCost": 12500, "pets": [ - [ - "Daydream Axolotl", - 70, - ], - [ - "Faceling Owl", - 27.4, - ], [ "Tripod Dominus", - 2, + 86.585, ], [ "Partypooper Dog", - 0.5, + 13, ], [ "Smiley Penguin", - 0.08, + 0.32, ], [ "Gamemaster Cat", - 0.018, + 0.07, ], [ "1x1x1x1", - 0.004, + 0.02, ], [ "Huge Daydream Axolotl", - 0.000002, + 0.000011249999999999999, + ], + [ + "Huge Partypooper Dog", + 0.000006, + ], + [ + "Huge Smiley Penguin", + 0.000008999999999999999, ], ], - "rareGlobalFFlag": "Backrooms3LowerEggGlobalMult", + "rareGlobalFFlag": "Backrooms3DangerGlobalMult", "rarity": { "Announce": true, "Color": null, @@ -51023,10 +51011,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Backrooms Heart Egg 2x", - "dateCreated": "2026-06-20T16:08:52.902Z", - "dateModified": "2026-06-20T16:08:52.902Z", - "hashShort": "0551dd1372b63a1a", + "configName": "5 | Backrooms Danger Egg 75x", + "dateCreated": "2026-06-20T16:08:52.900Z", + "dateModified": "2026-06-20T16:08:52.900Z", + "hashShort": "46c6dbb6557c5c21", }, { "category": "Backrooms Update 3", @@ -51037,46 +51025,58 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "goldenEgg": null, "icon": "", "isCustomEgg": true, - "name": "Backrooms Heart Egg 3x", + "name": "Backrooms Danger Egg 250x", "oddsFFlags": { - "Huge Daydream Axolotl": "Backrooms3HeartBalloonCrayonMult", + "Gargantuan 1x1x1x1": "Backrooms3DangerGargantuanMult", + "Huge Daydream Axolotl": "Backrooms3DangerCrayonMult", + "Huge Partypooper Dog": "Backrooms3DangerPartyPooperMult", + "Huge Smiley Penguin": "Backrooms3DangerHoundMult", + "Titanic Gamemaster Cat": "Backrooms3DangerTitanicMult", }, - "overrideCost": 2000, + "overrideCost": 25000, "pets": [ - [ - "Daydream Axolotl", - 70, - ], - [ - "Faceling Owl", - 27.4, - ], [ "Tripod Dominus", - 2, + 86.585, ], [ "Partypooper Dog", - 0.5, + 13, ], [ "Smiley Penguin", - 0.08, + 0.32, ], [ "Gamemaster Cat", - 0.018, + 0.07, ], [ "1x1x1x1", - 0.004, + 0.02, ], [ "Huge Daydream Axolotl", - 0.000003, + 0.0000375, + ], + [ + "Huge Partypooper Dog", + 0.00002, + ], + [ + "Huge Smiley Penguin", + 0.000029999999999999997, + ], + [ + "Titanic Gamemaster Cat", + 0.000001875, + ], + [ + "Gargantuan 1x1x1x1", + 4.1249999999999995e-8, ], ], - "rareGlobalFFlag": "Backrooms3LowerEggGlobalMult", + "rareGlobalFFlag": "Backrooms3DangerGlobalMult", "rarity": { "Announce": true, "Color": null, @@ -51090,10 +51090,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Backrooms Heart Egg 3x", - "dateCreated": "2026-06-20T16:08:52.897Z", - "dateModified": "2026-06-20T16:08:52.897Z", - "hashShort": "275c66071a193e06", + "configName": "5 | Backrooms Danger Egg 250x", + "dateCreated": "2026-06-20T16:08:52.914Z", + "dateModified": "2026-06-20T16:08:52.914Z", + "hashShort": "4a41d0e3efadec9d", }, { "category": "Soccer", @@ -51102,26 +51102,21 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "currency": "SoccerCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Soccer Egg 4", - "overrideCost": 2000, + "name": "Soccer Egg 1", + "overrideCost": 250, "pets": [ [ - "Soccerball Griffin", - 80, - ], - [ - "Jersey Seal", - 15, + "Soccerball Cat", + 88, ], [ - "Coach Chihuahua", - 4, - "Great", + "Soccerball Dog", + 10, ], [ - "Referee Zebra", - 1, - "Insane", + "Soccerball Jaguar", + 2, + "Nice", ], ], "rarity": { @@ -51137,10 +51132,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "4 | Soccer Egg 4", + "configName": "1 | Soccer Egg 1", "dateCreated": "2026-06-27T16:06:53.641Z", "dateModified": "2026-06-27T16:06:53.641Z", - "hashShort": "2f291ed4eebe8e81", + "hashShort": "2a31408fb7022794", }, { "category": "Soccer", @@ -51149,21 +51144,26 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "currency": "SoccerCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Soccer Egg 1", - "overrideCost": 250, + "name": "Soccer Egg 4", + "overrideCost": 2000, "pets": [ [ - "Soccerball Cat", - 88, + "Soccerball Griffin", + 80, ], [ - "Soccerball Dog", - 10, + "Jersey Seal", + 15, ], [ - "Soccerball Jaguar", - 2, - "Nice", + "Coach Chihuahua", + 4, + "Great", + ], + [ + "Referee Zebra", + 1, + "Insane", ], ], "rarity": { @@ -51179,10 +51179,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "1 | Soccer Egg 1", + "configName": "4 | Soccer Egg 4", "dateCreated": "2026-06-27T16:06:53.641Z", "dateModified": "2026-06-27T16:06:53.641Z", - "hashShort": "2a31408fb7022794", + "hashShort": "2f291ed4eebe8e81", }, { "category": "Soccer", @@ -51335,59 +51335,6 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "dateModified": "2026-06-27T16:06:53.642Z", "hashShort": "c836013c96d31be2", }, - { - "category": "Soccer", - "collection": "Eggs", - "configData": { - "currency": "SoccerCoins", - "icon": "rbxassetid://15172355963", - "isCustomEgg": true, - "name": "Soccer Egg 5 Tier 6", - "oddsFFlags": { - "Goalie Monkey": "Soccer_GoalieMonkeyEggOdds", - "Soccerball Trophy Angelus": "Soccer_AngelusEggOdds", - "Soccerball Trophy Dragon": "Soccer_TrophyDragonEggOdds", - }, - "overrideCost": 4000, - "pets": [ - [ - "Referee Zebra", - 80, - ], - [ - "Goalie Monkey", - 0.005, - "Insane", - ], - [ - "Soccerball Trophy Dragon", - 0.0005, - "Insane", - ], - [ - "Soccerball Trophy Angelus", - 0.0002, - "Insane", - ], - ], - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - }, - "configName": "5 | Soccer Egg 5 Tier 6", - "dateCreated": "2026-06-27T16:06:53.644Z", - "dateModified": "2026-06-27T16:06:53.644Z", - "hashShort": "48d914e3fb67558b", - }, { "category": "Soccer", "collection": "Eggs", @@ -51445,20 +51392,17 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "currency": "SoccerCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Soccer Egg 5 Tier 2", + "name": "Soccer Egg 5 Tier 4", "oddsFFlags": { "Goalie Monkey": "Soccer_GoalieMonkeyEggOdds", + "Soccerball Trophy Angelus": "Soccer_AngelusEggOdds", "Soccerball Trophy Dragon": "Soccer_TrophyDragonEggOdds", }, "overrideCost": 4000, "pets": [ - [ - "Coach Chihuahua", - 92, - ], [ "Referee Zebra", - 6, + 92, ], [ "Goalie Monkey", @@ -51470,6 +51414,11 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` 0.0005, "Insane", ], + [ + "Soccerball Trophy Angelus", + 0.0002, + "Insane", + ], ], "rarity": { "Announce": true, @@ -51484,10 +51433,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Soccer Egg 5 Tier 2", - "dateCreated": "2026-06-27T16:06:53.644Z", - "dateModified": "2026-06-27T16:06:53.644Z", - "hashShort": "5c45918e58acdd17", + "configName": "5 | Soccer Egg 5 Tier 4", + "dateCreated": "2026-06-27T16:06:53.645Z", + "dateModified": "2026-06-27T16:06:53.645Z", + "hashShort": "ff84e47e60073dd5", }, { "category": "Soccer", @@ -51549,7 +51498,58 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "currency": "SoccerCoins", "icon": "rbxassetid://15172355963", "isCustomEgg": true, - "name": "Soccer Egg 5 Tier 4", + "name": "Soccer Egg 5 Tier 2", + "oddsFFlags": { + "Goalie Monkey": "Soccer_GoalieMonkeyEggOdds", + "Soccerball Trophy Dragon": "Soccer_TrophyDragonEggOdds", + }, + "overrideCost": 4000, + "pets": [ + [ + "Coach Chihuahua", + 92, + ], + [ + "Referee Zebra", + 6, + ], + [ + "Goalie Monkey", + 0.005, + "Insane", + ], + [ + "Soccerball Trophy Dragon", + 0.0005, + "Insane", + ], + ], + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Celestial", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 9, + "_id": "Celestial", + "_script": null, + }, + }, + "configName": "5 | Soccer Egg 5 Tier 2", + "dateCreated": "2026-06-27T16:06:53.644Z", + "dateModified": "2026-06-27T16:06:53.644Z", + "hashShort": "5c45918e58acdd17", + }, + { + "category": "Soccer", + "collection": "Eggs", + "configData": { + "currency": "SoccerCoins", + "icon": "rbxassetid://15172355963", + "isCustomEgg": true, + "name": "Soccer Egg 5 Tier 6", "oddsFFlags": { "Goalie Monkey": "Soccer_GoalieMonkeyEggOdds", "Soccerball Trophy Angelus": "Soccer_AngelusEggOdds", @@ -51559,7 +51559,7 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "pets": [ [ "Referee Zebra", - 92, + 80, ], [ "Goalie Monkey", @@ -51590,10 +51590,10 @@ exports[`Pet Simulator Public Live API Test Eggs shape 1`] = ` "_script": null, }, }, - "configName": "5 | Soccer Egg 5 Tier 4", - "dateCreated": "2026-06-27T16:06:53.645Z", - "dateModified": "2026-06-27T16:06:53.645Z", - "hashShort": "ff84e47e60073dd5", + "configName": "5 | Soccer Egg 5 Tier 6", + "dateCreated": "2026-06-27T16:06:53.644Z", + "dateModified": "2026-06-27T16:06:53.644Z", + "hashShort": "48d914e3fb67558b", }, { "category": "Exclusive Eggs", @@ -59353,7326 +59353,578 @@ exports[`Pet Simulator Public Live API Test GuildBattles shape 1`] = ` } `; -exports[`Pet Simulator Public Live API Test Hoverboards shape 1`] = ` +exports[`Pet Simulator Public Live API Test Mastery shape 1`] = ` { "data": [ { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "CanBeShiny": false, - "Desc": "Your own personal hoverboard. Gotta go fast!", - "DisplayName": "Hoverboard", - "Icon": "rbxassetid://14910756938", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Basic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 1, - "_id": "Basic", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": [], - "Tradable": false, - }, - "configName": "Hoverboard | Original", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:51.002Z", - "hashShort": "3ebab65bb8b0c533", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Callback": null, - "Desc": "Thanks for the support 💛", - "DisplayName": "Bling Hoverboard", - "Icon": "rbxassetid://14910770026", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": [], - "Tradable": false, - }, - "configName": "Hoverboard | Bling", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.019Z", - "hashShort": "0be6edcb4921eed7", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Mastery", + "collection": "Mastery", "configData": { - "Callback": null, - "Desc": "Rewarded to the top 10 players in the world! 🌎", - "DisplayName": "Blue Flying Carpet", - "Icon": "rbxassetid://14910772029", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://86531740191291", + "Desc": "Gain XP by purchasing items through Vending Machines, Merchants, etc.", + "FFlag": "Mastery_Economy", + "Icon": "rbxassetid://15092229110", + "Name": "Economy", + "Perks": { + "AccidentalVending": [ + { + "Level": 80, + "Text": "Vending Machines have a 20% chance to give double items", + "Title": "Accidental Vending", + }, ], - "idle": [ - "rbxassetid://129244790082201", + "AutoVending": [ + { + "Level": 99, + "Text": "Automatically buys Vending Machines that cost coins", + "Title": "Auto Vending", + }, ], - "jump": [ - "rbxassetid://78403942185285", + "BetterDeals": [ + { + "Level": 50, + "Power": 2, + "Text": "2x Merchant luck odds", + "Title": "Better Offers", + }, ], - }, - "Tradable": false, - }, - "configName": "Hoverboard | Blue Flying Carpet", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.015Z", - "hashShort": "663bb12a5a291406", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Meow!", - "DisplayName": "Cat Hoverboard", - "Icon": "rbxassetid://14910757359", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://16572012076", + "BuyFullVendingStock": [ + { + "Level": 10, + "Text": "Option to buy entire Vending Machine stock", + "Title": "Max Vending", + }, ], - "idle": [ - "rbxassetid://85358657413140", + "CheaperMerchants": [ + { + "Level": 30, + "Power": 15, + "Text": "-15% Merchant prices", + "Title": "Cheaper Merchants I", + }, + { + "Level": 80, + "Power": 30, + "Text": "-30% Merchant prices", + "Title": "Cheaper Merchants II", + }, + { + "Level": 99, + "Power": 50, + "Text": "-50% Merchant prices", + "Title": "Cheaper Merchants III", + }, ], - "jump": [ - "rbxassetid://94203575324510", + "CheaperVending": [ + { + "Level": 20, + "Power": 15, + "Text": "-15% Vending Machine prices", + "Title": "Cheaper Vending I", + }, + { + "Level": 70, + "Power": 30, + "Text": "-30% Vending Machine prices", + "Title": "Cheaper Vending II", + }, + { + "Level": 90, + "Power": 50, + "Text": "-50% Vending Machine prices", + "Title": "Cheaper Vending III", + }, ], - }, - }, - "configName": "Hoverboard | Cat", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.016Z", - "hashShort": "3def630b1ee809e9", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Banksy would be proud!", - "DisplayName": "Doodle Hoverboard", - "Icon": "rbxassetid://14910757247", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://91610397255708", + "FasterMerchants": [ + { + "Level": 50, + "Power": 1.5, + "Text": "1.5x Merchant restock speed", + "Title": "Faster Merchants I", + }, + { + "Level": 90, + "Power": 3, + "Text": "3x Merchant restock speed", + "Title": "Faster Merchants II", + }, ], - "idle": [ - "rbxassetid://80774788338224", + "FasterVending": [ + { + "Level": 40, + "Power": 1.5, + "Text": "1.5x Vending Machine restock speed", + "Title": "Faster Vending I", + }, + { + "Level": 90, + "Power": 3, + "Text": "3x Vending Machine restock speed", + "Title": "Faster Vending II", + }, ], - "jump": [ - "rbxassetid://98520429060386", + "FreeVending": [ + { + "Level": 99, + "Text": "Vending Machines that cost coins are FREE", + "Title": "Free Vending", + }, + ], + "MasteryCape": [ + { + "Level": 99, + "Text": "Awarded for reaching level 99 Mastery!", + "Title": "Mastery Cape", + }, + ], + "MoreVending": [ + { + "Level": 60, + "Power": 1, + "Text": "+1 Vending Machine global stock", + "Title": "More Vending I", + }, + { + "Level": 90, + "Power": 2, + "Text": "+2 Vending Machine global stock", + "Title": "More Vending II", + }, ], }, - "Tradable": true, - }, - "configName": "Hoverboard | Doodle", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.021Z", - "hashShort": "98b7d49b5766f968", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Speed along in futuristic style!", - "DisplayName": "High-Tech Hoverboard", - "Icon": "rbxassetid://14910757075", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | High Tech", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.041Z", - "hashShort": "21fad2ea1d4afd57", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Double rainbow! (Redeem 5 merch codes)", - "DisplayName": "Rainbow Hoverboard", - "Icon": "rbxassetid://14910756731", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": [], }, - "configName": "Hoverboard | Rainbow", + "configName": "Mastery | Economy", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.045Z", - "hashShort": "72e67c96f719f59f", + "dateModified": "2025-07-05T23:29:23.718Z", + "hashShort": "47a17da6240159e2", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Mastery", + "collection": "Mastery", "configData": { - "Callback": null, - "Desc": "Rewarded to the Top 100 players in the world! 🌎", - "DisplayName": "Red Flying Carpet", - "Icon": "rbxassetid://14910756675", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://97349550837141", + "Desc": "Gain XP by destroying breakables!", + "FFlag": "Mastery_Breakables", + "Icon": "rbxassetid://15092228198", + "Name": "Breakables", + "Perks": { + "BetterLoot": [ + { + "Level": 20, + "Power": 10, + "Text": "+10% better loot from breakables", + "Title": "Better Loot I", + }, + { + "Level": 50, + "Power": 20, + "Text": "+20% better loot from breakables", + "Title": "Better Loot II", + }, + { + "Level": 90, + "Power": 30, + "Text": "+30% better loot from breakables", + "Title": "Better Loot III", + }, ], - "idle": [ - "rbxassetid://77162821297775", + "BreakableRespawnRate": [ + { + "Level": 30, + "Power": 25, + "Text": "+25% breakable respawn speed", + "Title": "Respawn I", + }, + { + "Level": 80, + "Power": 50, + "Text": "+50% breakable respawn speed", + "Title": "Respawn II", + }, + { + "Level": 99, + "Power": 100, + "Text": "+100% breakable respawn speed", + "Title": "Respawn III", + }, ], - "jump": [ - "rbxassetid://134060758230484", + "FlagDuration": [ + { + "Level": 90, + "Power": 1.5, + "Text": "1.5x flag duration", + "Title": "Flag Duration I", + }, + { + "Level": 99, + "Power": 2, + "Text": "2x flag duration", + "Title": "Flag Duration II", + }, ], - }, - "Tradable": false, - }, - "configName": "Hoverboard | Red Flying Carpet", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.044Z", - "hashShort": "b47123c922627076", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "🎄 Participate in the 2023 Christmas Event!", - "DisplayName": "Rudolph Hoverboard", - "Icon": "rbxassetid://14910756609", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Rudolph", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.050Z", - "hashShort": "0db1a26770e95490", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "🎅 Found in Christmas Presents!", - "DisplayName": "Sleigh Hoverboard", - "Icon": "rbxassetid://14910756533", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Sleigh", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.051Z", - "hashShort": "76c2cb175e7c4f45", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "You can hear the gears turning!", - "DisplayName": "Steampunk Hoverboard", - "Icon": "rbxassetid://14910756487", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Steampunk", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.052Z", - "hashShort": "3c6ccb623cfa16a5", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Gotta one-up everyone somehow! (Redeem 20 merch codes)", - "DisplayName": "Oversized Hoverboard", - "Icon": "rbxassetid://14910756938", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Oversized", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.054Z", - "hashShort": "1f5218d59a74805f", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Set the ground ablaze!", - "DisplayName": "Fire Dragon Hoverboard", - "Icon": "rbxassetid://15164150883", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Fire Dragon", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.054Z", - "hashShort": "7647354c285af185", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Juicy!", - "DisplayName": "Watermelon Hoverboard", - "Icon": "rbxassetid://14952778495", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://84069480219233", + "FlagSlots": [ + { + "Level": 10, + "Power": 6, + "Text": "+6 flag slots (up to 30 stacked)", + "Title": "Flag Slots I", + }, + { + "Level": 60, + "Power": 11, + "Text": "+11 flag slots (up to 35 stacked)", + "Title": "Flag Slots II", + }, + { + "Level": 80, + "Power": 16, + "Text": "+16 flag slots (up to 40 stacked)", + "Title": "Flag Slots III", + }, + { + "Level": 99, + "Power": 21, + "Text": "+21 flag slots (up to 45 stacked)", + "Title": "Flag Slots IV", + }, + ], + "GoldBreakables": [ + { + "Level": 60, + "Power": 5, + "Text": "2% chance your pets turn breakables gold", + "Title": "Golden Breakables I", + }, + { + "Level": 90, + "Power": 10, + "Text": "5% chance your pets turn breakables gold", + "Title": "Golden Breakables II", + }, + ], + "MasteryCape": [ + { + "Level": 99, + "Text": "Awarded for reaching level 99 Mastery!", + "Title": "Mastery Cape", + }, ], - "idle": [ - "rbxassetid://109990362589216", + "MiniChestLoot": [ + { + "Level": 20, + "Power": 2, + "Text": "2x loot from mini-chests", + "Title": "Mini-Chest Loot I", + }, + { + "Level": 70, + "Power": 3, + "Text": "3x loot from mini-chests", + "Title": "Mini-Chest Loot II", + }, + { + "Level": 99, + "Power": 5, + "Text": "5x loot from mini-chests", + "Title": "Mini-Chest Loot III", + }, ], - "jump": [ - "rbxassetid://130951213809044", + "MiniChestOdds": [ + { + "Level": 40, + "Power": 10, + "Text": "+10% chance for mini-chests to spawn", + "Title": "Mini-Chest Odds I", + }, + { + "Level": 70, + "Power": 30, + "Text": "+30% chance for mini-chests to spawn", + "Title": "Mini-Chest Odds II", + }, + { + "Level": 99, + "Power": 50, + "Text": "+50% chance for mini-chests to spawn", + "Title": "Mini-Chest Odds III", + }, ], }, }, - "configName": "Hoverboard | Watermelon", + "configName": "Mastery | Breakables", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.057Z", - "hashShort": "c61cae8010d23099", + "dateModified": "2025-07-05T23:29:23.713Z", + "hashShort": "e395cbd20b16078c", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Mastery", + "collection": "Mastery", "configData": { - "Desc": "For VIP members!", - "DisplayName": "Axolotl Hoverboard", - "Icon": "rbxassetid://15280246245", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://126295444855791", + "Desc": "TODO", + "FFlag": "Mastery_Eggs", + "Icon": "rbxassetid://15057348341", + "Name": "Eggs", + "Perks": { + "CheaperEggs": [ + { + "Level": 20, + "Power": 10, + "Text": "10% cheaper eggs", + "Title": "Cheaper Eggs I", + }, + { + "Level": 70, + "Power": 20, + "Text": "20% cheaper eggs", + "Title": "Cheaper Eggs II", + }, + { + "Level": 99, + "Power": 30, + "Text": "30% cheaper eggs", + "Title": "Cheaper Eggs III", + }, ], - "idle": [ - "rbxassetid://103714009591937", + "ExtraEggs": [ + { + "Level": 40, + "Power": 1, + "Text": "+1 bonus egg slot", + "Title": "Extra Eggs I", + }, + { + "Level": 60, + "Power": 2, + "Text": "+2 bonus egg slots", + "Title": "Extra Eggs II", + }, + { + "Level": 90, + "Power": 3, + "Text": "+3 bonus egg slots", + "Title": "Extra Eggs III", + }, + { + "Level": 99, + "Power": 5, + "Text": "+5 bonus egg slots", + "Title": "Extra Eggs IV", + }, ], - "jump": [ - "rbxassetid://95188937985287", + "FasterOpen": [ + { + "Level": 10, + "Power": 20, + "Text": "+20% hatch animation speed", + "Title": "Faster Hatching I", + }, + { + "Level": 50, + "Power": 35, + "Text": "+35% hatch animation speed", + "Title": "Faster Hatching II", + }, + { + "Level": 90, + "Power": 50, + "Text": "+50% hatch animation speed", + "Title": "Faster Hatching III", + }, ], - }, - "Tradable": false, - }, - "configName": "Hoverboard | Axolotl", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.557Z", - "hashShort": "c9820c97abf45a08", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 3 clans in the 2024 New Year Clan Battle!", - "DisplayName": "Blobfish Hoverboard", - "Icon": "rbxassetid://15280245992", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Blobfish", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.555Z", - "hashShort": "138e0ab4b4dee3ae", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 3 clans in the 2024 Pet Collecting Clan Battle!", - "DisplayName": "Pegasus Hoverboard", - "Icon": "rbxassetid://15280245549", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://75802008091018", + "GoldenEggs": [ + { + "Level": 30, + "Power": 3, + "Text": "+3% chance to hatch golden pets", + "Title": "Golden Eggs I", + }, ], - "idle": [ - "rbxassetid://96160069704153", + "MasteryCape": [ + { + "Level": 99, + "Text": "Awarded for reaching level 99 Mastery!", + "Title": "Mastery Cape", + }, ], - "jump": [ - "rbxassetid://104673605067650", + "RainbowEggs": [ + { + "Level": 80, + "Power": 1, + "Text": "+1% chance to hatch rainbow pets", + "Title": "Rainbow Eggs I", + }, ], }, }, - "configName": "Hoverboard | Pegasus", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.561Z", - "hashShort": "581dc28003fac6f5", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "It's a party! (Redeem a merch code)", - "DisplayName": "Piñata Hoverboard", - "Icon": "rbxassetid://15280245445", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Pinata", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.554Z", - "hashShort": "7b7591b1328cf6ad", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Careful not to pop it!", - "DisplayName": "Balloon Hoverboard", - "Icon": "rbxassetid://15280246134", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Balloon", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.560Z", - "hashShort": "d4cac2d72d0f4614", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 3 clans in the 2023 Christmas Clan Battle!", - "DisplayName": "Present Hoverboard", - "Icon": "rbxassetid://15642824601", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Red Present", + "configName": "Mastery | Eggs", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.556Z", - "hashShort": "200dcaff0575ec3e", + "dateModified": "2025-07-05T23:29:23.714Z", + "hashShort": "292341da8da8131e", }, { - "category": "Hoverboards", - "collection": "Hoverboards", + "category": "Mastery", + "collection": "Mastery", "configData": { - "Animation": 11897877992, - "BobRate": 3, - "Desc": "ALIENS ARE REAL 👽", - "DisplayName": "UFO", - "HoverHeight": 6, - "Icon": "rbxassetid://15803163554", - "ProductId": 1718933726, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RotationLimit": 0, - "Sounds": { - "equip": [ - "rbxassetid://15799351567", + "Desc": "Gain XP by upgrading & consuming potions!", + "FFlag": "Mastery_Potions", + "Icon": "rbxassetid://15057347575", + "Name": "Potions", + "Perks": { + "AutoClaim": [ + { + "Level": 70, + "Text": "Automatically claim free potions around the map", + "Title": "Instant Collection", + }, ], - "idle": [ - "rbxassetid://15809396787", + "BetterCrafting": [ + { + "Level": 60, + "Power": 1, + "Text": "-1 potion required for upgrade", + "Title": "Better Crafting I", + }, ], - "jump": [ - "rbxassetid://15809396485", + "BulkConsume": [ + { + "Level": 50, + "Text": "Ability to drink multiple potions at once", + "Title": "Bulk Consumption", + }, ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | UFO", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.552Z", - "hashShort": "38e3593242d44920", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "ub3rR0xXorzage!", - "DisplayName": "Noob Hoverboard", - "Icon": "rbxassetid://15803163718", - "ProductId": 1718932898, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://4956112294", + "BulkCrafting": [ + { + "Level": 99, + "Text": "Upgrade multiple potion types at once", + "Title": "Bulk Crafting", + }, ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | Noob", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.562Z", - "hashShort": "43adaced98437da3", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "It's bananas!", - "DisplayName": "Banana Hoverboard", - "Icon": "rbxassetid://15803163849", - "ProductId": 1718932102, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://14743073819", + "CheaperPotions": [ + { + "Level": 30, + "Power": 15, + "Text": "-15% potion upgrade cost", + "Title": "Cheaper Potions I", + }, + { + "Level": 50, + "Power": 30, + "Text": "-30% potion upgrade cost", + "Title": "Cheaper Potions II", + }, + { + "Level": 90, + "Power": 50, + "Text": "-50% potion upgrade cost", + "Title": "Cheaper Potions III", + }, ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | Banana", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.562Z", - "hashShort": "c6c2434013f64155", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 3 clans in the 2024 Achievements Clan Battle!", - "DisplayName": "Ducky Hoverboard", - "Icon": "rbxassetid://15280245724", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://85687969435784", + "FasterCrafting": [ + { + "Level": 10, + "Power": 2, + "Text": "2x potion upgrading animation speed", + "Title": "Faster Crafting", + }, + ], + "LongerPotions": [ + { + "Level": 20, + "Power": 1.1, + "Text": "1.1x potion duration", + "Title": "Longer Potions I", + }, + { + "Level": 40, + "Power": 1.2, + "Text": "1.2x potion duration", + "Title": "Longer Potions II", + }, + { + "Level": 90, + "Power": 1.5, + "Text": "1.5x potion duration", + "Title": "Longer Potions III", + }, + { + "Level": 99, + "Power": 2, + "Text": "2x potion duration", + "Title": "Longer Potions IV", + }, + ], + "MagicPotion": [ + { + "Level": 80, + "Text": "Drinking a Tier I potion gives you the effects of a Tier II potion", + "Title": "Magic Potions", + }, + ], + "MasteryCape": [ + { + "Level": 99, + "Text": "Awarded for reaching level 99 Mastery!", + "Title": "Mastery Cape", + }, + ], + "SupremePotions": [ + { + "Level": 90, + "Power": 10, + "Text": "10% chance when drinking a potion to get a free tier upgrade", + "Title": "Supreme Potions", + }, + ], + "TierElevenCrafting": [ + { + "Level": 90, + "Text": "Ability to craft Tier XI potions", + "Title": "Tier XI Crafting", + }, + ], + "TierElevenDrinking": [ + { + "Level": 70, + "Text": "Ability to drink Tier XI potions", + "Title": "Tier XI Consumption", + }, + ], + "TierNineCrafting": [ + { + "Level": 70, + "Text": "Ability to craft Tier IX potions", + "Title": "Tier IX Crafting", + }, + ], + "TierNineDrinking": [ + { + "Level": 50, + "Text": "Ability to drink Tier IX potions", + "Title": "Tier IX Consumption", + }, ], - "idle": [ - "rbxassetid://118206736797563", + "TierTenCrafting": [ + { + "Level": 80, + "Text": "Ability to craft Tier X potions", + "Title": "Tier X Crafting", + }, ], - "jump": [ - "rbxassetid://123768149210741", + "TierTenDrinking": [ + { + "Level": 60, + "Text": "Ability to drink Tier X potions", + "Title": "Tier X Consumption", + }, ], }, }, - "configName": "Hoverboard | Ducky", + "configName": "Mastery | Potions", "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.558Z", - "hashShort": "1421b433abd21276", + "dateModified": "2025-07-05T23:29:23.718Z", + "hashShort": "2b37824ea2bbbbfb", }, { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 3 clans in the 2024 Raid Clan Battle!", - "DisplayName": "Cosmic Hoverboard", - "Icon": "rbxassetid://15311108491", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Cosmic", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.552Z", - "hashShort": "17349d3a727c61cd", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Animation": 11897877992, - "BobRate": 3, - "CanBeShiny": true, - "DefaultJumpSpeedBoost": 1, - "Desc": "When you gotta go, you gotta go.", - "DisplayName": "Toilet", - "HoverHeight": 6, - "Icon": "rbxassetid://16499939383", - "MaxRoll": 35, - "PitchScale": 0, - "ProductId": 1762008925, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RotationLimit": 0, - "ShinyParticleScale": 1.2, - "Sounds": { - "equip": [ - "rbxassetid://16499531238", - ], - "idle": [ - "rbxassetid://16499530045", - ], - "jump": [ - "rbxassetid://16499530188", - ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | Toilet", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.559Z", - "hashShort": "28d225e8d1aab92f", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "CanBeShiny": true, - "Desc": "Holographic projection!", - "DisplayName": "Hologram Hoverboard", - "Icon": "rbxassetid://16499939894", - "ProductId": 1762008523, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "ShinyParticleScale": 0.75, - "Sounds": { - "equip": [ - "rbxassetid://16499531105", - ], - "idle": [ - "rbxassetid://16499531403", - ], - "jump": [ - "rbxassetid://16499530923", - ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | Hologram", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.563Z", - "hashShort": "9682980b9ce48560", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Animation": 11897877992, - "BobRate": 3, - "CanBeShiny": true, - "DefaultJumpSpeedBoost": 1, - "Desc": "Off to space in a rocketship!", - "DisplayName": "Rocket", - "HoverHeight": 6, - "Icon": "rbxassetid://16499939654", - "MaxRoll": 35, - "PitchScale": 0, - "ProductId": 1762009490, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RotationLimit": 0, - "ShinyParticleScale": 1.5, - "Sounds": { - "equip": [ - "rbxassetid://16499530718", - ], - "idle": [ - "rbxassetid://16499530510", - ], - "jump": [ - "rbxassetid://16499530360", - ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | Rocket", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.556Z", - "hashShort": "7b062aa930ffb298", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Obtained by completing area quests!", - "DisplayName": "M-10 Hoverboard", - "Icon": "rbxassetid://14910757021", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | M-10", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.040Z", - "hashShort": "72d08f5fdef8a0a8", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "🌈 Found in The Forever Pack!", - "DisplayName": "Tiger Hoverboard", - "Icon": "rbxassetid://15280245363", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://88643014063908", - ], - "idle": [ - "rbxassetid://102587410191498", - ], - "jump": [ - "rbxassetid://82114109506343", - ], - }, - }, - "configName": "Hoverboard | Tiger", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.559Z", - "hashShort": "c9dda03dae5ffb77", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 3 clans in the 2024 Quest Clan Battle!", - "DisplayName": "Bleebo The Alien Hoverboard", - "Icon": "rbxassetid://16756713145", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Bleebo The Alien", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.553Z", - "hashShort": "dca5d4ec97428eb0", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Animation": 11897877992, - "Animator": null, - "BobRate": 3, - "CanBeShiny": true, - "Desc": "Fly around on your own personal helicopter!", - "DisplayName": "Helicopter", - "HoverHeight": 6, - "Icon": "rbxassetid://17027856430", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RotationLimit": 0, - "ShinyParticleScale": 1, - "Sounds": { - "equip": [ - "rbxassetid://17026760399", - ], - "idle": [ - "rbxassetid://17026760207", - ], - "jump": [ - "rbxassetid://17026749736", - ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | Helicopter", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.752Z", - "hashShort": "e03b8c7a3fd20982", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "CanBeShiny": true, - "Desc": "GET YOUR HOT DOOOOOOGS!", - "DisplayName": "Hotdog Hoverboard", - "Icon": "rbxassetid://17027857468", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": { - "equip": [ - "rbxassetid://17026760782", - ], - "idle": [ - "rbxassetid://17026760662", - ], - "jump": [ - "rbxassetid://17026760782", - ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | Hotdog", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.748Z", - "hashShort": "ba1ebc9abecc230f", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Animator": null, - "CanBeShiny": true, - "Desc": "Did it just blink at me?", - "DisplayName": "Nightmare Hoverboard", - "Icon": "rbxassetid://17027856587", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "Setup": null, - "ShinyParticleScale": 0.75, - "Sounds": { - "equip": [ - "rbxassetid://17026761184", - ], - "idle": [ - "rbxassetid://17026760975", - ], - "jump": [ - "rbxassetid://17026749861", - ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | Nightmare", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.582Z", - "hashShort": "33ab71f7d49f976b", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Pixel Clan Battle!", - "DisplayName": "Pixel Dragon Hoverboard", - "Icon": "rbxassetid://17027856286", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Pixel Dragon", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.585Z", - "hashShort": "42a968aef1522635", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "👾 Found in Glitched Gifts!", - "DisplayName": "Glitched Hoverboard", - "Icon": "rbxassetid://17284845446", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://17296108429", - ], - "idle": [ - "rbxassetid://17296107110", - ], - "jump": [ - "rbxassetid://17296107350", - "rbxassetid://17296106878", - "rbxassetid://17296107509", - ], - }, - }, - "configName": "Hoverboard | Glitched", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.595Z", - "hashShort": "065a2259317e0292", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Bubble Clan Battle!", - "DisplayName": "Bubble Hoverboard", - "Icon": "rbxassetid://17277981816", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://17296108429", - ], - "idle": [ - "rbxassetid://17296108094", - ], - "jump": [ - "rbxassetid://17296108234", - ], - }, - }, - "configName": "Hoverboard | Bubble", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.587Z", - "hashShort": "605ce24f143874ea", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Screeeeeech out of there!", - "DisplayName": "Night Terror Hoverboard", - "Icon": "rbxassetid://17375210703", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": [], - "Tradable": true, - }, - "configName": "Hoverboard | Night Terror", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.588Z", - "hashShort": "11e68eefba1e069a", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "CanBeShiny": true, - "Desc": "REAL GOLD I SWEAR!", - "DisplayName": "Rich Hoverboard", - "Icon": "rbxassetid://17452051703", - "ProductId": 1826332082, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": { - "equip": [ - "rbxassetid://17459204249", - ], - "idle": [ - "rbxassetid://17459205488", - ], - "jump": [ - "rbxassetid://17459206068", - "rbxassetid://17459204406", - "rbxassetid://17459204891", - ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | Rich", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.590Z", - "hashShort": "7ae8625dfbc157bc", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "CanBeShiny": true, - "Desc": "Shattered into pieces!", - "DisplayName": "Mosaic Hoverboard", - "Icon": "rbxassetid://17452051854", - "ProductId": 1826331943, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": { - "equip": [ - "rbxassetid://17459250353", - ], - "idle": [ - "rbxassetid://17459250056", - ], - "jump": [ - "rbxassetid://17459249701", - "rbxassetid://17459249381", - "rbxassetid://17459250694", - ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | Mosaic", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.591Z", - "hashShort": "00a20ee014331b5c", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Animation": 2506281703, - "Animator": null, - "BlockcastScale": 0, - "BobRate": 0, - "CanBeShiny": true, - "Desc": "A hot red supercar! What else could you ask for? Vrooom!", - "DisplayName": "Supercar", - "HoverHeight": 2.25, - "Icon": "rbxassetid://17452051536", - "IdlePitchScale": 0, - "IdleVolume": 3, - "IdleVolumeSpeedScale": -1, - "MaxRoll": 0, - "PitchScale": 0, - "ProductId": 1826332258, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RotationLimit": { - "m": null, - "t": "numeric", - "v": "inf", - }, - "ShinyParticleScale": 1, - "SkateMode": true, - "Sounds": { - "equip": [ - 14881658800, - ], - "idle": [ - 14881616188, - ], - "idle2": [ - 14881713952, - ], - "jump": [ - 3510107658, - ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | Supercar", - "dateCreated": null, - "dateModified": "2026-04-18T15:56:47.223Z", - "hashShort": "d5a956a2f46cdc83", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Fragmented Clan Battle!", - "DisplayName": "Fragmented Hoverboard", - "Icon": "rbxassetid://17513943752", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://17526565785", - ], - "idle": [ - "rbxassetid://17526566240", - ], - "jump": [ - "rbxassetid://17526566370", - "rbxassetid://17526566022", - "rbxassetid://17526565911", - ], - }, - }, - "configName": "Hoverboard | Fragmented", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.593Z", - "hashShort": "dd618af3787f68ba", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Animator": null, - "CanBeShiny": false, - "Desc": "WEEE WOOO WEEE WOOO!", - "DisplayName": "Police Hoverboard", - "Icon": "rbxassetid://17602510167", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": { - "equip": [ - "rbxassetid://17637411134", - ], - "idle": [ - "rbxassetid://17637284444", - "rbxassetid://17637411911", - ], - "jump": [ - "rbxassetid://17637284949", - "rbxassetid://17637284653", - "rbxassetid://17637285182", - ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | Police", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.586Z", - "hashShort": "9591e97ec3303346", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "🌊 Surf's up! 🤙 -🌴 Found in Summer Gifts!", - "DisplayName": "Surfboard", - "Icon": "rbxassetid://14910756337", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://17687558595", - ], - "idle": [ - "rbxassetid://17687559018", - ], - "jump": [ - "rbxassetid://17687557581", - "rbxassetid://17687559292", - "rbxassetid://17687557831", - ], - }, - }, - "configName": "Hoverboard | Surfboard", - "dateCreated": null, - "dateModified": "2025-07-05T23:28:50.053Z", - "hashShort": "d7f8165e4bea051a", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "01101110 01100101 01110010 01100100 -Found in the Hacker Pack!", - "DisplayName": "Hacker Hoverboard", - "Icon": "rbxassetid://17761141100", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://17756016330", - ], - "idle": [ - "rbxassetid://17756016078", - ], - "jump": [ - "rbxassetid://17756016632", - "rbxassetid://17756016861", - "rbxassetid://17756014971", - ], - }, - }, - "configName": "Hoverboard | Hacker", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "ff4b50d322e94012", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Wicked Clan Battle!", - "DisplayName": "Wicked Hoverboard", - "Icon": "rbxassetid://17761140826", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://17768693935", - ], - "idle": [ - "rbxassetid://17768693518", - ], - "jump": [ - "rbxassetid://17768694141", - "rbxassetid://17768694838", - "rbxassetid://17768695172", - ], - }, - }, - "configName": "Hoverboard | Wicked", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "55e9c191deefc52f", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "👼👿 Found in Good vs Evil Gift!", - "DisplayName": "Good vs. Evil Hoverboard", - "Icon": "rbxassetid://18123300092", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://18151874045", - ], - "idle": [ - "rbxassetid://18151873799", - ], - "jump": [ - "rbxassetid://18151874486", - "rbxassetid://18151874296", - "rbxassetid://18151874734", - ], - }, - }, - "configName": "Hoverboard | Good vs Evil", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "bf9b10fbadf4879f", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Safety Clan Battle!", - "DisplayName": "Safety Hoverboard", - "Icon": "rbxassetid://18127021259", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://18252156889", - ], - "idle": [ - "rbxassetid://18252157473", - ], - "jump": [ - "rbxassetid://18252157197", - "rbxassetid://18252157786", - "rbxassetid://18252158085", - ], - }, - }, - "configName": "Hoverboard | Safety", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "fc496d1fcffa2009", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Bring the party! Glide through in style! ✨ Found in Rave Gifts!", - "DisplayName": "Rave Hoverboard", - "Icon": "rbxassetid://18351926226", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://18351746746", - "rbxassetid://18351748237", - "rbxassetid://18351749045", - ], - "idle": [ - "rbxassetid://18351747064", - ], - "jump": [ - "rbxassetid://18351747492", - "rbxassetid://18351749342", - "rbxassetid://18351748791", - ], - }, - }, - "configName": "Hoverboard | Rave", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "c6a72591785bdd8d", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Animation": 11897877992, - "BobRate": 3, - "CanBeShiny": true, - "Desc": "Kick back and relax like royalty!", - "DisplayName": "Throne Hoverboard", - "HoverHeight": 6, - "Icon": "rbxassetid://18539294870", - "ProductId": 1881198159, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RotationLimit": 0, - "ShinyParticleScale": 1, - "Sounds": { - "equip": [ - "rbxassetid://18551758191", - ], - "idle": [ - "rbxassetid://18552441652", - ], - "jump": [ - "rbxassetid://18551759339", - "rbxassetid://18551757457", - "rbxassetid://18551757623", - ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | Throne", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "f362e9d11813c2a5", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "CanBeShiny": true, - "Desc": "With pepperoni, without pineapple!", - "DisplayName": "Pizza Hoverboard", - "Icon": "rbxassetid://18539295726", - "ProductId": 1881197707, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": { - "equip": [ - "rbxassetid://18551757917", - ], - "idle": [ - "rbxassetid://18551759877", - ], - "jump": [ - "rbxassetid://18551758502", - "rbxassetid://18551758711", - "rbxassetid://18551759560", - ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | Pizza", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "933371a4fc8854a3", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Animator": null, - "CanBeShiny": true, - "Desc": ":3 pop :3 pop :3 pop", - "DisplayName": "Popcat Hoverboard", - "Icon": "rbxassetid://18539295537", - "ProductId": 1881197449, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "Setup": null, - "ShinyParticleScale": 1, - "Sounds": { - "equip": [ - "rbxassetid://18551760110", - ], - "idle": [ - "rbxassetid://18552854797", - ], - "jump": [ - "rbxassetid://18552855278", - "rbxassetid://18552855479", - "rbxassetid://18552855059", - ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | Popcat", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "31aac8b85fdcff5e", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Cha-ching! Dolla' dolla' bills ya'll!", - "DisplayName": "Millionaire Hoverboard", - "Icon": "rbxassetid://18539295902", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://18551761750", - ], - "idle": [ - "rbxassetid://18551762296", - ], - "jump": [ - "rbxassetid://18551761986", - "rbxassetid://18551762896", - "rbxassetid://18551762594", - ], - }, - }, - "configName": "Hoverboard | Millionaire", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "2a7d7d61d83366c4", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Clown Clan Battle!", - "DisplayName": "Clown Hoverboard", - "Icon": "rbxassetid://18556730015", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://18670428358", - ], - "idle": [ - "rbxassetid://18670427780", - ], - "jump": [ - "rbxassetid://18670428016", - "rbxassetid://18670426725", - "rbxassetid://18670427575", - ], - }, - }, - "configName": "Hoverboard | Clown", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "065bd803ac44f046", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Faster than a stampede of dinos!", - "DisplayName": "Dino Hoverboard", - "Icon": "rbxassetid://18673988926", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://18670426195", - ], - "idle": [ - "rbxassetid://18670427043", - ], - "jump": [ - "rbxassetid://18670426549", - "rbxassetid://18670425372", - "rbxassetid://18670427213", - ], - }, - }, - "configName": "Hoverboard | Dino", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "2c4f356d024ef43b", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Ice Cream Clan Battle!", - "DisplayName": "Ice Cream Hoverboard", - "Icon": "rbxassetid://18856413784", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://99471941929125", - ], - "idle": [ - "rbxassetid://18252157786", - ], - "jump": [ - "rbxassetid://137244612282875", - "rbxassetid://92537117161811", - "rbxassetid://80877763357290", - ], - }, - }, - "configName": "Hoverboard | Ice Cream", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "8404c59fe13b7128", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Faster than the speed of light!", - "DisplayName": "Aura Hoverboard", - "Icon": "rbxassetid://18856413934", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Aura", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "08aa6ba99ff93756", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "🍓 Juicy, sweet, and fast! 🍓", - "DisplayName": "Strawberry Hoverboard", - "Icon": "rbxassetid://86730873153798", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://120986114838331", - ], - "idle": [ - "rbxassetid://90990178890073", - ], - "jump": [ - "rbxassetid://115325188076060", - "rbxassetid://98554516294595", - "rbxassetid://125132165741510", - ], - }, - }, - "configName": "Hoverboard | Strawberry", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "f329e7ab0e400500", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Caution wet paint!", - "DisplayName": "Art Hoverboard", - "Icon": "rbxassetid://72358393018887", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://116123174038657", - ], - "idle": [ - "rbxassetid://117345472200165", - ], - "jump": [ - "rbxassetid://86811526485418", - "rbxassetid://116117969156643", - "rbxassetid://77917141921172", - ], - }, - }, - "configName": "Hoverboard | Art", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "d44f1f4e43da7c35", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Rave Crab Clan Battle!", - "DisplayName": "Rave Crab Hoverboard", - "Icon": "rbxassetid://104010438711348", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://127297605847035", - ], - "idle": [ - "rbxassetid://73276500471130", - ], - "jump": [ - "rbxassetid://133984231025677", - "rbxassetid://126951019768379", - "rbxassetid://124024086900136", - ], - }, - }, - "configName": "Hoverboard | Rave Crab", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "b93620422798be94", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Upside Down Clan Battle!", - "DisplayName": "Reversed Hoverboard", - "Icon": "rbxassetid://104003058332482", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://131657036440279", - ], - "idle": [ - "rbxassetid://109008992005347", - ], - "jump": [ - "rbxassetid://75433948107955", - ], - }, - }, - "configName": "Hoverboard | Reversed", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "0abc82d9bd4d09d2", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Earth, fire, water, ice, and all that!", - "DisplayName": "Elemental Hoverboard", - "Icon": "rbxassetid://101555005426126", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://127087646371704", - ], - "idle": [ - "rbxassetid://78875846999309", - ], - "jump": [ - "rbxassetid://104811511655918", - ], - }, - }, - "configName": "Hoverboard | Elemental", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "567662257569b3b9", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Found in the Pumpkin Gift!", - "DisplayName": "Pumpkin Cat Hoverboard", - "Icon": "rbxassetid://92900937122832", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://71928776553803", - ], - "idle": [ - "rbxassetid://95108682670473", - ], - "jump": [ - "rbxassetid://82122552299009", - ], - }, - }, - "configName": "Hoverboard | Pumpkin Cat", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "36af1d6f58cd430c", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Found in the Spider Pack!", - "DisplayName": "Web Hoverboard", - "Icon": "rbxassetid://76504501851707", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://100828934639695", - ], - "idle": [ - "rbxassetid://81170050373448", - ], - "jump": [ - "rbxassetid://73955618282141", - ], - }, - }, - "configName": "Hoverboard | Web", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "85266ca8ea9e1d49", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Obtained from the Halloween 2024 Quests!", - "DisplayName": "Vampire Bat Hoverboard", - "Icon": "rbxassetid://111125773128350", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://136004587128798", - ], - "idle": [ - "rbxassetid://100081183731600", - ], - "jump": [ - "rbxassetid://82874763227894", - ], - }, - }, - "configName": "Hoverboard | Vampire Bat", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "203a043df425389d", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Found in the Candy Corn Gift!", - "DisplayName": "Witch Cat Hoverboard", - "Icon": "rbxassetid://103768732773689", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://124186610783745", - ], - "idle": [ - "rbxassetid://125636908316423", - ], - "jump": [ - "rbxassetid://100081183731600", - ], - }, - }, - "configName": "Hoverboard | Witch Cat", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "0ecf6090f86c9edc", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Ghost Clan Battle!", - "DisplayName": "Ghost Hoverboard", - "Icon": "rbxassetid://135978414574016", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://124083915816008", - ], - "idle": [ - "rbxassetid://74603654873510", - ], - "jump": [ - "rbxassetid://118563623791477", - ], - }, - }, - "configName": "Hoverboard | Ghost", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "4e4f38ef16acf3be", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Summon the force! Spawns with a random color!", - "DisplayName": "Forcefield Hoverboard", - "Icon": "rbxassetid://127428987246427", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Setup": null, - "Sounds": { - "equip": [ - "rbxassetid://79278574468993", - ], - "idle": [ - "rbxassetid://78924798235258", - ], - "jump": [ - "rbxassetid://105220130736381", - ], - }, - }, - "configName": "Hoverboard | Forcefield", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "91acd2c12e065f17", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "CanBeShiny": true, - "Desc": "Pencil with #2 lead", - "DisplayName": "Pencil Hoverboard", - "Icon": "rbxassetid://113564669329061", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": { - "equip": [ - "rbxassetid://101976494467819", - ], - "idle": [ - "rbxassetid://76572833155615", - ], - "jump": [ - "rbxassetid://123743368170016", - ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | Pencil", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "61bc1826ef18ad04", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Blimp Dragon Clan Battle!", - "DisplayName": "Blimp Dragon Hoverboard", - "Icon": "rbxassetid://96120997011987", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://96881191425969", - ], - "idle": [ - "rbxassetid://123430710794227", - ], - "jump": [ - "rbxassetid://127804007844699", - ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | Blimp Dragon", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "174c604be9945cc5", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "CanBeShiny": true, - "Desc": "Scrrrrrrrr! Scrrrrrrrr!", - "DisplayName": "Electric Guitar Hoverboard", - "Icon": "rbxassetid://105994679046982", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": { - "equip": [ - "rbxassetid://131035418972504", - ], - "idle": [ - "rbxassetid://85855123674398", - ], - "jump": [ - "rbxassetid://138013621005610", - ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | Electric Guitar", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "5b2469f4dba9919d", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "little paw prints", - "DisplayName": "Paw Print Hoverboard", - "Icon": "rbxassetid://91290351020499", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://121365445530549", - ], - "idle": [ - "rbxassetid://85002799749705", - ], - "jump": [ - "rbxassetid://138778146730896", - ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | Paw Print", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "4d958a6a68a4cc5c", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Animation": 2506281703, - "BlockcastScale": 0, - "BobRate": 0, - "CanBeShiny": true, - "Desc": "MOVE OUT THE WAY!", - "DisplayName": "Tank", - "HoverHeight": 0.23, - "Icon": "rbxassetid://137082519504492", - "IdlePitchScale": 0, - "IdleVolume": 2, - "IdleVolumeSpeedScale": 0, - "MaxRoll": 0, - "PitchScale": 0, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RotationLimit": { - "m": null, - "t": "numeric", - "v": "inf", - }, - "ShinyParticleScale": 1, - "SkateMode": true, - "Sounds": { - "equip": [ - "rbxassetid://82426788617363", - ], - "idle": [ - "rbxassetid://72506916075753", - ], - "jump": [ - "rbxassetid://126321633237733", - ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | Tank", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2026-04-18T15:56:47.233Z", - "hashShort": "c3be114369cef88f", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "What do these little lines mean?!", - "DisplayName": "Ruler Hoverboard", - "Icon": "rbxassetid://79346248252472", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://138025106053581", - ], - "idle": [ - "rbxassetid://121746924468436", - ], - "jump": [ - "rbxassetid://93268074832189", - ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | Ruler", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "a5784536994e9926", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Can you eat crayons?", - "DisplayName": "Crayon Hoverboard", - "Icon": "rbxassetid://84133962454080", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": [], - "Tradable": true, - }, - "configName": "Hoverboard | Crayon", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "2320119f7877e395", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "leave 'em in the .. 🍂🍁🌿🍃 leaves", - "DisplayName": "Autumn Hoverboard", - "Icon": "rbxassetid://126077829420151", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://136716577098237", - ], - "idle": [ - "rbxassetid://95738605773569", - ], - "jump": [ - "rbxassetid://80848245318072", - ], - }, - }, - "configName": "Hoverboard | Autumn", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "3fd1d403d2f6d612", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Gotta go! gobble gobble!", - "DisplayName": "Turkey Hoverboard", - "Icon": "rbxassetid://104956378883955", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://91039191206603", - ], - "idle": [ - "rbxassetid://70791748470343", - ], - "jump": [ - "rbxassetid://78855054093855", - ], - }, - }, - "configName": "Hoverboard | Turkey", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "91565b34b08bb101", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Bee Clan Battle!", - "DisplayName": "Bee Hoverboard", - "Icon": "rbxassetid://14910770233", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://100681568572549", - ], - "idle": [ - "rbxassetid://89224538861170", - ], - "jump": [ - "rbxassetid://139295889146218", - ], - }, - }, - "configName": "Hoverboard | Bee", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "61ecacfdadd5facb", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "I think it's snowing!", - "DisplayName": "Snowflake Hoverboard", - "Icon": "rbxassetid://75218651967088", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://77324129249222", - ], - "idle": [ - "rbxassetid://93315821528363", - ], - "jump": [ - "rbxassetid://81787959541508", - ], - }, - }, - "configName": "Hoverboard | Snowflake", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "50a0fbf72ff4b4da", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Sweeeeeet I love candy canes!", - "DisplayName": "Candy Cane Hoverboard", - "Icon": "rbxassetid://74381927537414", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://108000256742283", - ], - "idle": [ - "rbxassetid://135371599615340", - ], - "jump": [ - "rbxassetid://100894417890087", - ], - }, - }, - "configName": "Hoverboard | Candy Cane", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "b3727e05b225eaa7", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Gingerbread Clan Battle!", - "DisplayName": "Gingerbread Hoverboard", - "Icon": "rbxassetid://118516797186175", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://116171088883033", - ], - "idle": [ - "rbxassetid://129855673388630", - ], - "jump": [ - "rbxassetid://78705373207967", - ], - }, - }, - "configName": "Hoverboard | Gingerbread", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "cbfefb3ca01be9fa", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Diamond Clan Battle!", - "DisplayName": "Diamond Hoverboard", - "Icon": "rbxassetid://14910757305", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Diamond", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "0e4419565a186f25", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2024 Blurred Clan Battle!", - "DisplayName": "Blurred Hoverboard", - "Icon": "rbxassetid://134893611907484", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://97821521708749", - ], - "idle": [ - "rbxassetid://72187750834667", - ], - "jump": [ - "rbxassetid://79426796657551", - ], - }, - }, - "configName": "Hoverboard | Blurred", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "86b0a4c405b3aece", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2025 Wyvern Clan Battle!", - "DisplayName": "Wyvern of Hades Hoverboard", - "Icon": "rbxassetid://103080624006267", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://88131588316412", - ], - "idle": [ - "rbxassetid://103319341107005", - ], - "jump": [ - "rbxassetid://103280125080397", - ], - }, - }, - "configName": "Hoverboard | Wyvern of Hades", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2026-04-25T17:31:35.823Z", - "hashShort": "98c43fdaa5510887", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Red light, green light!", - "DisplayName": "Pet Games Hoverboard", - "Icon": "rbxassetid://118257511137876", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://135483925138466", - ], - "idle": [ - "rbxassetid://84635980017066", - ], - "jump": [ - "rbxassetid://122827411778557", - ], - }, - }, - "configName": "Hoverboard | Pet Games", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "62476a89328140b0", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2025 Mushroom Clan Battle!", - "DisplayName": "Mushroom Hoverboard", - "Icon": "rbxassetid://73437399037786", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://122141340476698", - ], - "idle": [ - "rbxassetid://135390777126369", - ], - "jump": [ - "rbxassetid://121841509916595", - ], - }, - }, - "configName": "Hoverboard | Mushroom", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "5ac97257f3c2beb0", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "🔥 Blaze away and leave 'em in flames! 🔥", - "DisplayName": "Hellfire Hoverboard", - "Icon": "rbxassetid://133315600460960", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://118557230795776", - ], - "idle": [ - "rbxassetid://76805929032229", - ], - "jump": [ - "rbxassetid://79212298752857", - ], - }, - }, - "configName": "Hoverboard | Hellfire", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "1a2ab6dbf227f262", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2025 Holographic Clan Battle!", - "DisplayName": "Holographic Hoverboard", - "Icon": "rbxassetid://103941046192500", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://70457754737744", - ], - "idle": [ - "rbxassetid://94336915565161", - ], - "jump": [ - "rbxassetid://124935760573286", - ], - }, - }, - "configName": "Hoverboard | Holographic", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "b8a1b3c46ad95d19", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "💕 Glide through love at the speed of heart!", - "DisplayName": "Valentine's Hoverboard", - "Icon": "rbxassetid://115773151085992", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://127663878790269", - ], - "idle": [ - "rbxassetid://124945513461027", - ], - "jump": [ - "rbxassetid://104613779716544", - ], - }, - }, - "configName": "Hoverboard | Valentines", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "45ad30baa2cdfc52", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2025 Evil Clan Battle!", - "DisplayName": "Evil Hoverboard", - "Icon": "rbxassetid://83128724682991", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://128510221263119", - ], - "idle": [ - "rbxassetid://93074453176674", - ], - "jump": [ - "rbxassetid://85489764060509", - ], - }, - }, - "configName": "Hoverboard | Evil", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "90583087ed12250a", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Glide around and rip open some booster packs!", - "DisplayName": "Booster Hoverboard", - "Icon": "rbxassetid://139984973539698", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://73745152005776", - ], - "idle": [ - "rbxassetid://77150957127083", - ], - "jump": [ - "rbxassetid://89652934548669", - ], - }, - }, - "configName": "Hoverboard | Booster", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "e295763641953e53", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2025 Sphinx Clan Battle!", - "DisplayName": "Sphinx Hoverboard", - "Icon": "rbxassetid://104370511466864", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://110508519240348", - ], - "idle": [ - "rbxassetid://85426351855572", - ], - "jump": [ - "rbxassetid://107953240205142", - ], - }, - }, - "configName": "Hoverboard | Sphinx", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "11a13229f0d63dc8", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2025 Tie Dye Clan Battle!", - "DisplayName": "Tie Dye Hoverboard", - "Icon": "rbxassetid://81154668871970", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://92910015066248", - ], - "idle": [ - "rbxassetid://140542402615167", - ], - "jump": [ - "rbxassetid://117148585999409", - ], - }, - }, - "configName": "Hoverboard | Tie Dye", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "3f7a77ae70fbdef1", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "jelly jelly jelly!", - "DisplayName": "Jelly Hoverboard", - "Icon": "rbxassetid://72590702374703", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://102234210822621", - ], - "idle": [ - "rbxassetid://95693237363544", - ], - "jump": [ - "rbxassetid://135199956009241", - ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | Jelly", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "2b72dc582ccc4c07", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Hop through the areas like a bunny!", - "DisplayName": "Easter Bunny Hoverboard", - "Icon": "rbxassetid://14910757187", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Easter Bunny", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "763173ec63646033", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Earned from finding all eggs in the 2025 Easter Egg Hunt!", - "DisplayName": "Unicorn Hoverboard", - "Icon": "rbxassetid://15280245261", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": { - "equip": [ - "rbxassetid://107374325583389", - ], - "idle": [ - "rbxassetid://77295298543906", - ], - "jump": [ - "rbxassetid://135284128870437", - ], - }, - }, - "configName": "Hoverboard | Unicorn", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "8f61e7537821ee44", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "CanBeShiny": true, - "Desc": "Foxy tails! Leaves hearts everywhere!", - "DisplayName": "Kitsune Hoverboard", - "Icon": "rbxassetid://112130842952181", - "ProductId": 3274118414, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": { - "equip": [ - "rbxassetid://100556532656806", - ], - "idle": [ - "rbxassetid://109563056705789", - ], - "jump": [ - "rbxassetid://111026419646328", - ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | Kitsune", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "9371229ebafe1e47", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "CanBeShiny": true, - "Desc": "Wrapped in shadows!", - "DisplayName": "Corrupt Hoverboard", - "Icon": "rbxassetid://97624181709908", - "ProductId": 3274118281, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": { - "equip": [ - "rbxassetid://104197801158374", - ], - "idle": [ - "rbxassetid://122206258152425", - ], - "jump": [ - "rbxassetid://120305213255403", - ], - }, - "Tradable": true, - }, - "configName": "Hoverboard | Corrupt", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "0f750ce16d79859e", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "CanBeShiny": true, - "Desc": "Glowy eyes and stary sparkles!", - "DisplayName": "Astra Hoverboard", - "Icon": "rbxassetid://130263953093664", - "ProductId": 3274118157, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": [], - "Tradable": true, - }, - "configName": "Hoverboard | Astra", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "1b7c798450c4a2f3", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "🏀 Glide like a baller!", - "DisplayName": "Basketball Hoverboard", - "Icon": "rbxassetid://105651362878166", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Basketball", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "eb04a00cf3e79e44", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⭐ Dunk across the galaxy!", - "DisplayName": "Cosmic Basketball Hoverboard", - "Icon": "rbxassetid://80084292488611", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Cosmic Basketball", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "d456ad4d79cca60a", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Actually a flying barbell..", - "DisplayName": "Barbell Hoverboard", - "Icon": "rbxassetid://112739065863623", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Barbell", - "dateCreated": "2025-07-05T23:24:42.247Z", - "dateModified": "2025-07-05T23:24:42.247Z", - "hashShort": "4dff808cfd0fabb4", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Surf the sand!", - "DisplayName": "Sandcastle Hoverboard", - "Icon": "rbxassetid://109265349776682", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Sandcastle", - "dateCreated": "2025-07-12T16:08:19.828Z", - "dateModified": "2025-07-12T16:08:19.828Z", - "hashShort": "5e6dc636ac987286", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2025 Sun Angelus Clan Battle!", - "DisplayName": "Sun Angelus Hoverboard", - "Icon": "rbxassetid://97502060937589", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Sun Angelus", - "dateCreated": "2025-07-12T16:08:19.849Z", - "dateModified": "2026-04-18T15:56:48.456Z", - "hashShort": "81ca46c3b1ca22ad", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Putting together the pieces!", - "DisplayName": "Patchwork Hoverboard", - "Icon": "rbxassetid://72190442747062", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Patchwork", - "dateCreated": "2025-10-18T17:02:54.262Z", - "dateModified": "2025-10-18T17:02:54.262Z", - "hashShort": "a6b193fc3ed680d5", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Animation": 76698672439341, - "BobRate": 3, - "Desc": "No hoverboard, just broomstick!", - "DisplayName": "Broomstick", - "HoverHeight": 6, - "Icon": "rbxassetid://111418523199315", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "RotationLimit": 0, - "Sounds": [], - }, - "configName": "Hoverboard | Broomstick", - "dateCreated": "2025-10-18T17:02:54.263Z", - "dateModified": "2025-11-22T17:14:35.186Z", - "hashShort": "bb064b3a28c9e584", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Fast for those with little legs!", - "DisplayName": "Elf Hoverboard", - "Icon": "rbxassetid://71269662673061", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Elf", - "dateCreated": "2025-12-20T17:54:44.504Z", - "dateModified": "2025-12-20T17:54:44.504Z", - "hashShort": "038c3d4164026cdf", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2025 Silver Clan Battle!", - "DisplayName": "Silver Hoverboard", - "Icon": "rbxassetid://72158309750183", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Silver", - "dateCreated": "2025-12-20T17:54:44.515Z", - "dateModified": "2026-04-18T15:56:48.445Z", - "hashShort": "02a090301e7ddde3", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2026 Clover Clan Battle!", - "DisplayName": "Clover Hoverboard", - "Icon": "rbxassetid://103910630019047", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Clover", - "dateCreated": "2026-03-14T15:52:06.007Z", - "dateModified": "2026-04-18T15:56:48.453Z", - "hashShort": "ba6f8e9a00c57b64", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "Ride the treasure!", - "DisplayName": "Pot of Gold Hoverboard", - "Icon": "rbxassetid://135510303781807", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Pot of Gold", - "dateCreated": "2026-03-14T15:52:06.013Z", - "dateModified": "2026-04-18T15:56:48.499Z", - "hashShort": "d33dbe47f46b356c", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2026 Abstract Clan Battle!", - "DisplayName": "Abstract Hoverboard", - "Icon": "rbxassetid://128622887981671", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Abstract", - "dateCreated": "2026-04-18T15:56:48.453Z", - "dateModified": "2026-04-18T15:56:48.453Z", - "hashShort": "de2051ad5cd834c7", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "🌻🌹 flower power! 🌷🌼", - "DisplayName": "Blossom Hoverboard", - "Icon": "rbxassetid://135192770970710", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Blossom", - "dateCreated": "2026-04-18T15:56:48.489Z", - "dateModified": "2026-04-18T15:56:48.489Z", - "hashShort": "b4c9973bc3ff465e", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2026 Starry Clan Battle!", - "DisplayName": "Starry Hoverboard", - "Icon": "rbxassetid://136865390648397", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Starry", - "dateCreated": "2026-04-25T17:31:35.822Z", - "dateModified": "2026-04-25T17:31:35.822Z", - "hashShort": "ae56d072fad43b6c", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top 10 clans in the 2026 Angel Clan Battle!", - "DisplayName": "Angel Hoverboard", - "Icon": "rbxassetid://98861838388922", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Angel", - "dateCreated": "2026-05-09T17:51:24.308Z", - "dateModified": "2026-05-09T17:51:24.308Z", - "hashShort": "6748cf5ff00522fd", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "You can't speed away from the void!", - "DisplayName": "Void Hoverboard", - "Icon": "rbxassetid://139230989621669", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Void", - "dateCreated": "2026-05-09T17:51:24.314Z", - "dateModified": "2026-05-09T17:51:24.314Z", - "hashShort": "07ddcb3454bc7e53", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "CanBeShiny": true, - "Desc": "Drift off into a daydream! 💤", - "DisplayName": "Daydream Hoverboard", - "Icon": "rbxassetid://117340492688703", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": [], - }, - "configName": "Hoverboard | Daydream", - "dateCreated": "2026-06-13T23:12:55.846Z", - "dateModified": "2026-06-13T23:12:55.846Z", - "hashShort": "6441d3a8f7d34dc9", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "CanBeShiny": true, - "Desc": "En garde!", - "DisplayName": "Samurai Hoverboard", - "Icon": "rbxassetid://101915813934665", - "ProductId": 3604359462, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": [], - "Tradable": true, - }, - "configName": "Hoverboard | Samurai", - "dateCreated": "2026-06-13T23:12:55.848Z", - "dateModified": "2026-06-13T23:12:55.848Z", - "hashShort": "914e4a3656f35f63", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "CanBeShiny": true, - "Desc": "Feeling lucky today?", - "DisplayName": "Lucky Block Hoverboard", - "Icon": "rbxassetid://133378339379374", - "ProductId": 3604359252, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": [], - "Tradable": true, - }, - "configName": "Hoverboard | Lucky Block", - "dateCreated": "2026-06-13T23:12:55.847Z", - "dateModified": "2026-06-13T23:12:55.847Z", - "hashShort": "a3d987b24168ffd7", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "CanBeShiny": true, - "Desc": "Nyan nyan nyan nyan! 🌈", - "DisplayName": "Nyan Cat Hoverboard", - "Icon": "rbxassetid://116839142075918", - "ProductId": 3604359231, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "ShinyParticleScale": 1, - "Sounds": [], - "Tradable": true, - }, - "configName": "Hoverboard | Nyan Cat", - "dateCreated": "2026-06-13T23:12:55.850Z", - "dateModified": "2026-06-13T23:12:55.850Z", - "hashShort": "2481f9aff7577421", - }, - { - "category": "Hoverboards", - "collection": "Hoverboards", - "configData": { - "Desc": "⚔️ Rewarded to the top clans in the 2026 Thunderstorm Clan Battle!", - "DisplayName": "Thunderstorm Hoverboard", - "Icon": "rbxassetid://132032003832506", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "Sounds": [], - }, - "configName": "Hoverboard | Thunderstorm", - "dateCreated": "2026-06-27T16:07:07.924Z", - "dateModified": "2026-06-27T16:07:07.924Z", - "hashShort": "1948df9a3921af33", - }, - ], - "status": "ok", -} -`; - -exports[`Pet Simulator Public Live API Test Lootboxes shape 1`] = ` -{ - "data": [ - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Big present with lots of goodies!", - "DisplayName": "2023 Large Christmas Present", - "Icon": "rbxassetid://15635476600", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - }, - "configName": "Large Christmas Present", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.235Z", - "hashShort": "8dba7cbb5ee42a65", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Open for a bunch of goodies!", - "DisplayName": "2023 Medium Christmas Present", - "Icon": "rbxassetid://15635476705", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, - }, - }, - "configName": "Medium Christmas Present", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.247Z", - "hashShort": "a44dd5d5a149b192", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Open for goodies!", - "DisplayName": "2023 Small Christmas Present", - "Icon": "rbxassetid://15635476827", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - }, - "configName": "Small Christmas Present", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.227Z", - "hashShort": "4877972d5b164bb5", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "TITANIC present with sooo many goodies! Includes chance for a Titanic & Huge pet!", - "DisplayName": "2023 Titanic Christmas Present", - "Icon": "rbxassetid://15635476408", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Titanic Christmas Present", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.232Z", - "hashShort": "fbded72d9ca82920", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Huge present with a ton of goodies!", - "DisplayName": "2023 X-Large Christmas Present", - "Icon": "rbxassetid://15635476534", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - }, - "configName": "X-Large Christmas Present", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.233Z", - "hashShort": "abe2445e0ab1ae23", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Special gift for attending the 2024 New Year's Party! Chance for Huge Party Crown Ducky!", - "DisplayName": "2024 New Year's Gift", - "Icon": "rbxassetid://15800024082", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "2024 New Years Gift", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.243Z", - "hashShort": "43ef1d7bc0ed6ea2", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Adventurer's Lootbox containing a chance for the Active Huge Egg, Huge Firefly, and other high value items!", - "DisplayName": "Adventurer's Lootbox", - "Icon": "rbxassetid://16745658276", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Adventurer Lootbox", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.229Z", - "hashShort": "625c971e7b3ba236", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Obtained from the Claw Machine!", - "DisplayName": "Arcade Egg 1x", - "Icon": "rbxassetid://16759780030", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Arcade Egg 1", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.238Z", - "hashShort": "0f6d84db33ba3963", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Obtained from the Claw Machine!", - "DisplayName": "Arcade Egg 5x", - "Icon": "rbxassetid://16759779878", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Arcade Egg 2", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.239Z", - "hashShort": "d68f30e5dafc6d4f", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Obtained from the Claw Machine!", - "DisplayName": "Arcade Egg 10x", - "Icon": "rbxassetid://16759779792", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Arcade Egg 3", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.243Z", - "hashShort": "f7ac47907ef07d7d", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Obtained from the Claw Machine!", - "DisplayName": "Arcade Egg 20x", - "Icon": "rbxassetid://16759779714", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Arcade Egg 4", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.236Z", - "hashShort": "c93672ce41b086d1", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Obtained from the Claw Machine!", - "DisplayName": "Arcade Egg 50x", - "Icon": "rbxassetid://16759779609", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Arcade Egg 5", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.230Z", - "hashShort": "edacc91a52b3b379", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Awarded by completing the Hype Event after the update!", - "DisplayName": "Hype Egg", - "Icon": "rbxassetid://16901624489", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Hype Egg", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.233Z", - "hashShort": "d42e139759c98f4a", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Rewarded to the top 500 clans in clan battles! Chance for Huge Tech Samurai Cat!", - "DisplayName": "Clan Gift", - "Icon": "rbxassetid://17025063453", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Clan Gift", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.245Z", - "hashShort": "06ff215b68b7e36a", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Special gift in global events! -Chance for the Huge Lunar Moth!", - "DisplayName": "Global Event Gift", - "Icon": "rbxassetid://17024878528", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Global Event Gift", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.238Z", - "hashShort": "f924e167ec9b9871", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Made from Glitch Cores in the Glitched Event. Chance for a HUGE 404 Demon!", - "DisplayName": "Glitched Gift", - "Icon": "rbxassetid://17288649241", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Glitched Gift", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.222Z", - "hashShort": "9cfaa8f1c2aa059e", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Made from Seashells in the Summer Event. Chance for a HUGE Pineapple Monkey!", - "DisplayName": "Summer Gift", - "Icon": "rbxassetid://17671375342", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Summer Gift", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.243Z", - "hashShort": "787b9aea0a49071b", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Made from items in the Good vs. Evil Event. Chance for a HUGE!", - "DisplayName": "Good Gift", - "Icon": "rbxassetid://18100921410", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Good Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "3c8a270365fb703f", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Made from items in the Good vs. Evil Event. Chance for a HUGE!", - "DisplayName": "Evil Gift", - "Icon": "rbxassetid://18100921552", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Evil Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "f22a6c65f5639f4d", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Reward for playing the Good vs. Evil Event. Chance for a HUGE!", - "DisplayName": "Good vs. Evil Gift", - "Icon": "rbxassetid://18100928783", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Good vs Evil Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "c60ab9f10c753814", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Reward for playing Rave World's lucky tiles game. Chance for a HUGE!", - "DisplayName": "Rave Gift", - "Icon": "rbxassetid://18336837008", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Rave Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "3d5583af3c4cde00", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Earned from drops in the Dino Tycoon World. Chance for a HUGE!", - "DisplayName": "Dino Gift", - "Icon": "rbxassetid://18670684055", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Dino Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "e0ae7ecc16573610", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Earned from meteors in the Dino Tycoon World. Chance for a HUGE!", - "DisplayName": "Meteor Gift", - "Icon": "rbxassetid://18742082777", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Meteor Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "e6cacec8080dac76", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Reward for playing the Color Event. Chance for a HUGE!", - "DisplayName": "Color Gift", - "Icon": "rbxassetid://85136591230954", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Color Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "70195a06656f4068", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Reward for playing the Color Event. Chance for a HUGE!", - "DisplayName": "Graffiti Gift", - "Icon": "rbxassetid://133244977374611", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Graffiti Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "97a7cfa8d6c96d9b", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Reward for catching pets in the Elemental World! Chance for a HUGE!", - "DisplayName": "Elemental Gift", - "Icon": "rbxassetid://128952309639623", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Elemental Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "33fbd74502ce71f6", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Made from Pumpkins in the Haunted Backrooms. Chance for a HUGE!", - "DisplayName": "Pumpkin Gift", - "Icon": "rbxassetid://114513766713319", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Pumpkin Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "3be5f61f8e5ecf2f", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Made from Candy Corn in the Halloween Event. Chance for a HUGE!", - "DisplayName": "Candy Corn Gift", - "Icon": "rbxassetid://107004803757637", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Candy Corn Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "22c441eb80a70592", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Dropped in the Halloween Event's neighborhoods.", - "DisplayName": "Ghostface Gift", - "Icon": "rbxassetid://111099902427867", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Ghostface Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "0a26e5bb1c8a3816", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Reward in the Woodcutting minigame! Chance for a HUGE!", - "DisplayName": "Wooden Gift", - "Icon": "rbxassetid://113799638322740", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Wooden Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "74b29939d51ad67c", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Earned from drops in the "Line for a Huge Pet" Event. Chance for a HUGE!", - "DisplayName": "Adoption Gift", - "Icon": "rbxassetid://136345451971873", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Adoption Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "fcd4fed1b093396a", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Earned from time drops in the "Line for a Titanic Pet" Event. Chance for a HUGE!", - "DisplayName": "School Gift", - "Icon": "rbxassetid://138084904848130", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "School Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "36085025b43886a5", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Earned from the Autumn Boss Chest in the Autumn Event. Chance for a HUGE!", - "DisplayName": "Autumn Gift", - "Icon": "rbxassetid://79016165994597", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Autumn Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "9765d9e58dbf173d", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Found in the Forever Pack or Chest Hunt!", - "DisplayName": "Turkey Gift", - "Icon": "rbxassetid://89033758007241", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Turkey Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "8cea47473b86b8d6", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Earned from participating in the 2024 Anniversary Event!", - "DisplayName": "2024 Anniversary Gift", - "Icon": "rbxassetid://91598628386274", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "2024 Anniversary Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "3293b257614ff8d0", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Created using the Snow Machine during the Holiday Event!", - "DisplayName": "Snowflake Gift", - "Icon": "rbxassetid://80753300898363", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Snowflake Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "cfa322ee436ca3da", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Open for goodies!", - "DisplayName": "2024 Small Christmas Present", - "Icon": "rbxassetid://78444032843973", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - }, - "configName": "2024 Small Christmas Present", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "4141966beb7298e3", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Open for a bunch of goodies!", - "DisplayName": "2024 Medium Christmas Present", - "Icon": "rbxassetid://91349208436997", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, - }, - }, - "configName": "2024 Medium Christmas Present", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "c2c71dd7c99f5e81", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Big present with lots of goodies!", - "DisplayName": "2024 Large Christmas Present", - "Icon": "rbxassetid://71891761708931", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - }, - "configName": "2024 Large Christmas Present", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "b9bbf74f25a48fc5", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Huge present with a ton of goodies!", - "DisplayName": "2024 X-Large Christmas Present", - "Icon": "rbxassetid://121101105785977", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - }, - "configName": "2024 X-Large Christmas Present", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "c2ca77a17ed63063", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "GARGANTUAN present with sooo many goodies! Includes chance for a Gargantuan, Titanic & Huge pet!", - "DisplayName": "2024 Gargantuan Christmas Present", - "Icon": "rbxassetid://117601296319615", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "2024 Gargantuan Christmas Present", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "5030d6d8e870c9c1", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Special gift for attending the 2025 New Year's Party!!", - "DisplayName": "2025 New Year's Gift", - "Icon": "rbxassetid://122498561966140", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "2025 New Years Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "455888007b282c4f", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Found by saving pets from the Grinch Cat ice cubes!", - "DisplayName": "Jolly Gift", - "Icon": "rbxassetid://87807639552107", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Jolly Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "9adeddd32aab1e17", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Reward for defeating the final drawing boss in the Doodle World! Chance for a HUGE!", - "DisplayName": "Doodle Gift", - "Icon": "rbxassetid://88860297257801", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Doodle Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "69d069a640a050a1", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Earned from playing the Pet Games!", - "DisplayName": "Pet Games Gift", - "Icon": "rbxassetid://86173258251252", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Pet Games Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "d18c26c07d9f8857", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Awarded for being online before the update!", - "DisplayName": "More Hype Egg", - "Icon": "", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "More Hype Egg", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "545dcd11a0ebce83", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Awarded for being online before the update!", - "DisplayName": "Hype Egg #2", - "Icon": "rbxassetid://97453734073296", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Hype Egg 2", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2026-04-25T17:31:32.938Z", - "hashShort": "39370c9045112da8", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Obtained by using a Hellfire Core during the Cannon Tycoon!", - "DisplayName": "Hellfire Gift", - "Icon": "rbxassetid://130668450135546", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Hellfire Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "27445dfe8a8cb93a", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Open after the update to receive a Hype Egg!", - "DisplayName": "Locked Hype Egg #2!", - "Icon": "rbxassetid://137783546011560", - "Instant": true, - "InstantSound": "rbxassetid://77914312637440", - "MaxAmount": 1, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RequireSave": false, - "Tradable": false, - }, - "configName": "Locked Hype Egg", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2026-04-25T17:31:32.939Z", - "hashShort": "a5c9caf85ac2f59d", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Obtained during the Tower Tycoon Valentines Event!", - "DisplayName": "Love Gift", - "Icon": "rbxassetid://111562395194647", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Love Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "16376fcd9a445406", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Contains OP enchants! Including Tier X and IX!", - "DisplayName": "Mega Enchant Chest", - "Icon": "rbxassetid://117764701926181", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Mega Enchant Chest", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "275ea799cb45904a", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Contains OP Potions! Including The Cocktail II!", - "DisplayName": "Mega Potion Chest", - "Icon": "rbxassetid://78223799295283", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Mega Potion Chest", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "db8bfd669d47a73c", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Contains OP ultimates! Including Chest Spell, Tsunami and tons of Ultimate XP Potions!", - "DisplayName": "Mega Ultimate Chest", - "Icon": "rbxassetid://125621489436651", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Mega Ultimate Chest", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "02d40d5839f05db5", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Contains OP charms! Including the Exclusive Treasure Charm!", - "DisplayName": "Mega Charm Chest", - "Icon": "rbxassetid://120862195809324", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Mega Charm Chest", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "b1b7e389f5c2d0fe", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Contains OP enchants, ultimates, potions, charms and so much MORE!", - "DisplayName": "Mega Loot Chest", - "Icon": "rbxassetid://102254859923515", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Mega Boost Chest", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "5ea0251cfbfd6e1e", - }, - { - "category": "CardPacks", - "collection": "Lootboxes", - "configData": { - "Desc": "Contains 5 Fantasy Pack cards! - -Combine cards into pets & chance for a TITANIC card!", - "DisplayName": "Fantasy Pack", - "Icon": "rbxassetid://92535965955987", - "InventoryTags": [ - "Packs", - ], - "IsCardPack": true, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, - }, - "RequireSave": true, - "Rolls": 5, - "RollsBoostable": true, - }, - "configName": "Fantasy Pack", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "783607d12fdbf5ad", - }, - { - "category": "CardPacks", - "collection": "Lootboxes", - "configData": { - "Desc": "Contains 5 Retro Pack cards! - -Combine cards into pets & chance for a HUGE card!", - "DisplayName": "Retro Pack", - "Icon": "rbxassetid://88966826354072", - "InventoryTags": [ - "Packs", - ], - "IsCardPack": true, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "RequireSave": true, - "Rolls": 5, - "RollsBoostable": true, - }, - "configName": "Retro Pack", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "03a8c74257066ff6", - }, - { - "category": "CardPacks", - "collection": "Lootboxes", - "configData": { - "Desc": "Contains 5 Nightmare Pack cards! - -Combine cards into pets & chance for a HUGE card!", - "DisplayName": "Nightmare Pack", - "Icon": "rbxassetid://94005127802940", - "InventoryTags": [ - "Packs", - ], - "IsCardPack": true, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - "Rolls": 5, - "RollsBoostable": true, - }, - "configName": "Nightmare Pack", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "171f5a99ea5f4d71", - }, - { - "category": "CardPacks", - "collection": "Lootboxes", - "configData": { - "Desc": "Contains 5 Superhero Pack cards! - -Combine cards into EXCLUSIVE pets & chance for a TITANIC card!", - "DisplayName": "Superhero Pack", - "Icon": "rbxassetid://122557459853685", - "InventoryTags": [ - "Packs", - ], - "IsCardPack": true, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RequireSave": true, - "Rolls": 5, - }, - "configName": "Super Hero Pack", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "503cd2f4c84f0078", - }, - { - "category": "CardPacks", - "collection": "Lootboxes", - "configData": { - "Desc": "Contains 5 BIG Pack cards! - -Combine cards into pets & chance for a TITANIC card!", - "DisplayName": "BIG Pack", - "Icon": "rbxassetid://138485510461327", - "InventoryTags": [ - "Packs", - ], - "IsCardPack": true, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, - }, - "RequireSave": true, - "Rolls": 5, - "RollsBoostable": true, - }, - "configName": "BIG Pack", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "a7238b0e61204129", - }, - { - "category": "CardPacks", - "collection": "Lootboxes", - "configData": { - "Desc": "Contains 5 Pog Pack cards! - -Combine cards into pets & chance for a HUGE card!", - "DisplayName": "Pog Pack", - "Icon": "rbxassetid://99750379530554", - "InventoryTags": [ - "Packs", - ], - "IsCardPack": true, - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "RequireSave": true, - "Rolls": 5, - "RollsBoostable": true, - }, - "configName": "Pog Pack", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "89dd54e888c6ce6b", - }, - { - "category": "CardPacks", - "collection": "Lootboxes", - "configData": { - "Desc": "Contains 5 Meme Pack cards! - -Combine cards into EXCLUSIVE pets & chance for a TITANIC card!", - "DisplayName": "Meme Pack", - "Icon": "rbxassetid://137628683001800", - "InventoryTags": [ - "Packs", - ], - "IsCardPack": true, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RequireSave": true, - "Rolls": 5, - }, - "configName": "Meme Pack", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "2ef922ea649dfd99", - }, - { - "category": "CardPacks", - "collection": "Lootboxes", - "configData": { - "Desc": "Contains 5 Axolotl Pack cards! - -Combine cards into pets & chance for a HUGE card!", - "DisplayName": "Axolotl Pack", - "Icon": "rbxassetid://88730452047808", - "InventoryTags": [ - "Packs", - ], - "IsCardPack": true, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - "Rolls": 5, - "RollsBoostable": true, - }, - "configName": "Axolotl Pack", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "e7c36d76725c6d9e", - }, - { - "category": "CardPacks", - "collection": "Lootboxes", - "configData": { - "Desc": "Contains 5 Ninja Pack cards! - -Combine cards into pets & chance for a HUGE card!", - "DisplayName": "Ninja Pack", - "Icon": "rbxassetid://136542992100223", - "InventoryTags": [ - "Packs", - ], - "IsCardPack": true, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, - }, - "RequireSave": true, - "Rolls": 5, - "RollsBoostable": true, - }, - "configName": "Ninja Pack", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "b6c53854c13e7526", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Obtained during the St. Patrick's Raid Event!", - "DisplayName": "Lucky Gift", - "Icon": "rbxassetid://82101319883195", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Lucky Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "50fd07fe42265a98", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Rewarded to the top 500 clans in clan battles! Chance for Huge Lightning Bat!", - "DisplayName": "Clan Gift #2", - "Icon": "rbxassetid://126839917322650", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Clan Gift 2", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "ac6c8748def1ad2d", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Obtained during the Slime Factory Event!", - "DisplayName": "Slime Gift", - "Icon": "rbxassetid://123257637459556", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Slime Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "2570a08b7dd7cf33", - }, - { - "category": "CardPacks", - "collection": "Lootboxes", - "configData": { - "Desc": "Contains 5 Anime Pack cards! - -Combine cards into EXCLUSIVE pets & chance for a TITANIC card!", - "DisplayName": "Anime Pack", - "Icon": "rbxassetid://115390480422233", - "InventoryTags": [ - "Packs", - ], - "IsCardPack": true, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RequireSave": true, - "Rolls": 5, - }, - "configName": "Anime Pack", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "71f3722ceb6aeb84", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Obtained by winning the Easter Contest!", - "DisplayName": "Titanic Easter Gift", - "Icon": "rbxassetid://101374206073893", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Titanic Easter Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "b39c48e0449e96c1", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Obtained by participating in the Easter Contest!", - "DisplayName": "Huge Easter Gift", - "Icon": "rbxassetid://83528196707461", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Huge Easter Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "a5f700e31b4c96ce", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Open for the best high tier fishing loot!", - "DisplayName": "Deep Sea Treasure Chest", - "Icon": "rbxassetid://134556771269079", - "Instant": true, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - "Rolls": 4, - }, - "configName": "Deep Sea Treasure Chest", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "c67d8de65c79c686", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Reward for participating in the Fantasy World Time Trials!", - "DisplayName": "Time Trial Gift", - "Icon": "rbxassetid://123771590826264", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Time Trial Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "b9f3ae74037aaad9", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Earned from scoring points in the Infinite Basketball Mode! Chance for a HUGE!", - "DisplayName": "Basketball Gift", - "Icon": "rbxassetid://98133353621098", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Basketball Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "8d7ba6d2ead288c4", - }, - { - "category": "CardPacks", - "collection": "Lootboxes", - "configData": { - "Desc": "Contains 5 Ghostly Pack cards! - -Combine cards into EXCLUSIVE pets & chance for a TITANIC card!", - "DisplayName": "Ghostly Pack", - "Icon": "rbxassetid://75735723611442", - "InventoryTags": [ - "Packs", - ], - "IsCardPack": true, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RequireSave": true, - "Rolls": 5, - }, - "configName": "Ghostly Pack", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "090b6ef30a4794d4", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Earned from scoring points in the Infinite Basketball Mode! Chance for a HUGE!", - "DisplayName": "Cosmic Basketball Gift", - "Icon": "rbxassetid://128100365905918", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Cosmic Basketball Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "ac99c462dae4023b", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Earned from playing Tower Defense infinity mode!", - "DisplayName": "Tower Defense Gift", - "Icon": "rbxassetid://73523661611795", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Tower Defense Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "a42b14bd85e1e299", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Earned from playing Tower Defense infinity mode!", - "DisplayName": "Magma Tower Defense Gift", - "Icon": "rbxassetid://91692504768423", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Tower Defense Gift 2", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "542f90c6ca38a5df", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Earned from playing Tower Defense AFK mode!", - "DisplayName": "Matrix Tower Defense Gift", - "Icon": "rbxassetid://140098114840649", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Tower Defense Gift 3", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "1d31b4f86a11af24", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Earned from scoring points in the Muscle Race! Chance for a HUGE!", - "DisplayName": "Gym Gift", - "Icon": "rbxassetid://122519840679361", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Gym Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "90a0c8aa0a445c3a", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Earned from scoring points in the Muscle Race! Chance for a HUGE!", - "DisplayName": "Buff Gym Gift", - "Icon": "rbxassetid://111526967897666", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Buff Gym Gift", - "dateCreated": "2025-07-05T23:23:44.135Z", - "dateModified": "2025-07-05T23:23:44.135Z", - "hashShort": "227017f50b5a9a5b", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Obtained during the Summer Block Party Event!", - "DisplayName": "Sun Angelus Gift", - "Icon": "rbxassetid://93164862857884", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Sun Angelus Gift", - "dateCreated": "2025-07-12T16:08:43.349Z", - "dateModified": "2025-07-19T17:28:54.110Z", - "hashShort": "e1137cd8d4e047f7", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Made from combining Tropical Flowers. Chance for a HUGE!", - "DisplayName": "Tropical Gift", - "Icon": "rbxassetid://102925568846507", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Tropical Gift", - "dateCreated": "2025-07-12T16:08:43.356Z", - "dateModified": "2025-07-12T16:08:43.356Z", - "hashShort": "12bc67dde9620967", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "itsy bitsy spider climbed up the bag again!", - "DisplayName": "Spider Gift", - "Icon": "rbxassetid://126429650694857", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Spider Gift", - "dateCreated": "2025-10-18T17:03:25.431Z", - "dateModified": "2025-10-18T17:03:25.431Z", - "hashShort": "293ce1f823b4dacc", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Earned during Admin Abuse for the Halloween Event! Chance for a HUGE or TITANIC!", - "DisplayName": "Halloween Lucky Block Gift", - "Icon": "rbxassetid://96953600545455", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Celestial", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 9, - "_id": "Celestial", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Halloween Lucky Block Gift", - "dateCreated": "2025-10-18T17:03:25.446Z", - "dateModified": "2025-11-22T17:15:27.078Z", - "hashShort": "746b032fec7225b3", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Thank you Santa!", - "DisplayName": "Santa Gift", - "Icon": "rbxassetid://131570987085851", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Santa Gift", - "dateCreated": "2025-12-20T17:55:27.512Z", - "dateModified": "2025-12-20T17:55:27.512Z", - "hashShort": "23df0060f3e34a7f", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Sugary and minty fresh!", - "DisplayName": "Candycane Gift", - "Icon": "rbxassetid://129255617416340", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Candycane Gift", - "dateCreated": "2025-12-20T17:55:27.528Z", - "dateModified": "2025-12-20T17:55:27.528Z", - "hashShort": "b6423fb591e122de", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Special gift for attending the 2026 New Year's Party! Chance for Huge!", - "DisplayName": "2026 New Year's Gift", - "Icon": "rbxassetid://132620113371512", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "2026 New Years Gift", - "dateCreated": "2026-03-14T15:52:29.885Z", - "dateModified": "2026-03-14T15:52:29.885Z", - "hashShort": "b58ce9f43f110c6b", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Obtained during the St. Patrick's Raid Event!", - "DisplayName": "Horseshoe Gift", - "Icon": "rbxassetid://128588898475756", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Horseshoe Gift", - "dateCreated": "2026-03-14T15:52:29.892Z", - "dateModified": "2026-03-14T15:52:29.892Z", - "hashShort": "5e643fcb9e2ab71d", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Obtained during the 2026 Spring Event!", - "DisplayName": "Blossom Gift", - "Icon": "rbxassetid://75709922649471", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Blossom Gift", - "dateCreated": "2026-04-18T15:56:48.683Z", - "dateModified": "2026-04-18T15:56:48.683Z", - "hashShort": "0f5cafc0f87eee72", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Open after the update to receive a Hype Egg!", - "DisplayName": "Locked Hype Egg #3!", - "Icon": "rbxassetid://134782006786438", - "Instant": true, - "InstantSound": "rbxassetid://77914312637440", - "MaxAmount": 1, - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RequireSave": false, - "Tradable": false, - }, - "configName": "Locked Hype Egg 3", - "dateCreated": "2026-04-25T17:31:32.941Z", - "dateModified": "2026-04-25T17:31:32.941Z", - "hashShort": "ecefdbfd99338ddc", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Awarded for being online before the update!", - "DisplayName": "Hype Egg #3", - "Icon": "rbxassetid://78337968696120", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Hype Egg 3", - "dateCreated": "2026-04-25T17:31:32.952Z", - "dateModified": "2026-04-25T17:31:32.952Z", - "hashShort": "8856c2256bd9ab72", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Reward for participating in the Fantasy World Time Trials!", - "DisplayName": "Time Trial Gift #2", - "Icon": "rbxassetid://102646658598290", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Superior", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 8, - "_id": "Superior", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Time Trial Gift 2", - "dateCreated": "2026-05-02T17:32:37.069Z", - "dateModified": "2026-05-02T17:32:37.069Z", - "hashShort": "746f9afdcfe02cdb", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Reward from Fantasy World Time Trials! Combine these to upgrade.", - "DisplayName": "X-Large Fantasy Gift", - "Icon": "rbxassetid://104261672235988", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Mythical", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 5, - "_id": "Mythical", - "_script": null, - }, - "RequireSave": true, - "Tradable": false, - }, - "configName": "X-Large Fantasy Present", - "dateCreated": "2026-05-02T17:32:37.068Z", - "dateModified": "2026-05-02T17:32:37.068Z", - "hashShort": "b90f03759e82f4ac", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Reward from Fantasy World Time Trials! Combine these to upgrade.", - "DisplayName": "Small Fantasy Gift", - "Icon": "rbxassetid://72303448407582", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Rare", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 2, - "_id": "Rare", - "_script": null, - }, - "RequireSave": true, - "Tradable": false, - }, - "configName": "Small Fantasy Present", - "dateCreated": "2026-05-02T17:32:37.066Z", - "dateModified": "2026-05-02T17:32:37.066Z", - "hashShort": "2b5bd72b3b99e1ff", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Reward from Fantasy World Time Trials! Combine these to upgrade.", - "DisplayName": "Large Fantasy Gift", - "Icon": "rbxassetid://134076816804742", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Legendary", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 4, - "_id": "Legendary", - "_script": null, - }, - "RequireSave": true, - "Tradable": false, - }, - "configName": "Large Fantasy Present", - "dateCreated": "2026-05-02T17:32:37.070Z", - "dateModified": "2026-05-02T17:32:37.070Z", - "hashShort": "b7507e6d33283920", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Reward from Fantasy World Time Trials! Combine these to upgrade.", - "DisplayName": "Medium Fantasy Gift", - "Icon": "rbxassetid://96668834913455", - "Rarity": { - "Announce": false, - "Color": null, - "DisplayName": "Epic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 3, - "_id": "Epic", - "_script": null, - }, - "RequireSave": true, - "Tradable": false, - }, - "configName": "Medium Fantasy Present", - "dateCreated": "2026-05-02T17:32:37.074Z", - "dateModified": "2026-05-02T17:32:37.074Z", - "hashShort": "98399218b06c8d1f", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Reward from Fantasy World Time Trials! Combine these to upgrade.", - "DisplayName": "Titanic Fantasy Gift", - "Icon": "rbxassetid://96423077128415", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - "Tradable": false, - }, - "configName": "Titanic Fantasy Present", - "dateCreated": "2026-05-02T17:32:37.067Z", - "dateModified": "2026-05-02T17:32:37.067Z", - "hashShort": "0ef9643a0c0b70d8", - }, - { - "category": "Lootboxes", - "collection": "Lootboxes", - "configData": { - "Desc": "Earned from scoring points in the Infinite Soccer Mode! Chance for a HUGE!", - "DisplayName": "Soccer Gift", - "Icon": "rbxassetid://86942340777285", - "Rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exotic", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 6, - "_id": "Exotic", - "_script": null, - }, - "RequireSave": true, - }, - "configName": "Soccer Gift", - "dateCreated": "2026-06-27T16:07:13.274Z", - "dateModified": "2026-06-27T16:07:13.274Z", - "hashShort": "1a49f8804af87189", - }, - ], - "status": "ok", -} -`; - -exports[`Pet Simulator Public Live API Test Mastery shape 1`] = ` -{ - "data": [ - { - "category": "Mastery", - "collection": "Mastery", - "configData": { - "Desc": "Gain XP by purchasing items through Vending Machines, Merchants, etc.", - "FFlag": "Mastery_Economy", - "Icon": "rbxassetid://15092229110", - "Name": "Economy", - "Perks": { - "AccidentalVending": [ - { - "Level": 80, - "Text": "Vending Machines have a 20% chance to give double items", - "Title": "Accidental Vending", - }, - ], - "AutoVending": [ - { - "Level": 99, - "Text": "Automatically buys Vending Machines that cost coins", - "Title": "Auto Vending", - }, - ], - "BetterDeals": [ - { - "Level": 50, - "Power": 2, - "Text": "2x Merchant luck odds", - "Title": "Better Offers", - }, - ], - "BuyFullVendingStock": [ - { - "Level": 10, - "Text": "Option to buy entire Vending Machine stock", - "Title": "Max Vending", - }, - ], - "CheaperMerchants": [ - { - "Level": 30, - "Power": 15, - "Text": "-15% Merchant prices", - "Title": "Cheaper Merchants I", - }, - { - "Level": 80, - "Power": 30, - "Text": "-30% Merchant prices", - "Title": "Cheaper Merchants II", - }, - { - "Level": 99, - "Power": 50, - "Text": "-50% Merchant prices", - "Title": "Cheaper Merchants III", - }, - ], - "CheaperVending": [ - { - "Level": 20, - "Power": 15, - "Text": "-15% Vending Machine prices", - "Title": "Cheaper Vending I", - }, - { - "Level": 70, - "Power": 30, - "Text": "-30% Vending Machine prices", - "Title": "Cheaper Vending II", - }, - { - "Level": 90, - "Power": 50, - "Text": "-50% Vending Machine prices", - "Title": "Cheaper Vending III", - }, - ], - "FasterMerchants": [ - { - "Level": 50, - "Power": 1.5, - "Text": "1.5x Merchant restock speed", - "Title": "Faster Merchants I", - }, - { - "Level": 90, - "Power": 3, - "Text": "3x Merchant restock speed", - "Title": "Faster Merchants II", - }, - ], - "FasterVending": [ - { - "Level": 40, - "Power": 1.5, - "Text": "1.5x Vending Machine restock speed", - "Title": "Faster Vending I", - }, - { - "Level": 90, - "Power": 3, - "Text": "3x Vending Machine restock speed", - "Title": "Faster Vending II", - }, - ], - "FreeVending": [ - { - "Level": 99, - "Text": "Vending Machines that cost coins are FREE", - "Title": "Free Vending", - }, - ], - "MasteryCape": [ - { - "Level": 99, - "Text": "Awarded for reaching level 99 Mastery!", - "Title": "Mastery Cape", - }, - ], - "MoreVending": [ - { - "Level": 60, - "Power": 1, - "Text": "+1 Vending Machine global stock", - "Title": "More Vending I", - }, - { - "Level": 90, - "Power": 2, - "Text": "+2 Vending Machine global stock", - "Title": "More Vending II", - }, - ], - }, - }, - "configName": "Mastery | Economy", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.718Z", - "hashShort": "47a17da6240159e2", - }, - { - "category": "Mastery", - "collection": "Mastery", - "configData": { - "Desc": "Gain XP by destroying breakables!", - "FFlag": "Mastery_Breakables", - "Icon": "rbxassetid://15092228198", - "Name": "Breakables", - "Perks": { - "BetterLoot": [ - { - "Level": 20, - "Power": 10, - "Text": "+10% better loot from breakables", - "Title": "Better Loot I", - }, - { - "Level": 50, - "Power": 20, - "Text": "+20% better loot from breakables", - "Title": "Better Loot II", - }, - { - "Level": 90, - "Power": 30, - "Text": "+30% better loot from breakables", - "Title": "Better Loot III", - }, - ], - "BreakableRespawnRate": [ - { - "Level": 30, - "Power": 25, - "Text": "+25% breakable respawn speed", - "Title": "Respawn I", - }, - { - "Level": 80, - "Power": 50, - "Text": "+50% breakable respawn speed", - "Title": "Respawn II", - }, - { - "Level": 99, - "Power": 100, - "Text": "+100% breakable respawn speed", - "Title": "Respawn III", - }, - ], - "FlagDuration": [ - { - "Level": 90, - "Power": 1.5, - "Text": "1.5x flag duration", - "Title": "Flag Duration I", - }, - { - "Level": 99, - "Power": 2, - "Text": "2x flag duration", - "Title": "Flag Duration II", - }, - ], - "FlagSlots": [ - { - "Level": 10, - "Power": 6, - "Text": "+6 flag slots (up to 30 stacked)", - "Title": "Flag Slots I", - }, - { - "Level": 60, - "Power": 11, - "Text": "+11 flag slots (up to 35 stacked)", - "Title": "Flag Slots II", - }, - { - "Level": 80, - "Power": 16, - "Text": "+16 flag slots (up to 40 stacked)", - "Title": "Flag Slots III", - }, - { - "Level": 99, - "Power": 21, - "Text": "+21 flag slots (up to 45 stacked)", - "Title": "Flag Slots IV", - }, - ], - "GoldBreakables": [ - { - "Level": 60, - "Power": 5, - "Text": "2% chance your pets turn breakables gold", - "Title": "Golden Breakables I", - }, - { - "Level": 90, - "Power": 10, - "Text": "5% chance your pets turn breakables gold", - "Title": "Golden Breakables II", - }, - ], - "MasteryCape": [ - { - "Level": 99, - "Text": "Awarded for reaching level 99 Mastery!", - "Title": "Mastery Cape", - }, - ], - "MiniChestLoot": [ - { - "Level": 20, - "Power": 2, - "Text": "2x loot from mini-chests", - "Title": "Mini-Chest Loot I", - }, - { - "Level": 70, - "Power": 3, - "Text": "3x loot from mini-chests", - "Title": "Mini-Chest Loot II", - }, - { - "Level": 99, - "Power": 5, - "Text": "5x loot from mini-chests", - "Title": "Mini-Chest Loot III", - }, - ], - "MiniChestOdds": [ - { - "Level": 40, - "Power": 10, - "Text": "+10% chance for mini-chests to spawn", - "Title": "Mini-Chest Odds I", - }, - { - "Level": 70, - "Power": 30, - "Text": "+30% chance for mini-chests to spawn", - "Title": "Mini-Chest Odds II", - }, - { - "Level": 99, - "Power": 50, - "Text": "+50% chance for mini-chests to spawn", - "Title": "Mini-Chest Odds III", - }, - ], - }, - }, - "configName": "Mastery | Breakables", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.713Z", - "hashShort": "e395cbd20b16078c", - }, - { - "category": "Mastery", - "collection": "Mastery", - "configData": { - "Desc": "TODO", - "FFlag": "Mastery_Eggs", - "Icon": "rbxassetid://15057348341", - "Name": "Eggs", - "Perks": { - "CheaperEggs": [ - { - "Level": 20, - "Power": 10, - "Text": "10% cheaper eggs", - "Title": "Cheaper Eggs I", - }, - { - "Level": 70, - "Power": 20, - "Text": "20% cheaper eggs", - "Title": "Cheaper Eggs II", - }, - { - "Level": 99, - "Power": 30, - "Text": "30% cheaper eggs", - "Title": "Cheaper Eggs III", - }, - ], - "ExtraEggs": [ - { - "Level": 40, - "Power": 1, - "Text": "+1 bonus egg slot", - "Title": "Extra Eggs I", - }, - { - "Level": 60, - "Power": 2, - "Text": "+2 bonus egg slots", - "Title": "Extra Eggs II", - }, - { - "Level": 90, - "Power": 3, - "Text": "+3 bonus egg slots", - "Title": "Extra Eggs III", - }, - { - "Level": 99, - "Power": 5, - "Text": "+5 bonus egg slots", - "Title": "Extra Eggs IV", - }, - ], - "FasterOpen": [ - { - "Level": 10, - "Power": 20, - "Text": "+20% hatch animation speed", - "Title": "Faster Hatching I", - }, - { - "Level": 50, - "Power": 35, - "Text": "+35% hatch animation speed", - "Title": "Faster Hatching II", - }, - { - "Level": 90, - "Power": 50, - "Text": "+50% hatch animation speed", - "Title": "Faster Hatching III", - }, - ], - "GoldenEggs": [ - { - "Level": 30, - "Power": 3, - "Text": "+3% chance to hatch golden pets", - "Title": "Golden Eggs I", - }, - ], - "MasteryCape": [ - { - "Level": 99, - "Text": "Awarded for reaching level 99 Mastery!", - "Title": "Mastery Cape", - }, - ], - "RainbowEggs": [ - { - "Level": 80, - "Power": 1, - "Text": "+1% chance to hatch rainbow pets", - "Title": "Rainbow Eggs I", - }, - ], - }, - }, - "configName": "Mastery | Eggs", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.714Z", - "hashShort": "292341da8da8131e", - }, - { - "category": "Mastery", - "collection": "Mastery", - "configData": { - "Desc": "Gain XP by upgrading & consuming potions!", - "FFlag": "Mastery_Potions", - "Icon": "rbxassetid://15057347575", - "Name": "Potions", - "Perks": { - "AutoClaim": [ - { - "Level": 70, - "Text": "Automatically claim free potions around the map", - "Title": "Instant Collection", - }, - ], - "BetterCrafting": [ - { - "Level": 60, - "Power": 1, - "Text": "-1 potion required for upgrade", - "Title": "Better Crafting I", - }, - ], - "BulkConsume": [ - { - "Level": 50, - "Text": "Ability to drink multiple potions at once", - "Title": "Bulk Consumption", - }, - ], - "BulkCrafting": [ - { - "Level": 99, - "Text": "Upgrade multiple potion types at once", - "Title": "Bulk Crafting", - }, - ], - "CheaperPotions": [ - { - "Level": 30, - "Power": 15, - "Text": "-15% potion upgrade cost", - "Title": "Cheaper Potions I", - }, - { - "Level": 50, - "Power": 30, - "Text": "-30% potion upgrade cost", - "Title": "Cheaper Potions II", - }, - { - "Level": 90, - "Power": 50, - "Text": "-50% potion upgrade cost", - "Title": "Cheaper Potions III", - }, - ], - "FasterCrafting": [ - { - "Level": 10, - "Power": 2, - "Text": "2x potion upgrading animation speed", - "Title": "Faster Crafting", - }, - ], - "LongerPotions": [ - { - "Level": 20, - "Power": 1.1, - "Text": "1.1x potion duration", - "Title": "Longer Potions I", - }, - { - "Level": 40, - "Power": 1.2, - "Text": "1.2x potion duration", - "Title": "Longer Potions II", - }, - { - "Level": 90, - "Power": 1.5, - "Text": "1.5x potion duration", - "Title": "Longer Potions III", - }, - { - "Level": 99, - "Power": 2, - "Text": "2x potion duration", - "Title": "Longer Potions IV", - }, - ], - "MagicPotion": [ - { - "Level": 80, - "Text": "Drinking a Tier I potion gives you the effects of a Tier II potion", - "Title": "Magic Potions", - }, - ], - "MasteryCape": [ - { - "Level": 99, - "Text": "Awarded for reaching level 99 Mastery!", - "Title": "Mastery Cape", - }, - ], - "SupremePotions": [ - { - "Level": 90, - "Power": 10, - "Text": "10% chance when drinking a potion to get a free tier upgrade", - "Title": "Supreme Potions", - }, - ], - "TierElevenCrafting": [ - { - "Level": 90, - "Text": "Ability to craft Tier XI potions", - "Title": "Tier XI Crafting", - }, - ], - "TierElevenDrinking": [ - { - "Level": 70, - "Text": "Ability to drink Tier XI potions", - "Title": "Tier XI Consumption", - }, - ], - "TierNineCrafting": [ - { - "Level": 70, - "Text": "Ability to craft Tier IX potions", - "Title": "Tier IX Crafting", - }, - ], - "TierNineDrinking": [ - { - "Level": 50, - "Text": "Ability to drink Tier IX potions", - "Title": "Tier IX Consumption", - }, - ], - "TierTenCrafting": [ - { - "Level": 80, - "Text": "Ability to craft Tier X potions", - "Title": "Tier X Crafting", - }, - ], - "TierTenDrinking": [ - { - "Level": 60, - "Text": "Ability to drink Tier X potions", - "Title": "Tier X Consumption", - }, - ], - }, - }, - "configName": "Mastery | Potions", - "dateCreated": null, - "dateModified": "2025-07-05T23:29:23.718Z", - "hashShort": "2b37824ea2bbbbfb", - }, - { - "category": "Mastery", - "collection": "Mastery", + "category": "Mastery", + "collection": "Mastery", "configData": { "Desc": "Gain XP by upgrading potions!", "FFlag": "Mastery_Enchants", @@ -154504,6 +147756,28 @@ Ground Slam - Pet will damage breakables in a large area!", "dateModified": "2026-03-14T15:52:21.280Z", "hashShort": "f014d4d6a3ab971f", }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 6663184330515252, + 7112231028227439, + 7521757662808789, + ], + "fromWorldNumber": 1, + "fromZoneNumber": 3, + "goldenThumbnail": "rbxassetid://90221121772857", + "indexDesc": "Found in the Spring Egg!", + "indexObtainable": true, + "name": "Leafy Yeti", + "thumbnail": "rbxassetid://104726318250862", + }, + "configName": "Leafy Yeti", + "dateCreated": "2026-04-18T15:56:00.451Z", + "dateModified": "2026-06-27T16:05:50.586Z", + "hashShort": "71d810e754801a62", + }, { "category": "Uncategorized", "collection": "Pets", @@ -154530,28 +147804,6 @@ Ground Slam - Pet will damage breakables in a large area!", "dateModified": "2026-04-18T15:56:00.447Z", "hashShort": "fbd56bc6578bb66c", }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 6663184330515252, - 7112231028227439, - 7521757662808789, - ], - "fromWorldNumber": 1, - "fromZoneNumber": 3, - "goldenThumbnail": "rbxassetid://90221121772857", - "indexDesc": "Found in the Spring Egg!", - "indexObtainable": true, - "name": "Leafy Yeti", - "thumbnail": "rbxassetid://104726318250862", - }, - "configName": "Leafy Yeti", - "dateCreated": "2026-04-18T15:56:00.451Z", - "dateModified": "2026-06-27T16:05:50.586Z", - "hashShort": "71d810e754801a62", - }, { "category": "Uncategorized", "collection": "Pets", @@ -154601,6 +147853,32 @@ Ground Slam - Pet will damage breakables in a large area!", "dateModified": "2026-04-18T15:56:00.461Z", "hashShort": "7b32dcd6e6e0acb9", }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "exclusiveLevel": 2, + "goldenThumbnail": "", + "name": "Special Ops Skunk", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://124091159691468", + }, + "configName": "Special Ops Skunk", + "dateCreated": "2026-04-18T15:56:00.468Z", + "dateModified": "2026-04-18T15:56:00.468Z", + "hashShort": "290f41b7928ce14f", + }, { "category": "Uncategorized", "collection": "Pets", @@ -154646,32 +147924,6 @@ Ground Slam - Pet will damage breakables in a large area!", "dateModified": "2026-06-27T16:05:50.580Z", "hashShort": "81c4fcf7a9b6443a", }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "", - "name": "Special Ops Skunk", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://124091159691468", - }, - "configName": "Special Ops Skunk", - "dateCreated": "2026-04-18T15:56:00.468Z", - "dateModified": "2026-04-18T15:56:00.468Z", - "hashShort": "290f41b7928ce14f", - }, { "category": "Uncategorized", "collection": "Pets", @@ -155114,12 +148366,11 @@ Ground Slam - Pet will damage breakables in a large area!", "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://98993044284564", + "goldenThumbnail": "rbxassetid://112463411821648", "huge": true, - "indexDesc": "Found in the 2026 Spring Event eggs!", + "indexDesc": "Found in the 2026 Spring Gift Bag!", "indexObtainable": true, - "name": "Huge Butterfly Pony", + "name": "Huge Spring Onion", "rarity": { "Announce": true, "Color": null, @@ -155132,22 +148383,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://130427218526414", + "thumbnail": "rbxassetid://75532551020815", }, - "configName": "Huge Butterfly Pony", - "dateCreated": "2026-04-18T15:56:11.615Z", - "dateModified": "2026-04-18T15:56:11.615Z", - "hashShort": "37225dec469195ce", + "configName": "Huge Spring Onion", + "dateCreated": "2026-04-18T15:56:11.617Z", + "dateModified": "2026-04-18T15:56:11.617Z", + "hashShort": "af92f84d4adfed70", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://112463411821648", + "fly": true, + "goldenThumbnail": "rbxassetid://98993044284564", "huge": true, - "indexDesc": "Found in the 2026 Spring Gift Bag!", + "indexDesc": "Found in the 2026 Spring Event eggs!", "indexObtainable": true, - "name": "Huge Spring Onion", + "name": "Huge Butterfly Pony", "rarity": { "Announce": true, "Color": null, @@ -155160,12 +148412,12 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://75532551020815", + "thumbnail": "rbxassetid://130427218526414", }, - "configName": "Huge Spring Onion", - "dateCreated": "2026-04-18T15:56:11.617Z", - "dateModified": "2026-04-18T15:56:11.617Z", - "hashShort": "af92f84d4adfed70", + "configName": "Huge Butterfly Pony", + "dateCreated": "2026-04-18T15:56:11.615Z", + "dateModified": "2026-04-18T15:56:11.615Z", + "hashShort": "37225dec469195ce", }, { "category": "Huge", @@ -155370,11 +148622,11 @@ Ground Slam - Pet will damage breakables in a large area!", "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://105827678926314", + "goldenThumbnail": "rbxassetid://84423381570605", "huge": true, - "indexDesc": "Found in all the St. Patrick's event eggs!", + "indexDesc": "Found in the Dewdrop Falls Spring Raffle!", "indexObtainable": true, - "name": "Huge Mucki", + "name": "Huge Spring Dino", "rarity": { "Announce": true, "Color": null, @@ -155387,22 +148639,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://126924768939379", + "thumbnail": "rbxassetid://99022978600130", }, - "configName": "Huge Mucki", - "dateCreated": "2026-04-18T15:56:11.654Z", - "dateModified": "2026-04-18T15:56:11.654Z", - "hashShort": "066987aab9c1049f", + "configName": "Huge Spring Dino", + "dateCreated": "2026-04-18T15:56:11.652Z", + "dateModified": "2026-04-18T15:56:11.652Z", + "hashShort": "5a13eb14549c9952", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://84423381570605", + "goldenThumbnail": "rbxassetid://105827678926314", "huge": true, - "indexDesc": "Found in the Dewdrop Falls Spring Raffle!", + "indexDesc": "Found in all the St. Patrick's event eggs!", "indexObtainable": true, - "name": "Huge Spring Dino", + "name": "Huge Mucki", "rarity": { "Announce": true, "Color": null, @@ -155415,12 +148667,12 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://99022978600130", + "thumbnail": "rbxassetid://126924768939379", }, - "configName": "Huge Spring Dino", - "dateCreated": "2026-04-18T15:56:11.652Z", - "dateModified": "2026-04-18T15:56:11.652Z", - "hashShort": "5a13eb14549c9952", + "configName": "Huge Mucki", + "dateCreated": "2026-04-18T15:56:11.654Z", + "dateModified": "2026-04-18T15:56:11.654Z", + "hashShort": "066987aab9c1049f", }, { "category": "Huge", @@ -155478,6 +148730,34 @@ Ground Slam - Pet will damage breakables in a large area!", "dateModified": "2026-04-18T15:56:11.654Z", "hashShort": "f5880419c35dcd70", }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://100779002873726", + "huge": true, + "indexDesc": "Earned from 2026 Easter Diamond Egg!", + "indexObtainable": true, + "name": "Huge Diamond Chick", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://79413984807049", + }, + "configName": "Huge Diamond Chick", + "dateCreated": "2026-04-18T15:56:11.660Z", + "dateModified": "2026-04-18T15:56:11.660Z", + "hashShort": "d56373e2445d2ce1", + }, { "category": "Huge", "collection": "Pets", @@ -155511,11 +148791,12 @@ Ground Slam - Pet will damage breakables in a large area!", "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://100779002873726", + "fly": true, + "goldenThumbnail": "rbxassetid://82841800843675", "huge": true, - "indexDesc": "Earned from 2026 Easter Diamond Egg!", + "indexDesc": "Found in the Blossom Vale Spring Raffle!", "indexObtainable": true, - "name": "Huge Diamond Chick", + "name": "Huge Spring Dragon", "rarity": { "Announce": true, "Color": null, @@ -155528,12 +148809,12 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://79413984807049", + "thumbnail": "rbxassetid://83560994028636", }, - "configName": "Huge Diamond Chick", - "dateCreated": "2026-04-18T15:56:11.660Z", - "dateModified": "2026-04-18T15:56:11.660Z", - "hashShort": "d56373e2445d2ce1", + "configName": "Huge Spring Dragon", + "dateCreated": "2026-04-18T15:56:11.667Z", + "dateModified": "2026-04-18T15:56:11.667Z", + "hashShort": "ca55b3f319807a02", }, { "category": "Huge", @@ -155569,39 +148850,11 @@ Ground Slam - Pet will damage breakables in a large area!", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://83687807362870", - "huge": true, - "indexDesc": "Reward in the 2026 Abstract Clan Battle!", - "indexObtainable": true, - "name": "Huge Abstract Agony", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://121388356688777", - }, - "configName": "Huge Abstract Agony", - "dateCreated": "2026-04-18T15:56:11.660Z", - "dateModified": "2026-04-18T15:56:11.660Z", - "hashShort": "d42b05139455652e", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "goldenThumbnail": "rbxassetid://137179904470113", + "goldenThumbnail": "rbxassetid://121845830784573", "huge": true, - "indexDesc": "Earned by subscribing during the FREE Huge Event!", + "indexDesc": "Found in the 2026 Spring Event eggs!", "indexObtainable": true, - "name": "Huge Keyboard Cat", + "name": "Huge Dawn Phoenix", "rarity": { "Announce": true, "Color": null, @@ -155614,12 +148867,12 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://135774541851149", + "thumbnail": "rbxassetid://104154597023155", }, - "configName": "Huge Keyboard Cat", - "dateCreated": "2026-04-18T15:56:11.662Z", - "dateModified": "2026-04-18T15:56:11.662Z", - "hashShort": "f3646b2ad93d4b89", + "configName": "Huge Dawn Phoenix", + "dateCreated": "2026-04-18T15:56:11.668Z", + "dateModified": "2026-04-18T15:56:11.668Z", + "hashShort": "83500025ae0ee7f3", }, { "category": "Huge", @@ -155653,11 +148906,19 @@ Ground Slam - Pet will damage breakables in a large area!", "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://79644871121521", + "animations": { + "flyHeight": 0.025, + "flyHeightChange": 0, + "swerve": true, + "swerveAggression": 0.2, + "swerveMaxAngle": 60, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://125007807818724", "huge": true, - "indexDesc": "Earned from logging in during our 2026 Easter Event!", + "indexDesc": "Found in the Tulip Hollow Spring Raffle!", "indexObtainable": true, - "name": "Huge Bandana Shiba", + "name": "Huge Mushroom Snail", "rarity": { "Announce": true, "Color": null, @@ -155670,30 +148931,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://122819794900124", + "thumbnail": "rbxassetid://106278894381097", }, - "configName": "Huge Bandana Shiba", - "dateCreated": "2026-04-18T15:56:11.662Z", - "dateModified": "2026-04-18T15:56:11.662Z", - "hashShort": "05831bec971c9ad1", + "configName": "Huge Mushroom Snail", + "dateCreated": "2026-04-18T15:56:11.666Z", + "dateModified": "2026-04-18T15:56:11.666Z", + "hashShort": "3c671a714910bdd7", }, { "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "flyHeight": 0.025, - "flyHeightChange": 0, - "swerve": true, - "swerveAggression": 0.2, - "swerveMaxAngle": 60, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://125007807818724", + "goldenThumbnail": "rbxassetid://137179904470113", "huge": true, - "indexDesc": "Found in the Tulip Hollow Spring Raffle!", + "indexDesc": "Earned by subscribing during the FREE Huge Event!", "indexObtainable": true, - "name": "Huge Mushroom Snail", + "name": "Huge Keyboard Cat", "rarity": { "Announce": true, "Color": null, @@ -155706,23 +148959,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://106278894381097", + "thumbnail": "rbxassetid://135774541851149", }, - "configName": "Huge Mushroom Snail", - "dateCreated": "2026-04-18T15:56:11.666Z", - "dateModified": "2026-04-18T15:56:11.666Z", - "hashShort": "3c671a714910bdd7", + "configName": "Huge Keyboard Cat", + "dateCreated": "2026-04-18T15:56:11.662Z", + "dateModified": "2026-04-18T15:56:11.662Z", + "hashShort": "f3646b2ad93d4b89", }, { "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://121845830784573", + "goldenThumbnail": "rbxassetid://83687807362870", "huge": true, - "indexDesc": "Found in the 2026 Spring Event eggs!", + "indexDesc": "Reward in the 2026 Abstract Clan Battle!", "indexObtainable": true, - "name": "Huge Dawn Phoenix", + "name": "Huge Abstract Agony", "rarity": { "Announce": true, "Color": null, @@ -155735,23 +148988,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://104154597023155", + "thumbnail": "rbxassetid://121388356688777", }, - "configName": "Huge Dawn Phoenix", - "dateCreated": "2026-04-18T15:56:11.668Z", - "dateModified": "2026-04-18T15:56:11.668Z", - "hashShort": "83500025ae0ee7f3", + "configName": "Huge Abstract Agony", + "dateCreated": "2026-04-18T15:56:11.660Z", + "dateModified": "2026-04-18T15:56:11.660Z", + "hashShort": "d42b05139455652e", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://82841800843675", + "goldenThumbnail": "rbxassetid://79644871121521", "huge": true, - "indexDesc": "Found in the Blossom Vale Spring Raffle!", + "indexDesc": "Earned from logging in during our 2026 Easter Event!", "indexObtainable": true, - "name": "Huge Spring Dragon", + "name": "Huge Bandana Shiba", "rarity": { "Announce": true, "Color": null, @@ -155764,12 +149016,12 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://83560994028636", + "thumbnail": "rbxassetid://122819794900124", }, - "configName": "Huge Spring Dragon", - "dateCreated": "2026-04-18T15:56:11.667Z", - "dateModified": "2026-04-18T15:56:11.667Z", - "hashShort": "ca55b3f319807a02", + "configName": "Huge Bandana Shiba", + "dateCreated": "2026-04-18T15:56:11.662Z", + "dateModified": "2026-04-18T15:56:11.662Z", + "hashShort": "05831bec971c9ad1", }, { "category": "Titanic", @@ -156116,10 +149368,10 @@ Ground Slam - Pet will damage breakables in a large area!", "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://92486944125645", - "indexDesc": "Found in the Hype Egg every update!", + "goldenThumbnail": "rbxassetid://125332376939544", + "indexDesc": "Found in the 2026 Spring Event eggs!", "indexObtainable": true, - "name": "Titanic Party Tiger", + "name": "Titanic Garden Goblin", "rarity": { "Announce": true, "Color": null, @@ -156132,22 +149384,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://82287378572114", + "thumbnail": "rbxassetid://88678695683652", "titanic": true, }, - "configName": "Titanic Party Tiger", - "dateCreated": "2026-04-25T17:30:36.516Z", - "dateModified": "2026-04-25T17:30:36.516Z", - "hashShort": "33824871fedc8c50", + "configName": "Titanic Garden Goblin", + "dateCreated": "2026-04-25T17:30:36.517Z", + "dateModified": "2026-04-25T17:30:36.517Z", + "hashShort": "53d6f4fccd1a0765", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://125332376939544", - "indexDesc": "Found in the 2026 Spring Event eggs!", + "goldenThumbnail": "rbxassetid://92486944125645", + "indexDesc": "Found in the Hype Egg every update!", "indexObtainable": true, - "name": "Titanic Garden Goblin", + "name": "Titanic Party Tiger", "rarity": { "Announce": true, "Color": null, @@ -156160,13 +149412,13 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://88678695683652", + "thumbnail": "rbxassetid://82287378572114", "titanic": true, }, - "configName": "Titanic Garden Goblin", - "dateCreated": "2026-04-25T17:30:36.517Z", - "dateModified": "2026-04-25T17:30:36.517Z", - "hashShort": "53d6f4fccd1a0765", + "configName": "Titanic Party Tiger", + "dateCreated": "2026-04-25T17:30:36.516Z", + "dateModified": "2026-04-25T17:30:36.516Z", + "hashShort": "33824871fedc8c50", }, { "category": "Titanic", @@ -156314,12 +149566,11 @@ Ground Slam - Pet will damage breakables in a large area!", "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://130561048709733", + "goldenThumbnail": "rbxassetid://85135127862857", "huge": true, - "indexDesc": "Reward in the 2026 Starry Clan Battle!", - "indexObtainable": true, - "name": "Huge Starry Owl", + "indexDesc": "Gifted to top 50 spenders on PS99!", + "indexObtainable": false, + "name": "Huge Crowned Penguin", "rarity": { "Announce": true, "Color": null, @@ -156332,22 +149583,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://75830065128767", + "thumbnail": "rbxassetid://85416907805755", }, - "configName": "Huge Starry Owl", - "dateCreated": "2026-04-25T17:30:45.327Z", - "dateModified": "2026-04-25T17:30:45.327Z", - "hashShort": "2b6d0f5a6ef37426", + "configName": "Huge Crowned Penguin", + "dateCreated": "2026-04-25T17:30:45.326Z", + "dateModified": "2026-04-25T17:30:45.326Z", + "hashShort": "5ad6eb935d779628", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://85135127862857", + "fly": true, + "goldenThumbnail": "rbxassetid://130561048709733", "huge": true, - "indexDesc": "Gifted to top 50 spenders on PS99!", - "indexObtainable": false, - "name": "Huge Crowned Penguin", + "indexDesc": "Reward in the 2026 Starry Clan Battle!", + "indexObtainable": true, + "name": "Huge Starry Owl", "rarity": { "Announce": true, "Color": null, @@ -156360,12 +149612,12 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://85416907805755", + "thumbnail": "rbxassetid://75830065128767", }, - "configName": "Huge Crowned Penguin", - "dateCreated": "2026-04-25T17:30:45.326Z", - "dateModified": "2026-04-25T17:30:45.326Z", - "hashShort": "5ad6eb935d779628", + "configName": "Huge Starry Owl", + "dateCreated": "2026-04-25T17:30:45.327Z", + "dateModified": "2026-04-25T17:30:45.327Z", + "hashShort": "2b6d0f5a6ef37426", }, { "category": "Huge", @@ -156455,11 +149707,11 @@ Ground Slam - Pet will damage breakables in a large area!", "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://121311255368378", + "goldenThumbnail": "rbxassetid://122355970169144", "huge": true, "indexDesc": "Found in the 2026 Spring Event eggs!", "indexObtainable": true, - "name": "Huge Spring Elephant", + "name": "Huge Tree Frog", "rarity": { "Announce": true, "Color": null, @@ -156472,22 +149724,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://137542174121503", + "thumbnail": "rbxassetid://109144627334415", }, - "configName": "Huge Spring Elephant", - "dateCreated": "2026-04-25T17:30:45.332Z", - "dateModified": "2026-04-25T17:30:45.332Z", - "hashShort": "ec3bf89a5f1c05ee", + "configName": "Huge Tree Frog", + "dateCreated": "2026-04-25T17:30:45.331Z", + "dateModified": "2026-04-25T17:30:45.331Z", + "hashShort": "bdc4fc9b185cb13a", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://128462838490372", + "goldenThumbnail": "rbxassetid://121311255368378", "huge": true, - "indexDesc": "Earned from the 2026 Spring Event leaderboard contest #2!", + "indexDesc": "Found in the 2026 Spring Event eggs!", "indexObtainable": true, - "name": "Huge Garden Goblin", + "name": "Huge Spring Elephant", "rarity": { "Announce": true, "Color": null, @@ -156500,22 +149752,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://97942779030547", + "thumbnail": "rbxassetid://137542174121503", }, - "configName": "Huge Garden Goblin", - "dateCreated": "2026-04-25T17:30:45.333Z", - "dateModified": "2026-04-25T17:30:45.333Z", - "hashShort": "edc0899063b35d97", + "configName": "Huge Spring Elephant", + "dateCreated": "2026-04-25T17:30:45.332Z", + "dateModified": "2026-04-25T17:30:45.332Z", + "hashShort": "ec3bf89a5f1c05ee", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://122355970169144", + "goldenThumbnail": "rbxassetid://128462838490372", "huge": true, - "indexDesc": "Found in the 2026 Spring Event eggs!", + "indexDesc": "Earned from the 2026 Spring Event leaderboard contest #2!", "indexObtainable": true, - "name": "Huge Tree Frog", + "name": "Huge Garden Goblin", "rarity": { "Announce": true, "Color": null, @@ -156528,22 +149780,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://109144627334415", + "thumbnail": "rbxassetid://97942779030547", }, - "configName": "Huge Tree Frog", - "dateCreated": "2026-04-25T17:30:45.331Z", - "dateModified": "2026-04-25T17:30:45.331Z", - "hashShort": "bdc4fc9b185cb13a", + "configName": "Huge Garden Goblin", + "dateCreated": "2026-04-25T17:30:45.333Z", + "dateModified": "2026-04-25T17:30:45.333Z", + "hashShort": "edc0899063b35d97", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://107973676145486", + "evolved": true, + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in the Crystal Chest!", + "indexDesc": "Earned from evolving Rogue Squid!", "indexObtainable": true, - "name": "Huge Vibrant Whale", + "name": "Huge Evolved Rogue Squid", "rarity": { "Announce": true, "Color": null, @@ -156556,12 +149809,12 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://87407901102081", + "thumbnail": "rbxassetid://88584631141101", }, - "configName": "Huge Vibrant Whale", - "dateCreated": "2026-04-25T17:30:45.345Z", - "dateModified": "2026-04-25T17:30:45.345Z", - "hashShort": "4119b9caac09d3a3", + "configName": "Huge Evolved Rogue Squid", + "dateCreated": "2026-04-25T17:30:45.344Z", + "dateModified": "2026-04-25T17:30:45.344Z", + "hashShort": "7a9bf2e772827254", }, { "category": "Huge", @@ -156600,9 +149853,9 @@ Ground Slam - Pet will damage breakables in a large area!", "evolved": true, "goldenThumbnail": "", "huge": true, - "indexDesc": "Earned from evolving Rogue Squid!", + "indexDesc": "Earned from evolving Frankenpup Dog!", "indexObtainable": true, - "name": "Huge Evolved Rogue Squid", + "name": "Huge Evolved Frankenpup Dog", "rarity": { "Announce": true, "Color": null, @@ -156615,12 +149868,12 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://88584631141101", + "thumbnail": "rbxassetid://85621910541891", }, - "configName": "Huge Evolved Rogue Squid", - "dateCreated": "2026-04-25T17:30:45.344Z", - "dateModified": "2026-04-25T17:30:45.344Z", - "hashShort": "7a9bf2e772827254", + "configName": "Huge Evolved Frankenpup Dog", + "dateCreated": "2026-04-25T17:30:45.343Z", + "dateModified": "2026-04-25T17:30:45.343Z", + "hashShort": "22925bc4baf8acd8", }, { "category": "Huge", @@ -156654,40 +149907,12 @@ Ground Slam - Pet will damage breakables in a large area!", "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://124652850414651", - "huge": true, - "indexDesc": "Earned from the limited-time Huge Spinny Wheel!", - "indexObtainable": true, - "name": "Huge Brain", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://88763930700070", - }, - "configName": "Huge Brain", - "dateCreated": "2026-04-25T17:30:45.346Z", - "dateModified": "2026-04-25T17:30:45.346Z", - "hashShort": "28c6acc4645e5aa4", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://134339476960484", + "evolved": true, + "goldenThumbnail": "", "huge": true, - "indexDesc": "Earned from the Void Spinny Wheel!", + "indexDesc": "Earned from evolving Starry Eye Bunny!", "indexObtainable": true, - "name": "Huge Wireframe Cat", + "name": "Huge Evolved Starry Eye Bunny", "rarity": { "Announce": true, "Color": null, @@ -156700,23 +149925,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://129889522181856", + "thumbnail": "rbxassetid://76225100606605", }, - "configName": "Huge Wireframe Cat", - "dateCreated": "2026-04-25T17:30:45.348Z", - "dateModified": "2026-04-25T17:30:45.348Z", - "hashShort": "054b6da7778d5529", + "configName": "Huge Evolved Starry Eye Bunny", + "dateCreated": "2026-04-25T17:30:45.343Z", + "dateModified": "2026-04-25T17:30:45.343Z", + "hashShort": "a62e212a70a4de10", }, { "category": "Huge", "collection": "Pets", "configData": { - "evolved": true, - "goldenThumbnail": "", + "goldenThumbnail": "rbxassetid://124652850414651", "huge": true, - "indexDesc": "Earned from evolving Frankenpup Dog!", + "indexDesc": "Earned from the limited-time Huge Spinny Wheel!", "indexObtainable": true, - "name": "Huge Evolved Frankenpup Dog", + "name": "Huge Brain", "rarity": { "Announce": true, "Color": null, @@ -156729,12 +149953,12 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://85621910541891", + "thumbnail": "rbxassetid://88763930700070", }, - "configName": "Huge Evolved Frankenpup Dog", - "dateCreated": "2026-04-25T17:30:45.343Z", - "dateModified": "2026-04-25T17:30:45.343Z", - "hashShort": "22925bc4baf8acd8", + "configName": "Huge Brain", + "dateCreated": "2026-04-25T17:30:45.346Z", + "dateModified": "2026-04-25T17:30:45.346Z", + "hashShort": "28c6acc4645e5aa4", }, { "category": "Huge", @@ -156803,11 +150027,12 @@ Ground Slam - Pet will damage breakables in a large area!", "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://124851404464993", + "fly": true, + "goldenThumbnail": "rbxassetid://134339476960484", "huge": true, - "indexDesc": "Earned from the Spinny Wheel!", + "indexDesc": "Earned from the Void Spinny Wheel!", "indexObtainable": true, - "name": "Huge Carnival Panda", + "name": "Huge Wireframe Cat", "rarity": { "Announce": true, "Color": null, @@ -156820,23 +150045,50 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://92219735800314", + "thumbnail": "rbxassetid://129889522181856", }, - "configName": "Huge Carnival Panda", + "configName": "Huge Wireframe Cat", + "dateCreated": "2026-04-25T17:30:45.348Z", + "dateModified": "2026-04-25T17:30:45.348Z", + "hashShort": "054b6da7778d5529", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://107973676145486", + "huge": true, + "indexDesc": "Found in the Crystal Chest!", + "indexObtainable": true, + "name": "Huge Vibrant Whale", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://87407901102081", + }, + "configName": "Huge Vibrant Whale", "dateCreated": "2026-04-25T17:30:45.345Z", "dateModified": "2026-04-25T17:30:45.345Z", - "hashShort": "f26c8fa491304e14", + "hashShort": "4119b9caac09d3a3", }, { "category": "Huge", "collection": "Pets", "configData": { - "evolved": true, - "goldenThumbnail": "", + "goldenThumbnail": "rbxassetid://124851404464993", "huge": true, - "indexDesc": "Earned from evolving Starry Eye Bunny!", + "indexDesc": "Earned from the Spinny Wheel!", "indexObtainable": true, - "name": "Huge Evolved Starry Eye Bunny", + "name": "Huge Carnival Panda", "rarity": { "Announce": true, "Color": null, @@ -156849,12 +150101,12 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://76225100606605", + "thumbnail": "rbxassetid://92219735800314", }, - "configName": "Huge Evolved Starry Eye Bunny", - "dateCreated": "2026-04-25T17:30:45.343Z", - "dateModified": "2026-04-25T17:30:45.343Z", - "hashShort": "a62e212a70a4de10", + "configName": "Huge Carnival Panda", + "dateCreated": "2026-04-25T17:30:45.345Z", + "dateModified": "2026-04-25T17:30:45.345Z", + "hashShort": "f26c8fa491304e14", }, { "category": "Huge", @@ -157064,44 +150316,44 @@ Ground Slam - Pet will damage breakables in a large area!", "collection": "Pets", "configData": { "cachedPower": [ - 9487229251846910, - 10125387368919162, - 10708696147152348, + 8245690609012634, + 8853153092393904, + 9346986298018686, ], "fromWorldNumber": 1, "fromZoneNumber": 3, - "goldenThumbnail": "rbxassetid://116680562056811", + "goldenThumbnail": "rbxassetid://106251807343603", "indexDesc": "Found in the Spring Egg!", "indexObtainable": true, - "name": "Bloom Dominus", - "thumbnail": "rbxassetid://140165604051150", + "name": "Egg Piggy", + "thumbnail": "rbxassetid://85046134636086", }, - "configName": "Bloom Dominus", - "dateCreated": "2026-04-25T17:31:02.210Z", - "dateModified": "2026-06-27T16:05:50.598Z", - "hashShort": "b3a346ea8fb705a7", + "configName": "Egg Piggy", + "dateCreated": "2026-04-25T17:31:02.215Z", + "dateModified": "2026-06-27T16:05:50.584Z", + "hashShort": "708d654fdd63e99b", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 8245690609012634, - 8853153092393904, - 9346986298018686, + 9487229251846910, + 10125387368919162, + 10708696147152348, ], "fromWorldNumber": 1, "fromZoneNumber": 3, - "goldenThumbnail": "rbxassetid://106251807343603", + "goldenThumbnail": "rbxassetid://116680562056811", "indexDesc": "Found in the Spring Egg!", "indexObtainable": true, - "name": "Egg Piggy", - "thumbnail": "rbxassetid://85046134636086", + "name": "Bloom Dominus", + "thumbnail": "rbxassetid://140165604051150", }, - "configName": "Egg Piggy", - "dateCreated": "2026-04-25T17:31:02.215Z", - "dateModified": "2026-06-27T16:05:50.584Z", - "hashShort": "708d654fdd63e99b", + "configName": "Bloom Dominus", + "dateCreated": "2026-04-25T17:31:02.210Z", + "dateModified": "2026-06-27T16:05:50.598Z", + "hashShort": "b3a346ea8fb705a7", }, { "category": "Uncategorized", @@ -157251,6 +150503,90 @@ Ground Slam - Pet will damage breakables in a large area!", "dateModified": "2026-05-02T17:30:29.747Z", "hashShort": "ea28184bf140ba03", }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://111337285917876", + "huge": true, + "indexDesc": "Found occasionally in Active Huge Pets!", + "indexObtainable": true, + "name": "Huge Platypus", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://81423443378217", + }, + "configName": "Huge Platypus", + "dateCreated": "2026-05-02T17:30:52.052Z", + "dateModified": "2026-05-02T17:30:52.052Z", + "hashShort": "89fe1fcfacbc7ff0", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://80392306095232", + "huge": true, + "indexDesc": "Reward in Free Rewards Gifts!", + "indexObtainable": true, + "name": "Huge Werewolf", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://99136154252309", + }, + "configName": "Huge Werewolf", + "dateCreated": "2026-05-02T17:30:52.056Z", + "dateModified": "2026-05-02T17:30:52.056Z", + "hashShort": "14e4bd90e33c4a6b", + }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "goldenThumbnail": "rbxassetid://128324848382423", + "huge": true, + "indexDesc": "Found in the Time Trials Chests!", + "indexObtainable": true, + "name": "Huge Totem Cub", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://92882162036014", + }, + "configName": "Huge Totem Cub", + "dateCreated": "2026-05-02T17:30:52.077Z", + "dateModified": "2026-05-02T17:30:52.077Z", + "hashShort": "94a7c39de43be38f", + }, { "category": "Huge", "collection": "Pets", @@ -157312,11 +150648,20 @@ Ground Slam - Pet will damage breakables in a large area!", "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://127729544255191", + "cachedPower": [ + 20039527566274204, + ], + "fly": true, + "fromEgg": "Hollow Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 279, + "goldenThumbnail": "rbxassetid://92856152877536", "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", + "indexDesc": "Found in the Hollow Egg!", "indexObtainable": true, - "name": "Huge Goldfish", + "isFromLastZone": true, + "maxChance": 5.993943898902866e-8, + "name": "Huge Wisp Griffin", "rarity": { "Announce": true, "Color": null, @@ -157329,22 +150674,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://95752779695636", + "thumbnail": "rbxassetid://107709649476563", }, - "configName": "Huge Goldfish", - "dateCreated": "2026-05-02T17:30:52.065Z", - "dateModified": "2026-05-02T17:30:52.065Z", - "hashShort": "5a2fdfe1d7d67ffd", + "configName": "Huge Wisp Griffin", + "dateCreated": "2026-05-02T17:30:52.067Z", + "dateModified": "2026-05-02T17:30:52.067Z", + "hashShort": "9454f37fb077f4f6", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://111337285917876", + "goldenThumbnail": "rbxassetid://111577360353399", "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", + "indexDesc": "Found in the Gargantuan Machine Hippomelon Egg!", "indexObtainable": true, - "name": "Huge Platypus", + "name": "Huge Midnight Axolotl", "rarity": { "Announce": true, "Color": null, @@ -157357,22 +150702,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://81423443378217", + "thumbnail": "rbxassetid://124395858788677", }, - "configName": "Huge Platypus", - "dateCreated": "2026-05-02T17:30:52.052Z", - "dateModified": "2026-05-02T17:30:52.052Z", - "hashShort": "89fe1fcfacbc7ff0", + "configName": "Huge Midnight Axolotl", + "dateCreated": "2026-05-02T17:30:51.800Z", + "dateModified": "2026-05-02T17:30:51.800Z", + "hashShort": "7a268793c58b9b7e", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://111577360353399", + "goldenThumbnail": "rbxassetid://127729544255191", "huge": true, - "indexDesc": "Found in the Gargantuan Machine Hippomelon Egg!", + "indexDesc": "Found occasionally in Active Huge Pets!", "indexObtainable": true, - "name": "Huge Midnight Axolotl", + "name": "Huge Goldfish", "rarity": { "Announce": true, "Color": null, @@ -157385,22 +150730,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://124395858788677", + "thumbnail": "rbxassetid://95752779695636", }, - "configName": "Huge Midnight Axolotl", - "dateCreated": "2026-05-02T17:30:51.800Z", - "dateModified": "2026-05-02T17:30:51.800Z", - "hashShort": "7a268793c58b9b7e", + "configName": "Huge Goldfish", + "dateCreated": "2026-05-02T17:30:52.065Z", + "dateModified": "2026-05-02T17:30:52.065Z", + "hashShort": "5a2fdfe1d7d67ffd", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://80392306095232", + "goldenThumbnail": "rbxassetid://80606807904111", "huge": true, - "indexDesc": "Reward in Free Rewards Gifts!", + "indexDesc": "Found in the Gargantuan Machine Hippomelon Egg!", "indexObtainable": true, - "name": "Huge Werewolf", + "name": "Huge Lunar Deer", "rarity": { "Announce": true, "Color": null, @@ -157413,31 +150758,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://99136154252309", + "thumbnail": "rbxassetid://93191567038818", }, - "configName": "Huge Werewolf", - "dateCreated": "2026-05-02T17:30:52.056Z", - "dateModified": "2026-05-02T17:30:52.056Z", - "hashShort": "14e4bd90e33c4a6b", + "configName": "Huge Lunar Deer", + "dateCreated": "2026-05-02T17:30:51.805Z", + "dateModified": "2026-05-02T17:30:51.805Z", + "hashShort": "39960c0cc657b59b", }, { "category": "Huge", "collection": "Pets", "configData": { - "cachedPower": [ - 20039527566274204, - ], - "fly": true, - "fromEgg": "Hollow Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 279, - "goldenThumbnail": "rbxassetid://92856152877536", + "goldenThumbnail": "rbxassetid://120415391967898", "huge": true, - "indexDesc": "Found in the Hollow Egg!", + "indexDesc": "Found occasionally in Active Huge Pets!", "indexObtainable": true, - "isFromLastZone": true, - "maxChance": 5.993943898902866e-8, - "name": "Huge Wisp Griffin", + "name": "Huge Penguin", "rarity": { "Announce": true, "Color": null, @@ -157450,22 +150786,26 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://107709649476563", + "thumbnail": "rbxassetid://118584949011008", }, - "configName": "Huge Wisp Griffin", - "dateCreated": "2026-05-02T17:30:52.067Z", - "dateModified": "2026-05-02T17:30:52.067Z", - "hashShort": "9454f37fb077f4f6", + "configName": "Huge Penguin", + "dateCreated": "2026-05-02T17:30:52.047Z", + "dateModified": "2026-05-02T17:30:52.047Z", + "hashShort": "40b96f4fbe0911e3", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://128324848382423", + "animations": { + "spinZ": true, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://73573240957877", "huge": true, - "indexDesc": "Found in the Time Trials Chests!", + "indexDesc": "Found in the XYZ!", "indexObtainable": true, - "name": "Huge Totem Cub", + "name": "Huge Ruinous Angelus", "rarity": { "Announce": true, "Color": null, @@ -157478,12 +150818,12 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://92882162036014", + "thumbnail": "rbxassetid://101706886467940", }, - "configName": "Huge Totem Cub", - "dateCreated": "2026-05-02T17:30:52.077Z", - "dateModified": "2026-05-02T17:30:52.077Z", - "hashShort": "94a7c39de43be38f", + "configName": "Huge Ruinous Angelus", + "dateCreated": "2026-05-02T17:30:52.217Z", + "dateModified": "2026-05-02T17:30:52.217Z", + "hashShort": "1ab50969b93917b8", }, { "category": "Huge", @@ -157546,43 +150886,11 @@ Ground Slam - Pet will damage breakables in a large area!", "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://120415391967898", - "huge": true, - "indexDesc": "Found occasionally in Active Huge Pets!", - "indexObtainable": true, - "name": "Huge Penguin", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://118584949011008", - }, - "configName": "Huge Penguin", - "dateCreated": "2026-05-02T17:30:52.047Z", - "dateModified": "2026-05-02T17:30:52.047Z", - "hashShort": "40b96f4fbe0911e3", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "animations": { - "spinZ": true, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://73573240957877", + "goldenThumbnail": "rbxassetid://119307621595813", "huge": true, - "indexDesc": "Found in the XYZ!", + "indexDesc": "???", "indexObtainable": true, - "name": "Huge Ruinous Angelus", + "name": "Huge Signature BIG Maskot", "rarity": { "Announce": true, "Color": null, @@ -157595,12 +150903,13 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://101706886467940", + "secretExclusive": true, + "thumbnail": "rbxassetid://98304859922444", }, - "configName": "Huge Ruinous Angelus", - "dateCreated": "2026-05-02T17:30:52.217Z", - "dateModified": "2026-05-02T17:30:52.217Z", - "hashShort": "1ab50969b93917b8", + "configName": "Huge Signature BIG Maskot", + "dateCreated": "2026-05-02T17:30:52.338Z", + "dateModified": "2026-05-02T17:30:52.338Z", + "hashShort": "d970df5731721531", }, { "category": "Huge", @@ -157635,40 +150944,11 @@ Ground Slam - Pet will damage breakables in a large area!", "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://119307621595813", - "huge": true, - "indexDesc": "???", - "indexObtainable": true, - "name": "Huge Signature BIG Maskot", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "secretExclusive": true, - "thumbnail": "rbxassetid://98304859922444", - }, - "configName": "Huge Signature BIG Maskot", - "dateCreated": "2026-05-02T17:30:52.338Z", - "dateModified": "2026-05-02T17:30:52.338Z", - "hashShort": "d970df5731721531", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "goldenThumbnail": "rbxassetid://80606807904111", + "goldenThumbnail": "rbxassetid://94983509839212", "huge": true, - "indexDesc": "Found in the Gargantuan Machine Hippomelon Egg!", + "indexDesc": "Found in the Veilwood Time Trials Contest!", "indexObtainable": true, - "name": "Huge Lunar Deer", + "name": "Huge Knight Golem", "rarity": { "Announce": true, "Color": null, @@ -157681,12 +150961,12 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://93191567038818", + "thumbnail": "rbxassetid://86043823769760", }, - "configName": "Huge Lunar Deer", - "dateCreated": "2026-05-02T17:30:51.805Z", - "dateModified": "2026-05-02T17:30:51.805Z", - "hashShort": "39960c0cc657b59b", + "configName": "Huge Knight Golem", + "dateCreated": "2026-05-02T17:30:52.213Z", + "dateModified": "2026-05-02T17:30:52.213Z", + "hashShort": "8d7019fb9f0f2095", }, { "category": "Huge", @@ -157745,14 +151025,17 @@ Ground Slam - Pet will damage breakables in a large area!", "hashShort": "96fbfc15d595a682", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://94983509839212", - "huge": true, - "indexDesc": "Found in the Veilwood Time Trials Contest!", + "animations": { + "spinZ": true, + }, + "fly": true, + "goldenThumbnail": "rbxassetid://110742969491162", + "indexDesc": "Found in Fantasy Gift 5 from the Veilwood Time Trials Contest!", "indexObtainable": true, - "name": "Huge Knight Golem", + "name": "Titanic Ruinous Angelus", "rarity": { "Announce": true, "Color": null, @@ -157765,12 +151048,13 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://86043823769760", + "thumbnail": "rbxassetid://128700972772946", + "titanic": true, }, - "configName": "Huge Knight Golem", - "dateCreated": "2026-05-02T17:30:52.213Z", - "dateModified": "2026-05-02T17:30:52.213Z", - "hashShort": "8d7019fb9f0f2095", + "configName": "Titanic Ruinous Angelus", + "dateCreated": "2026-05-02T17:31:04.715Z", + "dateModified": "2026-05-02T17:31:04.715Z", + "hashShort": "f4732af73cb36a56", }, { "category": "Titanic", @@ -157857,38 +151141,6 @@ Ground Slam - Pet will damage breakables in a large area!", "dateModified": "2026-05-02T17:31:04.722Z", "hashShort": "bb584e60829271cf", }, - { - "category": "Titanic", - "collection": "Pets", - "configData": { - "animations": { - "spinZ": true, - }, - "fly": true, - "goldenThumbnail": "rbxassetid://110742969491162", - "indexDesc": "Found in Fantasy Gift 5 from the Veilwood Time Trials Contest!", - "indexObtainable": true, - "name": "Titanic Ruinous Angelus", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://128700972772946", - "titanic": true, - }, - "configName": "Titanic Ruinous Angelus", - "dateCreated": "2026-05-02T17:31:04.715Z", - "dateModified": "2026-05-02T17:31:04.715Z", - "hashShort": "f4732af73cb36a56", - }, { "category": "Titanic", "collection": "Pets", @@ -157991,41 +151243,6 @@ Ground Slam - Pet will damage breakables in a large area!", "dateModified": "2026-06-27T16:05:50.595Z", "hashShort": "4931294714a7aab8", }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 20039527566274204, - 21791363978784972, - 22544468512058480, - ], - "fromEgg": "Hollow Egg", - "fromWorldNumber": 4, - "fromZoneNumber": 279, - "goldenThumbnail": "rbxassetid://100139878376347", - "isFromLastZone": true, - "maxChance": 5.993943898902866e-8, - "name": "Wicked Kirin", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Divine", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 7, - "_id": "Divine", - "_script": null, - }, - "thumbnail": "rbxassetid://125687933489233", - }, - "configName": "Wicked Kirin", - "dateCreated": "2026-05-02T17:31:44.028Z", - "dateModified": "2026-06-27T16:05:50.582Z", - "hashShort": "efd79d3b2a4f47b4", - }, { "category": "Uncategorized", "collection": "Pets", @@ -158066,16 +151283,18 @@ Ground Slam - Pet will damage breakables in a large area!", "collection": "Pets", "configData": { "cachedPower": [ - 10876316789705404, - 11746571477853522, - 12235856388418580, + 12236200927756482, + 13215581991261016, + 13765726043726044, ], - "fromEgg": "Duskwillow Egg", + "fly": true, + "fromEgg": "Wraithcap Egg", "fromWorldNumber": 4, - "fromZoneNumber": 276, - "goldenThumbnail": "rbxassetid://107052064352993", - "maxChance": 0.9, - "name": "Crystal Axolotl", + "fromZoneNumber": 277, + "goldenThumbnail": "rbxassetid://102827441168299", + "isFromLastZone": true, + "maxChance": 0.9090814913336014, + "name": "Wisp Griffin", "rarity": { "Announce": false, "Color": null, @@ -158088,30 +151307,28 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://81796950182689", + "thumbnail": "rbxassetid://81623776403017", }, - "configName": "Crystal Axolotl", - "dateCreated": "2026-05-02T17:31:44.031Z", - "dateModified": "2026-06-27T16:05:50.599Z", - "hashShort": "a671b6625889285b", + "configName": "Wisp Griffin", + "dateCreated": "2026-05-02T17:31:44.040Z", + "dateModified": "2026-06-27T16:05:50.583Z", + "hashShort": "f9597869a6589f79", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 12236200927756482, - 13215581991261016, - 13765726043726044, + 10876316789705404, + 11746571477853522, + 12235856388418580, ], - "fly": true, - "fromEgg": "Wraithcap Egg", + "fromEgg": "Duskwillow Egg", "fromWorldNumber": 4, - "fromZoneNumber": 277, - "goldenThumbnail": "rbxassetid://102827441168299", - "isFromLastZone": true, - "maxChance": 0.9090814913336014, - "name": "Wisp Griffin", + "fromZoneNumber": 276, + "goldenThumbnail": "rbxassetid://107052064352993", + "maxChance": 0.9, + "name": "Crystal Axolotl", "rarity": { "Announce": false, "Color": null, @@ -158124,12 +151341,12 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Basic", "_script": null, }, - "thumbnail": "rbxassetid://81623776403017", + "thumbnail": "rbxassetid://81796950182689", }, - "configName": "Wisp Griffin", - "dateCreated": "2026-05-02T17:31:44.040Z", - "dateModified": "2026-06-27T16:05:50.583Z", - "hashShort": "f9597869a6589f79", + "configName": "Crystal Axolotl", + "dateCreated": "2026-05-02T17:31:44.031Z", + "dateModified": "2026-06-27T16:05:50.599Z", + "hashShort": "a671b6625889285b", }, { "category": "Uncategorized", @@ -158194,15 +151411,51 @@ Ground Slam - Pet will damage breakables in a large area!", "dateModified": "2026-06-27T16:05:50.603Z", "hashShort": "3acacde4727e88a8", }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 20039527566274204, + 21791363978784972, + 22544468512058480, + ], + "fromEgg": "Hollow Egg", + "fromWorldNumber": 4, + "fromZoneNumber": 279, + "goldenThumbnail": "rbxassetid://100139878376347", + "isFromLastZone": true, + "maxChance": 5.993943898902866e-8, + "name": "Wicked Kirin", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Divine", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 7, + "_id": "Divine", + "_script": null, + }, + "thumbnail": "rbxassetid://125687933489233", + }, + "configName": "Wicked Kirin", + "dateCreated": "2026-05-02T17:31:44.028Z", + "dateModified": "2026-06-27T16:05:50.582Z", + "hashShort": "efd79d3b2a4f47b4", + }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://138854877863522", + "fly": true, + "goldenThumbnail": "rbxassetid://72512202080175", "huge": true, - "indexDesc": "Can be dropped in the Time Trials!", + "indexDesc": "Found in the 2026 Angel Clan Battle!", "indexObtainable": true, - "name": "Huge Crystal Axolotl", + "name": "Huge Angel Cow", "rarity": { "Announce": true, "Color": null, @@ -158215,26 +151468,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://78600472336744", + "thumbnail": "rbxassetid://136952666611096", }, - "configName": "Huge Crystal Axolotl", - "dateCreated": "2026-05-09T17:51:42.447Z", - "dateModified": "2026-05-09T17:51:42.447Z", - "hashShort": "369325c2c48b15e4", + "configName": "Huge Angel Cow", + "dateCreated": "2026-05-09T17:51:42.444Z", + "dateModified": "2026-05-09T17:51:42.444Z", + "hashShort": "4130641672627c9c", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://99012236789971", + "goldenThumbnail": "rbxassetid://85007130305893", "huge": true, - "indexDesc": "1 in 25,000,000 base chance from the RNG Event", + "indexDesc": "Found in Fantasy Gifts from the Veilwood Time Trials Contest!", "indexObtainable": true, - "name": "Huge Nebula Lion", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, + "name": "Huge Veil Horse", "rarity": { "Announce": true, "Color": null, @@ -158247,12 +151496,12 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://93555710520870", + "thumbnail": "rbxassetid://137004945467080", }, - "configName": "Huge Nebula Lion", - "dateCreated": "2026-05-09T17:51:42.448Z", - "dateModified": "2026-05-09T17:51:42.448Z", - "hashShort": "c91bf5cf082c4e4f", + "configName": "Huge Veil Horse", + "dateCreated": "2026-05-09T17:51:42.455Z", + "dateModified": "2026-05-09T17:51:42.455Z", + "hashShort": "0158be3b9392f68b", }, { "category": "Huge", @@ -158290,11 +151539,11 @@ Ground Slam - Pet will damage breakables in a large area!", "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://135438331804925", + "goldenThumbnail": "rbxassetid://114871320419998", "huge": true, - "indexDesc": "Found in the Exclusive Origami Egg!", + "indexDesc": "Found in Fantasy Gifts from the Veilwood Time Trials Contest!", "indexObtainable": true, - "name": "Huge Origami Bunny", + "name": "Huge Wicked Kirin", "rarity": { "Announce": true, "Color": null, @@ -158307,26 +151556,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://83483274094182", + "thumbnail": "rbxassetid://80510335066918", }, - "configName": "Huge Origami Bunny", - "dateCreated": "2026-05-09T17:51:42.437Z", - "dateModified": "2026-05-09T17:51:42.437Z", - "hashShort": "dbf00d15c98ffed4", + "configName": "Huge Wicked Kirin", + "dateCreated": "2026-05-09T17:51:42.439Z", + "dateModified": "2026-05-09T17:51:42.439Z", + "hashShort": "f2a78bbbd5b371fc", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://100447638935147", + "goldenThumbnail": "rbxassetid://135438331804925", "huge": true, - "indexDesc": "Found in the Void Forever Pack!", + "indexDesc": "Found in the Exclusive Origami Egg!", "indexObtainable": true, - "name": "Huge Alienus Kitsune", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, + "name": "Huge Origami Bunny", "rarity": { "Announce": true, "Color": null, @@ -158339,12 +151584,12 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://135920143312386", + "thumbnail": "rbxassetid://83483274094182", }, - "configName": "Huge Alienus Kitsune", - "dateCreated": "2026-05-09T17:51:42.440Z", - "dateModified": "2026-05-09T17:51:42.440Z", - "hashShort": "e1f2fe9280dc8774", + "configName": "Huge Origami Bunny", + "dateCreated": "2026-05-09T17:51:42.437Z", + "dateModified": "2026-05-09T17:51:42.437Z", + "hashShort": "dbf00d15c98ffed4", }, { "category": "Huge", @@ -158382,12 +151627,11 @@ Ground Slam - Pet will damage breakables in a large area!", "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://72512202080175", + "goldenThumbnail": "rbxassetid://138854877863522", "huge": true, - "indexDesc": "Found in the 2026 Angel Clan Battle!", + "indexDesc": "Can be dropped in the Time Trials!", "indexObtainable": true, - "name": "Huge Angel Cow", + "name": "Huge Crystal Axolotl", "rarity": { "Announce": true, "Color": null, @@ -158400,22 +151644,26 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://136952666611096", + "thumbnail": "rbxassetid://78600472336744", }, - "configName": "Huge Angel Cow", - "dateCreated": "2026-05-09T17:51:42.444Z", - "dateModified": "2026-05-09T17:51:42.444Z", - "hashShort": "4130641672627c9c", + "configName": "Huge Crystal Axolotl", + "dateCreated": "2026-05-09T17:51:42.447Z", + "dateModified": "2026-05-09T17:51:42.447Z", + "hashShort": "369325c2c48b15e4", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://114871320419998", + "fly": true, + "goldenThumbnail": "rbxassetid://99012236789971", "huge": true, - "indexDesc": "Found in Fantasy Gifts from the Veilwood Time Trials Contest!", + "indexDesc": "1 in 25,000,000 base chance from the RNG Event", "indexObtainable": true, - "name": "Huge Wicked Kirin", + "name": "Huge Nebula Lion", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, "rarity": { "Announce": true, "Color": null, @@ -158428,22 +151676,26 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://80510335066918", + "thumbnail": "rbxassetid://93555710520870", }, - "configName": "Huge Wicked Kirin", - "dateCreated": "2026-05-09T17:51:42.439Z", - "dateModified": "2026-05-09T17:51:42.439Z", - "hashShort": "f2a78bbbd5b371fc", + "configName": "Huge Nebula Lion", + "dateCreated": "2026-05-09T17:51:42.448Z", + "dateModified": "2026-05-09T17:51:42.448Z", + "hashShort": "c91bf5cf082c4e4f", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://85007130305893", + "fly": true, + "goldenThumbnail": "rbxassetid://100447638935147", "huge": true, - "indexDesc": "Found in Fantasy Gifts from the Veilwood Time Trials Contest!", + "indexDesc": "Found in the Void Forever Pack!", "indexObtainable": true, - "name": "Huge Veil Horse", + "name": "Huge Alienus Kitsune", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, "rarity": { "Announce": true, "Color": null, @@ -158456,12 +151708,12 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://137004945467080", + "thumbnail": "rbxassetid://135920143312386", }, - "configName": "Huge Veil Horse", - "dateCreated": "2026-05-09T17:51:42.455Z", - "dateModified": "2026-05-09T17:51:42.455Z", - "hashShort": "0158be3b9392f68b", + "configName": "Huge Alienus Kitsune", + "dateCreated": "2026-05-09T17:51:42.440Z", + "dateModified": "2026-05-09T17:51:42.440Z", + "hashShort": "e1f2fe9280dc8774", }, { "category": "Huge", @@ -158491,36 +151743,6 @@ Ground Slam - Pet will damage breakables in a large area!", "dateModified": "2026-05-09T17:51:42.471Z", "hashShort": "61bf5f1479a5f40b", }, - { - "category": "Titanic", - "collection": "Pets", - "configData": { - "fly": true, - "flyingTitanic": true, - "goldenThumbnail": "rbxassetid://130897869663062", - "indexDesc": "Found in the Exclusive Origami Egg!", - "indexObtainable": true, - "name": "Titanic Origami Crane", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://77309638284981", - "titanic": true, - }, - "configName": "Titanic Origami Crane", - "dateCreated": "2026-05-09T17:51:44.940Z", - "dateModified": "2026-05-09T17:51:44.940Z", - "hashShort": "743b0665b49c6bd0", - }, { "category": "Titanic", "collection": "Pets", @@ -158555,6 +151777,36 @@ Ground Slam - Pet will damage breakables in a large area!", "dateModified": "2026-05-09T17:51:44.935Z", "hashShort": "161c2144c5125f67", }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fly": true, + "flyingTitanic": true, + "goldenThumbnail": "rbxassetid://130897869663062", + "indexDesc": "Found in the Exclusive Origami Egg!", + "indexObtainable": true, + "name": "Titanic Origami Crane", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://77309638284981", + "titanic": true, + }, + "configName": "Titanic Origami Crane", + "dateCreated": "2026-05-09T17:51:44.940Z", + "dateModified": "2026-05-09T17:51:44.940Z", + "hashShort": "743b0665b49c6bd0", + }, { "category": "Titanic", "collection": "Pets", @@ -158661,6 +151913,30 @@ Ground Slam - Pet will damage breakables in a large area!", "dateModified": "2026-06-27T16:05:23.866Z", "hashShort": "021146507dcbe5da", }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 18281664204055, + 19527589732755, + 20666815421513, + ], + "fly": true, + "fromWorldNumber": 3, + "fromZoneNumber": 220, + "goldenThumbnail": "rbxassetid://74884358674322", + "name": "Sapphire Dragon", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://88212205964992", + }, + "configName": "Sapphire Dragon", + "dateCreated": "2026-05-09T17:52:05.870Z", + "dateModified": "2026-06-27T16:05:50.612Z", + "hashShort": "d6b066702bf25442", + }, { "category": "Uncategorized", "collection": "Pets", @@ -158712,25 +151988,27 @@ Ground Slam - Pet will damage breakables in a large area!", "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 18281664204055, - 19527589732755, - 20666815421513, - ], - "fly": true, - "fromWorldNumber": 3, - "fromZoneNumber": 220, - "goldenThumbnail": "rbxassetid://74884358674322", - "name": "Sapphire Dragon", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, - "thumbnail": "rbxassetid://88212205964992", + "exclusiveLevel": 2, + "goldenThumbnail": "rbxassetid://133061440004886", + "name": "Origami Fox", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://101359588491259", }, - "configName": "Sapphire Dragon", - "dateCreated": "2026-05-09T17:52:05.870Z", - "dateModified": "2026-06-27T16:05:50.612Z", - "hashShort": "d6b066702bf25442", + "configName": "Origami Fox", + "dateCreated": "2026-05-09T17:52:05.879Z", + "dateModified": "2026-05-09T17:52:05.879Z", + "hashShort": "e10c1248dfb72472", }, { "category": "Uncategorized", @@ -158756,32 +152034,6 @@ Ground Slam - Pet will damage breakables in a large area!", "dateModified": "2026-06-27T16:05:46.820Z", "hashShort": "b14324d374e08d05", }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "rbxassetid://133061440004886", - "name": "Origami Fox", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://101359588491259", - }, - "configName": "Origami Fox", - "dateCreated": "2026-05-09T17:52:05.879Z", - "dateModified": "2026-05-09T17:52:05.879Z", - "hashShort": "e10c1248dfb72472", - }, { "category": "Uncategorized", "collection": "Pets", @@ -158831,52 +152083,6 @@ Ground Slam - Pet will damage breakables in a large area!", "dateModified": "2026-06-27T16:05:50.594Z", "hashShort": "67ca72832c0d369a", }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 20278551590830, - 21749622780838, - 22921235756280, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 220, - "goldenThumbnail": "rbxassetid://125648324084910", - "name": "Surge Wolf", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, - "thumbnail": "rbxassetid://75053878929032", - }, - "configName": "Surge Wolf", - "dateCreated": "2026-05-09T17:52:05.912Z", - "dateModified": "2026-06-27T16:05:46.815Z", - "hashShort": "4608a3d02436d00e", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 17683665842241, - 19073630313308, - 19985876292342, - ], - "fromWorldNumber": 3, - "fromZoneNumber": 220, - "goldenThumbnail": "rbxassetid://90832503040450", - "name": "Starry Eye Wolf", - "preventFuseMachine": true, - "preventGoldMachine": true, - "preventRainbowMachine": true, - "thumbnail": "rbxassetid://117843161621621", - }, - "configName": "Starry Eye Wolf", - "dateCreated": "2026-05-09T17:52:05.909Z", - "dateModified": "2026-06-27T16:05:46.838Z", - "hashShort": "515972ed99b243ea", - }, { "category": "Uncategorized", "collection": "Pets", @@ -158950,6 +152156,29 @@ Ground Slam - Pet will damage breakables in a large area!", "dateModified": "2026-06-27T16:05:46.821Z", "hashShort": "f0ed8d9b51267f6c", }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 20278551590830, + 21749622780838, + 22921235756280, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 220, + "goldenThumbnail": "rbxassetid://125648324084910", + "name": "Surge Wolf", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://75053878929032", + }, + "configName": "Surge Wolf", + "dateCreated": "2026-05-09T17:52:05.912Z", + "dateModified": "2026-06-27T16:05:46.815Z", + "hashShort": "4608a3d02436d00e", + }, { "category": "Uncategorized", "collection": "Pets", @@ -158974,6 +152203,29 @@ Ground Slam - Pet will damage breakables in a large area!", "dateModified": "2026-06-27T16:05:50.588Z", "hashShort": "8625d32b7be24aa0", }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 17683665842241, + 19073630313308, + 19985876292342, + ], + "fromWorldNumber": 3, + "fromZoneNumber": 220, + "goldenThumbnail": "rbxassetid://90832503040450", + "name": "Starry Eye Wolf", + "preventFuseMachine": true, + "preventGoldMachine": true, + "preventRainbowMachine": true, + "thumbnail": "rbxassetid://117843161621621", + }, + "configName": "Starry Eye Wolf", + "dateCreated": "2026-05-09T17:52:05.909Z", + "dateModified": "2026-06-27T16:05:46.838Z", + "hashShort": "515972ed99b243ea", + }, { "category": "Uncategorized", "collection": "Pets", @@ -159362,12 +152614,13 @@ Ground Slam - Pet will damage breakables in a large area!", "collection": "Pets", "configData": { "gargantuan": true, - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Space Egg! + "goldenThumbnail": "rbxassetid://123223942397140", + "hidden": false, + "indexDesc": "Found in the Backrooms Keep Out Egg! Ground Slam - Pet will damage breakables in a large area!", "indexObtainable": true, - "name": "Gargantuan Solar Lion", + "name": "Gargantuan Guest 666", "rarity": { "Announce": true, "Color": null, @@ -159380,25 +152633,24 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://87628881195468", + "thumbnail": "rbxassetid://135146676911044", }, - "configName": "Gargantuan Solar Lion", - "dateCreated": "2026-06-13T23:13:01.385Z", - "dateModified": "2026-06-13T23:13:01.385Z", - "hashShort": "eaf34720d52c4578", + "configName": "Gargantuan Guest 666", + "dateCreated": "2026-06-13T23:13:01.386Z", + "dateModified": "2026-06-13T23:13:01.386Z", + "hashShort": "e68f2049b96dbb32", }, { "category": "Gargantuan", "collection": "Pets", "configData": { "gargantuan": true, - "goldenThumbnail": "rbxassetid://123223942397140", - "hidden": false, - "indexDesc": "Found in the Backrooms Keep Out Egg! + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Space Egg! Ground Slam - Pet will damage breakables in a large area!", "indexObtainable": true, - "name": "Gargantuan Guest 666", + "name": "Gargantuan Solar Lion", "rarity": { "Announce": true, "Color": null, @@ -159411,12 +152663,12 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://135146676911044", + "thumbnail": "rbxassetid://87628881195468", }, - "configName": "Gargantuan Guest 666", - "dateCreated": "2026-06-13T23:13:01.386Z", - "dateModified": "2026-06-13T23:13:01.386Z", - "hashShort": "e68f2049b96dbb32", + "configName": "Gargantuan Solar Lion", + "dateCreated": "2026-06-13T23:13:01.385Z", + "dateModified": "2026-06-13T23:13:01.385Z", + "hashShort": "eaf34720d52c4578", }, { "category": "Gargantuan", @@ -159456,35 +152708,6 @@ Ground Slam - Pet will damage breakables in a large area!", "dateModified": "2026-06-27T16:04:59.112Z", "hashShort": "5538928ef19a828a", }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "goldenThumbnail": "rbxassetid://101768773226291", - "hidden": false, - "huge": true, - "indexDesc": "Found in The Forever Pack!", - "indexObtainable": true, - "name": "Huge Guest 666", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://128645300707262", - }, - "configName": "Huge Guest 666", - "dateCreated": "2026-06-13T23:13:11.334Z", - "dateModified": "2026-06-13T23:13:11.334Z", - "hashShort": "b03be4c7e2c19366", - }, { "category": "Huge", "collection": "Pets", @@ -159518,12 +152741,11 @@ Ground Slam - Pet will damage breakables in a large area!", "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://107834232815116", - "hidden": false, + "goldenThumbnail": "", "huge": true, - "indexDesc": "Found in the Daydream Chest!", + "indexDesc": "Found in the Exclusive Space Egg!", "indexObtainable": true, - "name": "Huge Piggy Piggy", + "name": "Huge Earth Dog", "rarity": { "Announce": true, "Color": null, @@ -159536,22 +152758,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://110879207781790", + "thumbnail": "rbxassetid://89978281504529", }, - "configName": "Huge Piggy Piggy", - "dateCreated": "2026-06-13T23:13:11.334Z", - "dateModified": "2026-06-13T23:13:11.334Z", - "hashShort": "1082b76aeb30839c", + "configName": "Huge Earth Dog", + "dateCreated": "2026-06-13T23:13:11.335Z", + "dateModified": "2026-06-13T23:13:11.335Z", + "hashShort": "69fc284ec512968f", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "", + "goldenThumbnail": "rbxassetid://101768773226291", + "hidden": false, "huge": true, - "indexDesc": "Found in the Exclusive Space Egg!", + "indexDesc": "Found in The Forever Pack!", "indexObtainable": true, - "name": "Huge Earth Dog", + "name": "Huge Guest 666", "rarity": { "Announce": true, "Color": null, @@ -159564,23 +152787,24 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://89978281504529", + "thumbnail": "rbxassetid://128645300707262", }, - "configName": "Huge Earth Dog", - "dateCreated": "2026-06-13T23:13:11.335Z", - "dateModified": "2026-06-13T23:13:11.335Z", - "hashShort": "69fc284ec512968f", + "configName": "Huge Guest 666", + "dateCreated": "2026-06-13T23:13:11.334Z", + "dateModified": "2026-06-13T23:13:11.334Z", + "hashShort": "b03be4c7e2c19366", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://131861824267590", + "fly": true, + "goldenThumbnail": "rbxassetid://125398538928840", "hidden": false, "huge": true, - "indexDesc": "Found in the Backrooms Eggs!", + "indexDesc": "Found in the Daydream Chest!", "indexObtainable": true, - "name": "Huge Partygoer Cat", + "name": "Huge Tripod Octopus", "rarity": { "Announce": true, "Color": null, @@ -159593,24 +152817,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://138965956652016", + "thumbnail": "rbxassetid://93268363716893", }, - "configName": "Huge Partygoer Cat", + "configName": "Huge Tripod Octopus", "dateCreated": "2026-06-13T23:13:11.336Z", "dateModified": "2026-06-13T23:13:11.336Z", - "hashShort": "4a83985867a58c55", + "hashShort": "1162df10be0d4088", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://125398538928840", + "goldenThumbnail": "rbxassetid://107834232815116", "hidden": false, "huge": true, "indexDesc": "Found in the Daydream Chest!", "indexObtainable": true, - "name": "Huge Tripod Octopus", + "name": "Huge Piggy Piggy", "rarity": { "Announce": true, "Color": null, @@ -159623,12 +152846,12 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://93268363716893", + "thumbnail": "rbxassetid://110879207781790", }, - "configName": "Huge Tripod Octopus", - "dateCreated": "2026-06-13T23:13:11.336Z", - "dateModified": "2026-06-13T23:13:11.336Z", - "hashShort": "1162df10be0d4088", + "configName": "Huge Piggy Piggy", + "dateCreated": "2026-06-13T23:13:11.334Z", + "dateModified": "2026-06-13T23:13:11.334Z", + "hashShort": "1082b76aeb30839c", }, { "category": "Huge", @@ -159663,13 +152886,12 @@ Ground Slam - Pet will damage breakables in a large area!", "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://71183497348760", + "goldenThumbnail": "rbxassetid://131861824267590", "hidden": false, "huge": true, - "indexDesc": "Earned from the Backrooms event leaderboard contest!", + "indexDesc": "Found in the Backrooms Eggs!", "indexObtainable": true, - "name": "Huge Death Moth", + "name": "Huge Partygoer Cat", "rarity": { "Announce": true, "Color": null, @@ -159682,23 +152904,24 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://127035440005501", + "thumbnail": "rbxassetid://138965956652016", }, - "configName": "Huge Death Moth", - "dateCreated": "2026-06-13T23:13:11.344Z", - "dateModified": "2026-06-13T23:13:11.344Z", - "hashShort": "5aefd9ba111f397f", + "configName": "Huge Partygoer Cat", + "dateCreated": "2026-06-13T23:13:11.336Z", + "dateModified": "2026-06-13T23:13:11.336Z", + "hashShort": "4a83985867a58c55", }, { "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://137063337041843", + "goldenThumbnail": "rbxassetid://71183497348760", + "hidden": false, "huge": true, - "indexDesc": "Found in the 2026 Forever Pack!", + "indexDesc": "Earned from the Backrooms event leaderboard contest!", "indexObtainable": true, - "name": "Huge Honey Bee", + "name": "Huge Death Moth", "rarity": { "Announce": true, "Color": null, @@ -159711,12 +152934,12 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://131704156352631", + "thumbnail": "rbxassetid://127035440005501", }, - "configName": "Huge Honey Bee", - "dateCreated": "2026-06-13T23:13:11.350Z", - "dateModified": "2026-06-13T23:13:11.350Z", - "hashShort": "1c7c6b5a289a686c", + "configName": "Huge Death Moth", + "dateCreated": "2026-06-13T23:13:11.344Z", + "dateModified": "2026-06-13T23:13:11.344Z", + "hashShort": "5aefd9ba111f397f", }, { "category": "Huge", @@ -159774,6 +152997,35 @@ Ground Slam - Pet will damage breakables in a large area!", "dateModified": "2026-06-13T23:13:11.347Z", "hashShort": "29a59c7db77cccfe", }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://137063337041843", + "huge": true, + "indexDesc": "Found in the 2026 Forever Pack!", + "indexObtainable": true, + "name": "Huge Honey Bee", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://131704156352631", + }, + "configName": "Huge Honey Bee", + "dateCreated": "2026-06-13T23:13:11.350Z", + "dateModified": "2026-06-13T23:13:11.350Z", + "hashShort": "1c7c6b5a289a686c", + }, { "category": "Huge", "collection": "Pets", @@ -159836,12 +153088,10 @@ Ground Slam - Pet will damage breakables in a large area!", "category": "Titanic", "collection": "Pets", "configData": { - "fly": true, - "flyingTitanic": true, - "goldenThumbnail": "", - "indexDesc": "Found in the Exclusive Space Egg!", + "goldenThumbnail": "rbxassetid://76804683578340", + "indexDesc": "Found in the 2026 Daydream Clan Battle!", "indexObtainable": true, - "name": "Titanic Space Bat", + "name": "Titanic Daydream Fox", "rarity": { "Announce": true, "Color": null, @@ -159854,22 +153104,24 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://107167387939253", + "thumbnail": "rbxassetid://102769273714127", "titanic": true, }, - "configName": "Titanic Space Bat", - "dateCreated": "2026-06-13T23:13:14.446Z", - "dateModified": "2026-06-13T23:13:14.446Z", - "hashShort": "c88815fe9ed3c52d", + "configName": "Titanic Daydream Fox", + "dateCreated": "2026-06-13T23:13:14.445Z", + "dateModified": "2026-06-13T23:13:14.445Z", + "hashShort": "76974fe3f235947b", }, { "category": "Titanic", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://76804683578340", - "indexDesc": "Found in the 2026 Daydream Clan Battle!", + "fly": true, + "flyingTitanic": true, + "goldenThumbnail": "", + "indexDesc": "Found in the Exclusive Space Egg!", "indexObtainable": true, - "name": "Titanic Daydream Fox", + "name": "Titanic Space Bat", "rarity": { "Announce": true, "Color": null, @@ -159882,13 +153134,13 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://102769273714127", + "thumbnail": "rbxassetid://107167387939253", "titanic": true, }, - "configName": "Titanic Daydream Fox", - "dateCreated": "2026-06-13T23:13:14.445Z", - "dateModified": "2026-06-13T23:13:14.445Z", - "hashShort": "76974fe3f235947b", + "configName": "Titanic Space Bat", + "dateCreated": "2026-06-13T23:13:14.446Z", + "dateModified": "2026-06-13T23:13:14.446Z", + "hashShort": "c88815fe9ed3c52d", }, { "category": "Titanic", @@ -159949,6 +153201,27 @@ Ground Slam - Pet will damage breakables in a large area!", "dateModified": "2026-06-13T23:13:14.456Z", "hashShort": "9c0fc6f4a57214eb", }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 1520872813580, + 1634271027864, + 1726153249307, + ], + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://126155913975463", + "hidden": false, + "name": "Partygoer Cat", + "thumbnail": "rbxassetid://70695657719788", + }, + "configName": "Partygoer Cat", + "dateCreated": "2026-06-13T23:13:27.983Z", + "dateModified": "2026-06-27T16:05:46.808Z", + "hashShort": "0a9b3d367d9c4ad1", + }, { "category": "Uncategorized", "collection": "Pets", @@ -159990,27 +153263,6 @@ Ground Slam - Pet will damage breakables in a large area!", "dateModified": "2026-06-27T16:05:46.800Z", "hashShort": "a2ca698c83131025", }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 1520872813580, - 1634271027864, - 1726153249307, - ], - "fromWorldNumber": 2, - "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://126155913975463", - "hidden": false, - "name": "Partygoer Cat", - "thumbnail": "rbxassetid://70695657719788", - }, - "configName": "Partygoer Cat", - "dateCreated": "2026-06-13T23:13:27.983Z", - "dateModified": "2026-06-27T16:05:46.808Z", - "hashShort": "0a9b3d367d9c4ad1", - }, { "category": "Uncategorized", "collection": "Pets", @@ -160079,23 +153331,27 @@ Ground Slam - Pet will damage breakables in a large area!", "category": "Uncategorized", "collection": "Pets", "configData": { - "cachedPower": [ - 1228988132186, - 1312463103180, - 1387871183633, - ], - "fly": true, - "fromWorldNumber": 2, - "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://99277867504491", - "hidden": false, - "name": "Death Moth", - "thumbnail": "rbxassetid://82781977088114", + "exclusiveLevel": 2, + "goldenThumbnail": "", + "name": "Moon Raccoon", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://83613390182850", }, - "configName": "Death Moth", - "dateCreated": "2026-06-13T23:13:29.973Z", - "dateModified": "2026-06-27T16:05:50.602Z", - "hashShort": "567864a3bbeac76f", + "configName": "Moon Raccoon", + "dateCreated": "2026-06-13T23:13:29.978Z", + "dateModified": "2026-06-13T23:13:29.978Z", + "hashShort": "5ed538cfe72f358a", }, { "category": "Uncategorized", @@ -160123,68 +153379,64 @@ Ground Slam - Pet will damage breakables in a large area!", "collection": "Pets", "configData": { "cachedPower": [ - 1451742231144, - 1580409775901, - 1645361371363, + 1092433895276, + 1162549362152, + 1230473169211, ], "fromWorldNumber": 2, "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://128674966050239", + "goldenThumbnail": "rbxassetid://105637248855721", "hidden": false, - "name": "Omen", - "thumbnail": "rbxassetid://129760165373229", + "name": "Memory Worm", + "thumbnail": "rbxassetid://122158293835991", }, - "configName": "Omen", - "dateCreated": "2026-06-13T23:13:29.973Z", - "dateModified": "2026-06-27T16:05:50.602Z", - "hashShort": "f496de36e0b961bc", + "configName": "Memory Worm", + "dateCreated": "2026-06-13T23:13:29.975Z", + "dateModified": "2026-06-27T16:05:50.587Z", + "hashShort": "1022598eb65530c4", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "exclusiveLevel": 2, - "goldenThumbnail": "", - "name": "Moon Raccoon", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://83613390182850", + "cachedPower": [ + 1228988132186, + 1312463103180, + 1387871183633, + ], + "fly": true, + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://99277867504491", + "hidden": false, + "name": "Death Moth", + "thumbnail": "rbxassetid://82781977088114", }, - "configName": "Moon Raccoon", - "dateCreated": "2026-06-13T23:13:29.978Z", - "dateModified": "2026-06-13T23:13:29.978Z", - "hashShort": "5ed538cfe72f358a", + "configName": "Death Moth", + "dateCreated": "2026-06-13T23:13:29.973Z", + "dateModified": "2026-06-27T16:05:50.602Z", + "hashShort": "567864a3bbeac76f", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 1092433895276, - 1162549362152, - 1230473169211, + 1451742231144, + 1580409775901, + 1645361371363, ], "fromWorldNumber": 2, "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://105637248855721", + "goldenThumbnail": "rbxassetid://128674966050239", "hidden": false, - "name": "Memory Worm", - "thumbnail": "rbxassetid://122158293835991", + "name": "Omen", + "thumbnail": "rbxassetid://129760165373229", }, - "configName": "Memory Worm", - "dateCreated": "2026-06-13T23:13:29.975Z", - "dateModified": "2026-06-27T16:05:50.587Z", - "hashShort": "1022598eb65530c4", + "configName": "Omen", + "dateCreated": "2026-06-13T23:13:29.973Z", + "dateModified": "2026-06-27T16:05:50.602Z", + "hashShort": "f496de36e0b961bc", }, { "category": "Uncategorized", @@ -160328,6 +153580,47 @@ Ground Slam - Pet will damage breakables in a large area!", "dateModified": "2026-06-20T16:07:30.100Z", "hashShort": "46d3209c64f0efe7", }, + { + "category": "Huge", + "collection": "Pets", + "configData": { + "animations": { + "flipbookAnimation": [ + "rbxassetid://104665010897956", + "rbxassetid://118202917927639", + ], + "flipbookAnimationGold": [ + "rbxassetid://119950914184505", + "rbxassetid://137655298515439", + ], + "flipbookAnimationSpeed": 1, + }, + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://138300679211853", + "huge": true, + "indexDesc": "Found in the Backrooms Eggs!", + "indexObtainable": true, + "name": "Huge Smiley Penguin", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://139822488922348", + }, + "configName": "Huge Smiley Penguin", + "dateCreated": "2026-06-20T16:07:30.101Z", + "dateModified": "2026-06-20T16:07:30.101Z", + "hashShort": "0958887585fd0a26", + }, { "category": "Huge", "collection": "Pets", @@ -160393,24 +153686,13 @@ Ground Slam - Pet will damage breakables in a large area!", "category": "Huge", "collection": "Pets", "configData": { - "animations": { - "flipbookAnimation": [ - "rbxassetid://104665010897956", - "rbxassetid://118202917927639", - ], - "flipbookAnimationGold": [ - "rbxassetid://119950914184505", - "rbxassetid://137655298515439", - ], - "flipbookAnimationSpeed": 1, - }, "fromWorldNumber": 2, "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://138300679211853", + "goldenThumbnail": "rbxassetid://77296613630337", "huge": true, - "indexDesc": "Found in the Backrooms Eggs!", + "indexDesc": "Found in The Forever Pack!", "indexObtainable": true, - "name": "Huge Smiley Penguin", + "name": "Huge 1x1x1x1", "rarity": { "Announce": true, "Color": null, @@ -160423,12 +153705,12 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://139822488922348", + "thumbnail": "rbxassetid://139622884856578", }, - "configName": "Huge Smiley Penguin", - "dateCreated": "2026-06-20T16:07:30.101Z", - "dateModified": "2026-06-20T16:07:30.101Z", - "hashShort": "0958887585fd0a26", + "configName": "Huge 1x1x1x1", + "dateCreated": "2026-06-20T16:07:30.098Z", + "dateModified": "2026-06-20T16:07:30.098Z", + "hashShort": "c987cae4ed30f441", }, { "category": "Huge", @@ -160462,16 +153744,24 @@ Ground Slam - Pet will damage breakables in a large area!", "hashShort": "d220b6400f6e4930", }, { - "category": "Huge", + "category": "Titanic", "collection": "Pets", "configData": { - "fromWorldNumber": 2, - "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://77296613630337", - "huge": true, - "indexDesc": "Found in The Forever Pack!", + "animations": { + "flipbookAnimation": [ + "rbxassetid://104665010897956", + "rbxassetid://118202917927639", + ], + "flipbookAnimationGold": [ + "rbxassetid://119950914184505", + "rbxassetid://137655298515439", + ], + "flipbookAnimationSpeed": 1, + }, + "goldenThumbnail": "rbxassetid://128742956774034", + "indexDesc": "Won from the Backrooms Boss Fight!", "indexObtainable": true, - "name": "Huge 1x1x1x1", + "name": "Titanic Smiley Penguin", "rarity": { "Announce": true, "Color": null, @@ -160484,12 +153774,13 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://139622884856578", + "thumbnail": "rbxassetid://112850579981229", + "titanic": true, }, - "configName": "Huge 1x1x1x1", - "dateCreated": "2026-06-20T16:07:30.098Z", - "dateModified": "2026-06-20T16:07:30.098Z", - "hashShort": "c987cae4ed30f441", + "configName": "Titanic Smiley Penguin", + "dateCreated": "2026-06-20T16:07:38.851Z", + "dateModified": "2026-06-20T16:07:38.851Z", + "hashShort": "64cfeb3a1a3b832e", }, { "category": "Titanic", @@ -160520,95 +153811,64 @@ Ground Slam - Pet will damage breakables in a large area!", "hashShort": "6f9a648ac6aec9a9", }, { - "category": "Titanic", + "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "flipbookAnimation": [ - "rbxassetid://104665010897956", - "rbxassetid://118202917927639", - ], - "flipbookAnimationGold": [ - "rbxassetid://119950914184505", - "rbxassetid://137655298515439", - ], - "flipbookAnimationSpeed": 1, - }, - "goldenThumbnail": "rbxassetid://128742956774034", - "indexDesc": "Won from the Backrooms Boss Fight!", - "indexObtainable": true, - "name": "Titanic Smiley Penguin", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://112850579981229", - "titanic": true, + "cachedPower": [ + 3192735201358, + 3444716642971, + 3605080226684, + ], + "fromWorldNumber": 2, + "fromZoneNumber": 199, + "goldenThumbnail": "rbxassetid://98322114349196", + "name": "1x1x1x1", + "thumbnail": "rbxassetid://76631033930341", }, - "configName": "Titanic Smiley Penguin", - "dateCreated": "2026-06-20T16:07:38.851Z", - "dateModified": "2026-06-20T16:07:38.851Z", - "hashShort": "64cfeb3a1a3b832e", + "configName": "1x1x1x1", + "dateCreated": "2026-06-20T16:08:13.660Z", + "dateModified": "2026-06-27T16:05:50.599Z", + "hashShort": "8ce92903f51d37f1", }, { "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "flipbookAnimation": [ - "rbxassetid://104665010897956", - "rbxassetid://118202917927639", - ], - "flipbookAnimationGold": [ - "rbxassetid://119950914184505", - "rbxassetid://137655298515439", - ], - "flipbookAnimationSpeed": 1, - }, "cachedPower": [ - 2270043433315, - 2477641661056, - 2566529104088, + 2943097469564, + 3201621215878, + 3330583137259, ], "fromWorldNumber": 2, "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://103591381604142", - "name": "Smiley Penguin", - "thumbnail": "rbxassetid://129840750338173", + "goldenThumbnail": "rbxassetid://79764933995896", + "name": "Gamemaster Cat", + "thumbnail": "rbxassetid://119418795858587", }, - "configName": "Smiley Penguin", - "dateCreated": "2026-06-20T16:08:13.651Z", - "dateModified": "2026-06-27T16:05:50.608Z", - "hashShort": "1e5c6ca0fe1f58e0", + "configName": "Gamemaster Cat", + "dateCreated": "2026-06-20T16:08:13.658Z", + "dateModified": "2026-06-27T16:05:50.596Z", + "hashShort": "4ec987b2f7c05675", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 2436144172338, - 2616043565094, - 2761468921471, + 2678374416746, + 2894826811308, + 3034117546158, ], - "fly": true, "fromWorldNumber": 2, "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://104642964512110", - "name": "Tripod Dominus", - "thumbnail": "rbxassetid://80671258589385", + "goldenThumbnail": "rbxassetid://114437177963845", + "name": "Partypooper Dog", + "thumbnail": "rbxassetid://78914153944647", }, - "configName": "Tripod Dominus", - "dateCreated": "2026-06-20T16:08:13.653Z", - "dateModified": "2026-06-27T16:05:50.604Z", - "hashShort": "c8e636bb02cc1833", + "configName": "Partypooper Dog", + "dateCreated": "2026-06-20T16:08:13.659Z", + "dateModified": "2026-06-27T16:05:50.583Z", + "hashShort": "ea9ae4dc549ee572", }, { "category": "Uncategorized", @@ -160656,72 +153916,67 @@ Ground Slam - Pet will damage breakables in a large area!", "collection": "Pets", "configData": { "cachedPower": [ - 3192735201358, - 3444716642971, - 3605080226684, - ], - "fromWorldNumber": 2, - "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://98322114349196", - "name": "1x1x1x1", - "thumbnail": "rbxassetid://76631033930341", - }, - "configName": "1x1x1x1", - "dateCreated": "2026-06-20T16:08:13.660Z", - "dateModified": "2026-06-27T16:05:50.599Z", - "hashShort": "8ce92903f51d37f1", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 2943097469564, - 3201621215878, - 3330583137259, + 2436144172338, + 2616043565094, + 2761468921471, ], + "fly": true, "fromWorldNumber": 2, "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://79764933995896", - "name": "Gamemaster Cat", - "thumbnail": "rbxassetid://119418795858587", + "goldenThumbnail": "rbxassetid://104642964512110", + "name": "Tripod Dominus", + "thumbnail": "rbxassetid://80671258589385", }, - "configName": "Gamemaster Cat", - "dateCreated": "2026-06-20T16:08:13.658Z", - "dateModified": "2026-06-27T16:05:50.596Z", - "hashShort": "4ec987b2f7c05675", + "configName": "Tripod Dominus", + "dateCreated": "2026-06-20T16:08:13.653Z", + "dateModified": "2026-06-27T16:05:50.604Z", + "hashShort": "c8e636bb02cc1833", }, { "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "flipbookAnimation": [ + "rbxassetid://104665010897956", + "rbxassetid://118202917927639", + ], + "flipbookAnimationGold": [ + "rbxassetid://119950914184505", + "rbxassetid://137655298515439", + ], + "flipbookAnimationSpeed": 1, + }, "cachedPower": [ - 2678374416746, - 2894826811308, - 3034117546158, + 2270043433315, + 2477641661056, + 2566529104088, ], "fromWorldNumber": 2, "fromZoneNumber": 199, - "goldenThumbnail": "rbxassetid://114437177963845", - "name": "Partypooper Dog", - "thumbnail": "rbxassetid://78914153944647", + "goldenThumbnail": "rbxassetid://103591381604142", + "name": "Smiley Penguin", + "thumbnail": "rbxassetid://129840750338173", }, - "configName": "Partypooper Dog", - "dateCreated": "2026-06-20T16:08:13.659Z", - "dateModified": "2026-06-27T16:05:50.583Z", - "hashShort": "ea9ae4dc549ee572", + "configName": "Smiley Penguin", + "dateCreated": "2026-06-20T16:08:13.651Z", + "dateModified": "2026-06-27T16:05:50.608Z", + "hashShort": "1e5c6ca0fe1f58e0", }, { "category": "Gargantuan", "collection": "Pets", "configData": { + "fly": true, + "flyingTitanic": true, + "flyingTitanicAlwaysFly": true, "gargantuan": true, - "goldenThumbnail": "rbxassetid://92250721464509", - "indexDesc": "Found in the 2026 Soccer Clan Battle! (and more) + "goldenThumbnail": "rbxassetid://91692574620289", + "indexDesc": "Found in the Exclusive Vapor Egg! Ground Slam - Pet will damage breakables in a large area!", "indexObtainable": true, - "name": "Gargantuan Storm Wolf", + "name": "Gargantuan Vapor Phoenix", "rarity": { "Announce": true, "Color": null, @@ -160734,12 +153989,12 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://94993144229478", + "thumbnail": "rbxassetid://84134935712625", }, - "configName": "Gargantuan Storm Wolf", - "dateCreated": "2026-06-27T16:04:59.114Z", - "dateModified": "2026-06-27T16:04:59.114Z", - "hashShort": "23a3d808886c8a2a", + "configName": "Gargantuan Vapor Phoenix", + "dateCreated": "2026-06-27T16:04:59.115Z", + "dateModified": "2026-06-27T16:04:59.115Z", + "hashShort": "98e550b4535a04ea", }, { "category": "Gargantuan", @@ -160779,16 +154034,13 @@ Ground Slam - Pet will damage breakables in a large area!", "category": "Gargantuan", "collection": "Pets", "configData": { - "fly": true, - "flyingTitanic": true, - "flyingTitanicAlwaysFly": true, "gargantuan": true, - "goldenThumbnail": "rbxassetid://91692574620289", - "indexDesc": "Found in the Exclusive Vapor Egg! + "goldenThumbnail": "rbxassetid://92250721464509", + "indexDesc": "Found in the 2026 Soccer Clan Battle! (and more) Ground Slam - Pet will damage breakables in a large area!", "indexObtainable": true, - "name": "Gargantuan Vapor Phoenix", + "name": "Gargantuan Storm Wolf", "rarity": { "Announce": true, "Color": null, @@ -160801,12 +154053,41 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://84134935712625", + "thumbnail": "rbxassetid://94993144229478", }, - "configName": "Gargantuan Vapor Phoenix", - "dateCreated": "2026-06-27T16:04:59.115Z", - "dateModified": "2026-06-27T16:04:59.115Z", - "hashShort": "98e550b4535a04ea", + "configName": "Gargantuan Storm Wolf", + "dateCreated": "2026-06-27T16:04:59.114Z", + "dateModified": "2026-06-27T16:04:59.114Z", + "hashShort": "23a3d808886c8a2a", + }, + { + "category": "Titanic", + "collection": "Pets", + "configData": { + "fly": true, + "goldenThumbnail": "rbxassetid://96837301495281", + "indexDesc": "Found in the Forever Pack!", + "indexObtainable": true, + "name": "Titanic Soccerball Griffin", + "rarity": { + "Announce": true, + "Color": null, + "DisplayName": "Exclusive", + "Gradient": null, + "ItemSlot": null, + "Lootbag": null, + "Message": null, + "RarityNumber": 999, + "_id": "Exclusive", + "_script": null, + }, + "thumbnail": "rbxassetid://86211780289771", + "titanic": true, + }, + "configName": "Titanic Soccerball Griffin", + "dateCreated": "2026-06-27T16:05:03.326Z", + "dateModified": "2026-06-27T16:05:03.326Z", + "hashShort": "df83514b3c5f21f5", }, { "category": "Titanic", @@ -160957,14 +154238,15 @@ Ground Slam - Pet will damage breakables in a large area!", "hashShort": "9f297ab34d4f4f48", }, { - "category": "Titanic", + "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://96837301495281", - "indexDesc": "Found in the Forever Pack!", + "goldenThumbnail": "rbxassetid://80671718068451", + "huge": true, + "indexDesc": "Found in the Exclusive Vapor Egg!", "indexObtainable": true, - "name": "Titanic Soccerball Griffin", + "name": "Huge Vapor Wolf", "rarity": { "Announce": true, "Color": null, @@ -160977,13 +154259,12 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://86211780289771", - "titanic": true, + "thumbnail": "rbxassetid://125061287679352", }, - "configName": "Titanic Soccerball Griffin", - "dateCreated": "2026-06-27T16:05:03.326Z", - "dateModified": "2026-06-27T16:05:03.326Z", - "hashShort": "df83514b3c5f21f5", + "configName": "Huge Vapor Wolf", + "dateCreated": "2026-06-27T16:05:18.057Z", + "dateModified": "2026-06-27T16:05:18.057Z", + "hashShort": "af969d28928d209e", }, { "category": "Huge", @@ -161049,12 +154330,11 @@ Ground Slam - Pet will damage breakables in a large area!", "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://80671718068451", + "goldenThumbnail": "rbxassetid://98552653186399", "huge": true, - "indexDesc": "Found in the Exclusive Vapor Egg!", + "indexDesc": "Found in the Soccer World's furthest kick contest!", "indexObtainable": true, - "name": "Huge Vapor Wolf", + "name": "Huge Jersey Seal", "rarity": { "Announce": true, "Color": null, @@ -161067,51 +154347,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://125061287679352", + "thumbnail": "rbxassetid://86738780923898", }, - "configName": "Huge Vapor Wolf", - "dateCreated": "2026-06-27T16:05:18.057Z", - "dateModified": "2026-06-27T16:05:18.057Z", - "hashShort": "af969d28928d209e", + "configName": "Huge Jersey Seal", + "dateCreated": "2026-06-27T16:05:18.073Z", + "dateModified": "2026-06-27T16:05:18.073Z", + "hashShort": "71eb83ba3583bb05", }, { "category": "Huge", "collection": "Pets", "configData": { "fly": true, - "goldenThumbnail": "rbxassetid://115382679212483", - "huge": true, - "indexDesc": "Found in the Trophy Soccer Egg!", - "indexObtainable": true, - "name": "Huge Soccerball Trophy Dragon", - "rarity": { - "Announce": true, - "Color": null, - "DisplayName": "Exclusive", - "Gradient": null, - "ItemSlot": null, - "Lootbag": null, - "Message": null, - "RarityNumber": 999, - "_id": "Exclusive", - "_script": null, - }, - "thumbnail": "rbxassetid://72273930453963", - }, - "configName": "Huge Soccerball Trophy Dragon", - "dateCreated": "2026-06-27T16:05:18.074Z", - "dateModified": "2026-06-27T16:05:18.074Z", - "hashShort": "6103325a46a84374", - }, - { - "category": "Huge", - "collection": "Pets", - "configData": { - "goldenThumbnail": "rbxassetid://136650880186252", + "goldenThumbnail": "rbxassetid://124235057233136", "huge": true, - "indexDesc": "Found in the Soccer World's furthest kick contest!", + "indexDesc": "Found in the Exclusive Vapor Egg!", "indexObtainable": true, - "name": "Huge Coach Chihuahua", + "name": "Huge Vapor Cat", "rarity": { "Announce": true, "Color": null, @@ -161124,12 +154376,12 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://108181768512801", + "thumbnail": "rbxassetid://137018792782185", }, - "configName": "Huge Coach Chihuahua", - "dateCreated": "2026-06-27T16:05:18.080Z", - "dateModified": "2026-06-27T16:05:18.080Z", - "hashShort": "e82b515428014838", + "configName": "Huge Vapor Cat", + "dateCreated": "2026-06-27T16:05:18.075Z", + "dateModified": "2026-06-27T16:05:18.075Z", + "hashShort": "edff7fbd47d2be34", }, { "category": "Huge", @@ -161163,11 +154415,11 @@ Ground Slam - Pet will damage breakables in a large area!", "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://98552653186399", + "goldenThumbnail": "rbxassetid://138837815257436", "huge": true, - "indexDesc": "Found in the Soccer World's furthest kick contest!", + "indexDesc": "Found by earning points in the Infinite Soccer Mode!", "indexObtainable": true, - "name": "Huge Jersey Seal", + "name": "Huge Referee Zebra", "rarity": { "Announce": true, "Color": null, @@ -161180,22 +154432,23 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://86738780923898", + "thumbnail": "rbxassetid://90909100468869", }, - "configName": "Huge Jersey Seal", - "dateCreated": "2026-06-27T16:05:18.073Z", - "dateModified": "2026-06-27T16:05:18.073Z", - "hashShort": "71eb83ba3583bb05", + "configName": "Huge Referee Zebra", + "dateCreated": "2026-06-27T16:05:18.086Z", + "dateModified": "2026-06-27T16:05:18.086Z", + "hashShort": "79330fd28ee69092", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://97718881677495", + "fly": true, + "goldenThumbnail": "rbxassetid://115382679212483", "huge": true, - "indexDesc": "Found in the Soccer World's furthest kick contest!", + "indexDesc": "Found in the Trophy Soccer Egg!", "indexObtainable": true, - "name": "Huge Goalie Monkey", + "name": "Huge Soccerball Trophy Dragon", "rarity": { "Announce": true, "Color": null, @@ -161208,22 +154461,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://85865477617005", + "thumbnail": "rbxassetid://72273930453963", }, - "configName": "Huge Goalie Monkey", - "dateCreated": "2026-06-27T16:05:18.085Z", - "dateModified": "2026-06-27T16:05:18.085Z", - "hashShort": "d7259bf9f8902715", + "configName": "Huge Soccerball Trophy Dragon", + "dateCreated": "2026-06-27T16:05:18.074Z", + "dateModified": "2026-06-27T16:05:18.074Z", + "hashShort": "6103325a46a84374", }, { "category": "Huge", "collection": "Pets", "configData": { - "goldenThumbnail": "rbxassetid://138837815257436", + "goldenThumbnail": "rbxassetid://136650880186252", "huge": true, - "indexDesc": "Found by earning points in the Infinite Soccer Mode!", + "indexDesc": "Found in the Soccer World's furthest kick contest!", "indexObtainable": true, - "name": "Huge Referee Zebra", + "name": "Huge Coach Chihuahua", "rarity": { "Announce": true, "Color": null, @@ -161236,23 +154489,22 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://90909100468869", + "thumbnail": "rbxassetid://108181768512801", }, - "configName": "Huge Referee Zebra", - "dateCreated": "2026-06-27T16:05:18.086Z", - "dateModified": "2026-06-27T16:05:18.086Z", - "hashShort": "79330fd28ee69092", + "configName": "Huge Coach Chihuahua", + "dateCreated": "2026-06-27T16:05:18.080Z", + "dateModified": "2026-06-27T16:05:18.080Z", + "hashShort": "e82b515428014838", }, { "category": "Huge", "collection": "Pets", "configData": { - "fly": true, - "goldenThumbnail": "rbxassetid://124235057233136", + "goldenThumbnail": "rbxassetid://97718881677495", "huge": true, - "indexDesc": "Found in the Exclusive Vapor Egg!", + "indexDesc": "Found in the Soccer World's furthest kick contest!", "indexObtainable": true, - "name": "Huge Vapor Cat", + "name": "Huge Goalie Monkey", "rarity": { "Announce": true, "Color": null, @@ -161265,31 +154517,31 @@ Ground Slam - Pet will damage breakables in a large area!", "_id": "Exclusive", "_script": null, }, - "thumbnail": "rbxassetid://137018792782185", + "thumbnail": "rbxassetid://85865477617005", }, - "configName": "Huge Vapor Cat", - "dateCreated": "2026-06-27T16:05:18.075Z", - "dateModified": "2026-06-27T16:05:18.075Z", - "hashShort": "edff7fbd47d2be34", + "configName": "Huge Goalie Monkey", + "dateCreated": "2026-06-27T16:05:18.085Z", + "dateModified": "2026-06-27T16:05:18.085Z", + "hashShort": "d7259bf9f8902715", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 5089246961907938, + 4972252778875578, ], "fromWorldNumber": 4, "fromZoneNumber": 270, - "goldenThumbnail": "rbxassetid://135620806058108", - "name": "Jersey Seal", - "thumbnail": "rbxassetid://136813931205984", - "yeetPower": 450, + "goldenThumbnail": "rbxassetid://113666584122326", + "name": "Soccerball Elephant", + "thumbnail": "rbxassetid://110710289143948", + "yeetPower": 50, }, - "configName": "Jersey Seal", - "dateCreated": "2026-06-27T16:05:50.611Z", - "dateModified": "2026-06-27T16:05:50.611Z", - "hashShort": "9aae29e0220bfabd", + "configName": "Soccerball Elephant", + "dateCreated": "2026-06-27T16:05:50.612Z", + "dateModified": "2026-06-27T16:05:50.612Z", + "hashShort": "8141695a1218a7ce", }, { "category": "Uncategorized", @@ -161316,38 +154568,57 @@ Ground Slam - Pet will damage breakables in a large area!", "collection": "Pets", "configData": { "cachedPower": [ - 4796761504327022, + 4913755687359382, ], "fromWorldNumber": 4, "fromZoneNumber": 270, - "goldenThumbnail": "rbxassetid://135611759042195", - "name": "Soccerball Dog", - "thumbnail": "rbxassetid://83962717359541", - "yeetPower": 12, + "goldenThumbnail": "rbxassetid://114558621948742", + "name": "Soccerball Red Panda", + "thumbnail": "rbxassetid://101308141848720", + "yeetPower": 20, }, - "configName": "Soccerball Dog", - "dateCreated": "2026-06-27T16:05:50.614Z", - "dateModified": "2026-06-27T16:05:50.614Z", - "hashShort": "19a228c41f832af5", + "configName": "Soccerball Red Panda", + "dateCreated": "2026-06-27T16:05:50.601Z", + "dateModified": "2026-06-27T16:05:50.601Z", + "hashShort": "2510ef288722c2f8", }, { "category": "Uncategorized", "collection": "Pets", "configData": { "cachedPower": [ - 4972252778875578, + 5206241144940298, ], "fromWorldNumber": 4, "fromZoneNumber": 270, - "goldenThumbnail": "rbxassetid://113666584122326", - "name": "Soccerball Elephant", - "thumbnail": "rbxassetid://110710289143948", - "yeetPower": 50, + "goldenThumbnail": "", + "name": "Referee Zebra", + "thumbnail": "rbxassetid://140056670942415", + "yeetPower": 5000, }, - "configName": "Soccerball Elephant", - "dateCreated": "2026-06-27T16:05:50.612Z", - "dateModified": "2026-06-27T16:05:50.612Z", - "hashShort": "8141695a1218a7ce", + "configName": "Referee Zebra", + "dateCreated": "2026-06-27T16:05:50.585Z", + "dateModified": "2026-06-27T16:05:50.585Z", + "hashShort": "7bb5e7dce8523f46", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 5089246961907938, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 270, + "goldenThumbnail": "rbxassetid://135620806058108", + "name": "Jersey Seal", + "thumbnail": "rbxassetid://136813931205984", + "yeetPower": 450, + }, + "configName": "Jersey Seal", + "dateCreated": "2026-06-27T16:05:50.611Z", + "dateModified": "2026-06-27T16:05:50.611Z", + "hashShort": "9aae29e0220bfabd", }, { "category": "Uncategorized", @@ -161375,38 +154646,19 @@ Ground Slam - Pet will damage breakables in a large area!", "collection": "Pets", "configData": { "cachedPower": [ - 5206241144940298, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 270, - "goldenThumbnail": "", - "name": "Referee Zebra", - "thumbnail": "rbxassetid://140056670942415", - "yeetPower": 5000, - }, - "configName": "Referee Zebra", - "dateCreated": "2026-06-27T16:05:50.585Z", - "dateModified": "2026-06-27T16:05:50.585Z", - "hashShort": "7bb5e7dce8523f46", - }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 4913755687359382, + 4796761504327022, ], "fromWorldNumber": 4, "fromZoneNumber": 270, - "goldenThumbnail": "rbxassetid://114558621948742", - "name": "Soccerball Red Panda", - "thumbnail": "rbxassetid://101308141848720", - "yeetPower": 20, + "goldenThumbnail": "rbxassetid://135611759042195", + "name": "Soccerball Dog", + "thumbnail": "rbxassetid://83962717359541", + "yeetPower": 12, }, - "configName": "Soccerball Red Panda", - "dateCreated": "2026-06-27T16:05:50.601Z", - "dateModified": "2026-06-27T16:05:50.601Z", - "hashShort": "2510ef288722c2f8", + "configName": "Soccerball Dog", + "dateCreated": "2026-06-27T16:05:50.614Z", + "dateModified": "2026-06-27T16:05:50.614Z", + "hashShort": "19a228c41f832af5", }, { "category": "Uncategorized", @@ -161485,21 +154737,25 @@ Ground Slam - Pet will damage breakables in a large area!", "category": "Uncategorized", "collection": "Pets", "configData": { + "animations": { + "spinZ": true, + }, "cachedPower": [ - 5264738236456495, + 5396356692367900, ], + "fly": true, "fromWorldNumber": 4, "fromZoneNumber": 270, - "goldenThumbnail": "rbxassetid://104728017563290", + "goldenThumbnail": "rbxassetid://119500872724060", "indexDesc": "Found in the Soccer Egg!", - "name": "Goalie Monkey", - "thumbnail": "rbxassetid://126140900207871", - "yeetPower": 24000, + "name": "Soccerball Trophy Angelus", + "thumbnail": "rbxassetid://71798146448502", + "yeetPower": 300000, }, - "configName": "Goalie Monkey", - "dateCreated": "2026-06-27T16:05:50.621Z", - "dateModified": "2026-06-27T16:05:50.621Z", - "hashShort": "8cea8505ff0ff153", + "configName": "Soccerball Trophy Angelus", + "dateCreated": "2026-06-27T16:05:50.617Z", + "dateModified": "2026-06-27T16:05:50.617Z", + "hashShort": "4964c1ba8bd5657b", }, { "category": "Uncategorized", @@ -161528,25 +154784,6 @@ Ground Slam - Pet will damage breakables in a large area!", "dateModified": "2026-06-27T16:05:50.617Z", "hashShort": "f561306896bac3f8", }, - { - "category": "Uncategorized", - "collection": "Pets", - "configData": { - "cachedPower": [ - 4855258595843219, - ], - "fromWorldNumber": 4, - "fromZoneNumber": 270, - "goldenThumbnail": "rbxassetid://79235985010100", - "name": "Soccerball Jaguar", - "thumbnail": "rbxassetid://126663292499310", - "yeetPower": 16, - }, - "configName": "Soccerball Jaguar", - "dateCreated": "2026-06-27T16:05:50.616Z", - "dateModified": "2026-06-27T16:05:50.616Z", - "hashShort": "9c28954bca3c2e0d", - }, { "category": "Uncategorized", "collection": "Pets", @@ -161571,25 +154808,40 @@ Ground Slam - Pet will damage breakables in a large area!", "category": "Uncategorized", "collection": "Pets", "configData": { - "animations": { - "spinZ": true, - }, "cachedPower": [ - 5396356692367900, + 5264738236456495, ], - "fly": true, "fromWorldNumber": 4, "fromZoneNumber": 270, - "goldenThumbnail": "rbxassetid://119500872724060", + "goldenThumbnail": "rbxassetid://104728017563290", "indexDesc": "Found in the Soccer Egg!", - "name": "Soccerball Trophy Angelus", - "thumbnail": "rbxassetid://71798146448502", - "yeetPower": 300000, + "name": "Goalie Monkey", + "thumbnail": "rbxassetid://126140900207871", + "yeetPower": 24000, }, - "configName": "Soccerball Trophy Angelus", - "dateCreated": "2026-06-27T16:05:50.617Z", - "dateModified": "2026-06-27T16:05:50.617Z", - "hashShort": "4964c1ba8bd5657b", + "configName": "Goalie Monkey", + "dateCreated": "2026-06-27T16:05:50.621Z", + "dateModified": "2026-06-27T16:05:50.621Z", + "hashShort": "8cea8505ff0ff153", + }, + { + "category": "Uncategorized", + "collection": "Pets", + "configData": { + "cachedPower": [ + 4855258595843219, + ], + "fromWorldNumber": 4, + "fromZoneNumber": 270, + "goldenThumbnail": "rbxassetid://79235985010100", + "name": "Soccerball Jaguar", + "thumbnail": "rbxassetid://126663292499310", + "yeetPower": 16, + }, + "configName": "Soccerball Jaguar", + "dateCreated": "2026-06-27T16:05:50.616Z", + "dateModified": "2026-06-27T16:05:50.616Z", + "hashShort": "9c28954bca3c2e0d", }, ], "status": "ok", @@ -191218,90 +184470,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 2000, + "Amount": 1500, "Type": 21, "Weight": 1, }, { - "Amount": 2000, + "Amount": 1500, "Type": 21, "Weight": 1, }, { - "Amount": 2000, + "Amount": 1500, "Type": 21, "Weight": 1, }, { - "Amount": 50, + "Amount": 35, "Type": 14, "Weight": 1, }, { - "Amount": 50, + "Amount": 35, "Type": 15, "Weight": 1, }, { - "Amount": 35, + "Amount": 30, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 2750, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 60, + "Amount": 40, "Type": 14, "Weight": 1, }, { - "Amount": 60, + "Amount": 40, "Type": 15, "Weight": 1, }, { - "Amount": 20, + "Amount": 10, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 4, + "Amount": 3, "Type": 44, "Weight": 1, }, { - "Amount": 4, + "Amount": 3, "Type": 43, "Weight": 1, }, { - "Amount": 4, + "Amount": 3, "Type": 38, "Weight": 1, }, { - "Amount": 4, + "Amount": 3, "Type": 37, "Weight": 1, }, { - "Amount": 4, + "Amount": 3, "Type": 39, "Weight": 1, }, @@ -191311,22 +184563,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 1750, + "Amount": 1250, "Type": 20, "Weight": 1, }, { - "Amount": 1750, + "Amount": 1250, "Type": 20, "Weight": 1, }, { - "Amount": 750, + "Amount": 400, "Type": 40, "Weight": 1, }, { - "Amount": 75, + "Amount": 40, "Type": 41, "Weight": 1, }, @@ -191353,96 +184605,96 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 3000, + "Amount": 2500, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 2500, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 2500, "Type": 21, "Weight": 1, }, { - "Amount": 500, + "Amount": 350, "Type": 9, "Weight": 1, }, { - "Amount": 5000, + "Amount": 2500, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 30, + "Amount": 18, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 30, + "Amount": 18, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 30, + "Amount": 18, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 44, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 43, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 39, "Weight": 1, }, { - "Amount": 2, + "Amount": 1, "Type": 76, "Weight": 1, }, { - "Amount": 2000, + "Amount": 1500, "Type": 20, "Weight": 1, }, { - "Amount": 2000, + "Amount": 1500, "Type": 20, "Weight": 1, }, { - "Amount": 900, + "Amount": 500, "Type": 40, "Weight": 1, }, { - "Amount": 90, + "Amount": 50, "Type": 41, "Weight": 1, }, @@ -191464,94 +184716,87 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 3500, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 3500, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 3500, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 750, + "Amount": 450, "Type": 9, "Weight": 1, }, { - "Amount": 7500, + "Amount": 3000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 25, + "Amount": 20, "Type": 42, "Weight": 1, }, { - "Amount": 7, + "Amount": 5, "Type": 38, "Weight": 1, }, { - "Amount": 7, + "Amount": 5, "Type": 37, "Weight": 1, }, { - "Amount": 7, + "Amount": 5, "Type": 39, "Weight": 1, }, { - "Amount": 2, + "Amount": 1, "Type": 76, "Weight": 1, }, ], ], - "MaxEnchantsEquipped": 6, + "MaxEnchantsEquipped": 5, "MaximumActiveGoals": 4, - "RankNumber": 22, + "RankNumber": 17, "RankUpRewards": [ { "_data": { - "_am": 12, - "id": "Lucky", - "tn": 9, - }, - }, - { - "_data": { - "_am": 12, + "_am": 20, "id": "Coins", - "tn": 9, + "tn": 7, }, }, { "_data": { - "_am": 12, + "_am": 20, "id": "Damage", - "tn": 9, + "tn": 7, }, }, { "_data": { - "_am": 12, - "id": "Treasure Hunter", - "tn": 9, + "_am": 20, + "id": "Diamonds", + "tn": 6, }, }, { "_data": { - "_am": 500000, - "id": "Diamonds", + "_am": 75, + "id": "Party Box", }, }, { @@ -191566,52 +184811,40 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "id": "Secret Key", }, }, - { - "_data": { - "_am": 12, - "id": "Tech Key", - }, - }, - { - "_data": { - "_am": 12, - "id": "Mini Chest", - }, - }, ], "Rewards": [ { "Item": { "_data": { - "_am": 300, - "id": "Fruit Bundle", + "_am": 15, + "id": "Large Gift Bag", }, }, - "StarsRequired": 4, + "StarsRequired": 3, }, { "Item": { "_data": { - "_am": 300, - "id": "Pineapple", + "_am": 100000, + "id": "Diamonds", }, }, - "StarsRequired": 4, + "StarsRequired": 3, }, { "Item": { "_data": { - "_am": 100, - "id": "Diamonds", + "_am": 6, + "id": "Crystal Key", }, }, - "StarsRequired": 4, + "StarsRequired": 3, }, { "Item": { "_data": { - "_am": 250, - "id": "Coins Flag", + "_am": 15, + "id": "Mini Pinata", }, }, "StarsRequired": 4, @@ -191619,29 +184852,31 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 250, - "id": "Hasty Flag", + "_am": 100, + "id": "Coins", + "tn": 5, }, }, - "StarsRequired": 5, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 6, - "id": "Mini Chest", + "_am": 100000, + "id": "Diamonds", }, }, - "StarsRequired": 5, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 20, - "id": "Large Gift Bag", + "_am": 100, + "id": "Damage", + "tn": 5, }, }, - "StarsRequired": 5, + "StarsRequired": 4, }, { "Item": { @@ -191655,501 +184890,514 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 200, - "id": "TNT", + "_am": 20, + "id": "Flag Bundle", }, }, - "StarsRequired": 6, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 250, - "id": "Squeaky Toy", + "_am": 75, + "id": "Diamonds", + "tn": 5, }, }, - "StarsRequired": 6, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 250, - "id": "Magnet Flag", + "_am": 100, + "id": "Damage", + "tn": 5, }, }, - "StarsRequired": 6, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 250, - "id": "Diamonds Flag", + "_am": 100, + "id": "Coins", + "tn": 5, }, }, - "StarsRequired": 6, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 300, - "id": "Watermelon", + "_am": 40, + "id": "Potion Bundle", }, }, - "StarsRequired": 7, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 300, - "id": "Pineapple", + "_am": 250, + "id": "Squeaky Toy", }, }, - "StarsRequired": 7, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 300, - "id": "Apple", + "_am": 100000, + "id": "Diamonds", }, }, - "StarsRequired": 8, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 100, - "id": "Diamonds", + "_am": 300, + "id": "Rainbow", }, }, - "StarsRequired": 8, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 300, - "id": "Banana", + "_am": 6, + "id": "Crystal Key", }, }, - "StarsRequired": 9, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 250, - "id": "Toy Ball", + "_am": 15, + "id": "Coins", + "tn": 6, }, }, - "StarsRequired": 9, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 300, - "id": "Watermelon", + "_am": 8, + "id": "Mini Chest", }, }, - "StarsRequired": 9, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 75, - "id": "Mini Lucky Block", + "_am": 100, + "id": "Diamonds", + "tn": 5, }, }, - "StarsRequired": 9, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 30, - "id": "Damage", - "tn": 6, + "_am": 250, + "id": "Toy Bone", }, }, - "StarsRequired": 10, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 40, - "id": "Potion Bundle", + "_am": 100000, + "id": "Diamonds", }, }, - "StarsRequired": 10, + "StarsRequired": 7, }, { "Item": { "_data": { "_am": 4, - "id": "Tech Key", + "id": "Secret Key", }, }, - "StarsRequired": 10, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 100, - "id": "Potion Bundle", + "_am": 20, + "id": "Rainbow Flag", }, }, - "StarsRequired": 10, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 4, - "id": "Lucky", - "tn": 9, + "_am": 300, + "id": "Orange", }, }, - "StarsRequired": 11, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 100, - "id": "Diamonds", + "_am": 250, + "id": "Toy Ball", }, }, - "StarsRequired": 11, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 150, - "id": "Shiny Flag", + "_am": 20, + "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 11, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 12, + "_am": 100, "id": "Treasure Hunter", - "tn": 7, + "tn": 5, }, }, - "StarsRequired": 12, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 50, - "id": "Damage", - "tn": 6, + "_am": 15, + "id": "Party Box", }, }, - "StarsRequired": 12, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 30, - "id": "Large Gift Bag", + "_am": 40, + "id": "Damage", + "tn": 6, }, }, - "StarsRequired": 12, + "StarsRequired": 9, }, { "Item": { "_data": { "_am": 40, - "id": "Gift Bag", + "id": "Coins", + "tn": 6, }, }, - "StarsRequired": 13, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 40, - "id": "Treasure Hunter", - "tn": 7, + "_am": 75, + "id": "Diamonds", + "tn": 5, }, }, - "StarsRequired": 13, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 40, - "id": "Potion Bundle", + "_am": 15, + "id": "Lucky", + "tn": 7, }, }, - "StarsRequired": 13, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 8, - "id": "Coins", - "tn": 9, + "_am": 20, + "id": "Enchant Bundle", }, }, - "StarsRequired": 14, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 12, - "id": "Bucket O' Magic", + "_am": 8, + "id": "Mini Chest", }, }, - "StarsRequired": 14, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 6, - "id": "Large Gift Bag", + "_am": 30, + "id": "Coins", + "tn": 7, }, }, - "StarsRequired": 14, + "StarsRequired": 10, }, { "Item": { "_data": { "_am": 20, - "id": "Coins", - "tn": 11, + "id": "Shiny Flag", }, }, - "StarsRequired": 14, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 4, - "id": "Secret Key", + "_am": 40, + "id": "Damage", + "tn": 7, }, }, - "StarsRequired": 15, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 12, - "id": "Spinny Wheel Ticket", + "_am": 20, + "id": "Treasure Hunter", + "tn": 7, }, }, - "StarsRequired": 15, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 2, - "id": "Crystal Key", + "_am": 300, + "id": "Rainbow", }, }, - "StarsRequired": 15, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 5, - "id": "Charm Hammer", + "_am": 40, + "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 16, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 8, - "id": "Mini Chest", + "_am": 250000, + "id": "Diamonds", }, }, - "StarsRequired": 16, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 2, - "id": "Diamonds", + "_am": 40, + "id": "Coins", "tn": 7, }, }, - "StarsRequired": 16, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 12, + "_am": 40, "id": "Diamonds", "tn": 6, }, }, - "StarsRequired": 17, + "StarsRequired": 12, }, { "Item": { "_data": { "_am": 40, - "id": "Tech Spinny Wheel Ticket", + "id": "Treasure Hunter", + "tn": 7, }, }, - "StarsRequired": 17, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 50, - "id": "Coins", - "tn": 8, + "_am": 40, + "id": "Party Box", }, }, - "StarsRequired": 17, + "StarsRequired": 13, }, { "Item": { "_data": { "_am": 40, - "id": "Lucky", + "id": "Coins", "tn": 7, }, }, - "StarsRequired": 18, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 150, - "id": "Comet", + "_am": 40, + "id": "Damage", + "tn": 7, }, }, - "StarsRequired": 18, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 40, - "id": "Damage", - "tn": 5, + "_am": 20, + "id": "Lucky", + "tn": 7, }, }, - "StarsRequired": 18, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 4, - "id": "Mini Chest", + "_am": 6, + "id": "Crystal Key", }, }, - "StarsRequired": 19, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 150, - "id": "Shiny Flag", + "_am": 300, + "id": "Rainbow", }, }, - "StarsRequired": 19, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 50, + "_am": 40, "id": "Enchant Bundle", }, }, - "StarsRequired": 19, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 12, + "_am": 8, "id": "Mini Chest", }, }, - "StarsRequired": 20, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 50, - "id": "Large Enchant Bundle", + "_am": 12, + "id": "Coins", + "tn": 11, }, }, - "StarsRequired": 20, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 100, - "id": "Seed Bag", + "_am": 40, + "id": "Coins", + "tn": 8, }, }, - "StarsRequired": 20, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 30, - "id": "Mini Lucky Block", + "_am": 40, + "id": "Damage", + "tn": 8, }, }, - "StarsRequired": 21, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 20, - "id": "Lucky", + "_am": 40, + "id": "Treasure Hunter", "tn": 8, }, }, - "StarsRequired": 21, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 250, - "id": "Diamonds", + "_am": 40, + "id": "Damage", + "tn": 8, }, }, - "StarsRequired": 21, + "StarsRequired": 15, }, { "Item": { "_data": { - "id": "Booth Slot Voucher", + "_am": 150, + "id": "Party Box", }, }, - "StarsRequired": 22, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 2, - "id": "Charm Chisel", + "_am": 30, + "id": "Lucky", + "tn": 8, }, }, - "StarsRequired": 22, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 150, - "id": "Rainbow Flag", + "_am": 4, + "id": "Secret Key", }, }, - "StarsRequired": 22, + "StarsRequired": 16, }, ], - "Title": "Architect", + "Title": "Crusader", "UnlockableEggSlots": 1, "UnlockablePetSlots": 1, }, - "configName": "22 | Architect", - "dateCreated": "2026-05-02T17:31:49.607Z", - "dateModified": "2026-05-02T17:31:49.607Z", - "hashShort": "d556f6adc23a2a12", + "configName": "17 | Crusader", + "dateCreated": "2026-05-02T17:31:49.592Z", + "dateModified": "2026-05-02T17:31:49.592Z", + "hashShort": "a2e2c7004b641d60", }, { "category": "Ranks", @@ -192458,38 +185706,28 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 36, + "RankNumber": 34, "RankUpRewards": [ { "_data": { - "id": "Golden Prison Key", - }, - }, - { - "_data": { - "id": "Charm Chisel", - }, - }, - { - "_data": { - "_am": 2, - "id": "Magic Shard", + "_am": 100, + "id": "Diamonds", }, }, { "_data": { - "id": "Bucket O' Magic", + "id": "Mega Potion Chest", }, }, { "_data": { - "id": "Hacker Key", + "id": "Mega Enchant Chest", }, }, { "_data": { - "id": "Damage", - "tn": 11, + "_am": 15, + "id": "Rainbow Mini Chest", }, }, ], @@ -192497,8 +185735,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 250, - "id": "Comet", + "_am": 15, + "id": "Enchant Bundle", }, }, "StarsRequired": 8, @@ -192506,9 +185744,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 300, - "id": "Bonus", - "tn": 1, + "_am": 125, + "id": "Squeaky Toy", }, }, "StarsRequired": 8, @@ -192516,9 +185753,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 250, - "id": "Damage", - "tn": 7, + "_am": 8, + "id": "Basic Coin Jar", }, }, "StarsRequired": 8, @@ -192526,8 +185762,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 300, - "id": "Pet Cube", + "id": "Enchant Bundle", }, }, "StarsRequired": 8, @@ -192535,9 +185770,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 250, - "id": "Lucky", - "tn": 7, + "_am": 75, + "id": "Watermelon", }, }, "StarsRequired": 9, @@ -192545,8 +185779,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 250, - "id": "Mini Lucky Block", + "_am": 150, + "id": "Apple", }, }, "StarsRequired": 9, @@ -192554,8 +185788,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 250, - "id": "Fortune Flag", + "_am": 125, + "id": "Toy Ball", }, }, "StarsRequired": 9, @@ -192563,9 +185797,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 250, - "id": "Treasure Hunter", - "tn": 8, + "_am": 150, + "id": "Rainbow", }, }, "StarsRequired": 9, @@ -192573,8 +185806,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 250, - "id": "Seashell", + "_am": 125, + "id": "Strength Flag", }, }, "StarsRequired": 10, @@ -192582,8 +185815,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 150, - "id": "Rainbow Flag", + "_am": 8, + "id": "Treasure Hunter", + "tn": 7, }, }, "StarsRequired": 10, @@ -192591,8 +185825,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 250, - "id": "Party Box", + "_am": 75, + "id": "Hasty Flag", }, }, "StarsRequired": 10, @@ -192600,9 +185834,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 250, - "id": "Blast", - "tn": 1, + "_am": 2, + "id": "Fantasy Key Lower Half", }, }, "StarsRequired": 10, @@ -192610,9 +185843,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 150, - "id": "Coins", - "tn": 10, + "_am": 75, + "id": "Banana", }, }, "StarsRequired": 11, @@ -192620,9 +185852,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 150, - "id": "Treasure Hunter", - "tn": 9, + "_am": 15, + "id": "Enchant Essence", }, }, "StarsRequired": 11, @@ -192630,8 +185861,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 300, - "id": "Breakable Sprinkler", + "_am": 125, + "id": "Coins Flag", }, }, "StarsRequired": 11, @@ -192639,9 +185870,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 250, - "id": "Coins", - "tn": 8, + "_am": 100, + "id": "Squeaky Toy", }, }, "StarsRequired": 11, @@ -192649,8 +185879,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 125, - "id": "Golden Pencil", + "_am": 15, + "id": "Fantasy Key Lower Half", }, }, "StarsRequired": 12, @@ -192658,8 +185888,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 125, - "id": "TNT Crate", + "_am": 12, + "id": "Diamonds", + "tn": 6, }, }, "StarsRequired": 12, @@ -192667,9 +185898,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 150, - "id": "Agility", - "tn": 1, + "_am": 100, + "id": "Watermelon", }, }, "StarsRequired": 12, @@ -192677,8 +185907,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 100, - "id": "Gift Bag", + "id": "Large Potion Bundle", }, }, "StarsRequired": 12, @@ -192686,9 +185915,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 100, - "id": "Damage", - "tn": 8, + "_am": 5, + "id": "Coins", + "tn": 10, }, }, "StarsRequired": 13, @@ -192696,8 +185925,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 100, - "id": "Fantasy Key Lower Half", + "_am": 75, + "id": "Shiny Flag", }, }, "StarsRequired": 13, @@ -192705,8 +185934,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 100, - "id": "Spinny Wheel Ticket", + "id": "Breakable Sprinkler", }, }, "StarsRequired": 13, @@ -192714,9 +185942,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 100, - "id": "Coins", - "tn": 9, + "_am": 125, + "id": "Fortune Flag", }, }, "StarsRequired": 13, @@ -192724,8 +185951,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 75, - "id": "MVP Key Lower Half", + "_am": 15, + "id": "Basic Item Jar", }, }, "StarsRequired": 15, @@ -192733,9 +185960,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 75, - "id": "Damage", - "tn": 9, + "_am": 30, + "id": "TNT Crate", }, }, "StarsRequired": 15, @@ -192743,8 +185969,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 75, - "id": "Void Key Upper Half", + "_am": 12, + "id": "Golden Pencil", }, }, "StarsRequired": 15, @@ -192752,9 +185978,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 50, - "id": "Diamonds", - "tn": 8, + "_am": 5, + "id": "Seashell", }, }, "StarsRequired": 16, @@ -192762,8 +185987,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 100, - "id": "Tech Spinny Wheel Ticket", + "_am": 2, + "id": "Mini Lucky Block", }, }, "StarsRequired": 16, @@ -192771,9 +185996,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 50, - "id": "Diamonds", - "tn": 7, + "_am": 4, + "id": "Basic Item Jar", }, }, "StarsRequired": 16, @@ -192781,8 +186005,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 50, - "id": "Basic Item Jar", + "id": "MVP Key Lower Half", }, }, "StarsRequired": 17, @@ -192790,9 +186013,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 75, - "id": "Strength", - "tn": 1, + "_am": 100, + "id": "Toy Bone", }, }, "StarsRequired": 17, @@ -192800,8 +186022,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 50, - "id": "Crystal Key Upper Half", + "_am": 2, + "id": "Fantasy Key", }, }, "StarsRequired": 17, @@ -192809,9 +186031,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 30, - "id": "Lucky", - "tn": 8, + "_am": 4, + "id": "Hacker Key", }, }, "StarsRequired": 18, @@ -192827,9 +186048,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 40, - "id": "Lucky", - "tn": 9, + "_am": 15, + "id": "Fantasy Spinny Wheel Ticket", }, }, "StarsRequired": 18, @@ -192837,8 +186057,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Charm Hammer", + "_am": 2, + "id": "Crystal Key", }, }, "StarsRequired": 19, @@ -192846,8 +186066,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Insta Plant Capsule", + "_am": 12, + "id": "Damage", + "tn": 10, }, }, "StarsRequired": 19, @@ -192855,8 +186076,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, - "id": "Secret Key", + "_am": 12, + "id": "Fruit Bundle", }, }, "StarsRequired": 19, @@ -192864,8 +186085,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 30, - "id": "Millionaire Ticket", + "_am": 8, + "id": "Party Box", }, }, "StarsRequired": 20, @@ -192873,8 +186094,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Void Spinny Wheel Ticket", + "_am": 5, + "id": "Gift Bag", }, }, "StarsRequired": 20, @@ -192882,8 +186103,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 50, - "id": "Large Gift Bag", + "_am": 5, + "id": "Gift Bag", }, }, "StarsRequired": 20, @@ -192891,8 +186112,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 6, - "id": "Crystal Key", + "_am": 15, + "id": "Treasure Hideout Key Upper Half", }, }, "StarsRequired": 21, @@ -192900,8 +186121,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Millionaire Bucks", + "_am": 2, + "id": "Diamonds", + "tn": 9, }, }, "StarsRequired": 21, @@ -192909,8 +186131,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Treasure Hideout Key", + "_am": 8, + "id": "Lucky", + "tn": 8, }, }, "StarsRequired": 21, @@ -192918,9 +186141,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 75, - "id": "Damage", - "tn": 10, + "_am": 15, + "id": "Coins", + "tn": 9, }, }, "StarsRequired": 22, @@ -192928,8 +186151,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Mini Chest", + "id": "Charm Chisel", }, }, "StarsRequired": 22, @@ -192937,8 +186159,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 12, - "id": "Diamond Gift Bag", + "_am": 75, + "id": "Rainbow Flag", }, }, "StarsRequired": 22, @@ -192946,8 +186168,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 125, - "id": "Seed Bag", + "_am": 12, + "id": "Damage", + "tn": 8, }, }, "StarsRequired": 23, @@ -192955,7 +186178,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Booth Slot Voucher", + "_am": 3, + "id": "Charm Hammer", }, }, "StarsRequired": 23, @@ -192963,8 +186187,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Mini Pinata", + "id": "Fantasy Key Upper Half", }, }, "StarsRequired": 23, @@ -192972,8 +186195,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Charm Stone", + "_am": 8, + "id": "Mini Chest", }, }, "StarsRequired": 24, @@ -192981,9 +186204,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, - "id": "Treasure Hunter", - "tn": 10, + "_am": 2, + "id": "Mini Chest", }, }, "StarsRequired": 24, @@ -192991,8 +186213,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Void Key", + "id": "Damage", + "tn": 11, }, }, "StarsRequired": 24, @@ -193000,9 +186222,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Treasure Hunter", - "tn": 11, + "_am": 8, + "id": "Bucket O' Magic", }, }, "StarsRequired": 25, @@ -193010,8 +186231,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 75, - "id": "Treasure Hideout Key Upper Half", + "_am": 5, + "id": "Golden Pencil", }, }, "StarsRequired": 25, @@ -193019,9 +186240,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 10, - "id": "Coins", - "tn": 11, + "id": "Diamonds", + "tn": 9, }, }, "StarsRequired": 25, @@ -193029,9 +186249,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 6, - "id": "Diamonds", - "tn": 9, + "id": "Treasure Hunter", + "tn": 11, }, }, "StarsRequired": 26, @@ -193039,21 +186258,29 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Fantasy Key Upper Half", + "id": "Charm Chisel", + }, + }, + "StarsRequired": 26, + }, + { + "Item": { + "_data": { + "_am": 12, + "id": "Basic Item Jar", }, }, "StarsRequired": 26, }, ], - "Title": "Soulforge", + "Title": "Ancient", "UnlockableEggSlots": 0, "UnlockablePetSlots": 0, }, - "configName": "36 | Soulforge", - "dateCreated": "2026-05-02T17:31:49.622Z", - "dateModified": "2026-05-02T17:31:49.622Z", - "hashShort": "5740ee34bf8cc187", + "configName": "34 | Ancient", + "dateCreated": "2026-05-02T17:31:49.598Z", + "dateModified": "2026-05-02T17:31:49.598Z", + "hashShort": "5d17d80684d04067", }, { "category": "Ranks", @@ -193062,90 +186289,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 1500, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 1500, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 1500, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 35, + "Amount": 50, "Type": 14, "Weight": 1, }, { - "Amount": 35, + "Amount": 50, "Type": 15, "Weight": 1, }, { - "Amount": 30, + "Amount": 35, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 2000, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 2000, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 2000, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 40, + "Amount": 60, "Type": 14, "Weight": 1, }, { - "Amount": 40, + "Amount": 60, "Type": 15, "Weight": 1, }, { - "Amount": 10, + "Amount": 20, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 3, + "Amount": 4, "Type": 44, "Weight": 1, }, { - "Amount": 3, + "Amount": 4, "Type": 43, "Weight": 1, }, { - "Amount": 3, + "Amount": 4, "Type": 38, "Weight": 1, }, { - "Amount": 3, + "Amount": 4, "Type": 37, "Weight": 1, }, { - "Amount": 3, + "Amount": 4, "Type": 39, "Weight": 1, }, @@ -193155,22 +186382,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 1250, + "Amount": 1750, "Type": 20, "Weight": 1, }, { - "Amount": 1250, + "Amount": 1750, "Type": 20, "Weight": 1, }, { - "Amount": 400, + "Amount": 750, "Type": 40, "Weight": 1, }, { - "Amount": 40, + "Amount": 75, "Type": 41, "Weight": 1, }, @@ -193197,96 +186424,96 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 2500, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 2500, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 2500, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 350, + "Amount": 500, "Type": 9, "Weight": 1, }, { - "Amount": 2500, + "Amount": 5000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 18, + "Amount": 30, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 18, + "Amount": 30, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 18, + "Amount": 30, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 44, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 43, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 38, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 37, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 39, "Weight": 1, }, { - "Amount": 1, + "Amount": 2, "Type": 76, "Weight": 1, }, { - "Amount": 1500, + "Amount": 2000, "Type": 20, "Weight": 1, }, { - "Amount": 1500, + "Amount": 2000, "Type": 20, "Weight": 1, }, { - "Amount": 500, + "Amount": 900, "Type": 40, "Weight": 1, }, { - "Amount": 50, + "Amount": 90, "Type": 41, "Weight": 1, }, @@ -193308,87 +186535,94 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 2750, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 450, + "Amount": 750, "Type": 9, "Weight": 1, }, { - "Amount": 3000, + "Amount": 7500, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 20, + "Amount": 25, "Type": 42, "Weight": 1, }, { - "Amount": 5, + "Amount": 7, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 7, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 7, "Type": 39, "Weight": 1, }, { - "Amount": 1, + "Amount": 2, "Type": 76, "Weight": 1, }, ], ], - "MaxEnchantsEquipped": 5, + "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 17, + "RankNumber": 22, "RankUpRewards": [ { "_data": { - "_am": 20, + "_am": 12, + "id": "Lucky", + "tn": 9, + }, + }, + { + "_data": { + "_am": 12, "id": "Coins", - "tn": 7, + "tn": 9, }, }, { "_data": { - "_am": 20, + "_am": 12, "id": "Damage", - "tn": 7, + "tn": 9, }, }, { "_data": { - "_am": 20, - "id": "Diamonds", - "tn": 6, + "_am": 12, + "id": "Treasure Hunter", + "tn": 9, }, }, { "_data": { - "_am": 75, - "id": "Party Box", + "_am": 500000, + "id": "Diamonds", }, }, { @@ -193403,40 +186637,34 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "id": "Secret Key", }, }, - ], - "Rewards": [ { - "Item": { - "_data": { - "_am": 15, - "id": "Large Gift Bag", - }, + "_data": { + "_am": 12, + "id": "Tech Key", }, - "StarsRequired": 3, }, { - "Item": { - "_data": { - "_am": 100000, - "id": "Diamonds", - }, + "_data": { + "_am": 12, + "id": "Mini Chest", }, - "StarsRequired": 3, }, + ], + "Rewards": [ { "Item": { "_data": { - "_am": 6, - "id": "Crystal Key", + "_am": 300, + "id": "Fruit Bundle", }, }, - "StarsRequired": 3, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 15, - "id": "Mini Pinata", + "_am": 300, + "id": "Pineapple", }, }, "StarsRequired": 4, @@ -193445,8 +186673,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 100, - "id": "Coins", - "tn": 5, + "id": "Diamonds", }, }, "StarsRequired": 4, @@ -193454,8 +186681,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 100000, - "id": "Diamonds", + "_am": 250, + "id": "Coins Flag", }, }, "StarsRequired": 4, @@ -193463,18 +186690,17 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 100, - "id": "Damage", - "tn": 5, + "_am": 250, + "id": "Hasty Flag", }, }, - "StarsRequired": 4, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 300, - "id": "Pineapple", + "_am": 6, + "id": "Mini Chest", }, }, "StarsRequired": 5, @@ -193483,7 +186709,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 20, - "id": "Flag Bundle", + "id": "Large Gift Bag", }, }, "StarsRequired": 5, @@ -193491,9 +186717,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 75, - "id": "Diamonds", - "tn": 5, + "_am": 300, + "id": "Pineapple", }, }, "StarsRequired": 5, @@ -193501,495 +186726,501 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 100, - "id": "Damage", - "tn": 5, + "_am": 200, + "id": "TNT", }, }, - "StarsRequired": 5, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 100, - "id": "Coins", - "tn": 5, + "_am": 250, + "id": "Squeaky Toy", }, }, - "StarsRequired": 5, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 40, - "id": "Potion Bundle", + "_am": 250, + "id": "Magnet Flag", }, }, - "StarsRequired": 5, + "StarsRequired": 6, }, { "Item": { "_data": { "_am": 250, - "id": "Squeaky Toy", + "id": "Diamonds Flag", }, }, - "StarsRequired": 5, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 100000, - "id": "Diamonds", + "_am": 300, + "id": "Watermelon", }, }, - "StarsRequired": 6, + "StarsRequired": 7, }, { "Item": { "_data": { "_am": 300, - "id": "Rainbow", + "id": "Pineapple", }, }, - "StarsRequired": 6, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 6, - "id": "Crystal Key", + "_am": 300, + "id": "Apple", }, }, - "StarsRequired": 6, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 15, - "id": "Coins", - "tn": 6, + "_am": 100, + "id": "Diamonds", }, }, - "StarsRequired": 6, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 8, - "id": "Mini Chest", + "_am": 300, + "id": "Banana", }, }, - "StarsRequired": 6, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 100, - "id": "Diamonds", - "tn": 5, + "_am": 250, + "id": "Toy Ball", }, }, - "StarsRequired": 6, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 250, - "id": "Toy Bone", + "_am": 300, + "id": "Watermelon", }, }, - "StarsRequired": 7, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 100000, - "id": "Diamonds", + "_am": 75, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 7, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 4, - "id": "Secret Key", + "_am": 30, + "id": "Damage", + "tn": 6, }, }, - "StarsRequired": 7, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 20, - "id": "Rainbow Flag", + "_am": 40, + "id": "Potion Bundle", }, }, - "StarsRequired": 7, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 300, - "id": "Orange", + "_am": 4, + "id": "Tech Key", }, }, - "StarsRequired": 8, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 250, - "id": "Toy Ball", + "_am": 100, + "id": "Potion Bundle", }, }, - "StarsRequired": 8, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 20, - "id": "Spinny Wheel Ticket", + "_am": 4, + "id": "Lucky", + "tn": 9, }, }, - "StarsRequired": 8, + "StarsRequired": 11, }, { "Item": { "_data": { "_am": 100, - "id": "Treasure Hunter", - "tn": 5, + "id": "Diamonds", }, }, - "StarsRequired": 8, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 15, - "id": "Party Box", + "_am": 150, + "id": "Shiny Flag", }, }, - "StarsRequired": 9, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 40, + "_am": 12, + "id": "Treasure Hunter", + "tn": 7, + }, + }, + "StarsRequired": 12, + }, + { + "Item": { + "_data": { + "_am": 50, "id": "Damage", "tn": 6, }, }, - "StarsRequired": 9, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 40, - "id": "Coins", - "tn": 6, + "_am": 30, + "id": "Large Gift Bag", }, }, - "StarsRequired": 9, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 75, - "id": "Diamonds", - "tn": 5, + "_am": 40, + "id": "Gift Bag", }, }, - "StarsRequired": 9, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 15, - "id": "Lucky", + "_am": 40, + "id": "Treasure Hunter", "tn": 7, }, }, - "StarsRequired": 10, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 20, - "id": "Enchant Bundle", + "_am": 40, + "id": "Potion Bundle", }, }, - "StarsRequired": 10, + "StarsRequired": 13, }, { "Item": { "_data": { "_am": 8, - "id": "Mini Chest", + "id": "Coins", + "tn": 9, }, }, - "StarsRequired": 10, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 30, - "id": "Coins", - "tn": 7, + "_am": 12, + "id": "Bucket O' Magic", }, }, - "StarsRequired": 10, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 6, + "id": "Large Gift Bag", + }, + }, + "StarsRequired": 14, }, { "Item": { "_data": { "_am": 20, - "id": "Shiny Flag", + "id": "Coins", + "tn": 11, }, }, - "StarsRequired": 11, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 40, - "id": "Damage", - "tn": 7, + "_am": 4, + "id": "Secret Key", }, }, - "StarsRequired": 11, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 20, - "id": "Treasure Hunter", - "tn": 7, + "_am": 12, + "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 11, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 300, - "id": "Rainbow", + "_am": 2, + "id": "Crystal Key", }, }, - "StarsRequired": 11, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 40, - "id": "Spinny Wheel Ticket", + "_am": 5, + "id": "Charm Hammer", }, }, - "StarsRequired": 12, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 250000, - "id": "Diamonds", + "_am": 8, + "id": "Mini Chest", }, }, - "StarsRequired": 12, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 40, - "id": "Coins", + "_am": 2, + "id": "Diamonds", "tn": 7, }, }, - "StarsRequired": 12, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 40, + "_am": 12, "id": "Diamonds", "tn": 6, }, }, - "StarsRequired": 12, + "StarsRequired": 17, }, { "Item": { "_data": { "_am": 40, - "id": "Treasure Hunter", - "tn": 7, + "id": "Tech Spinny Wheel Ticket", }, }, - "StarsRequired": 13, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 40, - "id": "Party Box", + "_am": 50, + "id": "Coins", + "tn": 8, }, }, - "StarsRequired": 13, + "StarsRequired": 17, }, { "Item": { "_data": { "_am": 40, - "id": "Coins", + "id": "Lucky", "tn": 7, }, }, - "StarsRequired": 13, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 40, - "id": "Damage", - "tn": 7, + "_am": 150, + "id": "Comet", }, }, - "StarsRequired": 13, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 20, - "id": "Lucky", - "tn": 7, + "_am": 40, + "id": "Damage", + "tn": 5, }, }, - "StarsRequired": 14, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 6, - "id": "Crystal Key", + "_am": 4, + "id": "Mini Chest", }, }, - "StarsRequired": 14, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 300, - "id": "Rainbow", + "_am": 150, + "id": "Shiny Flag", }, }, - "StarsRequired": 14, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 40, + "_am": 50, "id": "Enchant Bundle", }, }, - "StarsRequired": 14, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 8, + "_am": 12, "id": "Mini Chest", }, }, - "StarsRequired": 14, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 12, - "id": "Coins", - "tn": 11, + "_am": 50, + "id": "Large Enchant Bundle", }, }, - "StarsRequired": 14, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 40, - "id": "Coins", - "tn": 8, + "_am": 100, + "id": "Seed Bag", }, }, - "StarsRequired": 15, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 40, - "id": "Damage", - "tn": 8, + "_am": 30, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 15, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 40, - "id": "Treasure Hunter", + "_am": 20, + "id": "Lucky", "tn": 8, }, }, - "StarsRequired": 15, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 40, - "id": "Damage", - "tn": 8, + "_am": 250, + "id": "Diamonds", }, }, - "StarsRequired": 15, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 150, - "id": "Party Box", + "id": "Booth Slot Voucher", }, }, - "StarsRequired": 15, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 30, - "id": "Lucky", - "tn": 8, + "_am": 2, + "id": "Charm Chisel", }, }, - "StarsRequired": 15, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 4, - "id": "Secret Key", + "_am": 150, + "id": "Rainbow Flag", }, }, - "StarsRequired": 16, + "StarsRequired": 22, }, ], - "Title": "Crusader", + "Title": "Architect", "UnlockableEggSlots": 1, "UnlockablePetSlots": 1, }, - "configName": "17 | Crusader", - "dateCreated": "2026-05-02T17:31:49.592Z", - "dateModified": "2026-05-02T17:31:49.592Z", - "hashShort": "a2e2c7004b641d60", + "configName": "22 | Architect", + "dateCreated": "2026-05-02T17:31:49.607Z", + "dateModified": "2026-05-02T17:31:49.607Z", + "hashShort": "d556f6adc23a2a12", }, { "category": "Ranks", @@ -193998,90 +187229,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 3250, + "Amount": 1500, "Type": 21, "Weight": 1, }, { - "Amount": 3250, + "Amount": 1500, "Type": 21, "Weight": 1, }, { - "Amount": 3250, + "Amount": 1500, "Type": 21, "Weight": 1, }, { - "Amount": 90, + "Amount": 35, "Type": 14, "Weight": 1, }, { - "Amount": 90, + "Amount": 35, "Type": 15, "Weight": 1, }, { - "Amount": 60, + "Amount": 30, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 4000, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 4000, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 4000, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 120, + "Amount": 40, "Type": 14, "Weight": 1, }, { - "Amount": 120, + "Amount": 40, "Type": 15, "Weight": 1, }, { - "Amount": 70, + "Amount": 10, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 6, + "Amount": 3, "Type": 44, "Weight": 1, }, { - "Amount": 6, + "Amount": 3, "Type": 43, "Weight": 1, }, { - "Amount": 6, + "Amount": 3, "Type": 38, "Weight": 1, }, { - "Amount": 6, + "Amount": 3, "Type": 37, "Weight": 1, }, { - "Amount": 6, + "Amount": 3, "Type": 39, "Weight": 1, }, @@ -194091,138 +187322,138 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 3000, + "Amount": 1250, "Type": 20, "Weight": 1, }, { - "Amount": 3000, + "Amount": 1250, "Type": 20, "Weight": 1, }, { - "Amount": 1750, + "Amount": 400, "Type": 40, "Weight": 1, }, { - "Amount": 160, + "Amount": 40, "Type": 41, "Weight": 1, }, { - "Amount": 70, + "Amount": 50, "Type": 26, "Weight": 1, }, { - "Amount": 70, + "Amount": 40, "Type": 25, "Weight": 1, }, { - "Amount": 90, + "Amount": 75, "Type": 46, "Weight": 1, }, { - "Amount": 90, + "Amount": 75, "Type": 45, "Weight": 1, }, ], [ { - "Amount": 4000, + "Amount": 2500, "Type": 21, "Weight": 1, }, { - "Amount": 4000, + "Amount": 2500, "Type": 21, "Weight": 1, }, { - "Amount": 4000, + "Amount": 2500, "Type": 21, "Weight": 1, }, { - "Amount": 1200, + "Amount": 350, "Type": 9, "Weight": 1, }, { - "Amount": 16000, + "Amount": 3000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 75, + "Amount": 18, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 75, + "Amount": 18, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 75, + "Amount": 18, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 6, + "Amount": 4, "Type": 44, "Weight": 1, }, { - "Amount": 6, + "Amount": 4, "Type": 43, "Weight": 1, }, { - "Amount": 6, + "Amount": 4, "Type": 38, "Weight": 1, }, { - "Amount": 6, + "Amount": 4, "Type": 37, "Weight": 1, }, { - "Amount": 6, + "Amount": 4, "Type": 39, "Weight": 1, }, { - "Amount": 2, + "Amount": 1, "Type": 76, "Weight": 1, }, { - "Amount": 3500, + "Amount": 1500, "Type": 20, "Weight": 1, }, { - "Amount": 3500, + "Amount": 1500, "Type": 20, "Weight": 1, }, { - "Amount": 1800, + "Amount": 500, "Type": 40, "Weight": 1, }, { - "Amount": 170, + "Amount": 50, "Type": 41, "Weight": 1, }, @@ -194244,640 +187475,669 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 5000, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 5000, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 5000, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 1750, + "Amount": 500, "Type": 9, "Weight": 1, }, { - "Amount": 17000, + "Amount": 3500, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 70, + "Amount": 20, "Type": 42, "Weight": 1, }, { - "Amount": 8, + "Amount": 5, "Type": 38, "Weight": 1, }, { - "Amount": 8, + "Amount": 5, "Type": 37, "Weight": 1, }, { - "Amount": 8, + "Amount": 5, "Type": 39, "Weight": 1, }, { - "Amount": 2, + "Amount": 1, "Type": 76, "Weight": 1, }, ], ], - "MaxEnchantsEquipped": 6, + "MaxEnchantsEquipped": 5, "MaximumActiveGoals": 4, - "RankNumber": 33, + "RankNumber": 18, "RankUpRewards": [ { "_data": { - "_am": 100, - "id": "Diamonds", + "_am": 20, + "id": "Lucky", + "tn": 8, }, }, { "_data": { - "_am": 40, - "id": "Large Enchant Bundle", + "_am": 20, + "id": "Coins", + "tn": 8, }, }, { "_data": { - "_am": 40, - "id": "Large Potion Bundle", + "_am": 20, + "id": "Damage", + "tn": 8, }, }, { "_data": { "_am": 20, - "id": "Rainbow Mini Chest", + "id": "Diamonds", + "tn": 6, }, }, - ], - "Rewards": [ { - "Item": { - "_data": { - "_am": 12, - "id": "Treasure Hideout Key Lower Half", - }, + "_data": { + "_am": 6, + "id": "Crystal Key", + }, + }, + { + "_data": { + "_am": 8, + "id": "Mini Chest", }, - "StarsRequired": 8, }, + ], + "Rewards": [ { "Item": { "_data": { - "_am": 20, - "id": "Damage", - "tn": 5, + "_am": 8, + "id": "Large Gift Bag", }, }, - "StarsRequired": 8, + "StarsRequired": 3, }, { "Item": { "_data": { - "_am": 200, - "id": "Magnet Flag", + "_am": 50000, + "id": "Diamonds", }, }, - "StarsRequired": 8, + "StarsRequired": 3, }, { "Item": { "_data": { - "_am": 20, - "id": "Fruit Bundle", + "_am": 10, + "id": "Coins", + "tn": 6, }, }, - "StarsRequired": 8, + "StarsRequired": 3, }, { "Item": { "_data": { - "_am": 200, - "id": "Diamonds Flag", + "_am": 10, + "id": "Mini Pinata", }, }, - "StarsRequired": 9, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 50, - "id": "TNT Crate", + "_am": 4, + "id": "Crystal Key", }, }, - "StarsRequired": 9, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 20, - "id": "Treasure Hunter", - "tn": 7, + "_am": 50000, + "id": "Diamonds", }, }, - "StarsRequired": 9, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 200, - "id": "Toy Bone", + "_am": 20, + "id": "Damage", + "tn": 6, }, }, - "StarsRequired": 9, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 12, - "id": "Enchant Essence", + "_am": 300, + "id": "Banana", }, }, - "StarsRequired": 10, + "StarsRequired": 5, }, { "Item": { "_data": { "_am": 20, - "id": "Comet", + "id": "Flag Bundle", }, }, - "StarsRequired": 10, + "StarsRequired": 5, }, { "Item": { "_data": { - "id": "Enchant Bundle", + "_am": 10, + "id": "Diamonds", + "tn": 6, }, }, - "StarsRequired": 10, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 100, - "id": "Coins Flag", + "_am": 30, + "id": "Damage", + "tn": 6, }, }, - "StarsRequired": 10, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 12, + "_am": 30, "id": "Coins", - "tn": 7, + "tn": 6, }, }, - "StarsRequired": 11, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 150, - "id": "Strength Flag", + "_am": 25, + "id": "Potion Bundle", }, }, - "StarsRequired": 11, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 20, - "id": "Basic Coin Jar", + "_am": 15, + "id": "Rainbow Flag", }, }, - "StarsRequired": 11, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 20, - "id": "Treasure Hideout Key Upper Half", + "_am": 300, + "id": "Rainbow", }, }, - "StarsRequired": 11, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 8, - "id": "Toy Bundle", + "_am": 6, + "id": "Crystal Key", }, }, - "StarsRequired": 12, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 5, - "id": "Large Enchant Bundle", + "_am": 15, + "id": "Coins", + "tn": 7, }, }, - "StarsRequired": 12, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 200, - "id": "Toy Ball", + "_am": 4, + "id": "Mini Chest", }, }, - "StarsRequired": 12, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 6, - "id": "Fantasy Key", + "_am": 10, + "id": "Diamonds", + "tn": 6, }, }, - "StarsRequired": 12, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 6, - "id": "Breakable Sprinkler", + "_am": 40, + "id": "Toy Bundle", }, }, - "StarsRequired": 13, + "StarsRequired": 8, }, { "Item": { "_data": { - "id": "Secret Key", + "_am": 50000, + "id": "Diamonds", }, }, - "StarsRequired": 13, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 20, - "id": "Pet Cube", + "_am": 4, + "id": "Secret Key", }, }, - "StarsRequired": 13, + "StarsRequired": 8, }, { "Item": { "_data": { - "id": "Charm Hammer", + "_am": 15, + "id": "Rainbow Flag", }, }, - "StarsRequired": 13, + "StarsRequired": 8, }, { "Item": { "_data": { - "id": "Damage", - "tn": 9, + "_am": 300, + "id": "Orange", }, }, - "StarsRequired": 15, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 2, - "id": "Ultra Pet Cube", + "_am": 20, + "id": "Mini Pinata", }, }, - "StarsRequired": 15, + "StarsRequired": 9, }, { "Item": { "_data": { - "id": "Lucky", - "tn": 9, + "_am": 20, + "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 15, + "StarsRequired": 9, }, { "Item": { "_data": { - "id": "Diamonds", - "tn": 9, + "_am": 10, + "id": "Treasure Hunter", + "tn": 6, }, }, - "StarsRequired": 16, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 20, - "id": "Diamonds", - "tn": 6, + "_am": 30, + "id": "Party Box", }, }, - "StarsRequired": 16, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 20, - "id": "Mini Lucky Block", + "_am": 30, + "id": "Damage", + "tn": 7, }, }, - "StarsRequired": 16, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 12, - "id": "Hacker Key", + "_am": 25, + "id": "Coins", + "tn": 7, }, }, - "StarsRequired": 17, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 5, - "id": "Void Spinny Wheel Ticket", + "_am": 10, + "id": "Diamonds", + "tn": 6, }, }, - "StarsRequired": 17, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 3, - "id": "Fantasy Spinny Wheel Ticket", + "_am": 8, + "id": "Lucky", + "tn": 7, }, }, - "StarsRequired": 17, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 12, - "id": "Gift Bag", + "_am": 300, + "id": "Rainbow", }, }, - "StarsRequired": 18, + "StarsRequired": 10, }, { "Item": { "_data": { + "_am": 4, "id": "Mini Chest", }, }, - "StarsRequired": 18, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 20, - "id": "Mini Lucky Block", + "_am": 30, + "id": "Coins", + "tn": 7, }, }, - "StarsRequired": 18, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 8, - "id": "Fantasy Key Upper Half", + "_am": 15, + "id": "Shiny Flag", }, }, - "StarsRequired": 19, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 12, - "id": "Diamond Gift Bag", + "_am": 30, + "id": "Damage", + "tn": 7, }, }, - "StarsRequired": 19, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 5, - "id": "Coins", - "tn": 9, + "_am": 20, + "id": "Treasure Hunter", + "tn": 7, }, }, - "StarsRequired": 19, + "StarsRequired": 11, }, { "Item": { "_data": { - "id": "Coins", - "tn": 11, + "_am": 20, + "id": "Enchant Bundle", }, }, - "StarsRequired": 20, + "StarsRequired": 11, }, { "Item": { "_data": { "_am": 20, - "id": "Fantasy Key Upper Half", + "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 20, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 20, - "id": "Lucky", - "tn": 6, + "_am": 50000, + "id": "Diamonds", }, }, - "StarsRequired": 20, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 20, - "id": "Mini Chest", + "_am": 8, + "id": "Coins", + "tn": 8, }, }, - "StarsRequired": 21, + "StarsRequired": 12, }, { "Item": { "_data": { - "id": "Golden Prison Key", + "_am": 15, + "id": "Diamonds", + "tn": 6, }, }, - "StarsRequired": 21, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 2, - "id": "Lucky", - "tn": 7, + "_am": 20, + "id": "Treasure Hunter", + "tn": 8, }, }, - "StarsRequired": 21, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 20, - "id": "Basic Item Jar", + "_am": 50, + "id": "Party Box", }, }, - "StarsRequired": 22, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 2, - "id": "Bucket O' Magic", + "_am": 15, + "id": "Coins", + "tn": 8, }, }, - "StarsRequired": 22, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 20, - "id": "Tech Key", + "_am": 15, + "id": "Damage", + "tn": 8, }, }, - "StarsRequired": 22, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 12, - "id": "Gift Bag", + "_am": 15, + "id": "Lucky", + "tn": 8, }, }, - "StarsRequired": 23, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 8, - "id": "Fantasy Key", + "_am": 6, + "id": "Crystal Key", }, }, - "StarsRequired": 23, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 20, - "id": "Large Gift Bag", + "_am": 300, + "id": "Rainbow", }, }, - "StarsRequired": 23, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 2, - "id": "Charm Chisel", + "_am": 25, + "id": "Enchant Bundle", }, }, - "StarsRequired": 24, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 20, - "id": "Large Potion Bundle", + "_am": 25, + "id": "Mini Pinata", }, }, - "StarsRequired": 24, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 4, - "id": "Damage", - "tn": 9, + "_am": 30, + "id": "Coins", + "tn": 8, }, }, - "StarsRequired": 24, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 20, - "id": "Ultra Pet Cube", + "_am": 30, + "id": "Damage", + "tn": 8, }, }, - "StarsRequired": 25, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 3, - "id": "Crystal Key", + "_am": 30, + "id": "Treasure Hunter", + "tn": 8, }, }, - "StarsRequired": 25, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 500000, - "id": "Diamonds", + "_am": 8, + "id": "Mini Chest", }, }, - "StarsRequired": 25, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 75, - "id": "TNT Crate", + "_am": 100, + "id": "Party Box", }, }, - "StarsRequired": 26, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 8, - "id": "Mini Pinata", + "_am": 20, + "id": "Lucky", + "tn": 8, }, }, - "StarsRequired": 26, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 20, - "id": "Large Gift Bag", + "_am": 10, + "id": "Charm Stone", }, }, - "StarsRequired": 26, + "StarsRequired": 16, }, ], - "Title": "Realmlord", - "UnlockableEggSlots": 0, - "UnlockablePetSlots": 0, + "Title": "Conqueror", + "UnlockableEggSlots": 1, + "UnlockablePetSlots": 1, }, - "configName": "33 | Realmlord", - "dateCreated": "2026-05-02T17:31:49.619Z", - "dateModified": "2026-05-02T17:31:49.619Z", - "hashShort": "c108cb55c0a09d36", + "configName": "18 | Conqueror", + "dateCreated": "2026-05-02T17:31:49.615Z", + "dateModified": "2026-05-02T17:31:49.615Z", + "hashShort": "8642c65ff6efb044", }, { "category": "Ranks", @@ -194886,90 +188146,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 1500, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 1500, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 1500, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 35, + "Amount": 90, "Type": 14, "Weight": 1, }, { - "Amount": 35, + "Amount": 90, "Type": 15, "Weight": 1, }, { - "Amount": 30, + "Amount": 60, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 2000, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 2000, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 2000, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 40, + "Amount": 120, "Type": 14, "Weight": 1, }, { - "Amount": 40, + "Amount": 120, "Type": 15, "Weight": 1, }, { - "Amount": 10, + "Amount": 70, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 3, + "Amount": 6, "Type": 44, "Weight": 1, }, { - "Amount": 3, + "Amount": 6, "Type": 43, "Weight": 1, }, { - "Amount": 3, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 3, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 3, + "Amount": 6, "Type": 39, "Weight": 1, }, @@ -194979,138 +188239,138 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 1250, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 1250, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 400, + "Amount": 1750, "Type": 40, "Weight": 1, }, { - "Amount": 40, + "Amount": 160, "Type": 41, "Weight": 1, }, { - "Amount": 50, + "Amount": 70, "Type": 26, "Weight": 1, }, { - "Amount": 40, + "Amount": 70, "Type": 25, "Weight": 1, }, { - "Amount": 75, + "Amount": 90, "Type": 46, "Weight": 1, }, { - "Amount": 75, + "Amount": 90, "Type": 45, "Weight": 1, }, ], [ { - "Amount": 2500, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 2500, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 2500, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 750, + "Amount": 1200, "Type": 9, "Weight": 1, }, { - "Amount": 2500, + "Amount": 16000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 18, + "Amount": 75, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 18, + "Amount": 75, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 18, + "Amount": 75, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 44, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 43, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 4, + "Amount": 6, "Type": 39, "Weight": 1, }, { - "Amount": 1, + "Amount": 2, "Type": 76, "Weight": 1, }, { - "Amount": 1500, + "Amount": 3500, "Type": 20, "Weight": 1, }, { - "Amount": 1500, + "Amount": 3500, "Type": 20, "Weight": 1, }, { - "Amount": 500, + "Amount": 1800, "Type": 40, "Weight": 1, }, { - "Amount": 50, + "Amount": 170, "Type": 41, "Weight": 1, }, @@ -195132,93 +188392,84 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 2750, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 900, + "Amount": 1750, "Type": 9, "Weight": 1, }, { - "Amount": 3000, + "Amount": 17000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 20, + "Amount": 70, "Type": 42, "Weight": 1, }, { - "Amount": 5, + "Amount": 8, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 8, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 8, "Type": 39, "Weight": 1, }, { - "Amount": 1, + "Amount": 2, "Type": 76, "Weight": 1, }, ], ], - "MaxEnchantsEquipped": 5, + "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 16, + "RankNumber": 33, "RankUpRewards": [ { "_data": { - "_am": 15, - "id": "Coins", - "tn": 7, - }, - }, - { - "_data": { - "_am": 15, - "id": "Damage", - "tn": 7, + "_am": 100, + "id": "Diamonds", }, }, { "_data": { - "_am": 15, - "id": "Diamonds", - "tn": 6, + "_am": 40, + "id": "Large Enchant Bundle", }, }, { "_data": { - "_am": 50, - "id": "Large Gift Bag", + "_am": 40, + "id": "Large Potion Bundle", }, }, { "_data": { - "_am": 10, - "id": "Enchant Bundle", + "_am": 20, + "id": "Rainbow Mini Chest", }, }, ], @@ -195226,579 +188477,555 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Large Gift Bag", + "_am": 12, + "id": "Treasure Hideout Key Lower Half", }, }, - "StarsRequired": 3, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 50000, - "id": "Diamonds", + "_am": 20, + "id": "Damage", + "tn": 5, }, }, - "StarsRequired": 3, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 5, - "id": "Crystal Key", + "_am": 200, + "id": "Magnet Flag", }, }, - "StarsRequired": 3, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 5, - "id": "Mini Pinata", + "_am": 20, + "id": "Fruit Bundle", }, }, - "StarsRequired": 3, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 50, - "id": "Coins", - "tn": 5, + "_am": 200, + "id": "Diamonds Flag", }, }, - "StarsRequired": 3, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 50000, - "id": "Diamonds", + "_am": 50, + "id": "TNT Crate", }, }, - "StarsRequired": 4, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 50, - "id": "Damage", - "tn": 5, + "_am": 20, + "id": "Treasure Hunter", + "tn": 7, }, }, - "StarsRequired": 4, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 300, - "id": "Apple", + "_am": 200, + "id": "Toy Bone", }, }, - "StarsRequired": 4, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 15, - "id": "Strength Flag", + "_am": 12, + "id": "Enchant Essence", }, }, - "StarsRequired": 4, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 40, - "id": "Diamonds", - "tn": 5, + "_am": 20, + "id": "Comet", }, }, - "StarsRequired": 4, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 75, - "id": "Damage", - "tn": 5, + "id": "Enchant Bundle", }, }, - "StarsRequired": 5, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 75, - "id": "Coins", - "tn": 5, + "_am": 100, + "id": "Coins Flag", }, }, - "StarsRequired": 5, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 300, - "id": "Rainbow", + "_am": 12, + "id": "Coins", + "tn": 7, }, }, - "StarsRequired": 5, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 250, - "id": "Toy Ball", + "_am": 150, + "id": "Strength Flag", }, }, - "StarsRequired": 5, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 200, - "id": "Rainbow", + "_am": 20, + "id": "Basic Coin Jar", }, }, - "StarsRequired": 5, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 5, - "id": "Crystal Key", + "_am": 20, + "id": "Treasure Hideout Key Upper Half", }, }, - "StarsRequired": 6, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 75, - "id": "Coins", - "tn": 5, + "_am": 8, + "id": "Toy Bundle", }, }, - "StarsRequired": 6, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 30, - "id": "Large Gift Bag", + "_am": 5, + "id": "Large Enchant Bundle", }, }, - "StarsRequired": 6, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 40, - "id": "Diamonds", - "tn": 5, + "_am": 200, + "id": "Toy Ball", }, }, - "StarsRequired": 6, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 250, - "id": "Squeaky Toy", + "_am": 6, + "id": "Fantasy Key", }, }, - "StarsRequired": 6, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 50000, - "id": "Diamonds", + "_am": 6, + "id": "Breakable Sprinkler", }, }, - "StarsRequired": 6, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 4, "id": "Secret Key", }, }, - "StarsRequired": 7, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 10, - "id": "Rainbow Flag", + "_am": 20, + "id": "Pet Cube", }, }, - "StarsRequired": 7, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 300, - "id": "Banana", + "id": "Charm Hammer", }, }, - "StarsRequired": 7, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 250, - "id": "Toy Ball", + "id": "Damage", + "tn": 9, }, }, - "StarsRequired": 7, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 15, - "id": "Spinny Wheel Ticket", + "_am": 2, + "id": "Ultra Pet Cube", }, }, - "StarsRequired": 7, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 20, - "id": "Treasure Hunter", - "tn": 6, + "id": "Lucky", + "tn": 9, }, }, - "StarsRequired": 8, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 15, - "id": "Mini Lucky Block", + "id": "Diamonds", + "tn": 9, }, }, - "StarsRequired": 8, + "StarsRequired": 16, }, { "Item": { "_data": { "_am": 20, - "id": "Damage", + "id": "Diamonds", "tn": 6, }, }, - "StarsRequired": 8, + "StarsRequired": 16, }, { "Item": { "_data": { "_am": 20, - "id": "Coins", - "tn": 6, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 8, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 30, - "id": "Diamonds", - "tn": 5, + "_am": 12, + "id": "Hacker Key", }, }, - "StarsRequired": 9, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 10, - "id": "Lucky", - "tn": 6, + "_am": 5, + "id": "Void Spinny Wheel Ticket", }, }, - "StarsRequired": 9, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 300, - "id": "Orange", + "_am": 3, + "id": "Fantasy Spinny Wheel Ticket", }, }, - "StarsRequired": 9, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 5, - "id": "Mini Chest", + "_am": 12, + "id": "Gift Bag", }, }, - "StarsRequired": 9, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 15, - "id": "Lucky", - "tn": 6, + "id": "Mini Chest", }, }, - "StarsRequired": 10, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 10, - "id": "Shiny Flag", + "_am": 20, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 10, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 30, - "id": "Damage", - "tn": 6, + "_am": 8, + "id": "Fantasy Key Upper Half", }, }, - "StarsRequired": 10, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 30, - "id": "Treasure Hunter", - "tn": 6, + "_am": 12, + "id": "Diamond Gift Bag", }, }, - "StarsRequired": 11, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 300, - "id": "Rainbow", + "_am": 5, + "id": "Coins", + "tn": 9, }, }, - "StarsRequired": 11, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 25, - "id": "Spinny Wheel Ticket", + "id": "Coins", + "tn": 11, }, }, - "StarsRequired": 11, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 50000, - "id": "Diamonds", + "_am": 20, + "id": "Fantasy Key Upper Half", }, }, - "StarsRequired": 12, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 30, - "id": "Coins", + "_am": 20, + "id": "Lucky", "tn": 6, }, }, - "StarsRequired": 12, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 10, - "id": "Diamonds", - "tn": 5, + "_am": 20, + "id": "Mini Chest", }, }, - "StarsRequired": 12, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 10, - "id": "Treasure Hunter", - "tn": 7, + "id": "Golden Prison Key", }, }, - "StarsRequired": 13, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 20, - "id": "Party Box", + "_am": 2, + "id": "Lucky", + "tn": 7, }, }, - "StarsRequired": 13, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 10, - "id": "Coins", - "tn": 7, + "_am": 20, + "id": "Basic Item Jar", }, }, - "StarsRequired": 13, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 10, - "id": "Damage", - "tn": 7, + "_am": 2, + "id": "Bucket O' Magic", }, }, - "StarsRequired": 13, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 15, - "id": "Lucky", - "tn": 7, + "_am": 20, + "id": "Tech Key", }, }, - "StarsRequired": 14, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 6, - "id": "Crystal Key", + "_am": 12, + "id": "Gift Bag", }, }, - "StarsRequired": 14, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 300, - "id": "Rainbow", + "_am": 8, + "id": "Fantasy Key", }, }, - "StarsRequired": 14, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 15, - "id": "Enchant Bundle", + "_am": 20, + "id": "Large Gift Bag", }, }, - "StarsRequired": 14, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 75, - "id": "Large Gift Bag", + "_am": 2, + "id": "Charm Chisel", }, }, - "StarsRequired": 14, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 4, - "id": "Coins", - "tn": 11, + "_am": 20, + "id": "Large Potion Bundle", }, }, - "StarsRequired": 14, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 15, - "id": "Coins", - "tn": 8, + "_am": 4, + "id": "Damage", + "tn": 9, }, }, - "StarsRequired": 15, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 15, - "id": "Damage", - "tn": 8, + "_am": 20, + "id": "Ultra Pet Cube", }, }, - "StarsRequired": 15, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 15, - "id": "Treasure Hunter", - "tn": 8, + "_am": 3, + "id": "Crystal Key", }, }, - "StarsRequired": 15, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 15, - "id": "Damage", - "tn": 8, + "_am": 500000, + "id": "Diamonds", }, }, - "StarsRequired": 15, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 10, - "id": "Lucky", - "tn": 8, + "_am": 75, + "id": "TNT Crate", }, }, - "StarsRequired": 15, + "StarsRequired": 26, }, { "Item": { "_data": { - "_am": 5, - "id": "Charm Stone", + "_am": 8, + "id": "Mini Pinata", }, }, - "StarsRequired": 15, + "StarsRequired": 26, }, { "Item": { "_data": { - "_am": 15, - "id": "Mini Chest", + "_am": 20, + "id": "Large Gift Bag", }, }, - "StarsRequired": 16, + "StarsRequired": 26, }, ], - "Title": "Vanguard", - "UnlockableEggSlots": 1, - "UnlockablePetSlots": 1, + "Title": "Realmlord", + "UnlockableEggSlots": 0, + "UnlockablePetSlots": 0, }, - "configName": "16 | Vanguard", - "dateCreated": "2026-05-02T17:31:49.627Z", - "dateModified": "2026-05-02T17:31:49.627Z", - "hashShort": "35d5c26d4474740e", + "configName": "33 | Realmlord", + "dateCreated": "2026-05-02T17:31:49.619Z", + "dateModified": "2026-05-02T17:31:49.619Z", + "hashShort": "c108cb55c0a09d36", }, { "category": "Ranks", @@ -196107,34 +189334,37 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 40, + "RankNumber": 36, "RankUpRewards": [ { "_data": { - "_am": 4, - "id": "Magic Shard", + "id": "Golden Prison Key", + }, + }, + { + "_data": { + "id": "Charm Chisel", }, }, { "_data": { "_am": 2, - "id": "Diamonds", - "tn": 9, + "id": "Magic Shard", }, }, { "_data": { - "id": "Prison Key", + "id": "Bucket O' Magic", }, }, { "_data": { - "id": "Rainbow Mini Chest", + "id": "Hacker Key", }, }, { "_data": { - "id": "Treasure Hunter", + "id": "Damage", "tn": 11, }, }, @@ -196143,9 +189373,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 300, - "id": "Damage", - "tn": 7, + "_am": 250, + "id": "Comet", }, }, "StarsRequired": 8, @@ -196164,7 +189393,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 250, - "id": "Fortune Flag", + "id": "Damage", + "tn": 7, }, }, "StarsRequired": 8, @@ -196173,8 +189403,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 300, - "id": "Treasure Hunter", - "tn": 8, + "id": "Pet Cube", }, }, "StarsRequired": 8, @@ -196182,8 +189411,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 300, - "id": "Seashell", + "_am": 250, + "id": "Lucky", + "tn": 7, }, }, "StarsRequired": 9, @@ -196191,9 +189421,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 300, - "id": "Tap Power", - "tn": 5, + "_am": 250, + "id": "Mini Lucky Block", }, }, "StarsRequired": 9, @@ -196201,8 +189430,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 300, - "id": "Comet", + "_am": 250, + "id": "Fortune Flag", }, }, "StarsRequired": 9, @@ -196210,8 +189439,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 300, - "id": "Large Enchant Bundle", + "_am": 250, + "id": "Treasure Hunter", + "tn": 8, }, }, "StarsRequired": 9, @@ -196219,8 +189449,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 300, - "id": "Party Box", + "_am": 250, + "id": "Seashell", }, }, "StarsRequired": 10, @@ -196237,9 +189467,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 300, - "id": "Blast", - "tn": 1, + "_am": 250, + "id": "Party Box", }, }, "StarsRequired": 10, @@ -196247,8 +189476,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 300, - "id": "Breakable Sprinkler", + "_am": 250, + "id": "Blast", + "tn": 1, }, }, "StarsRequired": 10, @@ -196256,9 +189486,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 200, - "id": "Treasure Hunter", - "tn": 9, + "_am": 150, + "id": "Coins", + "tn": 10, }, }, "StarsRequired": 11, @@ -196266,8 +189496,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 300, - "id": "Mini Lucky Block", + "_am": 150, + "id": "Treasure Hunter", + "tn": 9, }, }, "StarsRequired": 11, @@ -196275,8 +189506,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 150, - "id": "Shiny Flag", + "_am": 300, + "id": "Breakable Sprinkler", }, }, "StarsRequired": 11, @@ -196284,9 +189515,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 200, + "_am": 250, "id": "Coins", - "tn": 10, + "tn": 8, }, }, "StarsRequired": 11, @@ -196295,7 +189526,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 125, - "id": "TNT Crate", + "id": "Golden Pencil", }, }, "StarsRequired": 12, @@ -196303,8 +189534,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 150, - "id": "Gift Bag", + "_am": 125, + "id": "TNT Crate", }, }, "StarsRequired": 12, @@ -196313,7 +189544,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 150, - "id": "Golden Pencil", + "id": "Agility", + "tn": 1, }, }, "StarsRequired": 12, @@ -196321,8 +189553,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 300, - "id": "Pet Cube", + "_am": 100, + "id": "Gift Bag", }, }, "StarsRequired": 12, @@ -196330,8 +189562,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 150, - "id": "Fantasy Key Lower Half", + "_am": 100, + "id": "Damage", + "tn": 8, }, }, "StarsRequired": 13, @@ -196339,8 +189572,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 125, - "id": "Spinny Wheel Ticket", + "_am": 100, + "id": "Fantasy Key Lower Half", }, }, "StarsRequired": 13, @@ -196348,9 +189581,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 150, - "id": "Coins", - "tn": 9, + "_am": 100, + "id": "Spinny Wheel Ticket", }, }, "StarsRequired": 13, @@ -196358,9 +189590,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 125, - "id": "Damage", - "tn": 8, + "_am": 100, + "id": "Coins", + "tn": 9, }, }, "StarsRequired": 13, @@ -196369,7 +189601,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 75, - "id": "Basic Item Jar", + "id": "MVP Key Lower Half", }, }, "StarsRequired": 15, @@ -196377,7 +189609,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 100, + "_am": 75, "id": "Damage", "tn": 9, }, @@ -196388,8 +189620,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 75, - "id": "Diamonds", - "tn": 7, + "id": "Void Key Upper Half", }, }, "StarsRequired": 15, @@ -196397,8 +189628,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 75, - "id": "Crystal Key Upper Half", + "_am": 50, + "id": "Diamonds", + "tn": 8, }, }, "StarsRequired": 16, @@ -196406,8 +189638,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 125, - "id": "Seed Bag", + "_am": 100, + "id": "Tech Spinny Wheel Ticket", }, }, "StarsRequired": 16, @@ -196415,9 +189647,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 100, - "id": "Strength", - "tn": 1, + "_am": 50, + "id": "Diamonds", + "tn": 7, }, }, "StarsRequired": 16, @@ -196425,7 +189657,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Daycare Slot Voucher", + "_am": 50, + "id": "Basic Item Jar", }, }, "StarsRequired": 17, @@ -196434,8 +189667,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 75, - "id": "Damage", - "tn": 10, + "id": "Strength", + "tn": 1, }, }, "StarsRequired": 17, @@ -196443,8 +189676,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 100, - "id": "Void Key Upper Half", + "_am": 50, + "id": "Crystal Key Upper Half", }, }, "StarsRequired": 17, @@ -196452,7 +189685,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 40, + "_am": 30, "id": "Lucky", "tn": 8, }, @@ -196462,8 +189695,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 50, - "id": "Treasure Hideout Key Upper Half", + "id": "Daycare Slot Voucher", }, }, "StarsRequired": 18, @@ -196471,8 +189703,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 100, - "id": "MVP Key Lower Half", + "_am": 40, + "id": "Lucky", + "tn": 9, }, }, "StarsRequired": 18, @@ -196480,8 +189713,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 30, - "id": "Insta Plant Capsule", + "_am": 5, + "id": "Charm Hammer", }, }, "StarsRequired": 19, @@ -196489,9 +189722,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 75, - "id": "Diamonds", - "tn": 8, + "_am": 25, + "id": "Insta Plant Capsule", }, }, "StarsRequired": 19, @@ -196508,8 +189740,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 150, - "id": "Tech Spinny Wheel Ticket", + "_am": 30, + "id": "Millionaire Ticket", }, }, "StarsRequired": 20, @@ -196517,8 +189749,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 40, - "id": "Millionaire Ticket", + "_am": 20, + "id": "Void Spinny Wheel Ticket", }, }, "StarsRequired": 20, @@ -196526,8 +189758,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 30, - "id": "Fantasy Spinny Wheel Ticket", + "_am": 50, + "id": "Large Gift Bag", }, }, "StarsRequired": 20, @@ -196535,9 +189767,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 50, - "id": "Lucky", - "tn": 9, + "_am": 6, + "id": "Crystal Key", }, }, "StarsRequired": 21, @@ -196545,8 +189776,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Fantasy Key Upper Half", + "_am": 20, + "id": "Millionaire Bucks", }, }, "StarsRequired": 21, @@ -196554,8 +189785,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 6, - "id": "Crystal Key", + "_am": 20, + "id": "Treasure Hideout Key", }, }, "StarsRequired": 21, @@ -196563,8 +189794,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Fantasy Key", + "_am": 75, + "id": "Damage", + "tn": 10, }, }, "StarsRequired": 22, @@ -196572,8 +189804,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Diamond Gift Bag", + "_am": 20, + "id": "Mini Chest", }, }, "StarsRequired": 22, @@ -196581,8 +189813,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Void Key", + "_am": 12, + "id": "Diamond Gift Bag", }, }, "StarsRequired": 22, @@ -196590,8 +189822,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Mini Pinata", + "_am": 125, + "id": "Seed Bag", }, }, "StarsRequired": 23, @@ -196599,9 +189831,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 10, - "id": "Treasure Hunter", - "tn": 10, + "id": "Booth Slot Voucher", }, }, "StarsRequired": 23, @@ -196609,8 +189839,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 30, - "id": "Void Spinny Wheel Ticket", + "_am": 20, + "id": "Mini Pinata", }, }, "StarsRequired": 23, @@ -196618,8 +189848,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Mini Chest", + "_am": 20, + "id": "Charm Stone", }, }, "StarsRequired": 24, @@ -196628,7 +189858,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 8, - "id": "Lucky", + "id": "Treasure Hunter", "tn": 10, }, }, @@ -196637,8 +189867,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, - "id": "Hacker Key", + "_am": 15, + "id": "Void Key", }, }, "StarsRequired": 24, @@ -196646,8 +189876,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, - "id": "Golden Prison Key", + "_am": 2, + "id": "Treasure Hunter", + "tn": 11, }, }, "StarsRequired": 25, @@ -196655,9 +189886,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Damage", - "tn": 11, + "_am": 75, + "id": "Treasure Hideout Key Upper Half", }, }, "StarsRequired": 25, @@ -196665,7 +189895,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 12, + "_am": 10, "id": "Coins", "tn": 11, }, @@ -196675,8 +189905,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 30, - "id": "Charm Stone", + "_am": 6, + "id": "Diamonds", + "tn": 9, }, }, "StarsRequired": 26, @@ -196684,21 +189915,21 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Charm Chisel", + "_am": 25, + "id": "Fantasy Key Upper Half", }, }, "StarsRequired": 26, }, ], - "Title": "Herald", + "Title": "Soulforge", "UnlockableEggSlots": 0, "UnlockablePetSlots": 0, }, - "configName": "40 | Herald", - "dateCreated": "2026-05-02T17:31:49.634Z", - "dateModified": "2026-05-02T17:31:49.634Z", - "hashShort": "45102793198481da", + "configName": "36 | Soulforge", + "dateCreated": "2026-05-02T17:31:49.622Z", + "dateModified": "2026-05-02T17:31:49.622Z", + "hashShort": "5740ee34bf8cc187", }, { "category": "Ranks", @@ -197662,90 +190893,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 2750, + "Amount": 1750, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 1750, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 1500, "Type": 21, "Weight": 1, }, { - "Amount": 70, + "Amount": 40, "Type": 14, "Weight": 1, }, { - "Amount": 70, + "Amount": 40, "Type": 15, "Weight": 1, }, { - "Amount": 45, + "Amount": 32, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 3500, + "Amount": 2250, "Type": 21, "Weight": 1, }, { - "Amount": 3500, + "Amount": 2250, "Type": 21, "Weight": 1, }, { - "Amount": 3500, + "Amount": 2250, "Type": 21, "Weight": 1, }, { - "Amount": 90, + "Amount": 40, "Type": 14, "Weight": 1, }, { - "Amount": 90, + "Amount": 40, "Type": 15, "Weight": 1, }, { - "Amount": 50, + "Amount": 15, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 44, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 43, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 39, "Weight": 1, }, @@ -197755,22 +190986,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 2500, + "Amount": 1500, "Type": 20, "Weight": 1, }, { - "Amount": 2500, + "Amount": 1500, "Type": 20, "Weight": 1, }, { - "Amount": 1250, + "Amount": 500, "Type": 40, "Weight": 1, }, { - "Amount": 125, + "Amount": 50, "Type": 41, "Weight": 1, }, @@ -197780,7 +191011,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 50, + "Amount": 40, "Type": 25, "Weight": 1, }, @@ -197797,96 +191028,96 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 3750, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 3750, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 3750, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 900, + "Amount": 400, "Type": 9, "Weight": 1, }, { - "Amount": 10000, + "Amount": 3500, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 60, + "Amount": 20, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 60, + "Amount": 20, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 60, + "Amount": 20, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 44, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 43, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 38, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 37, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 39, "Weight": 1, }, { - "Amount": 2, + "Amount": 1, "Type": 76, "Weight": 1, }, { - "Amount": 3000, + "Amount": 1750, "Type": 20, "Weight": 1, }, { - "Amount": 3000, + "Amount": 1750, "Type": 20, "Weight": 1, }, { - "Amount": 1400, + "Amount": 500, "Type": 40, "Weight": 1, }, { - "Amount": 140, + "Amount": 50, "Type": 41, "Weight": 1, }, @@ -197908,48 +191139,48 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 4500, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 4500, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 4500, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 1200, + "Amount": 550, "Type": 9, "Weight": 1, }, { - "Amount": 12000, + "Amount": 4000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 50, + "Amount": 20, "Type": 42, "Weight": 1, }, { - "Amount": 8, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 8, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 8, + "Amount": 6, "Type": 39, "Weight": 1, }, @@ -197960,44 +191191,47 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` }, ], ], - "MaxEnchantsEquipped": 6, + "MaxEnchantsEquipped": 5, "MaximumActiveGoals": 4, - "RankNumber": 30, + "RankNumber": 19, "RankUpRewards": [ { "_data": { - "_am": 100, - "id": "Diamonds", + "_am": 4, + "id": "Secret Key", }, }, { "_data": { - "_am": 30, - "id": "Large Enchant Bundle", + "_am": 6, + "id": "Crystal Key", }, }, { "_data": { - "_am": 40, - "id": "Large Potion Bundle", + "_am": 8, + "id": "Mini Chest", }, }, { "_data": { - "_am": 40, - "id": "Void Spinny Wheel Ticket", + "_am": 25, + "id": "Coins", + "tn": 8, }, }, { "_data": { - "_am": 30, - "id": "Void Key", + "_am": 25, + "id": "Damage", + "tn": 8, }, }, { "_data": { - "_am": 8, - "id": "Rainbow Mini Chest", + "_am": 25, + "id": "Diamonds", + "tn": 7, }, }, ], @@ -198005,560 +191239,578 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 200, - "id": "Toy Ball", + "_am": 8, + "id": "Large Gift Bag", }, }, - "StarsRequired": 6, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 250, - "id": "Rainbow", + "_am": 100000, + "id": "Diamonds", }, }, - "StarsRequired": 6, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 3, - "id": "Basic Coin Jar", + "_am": 15, + "id": "Coins", + "tn": 6, }, }, - "StarsRequired": 6, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 30, - "id": "Fruit Bundle", + "_am": 15, + "id": "Mini Pinata", }, }, - "StarsRequired": 6, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 250, - "id": "Apple", + "_am": 4, + "id": "Crystal Key", }, }, - "StarsRequired": 7, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 250, - "id": "Strength Flag", + "_am": 100000, + "id": "Diamonds", }, }, - "StarsRequired": 7, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 300, - "id": "Banana", + "_am": 25, + "id": "Damage", + "tn": 6, }, }, - "StarsRequired": 7, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 30, - "id": "Enchant Essence", + "_am": 300, + "id": "Banana", }, }, - "StarsRequired": 7, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 250, - "id": "Toy Ball", + "_am": 40, + "id": "Flag Bundle", }, }, - "StarsRequired": 8, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 250, - "id": "Squeaky Toy", + "_am": 75, + "id": "Toy Bundle", }, }, - "StarsRequired": 8, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 250, - "id": "Toy Bone", + "_am": 100000, + "id": "Diamonds", }, }, - "StarsRequired": 8, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 3, - "id": "Treasure Hideout Key Lower Half", + "_am": 4, + "id": "Secret Key", }, }, - "StarsRequired": 8, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 150, - "id": "Magnet Flag", + "_am": 20, + "id": "Rainbow Flag", }, }, - "StarsRequired": 9, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 200, - "id": "Diamonds Flag", + "_am": 300, + "id": "Orange", }, }, - "StarsRequired": 9, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 300, - "id": "Orange", + "_am": 20, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 9, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 300, - "id": "Apple", + "_am": 20, + "id": "Tech Spinny Wheel Ticket", }, }, - "StarsRequired": 9, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 300, - "id": "Watermelon", + "_am": 15, + "id": "Treasure Hunter", + "tn": 6, }, }, - "StarsRequired": 10, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 200, - "id": "Rainbow", + "_am": 40, + "id": "Party Box", }, }, - "StarsRequired": 10, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 125, - "id": "TNT", + "_am": 15, + "id": "Diamonds", + "tn": 6, }, }, - "StarsRequired": 10, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 6, - "id": "Void Key Lower Half", + "_am": 300, + "id": "Rainbow", }, }, - "StarsRequired": 10, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 10, - "id": "Breakable Sprinkler", + "_am": 4, + "id": "Tech Key", }, }, - "StarsRequired": 11, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 20, - "id": "Mini Chest", + "_am": 25, + "id": "Coins", + "tn": 7, }, }, - "StarsRequired": 11, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 20, - "id": "Gift Bag", + "_am": 4, + "id": "Mini Chest", }, }, - "StarsRequired": 11, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 12, - "id": "Treasure Hideout Key Upper Half", + "_am": 15, + "id": "Diamonds", + "tn": 6, }, }, - "StarsRequired": 11, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 20, - "id": "Magic Shard", + "_am": 40, + "id": "Damage", + "tn": 6, }, }, - "StarsRequired": 13, + "StarsRequired": 10, }, { "Item": { "_data": { - "id": "Daycare Slot Voucher", + "_am": 40, + "id": "Coins", + "tn": 6, }, }, - "StarsRequired": 13, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 3, - "id": "Coins", - "tn": 8, + "_am": 40, + "id": "Potion Bundle", }, }, - "StarsRequired": 13, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 12, - "id": "Void Spinny Wheel Ticket", + "_am": 25, + "id": "Rainbow Flag", }, }, - "StarsRequired": 14, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 30, + "_am": 40, "id": "Damage", - "tn": 9, + "tn": 6, }, }, - "StarsRequired": 14, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 30, + "_am": 40, "id": "Coins", - "tn": 9, + "tn": 7, }, }, - "StarsRequired": 14, + "StarsRequired": 11, }, { "Item": { "_data": { "_am": 20, - "id": "Gift Bag", + "id": "Shiny Flag", }, }, - "StarsRequired": 15, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 20, - "id": "Mini Chest", + "_am": 30, + "id": "Damage", + "tn": 7, }, }, - "StarsRequired": 15, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 12, - "id": "Coins", - "tn": 6, + "_am": 20, + "id": "Treasure Hunter", + "tn": 7, }, }, - "StarsRequired": 15, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 6, - "id": "Void Key", + "_am": 30, + "id": "Enchant Bundle", }, }, - "StarsRequired": 16, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 12, - "id": "Large Potion Bundle", + "_am": 30, + "id": "Coins", + "tn": 7, }, }, - "StarsRequired": 16, + "StarsRequired": 12, }, { "Item": { "_data": { "_am": 12, - "id": "Insta Plant Capsule", + "id": "Diamonds", + "tn": 6, }, }, - "StarsRequired": 16, + "StarsRequired": 12, }, { "Item": { "_data": { "_am": 8, - "id": "Mini Pinata", + "id": "Lucky", + "tn": 7, }, }, - "StarsRequired": 17, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 20, - "id": "Mini Lucky Block", + "_am": 300, + "id": "Rainbow", }, }, - "StarsRequired": 17, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 20, - "id": "Lucky", - "tn": 8, + "_am": 8, + "id": "Mini Chest", }, }, - "StarsRequired": 17, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 40, - "id": "Enchant Bundle", + "_am": 20, + "id": "Treasure Hunter", + "tn": 8, }, }, - "StarsRequired": 18, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 10, - "id": "Treasure Hunter", - "tn": 8, + "_am": 75, + "id": "Party Box", }, }, - "StarsRequired": 18, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 20, - "id": "Void Spinny Wheel Ticket", + "_am": 15, + "id": "Coins", + "tn": 8, }, }, - "StarsRequired": 18, + "StarsRequired": 13, }, { "Item": { "_data": { - "id": "Void Key Upper Half", + "_am": 15, + "id": "Damage", + "tn": 8, }, }, - "StarsRequired": 19, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 6, - "id": "Crystal Key", + "_am": 30, + "id": "Tech Spinny Wheel Ticket", }, }, - "StarsRequired": 19, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 8, - "id": "Damage", - "tn": 7, + "_am": 250000, + "id": "Diamonds", }, }, - "StarsRequired": 19, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 4, - "id": "Charm Hammer", + "_am": 8, + "id": "Coins", + "tn": 8, }, }, - "StarsRequired": 20, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 20, - "id": "Magic Shard", + "_am": 8, + "id": "Diamonds", + "tn": 7, }, }, - "StarsRequired": 20, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 20, - "id": "Large Gift Bag", + "_am": 10, + "id": "Coins", + "tn": 11, }, }, - "StarsRequired": 20, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 40, - "id": "Party Box", + "_am": 8, + "id": "Lucky", + "tn": 9, }, }, - "StarsRequired": 21, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 125, - "id": "Rainbow Flag", + "_am": 6, + "id": "Crystal Key", }, }, - "StarsRequired": 21, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 150, - "id": "Rainbow Flag", + "_am": 300, + "id": "Rainbow", }, }, - "StarsRequired": 21, + "StarsRequired": 15, }, { "Item": { "_data": { "_am": 40, - "id": "Gift Bag", + "id": "Enchant Bundle", }, }, - "StarsRequired": 22, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 4, - "id": "Secret Key", + "_am": 30, + "id": "Mini Pinata", }, }, - "StarsRequired": 22, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 30, - "id": "Lucky", - "tn": 5, + "_am": 8, + "id": "Coins", + "tn": 9, }, }, - "StarsRequired": 22, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 40, - "id": "Diamonds", - "tn": 7, + "_am": 8, + "id": "Damage", + "tn": 9, }, }, - "StarsRequired": 23, + "StarsRequired": 16, }, { "Item": { "_data": { + "_am": 8, "id": "Treasure Hunter", "tn": 9, }, }, - "StarsRequired": 23, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 125, - "id": "Shiny Flag", + "_am": 8, + "id": "Mini Chest", }, }, - "StarsRequired": 23, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 10, - "id": "Diamonds", - "tn": 6, + "_am": 8, + "id": "Charm Stone", }, }, - "StarsRequired": 24, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 8, - "id": "Large Gift Bag", + "_am": 25, + "id": "Lucky", + "tn": 8, }, }, - "StarsRequired": 24, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 10, - "id": "Charm Stone", + "_am": 12, + "id": "Tech Key", }, }, - "StarsRequired": 24, + "StarsRequired": 17, }, ], - "Title": "Cosmic", + "Title": "Monarch", "UnlockableEggSlots": 1, - "UnlockablePetSlots": 0, + "UnlockablePetSlots": 1, }, - "configName": "30 | Cosmic", - "dateCreated": "2026-05-02T17:31:49.628Z", - "dateModified": "2026-05-02T17:31:49.628Z", - "hashShort": "08c65b6cdb58386b", + "configName": "19 | Monarch", + "dateCreated": "2026-05-02T17:31:49.626Z", + "dateModified": "2026-05-02T17:31:49.626Z", + "hashShort": "06c3e53245b292fb", }, { "category": "Ranks", @@ -198717,12 +191969,12 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 350, + "Amount": 750, "Type": 9, "Weight": 1, }, { - "Amount": 3000, + "Amount": 2500, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, @@ -198828,12 +192080,12 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 500, + "Amount": 900, "Type": 9, "Weight": 1, }, { - "Amount": 3500, + "Amount": 3000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, @@ -198867,46 +192119,39 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], "MaxEnchantsEquipped": 5, "MaximumActiveGoals": 4, - "RankNumber": 18, + "RankNumber": 16, "RankUpRewards": [ { "_data": { - "_am": 20, - "id": "Lucky", - "tn": 8, - }, - }, - { - "_data": { - "_am": 20, + "_am": 15, "id": "Coins", - "tn": 8, + "tn": 7, }, }, { "_data": { - "_am": 20, + "_am": 15, "id": "Damage", - "tn": 8, + "tn": 7, }, }, { "_data": { - "_am": 20, + "_am": 15, "id": "Diamonds", "tn": 6, }, }, { "_data": { - "_am": 6, - "id": "Crystal Key", + "_am": 50, + "id": "Large Gift Bag", }, }, { "_data": { - "_am": 8, - "id": "Mini Chest", + "_am": 10, + "id": "Enchant Bundle", }, }, ], @@ -198914,7 +192159,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, + "_am": 5, "id": "Large Gift Bag", }, }, @@ -198932,9 +192177,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 10, - "id": "Coins", - "tn": 6, + "_am": 5, + "id": "Crystal Key", }, }, "StarsRequired": 3, @@ -198942,20 +192186,21 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 10, + "_am": 5, "id": "Mini Pinata", }, }, - "StarsRequired": 4, + "StarsRequired": 3, }, { "Item": { "_data": { - "_am": 4, - "id": "Crystal Key", + "_am": 50, + "id": "Coins", + "tn": 5, }, }, - "StarsRequired": 4, + "StarsRequired": 3, }, { "Item": { @@ -198969,134 +192214,134 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, + "_am": 50, "id": "Damage", - "tn": 6, + "tn": 5, }, }, - "StarsRequired": 5, + "StarsRequired": 4, }, { "Item": { "_data": { "_am": 300, - "id": "Banana", + "id": "Apple", }, }, - "StarsRequired": 5, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 20, - "id": "Flag Bundle", + "_am": 15, + "id": "Strength Flag", }, }, - "StarsRequired": 5, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 10, + "_am": 40, "id": "Diamonds", - "tn": 6, + "tn": 5, }, }, - "StarsRequired": 5, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 30, + "_am": 75, "id": "Damage", - "tn": 6, + "tn": 5, }, }, - "StarsRequired": 6, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 30, + "_am": 75, "id": "Coins", - "tn": 6, + "tn": 5, }, }, - "StarsRequired": 6, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 25, - "id": "Potion Bundle", + "_am": 300, + "id": "Rainbow", }, }, - "StarsRequired": 6, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 15, - "id": "Rainbow Flag", + "_am": 250, + "id": "Toy Ball", }, }, - "StarsRequired": 6, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 300, + "_am": 200, "id": "Rainbow", }, }, - "StarsRequired": 7, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 6, + "_am": 5, "id": "Crystal Key", }, }, - "StarsRequired": 7, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 15, + "_am": 75, "id": "Coins", - "tn": 7, + "tn": 5, }, }, - "StarsRequired": 7, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 4, - "id": "Mini Chest", + "_am": 30, + "id": "Large Gift Bag", }, }, - "StarsRequired": 7, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 10, + "_am": 40, "id": "Diamonds", - "tn": 6, + "tn": 5, }, }, - "StarsRequired": 7, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 40, - "id": "Toy Bundle", + "_am": 250, + "id": "Squeaky Toy", }, }, - "StarsRequired": 8, + "StarsRequired": 6, }, { "Item": { @@ -199105,7 +192350,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "id": "Diamonds", }, }, - "StarsRequired": 8, + "StarsRequired": 6, }, { "Item": { @@ -199114,156 +192359,156 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "id": "Secret Key", }, }, - "StarsRequired": 8, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 15, + "_am": 10, "id": "Rainbow Flag", }, }, - "StarsRequired": 8, + "StarsRequired": 7, }, { "Item": { "_data": { "_am": 300, - "id": "Orange", + "id": "Banana", }, }, - "StarsRequired": 8, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 20, - "id": "Mini Pinata", + "_am": 250, + "id": "Toy Ball", }, }, - "StarsRequired": 9, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 20, + "_am": 15, "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 9, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 10, + "_am": 20, "id": "Treasure Hunter", "tn": 6, }, }, - "StarsRequired": 9, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 30, - "id": "Party Box", + "_am": 15, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 9, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 30, + "_am": 20, "id": "Damage", - "tn": 7, + "tn": 6, }, }, - "StarsRequired": 9, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 25, + "_am": 20, "id": "Coins", - "tn": 7, + "tn": 6, }, }, - "StarsRequired": 10, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 10, + "_am": 30, "id": "Diamonds", - "tn": 6, + "tn": 5, }, }, - "StarsRequired": 10, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 8, + "_am": 10, "id": "Lucky", - "tn": 7, + "tn": 6, }, }, - "StarsRequired": 10, + "StarsRequired": 9, }, { "Item": { "_data": { "_am": 300, - "id": "Rainbow", + "id": "Orange", }, }, - "StarsRequired": 10, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 4, + "_am": 5, "id": "Mini Chest", }, }, - "StarsRequired": 10, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 30, - "id": "Coins", - "tn": 7, + "_am": 15, + "id": "Lucky", + "tn": 6, }, }, - "StarsRequired": 11, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 15, + "_am": 10, "id": "Shiny Flag", }, }, - "StarsRequired": 11, + "StarsRequired": 10, }, { "Item": { "_data": { "_am": 30, "id": "Damage", - "tn": 7, + "tn": 6, }, }, - "StarsRequired": 11, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 20, + "_am": 30, "id": "Treasure Hunter", - "tn": 7, + "tn": 6, }, }, "StarsRequired": 11, @@ -199271,8 +192516,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Enchant Bundle", + "_am": 300, + "id": "Rainbow", }, }, "StarsRequired": 11, @@ -199280,11 +192525,11 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, + "_am": 25, "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 12, + "StarsRequired": 11, }, { "Item": { @@ -199298,9 +192543,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, + "_am": 30, "id": "Coins", - "tn": 8, + "tn": 6, }, }, "StarsRequired": 12, @@ -199308,9 +192553,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, + "_am": 10, "id": "Diamonds", - "tn": 6, + "tn": 5, }, }, "StarsRequired": 12, @@ -199318,9 +192563,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, + "_am": 10, "id": "Treasure Hunter", - "tn": 8, + "tn": 7, }, }, "StarsRequired": 13, @@ -199328,7 +192573,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 50, + "_am": 20, "id": "Party Box", }, }, @@ -199337,9 +192582,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, + "_am": 10, "id": "Coins", - "tn": 8, + "tn": 7, }, }, "StarsRequired": 13, @@ -199347,9 +192592,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, + "_am": 10, "id": "Damage", - "tn": 8, + "tn": 7, }, }, "StarsRequired": 13, @@ -199359,7 +192604,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "_data": { "_am": 15, "id": "Lucky", - "tn": 8, + "tn": 7, }, }, "StarsRequired": 14, @@ -199385,7 +192630,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, + "_am": 15, "id": "Enchant Bundle", }, }, @@ -199394,8 +192639,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Mini Pinata", + "_am": 75, + "id": "Large Gift Bag", }, }, "StarsRequired": 14, @@ -199403,7 +192648,17 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 30, + "_am": 4, + "id": "Coins", + "tn": 11, + }, + }, + "StarsRequired": 14, + }, + { + "Item": { + "_data": { + "_am": 15, "id": "Coins", "tn": 8, }, @@ -199413,7 +192668,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 30, + "_am": 15, "id": "Damage", "tn": 8, }, @@ -199423,7 +192678,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 30, + "_am": 15, "id": "Treasure Hunter", "tn": 8, }, @@ -199433,8 +192688,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, - "id": "Mini Chest", + "_am": 15, + "id": "Damage", + "tn": 8, }, }, "StarsRequired": 15, @@ -199442,8 +192698,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 100, - "id": "Party Box", + "_am": 10, + "id": "Lucky", + "tn": 8, }, }, "StarsRequired": 15, @@ -199451,9 +192708,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Lucky", - "tn": 8, + "_am": 5, + "id": "Charm Stone", }, }, "StarsRequired": 15, @@ -199461,21 +192717,21 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 10, - "id": "Charm Stone", + "_am": 15, + "id": "Mini Chest", }, }, "StarsRequired": 16, }, ], - "Title": "Conqueror", + "Title": "Vanguard", "UnlockableEggSlots": 1, "UnlockablePetSlots": 1, }, - "configName": "18 | Conqueror", - "dateCreated": "2026-05-02T17:31:49.615Z", - "dateModified": "2026-05-02T17:31:49.615Z", - "hashShort": "8642c65ff6efb044", + "configName": "16 | Vanguard", + "dateCreated": "2026-05-02T17:31:49.627Z", + "dateModified": "2026-05-02T17:31:49.627Z", + "hashShort": "35d5c26d4474740e", }, { "category": "Ranks", @@ -199484,90 +192740,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 1750, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 1750, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 1500, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 40, + "Amount": 70, "Type": 14, "Weight": 1, }, { - "Amount": 40, + "Amount": 70, "Type": 15, "Weight": 1, }, { - "Amount": 32, + "Amount": 45, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 2250, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 2250, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 2250, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 40, + "Amount": 90, "Type": 14, "Weight": 1, }, { - "Amount": 40, + "Amount": 90, "Type": 15, "Weight": 1, }, { - "Amount": 15, + "Amount": 50, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 44, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 43, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 38, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 37, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 39, "Weight": 1, }, @@ -199577,22 +192833,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 1500, + "Amount": 2500, "Type": 20, "Weight": 1, }, { - "Amount": 1500, + "Amount": 2500, "Type": 20, "Weight": 1, }, { - "Amount": 500, + "Amount": 1250, "Type": 40, "Weight": 1, }, { - "Amount": 50, + "Amount": 125, "Type": 41, "Weight": 1, }, @@ -199602,7 +192858,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 40, + "Amount": 50, "Type": 25, "Weight": 1, }, @@ -199619,96 +192875,96 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 2750, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 400, + "Amount": 900, "Type": 9, "Weight": 1, }, { - "Amount": 3500, + "Amount": 10000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 20, + "Amount": 60, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 20, + "Amount": 60, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 20, + "Amount": 60, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 44, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 43, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 39, "Weight": 1, }, { - "Amount": 1, + "Amount": 2, "Type": 76, "Weight": 1, }, { - "Amount": 1750, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 1750, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 500, + "Amount": 1400, "Type": 40, "Weight": 1, }, { - "Amount": 50, + "Amount": 140, "Type": 41, "Weight": 1, }, @@ -199730,48 +192986,48 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 3000, + "Amount": 4500, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 4500, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 4500, "Type": 21, "Weight": 1, }, { - "Amount": 550, + "Amount": 1200, "Type": 9, "Weight": 1, }, { - "Amount": 4000, + "Amount": 12000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 20, + "Amount": 50, "Type": 42, "Weight": 1, }, { - "Amount": 6, + "Amount": 8, "Type": 38, "Weight": 1, }, { - "Amount": 6, + "Amount": 8, "Type": 37, "Weight": 1, }, { - "Amount": 6, + "Amount": 8, "Type": 39, "Weight": 1, }, @@ -199782,47 +193038,44 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` }, ], ], - "MaxEnchantsEquipped": 5, + "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 19, + "RankNumber": 30, "RankUpRewards": [ { "_data": { - "_am": 4, - "id": "Secret Key", + "_am": 100, + "id": "Diamonds", }, }, { "_data": { - "_am": 6, - "id": "Crystal Key", + "_am": 30, + "id": "Large Enchant Bundle", }, }, { "_data": { - "_am": 8, - "id": "Mini Chest", + "_am": 40, + "id": "Large Potion Bundle", }, }, { "_data": { - "_am": 25, - "id": "Coins", - "tn": 8, + "_am": 40, + "id": "Void Spinny Wheel Ticket", }, }, { "_data": { - "_am": 25, - "id": "Damage", - "tn": 8, + "_am": 30, + "id": "Void Key", }, }, { "_data": { - "_am": 25, - "id": "Diamonds", - "tn": 7, + "_am": 8, + "id": "Rainbow Mini Chest", }, }, ], @@ -199830,578 +193083,560 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, - "id": "Large Gift Bag", + "_am": 200, + "id": "Toy Ball", }, }, - "StarsRequired": 4, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 100000, - "id": "Diamonds", + "_am": 250, + "id": "Rainbow", }, }, - "StarsRequired": 4, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 15, - "id": "Coins", - "tn": 6, + "_am": 3, + "id": "Basic Coin Jar", }, }, - "StarsRequired": 4, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 15, - "id": "Mini Pinata", + "_am": 30, + "id": "Fruit Bundle", }, }, - "StarsRequired": 5, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 4, - "id": "Crystal Key", + "_am": 250, + "id": "Apple", }, }, - "StarsRequired": 5, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 100000, - "id": "Diamonds", + "_am": 250, + "id": "Strength Flag", }, }, - "StarsRequired": 5, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 25, - "id": "Damage", - "tn": 6, + "_am": 300, + "id": "Banana", }, }, - "StarsRequired": 6, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 300, - "id": "Banana", + "_am": 30, + "id": "Enchant Essence", }, }, - "StarsRequired": 6, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 40, - "id": "Flag Bundle", + "_am": 250, + "id": "Toy Ball", }, }, - "StarsRequired": 6, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 75, - "id": "Toy Bundle", + "_am": 250, + "id": "Squeaky Toy", }, }, - "StarsRequired": 7, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 100000, - "id": "Diamonds", + "_am": 250, + "id": "Toy Bone", }, }, - "StarsRequired": 7, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 4, - "id": "Secret Key", + "_am": 3, + "id": "Treasure Hideout Key Lower Half", }, }, - "StarsRequired": 7, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 20, - "id": "Rainbow Flag", + "_am": 150, + "id": "Magnet Flag", }, }, - "StarsRequired": 7, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 300, - "id": "Orange", + "_am": 200, + "id": "Diamonds Flag", }, }, - "StarsRequired": 7, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 20, - "id": "Mini Lucky Block", + "_am": 300, + "id": "Orange", }, }, - "StarsRequired": 8, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 20, - "id": "Tech Spinny Wheel Ticket", + "_am": 300, + "id": "Apple", }, }, - "StarsRequired": 8, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 15, - "id": "Treasure Hunter", - "tn": 6, + "_am": 300, + "id": "Watermelon", }, }, - "StarsRequired": 8, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 40, - "id": "Party Box", + "_am": 200, + "id": "Rainbow", }, }, - "StarsRequired": 8, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 15, - "id": "Diamonds", - "tn": 6, + "_am": 125, + "id": "TNT", }, }, - "StarsRequired": 8, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 300, - "id": "Rainbow", + "_am": 6, + "id": "Void Key Lower Half", }, }, - "StarsRequired": 9, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 4, - "id": "Tech Key", + "_am": 10, + "id": "Breakable Sprinkler", }, }, - "StarsRequired": 9, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 25, - "id": "Coins", - "tn": 7, + "_am": 20, + "id": "Mini Chest", }, }, - "StarsRequired": 9, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 4, - "id": "Mini Chest", + "_am": 20, + "id": "Gift Bag", }, }, - "StarsRequired": 9, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 15, - "id": "Diamonds", - "tn": 6, + "_am": 12, + "id": "Treasure Hideout Key Upper Half", }, }, - "StarsRequired": 9, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 40, - "id": "Damage", - "tn": 6, + "_am": 20, + "id": "Magic Shard", }, }, - "StarsRequired": 10, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 40, - "id": "Coins", - "tn": 6, + "id": "Daycare Slot Voucher", }, }, - "StarsRequired": 10, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 40, - "id": "Potion Bundle", + "_am": 3, + "id": "Coins", + "tn": 8, }, }, - "StarsRequired": 10, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 25, - "id": "Rainbow Flag", + "_am": 12, + "id": "Void Spinny Wheel Ticket", }, }, - "StarsRequired": 10, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 40, + "_am": 30, "id": "Damage", - "tn": 6, + "tn": 9, }, }, - "StarsRequired": 10, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 40, + "_am": 30, "id": "Coins", - "tn": 7, + "tn": 9, }, }, - "StarsRequired": 11, + "StarsRequired": 14, }, { "Item": { "_data": { "_am": 20, - "id": "Shiny Flag", + "id": "Gift Bag", }, }, - "StarsRequired": 11, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 30, - "id": "Damage", - "tn": 7, + "_am": 20, + "id": "Mini Chest", }, }, - "StarsRequired": 11, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 20, - "id": "Treasure Hunter", - "tn": 7, + "_am": 12, + "id": "Coins", + "tn": 6, }, }, - "StarsRequired": 11, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 30, - "id": "Enchant Bundle", + "_am": 6, + "id": "Void Key", }, }, - "StarsRequired": 11, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 30, - "id": "Coins", - "tn": 7, + "_am": 12, + "id": "Large Potion Bundle", }, }, - "StarsRequired": 12, + "StarsRequired": 16, }, { "Item": { "_data": { "_am": 12, - "id": "Diamonds", - "tn": 6, + "id": "Insta Plant Capsule", }, }, - "StarsRequired": 12, + "StarsRequired": 16, }, { "Item": { "_data": { "_am": 8, - "id": "Lucky", - "tn": 7, + "id": "Mini Pinata", }, }, - "StarsRequired": 12, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 300, - "id": "Rainbow", + "_am": 20, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 12, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 8, - "id": "Mini Chest", + "_am": 20, + "id": "Lucky", + "tn": 8, }, }, - "StarsRequired": 12, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 20, - "id": "Treasure Hunter", - "tn": 8, + "_am": 40, + "id": "Enchant Bundle", }, }, - "StarsRequired": 13, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 75, - "id": "Party Box", + "_am": 10, + "id": "Treasure Hunter", + "tn": 8, }, }, - "StarsRequired": 13, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 15, - "id": "Coins", - "tn": 8, + "_am": 20, + "id": "Void Spinny Wheel Ticket", }, }, - "StarsRequired": 13, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 15, - "id": "Damage", - "tn": 8, + "id": "Void Key Upper Half", }, }, - "StarsRequired": 13, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 30, - "id": "Tech Spinny Wheel Ticket", + "_am": 6, + "id": "Crystal Key", }, }, - "StarsRequired": 14, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 250000, - "id": "Diamonds", + "_am": 8, + "id": "Damage", + "tn": 7, }, }, - "StarsRequired": 14, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 8, - "id": "Coins", - "tn": 8, + "_am": 4, + "id": "Charm Hammer", }, }, - "StarsRequired": 14, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 8, - "id": "Diamonds", - "tn": 7, + "_am": 20, + "id": "Magic Shard", }, }, - "StarsRequired": 14, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 10, - "id": "Coins", - "tn": 11, + "_am": 20, + "id": "Large Gift Bag", }, }, - "StarsRequired": 14, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 8, - "id": "Lucky", - "tn": 9, + "_am": 40, + "id": "Party Box", }, }, - "StarsRequired": 15, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 6, - "id": "Crystal Key", + "_am": 125, + "id": "Rainbow Flag", }, }, - "StarsRequired": 15, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 300, - "id": "Rainbow", + "_am": 150, + "id": "Rainbow Flag", }, }, - "StarsRequired": 15, + "StarsRequired": 21, }, { "Item": { "_data": { "_am": 40, - "id": "Enchant Bundle", + "id": "Gift Bag", }, }, - "StarsRequired": 15, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 30, - "id": "Mini Pinata", + "_am": 4, + "id": "Secret Key", }, }, - "StarsRequired": 15, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 8, - "id": "Coins", - "tn": 9, + "_am": 30, + "id": "Lucky", + "tn": 5, }, }, - "StarsRequired": 16, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 8, - "id": "Damage", - "tn": 9, + "_am": 40, + "id": "Diamonds", + "tn": 7, }, }, - "StarsRequired": 16, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 8, "id": "Treasure Hunter", "tn": 9, }, }, - "StarsRequired": 16, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 8, - "id": "Mini Chest", + "_am": 125, + "id": "Shiny Flag", }, }, - "StarsRequired": 16, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 8, - "id": "Charm Stone", + "_am": 10, + "id": "Diamonds", + "tn": 6, }, }, - "StarsRequired": 16, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 25, - "id": "Lucky", - "tn": 8, + "_am": 8, + "id": "Large Gift Bag", }, }, - "StarsRequired": 16, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 12, - "id": "Tech Key", + "_am": 10, + "id": "Charm Stone", }, }, - "StarsRequired": 17, + "StarsRequired": 24, }, ], - "Title": "Monarch", + "Title": "Cosmic", "UnlockableEggSlots": 1, - "UnlockablePetSlots": 1, + "UnlockablePetSlots": 0, }, - "configName": "19 | Monarch", - "dateCreated": "2026-05-02T17:31:49.626Z", - "dateModified": "2026-05-02T17:31:49.626Z", - "hashShort": "06c3e53245b292fb", + "configName": "30 | Cosmic", + "dateCreated": "2026-05-02T17:31:49.628Z", + "dateModified": "2026-05-02T17:31:49.628Z", + "hashShort": "08c65b6cdb58386b", }, { "category": "Ranks", @@ -200410,90 +193645,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 3250, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 3250, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 3250, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 90, + "Amount": 70, "Type": 14, "Weight": 1, }, { - "Amount": 90, + "Amount": 70, "Type": 15, "Weight": 1, }, { - "Amount": 60, + "Amount": 45, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 4000, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 4000, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 4000, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 120, + "Amount": 90, "Type": 14, "Weight": 1, }, { - "Amount": 120, + "Amount": 90, "Type": 15, "Weight": 1, }, { - "Amount": 70, + "Amount": 50, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 44, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 43, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 38, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 37, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 39, "Weight": 1, }, @@ -200503,87 +193738,87 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 3000, + "Amount": 2500, "Type": 20, "Weight": 1, }, { - "Amount": 3000, + "Amount": 2500, "Type": 20, "Weight": 1, }, { - "Amount": 1750, + "Amount": 1250, "Type": 40, "Weight": 1, }, { - "Amount": 160, + "Amount": 125, "Type": 41, "Weight": 1, }, { - "Amount": 70, + "Amount": 50, "Type": 26, "Weight": 1, }, { - "Amount": 70, + "Amount": 50, "Type": 25, "Weight": 1, }, { - "Amount": 90, + "Amount": 75, "Type": 46, "Weight": 1, }, { - "Amount": 90, + "Amount": 75, "Type": 45, "Weight": 1, }, ], [ { - "Amount": 4000, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 4000, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 4000, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 1200, + "Amount": 900, "Type": 9, "Weight": 1, }, { - "Amount": 16000, + "Amount": 10000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 75, + "Amount": 60, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 75, + "Amount": 60, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 75, + "Amount": 60, "PotionTier": 4, "Type": 34, "Weight": 1, @@ -200619,22 +193854,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 3500, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 3500, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 1800, + "Amount": 1400, "Type": 40, "Weight": 1, }, { - "Amount": 170, + "Amount": 140, "Type": 41, "Weight": 1, }, @@ -200656,33 +193891,33 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 5000, + "Amount": 4500, "Type": 21, "Weight": 1, }, { - "Amount": 5000, + "Amount": 4500, "Type": 21, "Weight": 1, }, { - "Amount": 5000, + "Amount": 4500, "Type": 21, "Weight": 1, }, { - "Amount": 1750, + "Amount": 1200, "Type": 9, "Weight": 1, }, { - "Amount": 17000, + "Amount": 12000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 70, + "Amount": 50, "Type": 42, "Weight": 1, }, @@ -200710,39 +193945,42 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 38, + "RankNumber": 31, "RankUpRewards": [ { "_data": { - "id": "Golden Prison Key", + "_am": 100, + "id": "Diamonds", }, }, { "_data": { - "id": "Damage", - "tn": 11, + "_am": 30, + "id": "Large Enchant Bundle", }, }, { "_data": { - "id": "Treasure Hunter", - "tn": 11, + "_am": 40, + "id": "Large Potion Bundle", }, }, { "_data": { - "id": "Lucky", - "tn": 10, + "_am": 40, + "id": "Void Spinny Wheel Ticket", }, }, { "_data": { - "id": "Rainbow Mini Chest", + "_am": 30, + "id": "Void Key", }, }, { "_data": { - "id": "Hacker Key", + "_am": 10, + "id": "Rainbow Mini Chest", }, }, ], @@ -200750,19 +193988,81 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 300, - "id": "Tap Power", - "tn": 5, + "_am": 200, + "id": "Apple", }, }, - "StarsRequired": 8, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 250, - "id": "Treasure Hunter", - "tn": 8, + "_am": 2, + "id": "Flag Bundle", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Coins", + "tn": 6, + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 20, + "id": "Void Key Lower Half", + }, + }, + "StarsRequired": 5, + }, + { + "Item": { + "_data": { + "_am": 100, + "id": "Shiny Flag", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 100, + "id": "Rainbow", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 100, + "id": "TNT", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Flag Bundle", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 200, + "id": "Watermelon", }, }, "StarsRequired": 8, @@ -200770,9 +194070,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 300, - "id": "Bonus", - "tn": 1, + "_am": 15, + "id": "Basic Coin Jar", }, }, "StarsRequired": 8, @@ -200780,8 +194079,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 300, - "id": "Pet Cube", + "_am": 250, + "id": "Fortune Flag", }, }, "StarsRequired": 8, @@ -200789,18 +194088,17 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 300, - "id": "Lucky", - "tn": 7, + "_am": 20, + "id": "Treasure Hideout Key Lower Half", }, }, - "StarsRequired": 9, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 300, - "id": "Comet", + "_am": 250, + "id": "Pineapple", }, }, "StarsRequired": 9, @@ -200808,8 +194106,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 300, - "id": "Seashell", + "_am": 15, + "id": "Fruit Bundle", }, }, "StarsRequired": 9, @@ -200817,8 +194115,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 300, - "id": "Large Enchant Bundle", + "_am": 15, + "id": "Seashell", }, }, "StarsRequired": 9, @@ -200826,17 +194124,17 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 300, - "id": "Mini Lucky Block", + "_am": 150, + "id": "Strength Flag", }, }, - "StarsRequired": 10, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 300, - "id": "Breakable Sprinkler", + "_am": 25, + "id": "Millionaire Bucks", }, }, "StarsRequired": 10, @@ -200844,8 +194142,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 150, - "id": "Rainbow Flag", + "_am": 250, + "id": "Watermelon", }, }, "StarsRequired": 10, @@ -200853,8 +194151,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 250, - "id": "Fortune Flag", + "_am": 200, + "id": "Apple", }, }, "StarsRequired": 10, @@ -200863,18 +194161,17 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 150, - "id": "Treasure Hunter", - "tn": 9, + "id": "Strength Flag", }, }, - "StarsRequired": 11, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 200, + "_am": 25, "id": "Coins", - "tn": 10, + "tn": 5, }, }, "StarsRequired": 11, @@ -200882,8 +194179,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 300, - "id": "Void Key Lower Half", + "_am": 15, + "id": "Large Gift Bag", }, }, "StarsRequired": 11, @@ -200891,9 +194188,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 300, - "id": "Damage", - "tn": 7, + "_am": 20, + "id": "Treasure Hunter", + "tn": 9, }, }, "StarsRequired": 11, @@ -200901,18 +194198,18 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 125, - "id": "Gift Bag", + "_am": 5, + "id": "Lucky", + "tn": 10, }, }, - "StarsRequired": 12, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 200, - "id": "Agility", - "tn": 1, + "_am": 15, + "id": "Charm Stone", }, }, "StarsRequired": 12, @@ -200920,8 +194217,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 150, - "id": "Golden Pencil", + "_am": 5, + "id": "Mini Chest", }, }, "StarsRequired": 12, @@ -200929,8 +194226,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 125, - "id": "TNT Crate", + "_am": 15, + "id": "Large Potion Bundle", }, }, "StarsRequired": 12, @@ -200938,17 +194235,16 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 100, - "id": "Spinny Wheel Ticket", + "id": "Booth Slot Voucher", }, }, - "StarsRequired": 13, + "StarsRequired": 12, }, { "Item": { "_data": { - "_am": 125, - "id": "Coins", + "_am": 10, + "id": "Damage", "tn": 9, }, }, @@ -200957,8 +194253,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 125, - "id": "Fantasy Key Lower Half", + "id": "Golden Prison Key", }, }, "StarsRequired": 13, @@ -200966,9 +194261,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 100, - "id": "Damage", - "tn": 8, + "id": "Daycare Slot Voucher", }, }, "StarsRequired": 13, @@ -200976,333 +194269,323 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 100, - "id": "Seed Bag", - }, - }, - "StarsRequired": 15, - }, - { - "Item": { - "_data": { - "_am": 75, - "id": "Void Key Upper Half", + "_am": 15, + "id": "Millionaire Ticket", }, }, - "StarsRequired": 15, + "StarsRequired": 13, }, { "Item": { "_data": { - "_am": 50, - "id": "Diamonds", - "tn": 7, + "_am": 25, + "id": "Insta Plant Capsule", }, }, - "StarsRequired": 15, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 50, - "id": "Diamonds", - "tn": 8, + "_am": 25, + "id": "Mini Lucky Block", }, }, - "StarsRequired": 16, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 100, - "id": "Tech Spinny Wheel Ticket", + "_am": 3, + "id": "Gift Bag", }, }, - "StarsRequired": 16, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 100, - "id": "Damage", - "tn": 9, + "_am": 4, + "id": "Lucky", + "tn": 10, }, }, - "StarsRequired": 16, + "StarsRequired": 14, }, { "Item": { "_data": { - "id": "Daycare Slot Voucher", + "_am": 2, + "id": "Spinny Wheel Ticket", }, }, - "StarsRequired": 17, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 4, - "id": "Secret Key", + "_am": 15, + "id": "Basic Item Jar", }, }, - "StarsRequired": 17, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 50, - "id": "Treasure Hideout Key Upper Half", + "_am": 5, + "id": "Millionaire Ticket", }, }, - "StarsRequired": 17, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 50, - "id": "Large Gift Bag", + "_am": 500, + "id": "Diamonds", }, }, - "StarsRequired": 18, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 40, - "id": "Lucky", - "tn": 9, + "_am": 3, + "id": "Treasure Hideout Key Upper Half", }, }, - "StarsRequired": 18, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 100, - "id": "MVP Key Lower Half", + "_am": 8, + "id": "Void Spinny Wheel Ticket", }, }, - "StarsRequired": 18, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 30, - "id": "Insta Plant Capsule", + "_am": 3, + "id": "Mini Chest", }, }, - "StarsRequired": 19, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 75, - "id": "Basic Item Jar", + "_am": 15, + "id": "Damage", + "tn": 6, }, }, - "StarsRequired": 19, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 30, - "id": "Fantasy Spinny Wheel Ticket", + "id": "Golden Prison Key", }, }, - "StarsRequired": 19, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 20, - "id": "Charm Stone", + "_am": 25, + "id": "Tech Key", }, }, - "StarsRequired": 20, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 100, - "id": "Strength", - "tn": 1, + "_am": 6, + "id": "Treasure Hunter", + "tn": 7, }, }, - "StarsRequired": 20, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 40, - "id": "Millionaire Ticket", + "_am": 15, + "id": "Breakable Sprinkler", }, }, - "StarsRequired": 20, + "StarsRequired": 18, }, { "Item": { "_data": { "_am": 15, - "id": "Void Key", + "id": "Party Box", }, }, - "StarsRequired": 21, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 6, - "id": "Crystal Key", + "_am": 100, + "id": "TNT Crate", }, }, - "StarsRequired": 21, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 40, - "id": "Lucky", - "tn": 8, + "_am": 8, + "id": "Void Spinny Wheel Ticket", }, }, - "StarsRequired": 21, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 25, - "id": "Void Spinny Wheel Ticket", + "_am": 8, + "id": "Coins", + "tn": 10, }, }, - "StarsRequired": 22, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 25, + "_am": 20, "id": "Treasure Hideout Key", }, }, - "StarsRequired": 22, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 25, - "id": "Fantasy Key Upper Half", + "_am": 5, + "id": "Hacker Key", }, }, - "StarsRequired": 22, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 15, - "id": "Ultra Pet Cube", + "_am": 4, + "id": "Bucket O' Magic", }, }, - "StarsRequired": 23, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 12, - "id": "Fantasy Key", + "_am": 100, + "id": "Diamonds", }, }, - "StarsRequired": 23, + "StarsRequired": 20, }, { "Item": { "_data": { - "id": "Booth Slot Voucher", + "_am": 10, + "id": "Insta Plant Capsule", }, }, - "StarsRequired": 23, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 15, - "id": "Diamond Gift Bag", + "_am": 2, + "id": "Prison Key", }, }, - "StarsRequired": 24, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 100, - "id": "Crystal Key Upper Half", + "_am": 4, + "id": "Large Potion Bundle", }, }, - "StarsRequired": 24, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 25, - "id": "Mini Chest", + "_am": 8, + "id": "Diamond Gift Bag", }, }, - "StarsRequired": 24, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 8, - "id": "Bucket O' Magic", + "_am": 15, + "id": "Treasure Hunter", + "tn": 7, }, }, - "StarsRequired": 25, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 30, - "id": "Millionaire Bucks", + "_am": 25, + "id": "Large Gift Bag", }, }, - "StarsRequired": 25, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 8, - "id": "Magic Shard", + "_am": 25, + "id": "Seed Bag", }, }, - "StarsRequired": 25, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 75, - "id": "Damage", - "tn": 10, + "_am": 8, + "id": "Breakable Sprinkler", }, }, - "StarsRequired": 26, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 10, - "id": "Coins", - "tn": 11, + "_am": 20, + "id": "Diamonds", + "tn": 8, }, }, - "StarsRequired": 26, + "StarsRequired": 23, }, ], - "Title": "Timekeeper", + "Title": "Demigod", "UnlockableEggSlots": 0, "UnlockablePetSlots": 0, }, - "configName": "38 | Timekeeper", - "dateCreated": "2026-05-02T17:31:49.633Z", - "dateModified": "2026-05-02T17:31:49.633Z", - "hashShort": "105de72ac42be55d", + "configName": "31 | Demigod", + "dateCreated": "2026-05-02T17:31:49.630Z", + "dateModified": "2026-05-02T17:31:49.630Z", + "hashShort": "0f52abc53bacaa14", }, { "category": "Ranks", @@ -201611,37 +194894,49 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 34, + "RankNumber": 38, "RankUpRewards": [ { "_data": { - "_am": 100, - "id": "Diamonds", + "id": "Golden Prison Key", }, }, { "_data": { - "id": "Mega Potion Chest", + "id": "Damage", + "tn": 11, }, }, { "_data": { - "id": "Mega Enchant Chest", + "id": "Treasure Hunter", + "tn": 11, + }, + }, + { + "_data": { + "id": "Lucky", + "tn": 10, }, }, { "_data": { - "_am": 15, "id": "Rainbow Mini Chest", }, }, + { + "_data": { + "id": "Hacker Key", + }, + }, ], "Rewards": [ { "Item": { "_data": { - "_am": 15, - "id": "Enchant Bundle", + "_am": 300, + "id": "Tap Power", + "tn": 5, }, }, "StarsRequired": 8, @@ -201649,8 +194944,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 125, - "id": "Squeaky Toy", + "_am": 250, + "id": "Treasure Hunter", + "tn": 8, }, }, "StarsRequired": 8, @@ -201658,8 +194954,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, - "id": "Basic Coin Jar", + "_am": 300, + "id": "Bonus", + "tn": 1, }, }, "StarsRequired": 8, @@ -201667,7 +194964,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Enchant Bundle", + "_am": 300, + "id": "Pet Cube", }, }, "StarsRequired": 8, @@ -201675,8 +194973,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 75, - "id": "Watermelon", + "_am": 300, + "id": "Lucky", + "tn": 7, }, }, "StarsRequired": 9, @@ -201684,8 +194983,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 150, - "id": "Apple", + "_am": 300, + "id": "Comet", }, }, "StarsRequired": 9, @@ -201693,8 +194992,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 125, - "id": "Toy Ball", + "_am": 300, + "id": "Seashell", }, }, "StarsRequired": 9, @@ -201702,8 +195001,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 150, - "id": "Rainbow", + "_am": 300, + "id": "Large Enchant Bundle", }, }, "StarsRequired": 9, @@ -201711,8 +195010,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 125, - "id": "Strength Flag", + "_am": 300, + "id": "Mini Lucky Block", }, }, "StarsRequired": 10, @@ -201720,9 +195019,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, - "id": "Treasure Hunter", - "tn": 7, + "_am": 300, + "id": "Breakable Sprinkler", }, }, "StarsRequired": 10, @@ -201730,8 +195028,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 75, - "id": "Hasty Flag", + "_am": 150, + "id": "Rainbow Flag", }, }, "StarsRequired": 10, @@ -201739,8 +195037,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Fantasy Key Lower Half", + "_am": 250, + "id": "Fortune Flag", }, }, "StarsRequired": 10, @@ -201748,8 +195046,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 75, - "id": "Banana", + "_am": 150, + "id": "Treasure Hunter", + "tn": 9, }, }, "StarsRequired": 11, @@ -201757,8 +195056,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Enchant Essence", + "_am": 200, + "id": "Coins", + "tn": 10, }, }, "StarsRequired": 11, @@ -201766,8 +195066,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 125, - "id": "Coins Flag", + "_am": 300, + "id": "Void Key Lower Half", }, }, "StarsRequired": 11, @@ -201775,8 +195075,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 100, - "id": "Squeaky Toy", + "_am": 300, + "id": "Damage", + "tn": 7, }, }, "StarsRequired": 11, @@ -201784,8 +195085,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Fantasy Key Lower Half", + "_am": 125, + "id": "Gift Bag", }, }, "StarsRequired": 12, @@ -201793,9 +195094,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 12, - "id": "Diamonds", - "tn": 6, + "_am": 200, + "id": "Agility", + "tn": 1, }, }, "StarsRequired": 12, @@ -201803,8 +195104,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 100, - "id": "Watermelon", + "_am": 150, + "id": "Golden Pencil", }, }, "StarsRequired": 12, @@ -201812,7 +195113,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Large Potion Bundle", + "_am": 125, + "id": "TNT Crate", }, }, "StarsRequired": 12, @@ -201820,9 +195122,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Coins", - "tn": 10, + "_am": 100, + "id": "Spinny Wheel Ticket", }, }, "StarsRequired": 13, @@ -201830,8 +195131,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 75, - "id": "Shiny Flag", + "_am": 125, + "id": "Coins", + "tn": 9, }, }, "StarsRequired": 13, @@ -201839,7 +195141,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Breakable Sprinkler", + "_am": 125, + "id": "Fantasy Key Lower Half", }, }, "StarsRequired": 13, @@ -201847,8 +195150,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 125, - "id": "Fortune Flag", + "_am": 100, + "id": "Damage", + "tn": 8, }, }, "StarsRequired": 13, @@ -201856,8 +195160,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Basic Item Jar", + "_am": 100, + "id": "Seed Bag", }, }, "StarsRequired": 15, @@ -201865,8 +195169,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 30, - "id": "TNT Crate", + "_am": 75, + "id": "Void Key Upper Half", }, }, "StarsRequired": 15, @@ -201874,8 +195178,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 12, - "id": "Golden Pencil", + "_am": 50, + "id": "Diamonds", + "tn": 7, }, }, "StarsRequired": 15, @@ -201883,8 +195188,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Seashell", + "_am": 50, + "id": "Diamonds", + "tn": 8, }, }, "StarsRequired": 16, @@ -201892,8 +195198,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Mini Lucky Block", + "_am": 100, + "id": "Tech Spinny Wheel Ticket", }, }, "StarsRequired": 16, @@ -201901,8 +195207,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, - "id": "Basic Item Jar", + "_am": 100, + "id": "Damage", + "tn": 9, }, }, "StarsRequired": 16, @@ -201910,7 +195217,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "MVP Key Lower Half", + "id": "Daycare Slot Voucher", }, }, "StarsRequired": 17, @@ -201918,8 +195225,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 100, - "id": "Toy Bone", + "_am": 4, + "id": "Secret Key", }, }, "StarsRequired": 17, @@ -201927,8 +195234,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Fantasy Key", + "_am": 50, + "id": "Treasure Hideout Key Upper Half", }, }, "StarsRequired": 17, @@ -201936,8 +195243,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, - "id": "Hacker Key", + "_am": 50, + "id": "Large Gift Bag", }, }, "StarsRequired": 18, @@ -201945,7 +195252,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Daycare Slot Voucher", + "_am": 40, + "id": "Lucky", + "tn": 9, }, }, "StarsRequired": 18, @@ -201953,8 +195262,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Fantasy Spinny Wheel Ticket", + "_am": 100, + "id": "MVP Key Lower Half", }, }, "StarsRequired": 18, @@ -201962,8 +195271,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Crystal Key", + "_am": 30, + "id": "Insta Plant Capsule", }, }, "StarsRequired": 19, @@ -201971,9 +195280,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 12, - "id": "Damage", - "tn": 10, + "_am": 75, + "id": "Basic Item Jar", }, }, "StarsRequired": 19, @@ -201981,8 +195289,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 12, - "id": "Fruit Bundle", + "_am": 30, + "id": "Fantasy Spinny Wheel Ticket", }, }, "StarsRequired": 19, @@ -201990,8 +195298,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, - "id": "Party Box", + "_am": 20, + "id": "Charm Stone", }, }, "StarsRequired": 20, @@ -201999,8 +195307,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Gift Bag", + "_am": 100, + "id": "Strength", + "tn": 1, }, }, "StarsRequired": 20, @@ -202008,8 +195317,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Gift Bag", + "_am": 40, + "id": "Millionaire Ticket", }, }, "StarsRequired": 20, @@ -202018,7 +195327,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 15, - "id": "Treasure Hideout Key Upper Half", + "id": "Void Key", }, }, "StarsRequired": 21, @@ -202026,9 +195335,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Diamonds", - "tn": 9, + "_am": 6, + "id": "Crystal Key", }, }, "StarsRequired": 21, @@ -202036,7 +195344,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, + "_am": 40, "id": "Lucky", "tn": 8, }, @@ -202046,9 +195354,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Coins", - "tn": 9, + "_am": 25, + "id": "Void Spinny Wheel Ticket", }, }, "StarsRequired": 22, @@ -202056,7 +195363,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Charm Chisel", + "_am": 25, + "id": "Treasure Hideout Key", }, }, "StarsRequired": 22, @@ -202064,8 +195372,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 75, - "id": "Rainbow Flag", + "_am": 25, + "id": "Fantasy Key Upper Half", }, }, "StarsRequired": 22, @@ -202073,9 +195381,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 12, - "id": "Damage", - "tn": 8, + "_am": 15, + "id": "Ultra Pet Cube", }, }, "StarsRequired": 23, @@ -202083,8 +195390,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 3, - "id": "Charm Hammer", + "_am": 12, + "id": "Fantasy Key", }, }, "StarsRequired": 23, @@ -202092,7 +195399,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Fantasy Key Upper Half", + "id": "Booth Slot Voucher", }, }, "StarsRequired": 23, @@ -202100,8 +195407,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, - "id": "Mini Chest", + "_am": 15, + "id": "Diamond Gift Bag", }, }, "StarsRequired": 24, @@ -202109,8 +195416,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Mini Chest", + "_am": 100, + "id": "Crystal Key Upper Half", }, }, "StarsRequired": 24, @@ -202118,8 +195425,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Damage", - "tn": 11, + "_am": 25, + "id": "Mini Chest", }, }, "StarsRequired": 24, @@ -202136,8 +195443,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Golden Pencil", + "_am": 30, + "id": "Millionaire Bucks", }, }, "StarsRequired": 25, @@ -202145,8 +195452,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Diamonds", - "tn": 9, + "_am": 8, + "id": "Magic Shard", }, }, "StarsRequired": 25, @@ -202154,16 +195461,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Treasure Hunter", - "tn": 11, - }, - }, - "StarsRequired": 26, - }, - { - "Item": { - "_data": { - "id": "Charm Chisel", + "_am": 75, + "id": "Damage", + "tn": 10, }, }, "StarsRequired": 26, @@ -202171,21 +195471,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 12, - "id": "Basic Item Jar", + "_am": 10, + "id": "Coins", + "tn": 11, }, }, "StarsRequired": 26, }, ], - "Title": "Ancient", + "Title": "Timekeeper", "UnlockableEggSlots": 0, "UnlockablePetSlots": 0, }, - "configName": "34 | Ancient", - "dateCreated": "2026-05-02T17:31:49.598Z", - "dateModified": "2026-05-02T17:31:49.598Z", - "hashShort": "5d17d80684d04067", + "configName": "38 | Timekeeper", + "dateCreated": "2026-05-02T17:31:49.633Z", + "dateModified": "2026-05-02T17:31:49.633Z", + "hashShort": "105de72ac42be55d", }, { "category": "Ranks", @@ -202194,90 +195495,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 2750, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 3250, "Type": 21, "Weight": 1, }, { - "Amount": 70, + "Amount": 90, "Type": 14, "Weight": 1, }, { - "Amount": 70, + "Amount": 90, "Type": 15, "Weight": 1, }, { - "Amount": 45, + "Amount": 60, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 3500, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 3500, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 3500, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 90, + "Amount": 120, "Type": 14, "Weight": 1, }, { - "Amount": 90, + "Amount": 120, "Type": 15, "Weight": 1, }, { - "Amount": 50, + "Amount": 70, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 44, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 43, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 39, "Weight": 1, }, @@ -202287,87 +195588,87 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 2500, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 2500, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 1250, + "Amount": 1750, "Type": 40, "Weight": 1, }, { - "Amount": 125, + "Amount": 160, "Type": 41, "Weight": 1, }, { - "Amount": 50, + "Amount": 70, "Type": 26, "Weight": 1, }, { - "Amount": 50, + "Amount": 70, "Type": 25, "Weight": 1, }, { - "Amount": 75, + "Amount": 90, "Type": 46, "Weight": 1, }, { - "Amount": 75, + "Amount": 90, "Type": 45, "Weight": 1, }, ], [ { - "Amount": 3750, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 3750, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 3750, + "Amount": 4000, "Type": 21, "Weight": 1, }, { - "Amount": 900, + "Amount": 1200, "Type": 9, "Weight": 1, }, { - "Amount": 10000, + "Amount": 16000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 60, + "Amount": 75, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 60, + "Amount": 75, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 60, + "Amount": 75, "PotionTier": 4, "Type": 34, "Weight": 1, @@ -202403,22 +195704,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 3000, + "Amount": 3500, "Type": 20, "Weight": 1, }, { - "Amount": 3000, + "Amount": 3500, "Type": 20, "Weight": 1, }, { - "Amount": 1400, + "Amount": 1800, "Type": 40, "Weight": 1, }, { - "Amount": 140, + "Amount": 170, "Type": 41, "Weight": 1, }, @@ -202440,33 +195741,33 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 4500, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 4500, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 4500, + "Amount": 5000, "Type": 21, "Weight": 1, }, { - "Amount": 1200, + "Amount": 1750, "Type": 9, "Weight": 1, }, { - "Amount": 12000, + "Amount": 17000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 50, + "Amount": 70, "Type": 42, "Weight": 1, }, @@ -202494,42 +195795,35 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 31, + "RankNumber": 40, "RankUpRewards": [ { "_data": { - "_am": 100, - "id": "Diamonds", - }, - }, - { - "_data": { - "_am": 30, - "id": "Large Enchant Bundle", + "_am": 4, + "id": "Magic Shard", }, }, { "_data": { - "_am": 40, - "id": "Large Potion Bundle", + "_am": 2, + "id": "Diamonds", + "tn": 9, }, }, { "_data": { - "_am": 40, - "id": "Void Spinny Wheel Ticket", + "id": "Prison Key", }, }, { "_data": { - "_am": 30, - "id": "Void Key", + "id": "Rainbow Mini Chest", }, }, { "_data": { - "_am": 10, - "id": "Rainbow Mini Chest", + "id": "Treasure Hunter", + "tn": 11, }, }, ], @@ -202537,81 +195831,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 200, - "id": "Apple", - }, - }, - "StarsRequired": 5, - }, - { - "Item": { - "_data": { - "_am": 2, - "id": "Flag Bundle", - }, - }, - "StarsRequired": 5, - }, - { - "Item": { - "_data": { - "_am": 8, - "id": "Coins", - "tn": 6, - }, - }, - "StarsRequired": 5, - }, - { - "Item": { - "_data": { - "_am": 20, - "id": "Void Key Lower Half", - }, - }, - "StarsRequired": 5, - }, - { - "Item": { - "_data": { - "_am": 100, - "id": "Shiny Flag", - }, - }, - "StarsRequired": 7, - }, - { - "Item": { - "_data": { - "_am": 100, - "id": "Rainbow", - }, - }, - "StarsRequired": 7, - }, - { - "Item": { - "_data": { - "_am": 100, - "id": "TNT", - }, - }, - "StarsRequired": 7, - }, - { - "Item": { - "_data": { - "_am": 8, - "id": "Flag Bundle", - }, - }, - "StarsRequired": 7, - }, - { - "Item": { - "_data": { - "_am": 200, - "id": "Watermelon", + "_am": 300, + "id": "Damage", + "tn": 7, }, }, "StarsRequired": 8, @@ -202619,8 +195841,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Basic Coin Jar", + "_am": 300, + "id": "Bonus", + "tn": 1, }, }, "StarsRequired": 8, @@ -202637,8 +195860,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Treasure Hideout Key Lower Half", + "_am": 300, + "id": "Treasure Hunter", + "tn": 8, }, }, "StarsRequired": 8, @@ -202646,8 +195870,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 250, - "id": "Pineapple", + "_am": 300, + "id": "Seashell", }, }, "StarsRequired": 9, @@ -202655,8 +195879,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Fruit Bundle", + "_am": 300, + "id": "Tap Power", + "tn": 5, }, }, "StarsRequired": 9, @@ -202664,8 +195889,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Seashell", + "_am": 300, + "id": "Comet", }, }, "StarsRequired": 9, @@ -202673,8 +195898,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 150, - "id": "Strength Flag", + "_am": 300, + "id": "Large Enchant Bundle", }, }, "StarsRequired": 9, @@ -202682,8 +195907,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Millionaire Bucks", + "_am": 300, + "id": "Party Box", }, }, "StarsRequired": 10, @@ -202691,8 +195916,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 250, - "id": "Watermelon", + "_am": 150, + "id": "Rainbow Flag", }, }, "StarsRequired": 10, @@ -202700,8 +195925,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 200, - "id": "Apple", + "_am": 300, + "id": "Blast", + "tn": 1, }, }, "StarsRequired": 10, @@ -202709,8 +195935,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 150, - "id": "Strength Flag", + "_am": 300, + "id": "Breakable Sprinkler", }, }, "StarsRequired": 10, @@ -202718,9 +195944,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Coins", - "tn": 5, + "_am": 200, + "id": "Treasure Hunter", + "tn": 9, }, }, "StarsRequired": 11, @@ -202728,8 +195954,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Large Gift Bag", + "_am": 300, + "id": "Mini Lucky Block", }, }, "StarsRequired": 11, @@ -202737,9 +195963,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Treasure Hunter", - "tn": 9, + "_am": 150, + "id": "Shiny Flag", }, }, "StarsRequired": 11, @@ -202747,8 +195972,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Lucky", + "_am": 200, + "id": "Coins", "tn": 10, }, }, @@ -202757,8 +195982,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Charm Stone", + "_am": 125, + "id": "TNT Crate", }, }, "StarsRequired": 12, @@ -202766,8 +195991,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Mini Chest", + "_am": 150, + "id": "Gift Bag", }, }, "StarsRequired": 12, @@ -202775,8 +196000,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Large Potion Bundle", + "_am": 150, + "id": "Golden Pencil", }, }, "StarsRequired": 12, @@ -202784,7 +196009,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Booth Slot Voucher", + "_am": 300, + "id": "Pet Cube", }, }, "StarsRequired": 12, @@ -202792,9 +196018,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 10, - "id": "Damage", - "tn": 9, + "_am": 150, + "id": "Fantasy Key Lower Half", }, }, "StarsRequired": 13, @@ -202802,7 +196027,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Golden Prison Key", + "_am": 125, + "id": "Spinny Wheel Ticket", }, }, "StarsRequired": 13, @@ -202810,7 +196036,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Daycare Slot Voucher", + "_am": 150, + "id": "Coins", + "tn": 9, }, }, "StarsRequired": 13, @@ -202818,8 +196046,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Millionaire Ticket", + "_am": 125, + "id": "Damage", + "tn": 8, }, }, "StarsRequired": 13, @@ -202827,314 +196056,337 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Insta Plant Capsule", + "_am": 75, + "id": "Basic Item Jar", }, }, - "StarsRequired": 14, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 25, - "id": "Mini Lucky Block", + "_am": 100, + "id": "Damage", + "tn": 9, }, }, - "StarsRequired": 14, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 3, - "id": "Gift Bag", + "_am": 75, + "id": "Diamonds", + "tn": 7, }, }, - "StarsRequired": 14, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 4, - "id": "Lucky", - "tn": 10, + "_am": 75, + "id": "Crystal Key Upper Half", }, }, - "StarsRequired": 14, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 2, - "id": "Spinny Wheel Ticket", + "_am": 125, + "id": "Seed Bag", }, }, - "StarsRequired": 15, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 15, - "id": "Basic Item Jar", + "_am": 100, + "id": "Strength", + "tn": 1, }, }, - "StarsRequired": 15, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 5, - "id": "Millionaire Ticket", + "id": "Daycare Slot Voucher", }, }, - "StarsRequired": 15, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 500, - "id": "Diamonds", + "_am": 75, + "id": "Damage", + "tn": 10, }, }, - "StarsRequired": 15, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 3, - "id": "Treasure Hideout Key Upper Half", + "_am": 100, + "id": "Void Key Upper Half", }, }, - "StarsRequired": 16, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 8, - "id": "Void Spinny Wheel Ticket", + "_am": 40, + "id": "Lucky", + "tn": 8, }, }, - "StarsRequired": 16, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 3, - "id": "Mini Chest", + "_am": 50, + "id": "Treasure Hideout Key Upper Half", }, }, - "StarsRequired": 16, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 15, - "id": "Damage", - "tn": 6, + "_am": 100, + "id": "MVP Key Lower Half", }, }, - "StarsRequired": 16, + "StarsRequired": 18, }, { "Item": { "_data": { - "id": "Golden Prison Key", + "_am": 30, + "id": "Insta Plant Capsule", }, }, - "StarsRequired": 17, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 25, - "id": "Tech Key", + "_am": 75, + "id": "Diamonds", + "tn": 8, }, }, - "StarsRequired": 17, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 6, - "id": "Treasure Hunter", - "tn": 7, + "_am": 4, + "id": "Secret Key", }, }, - "StarsRequired": 17, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 15, - "id": "Breakable Sprinkler", + "_am": 150, + "id": "Tech Spinny Wheel Ticket", }, }, - "StarsRequired": 18, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 15, - "id": "Party Box", + "_am": 40, + "id": "Millionaire Ticket", }, }, - "StarsRequired": 18, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 100, - "id": "TNT Crate", + "_am": 30, + "id": "Fantasy Spinny Wheel Ticket", }, }, - "StarsRequired": 18, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 8, - "id": "Void Spinny Wheel Ticket", + "_am": 50, + "id": "Lucky", + "tn": 9, }, }, - "StarsRequired": 19, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 8, - "id": "Coins", - "tn": 10, + "_am": 25, + "id": "Fantasy Key Upper Half", }, }, - "StarsRequired": 19, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 20, - "id": "Treasure Hideout Key", + "_am": 6, + "id": "Crystal Key", }, }, - "StarsRequired": 19, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 5, - "id": "Hacker Key", + "_am": 15, + "id": "Fantasy Key", }, }, - "StarsRequired": 20, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 4, - "id": "Bucket O' Magic", + "_am": 15, + "id": "Diamond Gift Bag", }, }, - "StarsRequired": 20, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 100, - "id": "Diamonds", + "_am": 20, + "id": "Void Key", }, }, - "StarsRequired": 20, + "StarsRequired": 22, + }, + { + "Item": { + "_data": { + "_am": 25, + "id": "Mini Pinata", + }, + }, + "StarsRequired": 23, }, { "Item": { "_data": { "_am": 10, - "id": "Insta Plant Capsule", + "id": "Treasure Hunter", + "tn": 10, }, }, - "StarsRequired": 21, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 2, - "id": "Prison Key", + "_am": 30, + "id": "Void Spinny Wheel Ticket", }, }, - "StarsRequired": 21, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 4, - "id": "Large Potion Bundle", + "_am": 25, + "id": "Mini Chest", }, }, - "StarsRequired": 21, + "StarsRequired": 24, }, { "Item": { "_data": { "_am": 8, - "id": "Diamond Gift Bag", + "id": "Lucky", + "tn": 10, + }, + }, + "StarsRequired": 24, + }, + { + "Item": { + "_data": { + "_am": 8, + "id": "Hacker Key", }, }, - "StarsRequired": 22, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 15, - "id": "Treasure Hunter", - "tn": 7, + "_am": 4, + "id": "Golden Prison Key", }, }, - "StarsRequired": 22, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 25, - "id": "Large Gift Bag", + "_am": 2, + "id": "Damage", + "tn": 11, }, }, - "StarsRequired": 22, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 25, - "id": "Seed Bag", + "_am": 12, + "id": "Coins", + "tn": 11, }, }, - "StarsRequired": 23, + "StarsRequired": 25, }, { "Item": { "_data": { - "_am": 8, - "id": "Breakable Sprinkler", + "_am": 30, + "id": "Charm Stone", }, }, - "StarsRequired": 23, + "StarsRequired": 26, }, { "Item": { "_data": { - "_am": 20, - "id": "Diamonds", - "tn": 8, + "_am": 2, + "id": "Charm Chisel", }, }, - "StarsRequired": 23, + "StarsRequired": 26, }, ], - "Title": "Demigod", + "Title": "Herald", "UnlockableEggSlots": 0, "UnlockablePetSlots": 0, }, - "configName": "31 | Demigod", - "dateCreated": "2026-05-02T17:31:49.630Z", - "dateModified": "2026-05-02T17:31:49.630Z", - "hashShort": "0f52abc53bacaa14", + "configName": "40 | Herald", + "dateCreated": "2026-05-02T17:31:49.634Z", + "dateModified": "2026-05-02T17:31:49.634Z", + "hashShort": "45102793198481da", }, { "category": "Ranks", @@ -203143,90 +196395,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 2750, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 2000, "Type": 21, "Weight": 1, }, { - "Amount": 70, + "Amount": 50, "Type": 14, "Weight": 1, }, { - "Amount": 70, + "Amount": 50, "Type": 15, "Weight": 1, }, { - "Amount": 45, + "Amount": 35, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 3500, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 3500, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 3500, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 90, + "Amount": 60, "Type": 14, "Weight": 1, }, { - "Amount": 90, + "Amount": 60, "Type": 15, "Weight": 1, }, { - "Amount": 50, + "Amount": 20, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 44, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 43, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 4, "Type": 39, "Weight": 1, }, @@ -203236,22 +196488,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 2500, + "Amount": 1750, "Type": 20, "Weight": 1, }, { - "Amount": 2500, + "Amount": 1750, "Type": 20, "Weight": 1, }, { - "Amount": 1250, + "Amount": 750, "Type": 40, "Weight": 1, }, { - "Amount": 125, + "Amount": 75, "Type": 41, "Weight": 1, }, @@ -203261,7 +196513,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 50, + "Amount": 40, "Type": 25, "Weight": 1, }, @@ -203278,71 +196530,71 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 3750, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 3750, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 3750, + "Amount": 3000, "Type": 21, "Weight": 1, }, { - "Amount": 900, + "Amount": 500, "Type": 9, "Weight": 1, }, { - "Amount": 10000, + "Amount": 5000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 60, + "Amount": 30, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 60, + "Amount": 30, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 60, + "Amount": 30, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 44, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 43, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 38, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 37, "Weight": 1, }, { - "Amount": 6, + "Amount": 5, "Type": 39, "Weight": 1, }, @@ -203352,22 +196604,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 3000, + "Amount": 2000, "Type": 20, "Weight": 1, }, { - "Amount": 3000, + "Amount": 2000, "Type": 20, "Weight": 1, }, { - "Amount": 1400, + "Amount": 900, "Type": 40, "Weight": 1, }, { - "Amount": 140, + "Amount": 90, "Type": 41, "Weight": 1, }, @@ -203389,48 +196641,48 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 4500, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 4500, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 4500, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 1200, + "Amount": 750, "Type": 9, "Weight": 1, }, { - "Amount": 12000, + "Amount": 7500, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 50, + "Amount": 25, "Type": 42, "Weight": 1, }, { - "Amount": 8, + "Amount": 7, "Type": 38, "Weight": 1, }, { - "Amount": 8, + "Amount": 7, "Type": 37, "Weight": 1, }, { - "Amount": 8, + "Amount": 7, "Type": 39, "Weight": 1, }, @@ -203443,18 +196695,46 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 29, + "RankNumber": 23, "RankUpRewards": [ { "_data": { - "_am": 10, - "id": "Void Spinny Wheel Ticket", + "_am": 6, + "id": "Diamonds", + "tn": 7, }, }, { "_data": { - "_am": 15, - "id": "Void Key", + "_am": 6, + "id": "Coins", + "tn": 9, + }, + }, + { + "_data": { + "_am": 6, + "id": "Damage", + "tn": 9, + }, + }, + { + "_data": { + "_am": 6, + "id": "Treasure Hunter", + "tn": 9, + }, + }, + { + "_data": { + "_am": 500000, + "id": "Diamonds", + }, + }, + { + "_data": { + "_am": 2, + "id": "Charm Chisel", }, }, { @@ -203465,8 +196745,14 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` }, { "_data": { - "_am": 5, - "id": "Rainbow Mini Chest", + "_am": 8, + "id": "Tech Key", + }, + }, + { + "_data": { + "_am": 12, + "id": "Mini Chest", }, }, ], @@ -203474,108 +196760,134 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 150, - "id": "Shiny Flag", + "_am": 200, + "id": "Hasty Flag", }, }, - "StarsRequired": 6, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 150, - "id": "Coins Flag", + "_am": 300, + "id": "Rainbow", }, }, - "StarsRequired": 6, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 150, - "id": "Squeaky Toy", + "_am": 300, + "id": "Apple", }, }, - "StarsRequired": 6, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 200, - "id": "Strength Flag", + "_am": 50, + "id": "Flag Bundle", }, }, - "StarsRequired": 6, + "StarsRequired": 4, }, { "Item": { "_data": { - "_am": 8, - "id": "Treasure Hunter", - "tn": 5, + "_am": 20, + "id": "Party Box", }, }, - "StarsRequired": 7, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 200, - "id": "Toy Ball", + "_am": 100, + "id": "Diamonds", }, }, - "StarsRequired": 7, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 150, - "id": "Diamonds Flag", + "_am": 50, + "id": "Basic Coin Jar", }, }, - "StarsRequired": 7, + "StarsRequired": 5, }, { "Item": { "_data": { - "_am": 200, + "_am": 300, "id": "Orange", }, }, - "StarsRequired": 7, + "StarsRequired": 5, }, { "Item": { "_data": { "_am": 200, - "id": "Rainbow", + "id": "Strength Flag", }, }, - "StarsRequired": 8, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 100, - "id": "Strength Flag", + "_am": 25, + "id": "Enchant Bundle", }, }, - "StarsRequired": 8, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 250, - "id": "Hasty Flag", + "_am": 300, + "id": "Watermelon", }, }, - "StarsRequired": 8, + "StarsRequired": 6, }, { "Item": { "_data": { "_am": 250, - "id": "Orange", + "id": "Magnet Flag", + }, + }, + "StarsRequired": 6, + }, + { + "Item": { + "_data": { + "_am": 300, + "id": "Rainbow", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 300, + "id": "Watermelon", + }, + }, + "StarsRequired": 7, + }, + { + "Item": { + "_data": { + "_am": 200, + "id": "Toy Ball", }, }, "StarsRequired": 8, @@ -203584,10 +196896,10 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 200, - "id": "Hasty Flag", + "id": "Banana", }, }, - "StarsRequired": 9, + "StarsRequired": 8, }, { "Item": { @@ -203601,8 +196913,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 150, - "id": "Pineapple", + "_am": 250, + "id": "Fortune Flag", }, }, "StarsRequired": 9, @@ -203610,8 +196922,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 125, - "id": "Toy Bone", + "_am": 250, + "id": "Rainbow", }, }, "StarsRequired": 9, @@ -203619,17 +196931,16 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 300, - "id": "Banana", + "id": "Tech Key", }, }, - "StarsRequired": 10, + "StarsRequired": 9, }, { "Item": { "_data": { - "_am": 125, - "id": "Diamonds Flag", + "_am": 2, + "id": "Mini Chest", }, }, "StarsRequired": 10, @@ -203637,8 +196948,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 100, - "id": "Watermelon", + "_am": 6, + "id": "Bucket O' Magic", }, }, "StarsRequired": 10, @@ -203646,8 +196957,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Party Box", + "_am": 30, + "id": "Large Potion Bundle", }, }, "StarsRequired": 10, @@ -203655,17 +196966,16 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Magic Shard", + "id": "Breakable Sprinkler", }, }, - "StarsRequired": 11, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 15, - "id": "Basic Item Jar", + "_am": 6, + "id": "Mini Chest", }, }, "StarsRequired": 11, @@ -203673,8 +196983,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Large Enchant Bundle", + "_am": 4, + "id": "Secret Key", }, }, "StarsRequired": 11, @@ -203682,8 +196992,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, - "id": "Seed Bag", + "_am": 6, + "id": "Gift Bag", }, }, "StarsRequired": 11, @@ -203691,8 +197001,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 5, - "id": "Void Key", + "_am": 6, + "id": "Coins", + "tn": 7, }, }, "StarsRequired": 12, @@ -203700,8 +197011,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Void Spinny Wheel Ticket", + "_am": 2, + "id": "Lucky", + "tn": 9, }, }, "StarsRequired": 12, @@ -203709,9 +197021,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Damage", - "tn": 5, + "id": "Treasure Hunter", + "tn": 8, }, }, "StarsRequired": 12, @@ -203719,8 +197030,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, - "id": "Secret Key", + "_am": 30, + "id": "Gift Bag", }, }, "StarsRequired": 13, @@ -203728,8 +197039,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Large Potion Bundle", + "id": "Mini Chest", }, }, "StarsRequired": 13, @@ -203738,7 +197048,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 20, - "id": "Flag Bundle", + "id": "Gift Bag", }, }, "StarsRequired": 13, @@ -203746,8 +197056,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Bucket O' Magic", + "_am": 6, + "id": "Mini Chest", }, }, "StarsRequired": 14, @@ -203755,8 +197065,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Mini Lucky Block", + "id": "Crystal Key", }, }, "StarsRequired": 14, @@ -203764,9 +197073,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Diamonds", - "tn": 7, + "id": "Treasure Hunter", + "tn": 9, }, }, "StarsRequired": 14, @@ -203774,17 +197082,19 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 75, - "id": "Rainbow Flag", + "_am": 12, + "id": "Coins", + "tn": 11, }, }, - "StarsRequired": 15, + "StarsRequired": 14, }, { "Item": { "_data": { - "_am": 20, - "id": "Toy Bundle", + "_am": 2, + "id": "Lucky", + "tn": 9, }, }, "StarsRequired": 15, @@ -203792,9 +197102,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 6, - "id": "Coins", - "tn": 6, + "_am": 8, + "id": "Diamonds", + "tn": 7, }, }, "StarsRequired": 15, @@ -203802,17 +197112,17 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Comet", + "_am": 30, + "id": "Breakable Sprinkler", }, }, - "StarsRequired": 16, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 15, - "id": "Mini Chest", + "_am": 2, + "id": "Charm Chisel", }, }, "StarsRequired": 16, @@ -203820,8 +197130,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Large Gift Bag", + "_am": 4, + "id": "Insta Plant Capsule", }, }, "StarsRequired": 16, @@ -203829,17 +197139,18 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 15, - "id": "Large Gift Bag", + "_am": 20, + "id": "Lucky", + "tn": 5, }, }, - "StarsRequired": 17, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 5, - "id": "Void Key", + "_am": 30, + "id": "Large Enchant Bundle", }, }, "StarsRequired": 17, @@ -203847,8 +197158,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 25, - "id": "Void Spinny Wheel Ticket", + "_am": 2, + "id": "Secret Key", }, }, "StarsRequired": 17, @@ -203856,19 +197167,17 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Coins", - "tn": 8, + "_am": 250, + "id": "Diamonds", }, }, - "StarsRequired": 18, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 3, - "id": "Lucky", - "tn": 8, + "_am": 25, + "id": "Large Gift Bag", }, }, "StarsRequired": 18, @@ -203876,158 +197185,140 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, - "id": "Gift Bag", + "id": "Booth Slot Voucher", }, }, - "StarsRequired": 19, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 20, - "id": "Damage", + "_am": 25, + "id": "Lucky", "tn": 6, }, }, - "StarsRequired": 20, - }, - { - "Item": { - "_data": { - "_am": 15, - "id": "Bucket O' Magic", - }, - }, - "StarsRequired": 20, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 8, - "id": "Treasure Hideout Key Upper Half", + "_am": 12, + "id": "Large Gift Bag", }, }, - "StarsRequired": 20, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 2, - "id": "Large Potion Bundle", + "_am": 125, + "id": "TNT Crate", }, }, - "StarsRequired": 21, + "StarsRequired": 19, }, { "Item": { "_data": { - "id": "Daycare Slot Voucher", + "id": "Charm Chisel", }, }, - "StarsRequired": 21, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 15, - "id": "Diamonds", - "tn": 7, + "_am": 30, + "id": "Magic Shard", }, }, - "StarsRequired": 21, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 25, - "id": "Bucket O' Magic", + "_am": 30, + "id": "Damage", + "tn": 6, }, }, - "StarsRequired": 22, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 6, - "id": "Large Enchant Bundle", + "_am": 4, + "id": "Charm Stone", }, }, - "StarsRequired": 22, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 15, + "_am": 25, "id": "Large Potion Bundle", }, }, - "StarsRequired": 22, - }, - { - "Item": { - "_data": { - "_am": 6, - "id": "Mini Pinata", - }, - }, - "StarsRequired": 23, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 2, - "id": "Coins", - "tn": 10, + "_am": 12, + "id": "Treasure Hunter", + "tn": 7, }, }, - "StarsRequired": 23, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 3, - "id": "Void Spinny Wheel Ticket", + "_am": 6, + "id": "Crystal Key", }, }, - "StarsRequired": 23, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 15, + "_am": 12, "id": "Mini Chest", }, }, - "StarsRequired": 24, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 75, - "id": "TNT Crate", + "_am": 10, + "id": "Damage", + "tn": 8, }, }, - "StarsRequired": 24, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 20, - "id": "Large Gift Bag", + "_am": 12, + "id": "Charm Stone", }, }, - "StarsRequired": 24, + "StarsRequired": 22, }, ], - "Title": "Voidborn", + "Title": "Visionary", "UnlockableEggSlots": 1, - "UnlockablePetSlots": 0, + "UnlockablePetSlots": 1, }, - "configName": "29 | Voidborn", - "dateCreated": "2026-05-02T17:31:49.638Z", - "dateModified": "2026-05-02T17:31:49.638Z", - "hashShort": "7e9d12eff1876acc", + "configName": "23 | Visionary", + "dateCreated": "2026-05-02T17:31:49.636Z", + "dateModified": "2026-05-02T17:31:49.636Z", + "hashShort": "b7ce2c0a43267ae0", }, { "category": "Ranks", @@ -204036,90 +197327,90 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Goals": [ [ { - "Amount": 2000, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 2000, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 2000, + "Amount": 2750, "Type": 21, "Weight": 1, }, { - "Amount": 50, + "Amount": 70, "Type": 14, "Weight": 1, }, { - "Amount": 50, + "Amount": 70, "Type": 15, "Weight": 1, }, { - "Amount": 35, + "Amount": 45, "Type": 9, "Weight": 1, }, ], [ { - "Amount": 2750, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 2750, + "Amount": 3500, "Type": 21, "Weight": 1, }, { - "Amount": 60, + "Amount": 90, "Type": 14, "Weight": 1, }, { - "Amount": 60, + "Amount": 90, "Type": 15, "Weight": 1, }, { - "Amount": 20, + "Amount": 50, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 44, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 43, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 38, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 37, "Weight": 1, }, { - "Amount": 4, + "Amount": 5, "Type": 39, "Weight": 1, }, @@ -204129,22 +197420,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 1750, + "Amount": 2500, "Type": 20, "Weight": 1, }, { - "Amount": 1750, + "Amount": 2500, "Type": 20, "Weight": 1, }, { - "Amount": 750, + "Amount": 1250, "Type": 40, "Weight": 1, }, { - "Amount": 75, + "Amount": 125, "Type": 41, "Weight": 1, }, @@ -204154,7 +197445,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 40, + "Amount": 50, "Type": 25, "Weight": 1, }, @@ -204171,71 +197462,71 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 3000, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 3000, + "Amount": 3750, "Type": 21, "Weight": 1, }, { - "Amount": 500, + "Amount": 900, "Type": 9, "Weight": 1, }, { - "Amount": 5000, + "Amount": 10000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 30, + "Amount": 60, "PotionTier": 3, "Type": 12, "Weight": 1, }, { - "Amount": 30, + "Amount": 60, "EnchantTier": 3, "Type": 13, "Weight": 1, }, { - "Amount": 30, + "Amount": 60, "PotionTier": 4, "Type": 34, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 44, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 43, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 38, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 37, "Weight": 1, }, { - "Amount": 5, + "Amount": 6, "Type": 39, "Weight": 1, }, @@ -204245,22 +197536,22 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Weight": 1, }, { - "Amount": 2000, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 2000, + "Amount": 3000, "Type": 20, "Weight": 1, }, { - "Amount": 900, + "Amount": 1400, "Type": 40, "Weight": 1, }, { - "Amount": 90, + "Amount": 140, "Type": 41, "Weight": 1, }, @@ -204282,48 +197573,48 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], [ { - "Amount": 3500, + "Amount": 4500, "Type": 21, "Weight": 1, }, { - "Amount": 3500, + "Amount": 4500, "Type": 21, "Weight": 1, }, { - "Amount": 3500, + "Amount": 4500, "Type": 21, "Weight": 1, }, { - "Amount": 750, + "Amount": 1200, "Type": 9, "Weight": 1, }, { - "Amount": 7500, + "Amount": 12000, "CurrencyID": "Diamonds", "Type": 7, "Weight": 1, }, { - "Amount": 25, + "Amount": 50, "Type": 42, "Weight": 1, }, { - "Amount": 7, + "Amount": 8, "Type": 38, "Weight": 1, }, { - "Amount": 7, + "Amount": 8, "Type": 37, "Weight": 1, }, { - "Amount": 7, + "Amount": 8, "Type": 39, "Weight": 1, }, @@ -204336,46 +197627,18 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` ], "MaxEnchantsEquipped": 6, "MaximumActiveGoals": 4, - "RankNumber": 23, + "RankNumber": 29, "RankUpRewards": [ { "_data": { - "_am": 6, - "id": "Diamonds", - "tn": 7, - }, - }, - { - "_data": { - "_am": 6, - "id": "Coins", - "tn": 9, - }, - }, - { - "_data": { - "_am": 6, - "id": "Damage", - "tn": 9, - }, - }, - { - "_data": { - "_am": 6, - "id": "Treasure Hunter", - "tn": 9, - }, - }, - { - "_data": { - "_am": 500000, - "id": "Diamonds", + "_am": 10, + "id": "Void Spinny Wheel Ticket", }, }, { "_data": { - "_am": 2, - "id": "Charm Chisel", + "_am": 15, + "id": "Void Key", }, }, { @@ -204386,14 +197649,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` }, { "_data": { - "_am": 8, - "id": "Tech Key", - }, - }, - { - "_data": { - "_am": 12, - "id": "Mini Chest", + "_am": 5, + "id": "Rainbow Mini Chest", }, }, ], @@ -204401,134 +197658,108 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 200, - "id": "Hasty Flag", + "_am": 150, + "id": "Shiny Flag", }, }, - "StarsRequired": 4, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 300, - "id": "Rainbow", + "_am": 150, + "id": "Coins Flag", }, }, - "StarsRequired": 4, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 300, - "id": "Apple", + "_am": 150, + "id": "Squeaky Toy", }, }, - "StarsRequired": 4, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 50, - "id": "Flag Bundle", + "_am": 200, + "id": "Strength Flag", }, }, - "StarsRequired": 4, + "StarsRequired": 6, }, { "Item": { "_data": { - "_am": 20, - "id": "Party Box", + "_am": 8, + "id": "Treasure Hunter", + "tn": 5, }, }, - "StarsRequired": 5, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 100, - "id": "Diamonds", + "_am": 200, + "id": "Toy Ball", }, }, - "StarsRequired": 5, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 50, - "id": "Basic Coin Jar", + "_am": 150, + "id": "Diamonds Flag", }, }, - "StarsRequired": 5, + "StarsRequired": 7, }, { "Item": { "_data": { - "_am": 300, + "_am": 200, "id": "Orange", }, }, - "StarsRequired": 5, + "StarsRequired": 7, }, { "Item": { "_data": { "_am": 200, - "id": "Strength Flag", - }, - }, - "StarsRequired": 6, - }, - { - "Item": { - "_data": { - "_am": 25, - "id": "Enchant Bundle", + "id": "Rainbow", }, }, - "StarsRequired": 6, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 300, - "id": "Watermelon", + "_am": 100, + "id": "Strength Flag", }, }, - "StarsRequired": 6, + "StarsRequired": 8, }, { "Item": { "_data": { "_am": 250, - "id": "Magnet Flag", - }, - }, - "StarsRequired": 6, - }, - { - "Item": { - "_data": { - "_am": 300, - "id": "Rainbow", - }, - }, - "StarsRequired": 7, - }, - { - "Item": { - "_data": { - "_am": 300, - "id": "Watermelon", + "id": "Hasty Flag", }, }, - "StarsRequired": 7, + "StarsRequired": 8, }, { "Item": { "_data": { - "_am": 200, - "id": "Toy Ball", + "_am": 250, + "id": "Orange", }, }, "StarsRequired": 8, @@ -204537,10 +197768,10 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 200, - "id": "Banana", + "id": "Hasty Flag", }, }, - "StarsRequired": 8, + "StarsRequired": 9, }, { "Item": { @@ -204554,8 +197785,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 250, - "id": "Fortune Flag", + "_am": 150, + "id": "Pineapple", }, }, "StarsRequired": 9, @@ -204563,8 +197794,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 250, - "id": "Rainbow", + "_am": 125, + "id": "Toy Bone", }, }, "StarsRequired": 9, @@ -204572,16 +197803,17 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Tech Key", + "_am": 300, + "id": "Banana", }, }, - "StarsRequired": 9, + "StarsRequired": 10, }, { "Item": { "_data": { - "_am": 2, - "id": "Mini Chest", + "_am": 125, + "id": "Diamonds Flag", }, }, "StarsRequired": 10, @@ -204589,8 +197821,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 6, - "id": "Bucket O' Magic", + "_am": 100, + "id": "Watermelon", }, }, "StarsRequired": 10, @@ -204598,8 +197830,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 30, - "id": "Large Potion Bundle", + "_am": 25, + "id": "Party Box", }, }, "StarsRequired": 10, @@ -204607,16 +197839,17 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Breakable Sprinkler", + "_am": 20, + "id": "Magic Shard", }, }, - "StarsRequired": 10, + "StarsRequired": 11, }, { "Item": { "_data": { - "_am": 6, - "id": "Mini Chest", + "_am": 15, + "id": "Basic Item Jar", }, }, "StarsRequired": 11, @@ -204624,8 +197857,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, - "id": "Secret Key", + "_am": 25, + "id": "Large Enchant Bundle", }, }, "StarsRequired": 11, @@ -204633,8 +197866,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 6, - "id": "Gift Bag", + "_am": 8, + "id": "Seed Bag", }, }, "StarsRequired": 11, @@ -204642,9 +197875,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 6, - "id": "Coins", - "tn": 7, + "_am": 5, + "id": "Void Key", }, }, "StarsRequired": 12, @@ -204652,9 +197884,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Lucky", - "tn": 9, + "_am": 25, + "id": "Void Spinny Wheel Ticket", }, }, "StarsRequired": 12, @@ -204662,8 +197893,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Treasure Hunter", - "tn": 8, + "_am": 2, + "id": "Damage", + "tn": 5, }, }, "StarsRequired": 12, @@ -204671,8 +197903,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 30, - "id": "Gift Bag", + "_am": 4, + "id": "Secret Key", }, }, "StarsRequired": 13, @@ -204680,7 +197912,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Mini Chest", + "_am": 25, + "id": "Large Potion Bundle", }, }, "StarsRequired": 13, @@ -204689,7 +197922,7 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` "Item": { "_data": { "_am": 20, - "id": "Gift Bag", + "id": "Flag Bundle", }, }, "StarsRequired": 13, @@ -204697,8 +197930,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 6, - "id": "Mini Chest", + "_am": 15, + "id": "Bucket O' Magic", }, }, "StarsRequired": 14, @@ -204706,7 +197939,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Crystal Key", + "_am": 20, + "id": "Mini Lucky Block", }, }, "StarsRequired": 14, @@ -204714,8 +197948,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Treasure Hunter", - "tn": 9, + "_am": 25, + "id": "Diamonds", + "tn": 7, }, }, "StarsRequired": 14, @@ -204723,19 +197958,17 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 12, - "id": "Coins", - "tn": 11, + "_am": 75, + "id": "Rainbow Flag", }, }, - "StarsRequired": 14, + "StarsRequired": 15, }, { "Item": { "_data": { - "_am": 2, - "id": "Lucky", - "tn": 9, + "_am": 20, + "id": "Toy Bundle", }, }, "StarsRequired": 15, @@ -204743,9 +197976,9 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 8, - "id": "Diamonds", - "tn": 7, + "_am": 6, + "id": "Coins", + "tn": 6, }, }, "StarsRequired": 15, @@ -204753,17 +197986,17 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 30, - "id": "Breakable Sprinkler", + "_am": 20, + "id": "Comet", }, }, - "StarsRequired": 15, + "StarsRequired": 16, }, { "Item": { "_data": { - "_am": 2, - "id": "Charm Chisel", + "_am": 15, + "id": "Mini Chest", }, }, "StarsRequired": 16, @@ -204771,8 +198004,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 4, - "id": "Insta Plant Capsule", + "_am": 2, + "id": "Large Gift Bag", }, }, "StarsRequired": 16, @@ -204780,18 +198013,17 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 20, - "id": "Lucky", - "tn": 5, + "_am": 15, + "id": "Large Gift Bag", }, }, - "StarsRequired": 16, + "StarsRequired": 17, }, { "Item": { "_data": { - "_am": 30, - "id": "Large Enchant Bundle", + "_am": 5, + "id": "Void Key", }, }, "StarsRequired": 17, @@ -204799,8 +198031,8 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 2, - "id": "Secret Key", + "_am": 25, + "id": "Void Spinny Wheel Ticket", }, }, "StarsRequired": 17, @@ -204808,17 +198040,19 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "_am": 250, - "id": "Diamonds", + "_am": 20, + "id": "Coins", + "tn": 8, }, }, - "StarsRequired": 17, + "StarsRequired": 18, }, { "Item": { "_data": { - "_am": 25, - "id": "Large Gift Bag", + "_am": 3, + "id": "Lucky", + "tn": 8, }, }, "StarsRequired": 18, @@ -204826,140 +198060,158 @@ exports[`Pet Simulator Public Live API Test Ranks shape 1`] = ` { "Item": { "_data": { - "id": "Booth Slot Voucher", + "_am": 8, + "id": "Gift Bag", }, }, - "StarsRequired": 18, + "StarsRequired": 19, }, { "Item": { "_data": { - "_am": 25, - "id": "Lucky", + "_am": 20, + "id": "Damage", "tn": 6, }, }, - "StarsRequired": 18, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 12, - "id": "Large Gift Bag", + "_am": 15, + "id": "Bucket O' Magic", }, }, - "StarsRequired": 19, + "StarsRequired": 20, }, { "Item": { "_data": { - "_am": 125, - "id": "TNT Crate", + "_am": 8, + "id": "Treasure Hideout Key Upper Half", }, }, - "StarsRequired": 19, + "StarsRequired": 20, }, { "Item": { "_data": { - "id": "Charm Chisel", + "_am": 2, + "id": "Large Potion Bundle", }, }, - "StarsRequired": 19, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 30, - "id": "Magic Shard", + "id": "Daycare Slot Voucher", }, }, - "StarsRequired": 20, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 30, - "id": "Damage", - "tn": 6, + "_am": 15, + "id": "Diamonds", + "tn": 7, }, }, - "StarsRequired": 20, + "StarsRequired": 21, }, { "Item": { "_data": { - "_am": 4, - "id": "Charm Stone", + "_am": 25, + "id": "Bucket O' Magic", }, }, - "StarsRequired": 20, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 25, - "id": "Large Potion Bundle", + "_am": 6, + "id": "Large Enchant Bundle", }, }, - "StarsRequired": 21, + "StarsRequired": 22, }, { "Item": { "_data": { - "_am": 12, - "id": "Treasure Hunter", - "tn": 7, + "_am": 15, + "id": "Large Potion Bundle", }, }, - "StarsRequired": 21, + "StarsRequired": 22, }, { "Item": { "_data": { "_am": 6, - "id": "Crystal Key", + "id": "Mini Pinata", }, }, - "StarsRequired": 21, + "StarsRequired": 23, }, { "Item": { "_data": { - "_am": 12, + "_am": 2, + "id": "Coins", + "tn": 10, + }, + }, + "StarsRequired": 23, + }, + { + "Item": { + "_data": { + "_am": 3, + "id": "Void Spinny Wheel Ticket", + }, + }, + "StarsRequired": 23, + }, + { + "Item": { + "_data": { + "_am": 15, "id": "Mini Chest", }, }, - "StarsRequired": 22, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 10, - "id": "Damage", - "tn": 8, + "_am": 75, + "id": "TNT Crate", }, }, - "StarsRequired": 22, + "StarsRequired": 24, }, { "Item": { "_data": { - "_am": 12, - "id": "Charm Stone", + "_am": 20, + "id": "Large Gift Bag", }, }, - "StarsRequired": 22, + "StarsRequired": 24, }, ], - "Title": "Visionary", + "Title": "Voidborn", "UnlockableEggSlots": 1, - "UnlockablePetSlots": 1, + "UnlockablePetSlots": 0, }, - "configName": "23 | Visionary", - "dateCreated": "2026-05-02T17:31:49.636Z", - "dateModified": "2026-05-02T17:31:49.636Z", - "hashShort": "b7ce2c0a43267ae0", + "configName": "29 | Voidborn", + "dateCreated": "2026-05-02T17:31:49.638Z", + "dateModified": "2026-05-02T17:31:49.638Z", + "hashShort": "7e9d12eff1876acc", }, { "category": "Ranks", diff --git a/src/__tests__/ps99-api-changes.ts b/src/__tests__/ps99-api-changes.ts index b9c17aa..8a985c1 100644 --- a/src/__tests__/ps99-api-changes.ts +++ b/src/__tests__/ps99-api-changes.ts @@ -31,4 +31,14 @@ describe("Pet Simulator Public Live API Test - Changing Items", () => { const results = await api.getRAP(); expect(results).toMatchSnapshot(); }); + + test("Hoverboards shape", async () => { + const results = await api.getCollection("Hoverboards"); + expect(results).toMatchSnapshot(); + }); + + test("Lootboxes shape", async () => { + const results = await api.getCollection("Lootboxes"); + expect(results).toMatchSnapshot(); + }); }); diff --git a/src/__tests__/ps99-api-live.ts b/src/__tests__/ps99-api-live.ts index 39b6862..dbfd00b 100644 --- a/src/__tests__/ps99-api-live.ts +++ b/src/__tests__/ps99-api-live.ts @@ -74,15 +74,7 @@ describe("Pet Simulator Public Live API Test", () => { expect(results).toMatchSnapshot(); }); - test("Hoverboards shape", async () => { - const results = await api.getCollection("Hoverboards"); - expect(results).toMatchSnapshot(); - }); - test("Lootboxes shape", async () => { - const results = await api.getCollection("Lootboxes"); - expect(results).toMatchSnapshot(); - }); test("Mastery shape", async () => { const results = await api.getCollection("Mastery"); @@ -94,11 +86,6 @@ describe("Pet Simulator Public Live API Test", () => { expect(results).toMatchSnapshot(); }); - test("Pets shape", async () => { - const results = await api.getCollection("Pets"); - expect(results).toMatchSnapshot(); - }); - test("Potions shape", async () => { const results = await api.getCollection("Potions"); expect(results).toMatchSnapshot(); @@ -183,4 +170,9 @@ describe("Pet Simulator Public Live API Test", () => { const results = await api.getCollection("XPPotions"); expect(results).toMatchSnapshot(); }); + + test("Pets shape", async () => { + const results = await api.getCollection("Pets"); + expect(results).toMatchSnapshot(); + }); });